diff --git a/.editorconfig b/.editorconfig index a5dfab07a50..1583c600aa5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -129,7 +129,7 @@ csharp_indent_braces = false csharp_indent_switch_labels = true # Space preferences -csharp_space_after_cast = true +csharp_space_after_cast = false csharp_space_after_colon_in_inheritance_clause = true csharp_space_after_comma = true csharp_space_after_dot = false diff --git a/Content.Client/Access/UI/AccessOverriderBoundUserInterface.cs b/Content.Client/Access/UI/AccessOverriderBoundUserInterface.cs index c1b63dc4d05..d80c600c03e 100644 --- a/Content.Client/Access/UI/AccessOverriderBoundUserInterface.cs +++ b/Content.Client/Access/UI/AccessOverriderBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Access.Components; using Content.Shared.Access.Systems; using Content.Shared.Containers.ItemSlots; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; using static Content.Shared.Access.Components.AccessOverriderComponent; @@ -23,6 +24,28 @@ protected override void Open() { base.Open(); + _window = this.CreateWindow(); + RefreshAccess(); + _window.Title = EntMan.GetComponent(Owner).EntityName; + _window.OnSubmit += SubmitData; + + _window.PrivilegedIdButton.OnPressed += _ => SendMessage(new ItemSlotButtonPressedEvent(PrivilegedIdCardSlotId)); + } + + public override void OnProtoReload(PrototypesReloadedEventArgs args) + { + base.OnProtoReload(args); + if (!args.WasModified()) + return; + + RefreshAccess(); + + if (State != null) + _window?.UpdateState(_prototypeManager, (AccessOverriderBoundUserInterfaceState) State); + } + + private void RefreshAccess() + { List> accessLevels; if (EntMan.TryGetComponent(Owner, out var accessOverrider)) @@ -30,38 +53,20 @@ protected override void Open() accessLevels = accessOverrider.AccessLevels; accessLevels.Sort(); } - else { accessLevels = new List>(); _accessOverriderSystem.Log.Error($"No AccessOverrider component found for {EntMan.ToPrettyString(Owner)}!"); } - _window = new AccessOverriderWindow(this, _prototypeManager, accessLevels) - { - Title = EntMan.GetComponent(Owner).EntityName - }; - - _window.PrivilegedIdButton.OnPressed += _ => SendMessage(new ItemSlotButtonPressedEvent(PrivilegedIdCardSlotId)); - - _window.OnClose += Close; - _window.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _window?.Dispose(); + _window?.SetAccessLevels(_prototypeManager, accessLevels); } protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); var castState = (AccessOverriderBoundUserInterfaceState) state; - _window?.UpdateState(castState); + _window?.UpdateState(_prototypeManager, castState); } public void SubmitData(List> newAccessList) diff --git a/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs b/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs index 6025c3b551f..ba087718583 100644 --- a/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs +++ b/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs @@ -13,26 +13,24 @@ namespace Content.Client.Access.UI [GenerateTypedNameReferences] public sealed partial class AccessOverriderWindow : DefaultWindow { - [Dependency] private readonly ILogManager _logManager = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - - private readonly AccessOverriderBoundUserInterface _owner; private readonly Dictionary _accessButtons = new(); - public AccessOverriderWindow(AccessOverriderBoundUserInterface owner, IPrototypeManager prototypeManager, - List> accessLevels) + public event Action>>? OnSubmit; + + public AccessOverriderWindow() { RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - var logMill = _logManager.GetSawmill(SharedAccessOverriderSystem.Sawmill); + } - _owner = owner; + public void SetAccessLevels(IPrototypeManager protoManager, List> accessLevels) + { + _accessButtons.Clear(); + AccessLevelGrid.DisposeAllChildren(); foreach (var access in accessLevels) { - if (!prototypeManager.TryIndex(access, out var accessLevel)) + if (!protoManager.TryIndex(access, out var accessLevel)) { - logMill.Error($"Unable to find accesslevel for {access}"); continue; } @@ -44,11 +42,16 @@ public AccessOverriderWindow(AccessOverriderBoundUserInterface owner, IPrototype AccessLevelGrid.AddChild(newButton); _accessButtons.Add(accessLevel.ID, newButton); - newButton.OnPressed += _ => SubmitData(); + newButton.OnPressed += _ => + { + OnSubmit?.Invoke( + // Iterate over the buttons dictionary, filter by `Pressed`, only get key from the key/value pair + _accessButtons.Where(x => x.Value.Pressed).Select(x => new ProtoId(x.Key)).ToList()); + }; } } - public void UpdateState(AccessOverriderBoundUserInterfaceState state) + public void UpdateState(IPrototypeManager protoManager, AccessOverriderBoundUserInterfaceState state) { PrivilegedIdLabel.Text = state.PrivilegedIdName; PrivilegedIdButton.Text = state.IsPrivilegedIdPresent @@ -66,11 +69,11 @@ public void UpdateState(AccessOverriderBoundUserInterfaceState state) if (state.MissingPrivilegesList != null && state.MissingPrivilegesList.Any()) { - List missingPrivileges = new List(); + var missingPrivileges = new List(); foreach (string tag in state.MissingPrivilegesList) { - string privilege = Loc.GetString(_prototypeManager.Index(tag)?.Name ?? "generic-unknown"); + var privilege = Loc.GetString(protoManager.Index(tag)?.Name ?? "generic-unknown"); missingPrivileges.Add(privilege); } @@ -90,13 +93,5 @@ public void UpdateState(AccessOverriderBoundUserInterfaceState state) } } } - - private void SubmitData() - { - _owner.SubmitData( - - // Iterate over the buttons dictionary, filter by `Pressed`, only get key from the key/value pair - _accessButtons.Where(x => x.Value.Pressed).Select(x => new ProtoId(x.Key)).ToList()); - } } } diff --git a/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs b/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs index 761f52988a9..50add43dc91 100644 --- a/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs +++ b/Content.Client/Access/UI/AgentIDCardBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Access.Systems; using Content.Shared.StatusIcon; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Access.UI @@ -20,16 +21,11 @@ protected override void Open() { base.Open(); - _window?.Dispose(); - _window = new AgentIDCardWindow(this); - if (State != null) - UpdateState(State); + _window = this.CreateWindow(); - _window.OpenCentered(); - - _window.OnClose += Close; _window.OnNameChanged += OnNameChanged; _window.OnJobChanged += OnJobChanged; + _window.OnJobIconChanged += OnJobIconChanged; } private void OnNameChanged(string newName) @@ -61,14 +57,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetCurrentJob(cast.CurrentJob); _window.SetAllowedIcons(cast.Icons, cast.CurrentJobIconId); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _window?.Dispose(); - } } } diff --git a/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs b/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs index 6d0b2a184f4..071ce41a069 100644 --- a/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs +++ b/Content.Client/Access/UI/AgentIDCardWindow.xaml.cs @@ -17,19 +17,19 @@ public sealed partial class AgentIDCardWindow : DefaultWindow [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IEntitySystemManager _entitySystem = default!; private readonly SpriteSystem _spriteSystem; - private readonly AgentIDCardBoundUserInterface _bui; private const int JobIconColumnCount = 10; public event Action? OnNameChanged; public event Action? OnJobChanged; - public AgentIDCardWindow(AgentIDCardBoundUserInterface bui) + public event Action>? OnJobIconChanged; + + public AgentIDCardWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); _spriteSystem = _entitySystem.GetEntitySystem(); - _bui = bui; NameLineEdit.OnTextEntered += e => OnNameChanged?.Invoke(e.Text); NameLineEdit.OnFocusExit += e => OnNameChanged?.Invoke(e.Text); @@ -67,7 +67,7 @@ public void SetAllowedIcons(HashSet> icons, string }; // Generate buttons textures - TextureRect jobIconTexture = new TextureRect + var jobIconTexture = new TextureRect { Texture = _spriteSystem.Frame0(jobIcon.Icon), TextureScale = new Vector2(2.5f, 2.5f), @@ -75,7 +75,7 @@ public void SetAllowedIcons(HashSet> icons, string }; jobIconButton.AddChild(jobIconTexture); - jobIconButton.OnPressed += _ => _bui.OnJobIconChanged(jobIconId); + jobIconButton.OnPressed += _ => OnJobIconChanged?.Invoke(jobIcon.ID); IconGrid.AddChild(jobIconButton); if (jobIconId.Equals(currentJobIconId)) diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index aff6c1ff7be..7f261f5df2d 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -107,7 +107,7 @@ private void BaseHandleState(EntityUid uid, BaseActionComponent component, Ba UpdateAction(uid, component); } - protected override void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) + public override void UpdateAction(EntityUid? actionId, BaseActionComponent? action = null) { if (!ResolveActionData(actionId, ref action)) return; diff --git a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs index 78eefa34628..7082617c944 100644 --- a/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/ObjectsTab/ObjectsTab.xaml.cs @@ -14,7 +14,6 @@ namespace Content.Client.Administration.UI.Tabs.ObjectsTab; public sealed partial class ObjectsTab : Control { [Dependency] private readonly IEntityManager _entityManager = default!; - [Dependency] private readonly IGameTiming _timing = default!; private readonly Color _altColor = Color.FromHex("#292B38"); private readonly Color _defaultColor = Color.FromHex("#2F2F3B"); diff --git a/Content.Client/Ame/UI/AmeControllerBoundUserInterface.cs b/Content.Client/Ame/UI/AmeControllerBoundUserInterface.cs index e84cf5d34de..3d65f751899 100644 --- a/Content.Client/Ame/UI/AmeControllerBoundUserInterface.cs +++ b/Content.Client/Ame/UI/AmeControllerBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Ame.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Ame.UI { @@ -16,9 +17,8 @@ protected override void Open() { base.Open(); - _window = new AmeWindow(this); - _window.OnClose += Close; - _window.OpenCentered(); + _window = this.CreateWindow(); + _window.OnAmeButton += ButtonPressed; } /// @@ -40,15 +40,5 @@ public void ButtonPressed(UiButton button) { SendMessage(new UiButtonPressedMessage(button)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } } } diff --git a/Content.Client/Ame/UI/AmeWindow.xaml.cs b/Content.Client/Ame/UI/AmeWindow.xaml.cs index 8b91ec59660..d6d580bcdaf 100644 --- a/Content.Client/Ame/UI/AmeWindow.xaml.cs +++ b/Content.Client/Ame/UI/AmeWindow.xaml.cs @@ -1,3 +1,4 @@ +using System.Linq; using Content.Client.UserInterface; using Content.Shared.Ame.Components; using Robust.Client.AutoGenerated; @@ -9,15 +10,17 @@ namespace Content.Client.Ame.UI [GenerateTypedNameReferences] public sealed partial class AmeWindow : DefaultWindow { - public AmeWindow(AmeControllerBoundUserInterface ui) + public event Action? OnAmeButton; + + public AmeWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - EjectButton.OnPressed += _ => ui.ButtonPressed(UiButton.Eject); - ToggleInjection.OnPressed += _ => ui.ButtonPressed(UiButton.ToggleInjection); - IncreaseFuelButton.OnPressed += _ => ui.ButtonPressed(UiButton.IncreaseFuel); - DecreaseFuelButton.OnPressed += _ => ui.ButtonPressed(UiButton.DecreaseFuel); + EjectButton.OnPressed += _ => OnAmeButton?.Invoke(UiButton.Eject); + ToggleInjection.OnPressed += _ => OnAmeButton?.Invoke(UiButton.ToggleInjection); + IncreaseFuelButton.OnPressed += _ => OnAmeButton?.Invoke(UiButton.IncreaseFuel); + DecreaseFuelButton.OnPressed += _ => OnAmeButton?.Invoke(UiButton.DecreaseFuel); } /// @@ -29,7 +32,7 @@ public void UpdateState(BoundUserInterfaceState state) var castState = (AmeControllerBoundUserInterfaceState) state; // Disable all buttons if not powered - if (Contents.Children != null) + if (Contents.Children.Any()) { ButtonHelpers.SetButtonDisabledRecursive(Contents, !castState.HasPower); EjectButton.Disabled = false; @@ -65,8 +68,8 @@ public void UpdateState(BoundUserInterfaceState state) CoreCount.Text = $"{castState.CoreCount}"; InjectionAmount.Text = $"{castState.InjectionAmount}"; // format power statistics to pretty numbers - CurrentPowerSupply.Text = $"{castState.CurrentPowerSupply.ToString("N1")}"; - TargetedPowerSupply.Text = $"{castState.TargetedPowerSupply.ToString("N1")}"; + CurrentPowerSupply.Text = $"{castState.CurrentPowerSupply:N1}"; + TargetedPowerSupply.Text = $"{castState.TargetedPowerSupply:N1}"; } } } diff --git a/Content.Client/Anomaly/Ui/AnomalyGeneratorBoundUserInterface.cs b/Content.Client/Anomaly/Ui/AnomalyGeneratorBoundUserInterface.cs index 5764d0a097d..5d1985485c4 100644 --- a/Content.Client/Anomaly/Ui/AnomalyGeneratorBoundUserInterface.cs +++ b/Content.Client/Anomaly/Ui/AnomalyGeneratorBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Gravity; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Anomaly.Ui; @@ -18,10 +19,8 @@ protected override void Open() { base.Open(); - _window = new(Owner); - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.SetEntity(Owner); _window.OnGenerateButtonPressed += () => { @@ -37,18 +36,5 @@ protected override void UpdateState(BoundUserInterfaceState state) return; _window?.UpdateState(msg); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _window?.Dispose(); - } - - public void SetPowerSwitch(bool on) - { - SendMessage(new SharedGravityGeneratorComponent.SwitchGeneratorMessage(on)); - } } diff --git a/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs b/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs index 08438e2a1b2..82d41192dd0 100644 --- a/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs +++ b/Content.Client/Anomaly/Ui/AnomalyGeneratorWindow.xaml.cs @@ -18,17 +18,21 @@ public sealed partial class AnomalyGeneratorWindow : FancyWindow public Action? OnGenerateButtonPressed; - public AnomalyGeneratorWindow(EntityUid gen) + public AnomalyGeneratorWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - EntityView.SetEntity(gen); EntityView.SpriteOffset = false; GenerateButton.OnPressed += _ => OnGenerateButtonPressed?.Invoke(); } + public void SetEntity(EntityUid uid) + { + EntityView.SetEntity(uid); + } + public void UpdateState(AnomalyGeneratorUserInterfaceState state) { _cooldownEnd = state.CooldownEndTime; diff --git a/Content.Client/Arcade/BlockGameMenu.cs b/Content.Client/Arcade/BlockGameMenu.cs index eeda2a31020..4a579fc4bf4 100644 --- a/Content.Client/Arcade/BlockGameMenu.cs +++ b/Content.Client/Arcade/BlockGameMenu.cs @@ -28,8 +28,6 @@ public sealed class BlockGameMenu : DefaultWindow private static readonly Vector2 BlockSize = new(15, 15); - private readonly BlockGameBoundUserInterface _owner; - private readonly PanelContainer _mainPanel; private readonly BoxContainer _gameRootContainer; @@ -58,10 +56,11 @@ public sealed class BlockGameMenu : DefaultWindow private bool _isPlayer = false; private bool _gameOver = false; - public BlockGameMenu(BlockGameBoundUserInterface owner) + public event Action? OnAction; + + public BlockGameMenu() { Title = Loc.GetString("blockgame-menu-title"); - _owner = owner; MinSize = SetSize = new Vector2(410, 490); @@ -176,7 +175,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) }; _newGameButton.OnPressed += (e) => { - _owner.SendAction(BlockGamePlayerAction.NewGame); + OnAction?.Invoke(BlockGamePlayerAction.NewGame); }; pauseMenuContainer.AddChild(_newGameButton); pauseMenuContainer.AddChild(new Control { MinSize = new Vector2(1, 10) }); @@ -186,7 +185,10 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) Text = Loc.GetString("blockgame-menu-button-scoreboard"), TextAlign = Label.AlignMode.Center }; - _scoreBoardButton.OnPressed += (e) => _owner.SendAction(BlockGamePlayerAction.ShowHighscores); + _scoreBoardButton.OnPressed += (e) => + { + OnAction?.Invoke(BlockGamePlayerAction.ShowHighscores); + }; pauseMenuContainer.AddChild(_scoreBoardButton); _unpauseButtonMargin = new Control { MinSize = new Vector2(1, 10), Visible = false }; pauseMenuContainer.AddChild(_unpauseButtonMargin); @@ -199,7 +201,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) }; _unpauseButton.OnPressed += (e) => { - _owner.SendAction(BlockGamePlayerAction.Unpause); + OnAction?.Invoke(BlockGamePlayerAction.Unpause); }; pauseMenuContainer.AddChild(_unpauseButton); @@ -257,7 +259,7 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) }; _finalNewGameButton.OnPressed += (e) => { - _owner.SendAction(BlockGamePlayerAction.NewGame); + OnAction?.Invoke(BlockGamePlayerAction.NewGame); }; gameOverMenuContainer.AddChild(_finalNewGameButton); @@ -327,7 +329,10 @@ public BlockGameMenu(BlockGameBoundUserInterface owner) Text = Loc.GetString("blockgame-menu-button-back"), TextAlign = Label.AlignMode.Center }; - _highscoreBackButton.OnPressed += (e) => _owner.SendAction(BlockGamePlayerAction.Pause); + _highscoreBackButton.OnPressed += (e) => + { + OnAction?.Invoke(BlockGamePlayerAction.Pause); + }; menuContainer.AddChild(_highscoreBackButton); menuInnerPanel.AddChild(menuContainer); @@ -473,7 +478,7 @@ protected override void KeyboardFocusExited() private void TryPause() { - _owner.SendAction(BlockGamePlayerAction.Pause); + OnAction?.Invoke(BlockGamePlayerAction.Pause); } public void SetStarted() @@ -576,19 +581,19 @@ protected override void KeyBindDown(GUIBoundKeyEventArgs args) return; else if (args.Function == ContentKeyFunctions.ArcadeLeft) - _owner.SendAction(BlockGamePlayerAction.StartLeft); + OnAction?.Invoke(BlockGamePlayerAction.StartLeft); else if (args.Function == ContentKeyFunctions.ArcadeRight) - _owner.SendAction(BlockGamePlayerAction.StartRight); + OnAction?.Invoke(BlockGamePlayerAction.StartRight); else if (args.Function == ContentKeyFunctions.ArcadeUp) - _owner.SendAction(BlockGamePlayerAction.Rotate); + OnAction?.Invoke(BlockGamePlayerAction.Rotate); else if (args.Function == ContentKeyFunctions.Arcade3) - _owner.SendAction(BlockGamePlayerAction.CounterRotate); + OnAction?.Invoke(BlockGamePlayerAction.CounterRotate); else if (args.Function == ContentKeyFunctions.ArcadeDown) - _owner.SendAction(BlockGamePlayerAction.SoftdropStart); + OnAction?.Invoke(BlockGamePlayerAction.SoftdropStart); else if (args.Function == ContentKeyFunctions.Arcade2) - _owner.SendAction(BlockGamePlayerAction.Hold); + OnAction?.Invoke(BlockGamePlayerAction.Hold); else if (args.Function == ContentKeyFunctions.Arcade1) - _owner.SendAction(BlockGamePlayerAction.Harddrop); + OnAction?.Invoke(BlockGamePlayerAction.Harddrop); } protected override void KeyBindUp(GUIBoundKeyEventArgs args) @@ -599,11 +604,11 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args) return; else if (args.Function == ContentKeyFunctions.ArcadeLeft) - _owner.SendAction(BlockGamePlayerAction.EndLeft); + OnAction?.Invoke(BlockGamePlayerAction.EndLeft); else if (args.Function == ContentKeyFunctions.ArcadeRight) - _owner.SendAction(BlockGamePlayerAction.EndRight); + OnAction?.Invoke(BlockGamePlayerAction.EndRight); else if (args.Function == ContentKeyFunctions.ArcadeDown) - _owner.SendAction(BlockGamePlayerAction.SoftdropEnd); + OnAction?.Invoke(BlockGamePlayerAction.SoftdropEnd); } public void UpdateNextBlock(BlockGameBlock[] blocks) diff --git a/Content.Client/Arcade/SpaceVillainArcadeMenu.cs b/Content.Client/Arcade/SpaceVillainArcadeMenu.cs index e5542a5848e..1ee4c268184 100644 --- a/Content.Client/Arcade/SpaceVillainArcadeMenu.cs +++ b/Content.Client/Arcade/SpaceVillainArcadeMenu.cs @@ -8,8 +8,6 @@ namespace Content.Client.Arcade { public sealed class SpaceVillainArcadeMenu : DefaultWindow { - public SpaceVillainArcadeBoundUserInterface Owner { get; set; } - private readonly Label _enemyNameLabel; private readonly Label _playerInfoLabel; private readonly Label _enemyInfoLabel; @@ -17,11 +15,13 @@ public sealed class SpaceVillainArcadeMenu : DefaultWindow private readonly Label _enemyActionLabel; private readonly Button[] _gameButtons = new Button[3]; //used to disable/enable all game buttons - public SpaceVillainArcadeMenu(SpaceVillainArcadeBoundUserInterface owner) + + public event Action? OnPlayerAction; + + public SpaceVillainArcadeMenu() { MinSize = SetSize = new Vector2(300, 225); Title = Loc.GetString("spacevillain-menu-title"); - Owner = owner; var grid = new GridContainer { Columns = 1 }; @@ -47,32 +47,43 @@ public SpaceVillainArcadeMenu(SpaceVillainArcadeBoundUserInterface owner) grid.AddChild(_enemyActionLabel); var buttonGrid = new GridContainer { Columns = 3 }; - _gameButtons[0] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Attack) + _gameButtons[0] = new Button() { Text = Loc.GetString("spacevillain-menu-button-attack") }; + + _gameButtons[0].OnPressed += + _ => OnPlayerAction?.Invoke(SharedSpaceVillainArcadeComponent.PlayerAction.Attack); buttonGrid.AddChild(_gameButtons[0]); - _gameButtons[1] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Heal) + _gameButtons[1] = new Button() { Text = Loc.GetString("spacevillain-menu-button-heal") }; + + _gameButtons[1].OnPressed += + _ => OnPlayerAction?.Invoke(SharedSpaceVillainArcadeComponent.PlayerAction.Heal); buttonGrid.AddChild(_gameButtons[1]); - _gameButtons[2] = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.Recharge) + _gameButtons[2] = new Button() { Text = Loc.GetString("spacevillain-menu-button-recharge") }; + + _gameButtons[2].OnPressed += + _ => OnPlayerAction?.Invoke(SharedSpaceVillainArcadeComponent.PlayerAction.Recharge); buttonGrid.AddChild(_gameButtons[2]); centerContainer = new CenterContainer(); centerContainer.AddChild(buttonGrid); grid.AddChild(centerContainer); - var newGame = new ActionButton(Owner, SharedSpaceVillainArcadeComponent.PlayerAction.NewGame) + var newGame = new Button() { Text = Loc.GetString("spacevillain-menu-button-new-game") }; + + newGame.OnPressed += _ => OnPlayerAction?.Invoke(SharedSpaceVillainArcadeComponent.PlayerAction.NewGame); grid.AddChild(newGame); Contents.AddChild(grid); @@ -99,23 +110,5 @@ public void UpdateInfo(SharedSpaceVillainArcadeComponent.SpaceVillainArcadeDataU _playerActionLabel.Text = message.PlayerActionMessage; _enemyActionLabel.Text = message.EnemyActionMessage; } - - private sealed class ActionButton : Button - { - private readonly SpaceVillainArcadeBoundUserInterface _owner; - private readonly SharedSpaceVillainArcadeComponent.PlayerAction _playerAction; - - public ActionButton(SpaceVillainArcadeBoundUserInterface owner, SharedSpaceVillainArcadeComponent.PlayerAction playerAction) - { - _owner = owner; - _playerAction = playerAction; - OnPressed += Clicked; - } - - private void Clicked(ButtonEventArgs e) - { - _owner.SendAction(_playerAction); - } - } } } diff --git a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs index 1a3422dec0f..8fa8035afd6 100644 --- a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Arcade; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Arcade.UI; @@ -15,9 +16,7 @@ protected override void Open() { base.Open(); - _menu = new BlockGameMenu(this); - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); } protected override void ReceiveMessage(BoundUserInterfaceMessage message) diff --git a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs index 40bbe8b2d8c..c0704530de2 100644 --- a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs @@ -1,4 +1,5 @@ using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.GameObjects; using Robust.Shared.ViewVariables; using static Content.Shared.Arcade.SharedSpaceVillainArcadeComponent; @@ -9,8 +10,6 @@ public sealed class SpaceVillainArcadeBoundUserInterface : BoundUserInterface { [ViewVariables] private SpaceVillainArcadeMenu? _menu; - //public SharedSpaceVillainArcadeComponent SpaceVillainArcade; - public SpaceVillainArcadeBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { SendAction(PlayerAction.RequestData); @@ -25,10 +24,7 @@ protected override void Open() { base.Open(); - _menu = new SpaceVillainArcadeMenu(this); - - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); } protected override void ReceiveMessage(BoundUserInterfaceMessage message) @@ -36,12 +32,4 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) if (message is SpaceVillainArcadeDataUpdateMessage msg) _menu?.UpdateInfo(msg); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - _menu?.Dispose(); - } } diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs index 8f3b507c806..2ae15188355 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Atmos.Monitor; using Content.Shared.Atmos.Monitor.Components; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Log; @@ -20,16 +21,9 @@ protected override void Open() { base.Open(); - _window = new AirAlarmWindow(this); + _window = this.CreateWindow(); + _window.SetEntity(Owner); - if (State != null) - { - UpdateState(State); - } - - _window.OpenCentered(); - - _window.OnClose += Close; _window.AtmosDeviceDataChanged += OnDeviceDataChanged; _window.AtmosDeviceDataCopied += OnDeviceDataCopied; _window.AtmosAlarmThresholdChanged += OnThresholdChanged; diff --git a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs index 43be67c9d6b..eeec11c7660 100644 --- a/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs +++ b/Content.Client/Atmos/Monitor/UI/AirAlarmWindow.xaml.cs @@ -47,7 +47,7 @@ public sealed partial class AirAlarmWindow : FancyWindow private CheckBox _autoMode => AutoModeCheckBox; - public AirAlarmWindow(BoundUserInterface owner) + public AirAlarmWindow() { RobustXamlLoader.Load(this); @@ -95,8 +95,11 @@ public AirAlarmWindow(BoundUserInterface owner) _sensors.Clear(); ResyncAllRequested!.Invoke(); }; + } - EntityView.SetEntity(owner.Owner); + public void SetEntity(EntityUid uid) + { + EntityView.SetEntity(uid); } public void UpdateState(AirAlarmUIState state) diff --git a/Content.Client/Atmos/UI/GasCanisterBoundUserInterface.cs b/Content.Client/Atmos/UI/GasCanisterBoundUserInterface.cs index a5e316a8def..7bf9b396d5e 100644 --- a/Content.Client/Atmos/UI/GasCanisterBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasCanisterBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Atmos.Piping.Binary.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -21,14 +22,8 @@ protected override void Open() { base.Open(); - _window = new GasCanisterWindow(); + _window = this.CreateWindow(); - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; _window.ReleaseValveCloseButtonPressed += OnReleaseValveClosePressed; _window.ReleaseValveOpenButtonPressed += OnReleaseValveOpenPressed; _window.ReleasePressureSet += OnReleasePressureSet; diff --git a/Content.Client/Atmos/UI/GasFilterBoundUserInterface.cs b/Content.Client/Atmos/UI/GasFilterBoundUserInterface.cs index 1904e2b3402..2b8020924cf 100644 --- a/Content.Client/Atmos/UI/GasFilterBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasFilterBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Atmos.Piping.Trinary.Components; using Content.Shared.Localizations; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -28,14 +29,8 @@ protected override void Open() var atmosSystem = EntMan.System(); - _window = new GasFilterWindow(atmosSystem.Gases); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.PopulateGasList(atmosSystem.Gases); _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; _window.FilterTransferRateChanged += OnFilterTransferRatePressed; diff --git a/Content.Client/Atmos/UI/GasFilterWindow.xaml.cs b/Content.Client/Atmos/UI/GasFilterWindow.xaml.cs index 28766c688a0..62748b52592 100644 --- a/Content.Client/Atmos/UI/GasFilterWindow.xaml.cs +++ b/Content.Client/Atmos/UI/GasFilterWindow.xaml.cs @@ -26,10 +26,9 @@ public sealed partial class GasFilterWindow : DefaultWindow public event Action? FilterTransferRateChanged; public event Action? SelectGasPressed; - public GasFilterWindow(IEnumerable gases) + public GasFilterWindow() { RobustXamlLoader.Load(this); - PopulateGasList(gases); ToggleStatusButton.OnPressed += _ => SetFilterStatus(!FilterStatus); ToggleStatusButton.OnPressed += _ => ToggleStatusButtonPressed?.Invoke(); @@ -73,7 +72,7 @@ public void SetGasFiltered(string? id, string name) SelectGasButton.Disabled = true; } - private void PopulateGasList(IEnumerable gases) + public void PopulateGasList(IEnumerable gases) { GasList.Add(new ItemList.Item(GasList) { @@ -81,7 +80,7 @@ private void PopulateGasList(IEnumerable gases) Text = Loc.GetString("comp-gas-filter-ui-filter-gas-none") }); - foreach (GasPrototype gas in gases) + foreach (var gas in gases) { var gasName = Loc.GetString(gas.Name); GasList.Add(GetGasItem(gas.ID, gasName, GasList)); diff --git a/Content.Client/Atmos/UI/GasMixerBoundUserInteface.cs b/Content.Client/Atmos/UI/GasMixerBoundUserInteface.cs index 709c06517cb..392fbf1cd9a 100644 --- a/Content.Client/Atmos/UI/GasMixerBoundUserInteface.cs +++ b/Content.Client/Atmos/UI/GasMixerBoundUserInteface.cs @@ -2,7 +2,7 @@ using Content.Shared.Atmos.Piping.Trinary.Components; using Content.Shared.Localizations; using JetBrains.Annotations; -using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -26,14 +26,7 @@ protected override void Open() { base.Open(); - _window = new GasMixerWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; _window.MixerOutputPressureChanged += OnMixerOutputPressurePressed; @@ -83,12 +76,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetOutputPressure(cast.OutputPressure); _window.SetNodePercentages(cast.NodeOne); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } } diff --git a/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs b/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs index 6eba2e0d215..220fdbe875c 100644 --- a/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasPressurePumpBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Localizations; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -26,14 +27,7 @@ protected override void Open() { base.Open(); - _window = new GasPressurePumpWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; _window.PumpOutputPressureChanged += OnPumpOutputPressurePressed; @@ -67,12 +61,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetPumpStatus(cast.Enabled); _window.SetOutputPressure(cast.OutputPressure); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } } diff --git a/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs b/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs index 1664c8b9d75..d62be8f4bb4 100644 --- a/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasThermomachineBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Atmos.Piping.Unary.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -31,14 +32,7 @@ protected override void Open() { base.Open(); - _window = new GasThermomachineWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButton.OnPressed += _ => OnToggleStatusButtonPressed(); _window.TemperatureSpinbox.OnValueChanged += _ => OnTemperatureChanged(_window.TemperatureSpinbox.Value); @@ -91,12 +85,5 @@ protected override void UpdateState(BoundUserInterfaceState state) true => Loc.GetString("comp-gas-thermomachine-ui-title-heater") }; } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } } diff --git a/Content.Client/Atmos/UI/GasVolumePumpBoundUserInterface.cs b/Content.Client/Atmos/UI/GasVolumePumpBoundUserInterface.cs index 1b39306181a..642f34c2f92 100644 --- a/Content.Client/Atmos/UI/GasVolumePumpBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/GasVolumePumpBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Localizations; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Atmos.UI { @@ -26,14 +27,7 @@ protected override void Open() { base.Open(); - _window = new GasVolumePumpWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButtonPressed += OnToggleStatusButtonPressed; _window.PumpTransferRateChanged += OnPumpTransferRatePressed; @@ -64,16 +58,9 @@ protected override void UpdateState(BoundUserInterfaceState state) if (_window == null || state is not GasVolumePumpBoundUserInterfaceState cast) return; - _window.Title = (cast.PumpLabel); + _window.Title = cast.PumpLabel; _window.SetPumpStatus(cast.Enabled); _window.SetTransferRate(cast.TransferRate); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } } diff --git a/Content.Client/Atmos/UI/SpaceHeaterBoundUserInterface.cs b/Content.Client/Atmos/UI/SpaceHeaterBoundUserInterface.cs index 4d8d1191e91..e70426575d4 100644 --- a/Content.Client/Atmos/UI/SpaceHeaterBoundUserInterface.cs +++ b/Content.Client/Atmos/UI/SpaceHeaterBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Atmos.Piping.Portable.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; namespace Content.Client.Atmos.UI; @@ -21,14 +22,7 @@ protected override void Open() { base.Open(); - _window = new SpaceHeaterWindow(); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.ToggleStatusButton.OnPressed += _ => OnToggleStatusButtonPressed(); _window.IncreaseTempRange.OnPressed += _ => OnTemperatureRangeChanged(_window.TemperatureChangeDelta); diff --git a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs index 60fe339069a..865dfc478d0 100644 --- a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs +++ b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs @@ -1,8 +1,7 @@ using Content.Shared.Audio.Jukebox; using Robust.Client.Audio; -using Robust.Client.Player; +using Robust.Client.UserInterface; using Robust.Shared.Audio.Components; -using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Client.Audio.Jukebox; @@ -23,9 +22,7 @@ protected override void Open() { base.Open(); - _menu = new JukeboxMenu(); - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); _menu.OnPlayPressed += args => { @@ -100,19 +97,5 @@ public void SetTime(float time) SendMessage(new JukeboxSetTimeMessage(sentTime)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - if (_menu == null) - return; - - _menu.OnClose -= Close; - _menu.Dispose(); - _menu = null; - } } diff --git a/Content.Client/Backmen/Blob/BlobbernautSystem.cs b/Content.Client/Backmen/Blob/BlobbernautSystem.cs index 058c78e163f..4e9e7ff8d2a 100644 --- a/Content.Client/Backmen/Blob/BlobbernautSystem.cs +++ b/Content.Client/Backmen/Blob/BlobbernautSystem.cs @@ -11,12 +11,7 @@ namespace Content.Client.Backmen.Blob; public sealed class BlobbernautSystem : SharedBlobbernautSystem { - [Dependency] private readonly SharedPopupSystem _popup = default!; - protected override DamageSpecifier? TryChangeDamage(string msg, EntityUid ent, DamageSpecifier dmg) - { - _popup.PopupClient(Loc.GetString(msg), ent, ent, PopupType.LargeCaution); - return null; - } + } public sealed class BlobbernautVisualizerSystem : VisualizerSystem diff --git a/Content.Client/Bed/Cryostorage/CryostorageBoundUserInterface.cs b/Content.Client/Bed/Cryostorage/CryostorageBoundUserInterface.cs index ffab1625483..09f3cec8fbf 100644 --- a/Content.Client/Bed/Cryostorage/CryostorageBoundUserInterface.cs +++ b/Content.Client/Bed/Cryostorage/CryostorageBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Bed.Cryostorage; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Bed.Cryostorage; @@ -17,9 +18,7 @@ protected override void Open() { base.Open(); - _menu = new(); - - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.SlotRemoveButtonPressed += (ent, slot) => { @@ -30,8 +29,6 @@ protected override void Open() { SendMessage(new CryostorageRemoveItemBuiMessage(ent, hand, CryostorageRemoveItemBuiMessage.RemovalType.Hand)); }; - - _menu.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -45,12 +42,4 @@ protected override void UpdateState(BoundUserInterfaceState state) break; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - _menu?.Dispose(); - } } diff --git a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs index d3365702bcf..44c40143d83 100644 --- a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs +++ b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Client.Cargo.UI; using Content.Shared.Cargo.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Cargo.BUI; @@ -18,9 +19,7 @@ protected override void Open() { base.Open(); - _menu = new(); - - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.OnLabelButtonPressed += id => { @@ -31,8 +30,6 @@ protected override void Open() { SendMessage(new BountySkipMessage(id)); }; - - _menu.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState message) @@ -44,14 +41,4 @@ protected override void UpdateState(BoundUserInterfaceState message) _menu?.UpdateEntries(state.Bounties, state.UntilNextSkip); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (!disposing) - return; - - _menu?.Dispose(); - } } diff --git a/Content.Client/Cargo/BUI/CargoPalletConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoPalletConsoleBoundUserInterface.cs index 20c23a48a0d..2461dafb5f3 100644 --- a/Content.Client/Cargo/BUI/CargoPalletConsoleBoundUserInterface.cs +++ b/Content.Client/Cargo/BUI/CargoPalletConsoleBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Cargo.BUI; using Content.Shared.Cargo.Events; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Cargo.BUI; @@ -18,21 +19,9 @@ protected override void Open() { base.Open(); - _menu = new CargoPalletMenu(); + _menu = this.CreateWindow(); _menu.AppraiseRequested += OnAppraisal; _menu.SellRequested += OnSell; - _menu.OnClose += Close; - - _menu.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - { - _menu?.Dispose(); - } } private void OnAppraisal() diff --git a/Content.Client/Cargo/BUI/CargoShuttleConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoShuttleConsoleBoundUserInterface.cs index 422d03707a0..02b721b9020 100644 --- a/Content.Client/Cargo/BUI/CargoShuttleConsoleBoundUserInterface.cs +++ b/Content.Client/Cargo/BUI/CargoShuttleConsoleBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Cargo.BUI; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Cargo.BUI; @@ -9,6 +10,8 @@ namespace Content.Client.Cargo.BUI; [UsedImplicitly] public sealed class CargoShuttleConsoleBoundUserInterface : BoundUserInterface { + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [ViewVariables] private CargoShuttleMenu? _menu; @@ -19,24 +22,7 @@ public CargoShuttleConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base protected override void Open() { base.Open(); - var collection = IoCManager.Instance; - - if (collection == null) - return; - - _menu = new CargoShuttleMenu(collection.Resolve(), collection.Resolve().GetEntitySystem()); - _menu.OnClose += Close; - - _menu.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - { - _menu?.Dispose(); - } + _menu = this.CreateWindow(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -45,6 +31,6 @@ protected override void UpdateState(BoundUserInterfaceState state) if (state is not CargoShuttleConsoleBoundUserInterfaceState cargoState) return; _menu?.SetAccountName(cargoState.AccountName); _menu?.SetShuttleName(cargoState.ShuttleName); - _menu?.SetOrders(cargoState.Orders); + _menu?.SetOrders(EntMan.System(), _protoManager, cargoState.Orders); } } diff --git a/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs b/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs index c591f917da3..43b00089e16 100644 --- a/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs +++ b/Content.Client/Cargo/UI/CargoShuttleMenu.xaml.cs @@ -12,14 +12,9 @@ namespace Content.Client.Cargo.UI [GenerateTypedNameReferences] public sealed partial class CargoShuttleMenu : FancyWindow { - private readonly IPrototypeManager _protoManager; - private readonly SpriteSystem _spriteSystem; - - public CargoShuttleMenu(IPrototypeManager protoManager, SpriteSystem spriteSystem) + public CargoShuttleMenu() { RobustXamlLoader.Load(this); - _protoManager = protoManager; - _spriteSystem = spriteSystem; Title = Loc.GetString("cargo-shuttle-console-menu-title"); } @@ -33,19 +28,19 @@ public void SetShuttleName(string name) ShuttleNameLabel.Text = name; } - public void SetOrders(List orders) + public void SetOrders(SpriteSystem sprites, IPrototypeManager protoManager, List orders) { Orders.DisposeAllChildren(); foreach (var order in orders) { - var product = _protoManager.Index(order.ProductId); + var product = protoManager.Index(order.ProductId); var productName = product.Name; var row = new CargoOrderRow { Order = order, - Icon = { Texture = _spriteSystem.Frame0(product) }, + Icon = { Texture = sprites.Frame0(product) }, ProductName = { Text = Loc.GetString( diff --git a/Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs b/Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs index f3b2d373d74..2d4d192ea8a 100644 --- a/Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs +++ b/Content.Client/CartridgeLoader/Cartridges/NewsReaderUiFragment.xaml.cs @@ -31,7 +31,7 @@ public void UpdateState(NewsArticle article, int targetNum, int totalNum, bool n Author.Visible = true; PageName.Text = article.Title; - PageText.SetMarkup(article.Content); + PageText.SetMarkupPermissive(article.Content); PageNum.Text = $"{targetNum}/{totalNum}"; diff --git a/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs b/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs index 988fea7978b..3ef7f0ae73e 100644 --- a/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Containers.ItemSlots; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Chemistry.UI { @@ -27,13 +28,8 @@ protected override void Open() base.Open(); // Setup window layout/elements - _window = new ChemMasterWindow - { - Title = EntMan.GetComponent(Owner).EntityName, - }; - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.Title = EntMan.GetComponent(Owner).EntityName; // Setup static button actions. _window.InputEjectButton.OnPressed += _ => SendMessage( @@ -75,15 +71,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(castState); // Update window state } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } } } diff --git a/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs b/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs index 99e5a3d3953..2ad1b718887 100644 --- a/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/ReagentDispenserBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Containers.ItemSlots; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Chemistry.UI { @@ -15,9 +16,6 @@ public sealed class ReagentDispenserBoundUserInterface : BoundUserInterface [ViewVariables] private ReagentDispenserWindow? _window; - [ViewVariables] - private ReagentDispenserBoundUserInterfaceState? _lastState; - public ReagentDispenserBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -32,14 +30,9 @@ protected override void Open() base.Open(); // Setup window layout/elements - _window = new() - { - Title = EntMan.GetComponent(Owner).EntityName, - HelpGuidebookIds = EntMan.GetComponent(Owner).Guides - }; - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.Title = EntMan.GetComponent(Owner).EntityName; + _window.HelpGuidebookIds = EntMan.GetComponent(Owner).Guides; // Setup static button actions. _window.EjectButton.OnPressed += _ => SendMessage(new ItemSlotButtonPressedEvent(SharedReagentDispenser.OutputSlotName)); @@ -63,19 +56,7 @@ protected override void UpdateState(BoundUserInterfaceState state) base.UpdateState(state); var castState = (ReagentDispenserBoundUserInterfaceState) state; - _lastState = castState; - _window?.UpdateState(castState); //Update window state } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } } } diff --git a/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs b/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs index 35df131312d..f1cb27a62a4 100644 --- a/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.FixedPoint; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Chemistry.UI { @@ -18,7 +19,7 @@ public TransferAmountBoundUserInterface(EntityUid owner, Enum uiKey) : base(owne protected override void Open() { base.Open(); - _window = new TransferAmountWindow(); + _window = this.CreateWindow(); _window.ApplyButton.OnPressed += _ => { @@ -28,15 +29,6 @@ protected override void Open() _window.Close(); } }; - _window.OnClose += Close; - _window.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); } } } diff --git a/Content.Client/CloningConsole/UI/CloningConsoleBoundUserInterface.cs b/Content.Client/CloningConsole/UI/CloningConsoleBoundUserInterface.cs index 26f0994701e..62a02f37186 100644 --- a/Content.Client/CloningConsole/UI/CloningConsoleBoundUserInterface.cs +++ b/Content.Client/CloningConsole/UI/CloningConsoleBoundUserInterface.cs @@ -1,6 +1,7 @@ using JetBrains.Annotations; using Robust.Client.GameObjects; using Content.Shared.Cloning.CloningConsole; +using Robust.Client.UserInterface; namespace Content.Client.CloningConsole.UI { @@ -17,13 +18,11 @@ public CloningConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owne protected override void Open() { base.Open(); - _window = new CloningConsoleWindow - { - Title = Loc.GetString("cloning-console-window-title") - }; - _window.OnClose += Close; + + _window = this.CreateWindow(); + _window.Title = Loc.GetString("cloning-console-window-title"); + _window.CloneButton.OnPressed += _ => SendMessage(new UiButtonPressedMessage(UiButton.Clone)); - _window.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -32,19 +31,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.Populate((CloningConsoleBoundUserInterfaceState) state); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - if (_window != null) - { - _window.OnClose -= Close; - _window.CloneButton.OnPressed -= _ => SendMessage(new UiButtonPressedMessage(UiButton.Clone)); - } - _window?.Dispose(); - } } } diff --git a/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs b/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs index 5b0d5fcf21f..83f6ba15662 100644 --- a/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs +++ b/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Clothing.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Clothing.UI; @@ -22,10 +23,8 @@ protected override void Open() { base.Open(); - _menu = new ChameleonMenu(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.OnIdSelected += OnIdSelected; - _menu.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -42,15 +41,4 @@ private void OnIdSelected(string selectedId) { SendMessage(new ChameleonPrototypeSelectedMessage(selectedId)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _menu?.Close(); - _menu = null; - } - } } diff --git a/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs b/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs index 1c94d32bf8d..0310e91eeb0 100644 --- a/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs +++ b/Content.Client/Communications/UI/CommunicationsConsoleBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.CCVar; using Content.Shared.Chat; using Content.Shared.Communications; +using Robust.Client.UserInterface; using Robust.Shared.Configuration; using Robust.Shared.Timing; @@ -8,34 +9,11 @@ namespace Content.Client.Communications.UI { public sealed class CommunicationsConsoleBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [ViewVariables] private CommunicationsConsoleMenu? _menu; - [ViewVariables] - public bool CanAnnounce { get; private set; } - [ViewVariables] - public bool CanBroadcast { get; private set; } - - [ViewVariables] - public bool CanCall { get; private set; } - - [ViewVariables] - public bool CountdownStarted { get; private set; } - - [ViewVariables] - public bool AlertLevelSelectable { get; private set; } - - [ViewVariables] - public string CurrentLevel { get; private set; } = default!; - - [ViewVariables] - private TimeSpan? _expectedCountdownTime; - - public int Countdown => _expectedCountdownTime == null ? 0 : Math.Max((int) _expectedCountdownTime.Value.Subtract(_gameTiming.CurTime).TotalSeconds, 0); - public CommunicationsConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -44,23 +22,25 @@ protected override void Open() { base.Open(); - _menu = new CommunicationsConsoleMenu(this); - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); + _menu.OnAnnounce += AnnounceButtonPressed; + _menu.OnBroadcast += BroadcastButtonPressed; + _menu.OnAlertLevel += AlertLevelSelected; + _menu.OnEmergencyLevel += EmergencyShuttleButtonPressed; } public void AlertLevelSelected(string level) { - if (AlertLevelSelectable) + if (_menu!.AlertLevelSelectable) { - CurrentLevel = level; + _menu.CurrentLevel = level; SendMessage(new CommunicationsConsoleSelectAlertLevelMessage(level)); } } public void EmergencyShuttleButtonPressed() { - if (CountdownStarted) + if (_menu!.CountdownStarted) RecallShuttle(); else CallShuttle(); @@ -95,31 +75,23 @@ protected override void UpdateState(BoundUserInterfaceState state) if (state is not CommunicationsConsoleInterfaceState commsState) return; - CanAnnounce = commsState.CanAnnounce; - CanBroadcast = commsState.CanBroadcast; - CanCall = commsState.CanCall; - _expectedCountdownTime = commsState.ExpectedCountdownEnd; - CountdownStarted = commsState.CountdownStarted; - AlertLevelSelectable = commsState.AlertLevels != null && !float.IsNaN(commsState.CurrentAlertDelay) && commsState.CurrentAlertDelay <= 0; - CurrentLevel = commsState.CurrentAlert; - if (_menu != null) { + _menu.CanAnnounce = commsState.CanAnnounce; + _menu.CanBroadcast = commsState.CanBroadcast; + _menu.CanCall = commsState.CanCall; + _menu.CountdownStarted = commsState.CountdownStarted; + _menu.AlertLevelSelectable = commsState.AlertLevels != null && !float.IsNaN(commsState.CurrentAlertDelay) && commsState.CurrentAlertDelay <= 0; + _menu.CurrentLevel = commsState.CurrentAlert; + _menu.CountdownEnd = commsState.ExpectedCountdownEnd; + _menu.UpdateCountdown(); - _menu.UpdateAlertLevels(commsState.AlertLevels, CurrentLevel); - _menu.AlertLevelButton.Disabled = !AlertLevelSelectable; - _menu.EmergencyShuttleButton.Disabled = !CanCall; - _menu.AnnounceButton.Disabled = !CanAnnounce; - _menu.BroadcastButton.Disabled = !CanBroadcast; + _menu.UpdateAlertLevels(commsState.AlertLevels, _menu.CurrentLevel); + _menu.AlertLevelButton.Disabled = !_menu.AlertLevelSelectable; + _menu.EmergencyShuttleButton.Disabled = !_menu.CanCall; + _menu.AnnounceButton.Disabled = !_menu.CanAnnounce; + _menu.BroadcastButton.Disabled = !_menu.CanBroadcast; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _menu?.Dispose(); - } } } diff --git a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs index bbca06f5194..63868e7a93e 100644 --- a/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs +++ b/Content.Client/Communications/UI/CommunicationsConsoleMenu.xaml.cs @@ -1,31 +1,40 @@ -using Content.Client.UserInterface.Controls; -using System.Threading; +using System.Globalization; +using Content.Client.UserInterface.Controls; using Content.Shared.CCVar; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.XAML; using Robust.Shared.Configuration; +using Robust.Shared.Timing; using Robust.Shared.Utility; -using Timer = Robust.Shared.Timing.Timer; namespace Content.Client.Communications.UI { [GenerateTypedNameReferences] public sealed partial class CommunicationsConsoleMenu : FancyWindow { - private CommunicationsConsoleBoundUserInterface Owner { get; set; } - private readonly CancellationTokenSource _timerCancelTokenSource = new(); - [Dependency] private readonly IConfigurationManager _cfg = default!; - - public CommunicationsConsoleMenu(CommunicationsConsoleBoundUserInterface owner) + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly ILocalizationManager _loc = default!; + + public bool CanAnnounce; + public bool CanBroadcast; + public bool CanCall; + public bool AlertLevelSelectable; + public bool CountdownStarted; + public string CurrentLevel = string.Empty; + public TimeSpan? CountdownEnd; + + public event Action? OnEmergencyLevel; + public event Action? OnAlertLevel; + public event Action? OnAnnounce; + public event Action? OnBroadcast; + + public CommunicationsConsoleMenu() { IoCManager.InjectDependencies(this); RobustXamlLoader.Load(this); - Owner = owner; - - var loc = IoCManager.Resolve(); - MessageInput.Placeholder = new Rope.Leaf(loc.GetString("comms-console-menu-announcement-placeholder")); + MessageInput.Placeholder = new Rope.Leaf(_loc.GetString("comms-console-menu-announcement-placeholder")); var maxAnnounceLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength); MessageInput.OnTextChanged += (args) => @@ -37,33 +46,38 @@ public CommunicationsConsoleMenu(CommunicationsConsoleBoundUserInterface owner) } else { - AnnounceButton.Disabled = !owner.CanAnnounce; + AnnounceButton.Disabled = !CanAnnounce; AnnounceButton.ToolTip = null; } }; - AnnounceButton.OnPressed += (_) => Owner.AnnounceButtonPressed(Rope.Collapse(MessageInput.TextRope)); - AnnounceButton.Disabled = !owner.CanAnnounce; + AnnounceButton.OnPressed += _ => OnAnnounce?.Invoke(Rope.Collapse(MessageInput.TextRope)); + AnnounceButton.Disabled = !CanAnnounce; - BroadcastButton.OnPressed += (_) => Owner.BroadcastButtonPressed(Rope.Collapse(MessageInput.TextRope)); - BroadcastButton.Disabled = !owner.CanBroadcast; + BroadcastButton.OnPressed += _ => OnBroadcast?.Invoke(Rope.Collapse(MessageInput.TextRope)); + BroadcastButton.Disabled = !CanBroadcast; AlertLevelButton.OnItemSelected += args => { var metadata = AlertLevelButton.GetItemMetadata(args.Id); if (metadata != null && metadata is string cast) { - Owner.AlertLevelSelected(cast); + OnAlertLevel?.Invoke(cast); } }; - AlertLevelButton.Disabled = !owner.AlertLevelSelectable; - EmergencyShuttleButton.OnPressed += (_) => Owner.EmergencyShuttleButtonPressed(); - EmergencyShuttleButton.Disabled = !owner.CanCall; + AlertLevelButton.Disabled = !AlertLevelSelectable; + + EmergencyShuttleButton.OnPressed += _ => OnEmergencyLevel?.Invoke(); + EmergencyShuttleButton.Disabled = !CanCall; + } + + protected override void FrameUpdate(FrameEventArgs args) + { + base.FrameUpdate(args); UpdateCountdown(); - Timer.SpawnRepeating(1000, UpdateCountdown, _timerCancelTokenSource.Token); } // The current alert could make levels unselectable, so we need to ensure that the UI reacts properly. @@ -105,32 +119,19 @@ public void UpdateAlertLevels(List? alerts, string currentAlert) public void UpdateCountdown() { - if (!Owner.CountdownStarted) + if (!CountdownStarted) { - CountdownLabel.SetMessage(""); + CountdownLabel.SetMessage(string.Empty); EmergencyShuttleButton.Text = Loc.GetString("comms-console-menu-call-shuttle"); return; } + var diff = MathHelper.Max((CountdownEnd - _timing.CurTime) ?? TimeSpan.Zero, TimeSpan.Zero); + EmergencyShuttleButton.Text = Loc.GetString("comms-console-menu-recall-shuttle"); var infoText = Loc.GetString($"comms-console-menu-time-remaining", - ("time", Owner.Countdown.ToString())); + ("time", diff.TotalSeconds.ToString(CultureInfo.CurrentCulture))); CountdownLabel.SetMessage(infoText); } - - public override void Close() - { - base.Close(); - - _timerCancelTokenSource.Cancel(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - _timerCancelTokenSource.Cancel(); - } } } diff --git a/Content.Client/Computer/ComputerBoundUserInterface.cs b/Content.Client/Computer/ComputerBoundUserInterface.cs index bdbfe03fa10..11c26b252e9 100644 --- a/Content.Client/Computer/ComputerBoundUserInterface.cs +++ b/Content.Client/Computer/ComputerBoundUserInterface.cs @@ -1,4 +1,5 @@ using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.CustomControls; namespace Content.Client.Computer @@ -19,10 +20,8 @@ protected override void Open() { base.Open(); - _window = (TWindow) _dynamicTypeFactory.CreateInstance(typeof(TWindow)); + _window = this.CreateWindow(); _window.SetupComputerWindow(this); - _window.OnClose += Close; - _window.OpenCentered(); } // Alas, this constructor has to be copied to the subclass. :( @@ -42,16 +41,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.UpdateState((TState) state); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } - protected override void ReceiveMessage(BoundUserInterfaceMessage message) { _window?.ReceiveMessage(message); diff --git a/Content.Client/Configurable/UI/ConfigurationBoundUserInterface.cs b/Content.Client/Configurable/UI/ConfigurationBoundUserInterface.cs index 4fea44f2253..e4966f1ec43 100644 --- a/Content.Client/Configurable/UI/ConfigurationBoundUserInterface.cs +++ b/Content.Client/Configurable/UI/ConfigurationBoundUserInterface.cs @@ -1,5 +1,6 @@ using System.Text.RegularExpressions; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using static Content.Shared.Configurable.ConfigurationComponent; namespace Content.Client.Configurable.UI @@ -9,9 +10,6 @@ public sealed class ConfigurationBoundUserInterface : BoundUserInterface [ViewVariables] private ConfigurationMenu? _menu; - [ViewVariables] - public Regex? Validation { get; internal set; } - public ConfigurationBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -19,10 +17,8 @@ public ConfigurationBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner protected override void Open() { base.Open(); - _menu = new ConfigurationMenu(this); - - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); + _menu.OnConfiguration += SendConfiguration; } protected override void UpdateState(BoundUserInterfaceState state) @@ -30,9 +26,7 @@ protected override void UpdateState(BoundUserInterfaceState state) base.UpdateState(state); if (state is not ConfigurationBoundUserInterfaceState configurationState) - { return; - } _menu?.Populate(configurationState); } @@ -41,9 +35,12 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) { base.ReceiveMessage(message); + if (_menu == null) + return; + if (message is ValidationUpdateMessage msg) { - Validation = new Regex(msg.ValidationString, RegexOptions.Compiled); + _menu.Validation = new Regex(msg.ValidationString, RegexOptions.Compiled); } } @@ -51,16 +48,5 @@ public void SendConfiguration(Dictionary config) { SendMessage(new ConfigurationUpdatedMessage(config)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing && _menu != null) - { - _menu.OnClose -= Close; - _menu.Close(); - } - } } } diff --git a/Content.Client/Configurable/UI/ConfigurationMenu.cs b/Content.Client/Configurable/UI/ConfigurationMenu.cs index cc24af28692..29217eef7be 100644 --- a/Content.Client/Configurable/UI/ConfigurationMenu.cs +++ b/Content.Client/Configurable/UI/ConfigurationMenu.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Numerics; +using System.Text.RegularExpressions; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; @@ -13,23 +14,25 @@ namespace Content.Client.Configurable.UI { public sealed class ConfigurationMenu : DefaultWindow { - public ConfigurationBoundUserInterface Owner { get; } - private readonly BoxContainer _column; private readonly BoxContainer _row; private readonly List<(string name, LineEdit input)> _inputs; - public ConfigurationMenu(ConfigurationBoundUserInterface owner) + [ViewVariables] + public Regex? Validation { get; internal set; } + + public event Action>? OnConfiguration; + + public ConfigurationMenu() { MinSize = SetSize = new Vector2(300, 250); - Owner = owner; _inputs = new List<(string name, LineEdit input)>(); Title = Loc.GetString("configuration-menu-device-title"); - BoxContainer baseContainer = new BoxContainer + var baseContainer = new BoxContainer { Orientation = LayoutOrientation.Vertical, VerticalExpand = true, @@ -116,14 +119,13 @@ public void Populate(ConfigurationBoundUserInterfaceState state) private void OnConfirm(ButtonEventArgs args) { var config = GenerateDictionary(_inputs, "Text"); - - Owner.SendConfiguration(config); + OnConfiguration?.Invoke(config); Close(); } private bool Validate(string value) { - return Owner.Validation == null || Owner.Validation.IsMatch(value); + return Validation?.IsMatch(value) != false; } private Dictionary GenerateDictionary(IEnumerable<(string name, LineEdit input)> inputs, string propertyName) diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index 889c992f7f6..f909b23423d 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -26,7 +26,6 @@ public sealed class ConstructionSystem : SharedConstructionSystem { [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly ExamineSystemShared _examineSystem = default!; [Dependency] private readonly SharedTransformSystem _transformSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; diff --git a/Content.Client/Construction/UI/FlatpackCreatorBoundUserInterface.cs b/Content.Client/Construction/UI/FlatpackCreatorBoundUserInterface.cs index 86f1b8b83c7..887492955e9 100644 --- a/Content.Client/Construction/UI/FlatpackCreatorBoundUserInterface.cs +++ b/Content.Client/Construction/UI/FlatpackCreatorBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Construction.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Construction.UI { @@ -17,8 +18,8 @@ protected override void Open() { base.Open(); - _menu = new FlatpackCreatorMenu(Owner); - _menu.OnClose += Close; + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); _menu.PackButtonPressed += () => { @@ -27,14 +28,5 @@ protected override void Open() _menu.OpenCentered(); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Dispose(); - } } } diff --git a/Content.Client/Construction/UI/FlatpackCreatorMenu.xaml.cs b/Content.Client/Construction/UI/FlatpackCreatorMenu.xaml.cs index 9f3d5695bb6..269694ebf9e 100644 --- a/Content.Client/Construction/UI/FlatpackCreatorMenu.xaml.cs +++ b/Content.Client/Construction/UI/FlatpackCreatorMenu.xaml.cs @@ -24,7 +24,7 @@ public sealed partial class FlatpackCreatorMenu : FancyWindow private readonly FlatpackSystem _flatpack; private readonly MaterialStorageSystem _materialStorage; - private readonly EntityUid _owner; + private EntityUid _owner; [ValidatePrototypeId] public const string NoBoardEffectId = "FlatpackerNoBoardEffect"; @@ -33,7 +33,7 @@ public sealed partial class FlatpackCreatorMenu : FancyWindow public event Action? PackButtonPressed; - public FlatpackCreatorMenu(EntityUid uid) + public FlatpackCreatorMenu() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); @@ -42,14 +42,17 @@ public FlatpackCreatorMenu(EntityUid uid) _flatpack = _entityManager.System(); _materialStorage = _entityManager.System(); - _owner = uid; - PackButton.OnPressed += _ => PackButtonPressed?.Invoke(); - MaterialStorageControl.SetOwner(uid); InsertLabel.SetMarkup(Loc.GetString("flatpacker-ui-insert-board")); } + public void SetEntity(EntityUid uid) + { + _owner = uid; + MaterialStorageControl.SetOwner(uid); + } + protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); diff --git a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs index e2c4d51ecd1..e5be0b1811f 100644 --- a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs +++ b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs @@ -2,12 +2,15 @@ using Content.Shared.Crayon; using Content.Shared.Decals; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Crayon.UI { public sealed class CrayonBoundUserInterface : BoundUserInterface { + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [ViewVariables] private CrayonWindow? _menu; @@ -18,15 +21,29 @@ public CrayonBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey protected override void Open() { base.Open(); - _menu = new CrayonWindow(this); - - _menu.OnClose += Close; - var prototypeManager = IoCManager.Resolve(); - var crayonDecals = prototypeManager.EnumeratePrototypes().Where(x => x.Tags.Contains("crayon")); - _menu.Populate(crayonDecals); + _menu = this.CreateWindow(); + _menu.OnColorSelected += SelectColor; + _menu.OnSelected += Select; + PopulateCrayons(); _menu.OpenCenteredLeft(); } + private void PopulateCrayons() + { + var crayonDecals = _protoManager.EnumeratePrototypes().Where(x => x.Tags.Contains("crayon")); + _menu?.Populate(crayonDecals); + } + + public override void OnProtoReload(PrototypesReloadedEventArgs args) + { + base.OnProtoReload(args); + + if (!args.WasModified()) + return; + + PopulateCrayons(); + } + protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); @@ -43,16 +60,5 @@ public void SelectColor(Color color) { SendMessage(new CrayonColorMessage(color)); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _menu?.Close(); - _menu = null; - } - } } } diff --git a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs index 2a5801ccf2d..b97786cd41a 100644 --- a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs +++ b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs @@ -18,18 +18,17 @@ namespace Content.Client.Crayon.UI [GenerateTypedNameReferences] public sealed partial class CrayonWindow : DefaultWindow { - public CrayonBoundUserInterface Owner { get; } - private Dictionary? _decals; private string? _selected; private Color _color; - public CrayonWindow(CrayonBoundUserInterface owner) + public event Action? OnColorSelected; + public event Action? OnSelected; + + public CrayonWindow() { RobustXamlLoader.Load(this); - Owner = owner; - Search.OnTextChanged += _ => RefreshList(); ColorSelector.OnColorChanged += SelectColor; } @@ -38,16 +37,16 @@ private void SelectColor(Color color) { _color = color; - Owner.SelectColor(color); - + OnColorSelected?.Invoke(color); RefreshList(); } private void RefreshList() { // Clear - Grid.RemoveAllChildren(); - if (_decals == null) return; + Grid.DisposeAllChildren(); + if (_decals == null) + return; var filter = Search.Text; foreach (var (decal, tex) in _decals) @@ -89,7 +88,6 @@ private void ButtonOnPressed(ButtonEventArgs obj) { if (obj.Button.Name == null) return; - Owner.Select(obj.Button.Name); _selected = obj.Button.Name; RefreshList(); } diff --git a/Content.Client/Disposal/UI/DisposalRouterBoundUserInterface.cs b/Content.Client/Disposal/UI/DisposalRouterBoundUserInterface.cs index e8e77217ea5..296e71d3a95 100644 --- a/Content.Client/Disposal/UI/DisposalRouterBoundUserInterface.cs +++ b/Content.Client/Disposal/UI/DisposalRouterBoundUserInterface.cs @@ -1,5 +1,6 @@ using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using static Content.Shared.Disposal.Components.SharedDisposalRouterComponent; namespace Content.Client.Disposal.UI @@ -21,20 +22,16 @@ protected override void Open() { base.Open(); - _window = new DisposalRouterWindow(); - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); _window.Confirm.OnPressed += _ => ButtonPressed(UiAction.Ok, _window.TagInput.Text); _window.TagInput.OnTextEntered += args => ButtonPressed(UiAction.Ok, args.Text); - } private void ButtonPressed(UiAction action, string tag) { SendMessage(new UiActionMessage(action, tag)); - _window?.Close(); + Close(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -48,18 +45,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } - - } - } diff --git a/Content.Client/Disposal/UI/DisposalTaggerBoundUserInterface.cs b/Content.Client/Disposal/UI/DisposalTaggerBoundUserInterface.cs index 3aeed8dc802..7fc0eb85401 100644 --- a/Content.Client/Disposal/UI/DisposalTaggerBoundUserInterface.cs +++ b/Content.Client/Disposal/UI/DisposalTaggerBoundUserInterface.cs @@ -1,5 +1,6 @@ using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using static Content.Shared.Disposal.Components.SharedDisposalTaggerComponent; namespace Content.Client.Disposal.UI @@ -21,20 +22,17 @@ protected override void Open() { base.Open(); - _window = new DisposalTaggerWindow(); - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); _window.Confirm.OnPressed += _ => ButtonPressed(UiAction.Ok, _window.TagInput.Text); _window.TagInput.OnTextEntered += args => ButtonPressed(UiAction.Ok, args.Text); - } private void ButtonPressed(UiAction action, string tag) { + // TODO: This looks copy-pasted with the other mailing stuff... SendMessage(new UiActionMessage(action, tag)); - _window?.Close(); + Close(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -48,18 +46,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (disposing) - { - _window?.Dispose(); - } - } - - } - } diff --git a/Content.Client/Disposal/UI/MailingUnitWindow.xaml.cs b/Content.Client/Disposal/UI/MailingUnitWindow.xaml.cs index 797e20ae7d2..489d749a0cf 100644 --- a/Content.Client/Disposal/UI/MailingUnitWindow.xaml.cs +++ b/Content.Client/Disposal/UI/MailingUnitWindow.xaml.cs @@ -2,6 +2,7 @@ using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Timing; namespace Content.Client.Disposal.UI { @@ -11,6 +12,8 @@ namespace Content.Client.Disposal.UI [GenerateTypedNameReferences] public sealed partial class MailingUnitWindow : DefaultWindow { + public TimeSpan FullPressure; + public MailingUnitWindow() { RobustXamlLoader.Load(this); @@ -26,6 +29,7 @@ public bool UpdateState(MailingUnitBoundUserInterfaceState state) Title = Loc.GetString("ui-mailing-unit-window-title", ("tag", state.Tag ?? " ")); UnitState.Text = disposalState.UnitState; + FullPressure = disposalState.FullPressureTime; var pressureReached = PressureBar.UpdatePressure(disposalState.FullPressureTime); Power.Pressed = disposalState.Powered; Engage.Pressed = disposalState.Engaged; @@ -42,9 +46,10 @@ public bool UpdateState(MailingUnitBoundUserInterfaceState state) return !disposalState.Powered || pressureReached; } - public bool UpdatePressure(TimeSpan stateFullPressureTime) + protected override void FrameUpdate(FrameEventArgs args) { - return PressureBar.UpdatePressure(stateFullPressureTime); + base.FrameUpdate(args); + PressureBar.UpdatePressure(FullPressure); } } } diff --git a/Content.Client/Doors/Electronics/DoorElectronicsBoundUserInterface.cs b/Content.Client/Doors/Electronics/DoorElectronicsBoundUserInterface.cs index cd7ea717ce3..9b7e23c03aa 100644 --- a/Content.Client/Doors/Electronics/DoorElectronicsBoundUserInterface.cs +++ b/Content.Client/Doors/Electronics/DoorElectronicsBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Access; using Content.Shared.Doors.Electronics; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Prototypes; namespace Content.Client.Doors.Electronics; @@ -18,6 +19,23 @@ public DoorElectronicsBoundUserInterface(EntityUid owner, Enum uiKey) : base(own protected override void Open() { base.Open(); + _window = this.CreateWindow(); + _window.OnAccessChanged += UpdateConfiguration; + Reset(); + } + + public override void OnProtoReload(PrototypesReloadedEventArgs args) + { + base.OnProtoReload(args); + + if (!args.WasModified()) + return; + + Reset(); + } + + private void Reset() + { List> accessLevels = new(); foreach (var accessLevel in _prototypeManager.EnumeratePrototypes()) @@ -29,10 +47,7 @@ protected override void Open() } accessLevels.Sort(); - - _window = new DoorElectronicsConfigurationMenu(this, accessLevels, _prototypeManager); - _window.OnClose += Close; - _window.OpenCentered(); + _window?.Reset(_prototypeManager, accessLevels); } protected override void UpdateState(BoundUserInterfaceState state) @@ -44,14 +59,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(castState); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _window?.Dispose(); - } - public void UpdateConfiguration(List> newAccessList) { SendMessage(new DoorElectronicsUpdateConfigurationMessage(newAccessList)); diff --git a/Content.Client/Doors/Electronics/DoorElectronicsConfigurationMenu.xaml.cs b/Content.Client/Doors/Electronics/DoorElectronicsConfigurationMenu.xaml.cs index c01f13a462e..2112a562971 100644 --- a/Content.Client/Doors/Electronics/DoorElectronicsConfigurationMenu.xaml.cs +++ b/Content.Client/Doors/Electronics/DoorElectronicsConfigurationMenu.xaml.cs @@ -15,22 +15,23 @@ namespace Content.Client.Doors.Electronics; [GenerateTypedNameReferences] public sealed partial class DoorElectronicsConfigurationMenu : FancyWindow { - private readonly DoorElectronicsBoundUserInterface _owner; - private AccessLevelControl _buttonsList = new(); + private readonly AccessLevelControl _buttonsList = new(); - public DoorElectronicsConfigurationMenu(DoorElectronicsBoundUserInterface ui, List> accessLevels, IPrototypeManager prototypeManager) + public event Action>>? OnAccessChanged; + + public DoorElectronicsConfigurationMenu() { RobustXamlLoader.Load(this); - - _owner = ui; - - _buttonsList.Populate(accessLevels, prototypeManager); AccessLevelControlContainer.AddChild(_buttonsList); + } + + public void Reset(IPrototypeManager protoManager, List> accessLevels) + { + _buttonsList.Populate(accessLevels, protoManager); - foreach (var (id, button) in _buttonsList.ButtonsList) + foreach (var button in _buttonsList.ButtonsList.Values) { - button.OnPressed += _ => _owner.UpdateConfiguration( - _buttonsList.ButtonsList.Where(x => x.Value.Pressed).Select(x => x.Key).ToList()); + button.OnPressed += _ => OnAccessChanged?.Invoke(_buttonsList.ButtonsList.Where(x => x.Value.Pressed).Select(x => x.Key).ToList()); } } diff --git a/Content.Client/Fax/System/FaxVisualsSystem.cs b/Content.Client/Fax/System/FaxVisualsSystem.cs index 892aec1d954..e752fbf48e6 100644 --- a/Content.Client/Fax/System/FaxVisualsSystem.cs +++ b/Content.Client/Fax/System/FaxVisualsSystem.cs @@ -25,24 +25,30 @@ private void OnAppearanceChanged(EntityUid uid, FaxMachineComponent component, r if (args.Sprite == null) return; - if (_appearance.TryGetData(uid, FaxMachineVisuals.VisualState, out FaxMachineVisualState visuals) && visuals == FaxMachineVisualState.Inserting) + if (_player.HasRunningAnimation(uid, "faxecute")) + return; + + if (_appearance.TryGetData(uid, FaxMachineVisuals.VisualState, out FaxMachineVisualState visuals) && + visuals == FaxMachineVisualState.Inserting) { - _player.Play(uid, new Animation() - { - Length = TimeSpan.FromSeconds(2.4), - AnimationTracks = + _player.Play(uid, + new Animation() { - new AnimationTrackSpriteFlick() + Length = TimeSpan.FromSeconds(2.4), + AnimationTracks = { - LayerKey = FaxMachineVisuals.VisualState, - KeyFrames = + new AnimationTrackSpriteFlick() { - new AnimationTrackSpriteFlick.KeyFrame(component.InsertingState, 0f), - new AnimationTrackSpriteFlick.KeyFrame("icon", 2.4f), - } - } - } - }, "faxecute"); + LayerKey = FaxMachineVisuals.VisualState, + KeyFrames = + { + new AnimationTrackSpriteFlick.KeyFrame(component.InsertingState, 0f), + new AnimationTrackSpriteFlick.KeyFrame("icon", 2.4f), + }, + }, + }, + }, + "faxecute"); } } } diff --git a/Content.Client/Fax/UI/FaxBoundUi.cs b/Content.Client/Fax/UI/FaxBoundUi.cs index a95066a3b58..ca2e834b4fe 100644 --- a/Content.Client/Fax/UI/FaxBoundUi.cs +++ b/Content.Client/Fax/UI/FaxBoundUi.cs @@ -25,10 +25,7 @@ protected override void Open() { base.Open(); - _window = new FaxWindow(); - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.FileButtonPressed += OnFileButtonPressed; _window.CopyButtonPressed += OnCopyButtonPressed; _window.SendButtonPressed += OnSendButtonPressed; @@ -104,11 +101,4 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.UpdateState(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - _window?.Dispose(); - } } diff --git a/Content.Client/Forensics/ForensicScannerBoundUserInterface.cs b/Content.Client/Forensics/ForensicScannerBoundUserInterface.cs index ba49f11ea0f..08596b04e6e 100644 --- a/Content.Client/Forensics/ForensicScannerBoundUserInterface.cs +++ b/Content.Client/Forensics/ForensicScannerBoundUserInterface.cs @@ -1,6 +1,7 @@ using Robust.Client.GameObjects; using Robust.Shared.Timing; using Content.Shared.Forensics; +using Robust.Client.UserInterface; namespace Content.Client.Forensics { @@ -21,11 +22,9 @@ public ForensicScannerBoundUserInterface(EntityUid owner, Enum uiKey) : base(own protected override void Open() { base.Open(); - _window = new ForensicScannerMenu(); - _window.OnClose += Close; + _window = this.CreateWindow(); _window.Print.OnPressed += _ => Print(); _window.Clear.OnPressed += _ => Clear(); - _window.OpenCentered(); } private void Print() @@ -62,6 +61,7 @@ protected override void UpdateState(BoundUserInterfaceState state) _printCooldown = cast.PrintCooldown; + // TODO: Fix this if (cast.PrintReadyAt > _gameTiming.CurTime) Timer.Spawn(cast.PrintReadyAt - _gameTiming.CurTime, () => { @@ -71,14 +71,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.UpdateState(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _window?.Dispose(); - } } } diff --git a/Content.Client/Gameplay/GameplayStateBase.cs b/Content.Client/Gameplay/GameplayStateBase.cs index 63cbfdb09c6..0a695b2c01e 100644 --- a/Content.Client/Gameplay/GameplayStateBase.cs +++ b/Content.Client/Gameplay/GameplayStateBase.cs @@ -185,7 +185,7 @@ protected virtual void OnKeyBindStateChanged(ViewportBoundKeyEventArgs args) EntityCoordinates coordinates = default; EntityUid? entityToClick = null; - if (args.Viewport is IViewportControl vp) + if (args.Viewport is IViewportControl vp && kArgs.PointerLocation.IsValid) { var mousePosWorld = vp.PixelToMap(kArgs.PointerLocation.Position); entityToClick = GetClickedEntity(mousePosWorld); @@ -194,6 +194,10 @@ protected virtual void OnKeyBindStateChanged(ViewportBoundKeyEventArgs args) grid.MapToGrid(mousePosWorld) : EntityCoordinates.FromMap(_mapManager, mousePosWorld); } + else + { + coordinates = EntityCoordinates.Invalid; + } var message = new ClientFullInputCmdMessage(_timing.CurTick, _timing.TickFraction, funcId) { diff --git a/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs b/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs index fdb3cdbc010..457b70ca7ca 100644 --- a/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs +++ b/Content.Client/Gateway/UI/GatewayBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Gateway; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Gateway.UI; @@ -17,24 +18,13 @@ protected override void Open() { base.Open(); - _window = new GatewayWindow(EntMan.GetNetEntity(Owner)); + _window = this.CreateWindow(); + _window.SetEntity(EntMan.GetNetEntity(Owner)); _window.OpenPortal += destination => { SendMessage(new GatewayOpenPortalMessage(destination)); }; - _window.OnClose += Close; - _window?.OpenCentered(); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - { - _window?.Dispose(); - _window = null; - } } protected override void UpdateState(BoundUserInterfaceState state) diff --git a/Content.Client/Gateway/UI/GatewayWindow.xaml.cs b/Content.Client/Gateway/UI/GatewayWindow.xaml.cs index 889dd6e1759..1c779b2b350 100644 --- a/Content.Client/Gateway/UI/GatewayWindow.xaml.cs +++ b/Content.Client/Gateway/UI/GatewayWindow.xaml.cs @@ -22,7 +22,7 @@ public sealed partial class GatewayWindow : FancyWindow, public event Action? OpenPortal; private List _destinations = new(); - public readonly NetEntity Owner; + public NetEntity Owner; private NetEntity? _current; private TimeSpan _nextReady; @@ -46,16 +46,20 @@ public sealed partial class GatewayWindow : FancyWindow, /// private bool _isCooldownPending = true; - public GatewayWindow(NetEntity netEntity) + public GatewayWindow() { RobustXamlLoader.Load(this); var dependencies = IoCManager.Instance!; _timing = dependencies.Resolve(); - Owner = netEntity; NextUnlockBar.ForegroundStyleBoxOverride = new StyleBoxFlat(Color.FromHex("#C74EBD")); } + public void SetEntity(NetEntity entity) + { + + } + public void UpdateState(GatewayBoundUserInterfaceState state) { _destinations = state.Destinations; diff --git a/Content.Client/Gravity/UI/GravityGeneratorBoundUserInterface.cs b/Content.Client/Gravity/UI/GravityGeneratorBoundUserInterface.cs index d72da3e8120..32b40747d55 100644 --- a/Content.Client/Gravity/UI/GravityGeneratorBoundUserInterface.cs +++ b/Content.Client/Gravity/UI/GravityGeneratorBoundUserInterface.cs @@ -1,6 +1,6 @@ using Content.Shared.Gravity; using JetBrains.Annotations; -using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Gravity.UI { @@ -18,17 +18,8 @@ protected override void Open() { base.Open(); - _window = new GravityGeneratorWindow(this); - - /* - _window.Switch.OnPressed += _ => - { - SendMessage(new SharedGravityGeneratorComponent.SwitchGeneratorMessage(!IsOn)); - }; - */ - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.SetEntity(Owner); } protected override void UpdateState(BoundUserInterfaceState state) @@ -39,14 +30,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(castState); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _window?.Dispose(); - } - public void SetPowerSwitch(bool on) { SendMessage(new SharedGravityGeneratorComponent.SwitchGeneratorMessage(on)); diff --git a/Content.Client/Gravity/UI/GravityGeneratorWindow.xaml.cs b/Content.Client/Gravity/UI/GravityGeneratorWindow.xaml.cs index 75f8eb479b5..6f04133b594 100644 --- a/Content.Client/Gravity/UI/GravityGeneratorWindow.xaml.cs +++ b/Content.Client/Gravity/UI/GravityGeneratorWindow.xaml.cs @@ -12,22 +12,23 @@ public sealed partial class GravityGeneratorWindow : FancyWindow { private readonly ButtonGroup _buttonGroup = new(); - private readonly GravityGeneratorBoundUserInterface _owner; + public event Action? OnPowerSwitch; - public GravityGeneratorWindow(GravityGeneratorBoundUserInterface owner) + public GravityGeneratorWindow() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); - _owner = owner; - OnButton.Group = _buttonGroup; OffButton.Group = _buttonGroup; - OnButton.OnPressed += _ => _owner.SetPowerSwitch(true); - OffButton.OnPressed += _ => _owner.SetPowerSwitch(false); + OnButton.OnPressed += _ => OnPowerSwitch?.Invoke(true); + OffButton.OnPressed += _ => OnPowerSwitch?.Invoke(false); + } - EntityView.SetEntity(owner.Owner); + public void SetEntity(EntityUid uid) + { + EntityView.SetEntity(uid); } public void UpdateState(SharedGravityGeneratorComponent.GeneratorState state) diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerBoundUserInterface.cs b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerBoundUserInterface.cs index dc0a3e9fccd..38760f4aa3c 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerBoundUserInterface.cs +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerBoundUserInterface.cs @@ -1,6 +1,6 @@ using Content.Shared.MedicalScanner; using JetBrains.Annotations; -using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.HealthAnalyzer.UI { @@ -17,12 +17,9 @@ public HealthAnalyzerBoundUserInterface(EntityUid owner, Enum uiKey) : base(owne protected override void Open() { base.Open(); - _window = new HealthAnalyzerWindow - { - Title = EntMan.GetComponent(Owner).EntityName, - }; - _window.OnClose += Close; - _window.OpenCentered(); + _window = this.CreateWindow(); + + _window.Title = EntMan.GetComponent(Owner).EntityName; } protected override void ReceiveMessage(BoundUserInterfaceMessage message) @@ -35,17 +32,5 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) _window.Populate(cast); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - if (_window != null) - _window.OnClose -= Close; - - _window?.Dispose(); - } } } diff --git a/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs b/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs index a8872604a4c..53977eb636b 100644 --- a/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs +++ b/Content.Client/Humanoid/HumanoidMarkingModifierBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.Humanoid; using Content.Shared.Humanoid.Markings; +using Robust.Client.UserInterface; namespace Content.Client.Humanoid; @@ -20,8 +21,7 @@ protected override void Open() { base.Open(); - _window = new(); - _window.OnClose += Close; + _window = this.CreateWindow(); _window.OnMarkingAdded += SendMarkingSet; _window.OnMarkingRemoved += SendMarkingSet; _window.OnMarkingColorChange += SendMarkingSetNoResend; diff --git a/Content.Client/IconSmoothing/ClientRandomIconSmoothSystem.cs b/Content.Client/IconSmoothing/ClientRandomIconSmoothSystem.cs new file mode 100644 index 00000000000..73db9e1ab95 --- /dev/null +++ b/Content.Client/IconSmoothing/ClientRandomIconSmoothSystem.cs @@ -0,0 +1,29 @@ +using Content.Shared.IconSmoothing; +using Robust.Client.GameObjects; + +namespace Content.Client.IconSmoothing; + +public sealed class ClientRandomIconSmoothSystem : SharedRandomIconSmoothSystem +{ + [Dependency] private readonly IconSmoothSystem _iconSmooth = default!; + [Dependency] private readonly AppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAppearanceChange); + } + + private void OnAppearanceChange(Entity ent, ref AppearanceChangeEvent args) + { + if (!TryComp(ent, out var smooth)) + return; + + if (!_appearance.TryGetData(ent, RandomIconSmoothState.State, out var state, args.Component)) + return; + + smooth.StateBase = state; + _iconSmooth.SetStateBase(ent, smooth, state); + } +} diff --git a/Content.Client/IconSmoothing/IconSmoothComponent.cs b/Content.Client/IconSmoothing/IconSmoothComponent.cs index 88b1f613cb7..040198529c7 100644 --- a/Content.Client/IconSmoothing/IconSmoothComponent.cs +++ b/Content.Client/IconSmoothing/IconSmoothComponent.cs @@ -30,7 +30,7 @@ public sealed partial class IconSmoothComponent : Component /// Prepended to the RSI state. /// [ViewVariables(VVAccess.ReadWrite), DataField("base")] - public string StateBase { get; private set; } = string.Empty; + public string StateBase { get; set; } = string.Empty; [DataField("shader", customTypeSerializer:typeof(PrototypeIdSerializer))] public string? Shader; diff --git a/Content.Client/IconSmoothing/IconSmoothSystem.cs b/Content.Client/IconSmoothing/IconSmoothSystem.cs index 4b025608465..11ca75bc824 100644 --- a/Content.Client/IconSmoothing/IconSmoothSystem.cs +++ b/Content.Client/IconSmoothing/IconSmoothSystem.cs @@ -55,6 +55,33 @@ private void OnStartup(EntityUid uid, IconSmoothComponent component, ComponentSt if (component.Mode != IconSmoothingMode.Corners || !TryComp(uid, out SpriteComponent? sprite)) return; + SetCornerLayers(sprite, component); + + if (component.Shader != null) + { + sprite.LayerSetShader(CornerLayers.SE, component.Shader); + sprite.LayerSetShader(CornerLayers.NE, component.Shader); + sprite.LayerSetShader(CornerLayers.NW, component.Shader); + sprite.LayerSetShader(CornerLayers.SW, component.Shader); + } + } + + public void SetStateBase(EntityUid uid, IconSmoothComponent component, string newState) + { + if (!TryComp(uid, out var sprite)) + return; + + component.StateBase = newState; + SetCornerLayers(sprite, component); + } + + private void SetCornerLayers(SpriteComponent sprite, IconSmoothComponent component) + { + sprite.LayerMapRemove(CornerLayers.SE); + sprite.LayerMapRemove(CornerLayers.NE); + sprite.LayerMapRemove(CornerLayers.NW); + sprite.LayerMapRemove(CornerLayers.SW); + var state0 = $"{component.StateBase}0"; sprite.LayerMapSet(CornerLayers.SE, sprite.AddLayerState(state0)); sprite.LayerSetDirOffset(CornerLayers.SE, DirectionOffset.None); @@ -64,14 +91,6 @@ private void OnStartup(EntityUid uid, IconSmoothComponent component, ComponentSt sprite.LayerSetDirOffset(CornerLayers.NW, DirectionOffset.Flip); sprite.LayerMapSet(CornerLayers.SW, sprite.AddLayerState(state0)); sprite.LayerSetDirOffset(CornerLayers.SW, DirectionOffset.Clockwise); - - if (component.Shader != null) - { - sprite.LayerSetShader(CornerLayers.SE, component.Shader); - sprite.LayerSetShader(CornerLayers.NE, component.Shader); - sprite.LayerSetShader(CornerLayers.NW, component.Shader); - sprite.LayerSetShader(CornerLayers.SW, component.Shader); - } } private void OnShutdown(EntityUid uid, IconSmoothComponent component, ComponentShutdown args) diff --git a/Content.Client/Instruments/UI/BandMenu.xaml.cs b/Content.Client/Instruments/UI/BandMenu.xaml.cs index 5fb293a194d..26cd1369e55 100644 --- a/Content.Client/Instruments/UI/BandMenu.xaml.cs +++ b/Content.Client/Instruments/UI/BandMenu.xaml.cs @@ -11,7 +11,9 @@ public sealed partial class BandMenu : DefaultWindow { private readonly InstrumentBoundUserInterface _owner; - public BandMenu(InstrumentBoundUserInterface owner) : base() + public EntityUid? Master; + + public BandMenu(InstrumentBoundUserInterface owner) { RobustXamlLoader.Load(this); @@ -40,7 +42,7 @@ public void Populate((NetEntity, string)[] nearby, IEntityManager entManager) { var uid = entManager.GetEntity(nent); var item = BandList.AddItem(name, null, true, uid); - item.Selected = _owner.Instrument?.Master == uid; + item.Selected = Master == uid; } } } diff --git a/Content.Client/Instruments/UI/ChannelsMenu.xaml.cs b/Content.Client/Instruments/UI/ChannelsMenu.xaml.cs index 2814d415365..c175e67842f 100644 --- a/Content.Client/Instruments/UI/ChannelsMenu.xaml.cs +++ b/Content.Client/Instruments/UI/ChannelsMenu.xaml.cs @@ -51,7 +51,7 @@ private void OnClearPressed(BaseButton.ButtonEventArgs obj) } } - public void Populate() + public void Populate(InstrumentComponent? instrument) { ChannelList.Clear(); @@ -60,7 +60,8 @@ public void Populate() var item = ChannelList.AddItem(_owner.Loc.GetString("instrument-component-channel-name", ("number", i)), null, true, i); - item.Selected = !_owner.Instrument?.FilteredChannels[i] ?? false; + + item.Selected = !instrument?.FilteredChannels[i] ?? false; } } } diff --git a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs index 0f5729f55b1..4816ce8c365 100644 --- a/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs +++ b/Content.Client/Instruments/UI/InstrumentBoundUserInterface.cs @@ -24,8 +24,6 @@ public sealed class InstrumentBoundUserInterface : BoundUserInterface [ViewVariables] private BandMenu? _bandMenu; [ViewVariables] private ChannelsMenu? _channelsMenu; - [ViewVariables] public InstrumentComponent? Instrument { get; private set; } - public InstrumentBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { IoCManager.InjectDependencies(this); @@ -43,14 +41,20 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) protected override void Open() { - if (!EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) - return; + _instrumentMenu = this.CreateWindow(); + _instrumentMenu.Title = EntMan.GetComponent(Owner).EntityName; - Instrument = instrument; - _instrumentMenu = new InstrumentMenu(this); - _instrumentMenu.OnClose += Close; + _instrumentMenu.OnOpenBand += OpenBandMenu; + _instrumentMenu.OnOpenChannels += OpenChannelsMenu; + _instrumentMenu.OnCloseChannels += CloseChannelsMenu; + _instrumentMenu.OnCloseBands += CloseBandMenu; - _instrumentMenu.OpenCentered(); + _instrumentMenu.SetMIDI(MidiManager.IsAvailable); + + if (EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) + { + _instrumentMenu.SetInstrument((Owner, instrument)); + } } protected override void Dispose(bool disposing) @@ -58,7 +62,12 @@ protected override void Dispose(bool disposing) base.Dispose(disposing); if (!disposing) return; - _instrumentMenu?.Dispose(); + + if (EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) + { + _instrumentMenu?.RemoveInstrument(instrument); + } + _bandMenu?.Dispose(); _channelsMenu?.Dispose(); } @@ -72,6 +81,11 @@ public void OpenBandMenu() { _bandMenu ??= new BandMenu(this); + if (EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument)) + { + _bandMenu.Master = instrument.Master; + } + // Refresh cache... RefreshBands(); @@ -87,7 +101,9 @@ public void CloseBandMenu() public void OpenChannelsMenu() { _channelsMenu ??= new ChannelsMenu(this); - _channelsMenu.Populate(); + EntMan.TryGetComponent(Owner, out InstrumentComponent? instrument); + + _channelsMenu.Populate(instrument); _channelsMenu.OpenCenteredRight(); } diff --git a/Content.Client/Instruments/UI/InstrumentMenu.xaml.cs b/Content.Client/Instruments/UI/InstrumentMenu.xaml.cs index da443e3fb5b..fc863648d79 100644 --- a/Content.Client/Instruments/UI/InstrumentMenu.xaml.cs +++ b/Content.Client/Instruments/UI/InstrumentMenu.xaml.cs @@ -1,7 +1,10 @@ using System.IO; using System.Numerics; using System.Threading.Tasks; +using Content.Client.Interactable; +using Content.Shared.ActionBlocker; using Robust.Client.AutoGenerated; +using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; @@ -16,33 +19,23 @@ namespace Content.Client.Instruments.UI [GenerateTypedNameReferences] public sealed partial class InstrumentMenu : DefaultWindow { - private readonly InstrumentBoundUserInterface _owner; + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IFileDialogManager _dialogs = default!; + [Dependency] private readonly IPlayerManager _player = default!; private bool _isMidiFileDialogueWindowOpen; - public InstrumentMenu(InstrumentBoundUserInterface owner) - { - RobustXamlLoader.Load(this); - - _owner = owner; + public event Action? OnOpenBand; + public event Action? OnOpenChannels; + public event Action? OnCloseBands; + public event Action? OnCloseChannels; - if (_owner.Instrument != null) - { - _owner.Instrument.OnMidiPlaybackEnded += InstrumentOnMidiPlaybackEnded; - Title = _owner.Entities.GetComponent(_owner.Owner).EntityName; - LoopButton.Disabled = !_owner.Instrument.IsMidiOpen; - LoopButton.Pressed = _owner.Instrument.LoopMidi; - ChannelsButton.Disabled = !_owner.Instrument.IsRendererAlive; - StopButton.Disabled = !_owner.Instrument.IsMidiOpen; - PlaybackSlider.MouseFilter = _owner.Instrument.IsMidiOpen ? MouseFilterMode.Pass : MouseFilterMode.Ignore; - } + public EntityUid Entity; - if (!_owner.MidiManager.IsAvailable) - { - UnavailableOverlay.Visible = true; - // We return early as to not give the buttons behavior. - return; - } + public InstrumentMenu() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); InputButton.OnToggled += MidiInputButtonOnOnToggled; BandButton.OnPressed += BandButtonOnPressed; @@ -57,12 +50,34 @@ public InstrumentMenu(InstrumentBoundUserInterface owner) MinSize = SetSize = new Vector2(400, 150); } + public void SetInstrument(Entity entity) + { + Entity = entity; + var component = entity.Comp; + component.OnMidiPlaybackEnded += InstrumentOnMidiPlaybackEnded; + LoopButton.Disabled = !component.IsMidiOpen; + LoopButton.Pressed = component.LoopMidi; + ChannelsButton.Disabled = !component.IsRendererAlive; + StopButton.Disabled = !component.IsMidiOpen; + PlaybackSlider.MouseFilter = component.IsMidiOpen ? MouseFilterMode.Pass : MouseFilterMode.Ignore; + } + + public void RemoveInstrument(InstrumentComponent component) + { + component.OnMidiPlaybackEnded -= InstrumentOnMidiPlaybackEnded; + } + + public void SetMIDI(bool available) + { + UnavailableOverlay.Visible = !available; + } + private void BandButtonOnPressed(ButtonEventArgs obj) { if (!PlayCheck()) return; - _owner.OpenBandMenu(); + OnOpenBand?.Invoke(); } private void BandButtonOnToggled(ButtonToggledEventArgs obj) @@ -70,12 +85,15 @@ private void BandButtonOnToggled(ButtonToggledEventArgs obj) if (obj.Pressed) return; - _owner.Instruments.SetMaster(_owner.Owner, null); + if (_entManager.TryGetComponent(Entity, out InstrumentComponent? instrument)) + { + _entManager.System().SetMaster(Entity, instrument.Master); + } } private void ChannelsButtonOnPressed(ButtonEventArgs obj) { - _owner.OpenChannelsMenu(); + OnOpenChannels?.Invoke(); } private void InstrumentOnMidiPlaybackEnded() @@ -85,8 +103,10 @@ private void InstrumentOnMidiPlaybackEnded() public void MidiPlaybackSetButtonsDisabled(bool disabled) { - if(disabled) - _owner.CloseChannelsMenu(); + if (disabled) + { + OnCloseChannels?.Invoke(); + } LoopButton.Disabled = disabled; StopButton.Disabled = disabled; @@ -100,7 +120,7 @@ private async void MidiFileButtonOnOnPressed(ButtonEventArgs obj) if (_isMidiFileDialogueWindowOpen) return; - _owner.CloseBandMenu(); + OnCloseBands?.Invoke(); var filters = new FileDialogFilters(new FileDialogFilters.Group("mid", "midi")); @@ -108,7 +128,7 @@ private async void MidiFileButtonOnOnPressed(ButtonEventArgs obj) // or focus the previously-opened window. _isMidiFileDialogueWindowOpen = true; - await using var file = await _owner.FileDialogManager.OpenFile(filters); + await using var file = await _dialogs.OpenFile(filters); _isMidiFileDialogueWindowOpen = false; @@ -129,9 +149,18 @@ private async void MidiFileButtonOnOnPressed(ButtonEventArgs obj) await file.CopyToAsync(memStream); - if (_owner.Instrument is not {} instrument - || !_owner.Instruments.OpenMidi(_owner.Owner, memStream.GetBuffer().AsSpan(0, (int) memStream.Length), instrument)) + if (!_entManager.TryGetComponent(Entity, out var instrument)) + { return; + } + + if (!_entManager.System() + .OpenMidi(Entity, + memStream.GetBuffer().AsSpan(0, (int) memStream.Length), + instrument)) + { + return; + } MidiPlaybackSetButtonsDisabled(false); if (InputButton.Pressed) @@ -140,7 +169,7 @@ private async void MidiFileButtonOnOnPressed(ButtonEventArgs obj) private void MidiInputButtonOnOnToggled(ButtonToggledEventArgs obj) { - _owner.CloseBandMenu(); + OnCloseBands?.Invoke(); if (obj.Pressed) { @@ -148,109 +177,99 @@ private void MidiInputButtonOnOnToggled(ButtonToggledEventArgs obj) return; MidiStopButtonOnPressed(null); - if(_owner.Instrument is {} instrument) - _owner.Instruments.OpenInput(_owner.Owner, instrument); + + if (_entManager.TryGetComponent(Entity, out InstrumentComponent? instrument)) + _entManager.System().OpenInput(Entity, instrument); } - else if (_owner.Instrument is { } instrument) + else { - _owner.Instruments.CloseInput(_owner.Owner, false, instrument); - _owner.CloseChannelsMenu(); + _entManager.System().CloseInput(Entity, false); + OnCloseChannels?.Invoke(); } } private bool PlayCheck() { // TODO all of these checks should also be done server-side. - - var instrumentEnt = _owner.Owner; - var instrument = _owner.Instrument; - - if (instrument == null) + if (!_entManager.TryGetComponent(Entity, out InstrumentComponent? instrument)) return false; - var localEntity = _owner.PlayerManager.LocalEntity; + var localEntity = _player.LocalEntity; // If we don't have a player or controlled entity, we return. if (localEntity == null) return false; // By default, allow an instrument to play itself and skip all other checks - if (localEntity == instrumentEnt) + if (localEntity == Entity) return true; - var container = _owner.Entities.System(); + var container = _entManager.System(); // If we're a handheld instrument, we might be in a container. Get it just in case. - container.TryGetContainingContainer(instrumentEnt, out var conMan); + container.TryGetContainingContainer(Entity, out var conMan); // If the instrument is handheld and we're not holding it, we return. - if ((instrument.Handheld && (conMan == null || conMan.Owner != localEntity))) + if (instrument.Handheld && (conMan == null || conMan.Owner != localEntity)) return false; - if (!_owner.ActionBlocker.CanInteract(localEntity.Value, instrumentEnt)) + if (!_entManager.System().CanInteract(localEntity.Value, Entity)) return false; // We check that we're in range unobstructed just in case. - return _owner.Interactions.InRangeUnobstructed(localEntity.Value, instrumentEnt); + return _entManager.System().InRangeUnobstructed(localEntity.Value, Entity); } private void MidiStopButtonOnPressed(ButtonEventArgs? obj) { MidiPlaybackSetButtonsDisabled(true); - if (_owner.Instrument is not {} instrument) - return; - - _owner.Instruments.CloseMidi(_owner.Owner, false, instrument); - _owner.CloseChannelsMenu(); + _entManager.System().CloseMidi(Entity, false); + OnCloseChannels?.Invoke(); } private void MidiLoopButtonOnOnToggled(ButtonToggledEventArgs obj) { - if (_owner.Instrument == null) - return; + var instrument = _entManager.System(); + + if (_entManager.TryGetComponent(Entity, out InstrumentComponent? instrumentComp)) + { + instrumentComp.LoopMidi = obj.Pressed; + } - _owner.Instrument.LoopMidi = obj.Pressed; - _owner.Instruments.UpdateRenderer(_owner.Owner, _owner.Instrument); + instrument.UpdateRenderer(Entity); } private void PlaybackSliderSeek(Range _) { // Do not seek while still grabbing. - if (PlaybackSlider.Grabbed || _owner.Instrument is not {} instrument) + if (PlaybackSlider.Grabbed) return; - _owner.Instruments.SetPlayerTick(_owner.Owner, (int)Math.Ceiling(PlaybackSlider.Value), instrument); + _entManager.System().SetPlayerTick(Entity, (int)Math.Ceiling(PlaybackSlider.Value)); } private void PlaybackSliderKeyUp(GUIBoundKeyEventArgs args) { - if (args.Function != EngineKeyFunctions.UIClick || _owner.Instrument is not {} instrument) + if (args.Function != EngineKeyFunctions.UIClick) return; - _owner.Instruments.SetPlayerTick(_owner.Owner, (int)Math.Ceiling(PlaybackSlider.Value), instrument); - } - - public override void Close() - { - base.Close(); - _owner.CloseBandMenu(); - _owner.CloseChannelsMenu(); + _entManager.System().SetPlayerTick(Entity, (int)Math.Ceiling(PlaybackSlider.Value)); } protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); - if (_owner.Instrument == null) + if (!_entManager.TryGetComponent(Entity, out InstrumentComponent? instrument)) return; - var hasMaster = _owner.Instrument.Master != null; + var hasMaster = instrument.Master != null; BandButton.ToggleMode = hasMaster; BandButton.Pressed = hasMaster; - BandButton.Disabled = _owner.Instrument.IsMidiOpen || _owner.Instrument.IsInputOpen; - ChannelsButton.Disabled = !_owner.Instrument.IsRendererAlive; + BandButton.Disabled = instrument.IsMidiOpen || instrument.IsInputOpen; + ChannelsButton.Disabled = !instrument.IsRendererAlive; - if (!_owner.Instrument.IsMidiOpen) + if (!instrument.IsMidiOpen) { PlaybackSlider.MaxValue = 1; PlaybackSlider.SetValueWithoutEvent(0); @@ -260,8 +279,8 @@ protected override void FrameUpdate(FrameEventArgs args) if (PlaybackSlider.Grabbed) return; - PlaybackSlider.MaxValue = _owner.Instrument.PlayerTotalTick; - PlaybackSlider.SetValueWithoutEvent(_owner.Instrument.PlayerTick); + PlaybackSlider.MaxValue = instrument.PlayerTotalTick; + PlaybackSlider.SetValueWithoutEvent(instrument.PlayerTick); } } } diff --git a/Content.Client/Inventory/StrippableBoundUserInterface.cs b/Content.Client/Inventory/StrippableBoundUserInterface.cs index 7e50eb1c68a..132c5ed654c 100644 --- a/Content.Client/Inventory/StrippableBoundUserInterface.cs +++ b/Content.Client/Inventory/StrippableBoundUserInterface.cs @@ -41,7 +41,7 @@ public sealed class StrippableBoundUserInterface : BoundUserInterface public const string HiddenPocketEntityId = "StrippingHiddenEntity"; [ViewVariables] - private readonly StrippingMenu? _strippingMenu; + private StrippingMenu? _strippingMenu; [ViewVariables] private readonly EntityUid _virtualHiddenEntity; @@ -51,33 +51,30 @@ public StrippableBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, u _examine = EntMan.System(); _inv = EntMan.System(); _cuffable = EntMan.System(); - - // TODO update name when identity changes - var title = Loc.GetString("strippable-bound-user-interface-stripping-menu-title", ("ownerName", Identity.Name(Owner, EntMan))); - _strippingMenu = new StrippingMenu(title, this); - _strippingMenu.OnClose += Close; - - // TODO use global entity - // BUIs are opened and closed while applying comp sates, so spawning entities here is probably not the best idea. _virtualHiddenEntity = EntMan.SpawnEntity(HiddenPocketEntityId, MapCoordinates.Nullspace); } protected override void Open() { base.Open(); + + _strippingMenu = this.CreateWindow(); + _strippingMenu.OnDirty += UpdateMenu; + _strippingMenu.Title = Loc.GetString("strippable-bound-user-interface-stripping-menu-title", ("ownerName", Identity.Name(Owner, EntMan))); + _strippingMenu?.OpenCenteredLeft(); } protected override void Dispose(bool disposing) { - base.Dispose(disposing); - - EntMan.DeleteEntity(_virtualHiddenEntity); - if (!disposing) return; - _strippingMenu?.Dispose(); + if (_strippingMenu != null) + _strippingMenu.OnDirty -= UpdateMenu; + + EntMan.DeleteEntity(_virtualHiddenEntity); + base.Dispose(disposing); } public void DirtyMenu() diff --git a/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs b/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs index f97d8a73302..7884268c428 100644 --- a/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs +++ b/Content.Client/Kitchen/UI/GrinderMenu.xaml.cs @@ -12,42 +12,34 @@ namespace Content.Client.Kitchen.UI [GenerateTypedNameReferences] public sealed partial class GrinderMenu : FancyWindow { - private readonly IEntityManager _entityManager; - private readonly IPrototypeManager _prototypeManager; - private readonly ReagentGrinderBoundUserInterface _owner; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; private readonly Dictionary _chamberVisualContents = new(); - public GrinderMenu(ReagentGrinderBoundUserInterface owner, IEntityManager entityManager, IPrototypeManager prototypeManager) + public event Action? OnToggleAuto; + public event Action? OnGrind; + public event Action? OnJuice; + public event Action? OnEjectAll; + public event Action? OnEjectBeaker; + public event Action? OnEjectChamber; + + public GrinderMenu() { RobustXamlLoader.Load(this); - _entityManager = entityManager; - _prototypeManager = prototypeManager; - _owner = owner; - AutoModeButton.OnPressed += owner.ToggleAutoMode; - GrindButton.OnPressed += owner.StartGrinding; - JuiceButton.OnPressed += owner.StartJuicing; - ChamberContentBox.EjectButton.OnPressed += owner.EjectAll; - BeakerContentBox.EjectButton.OnPressed += owner.EjectBeaker; + IoCManager.InjectDependencies(this); + AutoModeButton.OnPressed += _ => OnToggleAuto?.Invoke(); + GrindButton.OnPressed += _ => OnGrind?.Invoke(); + JuiceButton.OnPressed += _ => OnJuice?.Invoke(); + ChamberContentBox.EjectButton.OnPressed += _ => OnEjectAll?.Invoke(); + BeakerContentBox.EjectButton.OnPressed += _ => OnEjectBeaker?.Invoke(); ChamberContentBox.BoxContents.OnItemSelected += OnChamberBoxContentsItemSelected; BeakerContentBox.BoxContents.SelectMode = ItemList.ItemListSelectMode.None; } private void OnChamberBoxContentsItemSelected(ItemList.ItemListSelectedEventArgs args) { - _owner.EjectChamberContent(_chamberVisualContents[args.ItemIndex]); - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - _chamberVisualContents.Clear(); - GrindButton.OnPressed -= _owner.StartGrinding; - JuiceButton.OnPressed -= _owner.StartJuicing; - ChamberContentBox.EjectButton.OnPressed -= _owner.EjectAll; - BeakerContentBox.EjectButton.OnPressed -= _owner.EjectBeaker; - ChamberContentBox.BoxContents.OnItemSelected -= OnChamberBoxContentsItemSelected; + OnEjectChamber?.Invoke(_chamberVisualContents[args.ItemIndex]); } public void UpdateState(ReagentGrinderInterfaceState state) diff --git a/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs b/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs index 7e7dd2d6935..643ac47054b 100644 --- a/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs +++ b/Content.Client/Kitchen/UI/MicrowaveBoundUserInterface.cs @@ -3,6 +3,7 @@ using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.Graphics; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Timing; @@ -19,28 +20,15 @@ public sealed class MicrowaveBoundUserInterface : BoundUserInterface [ViewVariables] private readonly Dictionary _reagents = new(); - [Dependency] private readonly IGameTiming _gameTiming = default!; - - public MicrowaveUpdateUserInterfaceState currentState = default!; - - private IEntityManager _entManager; public MicrowaveBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { - _entManager = IoCManager.Resolve(); - } - - public TimeSpan GetCurrentTime() - { - return _gameTiming.CurTime; } protected override void Open() { base.Open(); - _menu = new MicrowaveMenu(this); - _menu.OpenCentered(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.StartButton.OnPressed += _ => SendPredictedMessage(new MicrowaveStartCookMessage()); _menu.EjectButton.OnPressed += _ => SendPredictedMessage(new MicrowaveEjectMessage()); _menu.IngredientsList.OnItemSelected += args => @@ -74,38 +62,23 @@ protected override void Open() }; } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (!disposing) - { - return; - } - - _solids.Clear(); - _menu?.Dispose(); - } - protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); - if (state is not MicrowaveUpdateUserInterfaceState cState) + if (state is not MicrowaveUpdateUserInterfaceState cState || _menu == null) { return; } + _menu.IsBusy = cState.IsMicrowaveBusy; + _menu.CurrentCooktimeEnd = cState.CurrentCookTimeEnd; - _menu?.ToggleBusyDisableOverlayPanel(cState.IsMicrowaveBusy || cState.ContainedSolids.Length == 0); - currentState = cState; - + _menu.ToggleBusyDisableOverlayPanel(cState.IsMicrowaveBusy || cState.ContainedSolids.Length == 0); // TODO move this to a component state and ensure the net ids. - RefreshContentsDisplay(_entManager.GetEntityArray(cState.ContainedSolids)); - - if (_menu == null) return; + RefreshContentsDisplay(EntMan.GetEntityArray(cState.ContainedSolids)); //Set the cook time info label - var cookTime = cState.ActiveButtonIndex == 0 + var cookTime = cState.ActiveButtonIndex == 0 ? Loc.GetString("microwave-menu-instant-button") : cState.CurrentCookTime.ToString(); diff --git a/Content.Client/Kitchen/UI/MicrowaveMenu.xaml.cs b/Content.Client/Kitchen/UI/MicrowaveMenu.xaml.cs index b292e9f1465..13029e38469 100644 --- a/Content.Client/Kitchen/UI/MicrowaveMenu.xaml.cs +++ b/Content.Client/Kitchen/UI/MicrowaveMenu.xaml.cs @@ -9,22 +9,21 @@ namespace Content.Client.Kitchen.UI [GenerateTypedNameReferences] public sealed partial class MicrowaveMenu : FancyWindow { - public sealed class MicrowaveCookTimeButton : Button - { - public uint CookTime; - } + [Dependency] private readonly IGameTiming _timing = default!; public event Action? OnCookTimeSelected; public ButtonGroup CookTimeButtonGroup { get; } - private readonly MicrowaveBoundUserInterface _owner; - public MicrowaveMenu(MicrowaveBoundUserInterface owner) + public bool IsBusy; + public TimeSpan CurrentCooktimeEnd; + + public MicrowaveMenu() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); CookTimeButtonGroup = new ButtonGroup(); InstantCookButton.Group = CookTimeButtonGroup; - _owner = owner; InstantCookButton.OnPressed += args => { OnCookTimeSelected?.Invoke(args, 0); @@ -65,14 +64,20 @@ public void ToggleBusyDisableOverlayPanel(bool shouldDisable) protected override void FrameUpdate(FrameEventArgs args) { base.FrameUpdate(args); - if(!_owner.currentState.IsMicrowaveBusy) + + if (!IsBusy) return; - if(_owner.currentState.CurrentCookTimeEnd > _owner.GetCurrentTime()) + if (CurrentCooktimeEnd > _timing.CurTime) { CookTimeInfoLabel.Text = Loc.GetString("microwave-bound-user-interface-cook-time-label", - ("time",_owner.currentState.CurrentCookTimeEnd.Subtract(_owner.GetCurrentTime()).Seconds)); + ("time", CurrentCooktimeEnd.Subtract(_timing.CurTime).Seconds)); } } + + public sealed class MicrowaveCookTimeButton : Button + { + public uint CookTime; + } } } diff --git a/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs b/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs index e6f108b3050..bc4cc75b4d1 100644 --- a/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs +++ b/Content.Client/Kitchen/UI/ReagentGrinderBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Containers.ItemSlots; using Content.Shared.Kitchen; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Prototypes; @@ -8,8 +9,6 @@ namespace Content.Client.Kitchen.UI { public sealed class ReagentGrinderBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [ViewVariables] private GrinderMenu? _menu; @@ -21,20 +20,13 @@ protected override void Open() { base.Open(); - _menu = new GrinderMenu(this, EntMan, _prototypeManager); - _menu.OpenCentered(); - _menu.OnClose += Close; - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - { - return; - } - - _menu?.Dispose(); + _menu = this.CreateWindow(); + _menu.OnToggleAuto += ToggleAutoMode; + _menu.OnGrind += StartGrinding; + _menu.OnJuice += StartJuicing; + _menu.OnEjectAll += EjectAll; + _menu.OnEjectBeaker += EjectBeaker; + _menu.OnEjectChamber += EjectChamberContent; } protected override void UpdateState(BoundUserInterfaceState state) @@ -52,27 +44,27 @@ protected override void ReceiveMessage(BoundUserInterfaceMessage message) _menu?.HandleMessage(message); } - public void ToggleAutoMode(BaseButton.ButtonEventArgs args) + public void ToggleAutoMode() { SendMessage(new ReagentGrinderToggleAutoModeMessage()); } - public void StartGrinding(BaseButton.ButtonEventArgs? _ = null) + public void StartGrinding() { SendMessage(new ReagentGrinderStartMessage(GrinderProgram.Grind)); } - public void StartJuicing(BaseButton.ButtonEventArgs? _ = null) + public void StartJuicing() { SendMessage(new ReagentGrinderStartMessage(GrinderProgram.Juice)); } - public void EjectAll(BaseButton.ButtonEventArgs? _ = null) + public void EjectAll() { SendMessage(new ReagentGrinderEjectChamberAllMessage()); } - public void EjectBeaker(BaseButton.ButtonEventArgs? _ = null) + public void EjectBeaker() { SendMessage(new ItemSlotButtonPressedEvent(SharedReagentGrinder.BeakerSlotId)); } diff --git a/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs b/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs index 555f1ff09e6..6b656123412 100644 --- a/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs +++ b/Content.Client/Labels/UI/HandLabelerBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Labels; using Content.Shared.Labels.Components; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Labels.UI { @@ -23,13 +24,8 @@ protected override void Open() { base.Open(); - _window = new HandLabelerWindow(); - if (State != null) - UpdateState(State); + _window = this.CreateWindow(); - _window.OpenCentered(); - - _window.OnClose += Close; _window.OnLabelChanged += OnLabelChanged; Reload(); } @@ -51,13 +47,5 @@ public void Reload() _window.SetCurrentLabel(component.AssignedLabel); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } - } diff --git a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs index 6e6d1b91761..a599f79152e 100644 --- a/Content.Client/Lathe/UI/LatheBoundUserInterface.cs +++ b/Content.Client/Lathe/UI/LatheBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Lathe; using Content.Shared.Research.Components; using JetBrains.Annotations; +using Robust.Client.UserInterface; namespace Content.Client.Lathe.UI { @@ -17,9 +18,9 @@ protected override void Open() { base.Open(); - _menu = new LatheMenu(this); - _menu.OnClose += Close; - + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); + _menu.OpenCenteredRight(); _menu.OnServerListButtonPressed += _ => { @@ -30,8 +31,6 @@ protected override void Open() { SendMessage(new LatheQueueRecipeMessage(recipe, amount)); }; - - _menu.OpenCenteredRight(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -50,13 +49,5 @@ protected override void UpdateState(BoundUserInterfaceState state) break; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - _menu?.Dispose(); - } } } diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 265130d15d3..6f530b76c75 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -1,3 +1,4 @@ +using System.Buffers; using System.Linq; using System.Text; using Content.Client.Materials; @@ -21,9 +22,7 @@ public sealed partial class LatheMenu : DefaultWindow { [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IResourceCache _resources = default!; - private EntityUid _owner; private readonly SpriteSystem _spriteSystem; private readonly LatheSystem _lathe; private readonly MaterialStorageSystem _materialStorage; @@ -37,9 +36,10 @@ public sealed partial class LatheMenu : DefaultWindow public ProtoId? CurrentCategory; - public LatheMenu(LatheBoundUserInterface owner) + public EntityUid Entity; + + public LatheMenu() { - _owner = owner.Owner; RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); @@ -47,8 +47,6 @@ public LatheMenu(LatheBoundUserInterface owner) _lathe = _entityManager.System(); _materialStorage = _entityManager.System(); - Title = _entityManager.GetComponent(owner.Owner).EntityName; - SearchBar.OnTextChanged += _ => { PopulateRecipes(); @@ -61,8 +59,13 @@ public LatheMenu(LatheBoundUserInterface owner) FilterOption.OnItemSelected += OnItemSelected; ServerListButton.OnPressed += a => OnServerListButtonPressed?.Invoke(a); + } - if (_entityManager.TryGetComponent(owner.Owner, out var latheComponent)) + public void SetEntity(EntityUid uid) + { + Entity = uid; + + if (_entityManager.TryGetComponent(Entity, out var latheComponent)) { if (!latheComponent.DynamicRecipes.Any()) { @@ -70,7 +73,7 @@ public LatheMenu(LatheBoundUserInterface owner) } } - MaterialsList.SetOwner(owner.Owner); + MaterialsList.SetOwner(Entity); } /// @@ -103,13 +106,15 @@ public void PopulateRecipes() var sortedRecipesToShow = recipesToShow.OrderBy(p => p.Name); RecipeList.Children.Clear(); + _entityManager.TryGetComponent(Entity, out LatheComponent? lathe); + foreach (var prototype in sortedRecipesToShow) { EntityPrototype? recipeProto = null; - if (_prototypeManager.TryIndex(prototype.Result, out EntityPrototype? entityProto) && entityProto != null) + if (_prototypeManager.TryIndex(prototype.Result, out EntityPrototype? entityProto)) recipeProto = entityProto; - var canProduce = _lathe.CanProduce(_owner, prototype, quantity); + var canProduce = _lathe.CanProduce(Entity, prototype, quantity, component: lathe); var control = new RecipeControl(prototype, () => GenerateTooltipText(prototype), canProduce, recipeProto); control.OnButtonPressed += s => @@ -125,19 +130,20 @@ public void PopulateRecipes() private string GenerateTooltipText(LatheRecipePrototype prototype) { StringBuilder sb = new(); + var multiplier = _entityManager.GetComponent(Entity).MaterialUseMultiplier; foreach (var (id, amount) in prototype.RequiredMaterials) { if (!_prototypeManager.TryIndex(id, out var proto)) continue; - var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, _entityManager.GetComponent(_owner).MaterialUseMultiplier); + var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, multiplier); var sheetVolume = _materialStorage.GetSheetVolume(proto); var unit = Loc.GetString(proto.Unit); var sheets = adjustedAmount / (float) sheetVolume; - var availableAmount = _materialStorage.GetMaterialAmount(_owner, id); + var availableAmount = _materialStorage.GetMaterialAmount(Entity, id); var missingAmount = Math.Max(0, adjustedAmount - availableAmount); var missingSheets = missingAmount / (float) sheetVolume; diff --git a/Content.Client/MachineLinking/UI/SignalTimerBoundUserInterface.cs b/Content.Client/MachineLinking/UI/SignalTimerBoundUserInterface.cs index 09bdedfd94c..11abe8c2451 100644 --- a/Content.Client/MachineLinking/UI/SignalTimerBoundUserInterface.cs +++ b/Content.Client/MachineLinking/UI/SignalTimerBoundUserInterface.cs @@ -1,5 +1,6 @@ using Content.Shared.MachineLinking; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Shared.Timing; namespace Content.Client.MachineLinking.UI; @@ -19,19 +20,14 @@ protected override void Open() { base.Open(); - _window = new SignalTimerWindow(this); - - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - _window.OnClose += Close; + _window = this.CreateWindow(); + _window.OnStartTimer += StartTimer; _window.OnCurrentTextChanged += OnTextChanged; _window.OnCurrentDelayMinutesChanged += OnDelayChanged; _window.OnCurrentDelaySecondsChanged += OnDelayChanged; } - public void OnStartTimer() + public void StartTimer() { SendMessage(new SignalTimerStartMessage()); } @@ -48,11 +44,6 @@ private void OnDelayChanged(string newDelay) SendMessage(new SignalTimerDelayChangedMessage(_window.GetDelay())); } - public TimeSpan GetCurrentTime() - { - return _gameTiming.CurTime; - } - /// /// Update the UI state based on server-sent info /// @@ -72,11 +63,4 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.SetTimerStarted(cast.TimerStarted); _window.SetHasAccess(cast.HasAccess); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } diff --git a/Content.Client/MachineLinking/UI/SignalTimerWindow.xaml.cs b/Content.Client/MachineLinking/UI/SignalTimerWindow.xaml.cs index b62595595e5..6133abfcb70 100644 --- a/Content.Client/MachineLinking/UI/SignalTimerWindow.xaml.cs +++ b/Content.Client/MachineLinking/UI/SignalTimerWindow.xaml.cs @@ -9,42 +9,44 @@ namespace Content.Client.MachineLinking.UI; [GenerateTypedNameReferences] public sealed partial class SignalTimerWindow : DefaultWindow { + [Dependency] private readonly IGameTiming _timing = default!; + private const int MaxTextLength = 5; public event Action? OnCurrentTextChanged; public event Action? OnCurrentDelayMinutesChanged; public event Action? OnCurrentDelaySecondsChanged; - private readonly SignalTimerBoundUserInterface _owner; - private TimeSpan? _triggerTime; private bool _timerStarted; - public SignalTimerWindow(SignalTimerBoundUserInterface owner) + public event Action? OnStartTimer; + + public SignalTimerWindow() { RobustXamlLoader.Load(this); - - _owner = owner; + IoCManager.InjectDependencies(this); CurrentTextEdit.OnTextChanged += e => OnCurrentTextChange(e.Text); CurrentDelayEditMinutes.OnTextChanged += e => OnCurrentDelayMinutesChange(e.Text); CurrentDelayEditSeconds.OnTextChanged += e => OnCurrentDelaySecondsChange(e.Text); - StartTimer.OnPressed += _ => OnStartTimer(); + StartTimer.OnPressed += _ => StartTimerWeh(); } - public void OnStartTimer() + private void StartTimerWeh() { if (!_timerStarted) { _timerStarted = true; - _triggerTime = _owner.GetCurrentTime() + GetDelay(); + _triggerTime = _timing.CurTime + GetDelay(); } else { SetTimerStarted(false); } - _owner.OnStartTimer(); + + OnStartTimer?.Invoke(); } protected override void FrameUpdate(FrameEventArgs args) @@ -54,9 +56,9 @@ protected override void FrameUpdate(FrameEventArgs args) if (!_timerStarted || _triggerTime == null) return; - if (_owner.GetCurrentTime() < _triggerTime.Value) + if (_timing.CurTime < _triggerTime.Value) { - StartTimer.Text = TextScreenSystem.TimeToString(_triggerTime.Value - _owner.GetCurrentTime()); + StartTimer.Text = TextScreenSystem.TimeToString(_triggerTime.Value - _timing.CurTime); } else { diff --git a/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs b/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs index f6979bf8d7b..0a87948ff62 100644 --- a/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs +++ b/Content.Client/MagicMirror/MagicMirrorBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.Humanoid.Markings; using Content.Shared.MagicMirror; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.MagicMirror; @@ -17,7 +18,7 @@ protected override void Open() { base.Open(); - _window = new(); + _window = this.CreateWindow(); _window.OnHairSelected += tuple => SelectHair(MagicMirrorCategory.Hair, tuple.id, tuple.slot); _window.OnHairColorChanged += args => ChangeColor(MagicMirrorCategory.Hair, args.marking, args.slot); @@ -29,9 +30,6 @@ protected override void Open() args => ChangeColor(MagicMirrorCategory.FacialHair, args.marking, args.slot); _window.OnFacialHairSlotAdded += delegate () { AddSlot(MagicMirrorCategory.FacialHair); }; _window.OnFacialHairSlotRemoved += args => RemoveSlot(MagicMirrorCategory.FacialHair, args); - - _window.OnClose += Close; - _window.OpenCentered(); } private void SelectHair(MagicMirrorCategory category, string marking, int slot) @@ -65,14 +63,5 @@ protected override void UpdateState(BoundUserInterfaceState state) _window.UpdateState(data); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _window?.Dispose(); - } } diff --git a/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs b/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs index 80eca82e324..22e5bc452a0 100644 --- a/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs +++ b/Content.Client/MassMedia/Ui/NewsWriterBoundUserInterface.cs @@ -1,6 +1,7 @@ using JetBrains.Annotations; using Content.Shared.MassMedia.Systems; using Content.Shared.MassMedia.Components; +using Robust.Client.UserInterface; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -9,8 +10,6 @@ namespace Content.Client.MassMedia.Ui; [UsedImplicitly] public sealed class NewsWriterBoundUserInterface : BoundUserInterface { - [Dependency] private readonly IGameTiming _gameTiming = default!; - [ViewVariables] private NewsWriterMenu? _menu; @@ -21,10 +20,7 @@ public NewsWriterBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, u protected override void Open() { - _menu = new NewsWriterMenu(_gameTiming); - - _menu.OpenCentered(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.ArticleEditorPanel.PublishButtonPressed += OnPublishButtonPressed; _menu.DeleteButtonPressed += OnDeleteButtonPressed; @@ -32,16 +28,6 @@ protected override void Open() SendMessage(new NewsWriterArticlesRequestMessage()); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Close(); - _menu?.Dispose(); - } - protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); diff --git a/Content.Client/MassMedia/Ui/NewsWriterMenu.xaml.cs b/Content.Client/MassMedia/Ui/NewsWriterMenu.xaml.cs index e2d57935e3a..c059ce785af 100644 --- a/Content.Client/MassMedia/Ui/NewsWriterMenu.xaml.cs +++ b/Content.Client/MassMedia/Ui/NewsWriterMenu.xaml.cs @@ -10,17 +10,17 @@ namespace Content.Client.MassMedia.Ui; [GenerateTypedNameReferences] public sealed partial class NewsWriterMenu : FancyWindow { - private readonly IGameTiming _gameTiming; + [Dependency] private readonly IGameTiming _gameTiming = default!; private TimeSpan? _nextPublish; public event Action? DeleteButtonPressed; - public NewsWriterMenu(IGameTiming gameTiming) + public NewsWriterMenu() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); - _gameTiming = gameTiming; ContentsContainer.RectClipContent = false; // Customize scrollbar width and margin. This is not possible in xaml diff --git a/Content.Client/Mech/Ui/MechBoundUserInterface.cs b/Content.Client/Mech/Ui/MechBoundUserInterface.cs index 4172bdc90f1..2130a8c6099 100644 --- a/Content.Client/Mech/Ui/MechBoundUserInterface.cs +++ b/Content.Client/Mech/Ui/MechBoundUserInterface.cs @@ -3,6 +3,7 @@ using Content.Shared.Mech.Components; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Mech.Ui; @@ -20,9 +21,8 @@ protected override void Open() { base.Open(); - _menu = new(Owner); - - _menu.OnClose += Close; + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); _menu.OpenCenteredLeft(); _menu.OnRemoveButtonPressed += uid => @@ -60,16 +60,6 @@ public void UpdateEquipmentControls(MechBoundUiState state) } } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - if (!disposing) - return; - - _menu?.Close(); - } - public UIFragment? GetEquipmentUi(EntityUid? uid) { var component = EntMan.GetComponentOrNull(uid); diff --git a/Content.Client/Mech/Ui/MechMenu.xaml.cs b/Content.Client/Mech/Ui/MechMenu.xaml.cs index fad76488086..6f39bc386ee 100644 --- a/Content.Client/Mech/Ui/MechMenu.xaml.cs +++ b/Content.Client/Mech/Ui/MechMenu.xaml.cs @@ -16,14 +16,15 @@ public sealed partial class MechMenu : FancyWindow public event Action? OnRemoveButtonPressed; - public MechMenu(EntityUid mech) + public MechMenu() { RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + } - _mech = mech; - - MechView.SetEntity(mech); + public void SetEntity(EntityUid uid) + { + MechView.SetEntity(uid); } public void UpdateMechStats() diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs index 39788809871..b1f239cd78e 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs @@ -1,4 +1,5 @@ using Content.Shared.Medical.CrewMonitoring; +using Robust.Client.UserInterface; namespace Content.Client.Medical.CrewMonitoring; @@ -14,7 +15,7 @@ public CrewMonitoringBoundUserInterface(EntityUid owner, Enum uiKey) : base(owne protected override void Open() { EntityUid? gridUid = null; - string stationName = string.Empty; + var stationName = string.Empty; if (EntMan.TryGetComponent(Owner, out var xform)) { @@ -26,10 +27,8 @@ protected override void Open() } } - _menu = new CrewMonitoringWindow(stationName, gridUid); - - _menu.OpenCentered(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); + _menu.Set(stationName, gridUid); } protected override void UpdateState(BoundUserInterfaceState state) @@ -44,13 +43,4 @@ protected override void UpdateState(BoundUserInterfaceState state) break; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Dispose(); - } } diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index 863412e5532..e861864c144 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -23,22 +23,27 @@ namespace Content.Client.Medical.CrewMonitoring; [GenerateTypedNameReferences] public sealed partial class CrewMonitoringWindow : FancyWindow { - private readonly IEntityManager _entManager; - private readonly IPrototypeManager _prototypeManager; + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; private readonly SpriteSystem _spriteSystem; private NetEntity? _trackedEntity; private bool _tryToScrollToListFocus; private Texture? _blipTexture; - public CrewMonitoringWindow(string stationName, EntityUid? mapUid) + public CrewMonitoringWindow() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); - _entManager = IoCManager.Resolve(); - _prototypeManager = IoCManager.Resolve(); _spriteSystem = _entManager.System(); + NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap; + + } + + public void Set(string stationName, EntityUid? mapUid) + { _blipTexture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); if (_entManager.TryGetComponent(mapUid, out var xform)) @@ -49,8 +54,6 @@ public CrewMonitoringWindow(string stationName, EntityUid? mapUid) StationName.AddStyleClass("LabelBig"); StationName.Text = stationName; - - NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap; NavMap.ForceNavMapUpdate(); } diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorBoundUserInterface.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorBoundUserInterface.cs index 80c98f143b9..f85220a9266 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorBoundUserInterface.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Client.NetworkConfigurator.Systems; using Content.Shared.DeviceNetwork; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; namespace Content.Client.NetworkConfigurator; @@ -35,14 +36,12 @@ protected override void Open() switch (UiKey) { case NetworkConfiguratorUiKey.List: - _listMenu = new NetworkConfiguratorListMenu(this); - _listMenu.OnClose += Close; + _listMenu = this.CreateWindow(); _listMenu.ClearButton.OnPressed += _ => OnClearButtonPressed(); - _listMenu.OpenCenteredRight(); + _listMenu.OnRemoveAddress += OnRemoveButtonPressed; break; case NetworkConfiguratorUiKey.Configure: - _configurationMenu = new NetworkConfiguratorConfigurationMenu(); - _configurationMenu.OnClose += Close; + _configurationMenu = this.CreateWindow(); _configurationMenu.Set.OnPressed += _ => OnConfigButtonPressed(NetworkConfiguratorButtonKey.Set); _configurationMenu.Add.OnPressed += _ => OnConfigButtonPressed(NetworkConfiguratorButtonKey.Add); //_configurationMenu.Edit.OnPressed += _ => OnConfigButtonPressed(NetworkConfiguratorButtonKey.Edit); @@ -50,12 +49,24 @@ protected override void Open() _configurationMenu.Copy.OnPressed += _ => OnConfigButtonPressed(NetworkConfiguratorButtonKey.Copy); _configurationMenu.Show.OnPressed += OnShowPressed; _configurationMenu.Show.Pressed = _netConfig.ConfiguredListIsTracked(Owner); - _configurationMenu.OpenCentered(); + _configurationMenu.OnRemoveAddress += OnRemoveButtonPressed; break; case NetworkConfiguratorUiKey.Link: - _linkMenu = new NetworkConfiguratorLinkMenu(this); - _linkMenu.OnClose += Close; - _linkMenu.OpenCentered(); + _linkMenu = this.CreateWindow(); + _linkMenu.OnLinkDefaults += args => + { + SendMessage(new NetworkConfiguratorLinksSaveMessage(args)); + }; + + _linkMenu.OnToggleLink += (left, right) => + { + SendMessage(new NetworkConfiguratorToggleLinkMessage(left, right)); + }; + + _linkMenu.OnClearLinks += () => + { + SendMessage(new NetworkConfiguratorClearLinksMessage()); + }; break; } } @@ -83,16 +94,6 @@ protected override void UpdateState(BoundUserInterfaceState state) } } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - - _linkMenu?.Dispose(); - _listMenu?.Dispose(); - _configurationMenu?.Dispose(); - } - private void OnClearButtonPressed() { SendMessage(new NetworkConfiguratorClearDevicesMessage()); diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorConfigurationMenu.xaml.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorConfigurationMenu.xaml.cs index 19d04cd3464..fcd2f759187 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorConfigurationMenu.xaml.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorConfigurationMenu.xaml.cs @@ -9,17 +9,23 @@ namespace Content.Client.NetworkConfigurator; [GenerateTypedNameReferences] public sealed partial class NetworkConfiguratorConfigurationMenu : FancyWindow { + public event Action? OnRemoveAddress; + public NetworkConfiguratorConfigurationMenu() { RobustXamlLoader.Load(this); Clear.StyleClasses.Add(StyleBase.ButtonOpenLeft); Clear.StyleClasses.Add(StyleNano.StyleClassButtonColorRed); + DeviceList.OnRemoveAddress += args => + { + OnRemoveAddress?.Invoke(args); + }; } public void UpdateState(DeviceListUserInterfaceState state) { - DeviceList.UpdateState(null, state.DeviceList); + DeviceList.UpdateState(state.DeviceList, false); Count.Text = Loc.GetString("network-configurator-ui-count-label", ("count", state.DeviceList.Count)); } diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorDeviceList.xaml.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorDeviceList.xaml.cs index 8cfa97dc6c2..e75c60058cb 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorDeviceList.xaml.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorDeviceList.xaml.cs @@ -7,17 +7,19 @@ namespace Content.Client.NetworkConfigurator; [GenerateTypedNameReferences] public sealed partial class NetworkConfiguratorDeviceList : ScrollContainer { - public void UpdateState(NetworkConfiguratorBoundUserInterface? ui, HashSet<(string address, string name)> devices) + public event Action? OnRemoveAddress; + + public void UpdateState(HashSet<(string address, string name)> devices, bool ui) { DeviceList.RemoveAllChildren(); foreach (var device in devices) { - DeviceList.AddChild(BuildDeviceListRow(ui, device)); + DeviceList.AddChild(BuildDeviceListRow(device, ui)); } } - private static BoxContainer BuildDeviceListRow(NetworkConfiguratorBoundUserInterface? ui, (string address, string name) savedDevice) + private BoxContainer BuildDeviceListRow((string address, string name) savedDevice, bool ui) { var row = new BoxContainer() { @@ -48,10 +50,10 @@ private static BoxContainer BuildDeviceListRow(NetworkConfiguratorBoundUserInter row.AddChild(name); row.AddChild(address); - if (ui != null) + if (ui) { row.AddChild(removeButton); - removeButton.OnPressed += _ => ui.OnRemoveButtonPressed(savedDevice.address); + removeButton.OnPressed += _ => OnRemoveAddress?.Invoke(savedDevice.address); } return row; diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml.cs index c04b42f249b..8cdffd16af6 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorLinkMenu.xaml.cs @@ -18,20 +18,20 @@ public sealed partial class NetworkConfiguratorLinkMenu : FancyWindow private readonly LinksRender _links; - private readonly List _sources = new(); private readonly List _sinks = new(); - private readonly NetworkConfiguratorBoundUserInterface _userInterface; - private (ButtonPosition position, string id, int index)? _selectedButton; private List<(string left, string right)>? _defaults; - public NetworkConfiguratorLinkMenu(NetworkConfiguratorBoundUserInterface userInterface) + public event Action? OnClearLinks; + public event Action? OnToggleLink; + public event Action>? OnLinkDefaults; + + public NetworkConfiguratorLinkMenu() { - _userInterface = userInterface; RobustXamlLoader.Load(this); var footerStyleBox = new StyleBoxFlat() @@ -52,7 +52,7 @@ public NetworkConfiguratorLinkMenu(NetworkConfiguratorBoundUserInterface userInt ButtonOk.OnPressed += _ => Close(); ButtonLinkDefault.OnPressed += _ => LinkDefaults(); - ButtonClear.OnPressed += _ => _userInterface.SendMessage(new NetworkConfiguratorClearLinksMessage()); + ButtonClear.OnPressed += _ => OnClearLinks?.Invoke(); } public void UpdateState(DeviceLinkUserInterfaceState linkState) @@ -98,7 +98,7 @@ private void LinkDefaults() if (_defaults == default) return; - _userInterface.SendMessage(new NetworkConfiguratorLinksSaveMessage(_defaults)); + OnLinkDefaults?.Invoke(_defaults); } private Button CreateButton(ButtonPosition position, string name, string description, string id, int index) @@ -138,7 +138,7 @@ private void OnButtonPressed(BaseButton.ButtonEventArgs args, ButtonPosition pos var left = _selectedButton.Value.position == ButtonPosition.Left ? _selectedButton.Value.id : id; var right = _selectedButton.Value.position == ButtonPosition.Left ? id : _selectedButton.Value.id; - _userInterface.SendMessage(new NetworkConfiguratorToggleLinkMessage(left, right)); + OnToggleLink?.Invoke(left, right); args.Button.Pressed = false; diff --git a/Content.Client/NetworkConfigurator/NetworkConfiguratorListMenu.xaml.cs b/Content.Client/NetworkConfigurator/NetworkConfiguratorListMenu.xaml.cs index fb4aec1974b..6294facaeed 100644 --- a/Content.Client/NetworkConfigurator/NetworkConfiguratorListMenu.xaml.cs +++ b/Content.Client/NetworkConfigurator/NetworkConfiguratorListMenu.xaml.cs @@ -9,17 +9,20 @@ namespace Content.Client.NetworkConfigurator; [GenerateTypedNameReferences] public sealed partial class NetworkConfiguratorListMenu : FancyWindow { - private readonly NetworkConfiguratorBoundUserInterface _ui; - public NetworkConfiguratorListMenu(NetworkConfiguratorBoundUserInterface ui) + public event Action? OnRemoveAddress; + + public NetworkConfiguratorListMenu() { RobustXamlLoader.Load(this); - - _ui = ui; + DeviceList.OnRemoveAddress += args => + { + OnRemoveAddress?.Invoke(args); + }; } public void UpdateState(NetworkConfiguratorUserInterfaceState state) { DeviceCountLabel.Text = Loc.GetString("network-configurator-ui-count-label", ("count", state.DeviceList.Count)); - DeviceList.UpdateState(_ui, state.DeviceList); + DeviceList.UpdateState(state.DeviceList, true); } } diff --git a/Content.Client/Nuke/NukeBoundUserInterface.cs b/Content.Client/Nuke/NukeBoundUserInterface.cs index 59fbc5b319b..2e150423734 100644 --- a/Content.Client/Nuke/NukeBoundUserInterface.cs +++ b/Content.Client/Nuke/NukeBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Nuke; using JetBrains.Annotations; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.Nuke { @@ -11,15 +12,13 @@ public sealed class NukeBoundUserInterface : BoundUserInterface [ViewVariables] private NukeMenu? _menu; - public NukeBoundUserInterface([NotNull] EntityUid owner, [NotNull] Enum uiKey) : base(owner, uiKey) + public NukeBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } protected override void Open() { - _menu = new NukeMenu(); - _menu.OpenCentered(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); _menu.OnKeypadButtonPressed += i => { @@ -62,15 +61,5 @@ protected override void UpdateState(BoundUserInterfaceState state) break; } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Close(); - _menu?.Dispose(); - } } } diff --git a/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs b/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs index ec055b3240c..ad4f1a75d47 100644 --- a/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs +++ b/Content.Client/NukeOps/WarDeclaratorBoundUserInterface.cs @@ -2,6 +2,7 @@ using Content.Shared.Chat; using Content.Shared.NukeOps; using JetBrains.Annotations; +using Robust.Client.UserInterface; using Robust.Shared.Configuration; using Robust.Shared.Timing; @@ -11,8 +12,6 @@ namespace Content.Client.NukeOps; public sealed class WarDeclaratorBoundUserInterface : BoundUserInterface { [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly ILocalizationManager _localizationManager = default!; [ViewVariables] private WarDeclaratorWindow? _window; @@ -23,13 +22,7 @@ protected override void Open() { base.Open(); - _window = new WarDeclaratorWindow(_gameTiming, _localizationManager); - if (State != null) - UpdateState(State); - - _window.OpenCentered(); - - _window.OnClose += Close; + _window = this.CreateWindow(); _window.OnActivated += OnWarDeclaratorActivated; } @@ -42,13 +35,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.UpdateState(cast); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (disposing) - _window?.Dispose(); - } - private void OnWarDeclaratorActivated(string message) { var maxLength = _cfg.GetCVar(CCVars.ChatMaxAnnouncementLength); diff --git a/Content.Client/NukeOps/WarDeclaratorWindow.xaml.cs b/Content.Client/NukeOps/WarDeclaratorWindow.xaml.cs index b4a3f1c7fa5..e191e821c22 100644 --- a/Content.Client/NukeOps/WarDeclaratorWindow.xaml.cs +++ b/Content.Client/NukeOps/WarDeclaratorWindow.xaml.cs @@ -11,7 +11,8 @@ namespace Content.Client.NukeOps; [GenerateTypedNameReferences] public sealed partial class WarDeclaratorWindow : FancyWindow { - private readonly IGameTiming _gameTiming; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly ILocalizationManager _localizationManager = default!; public event Action? OnActivated; @@ -19,15 +20,14 @@ public sealed partial class WarDeclaratorWindow : FancyWindow private TimeSpan _shuttleDisabledTime; private WarConditionStatus _status; - public WarDeclaratorWindow(IGameTiming gameTiming, ILocalizationManager localizationManager) + public WarDeclaratorWindow() { RobustXamlLoader.Load(this); - - _gameTiming = gameTiming; + IoCManager.InjectDependencies(this); WarButton.OnPressed += (_) => OnActivated?.Invoke(Rope.Collapse(MessageEdit.TextRope)); - MessageEdit.Placeholder = new Rope.Leaf(localizationManager.GetString("war-declarator-message-placeholder")); + MessageEdit.Placeholder = new Rope.Leaf(_localizationManager.GetString("war-declarator-message-placeholder")); } protected override void FrameUpdate(FrameEventArgs args) diff --git a/Content.Client/PDA/PdaBoundUserInterface.cs b/Content.Client/PDA/PdaBoundUserInterface.cs index f8f4c67076c..37ce9c4280f 100644 --- a/Content.Client/PDA/PdaBoundUserInterface.cs +++ b/Content.Client/PDA/PdaBoundUserInterface.cs @@ -24,14 +24,13 @@ protected override void Open() if (_menu == null) CreateMenu(); - - _menu?.OpenCenteredLeft(); } private void CreateMenu() { - _menu = new PdaMenu(); - _menu.OnClose += Close; + _menu = this.CreateWindow(); + _menu.OpenCenteredLeft(); + _menu.FlashLightToggleButton.OnToggled += _ => { SendMessage(new PdaToggleFlashlightMessage()); @@ -96,7 +95,6 @@ protected override void UpdateState(BoundUserInterfaceState state) _menu?.UpdateState(updateState); } - protected override void AttachCartridgeUI(Control cartridgeUIFragment, string? title) { _menu?.ProgramView.AddChild(cartridgeUIFragment); @@ -118,15 +116,6 @@ protected override void UpdateAvailablePrograms(List<(EntityUid, CartridgeCompon _menu?.UpdateAvailablePrograms(programs); } - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) - return; - - _menu?.Dispose(); - } - private PdaBorderColorComponent? GetBorderColorComponent() { return EntMan.GetComponentOrNull(Owner); diff --git a/Content.Client/PDA/Ringer/RingerBoundUserInterface.cs b/Content.Client/PDA/Ringer/RingerBoundUserInterface.cs index a0688523f1e..170a296ac2e 100644 --- a/Content.Client/PDA/Ringer/RingerBoundUserInterface.cs +++ b/Content.Client/PDA/Ringer/RingerBoundUserInterface.cs @@ -1,6 +1,7 @@ using Content.Shared.PDA; using Content.Shared.PDA.Ringer; using JetBrains.Annotations; +using Robust.Client.UserInterface; using Robust.Shared.Timing; namespace Content.Client.PDA.Ringer @@ -18,9 +19,8 @@ public RingerBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey protected override void Open() { base.Open(); - _menu = new RingtoneMenu(); + _menu = this.CreateWindow(); _menu.OpenToLeft(); - _menu.OnClose += Close; _menu.TestRingerButton.OnPressed += _ => { diff --git a/Content.Client/Paper/UI/PaperBoundUserInterface.cs b/Content.Client/Paper/UI/PaperBoundUserInterface.cs index 4b0ac868f01..f3ad1e347e7 100644 --- a/Content.Client/Paper/UI/PaperBoundUserInterface.cs +++ b/Content.Client/Paper/UI/PaperBoundUserInterface.cs @@ -1,4 +1,5 @@ using JetBrains.Annotations; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Utility; using static Content.Shared.Paper.SharedPaperComponent; @@ -19,16 +20,13 @@ protected override void Open() { base.Open(); - _window = new PaperWindow(); - _window.OnClose += Close; - _window.OnSaved += Input_OnTextEntered; + _window = this.CreateWindow(); + _window.OnSaved += InputOnTextEntered; if (EntMan.TryGetComponent(Owner, out var visuals)) { _window.InitVisuals(Owner, visuals); } - - _window.OpenCentered(); } protected override void UpdateState(BoundUserInterfaceState state) @@ -37,7 +35,7 @@ protected override void UpdateState(BoundUserInterfaceState state) _window?.Populate((PaperBoundUserInterfaceState) state); } - private void Input_OnTextEntered(string text) + private void InputOnTextEntered(string text) { SendMessage(new PaperInputTextMessage(text)); @@ -47,11 +45,4 @@ private void Input_OnTextEntered(string text) _window.Input.CursorPosition = new TextEdit.CursorPos(0, TextEdit.LineBreakBias.Top); } } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - if (!disposing) return; - _window?.Dispose(); - } } diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 7a5fd652643..f7cace642ce 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -17,6 +17,7 @@ namespace Content.Client.Paper.UI public sealed partial class PaperWindow : BaseWindow { [Dependency] private readonly IInputManager _inputManager = default!; + [Dependency] private readonly IResourceCache _resCache = default!; private static Color DefaultTextColor = new(25, 25, 25); @@ -85,11 +86,10 @@ public void InitVisuals(EntityUid entity, PaperVisualsComponent visuals) // Randomize the placement of any stamps based on the entity UID // so that there's some variety in different papers. StampDisplay.PlacementSeed = (int)entity; - var resCache = IoCManager.Resolve(); // Initialize the background: PaperBackground.ModulateSelfOverride = visuals.BackgroundModulate; - var backgroundImage = visuals.BackgroundImagePath != null? resCache.GetResource(visuals.BackgroundImagePath) : null; + var backgroundImage = visuals.BackgroundImagePath != null? _resCache.GetResource(visuals.BackgroundImagePath) : null; if (backgroundImage != null) { var backgroundImageMode = visuals.BackgroundImageTile ? StyleBoxTexture.StretchMode.Tile : StyleBoxTexture.StretchMode.Stretch; @@ -127,7 +127,7 @@ public void InitVisuals(EntityUid entity, PaperVisualsComponent visuals) PaperContent.ModulateSelfOverride = visuals.ContentImageModulate; WrittenTextLabel.ModulateSelfOverride = visuals.FontAccentColor; - var contentImage = visuals.ContentImagePath != null ? resCache.GetResource(visuals.ContentImagePath) : null; + var contentImage = visuals.ContentImagePath != null ? _resCache.GetResource(visuals.ContentImagePath) : null; if (contentImage != null) { // Setup the paper content texture, but keep a reference to it, as we can't set diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorBoundUserInterface.cs b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorBoundUserInterface.cs index cde5ba9ef79..93306f2fd1f 100644 --- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorBoundUserInterface.cs +++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorBoundUserInterface.cs @@ -1,5 +1,5 @@ using Content.Shared.Singularity.Components; -using Robust.Client.GameObjects; +using Robust.Client.UserInterface; namespace Content.Client.ParticleAccelerator.UI { @@ -16,9 +16,12 @@ protected override void Open() { base.Open(); - _menu = new ParticleAcceleratorControlMenu(this); - _menu.OnClose += Close; - _menu.OpenCentered(); + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); + + _menu.OnOverallState += SendEnableMessage; + _menu.OnPowerState += SendPowerStateMessage; + _menu.OnScan += SendScanPartsMessage; } public void SendEnableMessage(bool enable) @@ -40,13 +43,5 @@ protected override void UpdateState(BoundUserInterfaceState state) { _menu?.DataUpdate((ParticleAcceleratorUIState) state); } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - _menu?.Dispose(); - _menu = null; - } } } diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.cs b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.cs deleted file mode 100644 index c69e0271372..00000000000 --- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.cs +++ /dev/null @@ -1,521 +0,0 @@ -using System.Numerics; -using Content.Client.Resources; -using Content.Client.Stylesheets; -using Content.Client.UserInterface.Controls; -using Content.Shared.Singularity.Components; -using Robust.Client.Animations; -using Robust.Client.Graphics; -using Robust.Client.ResourceManagement; -using Robust.Client.UserInterface; -using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; -using Robust.Shared.Noise; -using Robust.Shared.Prototypes; -using Robust.Shared.Timing; -using static Robust.Client.UserInterface.Controls.BoxContainer; - -namespace Content.Client.ParticleAccelerator.UI -{ - public sealed class ParticleAcceleratorControlMenu : BaseWindow - { - private readonly ShaderInstance _greyScaleShader; - - private readonly ParticleAcceleratorBoundUserInterface _owner; - - private readonly Label _drawLabel; - private readonly FastNoiseLite _drawNoiseGenerator; - private readonly Button _onButton; - private readonly Button _offButton; - private readonly Button _scanButton; - private readonly Label _statusLabel; - private readonly SpinBox _stateSpinBox; - - private readonly BoxContainer _alarmControl; - private readonly Animation _alarmControlAnimation; - - private readonly PASegmentControl _endCapTexture; - private readonly PASegmentControl _fuelChamberTexture; - private readonly PASegmentControl _controlBoxTexture; - private readonly PASegmentControl _powerBoxTexture; - private readonly PASegmentControl _emitterForeTexture; - private readonly PASegmentControl _emitterPortTexture; - private readonly PASegmentControl _emitterStarboardTexture; - - private float _time; - private int _lastDraw; - private int _lastReceive; - - private bool _blockSpinBox; - private bool _assembled; - private bool _shouldContinueAnimating; - private int _maxStrength = 3; - - public ParticleAcceleratorControlMenu(ParticleAcceleratorBoundUserInterface owner) - { - SetSize = new Vector2(400, 320); - _greyScaleShader = IoCManager.Resolve().Index("Greyscale").Instance(); - - _owner = owner; - _drawNoiseGenerator = new(); - _drawNoiseGenerator.SetFractalType(FastNoiseLite.FractalType.FBm); - _drawNoiseGenerator.SetFrequency(0.5f); - - var resourceCache = IoCManager.Resolve(); - var font = resourceCache.GetFont("/Fonts/Boxfont-round/Boxfont Round.ttf", 13); - var panelTex = resourceCache.GetTexture("/Textures/Interface/Nano/button.svg.96dpi.png"); - - MouseFilter = MouseFilterMode.Stop; - - _alarmControlAnimation = new Animation - { - Length = TimeSpan.FromSeconds(1), - AnimationTracks = - { - new AnimationTrackControlProperty - { - Property = nameof(Control.Visible), - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(true, 0), - new AnimationTrackProperty.KeyFrame(false, 0.75f), - } - } - } - }; - - var back = new StyleBoxTexture - { - Texture = panelTex, - Modulate = Color.FromHex("#25252A"), - }; - back.SetPatchMargin(StyleBox.Margin.All, 10); - - var back2 = new StyleBoxTexture(back) - { - Modulate = Color.FromHex("#202023") - }; - - AddChild(new PanelContainer - { - PanelOverride = back, - MouseFilter = MouseFilterMode.Pass - }); - - _stateSpinBox = new SpinBox { Value = 0, IsValid = StrengthSpinBoxValid }; - _stateSpinBox.InitDefaultButtons(); - _stateSpinBox.ValueChanged += PowerStateChanged; - _stateSpinBox.LineEditDisabled = true; - - _offButton = new Button - { - ToggleMode = false, - Text = Loc.GetString("particle-accelerator-control-menu-off-button"), - StyleClasses = { StyleBase.ButtonOpenRight }, - }; - _offButton.OnPressed += args => owner.SendEnableMessage(false); - - _onButton = new Button - { - ToggleMode = false, - Text = Loc.GetString("particle-accelerator-control-menu-on-button"), - StyleClasses = { StyleBase.ButtonOpenLeft }, - }; - _onButton.OnPressed += args => owner.SendEnableMessage(true); - - var closeButton = new TextureButton - { - StyleClasses = { "windowCloseButton" }, - HorizontalAlignment = HAlignment.Right, - Margin = new Thickness(0, 0, 8, 0) - }; - closeButton.OnPressed += args => Close(); - - var serviceManual = new Label - { - HorizontalAlignment = HAlignment.Center, - StyleClasses = { StyleBase.StyleClassLabelSubText }, - Text = Loc.GetString("particle-accelerator-control-menu-service-manual-reference") - }; - _drawLabel = new Label(); - var imgSize = new Vector2(32, 32); - AddChild(new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Children = - { - new Control - { - Margin = new Thickness(2, 2, 0, 0), - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-device-version-label"), - FontOverride = font, - FontColorOverride = StyleNano.NanoGold, - }, - closeButton - } - }, - new PanelContainer - { - PanelOverride = new StyleBoxFlat {BackgroundColor = StyleNano.NanoGold}, - MinSize = new Vector2(0, 2), - }, - new Control - { - MinSize = new Vector2(0, 4) - }, - - new BoxContainer - { - Orientation = LayoutOrientation.Horizontal, - VerticalExpand = true, - Children = - { - new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Margin = new Thickness(4, 0, 0, 0), - HorizontalExpand = true, - Children = - { - new BoxContainer - { - Orientation = LayoutOrientation.Horizontal, - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-power-label") + " ", - HorizontalExpand = true, - HorizontalAlignment = HAlignment.Left, - }, - _offButton, - _onButton - } - }, - new BoxContainer - { - Orientation = LayoutOrientation.Horizontal, - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-strength-label") + " ", - HorizontalExpand = true, - HorizontalAlignment = HAlignment.Left, - }, - _stateSpinBox - } - }, - new Control - { - MinSize = new Vector2(0, 10), - }, - _drawLabel, - new Control - { - VerticalExpand = true, - }, - (_alarmControl = new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-alarm-control"), - FontColorOverride = Color.Red, - Align = Label.AlignMode.Center - }, - serviceManual - }, - Visible = false, - }), - } - }, - new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - MinSize = new Vector2(186, 0), - Children = - { - (_statusLabel = new Label - { - HorizontalAlignment = HAlignment.Center - }), - new Control - { - MinSize = new Vector2(0, 20) - }, - new PanelContainer - { - HorizontalAlignment = HAlignment.Center, - PanelOverride = back2, - Children = - { - new GridContainer - { - Columns = 3, - VSeparationOverride = 0, - HSeparationOverride = 0, - Children = - { - new Control {MinSize = imgSize}, - (_endCapTexture = Segment("end_cap")), - new Control {MinSize = imgSize}, - (_controlBoxTexture = Segment("control_box")), - (_fuelChamberTexture = Segment("fuel_chamber")), - new Control {MinSize = imgSize}, - new Control {MinSize = imgSize}, - (_powerBoxTexture = Segment("power_box")), - new Control {MinSize = imgSize}, - (_emitterStarboardTexture = Segment("emitter_starboard")), - (_emitterForeTexture = Segment("emitter_fore")), - (_emitterPortTexture = Segment("emitter_port")), - } - } - } - }, - (_scanButton = new Button - { - Text = Loc.GetString("particle-accelerator-control-menu-scan-parts-button"), - HorizontalAlignment = HAlignment.Center - }) - } - } - } - }, - new StripeBack - { - Children = - { - new Label - { - Margin = new Thickness(4, 4, 0, 4), - Text = Loc.GetString("particle-accelerator-control-menu-check-containment-field-warning"), - HorizontalAlignment = HAlignment.Center, - StyleClasses = {StyleBase.StyleClassLabelSubText}, - } - } - }, - new BoxContainer - { - Orientation = LayoutOrientation.Horizontal, - Margin = new Thickness(12, 0, 0, 0), - Children = - { - new Label - { - Text = Loc.GetString("particle-accelerator-control-menu-foo-bar-baz"), - StyleClasses = {StyleBase.StyleClassLabelSubText} - } - } - }, - } - }); - - _scanButton.OnPressed += args => _owner.SendScanPartsMessage(); - - _alarmControl.AnimationCompleted += s => - { - if (_shouldContinueAnimating) - { - _alarmControl.PlayAnimation(_alarmControlAnimation, "warningAnim"); - } - else - { - _alarmControl.Visible = false; - } - }; - - PASegmentControl Segment(string name) - { - return new(this, resourceCache, name); - } - - UpdateUI(false, false, false, false); - } - - private bool StrengthSpinBoxValid(int n) - { - return n >= 0 && n <= _maxStrength && !_blockSpinBox; - } - - private void PowerStateChanged(ValueChangedEventArgs e) - { - ParticleAcceleratorPowerState newState; - switch (e.Value) - { - case 0: - newState = ParticleAcceleratorPowerState.Standby; - break; - case 1: - newState = ParticleAcceleratorPowerState.Level0; - break; - case 2: - newState = ParticleAcceleratorPowerState.Level1; - break; - case 3: - newState = ParticleAcceleratorPowerState.Level2; - break; - case 4: - newState = ParticleAcceleratorPowerState.Level3; - break; - default: - return; - } - - _stateSpinBox.SetButtonDisabled(true); - _owner.SendPowerStateMessage(newState); - } - - protected override DragMode GetDragModeFor(Vector2 relativeMousePos) - { - return DragMode.Move; - } - - public void DataUpdate(ParticleAcceleratorUIState uiState) - { - _assembled = uiState.Assembled; - UpdateUI(uiState.Assembled, uiState.InterfaceBlock, uiState.Enabled, - uiState.WirePowerBlock); - _statusLabel.Text = Loc.GetString("particle-accelerator-control-menu-status-label", - ("status", Loc.GetString(uiState.Assembled ? "particle-accelerator-control-menu-status-operational" : - "particle-accelerator-control-menu-status-incomplete"))); - UpdatePowerState(uiState.State, uiState.Enabled, uiState.Assembled, - uiState.MaxLevel); - UpdatePreview(uiState); - _lastDraw = uiState.PowerDraw; - _lastReceive = uiState.PowerReceive; - } - - private void UpdatePowerState(ParticleAcceleratorPowerState state, bool enabled, bool assembled, - ParticleAcceleratorPowerState maxState) - { - _stateSpinBox.OverrideValue(state switch - { - ParticleAcceleratorPowerState.Standby => 0, - ParticleAcceleratorPowerState.Level0 => 1, - ParticleAcceleratorPowerState.Level1 => 2, - ParticleAcceleratorPowerState.Level2 => 3, - ParticleAcceleratorPowerState.Level3 => 4, - _ => 0 - }); - - - _maxStrength = maxState == ParticleAcceleratorPowerState.Level3 ? 4 : 3; - if (_maxStrength > 3 && enabled && assembled) - { - _shouldContinueAnimating = true; - if (!_alarmControl.HasRunningAnimation("warningAnim")) - _alarmControl.PlayAnimation(_alarmControlAnimation, "warningAnim"); - } - else - _shouldContinueAnimating = false; - } - - private void UpdateUI(bool assembled, bool blocked, bool enabled, bool powerBlock) - { - _onButton.Pressed = enabled; - _offButton.Pressed = !enabled; - - var cantUse = !assembled || blocked || powerBlock; - _onButton.Disabled = cantUse; - _offButton.Disabled = cantUse; - _scanButton.Disabled = blocked; - - var cantChangeLevel = !assembled || blocked; - _stateSpinBox.SetButtonDisabled(cantChangeLevel); - _blockSpinBox = cantChangeLevel; - } - - private void UpdatePreview(ParticleAcceleratorUIState updateMessage) - { - _endCapTexture.SetPowerState(updateMessage, updateMessage.EndCapExists); - _controlBoxTexture.SetPowerState(updateMessage, true); - _fuelChamberTexture.SetPowerState(updateMessage, updateMessage.FuelChamberExists); - _powerBoxTexture.SetPowerState(updateMessage, updateMessage.PowerBoxExists); - _emitterStarboardTexture.SetPowerState(updateMessage, updateMessage.EmitterStarboardExists); - _emitterForeTexture.SetPowerState(updateMessage, updateMessage.EmitterForeExists); - _emitterPortTexture.SetPowerState(updateMessage, updateMessage.EmitterPortExists); - } - - protected override void FrameUpdate(FrameEventArgs args) - { - base.FrameUpdate(args); - - if (!_assembled) - { - _drawLabel.Text = Loc.GetString("particle-accelerator-control-menu-draw-not-available"); - return; - } - - _time += args.DeltaSeconds; - - var watts = 0; - if (_lastDraw != 0) - { - var val = _drawNoiseGenerator.GetNoise(_time, 0f); - watts = (int) (_lastDraw + val * 5); - } - - _drawLabel.Text = Loc.GetString("particle-accelerator-control-menu-draw", - ("watts", $"{watts:##,##0}"), - ("lastReceive", $"{_lastReceive:##,##0}")); - } - - private sealed class PASegmentControl : Control - { - private readonly ParticleAcceleratorControlMenu _menu; - private readonly string _baseState; - private readonly TextureRect _base; - private readonly TextureRect _unlit; - private readonly RSI _rsi; - - public PASegmentControl(ParticleAcceleratorControlMenu menu, IResourceCache cache, string name) - { - _menu = menu; - _baseState = name; - _rsi = cache.GetResource($"/Textures/Structures/Power/Generation/PA/{name}.rsi").RSI; - - AddChild(_base = new TextureRect { Texture = _rsi[$"completed"].Frame0 }); - AddChild(_unlit = new TextureRect()); - MinSize = _rsi.Size; - } - - public void SetPowerState(ParticleAcceleratorUIState state, bool exists) - { - _base.ShaderOverride = exists ? null : _menu._greyScaleShader; - _base.ModulateSelfOverride = exists ? null : new Color(127, 127, 127); - - if (!state.Enabled || !exists) - { - _unlit.Visible = false; - return; - } - - _unlit.Visible = true; - - var suffix = state.State switch - { - ParticleAcceleratorPowerState.Standby => "_unlitp", - ParticleAcceleratorPowerState.Level0 => "_unlitp0", - ParticleAcceleratorPowerState.Level1 => "_unlitp1", - ParticleAcceleratorPowerState.Level2 => "_unlitp2", - ParticleAcceleratorPowerState.Level3 => "_unlitp3", - _ => "" - }; - - if (!_rsi.TryGetState(_baseState + suffix, out var rState)) - { - _unlit.Visible = false; - return; - } - - _unlit.Texture = rState.Frame0; - } - } - } -} diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml new file mode 100644 index 00000000000..63f15837068 --- /dev/null +++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml @@ -0,0 +1,74 @@ + + + + + + + + + + + + public sealed class ProximityBeeperSystem : EntitySystem { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly ProximityDetectionSystem _proximity = default!; [Dependency] private readonly BeeperSystem _beeper = default!; /// diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index c1efe0b3ddd..897f3791561 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -14,13 +14,10 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly ClothingSpeedModifierSystem _clothingSpeedModifier = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; [Dependency] private readonly ItemToggleSystem _toggle = default!; - [Dependency] private readonly SharedPowerCellSystem _powerCell = default!; public override void Initialize() { diff --git a/Content.Shared/Friends/Systems/PettableFriendSystem.cs b/Content.Shared/Friends/Systems/PettableFriendSystem.cs index 00a4ddd155c..6e41f4bdea9 100644 --- a/Content.Shared/Friends/Systems/PettableFriendSystem.cs +++ b/Content.Shared/Friends/Systems/PettableFriendSystem.cs @@ -32,23 +32,23 @@ private void OnUseInHand(Entity ent, ref UseInHandEvent { var (uid, comp) = ent; var user = args.User; - if (args.Handled || !_exceptionQuery.TryGetComponent(uid, out var exceptionComp)) - return; - - if (_useDelayQuery.TryGetComponent(uid, out var useDelay) && !_useDelay.TryResetDelay((uid, useDelay), true)) + if (args.Handled || !_exceptionQuery.TryComp(uid, out var exceptionComp)) return; var exception = (uid, exceptionComp); - if (_factionException.IsIgnored(exception, user)) + if (!_factionException.IsIgnored(exception, user)) { - _popup.PopupClient(Loc.GetString(comp.FailureString, ("target", uid)), user, user); + // you have made a new friend :) + _popup.PopupClient(Loc.GetString(comp.SuccessString, ("target", uid)), user, user); + _factionException.IgnoreEntity(exception, user); + args.Handled = true; return; } - // you have made a new friend :) - _popup.PopupClient(Loc.GetString(comp.SuccessString, ("target", uid)), user, user); - _factionException.IgnoreEntity(exception, user); - args.Handled = true; + if (_useDelayQuery.TryComp(uid, out var useDelay) && !_useDelay.TryResetDelay((uid, useDelay), true)) + return; + + _popup.PopupClient(Loc.GetString(comp.FailureString, ("target", uid)), user, user); } private void OnRehydrated(Entity ent, ref GotRehydratedEvent args) diff --git a/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs b/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs new file mode 100644 index 00000000000..6cdf167b295 --- /dev/null +++ b/Content.Shared/IconSmoothing/RandomIconSmoothComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.IconSmoothing; + +/// +/// Allow randomize StateBase of IconSmoothComponent for random visual variation +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class RandomIconSmoothComponent : Component +{ + /// + /// StateBase will be randomly selected from this list. Allows to randomize the visual. + /// + [DataField(required: true)] + public List RandomStates = new(); +} diff --git a/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs b/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs new file mode 100644 index 00000000000..5cb5299858c --- /dev/null +++ b/Content.Shared/IconSmoothing/SharedRandomIconSmoothSystem.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.IconSmoothing; + +public abstract class SharedRandomIconSmoothSystem : EntitySystem +{ +} +[Serializable, NetSerializable] +public enum RandomIconSmoothState : byte +{ + State +} diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index f563440af04..557c316e26d 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -43,7 +43,6 @@ public sealed class PullingSystem : EntitySystem [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly HeldSpeedModifierSystem _clothingMoveSpeed = default!; public override void Initialize() diff --git a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs index 1385219e473..09be1085058 100644 --- a/Content.Shared/Ninja/Systems/DashAbilitySystem.cs +++ b/Content.Shared/Ninja/Systems/DashAbilitySystem.cs @@ -18,7 +18,6 @@ public sealed class DashAbilitySystem : EntitySystem { [Dependency] private readonly ActionContainerSystem _actionContainer = default!; [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedChargesSystem _charges = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; diff --git a/Content.Shared/Physics/CollisionGroup.cs b/Content.Shared/Physics/CollisionGroup.cs index 90f5fe002b1..08b0412e887 100644 --- a/Content.Shared/Physics/CollisionGroup.cs +++ b/Content.Shared/Physics/CollisionGroup.cs @@ -69,7 +69,7 @@ public enum CollisionGroup // Tabletop machines, windoors, firelocks TabletopMachineMask = Impassable | HighImpassable | BlobImpassable, // Tabletop machines - TabletopMachineLayer = Opaque | HighImpassable | BulletImpassable, + TabletopMachineLayer = Opaque | BulletImpassable, // Airlocks, windoors, firelocks GlassAirlockLayer = HighImpassable | MidImpassable | BulletImpassable | InteractImpassable, diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs index b718c3a6900..1f6f2b6918f 100644 --- a/Content.Shared/Projectiles/SharedProjectileSystem.cs +++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs @@ -120,7 +120,10 @@ private void Embed(EntityUid uid, EntityUid target, EntityUid? user, EmbeddableP if (component.Offset != Vector2.Zero) { - _transform.SetLocalPosition(uid, xform.LocalPosition + xform.LocalRotation.RotateVec(component.Offset), + var rotation = xform.LocalRotation; + if (TryComp(uid, out var throwingAngleComp)) + rotation += throwingAngleComp.Angle; + _transform.SetLocalPosition(uid, xform.LocalPosition + rotation.RotateVec(component.Offset), xform); } diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index cfa553661a3..7b050273db6 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -239,14 +239,14 @@ public void AddChannelsExamine(HashSet channels, string? defaultChannel, { var msg = Loc.GetString("examine-headset-default-channel", ("prefix", SharedChatSystem.DefaultChannelPrefix), - ("channel", defaultChannel), + ("channel", proto.LocalizedName), ("color", proto.Color)); examineEvent.PushMarkup(msg); } if (HasComp(examineEvent.Examined)) { var msg = Loc.GetString("examine-encryption-default-channel", - ("channel", defaultChannel), + ("channel", proto.LocalizedName), ("color", proto.Color)); examineEvent.PushMarkup(msg); } diff --git a/Content.Shared/Radio/RadioChannelPrototype.cs b/Content.Shared/Radio/RadioChannelPrototype.cs index cc65f885375..166db0577ea 100644 --- a/Content.Shared/Radio/RadioChannelPrototype.cs +++ b/Content.Shared/Radio/RadioChannelPrototype.cs @@ -9,7 +9,7 @@ public sealed partial class RadioChannelPrototype : IPrototype /// Human-readable name for the channel. /// [DataField("name")] - public string Name { get; private set; } = string.Empty; + public LocId Name { get; private set; } = string.Empty; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedName => Loc.GetString(Name); diff --git a/Content.Shared/Storage/Components/ItemCounterComponent.cs b/Content.Shared/Storage/Components/ItemCounterComponent.cs index 890bc84e721..6a1444ebf62 100644 --- a/Content.Shared/Storage/Components/ItemCounterComponent.cs +++ b/Content.Shared/Storage/Components/ItemCounterComponent.cs @@ -1,4 +1,4 @@ -using Content.Shared.Storage.EntitySystems; +using Content.Shared.Storage.EntitySystems; using Content.Shared.Whitelist; namespace Content.Shared.Storage.Components diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 5c2e0080a69..4bb4192fc45 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -806,7 +806,11 @@ public void UpdateAppearance(Entity ent _appearance.SetData(uid, StorageVisuals.Capacity, capacity, appearance); _appearance.SetData(uid, StorageVisuals.Open, isOpen, appearance); _appearance.SetData(uid, SharedBagOpenVisuals.BagState, isOpen ? SharedBagState.Open : SharedBagState.Closed, appearance); - _appearance.SetData(uid, StackVisuals.Hide, !isOpen, appearance); + + // HideClosedStackVisuals true sets the StackVisuals.Hide to the open state of the storage. + // This is for containers that only show their contents when open. (e.g. donut boxes) + if (storage.HideStackVisualsWhenClosed) + _appearance.SetData(uid, StackVisuals.Hide, !isOpen, appearance); } /// diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index 2860f8dacfe..a666169f529 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -123,6 +123,14 @@ public sealed partial class StorageComponent : Component [DataField, ViewVariables(VVAccess.ReadWrite)] public StorageDefaultOrientation? DefaultStorageOrientation; + /// + /// If true, sets StackVisuals.Hide to true when the container is closed + /// Used in cases where there are sprites that are shown when the container is open but not + /// when it is closed + /// + [DataField] + public bool HideStackVisualsWhenClosed = true; + [Serializable, NetSerializable] public enum StorageUiKey : byte { diff --git a/Content.Shared/Throwing/ThrowAttemptEvent.cs b/Content.Shared/Throwing/ThrowAttemptEvent.cs index bf8cad6c746..dfb3dca5c7d 100644 --- a/Content.Shared/Throwing/ThrowAttemptEvent.cs +++ b/Content.Shared/Throwing/ThrowAttemptEvent.cs @@ -13,6 +13,14 @@ public ThrowAttemptEvent(EntityUid uid, EntityUid itemUid) public EntityUid ItemUid { get; } } + /// + /// Raised on the item entity that is thrown. + /// + /// The user that threw this entity. + /// Whether or not the throw should be cancelled. + [ByRefEvent] + public record struct ThrowItemAttemptEvent(EntityUid User, bool Cancelled = false); + /// /// Raised when we try to pushback an entity from throwing /// diff --git a/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs b/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs index 2800e3b34da..cbcadcd19f9 100644 --- a/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs +++ b/Content.Shared/Weapons/Melee/Events/AttemptMeleeEvent.cs @@ -4,4 +4,4 @@ namespace Content.Shared.Weapons.Melee.Events; /// Raised directed on a weapon when attempt a melee attack. /// [ByRefEvent] -public record struct AttemptMeleeEvent(bool Cancelled, string? Message); +public record struct AttemptMeleeEvent(EntityUid User, bool Cancelled = false, string? Message = null); diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 47648a07ad4..794237b145a 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -476,7 +476,7 @@ protected void MuzzleFlash(EntityUid gun, AmmoComponent component, Angle worldAn return; var ev = new MuzzleFlashEvent(GetNetEntity(gun), sprite, worldAngle); - CreateEffect(gun, ev, user); + CreateEffect(gun, ev, gun); } public void CauseImpulse(EntityCoordinates fromCoordinates, EntityCoordinates toCoordinates, EntityUid user, PhysicsComponent userPhysics) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2ba6a098e0e..10e5e716559 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,189 +1,4 @@ Entries: -- author: FungiFellow - changes: - - message: Truncheon now fits in SecBelt - type: Tweak - id: 6432 - time: '2024-04-24T13:43:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27281 -- author: pigeonpeas - changes: - - message: Adds a trash bag to the advanced cleaning module. - type: Add - id: 6433 - time: '2024-04-24T21:27:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27226 -- author: Beck Thompson - changes: - - message: Radio jammer now has 3 selectable power operating levels and a battery - level led indicator! - type: Tweak - id: 6434 - time: '2024-04-25T02:19:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25912 -- author: cooldolphin - changes: - - message: Three variants of glasses are now available in the loadout menu. - type: Add - id: 6435 - time: '2024-04-25T23:18:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27286 -- author: EmoGarbage404 - changes: - - message: Traitors now have the correct number of objectives. - type: Fix - - message: Declaring war now gives TC again. - type: Fix - - message: Latejoining antagonists will now properly exclude command and security - staff. - type: Fix - id: 6436 - time: '2024-04-26T00:25:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27319 -- author: Tayrtahn - changes: - - message: Fixed Bibles not healing. - type: Fix - - message: Fixed quick insert and area insert not working on ore/plant/trash bags. - type: Fix - id: 6437 - time: '2024-04-26T02:25:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27234 -- author: SkaldetSkaeg - changes: - - message: The handheld radio no longer plays a message spoken into it. - type: Tweak - id: 6438 - time: '2024-04-26T07:34:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27046 -- author: FungiFellow - changes: - - message: Added SecBelt whitelist to Sec webbing - type: Tweak - - message: Added more Ammo holders to SecBelt whitelist - type: Tweak - id: 6439 - time: '2024-04-26T07:44:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27303 -- author: IlyaElDunaev - changes: - - message: Ammonia heal blood loss in the Rat King - type: Add - id: 6440 - time: '2024-04-26T07:47:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26887 -- author: FungiFellow - changes: - - message: Added Quiver Recipe, go wild Robin Hood. - type: Add - id: 6441 - time: '2024-04-26T07:48:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27198 -- author: Boaz1111 - changes: - - message: Refactored Cluster's medbay, including cryo in the bottom left room - type: Tweak - id: 6442 - time: '2024-04-26T08:01:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27293 -- author: metalgearsloth - changes: - - message: Add predicted UI opening for storage and PDAs. - type: Add - id: 6443 - time: '2024-04-26T08:16:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27214 -- author: DrSmugleaf - changes: - - message: Fixed mobs that are able to pry doors not being able to do so by just - left clicking on them. - type: Fix - id: 6444 - time: '2024-04-26T12:17:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27349 -- author: WarMechanic - changes: - - message: Fixed unwielding overruling gun cycling - type: Fix - id: 6445 - time: '2024-04-26T12:31:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27307 -- author: wafehling - changes: - - message: You can now reopen the end of round summary window with F9. - type: Tweak - id: 6446 - time: '2024-04-26T12:39:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25884 -- author: DrSmugleaf - changes: - - message: Fixed the game never starting again if it fails to start once. - type: Fix - id: 6447 - time: '2024-04-26T13:02:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27359 -- author: Dutch-VanDerLinde - changes: - - message: Monkey reinforcement teleporters can now select between kobold and monkey - operative with a verb. - type: Tweak - - message: Monkey reinforcement teleporters have been renamed to "genetic ancestor - reinforcement teleporter". - type: Tweak - id: 6448 - time: '2024-04-26T13:06:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25982 -- author: fujiwaranao - changes: - - message: Players may now select the Creepy Long hairstyle and an appropriately - creepy dress to go with it can be found in theatrical performances crates. - type: Add - id: 6449 - time: '2024-04-26T18:51:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27333 -- author: Pgriha - changes: - - message: Increase limit of characters 10 -> 30. - type: Tweak - id: 6450 - time: '2024-04-26T22:58:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27361 -- author: AllenTheGreat - changes: - - message: The Agent ID card will no longer reset the selected job icon between - UI loads - type: Fix - id: 6451 - time: '2024-04-27T05:13:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27379 -- author: Slava0135 - changes: - - message: added cancer mouse! (for real this time) - type: Add - id: 6452 - time: '2024-04-27T05:46:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26768 -- author: EmoGarbage404 - changes: - - message: Added the welding gas mask to salvage equipment research. - type: Add - id: 6453 - time: '2024-04-27T05:47:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27108 -- author: VigersRay - changes: - - message: Angered NPC now can unbuckle, unpull and escape from containers. - type: Fix - id: 6454 - time: '2024-04-27T05:58:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26868 -- author: Lukasz825700516 - changes: - - message: Fixed undeconstructable objects showing deconstruct verb. - type: Fix - id: 6455 - time: '2024-04-27T06:30:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27387 - author: ps3moira changes: - message: Added Canes to the CuraDrobe and Cane Blades for Syndicate Librarians @@ -3805,3 +3620,179 @@ id: 6931 time: '2024-07-18T00:48:09.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30136 +- author: Sh18RW + changes: + - message: Moth can't eat boots with an item more + type: Fix + id: 6932 + time: '2024-07-18T22:34:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30019 +- author: portfiend + changes: + - message: Reptilians display correct mask sprites in character customization screen. + type: Fix + id: 6933 + time: '2024-07-18T22:36:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30095 +- author: Plykiya + changes: + - message: You no longer deal double damage to your first target when throwing an + item. + type: Fix + id: 6934 + time: '2024-07-19T01:08:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30115 +- author: deepdarkdepths + changes: + - message: Removed the description about geras in the Slime guidebook section. + type: Remove + id: 6935 + time: '2024-07-19T09:04:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30140 +- author: Blackern5000 + changes: + - message: Nuclear operatives are now able to purchase durable armor which is NOT + space-proof. + type: Add + id: 6936 + time: '2024-07-19T09:38:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29845 +- author: Plykiya, slarticodefast + changes: + - message: Explosive pens now correctly embed into their target. + type: Fix + id: 6937 + time: '2024-07-19T09:42:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30112 +- author: ThatOneEnby1337 + changes: + - message: News Reporters are now able to use markup tags in their reports without + bricking the PDAs of readers + type: Fix + id: 6938 + time: '2024-07-19T14:18:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30169 +- author: themias + changes: + - message: Mailing units are functional again + type: Fix + id: 6939 + time: '2024-07-20T02:31:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30174 +- author: Ghagliiarghii + changes: + - message: Nuclear Operatives' Reinforcements now have a PDA! + type: Tweak + id: 6940 + time: '2024-07-20T02:59:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28088 +- author: Plykiya + changes: + - message: Chameleon scarves now work again. + type: Fix + id: 6941 + time: '2024-07-20T03:00:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30156 +- author: Aidenkrz + changes: + - message: The mass hallucinations event no longer affects non-humanoids. + type: Fix + id: 6942 + time: '2024-07-20T05:53:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28748 +- author: buntobaggins + changes: + - message: Increased light radius on the Spationaut Hardsuit + type: Tweak + id: 6943 + time: '2024-07-21T03:29:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30049 +- author: EmoGarbage404 + changes: + - message: Fixed wires not updating UI on the Particle Accelerator. + type: Fix + id: 6944 + time: '2024-07-21T05:27:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28750 +- author: CroilBird + changes: + - message: 6-pack of cola displays correctly when not being handled + type: Fix + id: 6945 + time: '2024-07-21T05:49:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29309 +- author: metalgearsloth + changes: + - message: Fix muzzle flashes not tracking properly. + type: Fix + id: 6946 + time: '2024-07-21T06:09:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30163 +- author: metalgearsloth + changes: + - message: Fix being able to throw items while your cursor is off-screen. + type: Fix + id: 6947 + time: '2024-07-21T06:13:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30164 +- author: metalgearsloth + changes: + - message: Reset the scroll bar in the ghost warp menu whenever you search for a + role. Previously it remained at your previous position and you would have to + scroll up to see the first entry. + type: Tweak + id: 6948 + time: '2024-07-21T06:38:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30159 +- author: Blackern5000 + changes: + - message: The syndicate agent's cyborg weapons module now uses syndicate weaponry + rather than NT weaponry. + type: Tweak + id: 6949 + time: '2024-07-21T07:04:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26947 +- author: Winkarst-cpu + changes: + - message: Added ambience to the camera routers and telecommunication servers. + type: Add + - message: Now server's and router's ambience stops once they are unpowered. + type: Fix + id: 6950 + time: '2024-07-21T07:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30091 +- author: Scott Dimeling + changes: + - message: Reduced the number of botanists in some stations, for optimal _workflow_ + type: Tweak + id: 6951 + time: '2024-07-21T07:23:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29581 +- author: metalgearsloth + changes: + - message: Escape pods won't show up on shuttle map anymore. + type: Tweak + id: 6952 + time: '2024-07-21T07:23:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29758 +- author: IProduceWidgets + changes: + - message: an arabian lamp! + type: Add + id: 6953 + time: '2024-07-21T07:24:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27270 +- author: osjarw + changes: + - message: NPCs no longer get stuck trying to pick up anchored pipes. + type: Fix + id: 6954 + time: '2024-07-21T07:28:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30061 +- author: The Hands Leader - JoJo cat + changes: + - message: Train map is back into rotation + type: Tweak + id: 6955 + time: '2024-07-21T07:44:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30145 diff --git a/Resources/ConfigPresets/Corvax/mrp.toml b/Resources/ConfigPresets/Corvax/mrp.toml index a56a2591a93..6f6c5eb49c0 100644 --- a/Resources/ConfigPresets/Corvax/mrp.toml +++ b/Resources/ConfigPresets/Corvax/mrp.toml @@ -16,7 +16,7 @@ space_wind_max_velocity = 22.0 [shuttle] emergency_early_launch_allowed = true -arrivals_map = "/Maps/Misc/kosmoport.yml" +arrivals_map = "/Maps/Misc/corvax_terminal.yml" auto_call_time = 150 [vote] diff --git a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl index 6bc3ec50684..da3221e4f85 100644 --- a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl +++ b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl @@ -2,15 +2,21 @@ particle-accelerator-control-menu-on-button = On particle-accelerator-control-menu-off-button = Off particle-accelerator-control-menu-service-manual-reference = Refer to p.132 of service manual particle-accelerator-control-menu-device-version-label = Mark 2 Particle Accelerator -particle-accelerator-control-menu-power-label = Power: -particle-accelerator-control-menu-strength-label = Strength: -particle-accelerator-control-menu-alarm-control = PARTICLE STRENGTH - LIMITER FAILURE +particle-accelerator-control-menu-power-label = [bold]Power:[/bold] +particle-accelerator-control-menu-strength-label = [bold]Strength:[/bold] +particle-accelerator-control-menu-alarm-control-1 = [bold][color=red]PARTICLE STRENGTH[/bold][/color] +particle-accelerator-control-menu-alarm-control-2 = [bold][color=red]LIMITER FAILURE[/bold][/color] particle-accelerator-control-menu-scan-parts-button = Scan Parts particle-accelerator-control-menu-check-containment-field-warning = Ensure containment field is active before operation particle-accelerator-control-menu-foo-bar-baz = FOO-BAR-BAZ -particle-accelerator-control-menu-status-label = Status: {$status} -particle-accelerator-control-menu-status-operational = Operational -particle-accelerator-control-menu-status-incomplete = Incomplete -particle-accelerator-control-menu-draw-not-available = Draw: N/A -particle-accelerator-control-menu-draw = Draw: {$watts}/{$lastReceive} \ No newline at end of file +particle-accelerator-control-menu-status-label = [bold]Status:[/bold] +particle-accelerator-control-menu-status-unknown = [font="Monospace"][color=red]Unknown[/color][/bold] +particle-accelerator-control-menu-status-operational = [font="Monospace"][color=green]Operational[/color][/bold] +particle-accelerator-control-menu-status-incomplete = [font="Monospace"][color=red]Incomplete[/color][/bold] +particle-accelerator-control-menu-draw = [bold]Draw:[/bold] +particle-accelerator-control-menu-draw-value = [font="Monospace"]{$watts}/{$lastReceive}[/font] +particle-accelerator-control-menu-draw-not-available = [font="Monospace"][color=gray]N/A[/color][/font] + +particle-accelerator-radio-message-on = PA power has been switched on. +particle-accelerator-radio-message-off = PA power has been switched off. +particle-accelerator-radio-message-num = PA strength has been set to level {$level}. diff --git a/Resources/Locale/en-US/prayers/prayers.ftl b/Resources/Locale/en-US/prayers/prayers.ftl index 532ba4954f0..313de6322fd 100644 --- a/Resources/Locale/en-US/prayers/prayers.ftl +++ b/Resources/Locale/en-US/prayers/prayers.ftl @@ -1,16 +1,19 @@ prayer-verbs-subtle-message = Subtle Message prayer-verbs-pray = Pray prayer-verbs-call = Call +prayer-verbs-rub = Rub prayer-chat-notify-pray = PRAYER prayer-chat-notify-honkmother = HONKMOTHER prayer-chat-notify-centcom = CENTCOM prayer-chat-notify-syndicate = SYNDICATE +prayer-chat-notify-lamp = LAMP prayer-popup-subtle-default = You hear a voice in your head... prayer-popup-notify-honkmother-sent = You left a voicemail message for the Honkmother... prayer-popup-notify-centcom-sent = You left a voicemail message for Central Command... prayer-popup-notify-syndicate-sent = You left a voicemail message for Syndicate High Command... +prayer-popup-notify-lamp-sent = Your thoughts seem to echo... prayer-popup-notify-pray-sent = Your message has been sent to the gods... prayer-popup-notify-pray-locked = You don't feel worthy enough... prayer-popup-notify-pray-ui-message = Message diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl index 4501e009511..a8ec9b10d8b 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl @@ -33,6 +33,8 @@ ent-ClothingBackpackChameleonFill = { ent-ClothingBackpackChameleon } .desc = { ent-ClothingBackpackChameleon.desc } ent-ClothingBackpackDuffelSyndicateEVABundle = syndicate EVA bundle .desc = Contains the Syndicate approved EVA suit. +ent-ClothingBackpackDuffelSyndicateRaidBundle = syndicate raid suit bundle + .desc = Contains the Syndicate's durable raid armor suit. ent-ClothingBackpackDuffelSyndicateHardsuitBundle = syndicate hardsuit bundle .desc = Contains the Syndicate's signature blood red hardsuit. ent-ClothingBackpackDuffelSyndicateEliteHardsuitBundle = syndicate elite hardsuit bundle diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl index bda84f5cada..aae7a2bdddf 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl @@ -1,18 +1,36 @@ +ent-ClothingNeckAtharaPin = starry sky pin + .desc = The pin of starry sky. ent-ClothingNeckUSSPPin = USSP pin .desc = The pin of United Soviet Socialist Planet. +ent-ClothingNeckCorvaxPin = cluster pin + .desc = The pin of cluster. ent-ClothingNeckDonkPin = Donk pin .desc = The pin of corporation Donk Pocket. ent-ClothingNeckEarthPin = Earth pin .desc = The pin of United Earth Government. +ent-ClothingNeckEchoPin = comet pin + .desc = The pin of comet. +ent-ClothingNeckElysiumPin = dark planet pin + .desc = The pin of dark planet. ent-ClothingNeckLogistikaPin = logistika pin .desc = The pin of corporation Kosmologistika. +ent-ClothingNeckMainPin = rocket pin + .desc = The pin of rocket. ent-ClothingNeckDeForestPin = DeForest pin .desc = The pin of corporation DeForest. ent-ClothingNeckNakamuraPin = Nakamura pin .desc = The pin of corporation Nakamura engineering. ent-ClothingNeckNanoTrasenPin = NanoTrasen pin .desc = The pin of corporation NanoTrasen. +ent-ClothingNeckNebulaPin = nebula pin + .desc = The pin of nebula. +ent-ClothingNeckNovaPin = ring planet pin + .desc = The pin of ring planet. ent-ClothingNeckSyndicakePin = Syndicake pin .desc = The pin of Syndicakes, on backside have a little numbers "2559". +ent-ClothingNeckSolarisPin = space cheese pin + .desc = The pin of space cheese. ent-ClothingNeckVitezstviPin = Vitezstvi pin .desc = The pin of corporation Vitezstvi. +ent-ClothingNeckWhiteListPin = quasar pin + .desc = The pin of quasar. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl index 1fb5e78748d..9e8d4c7ed4b 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/helmets.ftl @@ -40,6 +40,8 @@ ent-ClothingHeadHelmetERTEngineer = ERT engineer helmet .desc = An in-atmosphere helmet worn by engineering members of the Nanotrasen Emergency Response Team. Has orange highlights. ent-ClothingHeadHelmetERTJanitor = ERT janitor helmet .desc = An in-atmosphere helmet worn by janitorial members of the Nanotrasen Emergency Response Team. Has dark purple highlights. +ent-ClothingHeadHelmetRaid = syndicate raid helmet + .desc = An armored helmet for use with the syndicate raid suit. Very stylish. ent-ClothingHeadHelmetBone = bone helmet .desc = Cool-looking helmet made of skull of your enemies. ent-ClothingHeadHelmetPodWars = ironclad II helmet diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl index 9c65d555cb2..99ba03fb031 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl @@ -9,6 +9,8 @@ ent-ClothingOuterArmorBulletproof = bulletproof vest .desc = A Type III heavy bulletproof vest that excels in protecting the wearer against traditional projectile weaponry and explosives to a minor extent. ent-ClothingOuterArmorReflective = reflective vest .desc = An armored vest with advanced shielding to protect against energy weapons. +ent-ClothingOuterArmorRaid = syndicate raid suit + .desc = A somewhat flexible and well-armored suit with a powerful shoulder mounted flashlight manufactured in the Gorlex Marauder's iconic blood-red color scheme, it does not protect it's wearer from space. ent-ClothingOuterArmorCult = acolyte armor .desc = An evil-looking piece of cult armor, made of bones. ent-ClothingOuterArmorHeavy = heavy armor suit diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/arabianlamp.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/arabianlamp.ftl new file mode 100644 index 00000000000..75169bee5cc --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/arabianlamp.ftl @@ -0,0 +1,2 @@ +ent-ArabianLamp = lamp + .desc = Why the heck won't this piece of junk open!? diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl index 28fff08435c..d150089cf44 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl @@ -2,6 +2,8 @@ ent-BaseWeaponPistol = BasePistol .desc = A rooty tooty point and shooty. ent-WeaponPistolViper = viper .desc = A small, easily concealable, but somewhat underpowered gun. Retrofitted with a fully automatic receiver. Uses .35 auto ammo. +ent-WeaponPistolEchis = echis + .desc = A viper for use by cyborgs. Creates .35 ammo on the fly from an internal ammo fabricator, which slowly self-charges. ent-WeaponPistolCobra = cobra .desc = A rugged, robust operator handgun with inbuilt silencer. Uses .25 caseless ammo. ent-WeaponPistolMk58 = mk 58 diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl index e4f5f81b8dc..7d258f4fd8e 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl @@ -1,5 +1,7 @@ ent-EnergySword = energy sword .desc = A very loud & dangerous sword with a beam made of pure, concentrated plasma. Cuts through unarmored targets like butter. +ent-EnergyDaggerLoud = energy dagger + .desc = A not as loud and dangerous dagger with a beam made of pure, concentrated plasma. This one is completely undisguised. ent-EnergyDagger = pen .desc = A dark ink pen. .suffix = E-Dagger diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl index 88e2e076c65..3244e7535e7 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl @@ -1,2 +1,4 @@ ent-AtmosDeviceFanTiny = tiny fan .desc = A tiny fan, releasing a thin gust of air. +ent-AtmosDeviceFanDirectional = directional fan + .desc = A thin fan, stopping the movement of gases across it. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl index 0f95786a6f0..35c14a88174 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl @@ -52,22 +52,26 @@ ent-SignDirectionalWash = washroom sign .desc = A direction sign, pointing to the way to a washroom. ent-SignAi = ai sign .desc = A sign, indicating an AI is present. +ent-SignAiUpload = ai upload sign + .desc = A sign, indicating an AI is present. ent-SignArcade = arcade sign .desc = A sign indicating the arcade. ent-SignArmory = armory sign .desc = A sign indicating the armory. ent-SignToolStorage = tool storage sign .desc = A sign indicating the tool storage room. -ent-SignAnomaly = xenoarchaeology lab sign +ent-SignAnomaly = xenoarcheology lab sign .desc = A sign indicating the xenoarchaeology lab. ent-SignAnomaly2 = anomaly lab sign .desc = A sign indicating the anomalous research lab. ent-SignAtmos = atmos sign .desc = A sign indicating the atmospherics area. -ent-SignAtmosMinsky = atmospherics sign - .desc = A sign indicating the atmospherics area. ent-SignBar = bar sign .desc = A sign indicating the bar. +ent-SignKitchen = kitchen sign + .desc = The heart of the home. And disease. +ent-SignTheater = theater sign + .desc = Would it even be Space Station without drama? ent-SignBarbershop = barbershop sign .desc = A sign indicating the barbershop. ent-SignBio = bio sign @@ -86,24 +90,22 @@ ent-SignChapel = chapel sign .desc = A sign indicating the chapel. ent-SignChem = chemistry sign .desc = A sign indicating the chemistry lab. -ent-SignChemistry1 = chemistry sign - .desc = A sign indicating the chemistry lab. -ent-SignChemistry2 = chemistry sign - .desc = A sign indicating the chemistry lab. ent-SignCloning = cloning sign .desc = A sign indicating the cloning lab. ent-SignConference = conference room sign - .desc = A sign indicating the conference room. -ent-SignCourt = court sign - .desc = A sign labelling the courtroom. + .desc = Where work happens. +ent-SignCryo = cryosleep sign + .desc = Just like that? You're gonna chicken out? ent-SignDisposalSpace = disposal sign .desc = A sign indicating a disposal area. ent-SignDoors = doors sign .desc = A sign indicating doors. -ent-SignDrones = drones sign - .desc = A sign indicating drones. -ent-SignEngine = engine sign - .desc = A sign indicating the engine room. +ent-SignRestroom = restroom sign + .desc = A sign indicating where you go to... What do you do here again? +ent-SignMaterials = materials sign + .desc = An omen to the juicy vault of steel, glass, and plastic that lays before you. +ent-SignEngine = power sign + .desc = Where the powa happens. ent-SignEngineering = engineering sign .desc = A sign indicating the engineering area. ent-SignEscapePods = escape pods sign @@ -119,29 +121,23 @@ ent-SignFire = fire sign ent-SignGravity = gravity sign .desc = A sign indicating the gravity generator. ent-SignHead = head sign - .desc = A sign with a hat on it. + .desc = An official sign indicating the dwellings of a Nanotrasen-certified head of department. ent-SignHydro1 = hydro sign .desc = A sign indicating a hydroponics area. -ent-SignHydro2 = hydro sign - .desc = A sign indicating a hydroponics area. -ent-SignHydro3 = hydro sign - .desc = A sign indicating a hydroponics area. ent-SignInterrogation = interrogation sign .desc = A sign indicating an interrogation room. ent-SignJanitor = janitor sign .desc = A sign labelling an area where the janitor works. ent-SignLaundromat = laundromat sign .desc = A sign indicating the laundromat. -ent-SignLawyer = lawyer sign - .desc = A sign labelling an area where the Lawyers work. +ent-SignLawyer = law sign + .desc = A sign indicating the presence of the (typically absent) rule of law. ent-SignLibrary = library sign .desc = A sign indicating the library. ent-SignMail = mail sign .desc = A sign indicating mail. ent-SignMedical = medbay sign .desc = A sign indicating the medical bay. -ent-SignMinerDock = miner dock sign - .desc = A sign indicating the miner dock. ent-SignMorgue = morgue sign .desc = A sign indicating the morgue. ent-SignNews = news sign @@ -162,14 +158,12 @@ ent-SignSalvage = salvage sign .desc = A sign indicating the salvage area. ent-SignScience = science sign .desc = A sign indicating the science area. -ent-SignScience1 = science sign - .desc = A sign indicating the science area. -ent-SignScience2 = science sign - .desc = A sign indicating the science area. -ent-SignShield = shield sign - .desc = A sign with a shield. -ent-SignShipDock = docking sign - .desc = A sign indicating the ship docking area. +ent-SignServer = server sign + .desc = Ever heard of Big Data? This is it, chump. The biggest. +ent-SignCans = canisters sign + .desc = A sign indicating the auspicious presence of gas canisters. +ent-SignShipDock = evac sign + .desc = A sign indicating the where the evac shuttle will (likely) arrive. ent-SignSpace = space sign .desc = A sign warning that the area ahead is nothing but cold, empty space. ent-SignSurgery = surgery sign @@ -178,8 +172,8 @@ ent-SignTelecomms = telecomms sign .desc = A sign indicating the telecommunications room. ent-SignToxins = toxins sign .desc = A sign indicating the toxin lab. -ent-SignToxins2 = toxins sign - .desc = A sign indicating the toxin lab. +ent-SignVault = vault sign + .desc = A sign indicating the vault. Who knows what secrets lie inside? ent-SignVirology = virology sign .desc = A sign indicating the virology lab. ent-SignCorrosives = corrosives warning sign @@ -212,12 +206,8 @@ ent-SignRadiation = radiation warning sign .desc = A sign indicating an ionizing radiation hazard. ent-SignXenobio = xenobio sign .desc = A sign indicating the xenobiology lab. -ent-SignXenobio2 = xenobio sign - .desc = A sign indicating the xenobiology lab. -ent-SignXenolab = xenolab sign - .desc = A sign indicating the xenobiology lab. ent-SignZomlab = zombie lab sign - .desc = A sign indicating the zombie lab. + .desc = The final remains of a shut-down Nanotrasen research project that aimed to harness the powers of Romerol. I wonder how that went... ent-SignSecureMedRed = red secure sign .desc = A sign indicating that the area ahead is a secure area. ent-SignSecureSmall = small secure sign diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 2598970cefb..8edbde9bdc9 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -318,6 +318,9 @@ uplink-hardsuit-carp-desc = Looks like an ordinary carp suit, except fully space uplink-hardsuit-syndie-name = Syndicate Hardsuit uplink-hardsuit-syndie-desc = The Syndicate's well known armored blood red hardsuit, capable of space walks and bullet resistant. +uplink-syndie-raid-name = Syndicate Raid Suit +uplink-syndie-raid-desc = A very durable and reasonably flexible suit of blood-red armor, reinforced against all common forms of damage but not capable of space walks. Comes with a sick helmet. + uplink-hardsuit-syndieelite-name = Syndicate Elite Hardsuit uplink-hardsuit-syndieelite-desc = An elite version of the blood-red hardsuit, with improved mobility and fireproofing. Property of Gorlex Marauders. diff --git a/Resources/Locale/ru-RU/administration/commands/aghost.ftl b/Resources/Locale/ru-RU/administration/commands/aghost.ftl index f4f15c2fabf..811231dcf16 100644 --- a/Resources/Locale/ru-RU/administration/commands/aghost.ftl +++ b/Resources/Locale/ru-RU/administration/commands/aghost.ftl @@ -1,3 +1,3 @@ -aghost-description = Делает вас призраком-админом. +cmd-aghost-desc = Makes you or others an admin ghost. aghost-no-mind-self = Вы не можете стать призраком! aghost-no-mind-other = Эта сущность не может стать призраком! diff --git a/Resources/Locale/ru-RU/administration/commands/babyjail.ftl b/Resources/Locale/ru-RU/administration/commands/babyjail.ftl new file mode 100644 index 00000000000..49515de3a5c --- /dev/null +++ b/Resources/Locale/ru-RU/administration/commands/babyjail.ftl @@ -0,0 +1,16 @@ +cmd-babyjail-desc = Toggles the baby jail, which enables stricter restrictions on who's allowed to join the server. +cmd-babyjail-help = Usage: babyjail +babyjail-command-enabled = Baby jail has been enabled. +babyjail-command-disabled = Baby jail has been disabled. +cmd-babyjail_show_reason-desc = Toggles whether or not to show connecting clients the reason why the baby jail blocked them from joining. +cmd-babyjail_show_reason-help = Usage: babyjail_show_reason +babyjail-command-show-reason-enabled = The baby jail will now show a reason to users it blocks from connecting. +babyjail-command-show-reason-disabled = The baby jail will no longer show a reason to users it blocks from connecting. +cmd-babyjail_max_account_age-desc = Gets or sets the maximum account age in minutes that an account can have to be allowed to connect with the baby jail enabled. +cmd-babyjail_max_account_age-help = Usage: babyjail_max_account_age +babyjail-command-max-account-age-is = The maximum account age for the baby jail is { $minutes } minutes. +babyjail-command-max-account-age-set = Set the maximum account age for the baby jail to { $minutes } minutes. +cmd-babyjail_max_overall_minutes-desc = Gets or sets the maximum overall playtime in minutes that an account can have to be allowed to connect with the baby jail enabled. +cmd-babyjail_max_overall_minutes-help = Usage: babyjail_max_overall_minutes +babyjail-command-max-overall-minutes-is = The maximum overall playtime for the baby jail is { $minutes } minutes. +babyjail-command-max-overall-minutes-set = Set the maximum overall playtime for the baby jail to { $minutes } minutes. diff --git a/Resources/Locale/ru-RU/administration/ui/admin-menu-window.ftl b/Resources/Locale/ru-RU/administration/ui/admin-menu-window.ftl index e12edbebd94..adb6fc5bc31 100644 --- a/Resources/Locale/ru-RU/administration/ui/admin-menu-window.ftl +++ b/Resources/Locale/ru-RU/administration/ui/admin-menu-window.ftl @@ -7,5 +7,6 @@ admin-menu-atmos-tab = Атмос admin-menu-round-tab = Раунд admin-menu-server-tab = Сервер admin-menu-panic-bunker-tab = Бункер +admin-menu-baby-jail-tab = Baby Jail admin-menu-players-tab = Игроки admin-menu-objects-tab = Объекты diff --git a/Resources/Locale/ru-RU/administration/ui/tabs/babyjail-tab.ftl b/Resources/Locale/ru-RU/administration/ui/tabs/babyjail-tab.ftl new file mode 100644 index 00000000000..eac90b467c3 --- /dev/null +++ b/Resources/Locale/ru-RU/administration/ui/tabs/babyjail-tab.ftl @@ -0,0 +1,11 @@ +admin-ui-baby-jail-window-title = Baby Jail +admin-ui-baby-jail-enabled = Baby Jail Enabled +admin-ui-baby-jail-disabled = Baby Jail Disabled +admin-ui-baby-jail-tooltip = The baby jail restricts players from joining if their account is too old or they do have too much overall playtime on this server. +admin-ui-baby-jail-show-reason = Show Reason +admin-ui-baby-jail-show-reason-tooltip = Show the user why they were blocked from connecting by the baby jail. +admin-ui-baby-jail-max-account-age = Max. Account Age +admin-ui-baby-jail-max-overall-minutes = Max. Overall Playtime +admin-ui-baby-jail-is-enabled = [font size=20][bold]The baby jail is currently enabled.[/bold][/font] +admin-ui-baby-jail-enabled-admin-alert = The baby jail has been enabled. +admin-ui-baby-jail-disabled-admin-alert = The baby jail has been disabled. diff --git a/Resources/Locale/ru-RU/backmen/BlobSpeak.ftl b/Resources/Locale/ru-RU/backmen/BlobSpeak.ftl index 30d9af8803f..b8a8335cc5b 100644 --- a/Resources/Locale/ru-RU/backmen/BlobSpeak.ftl +++ b/Resources/Locale/ru-RU/backmen/BlobSpeak.ftl @@ -1,3 +1,3 @@  -speak-vv-blob = Блоб -speak-vv-xeno = Ксено +speak-vv-blob = блоб +speak-vv-xeno = ксено diff --git a/Resources/Locale/ru-RU/backmen/radio.ftl b/Resources/Locale/ru-RU/backmen/radio.ftl new file mode 100644 index 00000000000..5174f7a70bb --- /dev/null +++ b/Resources/Locale/ru-RU/backmen/radio.ftl @@ -0,0 +1,32 @@ + +bkm-radio-group0 = Группа 0 +bkm-radio-group1 = Группа 1 +bkm-radio-group2 = Группа 2 +bkm-radio-group3 = Группа 3 +bkm-radio-group4 = Группа 4 +bkm-radio-group5 = Группа 5 +bkm-radio-group6 = Группа 6 +bkm-radio-group7 = Группа 7 +bkm-radio-group8 = Группа 8 +bkm-radio-group9 = Группа 9 + + + +bkm-radio-csh = CSH +bkm-radio-fleet = Флот + +bkm-radio-flesh = Культ Плоти + +bkm-radio-UEG = ОПЗ + +bkm-radio-AID = ИИ Дроны +bkm-radio-AIMALF = МАЛФ + +bkm-radio-CentComOBR = МТФ +bkm-radio-CentComOBREPS11 = Эпсилон +bkm-radio-CentComOBRSR6 = Сиерра + + +bkm-radio-Rebels = Повстанцы +bkm-radio-CentComDeath = Эскадрон +bkm-radio-Hivemind = Улей diff --git a/Resources/Locale/ru-RU/connection-messages.ftl b/Resources/Locale/ru-RU/connection-messages.ftl index 251571cfdfc..9766436294e 100644 --- a/Resources/Locale/ru-RU/connection-messages.ftl +++ b/Resources/Locale/ru-RU/connection-messages.ftl @@ -40,3 +40,7 @@ panic-bunker-account-reason-overall = [few] минуты *[other] минут }. +baby-jail-account-denied = This server is a newbie server, intended for new players and those who want to help them. New connections by accounts that are too old or are not on a whitelist are not accepted. Check out some other servers and see everything Space Station 14 has to offer. Have fun! +baby-jail-account-denied-reason = This server is a newbie server, intended for new players and those who want to help them. New connections by accounts that are too old or are not on a whitelist are not accepted. Check out some other servers and see everything Space Station 14 has to offer. Have fun! Reason: "{ $reason }" +baby-jail-account-reason-account = Your Space Station 14 account is too old. It must be younger than { $minutes } minutes +baby-jail-account-reason-overall = Your overall playtime on the server must be younger than { $minutes } $minutes diff --git a/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl b/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl new file mode 100644 index 00000000000..0c10a562e4f --- /dev/null +++ b/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl @@ -0,0 +1,1028 @@ +book-expensive-crystal-contents = + Блюспейс кристаллы состоят из атомов, которые на Земле не встречались. Они определённо являются веществом, а не антивеществом. Элемент решено было назвать Космецием. + Чистые кристаллы космеция встречаются крайне-крайне-крайне редко и стоят целое состояние. Чаще всего встречаются кристаллы сложного состава, а именно космеций с оксидом меди(II), космеций с оксидом кремния и железом. Блюспейс кристаллы имеют сингонию, которая более нигде не встречается. Анизотропные. Имеют одно кристаллографическое направление, по которому происходит наиболее быстрая обработка, в частности раскол, слом и крошение. + Также известно, что космеций обладает карбидообразующими свойствами. + + + В природе встречается и иная форма природных кристаллов космеция, а именно космеций с примесью оксида алюминия и хрома. + Данный тип кристаллов образовывается в зонах активности аномалий, после действия редспейс разломов, а также на астероидах и обломках, претерпевших контакт с редспейс-пространством. + Они также анизотропны, и обладают такой же незнакомой земным материалам сингонией, но при этом имеют целых два направления удобного слома. + + + Истинный потенциал Блюспейс кристалла проявляется в его связанной работой с твёрдой плазмой. Плазма при распаде выделяет колоссальное количество энергии, которую способен поглотить и сохранить космеций. Далее он сможет постепенно отдавать эту энергию в специальные устройства. Но истинной уникальностью является то, что блюспейс кристалл способен стать основой для мощного квантового осциллятора, способного взаимодействовать напрямую с волнами вероятности де Бройля. + Этот эффект используется в модулях БС скачков для двигателей космических кораблей. + Отдельными свойствами выделяются кристаллы, измельчённые в мелкодисперсный порошок. + При взаимодействия такого порошка с углеродными материалами происходит образование карбида космеция. Данный материал приводит к невероятному квантово-механическому явлению: Неопределённость Гейзенберга, указывающая на сильную неточность координат, начинает играть определяющую роль и невероятно усиливается, ибо предмет, созданный с использованием карбида космеция теряет чёткие внутренние границы, при относительной стабильности внешних. Таким образом можно создавать, скажем, рюкзаки или мензурки, чей внутренний объём сильно превышает объём внешний. + Качество данных уникальных свойств тем выше, чем ниже примесей в кристалле. При этом у космеция с примесью оксида меди самые худшие свойства, а у чистого космеция самые лучшие. + + + Космеций также способен через неопределённость Гейзенберга влиять на волны вероятности де Бройля. Но в отличии от блюспейс кристаллов, редспейс не выборочно либо изменяют пространство, либо проводят колебания квантовых волн, а делают это одновременно. + Таким образом при накоплении в редспейс кристалле энергии, открывается возможность колебания волн вероятности для мгновенного перемещения некого объекта к кристаллу из более-менее конкретной выбранной точки. При этом данное действие способно разрушить кристалл, распылив его атомы в произвольной области пространства. + Из-за этой, по факту, телепортации редспейс кристаллы прозвали телепортационными кристаллами, или же телекристаллами. + +book-clones-contents = + По началу отношение к клонированию и к самим клонам было крайне отрицательным, немало людей страдали бионализмом (страх перед клонированными людьми). Они отказывались признавать клонов не то, что за личностей, а за живых существ как таковых. Некоторые принимали их за расходный материал, другие – за чудовищное надругательство над законами природы. Впоследствии это выливалось в гонения клонов, их убийствами и погромами их жилищ. Большими проблемами также стали вопросы о юридических правах клонов, их интеграции в общество, осмысления этичности самого процесса клонирования. + + + Апофеозом всего этого стал “Туртельский Кризис” []Данные удалены[] года, когда несколько десятков клонов начали забастовку на малой научной станции под названием “Туртель”, находившейся на орбите Марса и занимавшейся секретными разработками компании NanoTrasen (именно поэтому на ней было довольно большое количество клонов-экипажа), работа станции была саботирована, а всему не клонированному персоналу было предложено эвакуироваться с неё. После того как все желающие эвакуировались, были и те, кто не являясь клонами, решили всё-таки остаться на станции тем самым выказав поддержку идеям клонов. Клоны и им сочувствующие смогли настроить аппаратуру станции на одну известную медиа-частоту и обратились по ней со своими требованиями, главным из которых было – предоставления всем клонам на территориях ОПЗ и объектах NanoTrasen равных с обычными гуманоидами прав. В результате долгих и не очень продуктивных переговоров, NanoTrasen не нашла ничего лучше, чем послать на станцию отряд зачистки, прибыв на место они устроили настоящую кровавую баню и когда уже подходили к мостику, были взорваны вместе со всей станцией одним из клонов-инженеров, который смог активировать ядерную боеголовку. Когда все произошедшие стало достоянием широкой публики репутации и активам NanoTrasen был нанесен огромный удар, а на многих планетах и станциях прошли митинги и забастовки в поддержку клонов. Массовые беспорядки нарастали, а СМИ лишь ещё больше подливали масло в огонь, так что ОПЗ приняла “Хартию Прав Клонов” и потребовала того же от NanoTrasen, что последние поспешили и сделать. + + + Примерно в те же времена был основан “Комитет по защите прав клонов” (КЗПК), который и по сей день занимается защитой прав клонов и предоставлением им юридических услуг. + +book-dam-contents = + Получение энергии из антиматерии – дело не хитрое, но опасное. Оно основано на эффекте взаимной аннигиляции материи и антиматерии при соприкосновении. При этом вся масса материи и антиматерии преобразуется в чистейшую световую энергию, то есть формирует мощнейшую фотонную вспышку. + + + Контейнеры с топливом представляют собой магнитные ловушки, где граммы антиматерии парят в полном вакууме, не соприкасаясь со стенками контейнера. + + + Двигатель Антиматерии состоят из ядер и стенок. Ядра являются реакционными камерами, где соприкасаются материя и антиматерия. Для простоты используют Гелий и Антигелий. В ядрах установлены мощнейшие преобразователи, способные улавливать как световую, так и тепловую энергию. Стенки ДАМ выполнены из взрывостойкой, сверхпрочной, плохо проводящей тепло композитов и покрытий с парамагнитными свойствами. + + + Важнейшей частью ДАМ является его контроллер. Это сложное устройство состоит из набора трубок и магнитных бесконтактных транспортёров, которые призваны безопасно и дозированно перенести антиматерию в ядро. Также на контроллере присутствует консоль, показывающая количество оставшегося топлива по показанию сверхточных весов, и система настройки впрыска. Двух условных единиц антиматерии хватает для полной работоспособности одного ядра ДАМ. При этом если превысить это значение, то преобразователи энергии начнут нагреваться и перегреваться. Со временим тепло может проникнуть в камеры с гелием. Увеличение давления выше критической точки спровоцирует нарушение целостности ДАМ, это выведет из строя магнитные системы, под действием гравитации или иных внешних сил антиматерия коснётся любого вещества в помещении и спровоцирует бесконтрольный уничтожающий взрыв. + +book-faks-contents = + Схема работы Факса проста. Оператор пишет текст на бумаге нужного стандартного формата, ставит печать и отправляет в приёмное окно устройства. В области приёма располагается подвижная планка, перемещающаяся вдоль листа. На планке закреплён распределитель излучения, а над ним находится несколько источников фиолетового лазера низкой энергии. Фиолетовый лазер был выбран по причине наиболее благоприятного выполнения критерия Релея и повышения разрешающей способности. Распределитель превращает гауссовы пучки лазера в лазерную линию, которая проходит по всему листу. Помимо распределителя в нижней части планки располагаются датчики оптического излучения. Лучи света отражаются от бумаги и чернил и попадают в датчики. Датчики анализируют отражённые лучи и записывают в память факса показания, что и является сканированием текста. Особенность представляет место для печатей, ибо печати глав используют не стандартные чернила, а чернила с определённым процентом примеси вполне конкретных металлических и жидко-органических добавок. Поэтому у факсов присутствует система Рентгеновской фотоэлектронной спектроскопии, для определения процентного атомного состава с поверхности печати. Все проценты также заносятся в память. + + Все данные в памяти проходят процедуру шифрования, а затем разбиваются на два потока данных по особому алгоритму, после чего оба потока получают код протокола разбиение на потоки данных, проходят процедуру расчёта и присваивания кода исправления ошибок и скремблирования, также каждому потоку данных прибавляется кодированный адрес станции и адрес конкретного факса на станции. Наконец эти потоки данных при помощи метода импульсного биполярного кодирования отправляются по системе дальней связи в пункт назначения. Все антенны дальней связи принимают сообщение с факса и считывают адрес станции, сравнивают со своим адресом и отбраковывают пакеты данных, если он не подходит, или принимают всю остальную посылку, если адрес совпадает. Далее специально выделенный ретранслятор отфильтровывает адрес станции и начинает рассылку на все факсы станции. Приёмное устройство факсов в свою очередь аналогичным образом производит сравнение адреса факса. + + + Целевой факс получает оба потока данных одновременно и извлекает их из частот методом анализа амплитуд, затем дескремблирует оба потока данных, производит анализ кода исправления ошибок и исправляет ошибки. После система факса по полученному коду разбиения на потоки восстанавливает из двух потоков единый пакет данных, который затем декодируется и анализируется печатной системой факса. + + + Печатная система раздельно анализирует данные текста и данные снятые с области для печатей. На электрофотографический цилиндр при помощи коротрона наносится электрический заряд. Далее идёт облучение фиолетовым лазером участков, где должна остаться белая область (область без текста). Из-за действия света заряд в облучённых участках стекает. Далее ЭФЦ обсыпается заряженным цветным тонером, а потом к нему прижимается бумага, формируя таким образом отпечатанное изображение. После чего цилиндр очищается от воздействия заряда и от остатков печатного тоника. + + + Нечто аналогичное происходит и с печатью собственно печатей оригинала. Но факс использует обычные цветной тоник, но при этом использует пометку об соответствии пришедших закодированных данных состава оригинальной печати или несоответствия, по которым член командования может понять оригинальное ли ему пришло письмо или фальшивое. + +book-famalis-contents = + Семья Дилли Джонсона + + Внутри государства джони выполняют роль полиции. Несмотря на суть государства, в нём сложили определённые законы, гарантом которых выступает власть Дона, а джони занимаются патрулированием улиц городов, преследованием нарушителей, расследований противоправных преступлений и наказанием виновных. Само собой такая «полиция» не является для граждан бесплатной, а потому и существует термин «противоправное преступление». Граждане, не заплатившие за услуги «полиции», могут также быть подвергнуты атаке джони или не получать услуги расследования или охраны. Если же так получилось, что джони защитили гражданине без оплаченной услуги, то тот обязуется выплатить пени за оказанную услугу. В случае невыполнения этого обязательства, его долг может быть продан другой Семье, или же джони позаботятся о вечном покое неплатильщика. + + Во внешнем мире джони известны как опасные налётчики. Они грабят торговые суда, совершают атаки на чиновников, банки, биржи, хранилища денег, драгоценностей, музеи. Они славятся своей вероломностью, быстрой расправой, а также молниеносными налётами «через парадный вход». При этом они же известны как явные пижоны, любители моды и стиля. Их фирменной визитной карточной является длинное пальто, плащ или тренч, со знаком Семьи на спине – Устаревшей латинской буквой «D», лентой патронов вокруг и одной красной розой, продетой через букву. + + + Клан Сава + + Внутри государства савы занимаются охраной важных шишек, чиновников, управленцев, а также всех, кто наймёт их услуги. Это профессиональные телохранители. также они ведают утилизацией и переработкой мусора. «Мусорная» мафия вызывает смех только у тех, кто ничего в этом не смыслит. Услуги вывоза мусора являются платными, самостоятельно утилизировать или перерабатывать не дадут крупные братки-савы, а при скоплении невыброшенного мусора гражданину будет попросту невозможно жить. А также его соседи вызовут джони, для урегулирования вопроса, которые церемониться не станут. Помимо мусора савы утилизируют самые разные вещи за сходную договорную цену. Так что все знают, что если что-то или кто-то пропал бесследно, то вполне вероятно его останки находятся где-то у сав. Таким образом вся вторсырьевая продукция также является продуктом работы заводов клана Сава. + + Во всей галактике савы – это пираты, налётчики, грабители торговых судов, а также крупная мафия в области рэкета, похищений и запугиваний. Их услуги порой применяются для «протаскивания» нужных законов посредством «общения» с несогласными политиками, а также для уборки неугодных, лидеров оппозиций. Порой с помощью них даже подавляют мятежи, но пока они не наняты, они являются жуткой головной болью для логистов и охранно-сопровождающих ведомств. + + + Союз «Клевер» + + Клеверы чаще внутри стороны занимают сразу четыре ниши, а именно они владеют крупными юридическими бюро, они управляют планетарными и космическими тюрьмами, они владеют половиной планетарных дорог и третью космических торговых путей, а также они являются организацией государственной безопасности. Благодаря тому, что лучшие юристы работают на них или являются членами их Семьи, Союз «Клевер» часто может толковать законы в свою пользу, получая существенную выгоду. Владение частными тюрьмами позволяет взымать плату с планет и государств, чей преступник содержиться в тюрьме. В случае отказа или превышения срока оплаты, преступник выходит на волю и возвращается в родные края. Клеверы же не звери, готовы предоставить практически нищему билетик до родины, но увы… содержание обходится «так» дорого! При этом важно понимать, что перемещение по дорогам и космическим путям Клевера – дело платное, но оплата сугубо добровольная. Вы по доброй воле можете заплатить или отправиться другим путём. При этом пути клеверов самые защищённые и скоростные с отлично развитой инфраструктурой (тоже доход!) и прекрасным состоянием. Помимо этого, клеверы выступают как контрразведка и занимаются расследованиями, связанными со шпионажем, саботажем, похищениями, убийствами и т.п. направленными от других государств. + + В остальной галактике клеверы – это лучшие независимые эксперты в области юриспруденции и политологии. За деньги они способны перевернуть практически любое дело с ног на голову и вывернуть своего юриста-оппонента наизнанку. Также их знают, как отличных трассовладельцев в пространстве Братства и, местами, за его приделами. Для правоохранительных органов клеверы становятся прекрасным способом убрать особо опасных заключённых как можно дальше от себя и больше их не видеть, а вот разведывательные управления лютой ненавистью не любят эту Семью. + + + Организация «Ворбакс» + + Ворбаки или же ворбы выполняют роль тайной полиции государства, а также им принадлежат текстильные фабрики и плантации по всему сектору. Они шьют одежду и продают её. Вполне легальный бизнес. Также они владеют сетью гостиниц и кафе. Как ни странно, но магазины ткани, одежды, пошивочные мастерские, гостиницы и кафе становятся для них отличными источниками информации, а также прекрасным способом перемещения и внедрения своих агентов. Они занимаются преследованием и устранением опасных для Собрания Семей, для Дона и для их Семьи членов общества, репортёров, беглых шпионов, оппозиционеров, бунтовщиков, революционеров. А также осуществляют шпионаж, разведку и саботажи на территории других государств. + + Контрразведывательные управления и организации госбезопасности разных стран тратят достаточно много средств и усилий, борясь с ворбаками. При этом в тот же момент миллионы граждан по всей галактике знает компанию ткани и удобной одежды «Ворбакс Текст», небольшие кафе «Ворбачная» и сеть дешёвых, но уютных трёхзвёздочных гостиниц «Тенистый Домик» + + + Семья Глазиуса Мора + + Внутри государства многие очень не любят членов семьи Глазиуса Мора. «Глаза», как их называют вызывают огромное количество трат. Глаза занимаются контролем качества, экологическим аудитом, налоговыми сборами, выявлением всяческих нарушений, а также трудовыми и всякими разными другими инспекциями. Само собой, они прекрасные профессионалы и крайне быстро находят несоответствия. А так как именно они в своё время «протащили» ряд законов о стандартах производства, то имеют право сообщить о нарушениях джони или клеверам. Чтобы избежать неприятного общения с этими господами, владельцы предприятий платят глазам немалые суммы, а те взамен не только не докладывают правоохранителям, но ещё и за отдельную плату составляют подробные инструкции, как исправить недочёты. + + За пределами Братства глаза известны как опасные мошенники, воры, шпионы, кляузники, а ещё как успешные торговцы, игроки на бирже. Кроме того они оказывают услуги независимого аудита, консультации перед гос.проверками. Порой их нанимают даже в качестве кризис-менеджеров в некоторые филиалы компаний. + + + Семья Фенарио + + Семья Фенарио владеет казино, игорными домами, клубами эротического содержания, дорогими отелями, а также производством и продажей алкоголя. Все эти места приносят отличную прибыль, кроме того, позволяют собирать весомый компромат на различные грязные выходки очень разных людей с целью последующего шантажа. Помимо прочего на счётчике у Семьи стоят должники, которым приходится отрабатывать проценты самыми разными способами. Но при этом главы Семей Фенарио славятся своей щедростью! Порой они списывают долги своих должников, рождая тем самым кучу благодарных, а от того затем и преданных ему людей. также они вносят пожертвования на образование и благотворительность, также устанавливая дружеские связи, создавая преданность или сажая некоторые заведения и организации на денежную иглу. Кроме того, благодаря огромным денежным запасам Семья спонсирует научные лаборатории, проводящие исследования вне рамок морали. + + В большом мире Семья Фенарио известна, как династия промышленников в области хорошего алкоголя. Дорогие вина, коньяк, портвейн, джин, ром, пиво и многое другое. Также они почитаются за известных меценатов и щедрых благотворителях. Они имеют во владении несколько известных на всю галактику крупных отелей и пару легальных казино. Знакомство с ними охотно заводят представители политической элиты всех стран, кроме СССП. Впрочем, у органов государственной безопасности порой возникают подозрение, что ряд чиновников и политиков находится у Фенарио на долговом счету или на коротком поводке компромата. Но доказательства собрать пока не удаётся. + + + Фонд Мола Гола + + Граждане Межпланетарного братства могут, конечно, опасаться джони, сав или ворбаков, но членов Фонда они воистину боятся. Они похищают всех представителей разумных существ во всех уголках галактики, а затем делают из них рабов. Рабы продаются в самые разные безымянные места, где затем до самой смерти в нечеловеческих условиях вкалывают на полях, плантациях. Промышленных теплицах, шахтах, штольнях, рудниках, на заводах, фабриках и в цехах. Они теряют имена, имущество, родных, друзей, а всю личность им заменяет номер, отпечатанный на груди. Таким образом Фонд становится промышленным сердцем и одновременно рабовладельческим гигантом. + + + Семья Синий Камень + + Областью деятельности Семьи являются курительные смеси, кальянные заправки и наркотики. Самые разные, всех мастей. Массовые, авторские. В любом объёме. Регулярные запросы на наркотики от подсаженных на иглу обеспечивают стабильный доход, а распространения курева всех мастей позволяет легализовать точки сбыта в других системах. В галактике эта Семья известна под именем «Синекаменный табак». Мелкая компания, продающая табачные изделия. Она не попадает в поле зрения правоохранителей и умудряется тихонько распространять длинные сети дистрибуции наркотиков. + + + Союз Границ + + Название граничников говорит само за себя. Он взымает таможенную пошлину с ввозимых товаров. Проверяет на список запряжённых вещей. также управляют потоками контрабанды и занимаются защитой космического пространства и наёмным сопровождением в космосе. Сети контрабанды распространяются далеко за пределы сектора Арабеллы. Правоохранители всех стран стараются обрубать головы этой гидры, но Семья находит новые пути. При этом наёмные боевые корабли сопровождения граничников считаются элитными наёмными отрядами, которые пользуются популярностью у многих логистов всех корпораций и стран. + + +book-grav-contents = + Генераторы гравитации отличаются лишь мощностью, но в сути их работы лежат выдающиеся патенты НТ по работе с антиматерией и, в частности, с антиполем. В привычной механике мы привыкли, что объект с существенной массой создаёт в пространстве гравитационное искажение по законам Ньютона, из-за которого все объекты начинают к нему стремиться. + + + Генератор же гравитации представляет собой невероятное сочетание уникальной по своей природе плазмы с антиматерией. При облучении плазмы антигелием формируется не обычная фотонная вспышка, а вспышка гравитационного антиполя (оно же «поле искусственной гравитации»). Все тела, попадающие в действие антиполя начинают воспроизводить гравитационное искажение, не меняя свою стандартную массу, а формируя мнимую гравитационную массу. Таким образом у всего в поле действия генератора гравитации увеличивается ньютоновское притяжение друг к другу, не используя центробежное вращение, как в космических кораблях тысячелетней давности. + + + Незначительным побочным эффектом является формирование отрицательной мнимой массы у самого генератора, из-за чего его может переносить один человек, ибо генератор очень лёгкий. + +book-halifat-contents = + Духовная составляющая + + + Шахада + + Является первым и наиболее важным символом веры. «Свидетельствую, что нет божества достойного поклонения кроме Аллаха и ещё свидетельствую, что Мухаммад — посланник Аллаха». Является необходимой формулой для признания себя правоверным. Отдельно стоит отметить, что в понимании ражулитов нет принципиальной разницы между понятиями «Бог», «Создатель», «Вселенский перводвигатель», «Объект поклонения». Попытка разделить эти понятия может быть встречена абсолютно глухим непониманием. Шахада может быть использована религиозными деятелями или истинно правоверными, как дополнительный аргумент при свидетельствовании или доказательстве чего-либо другому лицу, если произносящий шахаду не лукавит, не пытается врать, утаить факты, а полностью уверен в том, что доказывает. + + + Намаз + + Является обязательным столпом для истинно правоверных и религиозных деятелей. Это ежедневный цикл молитв, который состоит двукратной утренней молитвы (фадж), четырёхкратной полуденной (зухр), четырёхкратной предвечерней (аср), трёхкратной вечерней (магриб) и четырёхкратной ночной (иша). Молитвы должны быть принесены с условием выполнения определённых правил. + + + Саум + + Необходимость совершать воздержание в течение священного месяца Рамодана, который отсчитывается по лунному (по Земле) исламскому календарю. Именно в этот месяц пророк Мухаммад получил с небес Коран. В ходе воздержания правоверным запрещается есть пищу от момента наступления утренней молитвы и до вечерней молитвы. Считается, что временем начала поста и утренней молитвы можно назвать тот момент, когда на улице при естественном свете получиться отличить белую нить от чёрной. В случае если пост был нарушен по уважительной причине, вроде тяжёлой болезни, ражулит должен восполнить пропущенный день одним днём поста или отдать нуждающимся пищу, эквивалентную по стоимости 3,3 кг муки. Позволяется отдавать муку, мясо, яйца, хлеб, овощи или фрукты. Если же причина была неуважительной, то есть воплощала недержание и слабость воли ражулита, то он будет обязан со следующего лунного месяца начать личный пост на 60 дней под присмотром священнослужителя или накормить досыта 60 бедняков. + + + Закят + + Выплата налогов Духовному собранию и в государственную казну всеми дееспособными, самостоятельными, взрослыми ражулитами. При этом пятая часть денег, идущих к Духовному собранию, идёт на развитие проектов и поддержку самого собрания, а остальные 80% идут на поддержку нуждающихся, коих достаточно особенно в пограничных регионах, где идут военные действия. Кроме нищих и обездоленных, деньги идут для выкупания должников или рабов мусульман у других государств или корпораций, также на помощь в погашении долга тем ражулитам, что взяли в долг у мечети или Духовного собрания на организацию богоугодного дела. Среди прочего эти деньги идут в поддержку джихада и на развитие общей инфраструктуры государства для разного рода путников. + + + Хадж + + Священное паломничество. «Пророка Мухаммеда спросили - „Какое дело является наилучшим?“ Он ответил - „Вера в Аллаха и Его посланника“. Его спросили - „А после этого?“ Он ответил - „Борьба на пути Аллаха“. Его снова спросили - „А после этого?“ Он ответил - „Безупречный хадж“». Из-за веяний истории и времени до современных последователей Неоислама не дошли точные знания о том, как древние мусульмане совершали хадж. А потому Духовным Собранием было решено разделить хадж на три категории, а именно + + 1) Наиболее влиятельным и богатым предписывается, если их присутствие в данный момент не критично важно для страны, посетить пространство ОПЗ, прилететь на Землю, дабы вознести там свои молитвы на священной Мусульманской земле. Тоже предписывается и религиозным деятелям и истинно правоверным. + + 2) Правоверным среднего социального статуса и достатка предписывается совершить перелёт в систему София на планету Фараби и вознести молитву там, где первый Халиф решил основать Конгломерат. + + 3) Ражулитам малого достатка предписывается совершить хадж на своей планете до святыни, которую установил имам Духовного собрания при колонизации. + + + + Земная составляющая + + + Ограниченная монархия + + Халиф никогда не должен иметь полностью безраздельную власть. Его решения должны обсуждать и осуждаться, если они направлены на личную выгоду, а не на благо государства. А потому лидеры Министерств могут устроить голосование за наложения вета на приказ Халифа. При этом от Совета философии выступает два диалектических лидера. + + + Национализм + + Не должно быть различий, которые могут пошатнуть, устои страны. А потому гражданское и этническое должны быть отождествлены. Если кто-то хочет стать ражулитом, гражданином, то он должен отбросить свои культурные, расовые или кланово-национальные устои или привести их под образец устоев государства. + + + Народность + + Нужно максимально преодолевать все возможные классовые расслоения, приводя их лишь к необходимому минимуму. Это устанавливает равенство каждого ражулита перед законом, вне зависимости от его рода деятельности, достатка или положения. И нищий, и Халиф должны быть подсудны одинаково. + + + Лациизм + + Установление преимущественно светского характера государства. Недопускания религиозного права в государственную судебную систему. А также не полное подчинение образования религиозным канонам. + + + Этатизм + + Построение экономической системы, при которой государство будет играть лидирующую роль, что могло бы привести к национализации промышленных предприятий, банков, транспортных систем и прочего. Осуществление этого могло происходить как через реквизицию, так и через конфискацию. + + + Революционность + + Недопускание полумер. Если уж выкупать предприятие, то не долу владения, а целиком. Если уж отказываться от расовых устоев, то полностью. При этом с опорой на просвещение, прогресс и реформацию. + + +book-redspace-contents = + Считается, что редспейс в общем случае невозможно полностью рационализировать и понять. Учёные и исследователи потратили многие годы и многие тысячи жизней на исследование этого пространства, а узнали практически ничего. Тем не менее в данный момент существует научная теория, являющаяся доминирующей в научном мире. Согласно данной теории Редспейс является категорически иным видом пространства. Когда учёные заходят в тупик при своих суждениях, они пытаются сделать шаг в другую сторону и найти вдохновение в другой сфере. В данном случае идеи существования других миров, множественных вселенных или даже астрал из оккультизма вкупе с вероятностным характером квантовой механики навели на мысль, что вполне может существовать иной вид пространства. Редспейс. + + + Итак, по большому счёту Редспейс – это тоже евклидово пространство, как и наше, но при этом, если единичный отрезок в нашем пространстве можно назначить один орт конкретной бесконечно малой длины (или варьируемой малой длины под конкретную задачу), то в пространстве Редспейс ортом выступает функция или же оператор, притом для каждого орта задаётся своя функция. Таким образом каждая точка пространства задаётся не просто координатами и сочетанием нескольких функций. Это было бы сложно, но возможно предсказать, если бы Редспейс, как и наше привычное пространство, имел всего три координатные оси, но различные эксперименты дают основания предположить, что у него куда больше осей, что позволяет внести его в класс предгильбертовых. + + + Учёные могут лишь предполагать количество осей и орты-операторы, которые по ним отложены. Тем не менее уже есть определённые идеи описания процессов данного пространства. Каждая точка является сочетанием операторов квантовой вероятности, импульса, координаты и понятия существования. Неотъемлемым элементом динамики подобных пространств является оператор эволюции. Он воплощает в себе вариант изменения пространства. + + + По вышеизложенным причинам любой объект находящийся в Редспейсе и живущий (существующий) по его законам способен мгновенно поменять свой импульс в определённых пределах с определённой вероятность, совершить мгновенное перемещение с определённой вероятностью, пропасть совсем с определённой вероятность или неожиданно восстановить себя во времени с определённой вероятностью. При этом используемый оператор вероятности оказывается чётным относительно времени, то есть при подстановки отрицательного времени в расчёт (то есть время идущее назад) оказывает, что вероятность всё ещё есть и вполне положительная из-за несходящейся системы и из-за практически повсеместно положительного определённого скалярного произведения векторов различных осей. Таким образом в Редспейсе может восстановиться нечто, существовавшее очень много лет и тысяч лет назад. И наоборот. + +book-ships-contents = + (S - Sigma) МКК – маленькие космические корабли. + + К гражданским МКК относятся корабли следующий назначений. + + 1) Шаттлы. Такие корабли зачастую не превышают нескольких десятков метров в длину и выполняют вполне тривиальные функции такие, как перевозка пассажиров и грузов. + + 2) Добывающие суда. Не превышают пары метров в длину и занимаются добычей, транспортировкой, а также в некоторых случаях переработкой полезных ископаемых. + + 3) Персональные МКК. Не превышают пары метров в длину и рассчитаны на перевозку от двух, до пятнадцати гражданских лиц. + + + К военным МКК относят корабли, несущие на себе какое-либо вооружение. Они имеют следующие назначения. + + 1) Истребитель – Разведчик (ИР). Такие МКК используют для разведки и сбора информации. Они очень маневренны и быстры, но практически не несут на себе какого-либо вооружения и брони. + + 2) Истребитель – Перехватчик (ИП). ИП используются в массовых сражениях. Зачастую несут на себе слабое вооружение не способное нанести существенного вреда крупным кораблям. + + 3) Истребитель – Бомбардировщик (ИБ). ИБ – это более крупный собрат простого истребителя, он менее манёвренный, при этом он имеет улучшенное бронирование, а также несёт на себе пару мощных боеголовок, способных нанести серьёзный вред крупным судам. + + + + (T – Teta) СКК – средние космические корабли. + + К гражданским СКК относятся. + + 1) Космические лайнеры. Данные суда способны перевозить несколько тысяч разумных существ. Зачастую они используются для межсистемных перелётов. + + 2) Космические грузовые корабли, танкеры. Используются для перевозки огромного объёма грузов на очень дальние расстояния. + + + К военным ССК относятся. + + 1) Фрегаты. Данный тип кораблей слабо вооружён и не способен оказать достойное сопротивление кораблям своего класса. Зачастую он используется для сопровождения некрупных конвоев или в составе крупных боевых групп, в качестве корабля ПВО – ПРО. + + 2) Корветы. Данный тип кораблей несёт на себе среднее вооружение. Обычно входит в состав средних боевых групп. Также он способен выступать в роле основного боевого корабля в составе сверхмалых боевых групп. + + 3) Эсминец. Данный тип кораблей считается универсальным и несёт на себе оружие, которое считается самым сильным в своём классе кораблей. Зачастую появляться в составе средних боевых соединений и выполняет роль ударного корабля. + + + + (O – Omicron) СККК – Среднекрупные космические корабли. + + 1)Лёгкий крейсер. Это более подвижная и более слабо вооружённая версия простых крейсеров. Предназначенная для сопровождения и охранения более крупных судов, либо же для патрулирования в составе небольшой боевой группы. + + 2) Авианесущий крейсер. Данный тип кораблей представляет собой небольшие авианосцы несущие на себе некрупные боевые группы. Предназначен для прикрытия более крупных судов. + + + + (G – Gamma) ККК – Крупный космический корабль. + + 1) Тяжёлый авианесущий крейсер. Данный тип представляет собой универсальные корабли, предназначенные в основном для уничтожения авианосцев всех классов. Несут авиакрыло равное по численности авиакрылу лёгкого авианосца, и в дополнение к нему многоцелевые или противокорабельные ракеты. + + 2) Броненосный крейсер. Данный тип, это убийцы крейсеров. Основное назначение уничтожение кораблей класса выше. Данные корабли можно считать недолинкорами. + + 3) Монитор артиллерийский. Данный тип кораблей является ещё более урезанным вариантом линкоров, по существу являющимся подвижным аналогам орбитальных артиллерийских платформ. Отличаются весьма низкой мобильностью, но компенсирующий это высокой огневой мощью. + + + + (B – Beta) ТКК – Тяжёлые космические корабли. + + 1) Линкор. Линкоры — это наиболее мощные артиллерийские корабли, хорошо бронированы, но не слишком подвижны. Предназначены для уничтожения кораблей всех классов, орбитальных сооружений и орбитальной бомбардировке поверхности планет. + + 2) Линейный крейсер. Это облегченная, за счёт бронирования версия линкора. Более подвижный линейный крейсер предназначен не только для линейного сражения, но и для рейдерских и разведывательных операции. Прикрытия флангов эскадры, сопровождения авианосцев. + + 3) Тяжелый (ударный) авианосец. Эти корабли являются крупными авианесущими единицами, предназначенными для уничтожения силами авиагруппы, космических целей всех типов, непосредственной поддержки войск, завоевания превосходства в пространстве, ударных операций, обеспечения ПВО\ПКО\ПРО баз, а также поддержке наземных соединений. + + 4) Десантный авианосец. Это разновидность тяжелых авианосцев, предназначенная для базирования и десантирования пехотных соединений. Обычно несколько превосходят по габаритам тяжёлые авианосцы. + + + + (A – Alpha) СТКК – Сверхтяжёлые боевые корабли. + + Единственным представителем кораблей данного класса является Дредноут. Дредноут или «суперлинкор». Дредноуты — это самые большие корабли, совмещающие в себе мощь линкора и способности тяжелого авианосца. Обычно в составе всего космического флота одной страны, находится не более двух таких кораблей, поскольку даже постройка одного такого корабля считается сверх затратной, а уж их содержание может обходится в не меньшую сумму, чем затраты на содержание какой-нибудь около столичной планеты. + + + + ОКК – Особые космические корабли. + + 1) Исследовательские космические корабли, дальнего действия. Используются для изучения ещё неизученных секторов космоса. Запаса хода, как и полезной нагрузки им хватает на несколько лет. Также они оснащены полноценными лабораториями и иногда несут на себе мелкое вооружение. + + 2) Колониальные космические корабли, используются для заселения недавно терраформированных планет. Несут на себе несколько десятков тысяч живых существ, не находящихся в стазисе, а также пару сотен тысяч живых существ, находящихся в состоянии гибернации. + +book-zp-contents = + Базовая криптовалюта начисляется за каждую минуту пребывания сотрудника на смене. Учитывается каждая полная минута, все секунды в зачёт не идут. Базовая сумма начисления умножается на коэффициент, который зависит от типа договора, должности сотрудника, назначении станции и цели станции. В случае применения санкции к отделу, коэффициент всех сотрудников отдела отдела признается равным единице. + + + Формула расчета заработной платы за 1 смену -- ЗП = БС х min х Кд х Кр х Кнс х Кцс х Кп х Кш Обнулением или отменой коэффициента признается приравнивание коэффициента к единице. Базовая ставка равна 10 единицам. + + + Коэффициенты по договорам -- Бессрочный– 1,5 Долгосрочный – 1,3 Среднесрочный - 1,1 Краткосрочный – 1,05 + + + Коэффициенты по рождению -- Родился на территории ОПЗ – 1,05 Родился на территории корпорации – 1,10 Родился на иных территориях - 1,0 + + + Коэффициенты по назначении станции: + Административная станция – 2,0; + Бизнес станция – 1,6; + Исследовательская станция – 1,7; + Экспериментальная станция – 1,8; + Коммерческая станция – 1,3; + Медицинская станция – 1,2; + Оборонная станция – 1,7; + Транспортная станция – 1,0. + + + Коэффициенты по цели станции: + Отдел напрямую занимается целью станции – 1,5; + Отдел косвенно связан с целью станции – 1,25; + Отдел не занимается целью станции – 1,0. + + + Коэффициенты по профессиям + + Повар -- 1 + + Уборщик -- 1 + + Сервисный работник -- 1 + + Священник -- 1 + + Репортёр -- 1 + + Музыкант -- 1 + + Мим -- 1 + + Клоун -- 1 + + Зоотехник -- 1 + + Ботаник -- 1 + + Боксёр -- 1 + + Библиотекарь -- 1 + + Бармен -- 1 + + Грузчик -- 1 + + Технический ассистент -- 1 + + Кадет СБ -- 1 + + Научный ассистент -- 1 + + Интерн -- 1 + + + Офицер СБ -- 1.1 + + Врач -- 1.1 + + Инженер -- 1.1 + + Психолог -- 1.1 + + + Химик -- 1.2 + + Утилизатор -- 1.2 + + Атмосферный техник -- 1.2 + + + Парамедик -- 1.3 + + Детектив -- 1.3 + + Учёный -- 1.3 + + + Глава персонала -- 1.4 + + Квартирмейстер -- 1.4 + + + Смотритель -- 1.5 + + Ведущий врач -- 1.5 + + Ведущий инженер -- 1.5 + + Инструктор СБ -- 1.5 + + Ведущий учёный -- 1.5 + + + Старший инженер -- 1.8 + + Научный руководитель -- 1.8 + + Главный Врач -- 1.8 + + Глава Службы Безопасности -- 1.8 + + + Капитан -- 2.5 + + + Коэффициенты штрафов + + Нахождение в заключении – 0. Отчет о времени заключения составляет смотритель. + Нахождение в медицинском отделе на лечении в обычном состоянии - 0,9. Отчет о времени лечения составляет лечащий врач. + Нахождение в медицинском отделе в критическом состоянии – 0,8. Отчет о времени болезни составляет лечащий врач. + Нарушение стандартных рабочих процедур - 0,8. Отчет о времени нарушения составляет глава отдела или АВД. + Нахождение в нетрезвом состоянии на рабочем месте – 0,5. Отчёт о времени составляет руководитель отдела. + Гибель вне станции – 0,1. Факт формируется после окончания смены. + Гибель на станции или при исполнении должностных обязанностей – 0,2. Факт формируется после окончания смены. + Отстранение от должности и нарушение СРП. При отстранении от должности или нарушении СРП все коэффициенты замораживаются до отдельного разбирательства после окончания смены. По итогам разбирательства итоговая заработная плата рассчитывается отдельно. + + + Гибель + + В случае гибели сотрудника и невозможности клонирования его заработная плата выплачивается ближайшим родственникам. Если таковых нет, удерживается в пользу корпорации. В случае возможности клонирования, коэффициент гибели признается равным 0,5. Страхование жизни и здоровья. Во время пребывания на станции каждый сотрудник и посетитель имеет право безвозмездного использования результатами труда других сотрудников станции и находящимися в раздатчиках ценностями (активами, продуктами, товарами). При получении инвалидности по итогу смены, компания назначает выплату на установку замены потерянной сотрудником конечности. По достижению старости компания выплачивает пенсионное вознаграждение - Ежемесячно 30% от среднемесячной заработной платы не работающим пенсионерам; ежемесячно 10% от среднемесячной заработной платы в дополнение к их заработной плате. Среднемесячная заработная плата рассчитывается, как сумма заработной платы за весь период работы, разделенная на количество полных месяцев работы на корпорацию. + + + Прибыль станции + + Из результата деятельности станции на конец смены (результат/прибыль работы отдела снабжения) станция удерживает 75%. Квартирмейстер получает 3% от прибыли станции вне зависимости от участия в доставке грузов. Остальная часть распределяется в виде премии между сотрудниками станции, сформировавшими доход. Например, Атмосферный техник создал газ, грузчик отнес его в отдел снабжения, оба делят доход между собой. Второй пример - Утилизаторы притащили на станцию двигатели с обломка, которые были проданы. Утилизаторы делят доход между собой. + + + Растраты + + Растратами признаются любое нецелевое использование средств, предоставленных корпорацией. Например, строительство космической техники в то время, когда цель – исследование артефактов. При таком использовании средств станции, виновный лишается всех коэффициентов выше единицы, а результат его деятельности признается собственностью корпорации. В любых нестандартных ситуациях специальная комиссия назначает дополнительные штрафные санкции. + + + Дополнительное премирование + + Награждение медалью добавляет 50% к итоговой заработной плате. Быстрое окончание смены добавляет 50% к заработной плате руководителей отделов. Центральное командование корпорации может по своему усмотрению назначить дополнительную премию по итогам смены. + +book-ussp-contents = + Первые среди равных + + Важнейшим управляющим законодательным органом СССП является Политическое бюро Социалистической Партии Союзных планет. В него входят граждане, достигшие наибольшего политического и партийного влияния в составе партии. Обычно в Политбюро входят не очень много членов. В разное время их число колебалось от 5-и до 16-ти. На данный момент в него входят 9 членов. Тартышников А.П. Морроу Д.В., Огнева А.В., Р.Р. Старшинов, Пламя Коллективизма, Вариван’Зен, Пульт Валливс, Ровкуд Красноусая, Укар’вар Дари. + + + Президиум и Советы + + Первые отцы революции боялись, что в будущем найдутся индивидуумы, которые, преисполнившись хитростью, будут делать вид, что верны идеалам коммунизма, а на деле проникнут в верха власти, узурпируют её и отбросят страну назад от идеалов коммунизма. Они не могли придумать, как не пустить таких «товарищей» во власть. Однако, было найдено решение, как их полномочия возможно ограничить. + + Был основан Президиум Совета СССП — верховный совет, который включал в себя трёх делегатов из каждой системы Союза. Отбор в делегаты происходил по достаточно длинной схеме. Сообщества крестьянства, рабочих и деятелей образования каждого города выдвигали своих кандидатов. Из делегатов создавался Совгор (Совет города). В Совгор, в зависимости от размеров поселения, входило от 9 до более чем сотни делегатов. Тройку лучших делегатов (крестьянин-рабочий-преподаватель) выдвигали на должность делегата планеты. Из них создавался Совплан (Совет планеты). В него входило по три делегата с каждого города. И трёх лучших выдвигали на должность делегата системы, из которых создавался Совсис (Совет системы), и уже оттуда трое лучших попадали в Президиум СССП. + + Президиум занимается обсуждением законопроектов, выдвигаемых Политбюро, созданием списка замечаний, просьб по уточнению. Кроме того, Президиум имеет право вето на ввод какого-либо распоряжения или закона Политбюро. В возможностях Президиума есть право на собственную разработку законов и постановлений, которые также могут быть запрещены или исправлены. + + + Народные секретариаты и Генеральный Секретарь + + Для создания дополнительной объединяющей граждан силы изначально формировался культ личности Генерального Секретаря, члена Политбюро, выбранного в качестве главы государства «первого среди равных» и одобренного Президиумом. Он должен был стать особой фигурой, сочетающей в себе лицо законодательной власти от Президиума, Политбюро и исполнительной власти Секретариатов. На данный момент роль генсека исполняет Р.Р. Старшинов. + + Исполнительная власть, коей управлял и контролировал генсек, была сосредоточена в двенадцати народных секретариатах, которыми руководят нарсеки (народные секретари). Секретариаты осуществляют свою власть через комитеты разного уровня - Сисисполкомы, Планисполкомы, Горисполкомы и Райисполкомы (Системные, планетарные, городские и районные исполнительные комитеты соответсвенно). Комитеты занимаются местным надзором за исполнением всех постановлений и законодательной базы государства в районах своего действия. Очень часто разные комитеты размещаются в одном здании, которое граждане чаще всего так и зовут — Исполкомом. Как правило, милиция, прокуратура и ВГБ базируются в отдельных зданиях. + + + Суды и главное управление красных комиссаров + + Судебная система СССП делится на две ветви - Суды гражданских дел и Главное Управление Красных Комиссаров (ГУКК). + + Суды гражданских дел также классифицируются по величине области действия. Районные, городские, окружные, планетарные, системные, секторальные и верховный. Они разбирают дела разного уровня по всем видам преступлений или тяжб, которые могут пройти по отношению к гражданам, комитетам или иными собраниями. + Главное Управление Красных Комиссаров занимается разбором преступлений, совершенных сотрудниками милиции, Красной армии или (не часто, но порой случается) сотрудниками прокуратуры и ВГБ. Так как в Союзе считается, что гражданин в форме должен быть опорой и поддержкой для всего населения СССП, то в случае выявления совершенного ими преступления, их карают куда серьёзней, нежели гражданских лиц. Активно применяются телесные наказания, тяжелейшие исправительные работы и расстрелы. + +book-mirt-contents = + В данный момент в народе доминирует одна единственная идея. + + «Все умрут. Гибель неминуема. Ничто это не остановит. Всё что мы можем – отсрочить конец галактики». Бесконечный рой ксеноморфов показал тщетность существования человечества. Но миртранийцы давно преодолели панику и свыклись с мыслью о своей смерти. Они всегда готовы умереть. Они верят, что являются щитом для Галактики. Не несокрушимым. Щитом с ограниченной толщиной, что истончается с каждым днём. + + Они осознают, что умрут сами. Что умрут их любимые родители. Что умрут их близкие, их друзья. Что, возможно, им придётся хоронить своих детей. Или то что от них осталось. А возможно их детей сожрут с концом и на могильном холмике окажется лишь небольшой памятный камень с фотографией того, от кого не осталось и мизинца. Эта идея живёт в каждом гражданине, но особенно она сильна у жителей планет-крепостей в Линии Надежда и Любовь. Каждый гражданин Империи проходил базовую военную подготовку и умеет пользоваться оружием. Но жители Линий могут соревноваться в умении с солдатами некоторых ЧВК и стран. Они дисциплинированы, живут по практически военному расписанию, знают где находятся склад с оружием и по первому протяжному и рвущему душу сигналу тревоги готовы стиснуть зубы, сжать кулаки до крови, и, стараясь игнорировать подступающие слёзы, заранее хороня своих детей, друзей и близких, идти к ближайшему арсеналу и вооружаться, дабы отсрочить момент гибели человечества хотя бы на мгновение. + + Так умирали люди на планетах-крепостях Линии Вера. Так умирают люди на планетах Линии Надежда прямо сейчас. Так готовы умирать люди на планетах-крепостях Линии любовь. + + И они не уедут. Не улетят. Не потому, что тоталитарное государство их не выпустит. Нет. Просто… они понимают, что гибель неминуема в любом случае. Так лучше встретить с оружием в руках! Когда закончатся патроны – штыками! Когда сломаются штыки – ножами! А когда затупится нож, выгрызать ксеноморфам глотки ногтями и зубами. Ибо нужно отсрочить неминуемое… Хоть на одну наносекунду. Хоть на одного ксеноморфа. + + Легенды гласят о моментах, когда Империя была в шаге от падения. Тогда являлся Император Миртан и создавал Проявление! Оно помогало уничтожить угрозу, но и заставляло Императора угаснуть… А потому каждый гражданин понимает, что Император это не просто небожитель, а буквально равный им спаситель Человечества. Потому он всеми любимый и почитаемый. + + Согласно религиозным убеждениям души погибших от ксеноморфов не пропадают, а попадают в Цитадель Миртана! В небесный чертог вечных солдат. Там они готовятся к последнему Бою императора. Когда Три Линии падут, когда рой захлестнёт Империю, когда дойдёт до границ ОПЗ, Явится Император Миртан и его павшее воинство в последний раз. Они остановят рой на один год и один день, чтобы дать галактике подготовиться к бою. Затем они передадут флаг и бремя смерти ОПЗ и исчезнут в бесконечности космоса… + + Отдельное место в культуре получил нож. Нож, кинжал, кортик, скарамасакс и всё подобное есть буквально у каждого при себе. Это не только инструмент и средство выживания, это оружие последнего боя. Нож в Империи является символом конца, самоотверженности и, как ни странно, надежды. Многие гражданские Линий, что пережили бой с ксеноморфами делают себе татуировку в виде ножа. Чаще всего на видном месте. Некоторые прямо на лице. Многие декоративные элементы делаются в виде черепов и костей, а названия даются по староземным мотивам смерти. Потому можно нередко встретить корабли «Анубис», «Аид» или «Харон» или подразделения «Костяные войны», «Мёртвые головы», «Бегущие к гибели». + +book-gior-contents = + ГИОР (Галактическая Инициатива Объединённых Рас) – это исполнительный комитет межрасового надгосударственного общения, сформированный ОПЗ, после обнаружения первых инопланетных рас (Унатхов, Дворфов и Ниан), идейно ГИОР пришла на замену ООН, организации, некогда созданной на земле. По сути, целью ГИОР является урегулирование разнообразных конфликтов в галактике, собрание её участниц на заседаниях, которые проводятся раз в 5 лет, выдвижение каких, либо резолюций, а также контроль за соблюдением принятых законов. + + + Сама ГИОР как-бы разделена ещё на 4 организации, которые отвечают за урегулирование конкретных ситуаций. + + Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ) + + Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ) + + Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ) + + Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР) + + + 1) Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ), является достаточно старым формированием, и именно она изначально и носила название ГИОР, и только позже, после формирования других государств она была переименована в ГИОРиМУ. Целью данной организации является урегулирование вопросов касаемых межрасового общения, а также отслеживание за соблюдением ОПРС (Общие Права Разумных Существ), важным уточнением будет то, что при нарушении ОПРС каким-либо государством или корпорацией, эту ситуацию будет рассматривать Всегалактический Суд Разумных Существ. + + + В состав данной организации входят все расы галактики, интересы которых представляют их представители. От каждой расы может выдвигаться несколько представителей, и их число зависит от численности самой расы (1 представитель на 10 миллиардов представителей этой расы). Из-за того, что точное число представителей какой-либо расы подчитать достаточно сложно, общим решением принято округлять число представителей в меньшую сторону. Также важным уточнением будет, что ГИОРиМУ является надгосударственным формированием, а значит, что представители рас могут являться гражданами разных государств. + + + В состав ГИОРиМУ входят. + + Люди – порядка 71 представителей + + Унатхи – порядка 31 представителей + + Дворфы – порядка 35 представителя + + Слаймолюды – порядка 11 представителей + + Нианаы – порядка 34 представителя + + Воксы – 1 представитель (выступает в качестве наблюдателя) + + Арахниды – порядка 47 представителей + + Дионы – 1 представитель (выступает в качестве наблюдателя) + + Таяраны – порядка 46 представителей + + Вульпакины – порядка 60 представителей + + + 2) Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ), появилась после обнаружения ОПЗ Империи Миртана, а также после откола СССП и СНК от ОПЗ. Целью ГИОРиГУ является урегулирование всех межгосударственных вопросов, также ГИОРиГУ обладает контингентом оранжевых касок (OH – Orange Helmets), которые занимаются поддержанием галактического порядка, путём принудительных мер и действий. Также на заседаниях ГИОРиГУ, могут подписываться пакты, которые обязательны к исполнению всеми государствами, подписавшими оные. От каждого из государств в ГИОРиГУ выступает по одному представителю. + + + В состав ГИОРиГУ входят. + + ОПЗ (Объединённое Правительство Земли) + + Государства Сателлиты ОПЗ – Унатхи, Таяраны, Вульпакины + + Союз Советских Социалистических Планет + + Умпорская Федерация + + Великая Империя Нотда + + Ноократия Эранта + + СНК (Союз Независимых Колоний) + + Халифатский Божественный Конгломерат + + + В качестве наблюдателей в ГИОР находятся. + + Империя Миртана + + Корпорации Большой Пятёрки + + + 3) Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ), была создана относительно недавно в 2781 году, в ответ на разрешение, выданное правительством ОПЗ, корпорациям на освоение регионов фронтира. Занимается контролем за исполнением принятых резолюций и соглашений, а также подписанием новых. При этом ГИОРиКУ имеет огромную когорту своих представителей, которые постоянно находятся в разъездах по всей галактике и занимаются отслеживанием нарушений. + + + 4) Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР), самая «молодая» организация в составе ГИОР. Занимается тем, что отслеживает всевозможные угрозы галактике, а также старается их предотвратить. Самой первой и на данный момент единственной задачей является отслеживание ситуации с ксеноморфами, а также всевозможная поддержка государств, которые занимаются урегулированием данной проблемы. Постоянными членами СовБезГИОР) являются ОПЗ и Империя Миртана (не смотря на статус наблюдателя в заседаниях самой ГИОРиГУ, с недавних пор Империя Миртана обладает особым правовым статусов в СовБезГИОР из-за того, что именно она является щитом галактики от угрозы ксеноморфов). + + Также в состав СовБезГИОР входят все остальные государства и организации, которые входят в ГИОРиГУ + +book-snk-contents = + С ОПЗ ведётся постоянная борьба за право на существование. СНК считает ОПЗ жадными до власти и денег тиранами, которые не уделяют должного внимания как народу, так и развитию своего рынка, черпая деньги с любых источников и невзирая на благосостояние своих граждан – именно так вела себя ОПЗ на момент формирования условий для революции СНК. Грызня между СНК и ОПЗ не прекратится до тех пор, пока ОПЗ будет иметь претензии как на территории СНК, так и на сам факт его существования. + + Немалая часть бюджета уходит на попытки упрочнить политические отношения с Умпорской Федерацией. В этом правительство СНК находит крайне благодатную почву, ибо Умпорская Федерация страдает от внутренних кризисов, постепенно становясь зависимой от поставок гуманитарной помощи и производственного сырья из СНК и СССП. + + К Ноократии Эранта СНК относится нейтрально. Ноократия в своё время также пошла против ОПЗ, что принималось одобрительно со стороны СНК, так как это могло значить появление ценного союзника в будущих конфликтах. К всеобщему удивлению, ОПЗ спокойно согласилось принять независимость при условии выполнения ряда требований, чему СНК могло лишь позавидовать. На данный момент в Ноократии есть филиалы компаний СНК, а сама Ноократия рассматривается скорее как поставщик ценного технологического оборудования и кладезь выдающихся ученых, что крайне интересуют как отделы разработок отдельных компаний СНК, так и всего государства в целом. + + Правительством СНК проводятся мероприятия по налаживанию безопасности торговых путей с Халифатским Божественным Конгломератом, постепенно налаживая активную торговлю и культурный обмен. Однако дальнейшему укреплению дружеских отношений препятствуют активные боевые действия с ОПЗ и неготовность Конгломерата принимать чью-либо сторону. Не менее важной проблемой является подрывная пиратская деятельность Межпланетарного Братства на торговых маршрутах. + + Отношения между СНК и СССП находятся в висячем положении. Политика СНК во многом отличается от ОПЗ, но государство целиком и полностью продолжает полагаться на частные компании, куда меньше ограничивая их в сравнении с компаниями ОПЗ. Они обрели непозволительное для СССП влияние и силу, а также создали огромный разрыв между финансами и влиянием жителей. С другой стороны — именно возгоревшийся очаг революции зарождающейся СНК дал возможность СССП отделиться от ОПЗ относительно бескровно, ровно как и тихий переворот СССП стал ключевым фактором для ОПЗ в прекращении полномасштабных боевых действий против СНК, давая последним время окрепнуть. + + С Миртанийской Империей, как и ожидало правительство СНК, наладить дружественные отношения не вышло из-за ксенофобной политики первых и высокой популяции ксеносов у вторых. Торговых отношений и спейслиза с Империей тоже не ведётся как из-за отсутствия общих границ, так и из-за политики закрытой торговли самой Империи, а также из-за того, что все доступные боевые силы и корабли нужны самой СНК позарез. + + Межпланетарное братство удостоилось особого внимания со стороны СНК, ведь именно Братство, по мнению СНК, может стать очередным столь востребованным союзником в борьбе против ОПЗ, благодаря которому можно значительно расширить информационную сеть. Правда, действия отдельных группировок братства на территориях СНК, порой, носят абсолютно не дружественный характер. Примером могут послужить многочисленные улики, что напрямую указывают на причастность семьи Дилли Джонса к террористическим актам на государственных заводах СНК. + + Конечно же и в ГИОР есть представители СНК. Если отношения с ОПЗ вновь достигнут войны, то именно возможность воззвать к жалости остальных членов ГИОР может помочь быстро пресечь военный конфликт. В других случаях, особых отношений с ГИОР нет. Можно сказать, что предоставляемая СНК помощь и степень выполнения требований ГИОР в основном зависит от настроения компаний СНК. + + С НТ правительство СНК связывает закупка некоторые патентов и научных статей, которые могли бы так или иначе помочь улучшить эффективность своих войск и получить преимущество над ОПЗ. Иные же технологии покупаются отдельными корпорациями, учреждениями и, в общей сложности, разношерстными бизнесменами. Также СНК неоднократно намекало НТ, что если та в будущем решит выйти из состава ОПЗ насильственным способом, то СНК готово предоставить ей место в своем реестре и военную помощь в обмен на финансирование правительства. Потеря НТ была бы крайне сильным ударом для ОПЗ и значительным дополнением казны СНК. + +book-umpor-contents = + В своё время ОПЗ попросту отпустила Ноократию Эранта и Умпорскую Федерацию, когда они ещё были единым государством. Им было невыгодно содержать эти колонии, где было население, но не было богатых месторождений ресурсов. Сейчас под небольшим давлением ГИОР ОПЗ посылает в Федерацию гуманитарную помощь и торгует некоторыми товарами через Корпоративную Зону большой пятёрки. Но помощь эта весьма нерегулярна и порой, чтобы её получить, посольским делегациям Федерации приходится чуть ли не умолять и идти на крайне чувствительные политические уступки. + + Когда гуманитарный кризис стал особенно острым на помощь Федерации пришло СНК. Сейчас практически на безвозмездной основе они совершают регулярные поставки (с помощью корпорации «Космологистика») гуманитарной помощи, сырья и готовой продукции. А также присылают своих специалистов. Правительство Умпорцев понимает, что рано или поздно СНК потребует что-то взамен. Что-то очень существенное, но сейчас у них нет выбора, кроме как принимать поставки. + + С Великой Империей Нотда установился нейтралитет. Ведётся торговля, есть определённое политическое взаимодействие, но нет никаких тесных взаимоотношений. + + СССП считают, что основные ценности Федрации очень близки их социалистическому духу коллективизма труда и общего блага, а потому они договорились с Великой Империей Нотда организовать гуманитарный коридор для поставок материалов и гуманитарной помощи. Взамен Умпорцы предоставляют некоторые технические решения в области химии и биологии чрезвычайных ситуаций, а также приёмы быстрого строительства и перестройки. + + Ноократия Эратна является для Умпорской Федреации жутким и непримиримым врагом. Они находятся в постоянной оппозиции, а на границах всегда дежурят свежие боевые части и флоты. Обе стороны осознают. Что хоть вторая война за отделение минула, но впереди ещё будет третья. Между Империей Миртрана и Федерацией нет практически никаких отношений. Они полностью не интересуют друг друга. + + Халифатский Божественный Конгломерат видит в гуманитарном и нравственном кризисе Федерации возможность распространения своей религии и идеологии. На территории государство действую группы проповедников, речи которых находят активный отклик в самых разных слоях населения. + + Гуманитарный, образовательный и нравственный кризис спровоцировал рост преступности. Межпланетарное Братство воспользовалось этим для расширение своего влияния из-за чего появляются всё более организованные ОПГ. + + Для решения экономических проблем Федерация учредила ряд зон с упрощённым налогообложением, ослабленным законодательством и прочими льготами для привлечения внешних корпораций. Это позволило привлечь немало внешнего капитала. Кроме того, из-за особенности планеты Крения на ней были построены судоверфи Космологистики. Космологистика также помогает со снабжение гуманитарной помощью из других государств. Из-за активности пиратов Федераия и её компании часто нанимаю для защиты транспорта авиагруппы корпорации Витезтви. Корпорация Гефест (Глобальная Инициатива) активно продаёт Федерации сырьё и еду. + + У Федерации нет отношений с Накамура Инжениринг, а с НаноТрейзен некоторое время были натянутые отношения из-за их тесного взаимодействия с Ноократией Эранта. Но сейчас отношения выправляются, и Умпорцы интересуются последними научными достижениями в некоторых важных для них областях. + +book-nooc-contents = + Центральной идеей устройства общества является система классов. Всего существует 15 классов. Они делятся по три на низшие, низкие, средние, высокие и высшие классы. + + Разделение по классам происходит на основе сложной проверки интеллектуальных способностей, которая включает в себя целый ряд испытаний, которые каждый гражданин происходит в возрасте 20-ти лет. Испытания проверяют знания, скорость обучения, работу мозга, интуицию, склонность к психическим заболеваниям, способность применять знания, собирать, усваивать и использоваться предметы и информацию в условиях экстренных ситуаций. Весь этот комплекс мероприятий в народе назван Экзамен. Результат Экзамена зачисляет гражданина в конкретный класс. По ходу жизни гражданин имеет право пересдавать Экзамен каждые два года. Оценка Экзамена составляется по шкале баллов Эранта. В шкале 300 баллов, и она разделена на 15 равных промежутков, которые и соответствуют классам. + + Низший класс (15-13) может претендовать на самые низкие должности - шахтёры, уборщики, работники канализации, чернорабочие, батраки на фермах и подобное. Тупой и монотонный тяжёлый труд. Низкий класс (12-10) может рассчитывать на низкоквалифицированные должности в различных конторах и предприятиях - секретари, клерки, техники, грузчики, монтёры, медсёстры, санитары, водители, солдаты и тому подобное. Не слишком ответственное дело. Средний класс (9-7) могут занимать профессиональные должности, но не выше определённого уровня - инженер, врач, фельдшер, лаборант, бухгалтер, офицер младшего состава и тому подобное. Важное и полезное занятие, но без заделов на руководство. Высокий класс (6-4) могут быть руководителями отделов, заведующими отделения, лабораториями, офицерами среднего состава и так далее. Эти люди важные и уважаемые начальники и руководители. Высший класс (3-1) – это директора, акционеры, члены правительства, высшие чины государства и армии и все подобные сильны сего мира и государства. + + Важно понимать, что высший класс пользуются благами, как у королей. У них есть личные слуги из более низких классов. Их слова — это практически закон. Они по одному движению руки получают всё, что хотят. Их личных счетов хватит на покупку целых городов, а у Умнейших и планет. Напротив, низший класс влачит жалкое существование. Заработанных денег едва хватает на поддержание жизни - базовое питание, уплату налогов, транспортные расходы. + + Очень часто классовое расслоение выражается и в раздельном проживании. Гетто низших, трущобы низких, кварталы средних, районы высоких и планеты высших. Это накладывает не просто сильный отпечаток на единстве общества, но приводит к практически полному регрессу института семьи. Желание жить как можно лучше закладывается в каждого гражданина с детства, и если у родителей появляется ребёнок, который после первого Экзамена оказывается более высокого класса, то он вполне может покинуть родителей и разорвать с ними связи. + + Культивирование личного таланта и интеллекта, а также возможностей, которые можно получить, применяя эти самые интеллект и талант становятся центральной идеей внутренней политики Ноократии. Но если в стремящейся к прибыли научной корпорации НаноТрейзен была организована полноценная и сложная система образования, которая требует на своё существование безумное количество сил и финансов, чтобы как можно большее количество образованных людей приносили как можно большее количество полезной работы и научно-технических достижений, то Ноократия на государственном уровне сформировала культ личности гения. Любого гения государства. При это гения природного. Очень часто редкие граждане, которые имеют врождённый талант крайне быстро поднимались по социальной лестнице классов и росли в карьере, тогда как трудолюбивые люди порой достигали границы, которую уже не в силах были преодолеть своим трудом. + +book-nakamura-contents = + Прибыль компании основана на продаже высокотехнологичной продукции. Массовая постройка производственных комплексов значительно удешевляет производство и вытесняет конкурентов с рынка. + + О колонизации. На изведанную солнечную систему прилетает колонизационная группа, состоящая из нескольких кораблей, которые терраформируют планеты и строят звездную электростанцию, которая снабжает электричеством все звездные системы. Номенклатура экспедиции состоит из двух кораблей-флагманов, нескольких вспомогательных шаттлов, нужных для организации логистики, а также корабль-танкер, способный выдерживать температуру звёзд. Впоследствии один корабль-флагман становится космической станцией-хабом, а второй используется службой безопасности для защиты колонии от внешних и внутренних угроз. + + Подробнее о колонизации Звезда. На ее орбите строят космическую электростанцию, которая, с помощью солнечных панелей вырабатывает массу энергии. Полученное электричество используют для синтеза антиматериевого топлива, которое впоследствии развозят на танкере по всем колониям. Всю работу на станции выполняют борги, люди не переносят высокую жару. + + Планета для сельского хозяйства. Колонизационный отдел выбирает планету с наиболее подходящей почвой для выращивания растительных культур и разведения скота. Впоследствии эту планету начинают терраформировать - Устанавливают генератор гравитации и создают благоприятную атмосферу на планете. После чего на нее завозят почву пригодную для выращивания еды, а также возводят станцию по добычи воды из атмосферы. Когда на планете появляется достаточно воды происходит массовая высадка генномодифицированных деревьев и растений, которые способны к быстрому фотосинтезу и высокой урожайностью. Когда воздушно-водный цикл способен стабильно поддерживаться, на планете начинают разводить домашний скот. Скот используют для получения мяса и удобрений. Большую часть работе на планете выполняют борги. Люди контролируют стабильность цикла, химический состав почвы и допустимость токсичности растений. + + Планета для добычи. Для этих планет выполняется не полный алгоритм терраформирования - Устанавливается генератор гравитации и строится завод для переплавки ресурсов. Всю работу на планете выполняют борги. + + Планета для производства. Для этих планет выполняется полный алгоритм терраформирования, за исключением посадки плодоносящих растений и разведения крупного домашнего скота. На этих планетах строят различные заводы и станции техобслуживания боргов. Именно на этих планетах выпускается лицензионная продукция компании Nakamura Engineering! На этих планетах основную работу выполняют борги, однако люди осуществляют контроль качества и управление заводами. + + Станция-хаб. Бывший колонизационный корабль-флагман. После доставки ресурсов для колонизации, данный корабль перестраивается в космическую станцию для управления колонией и связи с начальством секторов. + +book-vitz-contents = + 1) Разведывательная авиапара + + Два лёгких космических судна сделанных на манер истребителей-Разведчиков ОПЗ (машина класса «Комар» по документам Vitezstvi), но с облегчённой бронёй, большей скоростью и более слабыми орудиями. Пара состоит из ведущего и ведомого. Предназначена для скрытной авиаразведки. Часто авиапары посылают на простые задания и ставят в них новичков, чтобы они освоились перед настоящими опасными делами. + + + 2) Истребительная авиапара + + Два лёгких космических судна сделанных на манер истребителей-перехватчиков ОПЗ (машина класса «Лилия» по документам Vitezstvi). Пара состоит из ведущего и ведомого. Предназначена для патрулирования и охраны. Часто в пару к опытному ведущему-ветерану ставят ведомого-юнца, чтобы быстрей обучить его. + + + 3) Истребительное звено + + Пять лёгких машин, аналогичных используемых в соответствующей авиапаре. Подразделение включает в себя командира звена и четырёх ведомых. Предназначена для охраны транспортных судов, для поддержки бомбардировочных соединений, а также для изматывающих налётов на сухопутные силы. В звеньях служат уже полноценные состоявшиеся лётчики-истребители. + + + 4) Разведывательное звено + + Четыре машины, аналогичные используемым в соответствующей паре. Чаще всего разведчики равны друг другу по званию и среди них не выделяют командира, а лишь ответственного за задание. Данное подразделение предназначено для проведения разведки в зоне боевых действий, где всегда можно попасть под обстрел и погибнуть, а потому в этих звеньях служат лишь опытные пилоты, чья выживаемость всегда на высоте. + + + 5) Легкобомбардировочное звено + + Шесть машин, аналогичных по строению истребителям-бомбардировщикам ОПЗ (машина класса «Чарли» по документам Vitezstvi). В звено входят командир звена, зам.командира звена и четыре ведомых. Подразделение предназначено для атаки на крупные суда, для штурмовки планетарных сил, для уничтожения планетарных объектов, для отвлечения внимания ПВО и истребителей. Сюда поступают уже набравшиеся опыта в авиапарах истребители. Они быстро проходят курс обучения на бомбардировщика, стремительно приноравливаются к новому делу и сразу готовы к бою. + + + 6) Тяжелобомбардировочное звено + + Три машины, созданные на базе истребителей-бомбардировщиков ОПЗ. У них укреплена броня, увеличен размер и количество перевозимого бомбового вооружения, а также увеличена огневая мощь (машина класса «Барон» по документам Vitezstvi). При этом сильно страдает скорость и манёвренность. Подразделение не имеет командира, только ответственного за задание. Используется для поражения крупных судов, разрешения линий планетарных обороны, а также объектов производства, инфраструктуры или военных объектов. В эти подразделения идут служить только самые смелые пилоты-бомбардировщики, ибо полёт в медленной машине во многом зависит от качества стрелков и поддержки. + + + 7) Истребительная эскадрилья + + Состоит из трёх истребительных звеньев (15 машин «Лилия»). Предназначена для защиты караванов, крупных судов, а также для перехвата бомбардировщиков и для достижения превосходства в воздухе. + + + 8) Разведывательная эскадрилья + + Состоит из трёх разведывательных авиапар и двух разведывательных звеньев (14 машин «Комар»). Предназначена для проведения полного комплекса разведывательных мероприятий в зоне боевых действий. + + + 9) Легкобомбардировочная эскадрилья + + Состоит из трёх легкобомбардировочных звеньев (18 машин «Чарли»). Предназначена для ковровых бомбардировок, для массивных авиаударов, для уничтожения боевого порядка крупных судов в космосе. + + + 10) Тяжелобомбардировочная эскадрилья + + Состоит из трёх тяжелобомбардировочных звеньев (9 машин «Барон»). Предназначены для крупномасштабной стратегической бомбардировки на крупные планетарные объекты, а также для уничтожения купных космических судов. + + + 11) Истребительный авиаполк + + Состоит из одной разведывательной эскадрильи, пяти истребительных, а также ещё одного отдельного разведывательного звена и одного отдельного истребительного звена (всего 98 машин, из которых 18 «Комаров» и 80 «Лилий»). Предназначены для подавления и уничтожения всего малого летательного в зоне действия полка. + + + 12) Бомбардировочный авиаполк + + Состоит из одной разведывательной эскадрильи, одной истребительной, трёх легкобомбардировочных и двух тяжелобомбардировочных (всего 101 машина, из которых 14 «Комаров», 15 «Лилий», 54 «Чарли» и 18 «Баронов»). Предназначены для уничтожения планетарных линий фронта, а также для поражения крупных флотов. + + + 13) Специальный авиаполк + + Такие авиаполки формируют под требования командира авиаполка. В них встречаются всевозможные вариации, которые становятся необходимостью при применении определённых тактик или при необходимости следовать определённому сценарию сражений. + +book-gefest-contents = + Гефест был основан в конце XXII века, как частное космическое агентство, которое занималось добычей полезных ископаемых на Луне и Марсе. В дальнейшем компания начала добывать ресурсы на огромном поясе астероидов между Марсом и Юпитером. Также, агентство приняло участие в колонизации Марса и постройкой одной из первых космических станций на его орбите. Именно Гефест снабжал колонистов Марса ресурсами. В дальнейшем, компания начала добывать ресурсы во всей солнечной системе. + + После открытия плазмы, корпорация начала искать способы обнаружения ее в космосе. Как оказалось, планеты, в атмосфере которых, находилось приличное количество плазмы можно было обнаружить путем наблюдения - из-за особых физических свойств плазмы, даже незначительного звездного света хватало, чтобы атмосфера светилась фиолетовым цветом. + + Несколько веков бизнес Гефеста развивался в соответствии со всем миром, однако плазмы, впрочем, как и нефти было недостаточно, относительно масштабов ОПЗ. И если нефтяные месторождения можно найти на планетах с жизнью, то с плазмой дела обстояли сложнее. Руководство корпорации стремилось решить проблему плазменного и нефтяного голода. + + С помощью запатентованного метода специального радиоэлектронного анализа, разработанного профессором Рулевым, удалось узнать, что на краю галактики плазмы оказалось на несколько порядков больше, чем в изученной галактике. + + Экономика ОПЗ требовала все больше и больше плазмы, и с течением времени идеи о колонизации фронтира не казались такими дорогими как это могло показаться на первый взгляд. Череда удачных событий привела Гефест на фронтир. Вслед за Гефестом проследовали и другие корпорации. + + Как оказалось, на фронтире есть не только плазма, но множество артефактов, оставленные некогда великой цивилизацией, изучением которых занимаются другие корпорации. + + + По прибытии на фронтир Гефест начал разворачиваться, и активно начал строить маленькие колонии-поселения. Все дома были построены из специальных модульных блоков, части которых помещаются в стандартные грузовые контейнеры. Некоторые сооружения представляют из себя сломанные шаттлы, пострадавшие в результате работы. Все колонии выполняют строго определенную работу - добычу ресурсов, выращивание пищи, производство лекарств и удобрений. Такая система была введена для того, чтобы поселения изначально не были самодостаточными и зависели от других колоний и центрального управления. Однако, во всех колониях должен быть пункт охраны и хотя бы один врач и мэр. Количество колонистов на один населенный пункт не превышает сотни. + + С течением времени начали появляться новые жители-колонисты, которые были вынуждены работать на Гефест, у них просто не было выбора и средств на то чтобы выбраться с фронтира. Через несколько поколений среди молодежи стали появляться анти-корпоративные настроения основанные на желании выбраться из этого корпоративного рабства. + + Новые поколения не понимали, почему им приходится работать на корпорацию. Они не согласны с тем, что корпорации используют ресурсы их родной планеты во благо ОПЗ, а не во благо местного населения этой. Многие из них бежали из компании, часто с кражей дорогостоящего оборудования. Гефест, в свою очередь, решал данную проблему путем увеличения количества охраны. И если на момент начала колонизации в городах процент охраны составлял 5-10%, то после подобных событий их количество выросло до 20-30%. + + Ситуация изменилась, когда на фронтир прибыли и другие корпорации и у людей появился более обширный выбор работы. Многие не хотели вести преступную жизнь, а просто искали способ заработать денег и выбраться из этой дыры. Появилось множество независимых локальных компаний, основанными потомками беглецов. + + Гефест не вел преследования за людьми, которые ушли из компании, в розыске были только преступники, особенно проявившие себя. + +book-conarex-contents = + 2706 год. Эмиль Хотакайнен, владелец крупной компании по производству и продаже изделий медицинско-интимно-постельного применения, чьи магазины действовали по всему ОПЗ, составил завещание, оставив всю свою компанию старшему 28-милетнему сыну Симо. + + 2709 год. Симо Хотакайнен, будучи весёлым и немного безбашенным, понимает, что не хочет управлять такой компанией. Не лежит душа, а потому он её продаёт за невиданно большие деньги. + + 2710 год. Эгиль Хотакайнен, брат Симо, обвиняет брата в том, что тот продал семейный бизнес, которым владели многие поколения. Всё сводится к требованию денег, и Симо, без лишних слов, переводит ему на счёт половину. + + 2711 год. Симо решает уехать в слаборазвитые сектора, чтобы там основать новую компанию. Выбор падает на маленький сектор Лаксимус. + + 2713 год. Симо основал компанию Conarex, которая занялась производством двигателей для шаттлов и космических кораблей. + + 2717 год. Симо знакомится с представителями организации Эранта. Он заинтересовывается их идеями, а они его бизнесом. + + 2718 год. Помимо производства двигателей, Conarex начинает совершать грузовые перевозки между секторами Лаксимус и Рацио. + + 2721 год. В сферу работы попадает и сектор Импор. + + 2726 год. Ноократия объявляет независимость, а прошляпивший этот момент в организации Симо оказывается в другом, по сути, государстве. Ноократия даёт ему новую регистрацию компании и предлагает выгодные контракты на грузовые перевозки и производство. + + 2728 год. Умирает основатель Ноократии. А Симо почему-то думает, что это повлечёт за собой массовый спрос на шаттлы и начинает производство корпусов для них. + + 2730 год. Новая политика государства включает в себя активную колонизацию планет секторов Ноократии. Симо решает начать производство и систем навигации для шаттлов. + + 2740 год. К бездетному Симо Хотакайнену приезжает дочь его брата Эгиля, Лийса с сыном Онни. Симо узнаёт, что его брат тоже попытался основать компанию, но несколько раз дело прогорело, а сам Эгиль тяжело заболел и умер, обвиняя во всех несчастьях брата. + + 2743 год. Лийса видит безграничную доброту Симо, который воспринимает её не как племянницу, а как дочь. А её сына, как внука, и забывает все обиды отца. Она высказывает Симо своё мнение на жуткие порядки Ноократии. У Симо открываются глаза, и он начинает искать способ выведение своей компании из этого государства. + + 2744 год. Лийса выходит за муж за одного из молодых акционеров Космологистики. В течении года, она понимает, что весь брак был ради присоединения Conarex к Космологистике, а потому она расторгает брак и сохраняет свою фамилию. Хотя от второго мужа у неё остаётся сын Юхани. + + 2746 год. Симо переписывает компанию на племянницу, наказывает ей вывести Conarex из Ноократии и через несколько месяцев умирает. + + 2767 год. Лийса начинает общение с Умпором-Касой. Они вместе приходят к выводам о гнилом нутре Ноократии. + + 2772 год. Conarex начинает пассажирские перевозки. Многие обсуждения и сборища сепаратистов Умпор-Касы происходят на шаттлах Conarex. + + 2773 год. Прямо перед началом войны Лийса перевозит часть заводов в сектор Импор, а также начинает строительство ремонтных станций. + + 2779 год. Лийса погибает в бою с несколькими сподвижниками Умпора-Касы, оставляя компанию на сыновей Онни и Юхани. + + 2882 год. Conarex, которая осталась действовать и со стороны умпорцев, и со стороны ноократов помогает сепаратистам нанести удар по Мозговому центру Ноократии. Conarex объявляется вне закона в Ноократии. А её имущество национализируется. + + 2788 год. Conarex помогает посольским делегациям ОПЗ и ГИОР начать мирные переговоры между Умпорской Федерацией и Ноократией Эранта. ОПЗ востанавливает лицензию Conarex на производственную и транспортную деятельность в своих границах. + + 2790 год. Из-за разрухи и возрастания преступности Conarex создаёт департамент охраны. + + 2805 год. Conarex договаривает на получение лицензии в Великой империи Нотда. + + 2807 год. Умпорская Федерация просит полностью оснастить их торгово-транспортные маршруты. Conarex получает невиданное расширение влияния и финансов. + + 2813 год. Онни умирает, оставляя всё брату Юхани. + + 2814 год. Юхани чувствуя конец смерти оставляет компанию соракалетнему сыну Олафу Хотакайнену. + + 2836 год. Conarex распространилась по всей Великой Империи Нотда. А также пользуется старой лицензией в ОПЗ, чтобы распространить своё влияние на два их сектора. Conarex уж производит всё необходимое для шаттлов. + + 2841 год. Олаф передаёт компанию тридцатилетней дочери Анникки. + + 2845 год. Анники будучи очень пробивной, сильной и хитрой женщиной, умудряется подписать договор на временную лицензию с СССП! + + 2865 год. После 20-ти лет сотрудничества Анникки добивается постоянной лицензии у СССП и передаёт дело сыну Микелю Мадсену (Да. Матушка успела выйти замуж и сменить фамилию). + + 2877 год. Микель всё время занимался расширением производств, постройкой станций, наращиванием единиц торгово-пассажирского флота и улучшением качества обслуживания. Кроме того, Conarex начинает работу на Фронтире. + + 2889 год. Уже сын Микеля, Элиас, обеспокоенный ростом преступности начинает усиление департамента охраны, закупая оружие, снаряжение и технику у Витезтви, взамен поставляя им компоненты для боевых кораблей. + + 2890 год. Новая война Ноократии Эранта и Умпорской Федерации начинает сильно вредить развитию Conarex. Космологистика выдавливает их из Фронтира. + + 2891 год. Conarex начинает активное военное снабжение флотов и планетарных сил умпорцев. Из-за прекрасного снабжения даже в условиях попыток блокад, умпорские планетарные силы уничтожают почти все десантные силы Ноократии. + + 2907 год. Conarex снова становится пособником ГИОР по началу мирных переговоров. + + 2916-3023 год. Conarex начинает помогать разным государства доставлять гуманитарную момощь Федерации, соперничая в этом плане с Космологистикой. Соперничество продолжается до сих пор. Со стороны Космологистики выступает СНК, а со стороны Conarex СССП. За это время Элиас Мадсен передавал компанию племяннице Хелене Свенсон,а она своему сыну Матиасу Свенсону, который и сейчас является единоличным директором компании. + +book-petr-contents = + Петрищевцы верят, что единственный и необходимый путь для галактики — переход к Коммунистическим ценностям. Но Галактика отказалась это сделать мирно, когда отцы-революционеры СССП предложили это. Революция в ОПЗ показала, что социалисты и коммунисты могут сражаться за свои идеалы. После при образовании Петрищевцев выработалась идея, что истинные коммунисты должны, просто обязаны бороться со всем миром. + + Идеология выработалась радикальная. И в какой-то момент движение к цели заменило саму цель. Идеологи и отцы-командиры вся ещё говорят, что целью всей организации является установление Коммунизма во всей галактике, но, по большому счёту сейчас их целью скорей является заявление своего протеста миру. Все эти терракты, налёты, нападения, по мнению. Специалистов разных стран, скорей являются выпуском большой обиды нежели реальным движением к галактической революции. Бунтари, освободители, революционеры превратились даже не в фанатиков, а в простых экстремистов. + + В качестве задач Петрищевцы занимаются подрывом крупных «оплотов капитализма», охотятся на высокопоставленных «буржуев и толстосумов», налётами на суда «продажных угнетателей». Кроме того, краснорукавники часто пытаются освобождать тех, кто их об этом не просил - налетают на объекты крупных корпораций, казнят безопасников и командование, остальных выгоняют и взрывают объект. Но есть и важный фактор. При желании каждый может попросить Петрищевцев о помощи, указав на угнетение капиталистами. И с большой долей вероятности они явятся и действительно накажут угнетателей, при этом не требуя за это никакой мзды. Впрочем, принимают добровольные пожертвования на дело Революции. + + Несмотря на то, что Петрищевцы большей частью являются сбродом, у них выработался значительный культурный пласт. Он пронизывает всё, что окружает революционеров и является важным для них. Основан на символизме. + + Командиры рассказывают новобранцам, что рукава выкрашены в тёмные красные цвета, дабы показать, как глубоко готовы Петрищевцы окунуться в кровь, чтобы добиться равенства для всех пролетариев всех народов. И куртки их будут чёрными, пока не возвысится над всеми странами красные флаги! + + Все боевики вне зависимости от ранга носят одинаковую форму. Это соответствует Петрищевским идеалам всеобщего равенства. Каждый, будь то новобранец, бывалый боевик, специалист, ветеран или командир, носят одинаковые штаны, куртки с багровыми рукавами, одинаковые пилотки и сапоги. + + Плащ ветеранов и командиров олицетворяет окрашенное кровью угнетённого пролетариата красное знамя. Такие плащи доверяют лишь бывалым воякам и сподвижникам идей революции. Это большая честь, это настоящее признание бойца уважаемым Петрищевцем. + + Абсолютным почтением пользуются исторические революционные личности. На каждой базе Петрищевцев можно найти портреты, исторические труды или иную литературу посвящённую отцам-революции СССП и самым разным революционерам Старой Земли. Эти материалы часто используют в политбеседах с революционерами. Многие перечитываются, как библия революции. + + Петрищевцы живут на базах в атмосфере постоянного братства. Это уже больше, чем товарищество, хоть и зовут друг друга товарищами. Боевики просыпаются вместе, едят вместе, тренируются и занимаются снаряжением вместе, вместе идут в бой. У них нет своей собственности, кроме предметов личной гигиены и мелких мелочей. Им не из-за чего толком ругаться. + + Каждый без промедления готов отдать жизнь ради своих братьев-товарищей. Петрищевцы осознают, как на самом деле они одиноки в широкой галактике. И они осознают это особенно явно, когда встаёт вопрос разрыва с СССП и изгнания. Очень ярко это видно по шлемам скафандров, которые выглядят «плачущими, но опасными». Это ощущение одиночества, не исключительности, а именно одиночества усиливает то самое чувство братства! Петрищевцы всегда спасают своих товарищей. Пилоты десантных транспортов, никогда не покинут падающий шаттл, если на борту братья. + +book-saibasan-contents = + Заводы + + Не нужно много заводов, чтобы обеспечить всех электроникой. Тысячу лет назад несколько крупных предприятий хватало на обеспечение планеты. Сейчас после изменения технологии и многих веков модификаций методов изготовления и заводской техники несколько заводов уже способны обеспечить целый сектор. + + Заводы представляют собой крупные автоматические почти что конвейерные линии. Автоматически происходит всё - подготовка подложек, нанесение резистов, экспонирование, эпитаксия, металлизация и многое другое. Из-за этого все этапы производства находятся в чистых зонах, и им требуются сложные системы очистных сооружений. Таким образом большая часть заводского персонала – это инженеры тех. обеспечения коммуникаций, а также инженеры выходного контроля. + + + Дизайн центры + + Как правило — это небольшие офисы, расположенные в самых разных местах. В них работают инженеры-проектировщики схемотехники. Они занимаются разработкой схем по заказам различных предприятий и государств. Проектировка происходит, как полностью сквозная, с созданием полностью своей уникальной микросхемы, так и использующая готовые технологические шаблоны одной из имеющихся сборочных линий. + + + Технологически лаборатории + + Данных лабораторий не много. В них учёные-материаловеды и инженеры-технологи проводят исследования и эксперименты над различными параметрами и показателями, варьируя их и добиваясь куда лучших результатов характеристик! (на самом деле они достигают главной истины любого технолога - «Не ТРОГАЙ, МАТЬ ТВОЮ, НАСТРОЙКИ, А ТО Я ТЕБЕ БОШКУ РАЗНЕСУ!» + + + Административное отделение + + В это отделение входят бухгалтерия, директорат корпорации. Тут же отдел приёма заказов, подразделение спикеров и, как ни странно, информационная безопасность, которая на самом деле напрямую связана с директоратом. + + + Взаимодействие с обществом + + Ни у кого не было уверенности, что дочерняя компания корпорации Cybersun Industries, сможет быть чем-то помимо вспомогательного подразделения, созданного для уменьшения расходов на электронику. Но в итоге это, хоть и дочерняя, но крупная компания-производитель электроники, известная по всей изведанной Галактике. Приборы с чипами Saibasan – это гарантия качества и надёжности. + + + Активы корпорации + По большому счёту Saibasan обеспечивает электроникой (по примерноым расчётам) 4 сектора Фронтира, 2 сектора ОПЗ, 2 сектора Умпорской Федерации и 1 Сектор СНК. Посему у корпорации 45 заводов, 121 дизайн-центр, 9 технологических лабораторий и 10 административных отделений, одно из которых главное. + +book-unath-ptone-contents = + Мимика и Жесты + + В разговоре унатхи активно жестикулируют, задействуя свои руки и гибкий хвост. Менее экспрессивная чем у людей мимика компенсируется движением кожных складок и капюшонов. Сначала полагалось, что движение хвоста используется для трансляции конкретных эмоций, но на самом деле его значение сильно зависит от контекста и личности говорящего. Удары хвостом по земле могут означать восторг, нервозность, ярость, скуку, страх, или что-то совершенно иное – поэтому переводчик для унатхских жестов так и не был составлен. + + При менее формальном общении с семьей, друзьями и подчиненными, унатхи могут быть крайне тактильными. Для более хрупко сложенных рас, объятия, толчки и хлопки по телу могут быть чересчур сильными, и не каждому будет приятно ощущение когтей на коже. Ассимилируясь в общество, где мало сородичей, унатхи отучаются от подобных привычек, а вот навещая Моргха Унатх, путешественнику стоит приготовиться к такому отношению. + + + Одежда и Украшения + + Традиционная одежда унатхов обычно крайне открытая, с менее строгими стандартами пристойности, чем людская. Текстура материала играет меньшую роль, чем цвет, а в застёжках ценится прочность. Богатая одежда, в противоречие стандарту, очень тёплая и основана на большом количестве замысловато перекрывающих друг друга слоёв. В местах с прохладным климатом, тёплая одежда наслаждается значительно более утилитарным отношением и резко контрастирует с тропическими аналогами своей обыденностью. + + За годы контакта унатхи переняли человеческую одежду, слегка адаптировав её под свою анатомию. В сферах правления, бизнеса, науки и военного дела, человеческая форма одежды стала стандартной даже среди более традиционалистически настроенных родов. + + За пределами родного сектора одежда унатха больше определяется местной культурой, чем какими-то историческими предпочтениями, но некоторые всё равно будут выбирать более свободную одежду для труда, и более тёплую одежду для щегольства. + + Расположенные вдоль шеи и по бокам головы кожные складки и выступы часто украшаются пирсингом или тату. В рисунках преобладают абстрактные узоры с природными мотивами, которые не потеряют своего смысла или структуры при движении кожи. + + Многие унатхи берегут свои рога, хотя не у всех они встречаются, и их отсутствие не считается чем-то унизительным. Боязнь отколов и повреждений выливается в относительно низкую популярность каких-либо модификаций, но иногда можно встретить ящера с вырезанными на рогах узорами. Нарочное спиливание одного или обоих рогов, сверление и стачивание также имеют место быть, но редко. + + В попытках сгладить или наоборот — подчеркнуть естественные неровности черепа, унатхи обоих полов могут использовать краску и макияж. У мужчин встречаются искусственные костяные наросты, прикрепляющиеся на бровные дуги – подобное, как считается, придаёт образу внушительности и серьезности. + +book-unath-ptwo-contents = + Искусство + + Подобное влияние не обязательно было однобоким. После контакта людям открылся мир унатхского искусства. Пройдя через абсолютно другую историю, стили и устои их творчества значительно отличались от привычных людям, но были и объединяющие факторы, но были и параллели. Например, в унатхской живописи существовали одиночные портреты, однако большой популярностью пользовались массивные родовые и семейные картины, также выполнявшие функцию генеалогического древа. С одним отличием — вместо древовидной структуры, унатхские рода сплетались из множества лиан и ростков, вились вместе, потом расплетались снова или меняли свою конфигурацию. От всей запутанности некоторых образцов у зрителей могла закружиться голова. В целом, во всех визуальных медиумах унатхов часто присутствует больше мелких деталей, чем в человеческих. + + Как и музыка любой другой разумной расы, музыка унатхов предстает в невероятном количестве форм, так что покрыть её в достаточной степени в этой статье не представляется возможным. За последние сотни лет в музыке появилось бесчисленное множество электронных, синтезированных звуков, но унатхи не забывают и свои традиционные инструменты. Унатхские песни пользуются умеренной популярностью — некоторые находят их излишне громкими, с большей ролью ударных инструментов и меньшим упором в мелодию. + + С распространением ТрансЛита, к доступной людям части унатхского наследия присоединились кино и литература. Среди рассказываемых унатхами историй выделяется много отличных от человеческих архетипов. Одним из них являются ссен'гха — мореплаватели времён Золотого Века Морей, исследователи, послы, шпионы. Рассказами об их приключениях изобилует как литература унатхской современности, так и популярная культура. Человеческому наблюдателю будет удобно думать о ссен'гха, как об унатхских аналогах рыцарей или ковбоев — в той роли, которую они играют в культурном сознании общества. + + + Война и Мир + + По окончании Последней Войны в обществе унатхов одно из лидирующих мест заняли антимилитаризм и пацифизм. Всем было ясно одно — подобное не должно повториться никогда. Многие участники Кшеса Д’тхун, федерации-предшественника Унатхской Автономии, начали уменьшать свои армии, полагаясь на сеть тесных торговых и дипломатических связей для урегулирования конфликтов. С раннего возраста унатхам объясняли ужасы войны, и обучали способам решать конфликты без насилия. Молодым унатхам и унати показывали, что сотни лет мира привели к совместному процветанию, и поэтому у каждого разумного существа есть моральная обязанность не допустить войны. Такая практика сохранилась с незначительными изменениями до наших дней, но полтысячи лет назад ее популярность пошатнулась. + + Война с воксами, возникновение ненавидящей всех нелюдей Миртанийской Империи и военное присутствие ОПЗ пошатнули повальную веру в послевоенные идеалы. Часть унатхов начала рассматривать войну и армию как необходимые инструменты для обеспечения дальнейшего существования унатхской цивилизации, а пацифизм — как проявление слабости перед лицом неумолимого врага. Популярность унатхов в качестве солдат ОПЗ и наемников также повысила привлекательность милитаристских настроений. В наши дни военный сектор Моргха Унатх постепенно набирает во влиянии и богатстве, что выливается в растущее недовольство идеологической миролюбивостью. + +book-dione-contents = + Биология дион в своём роде уникальна хотя бы по той причине, что оно представляется собой сочетание биологии нескольких нимф и растенеобразного тела. + + Притом стоит отметить, что нимфы являются самобытным живым организмом, способным существовать без остальных нимф и древовидного тела. Посему у каждой нимфы есть собственные мозг, желудок, печень, почки, лёгкие, сердце и прочие органы. Но при этом в сочетании трёх нимф и древовидного тела некоторые органы начинали видоизменяться, своего рода, срастаясь с растениями тела. Для одной нимфы метаморфозы нескольких органов разом стали бы смертельны, потому нужно минимум три. У одной видоизменяется мозг, у второй – желудок, у третьей – лёгкие. + + По этим причинам примечателен процесс питания дион. При поглощении еды, диона посредством прочных побегов проталкивает пищу или жидкость в углубление в голове, где располагаются рты трёх нимф. Нимфы потребляют не равное количество еды. Нимфа с видоизменённым мозгом ввиду сравнительно малого (в сравнении с другими видоизменёнными органами вместе) энергопотребления есть всего седьмую часть всей еды, диона с видоизменёнными лёгкими – две седьмые, а нимфа с видоизменённым желудком получает в общей сложности четыре седьмые. Притом из полученной третьей нимфой пищи лишь четверть разлагается полностью и передаёт всю энергию самой нимфе, остальное раскладывается на простые сахара, минеральные вещества, углеводороды и воду. Видоизменённый желудок дионы соединяется напрямую с корнями растений. Это позволяет передавать питательные вещества и воду в растениевидное тело. Притом проводящей питательные вещества жидкостью является вода, которая насыщается получаемыми из еды минеральными веществами, витаминами и сахарами, становясь веществом, напоминающим берёзовый сок. + + Дополнительным механизмом питания и жизнеобеспечения является химосинтез, который у дион отличается от фотосинтеза классических растений несколькими деталями и протекает в видоизменённых лёгких одной из них. Это всё ещё квантовохимическое взаимодействие, которое способно за счёт энергии разделять молекулы воды и углекислого газа, формируя молекулярный кислород и простые сахара для питания растениевидного тела (через похожую корневую систему, сплетённую с альвеолами видоизменённых лёгких одной из нимф). Притом энергия, необходимая для химосинтеза, в отличии от фотосинтеза, получается не от поглощения квантов света, а от энергии, получаемой из расщеплённой пищи в желудке нимфы. Получаемый избыток молекулярного кислорода, может быть, не только поглощён лёгкими производящей его нимфы, но и выйти наружу для дыхания двух других. Так дионы способны буквально дышать углекислым газом. + + Видоизменённый мозг одной из нимф является сравнительно небольшим потребителем энергии и к тому же соединён с мозгами других нимф, но является руководящим органом принятия решений. + +book-bss-contents = + Тут описаны бесчисленные диаграммы, графики, картинки и сотни формул, что поднимают вопросы от квантовой механики атомного строения до орбитальной динамики... + + Если же описывать всё очень кратко, то необходимо вспомнить о неопределённостях Гейзенберга. И да, она не одна! Их две. Первая говорит о том, что нельзя одновременно понять, где объект и куда с какой скоростью движется. Всегда будет погрешность. Вторая говорит, что одновременно нельзя определить изменение энергии объекта и время изменения. И эти неопределённости взаимосвязаны. + + Что же это для нас значит? Что всегда есть вероятность, что мы не тут, не туда, не так быстро, не за это время и не с такой энергией. А в случае БСС самым важным становится вопрос... Где? Где шаттл. + + Так вот. Мы не видим шаттл, но нам сказали, что оно находится в неком месте. Но есть вероятность, что он находится в другом. И чем больше колебания энергии, тем больше погрешность этого самого места. То есть, если вложить ну ОЧЕНЬ много энергии, то появится вероятность нахождения шаттла ну ОЧЕНЬ далеко. + + Тут в дело вступают Блюспейс-кристаллы и Блюспейс-модуль двигателей. Кристаллы способны сохранить, а потом дать огромное количество энергии, а модуль способен принять всю эту энергию и запустить колебание вол вероятности такого масштаба, что шаттл просто... окажется в другом месте - квантово туннелирует через пространство. + +book-scaf-contents = + EVA скафандры + + Образовано от сочетания слов на старом языке землян Extra-Vehicular Activity, что обозначало внетранспортную деятельность, подразумевая, что это скафандр для выхода из космического шаттла в открытый космос. Скафандры серии EVA появились ещё до NT, по большому счёту эта серия была повторением успехов старых скафандров, но с использованием новых материалов. Их оболочка включала в себя три слоя + + 1) Внутренний слой. Является теплоизоляционным и герметизирующим. Предотвращает потерю тепла и выход газовой смеси из скафандра. Используется полимерный композитный материал на основе резины. + + 2) Защитный слой. Является армированным стали-полимерным нетканым материалом для погашения ударов мелких космических объектов, вроде пыли и крохотных частичек космического мусора с орбитальными скоростями. + + 3) Внешний слой. Он исполняет больше эстетическую функцию. Он скрывает внутренние неровности, трубки и крепления. Кроме того, именно на этот слой наносится краска, которая позволяет разделять EVA скафандры по типам - тюремный, аварийный и т.д. + + + Скафандры специалистов по работе в открытом космосе + + Следующие итерацией развития скафандров после достижения пределов серией EVA стала разработка принципиально новой серии скафандров. И первым в серии стал скафандр для работы в открытом космосе. Это было совершенно необходимо для строительство новых космических объектов прямо в космосе, для проведения диагностики внешних покровов космических объектов, а также для прочих работ. Скафандр конструировали таким образом, чтобы погасить большую часть вероятных рисков космоса. Из-за этого скафандр насчитывал четыре слоя + + • 1) Дереакционное покрытие. Покрытие, сделанное из слабоактивных композитов, что предотвращает деградацию других слоёв, при попадании скафандра в условия действия кислотной атмосферы. + + • 2) Бронированный слой. Второй внешний стальной пластинчатый слой, который должен был защитить внутренние слои и оператора от скоростной встречи даже со средним космическим мусором, а также мог спасти жизнь, если происходила авария, сопровождающаяся взрывом. + + • 3) Антирадиационный экран. Сделан из листового свинца. Третий слой. Тяжёлый, но дешёвый и блокирует около половины всей космической радиации практически от любой звезды или иного источника. + + • 4) Внутренний слой. Выполнен из достаточно армированного прорезиненного композита. Он препятствует переохлаждению. А также может защитить от ударов о небольшие предметы. + + Создатели вдохновлялись Земными латными доспехами эпохи позднего Средневековья. Пластинчатое покрытие позволяло быть защищённым от крупных ударов и при этом иметь определённую мобильность. Но при этом от удара, скажем, ножа или укуса кого-нибудь хищного защищал в результате только внутренний крепкий, но не непробиваемый слой. Впрочем... где в космосе можно попасть на нож или клык… Помимо этого, скафандр вышел банально слишком тяжёлым. В нём неудобно было заниматься строительством, даже в условиях невесомости. В целом разработка не была признана провальной, но требовала доработки. Да и вообще руководство НТ считало эти скафандры лучше серии EVA, а потому развернуло массовое производство, но дала команду конструкторам облегчить модель, добавив больше удобства. + + Облегчённый скафандр изобретали не долго. Сперва сильно сократили толщину свинцового слоя. Затем уменьшили количество стальных пластин. Убрали армирование и переработали структуру внутреннего слоя. Скафандр защищал не так сильно, но был всё ещё шагом вперёд в сравнении с серией EVA. Инженеры продолжили скептически относиться к данному новшеству, но специалисты по утилизации обломков приняли такие скафандры, как вторую кожу, потому ныне их и зовут скафандрами утилизаторов. + +book-mbsone-contents = + Модуль «Маяк-01» + + В первой своей итерации учёные начали решать проблему нестабильности посредством разработки расчётного модуля «Маяк-01», способного более точно настроить колебания вол вероятностей. Установка на шаттл и испытания в рамках прыжков в пределах солнечной системы показали отличные результаты. Но уже при испытании на межсистемном скачке случилась авария и связь с шаттлом была утеряна. Новые эксперименты были приостановлены и началась длительная серия моделирования. Результаты не дали объяснения, и инцидент бы признан случайной ошибкой, и была отдана санкция на его повторение. + + В результате повторного эксперимента новый шаттл снова пропал. Стало ясно, что это не ошибка и началась новая «эпоха» скрупулёзных тестов, которые не давали результатов. Но через год, к радости инженеров, второй потерянный шаттл вернулся. Записи «черного ящика» показали, что взаимодействие БС-модуля двигателей с волнами квантовой вероятности повлияли также и на вероятностные процессы в электронике шаттла и особенно в модуле «Маяк-01», что привело не к точной настройке, а к большей нестабильности, что усугубило проблему. + + + Суперкомпьютер «Маяк-02» + + Выяснилось, что для таких задач никакого модуля не хватит. В любом случае размещение его на шаттле приводит к плачевным последствиям. Постепенно улучшая систему и наращивая расчётную мощность, увеличивая надёжность и добавляя системы, препятствующие искажению вероятностных волн, инженеры превратили модуль в целый суперкомпьютер «Маяк-02». + + Суперкомпьютер располагался на важных космических узлах. Например, на транспортных станция и космопортах. Результаты его использования вдохнули в идеи покорения дальнего космоса новую жизнь. Расчёты получались столь точны, что расхождение в координатах назначенных и полученных составляли всего несколько километров. При этом суперкомпьютер обладал и существенными недостатками + + 1. Время расчёта скачка порой составляло несколько суток. (И для каждого корабля группы отдельно) + + 2. Производство суперкомпьютера было сверхдорогим и очень долгим. + + 3. Использование суперкомпьютера было сопряжено с значительными энергозатратами, а именно требовалась небольшая электростанция. + + 4. Он мог отправить только в одну сторону, но не мог вернуть. + + Был совершён эксперимент, при котором суперкомпьютер отправлял шаттл с таким же суперкомпьютеров целевую систему, затем требовалось развернуть в целевой системе электростанцию, подстанцию, коммуникации и установить суперкомпьютер. Идея была чрез чур авантюрно с самого начала. Требовалось быстро возвести космическую станцию, способную обслуживать столь ценное и сложное оборудование. Любой незначительный негативный фактор мог всё испортить. + + Провал эксперимента подал идею создания отправляемого спутника-маяка. + + + Спутник «Маяк-03» + + На помощь пришли промышленные квантовые компьютеры. Они позволили упростить вычисления, производимые суперкомпьютером, хотя и делали их куда менее точными. При этом новый модуль требовал на много меньше энергии, был сложен в производстве, но, как ни странно, сравнительно дешёвым. + + Важнейшей особенностью нового прототипа была поразительная защита от воздействия БС-модуля. Квантовый компьютер «Маяка-03» был способен находить «битые» данные и расчёты после воздействия колебаний вероятностных вол, и сам их устранял при помощи крайне специфических автоматизированных способов исправления ошибок. + + Всё это позволило создать серию лёгких спутников, которые практически случайно рассылались в разные звёздные системы. После прибытия спутники начинали посылать сигнал отбоя, сообщающий, что всё в порядке, или посылающие сигналы ошибки, сообщающие, что со спутником что-то случилось. также часто случалось, что спутник переставал передавать сигналы, что могло служить признаком его уничтожения. + + Рассылка спутников способствовало колонизации и следованиям дальнего космоса. Но всё ещё оставалась значительная погрешность вычислений и ненадёжности систем даже в уже проложенных путях. Маршруты были налажены, но раз в Земной квартал несколько шаттлов уничтожались или пропадали без вести. + +book-mbstwo-contents = + Искажатели «Маяк-04» и «Маяк-05» + + Рывок произошёл, когда длительные фундаментальные исследования Блюспейса и плазмы позволили создавать искажения в волнах вероятности в определённом радиусе вокруг искажателя «Маяк-04». Суть искажения была в притягивании объектов, находящихся в Блюспейс пространстве, к себе. Проблема была лишь в том, что после притягивания, шаттл врезался в искажатель и уничтожал его, то есть система была одноразовой. + + Следующая итерация, «Маяк-05», получила сложный вычислительный модуль. Который был на самом деле переработанным модулем «Маяк-01», но с технологиями квантовой электроники. Новый модуль позволил «вытягивать» шаттлы из Блюспейс пространства на некотором небольшом расстоянии от себя (с погрешностью). + + + Установка «Маяк-06» + + Определённая кульминация серии маяков стала, когда было решено объединить суперкомпьютер «Маяк-02», который переработали, сделав дешевле, быстрей и энергоэффективней, спутник «Маяк-03» и искажатель «Маяк-05». В результате вышла крупная и дорогая установка «Маяк-06», которая давала возможность вычислять прыжки для нескольких шаттлов, а также принимать прилетающие шаттлы и делать всё так, чтобы многие потоки шаттлов между собой не врезались. Это наиболее современная система, устанавливаемая на космических объектах, станциях, верфях, портах. + + + Искажатель «Маяк-07» + + На данный момент это последняя разработанная итерация технологии. Это громадная и крайне мощная версия искажателя «Маяк-05», совмещённая с переработанным суперкомпьютером. Особенностью его является то, что она «вытягивает» объекты не в радиусе, а вытянутой полосе. Это позволило создать установку, способную реализовывать таможенный контроль на границе секторов, заставляя все шаттлы перемещаться к таможенно-пограничной станции. + + Особенностью выступает то, что на длину полосы «вытягивания» влияют самые разны параметры, а потому порой она сокращается или удлиняется. Это даёт некоторое пространство для реализации возможностей различных челноков, подпольных организаций, террористов, контрабандистов и товарищей с чёрного рынка. + + + Искажатель «Маяк-08» + + Искажать «Маяк-04» имел и иной путь развития, нежели выведение судов из БС пространства к самому маяку на некоторое расстояние. Новая модель была оснащена куда более скромным расчётным модулем, менее чувствительными сканерами, но большей мощностью. Кто-то с иронией считал, что такая модель только и способна, что вытягивать к себе линкоры. Остальным объектам просто не хватило бы энергии, чтобы быть точно замеченными. Но идея изобретателей была не в этом. Данный маяк был способен притягивать к себе высокоэнергетические объекты. То есть субстанции. Которые и без БС-модуля имели огромный отклик в пространстве энергий. Например, сбежавшие из-под контроля сингулярности. Таким образом «Маяк-08» стал серьёзным ответом всем тем обществам, которые ежегодно и ежемесячно твердили об отказе в использовании сингулярных двигателей по причине существования вероятности аварии с их побегом и дальнейшим прилётом непойми куда и созданием ещё большей аварии. Теперь сингулярности можно было ловить. + +book-implants-contents = + Импланты NT + + Во время решения ряда проблем, связанного с секретностью, доступом и безопасностью руководство пришло к выводу, что в конкретных частных, но порой регулярно встречающихся ситуациях ни в коем случае нельзя полагаться ни на какое снаряжение. И причина этому весьма проста - снаряжение можно снять. То есть в спешке, по небрежности или под воздействием злого умысла сотрудник может утерять нечто важное. Чтобы преодолеть эту сложность руководство NT учредило грант на создание подкожных имплантов, способных хоть в малой степени заменить некоторые виды снаряжения. + + + Имплант трекера + + Данный имплант устанавливается в грудную клетку неподалёку от сердца. Сердце является мышцей, которая постоянно пребывает в движении. А от того постоянно генерирует поверхностное напряжение, которого хватает на поддержание работы импланта. Помимо системы зарядки от мышцы имплант имеет антенну-передатчик, которая при каждом движении сердечной мышцы генерирует сигнал. Сигнал достигает антенн системы внутренней связи объекта НТ, а затем АЛУ (Арифметическо-Логическое устройство) при помощи Фурье-преобразований устанавливает положение импланта и передаёт данные на сервер. Таким образом трекер – это система локального позиционирования, но под кожей. Было бы глупо, если бы при остановке сердца от, скажем, инфаркта или прочих неприятных ситуаций имплант вышел из строя. А потому в него встроек небольшой аккумулятор, продолжающий работу импланта после тревожного использования. + + + Имплант света + + Имплант света представляет собой небольшой, но достаточно мощный светодиодный фонарик на аккумуляторе, и устанавливается в руку. Очевидной проблемой может стать подзарядка аккумулятора, но решение подсказали древние фонарики тысячелетней давности с рычажной подзарядкой. Но в случае импланта рычагом для подзарядки являются мышцы. Носитель может совершить несложные движения рукой и подзарядить батарею своего фонарика, что делает имплант крайне полезным и долговечным. + + + Имплант грустного тромбона + + Имплант устанавливается в район диафрагмы. Имеет в себе небольшой аккумулятор, сторожевой таймер, небольшой чип логики и динамик. При дыхании происходит периодическое расширение и сужение диафрагмы, что совершенно не влияет на имплант. Если же диафрагма перестаёт, то начинается отсчёт секунд на сторожевом таймере. Если время превышает среднее максимальное время задержки дыхания, то сторожевой таймер переполняется и активирует чип, заставляя динамик издать грустный тревожный звук. + + + Имплант водокодера + + Встраивается в горло. Имплант включает в себя матрицу подвижных наночастиц, которые способные перестаиваться, «нарастая» и изменяя параметры голосовых связок из-за чего они начинают звучать иначе. Для регулировки требуется итерационное взаимодействие с подкожными регуляторами частоты и тембра. А именно требуется повернуть регулятор и тут же что-то произнести, дабы проверить звучание. + + + Имплант хонк + + И кто-то же придумал идею, что ряду сотрудников понадобится, возможно, издать громкий предупреждающий звук в ситуации, когда, скажем, коридор заполнен стоящими сотрудниками, мешающими пройти. Для этого был разработан имплант он, работающий аналогично импланту света. Четырёх-шести сгибаний руки хватит, чтобы зарядить батарею импланта и издать громкий предупреждающий звук. + + + Mindshield (майндшилд или имплант защиты разума) – имплант защиты разработки корпорации NanoTrasen, позволяющий нивелировать гипнотическое или психологическое воздействие на носителя. + + Имплант представляет из себя вычислительный чип, микросканер ЭЭГ и сложную сеть искусственный нейронов, а также чип, создающий искусственное увеличение лояльности к корпорации НаноТрейзен. Имплант является сложным в производстве, поэтому даже не весь состав станции удостоен быть носителем данного импланта, впрочем, со временем долгих исследований и модификаций, учёным удалось добиться того, что устанавливать его стало сравнительно просто любому обученному врачу при помощи имплантера стандартного образца. Использование искусственных нейронов позволяет как сканировать активность лобной доли головного мозга, выявляя гипноз или психологическое воздействие, так и стимулировать лобную кору, чтобы вывести мозг в нормальное состояние и избавиться от гипноза или психологического воздействия. Данный имплант постоянно сканирует лобную долю носителя, точно соотносит отклонения от нормы, достигая точности нивелирования гипноза или психологического воздействия на 99%. Работает, если воздействие на носителя протекает малое количество времени, иначе действия гипноза входит в нормальное состояние мозга, перестраивая структура мозга, чьи нейронные сети постоянно видоизменяются, и вывести носителя в первоначальное состояние используя имплант невозможно. diff --git a/Resources/Locale/ru-RU/health-examinable/health-examinable-carbon.ftl b/Resources/Locale/ru-RU/health-examinable/health-examinable-carbon.ftl index e4a23173669..4e20119b024 100644 --- a/Resources/Locale/ru-RU/health-examinable/health-examinable-carbon.ftl +++ b/Resources/Locale/ru-RU/health-examinable/health-examinable-carbon.ftl @@ -11,3 +11,9 @@ health-examinable-carbon-Heat-25 = [color=orange]{ CAPITALIZE($target) } име health-examinable-carbon-Heat-50 = [color=orange]{ CAPITALIZE($target) } имеет сильные ожоги на теле.[/color] health-examinable-carbon-Heat-75 = [color=orange]{ CAPITALIZE($target) } имеет ожоги третьей степени на теле![/color] health-examinable-carbon-Shock-50 = [color=lightgoldenrodyellow]{ CAPITALIZE($target) } имеет следы поражения током по всему телу![/color] +health-examinable-carbon-Cold-25 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } minor frostbite across { POSS-ADJ($target) } body.[/color] +health-examinable-carbon-Cold-50 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } major frostbite across { POSS-ADJ($target) } body.[/color] +health-examinable-carbon-Cold-75 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } severe third-degree frostbite across { POSS-ADJ($target) } body![/color] +health-examinable-carbon-Caustic-25 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } minor chemical burns.[/color] +health-examinable-carbon-Caustic-50 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } chemical burns across { POSS-ADJ($target) } body.[/color] +health-examinable-carbon-Caustic-75 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } severe chemical burns all over { POSS-ADJ($target) } body![/color] diff --git a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl index 242243f0a2c..8bb1eecf606 100644 --- a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl @@ -58,11 +58,25 @@ petting-success-honkbot = Вы гладите { $target } по его сколь petting-success-mimebot = Вы гладите { $target } по { POSS-ADJ($target) } холодной металлической голове.. petting-success-cleanbot = Вы гладите { $target } по его влажной металлической голове. petting-success-medibot = Вы гладите { $target } по его стерильной металлической голове. +petting-success-generic-cyborg = You pet { THE($target) } on { POSS-ADJ($target) } metal head. +petting-success-salvage-cyborg = You pet { THE($target) } on { POSS-ADJ($target) } dirty metal head. +petting-success-engineer-cyborg = You pet { THE($target) } on { POSS-ADJ($target) } reflective metal head. +petting-success-janitor-cyborg = You pet { THE($target) } on { POSS-ADJ($target) } damp metal head. +petting-success-medical-cyborg = You pet { THE($target) } on { POSS-ADJ($target) } sterile metal head. +petting-success-service-cyborg = You pet { THE($target) } on { POSS-ADJ($target) } dapper looking metal head. +petting-success-syndicate-cyborg = You pet { THE($target) } on { POSS-ADJ($target) } menacing metal head. petting-failure-honkbot = Вы тянетесь погладить { $target }, но { $target } хонкает и уворачивается! petting-success-recycler = Вы гладите { $target } по { POSS-ADJ($target) } слегка пугающему стальному покрытию. petting-failure-cleanbot = Вы тянетесь погладить { $target }, но { $target } занят уборкой! petting-failure-mimebot = Вы тянетесь погладить { $target }, но { $target } занят мимированием! petting-failure-medibot = Вы тянетесь погладить { $target }, но { $target } едва не пронзает вашу руку шприцом! +petting-failure-generic-cyborg = You reach out to pet { THE($target) }, but { SUBJECT($target) } { CONJUGATE-BE($target) } busy stating laws! +petting-failure-salvage-cyborg = You reach out to pet { THE($target) }, but { SUBJECT($target) } { CONJUGATE-BE($target) } busy drilling! +petting-failure-engineer-cyborg = You reach out to pet { THE($target) }, but { SUBJECT($target) } { CONJUGATE-BE($target) } busy repairing! +petting-failure-janitor-cyborg = You reach out to pet { THE($target) }, but { SUBJECT($target) } { CONJUGATE-BE($target) } busy cleaning! +petting-failure-medical-cyborg = You reach out to pet { THE($target) }, but { SUBJECT($target) } { CONJUGATE-BE($target) } busy saving lives! +petting-failure-service-cyborg = You reach out to pet { THE($target) }, but { SUBJECT($target) } { CONJUGATE-BE($target) } busy serving others! +petting-failure-syndicate-cyborg = You reach out to pet { THE($target) }, but { POSS-ADJ($target) } treacherous affiliation makes you reconsider. hugging-success-generic = Вы обнимаете { $target }. hugging-success-generic-others = { CAPITALIZE($user) } обнимает { $target }. fence-rattle-success = *бдзынь* diff --git a/Resources/Locale/ru-RU/medical/components/health-analyzer-component.ftl b/Resources/Locale/ru-RU/medical/components/health-analyzer-component.ftl index 6aae0a99c32..7bbec446b53 100644 --- a/Resources/Locale/ru-RU/medical/components/health-analyzer-component.ftl +++ b/Resources/Locale/ru-RU/medical/components/health-analyzer-component.ftl @@ -12,3 +12,4 @@ health-analyzer-window-scan-mode-text = Режим сканирования: health-analyzer-window-scan-mode-active = АКТИВЕН health-analyzer-window-scan-mode-inactive = НЕАКТИВЕН health-analyzer-window-malnutrition = Тяжёлое недоедание +health-analyzer-popup-scan-target = { CAPITALIZE(THE($user)) } is trying to scan you! diff --git a/Resources/Locale/ru-RU/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl b/Resources/Locale/ru-RU/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl index 142f5c29a5d..3d542dbe141 100644 --- a/Resources/Locale/ru-RU/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl +++ b/Resources/Locale/ru-RU/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl @@ -4,14 +4,18 @@ particle-accelerator-control-menu-service-manual-reference = См. стр. 132 particle-accelerator-control-menu-device-version-label = Ускоритель частиц Mark 2 particle-accelerator-control-menu-power-label = Питание: particle-accelerator-control-menu-strength-label = Сила: -particle-accelerator-control-menu-alarm-control = - МОЩНОСТЬ ЧАСТИЦ - СБОЙ ОГРАНИЧИТЕЛЯ +particle-accelerator-control-menu-alarm-control-1 = [bold][color=red]PARTICLE STRENGTH[/bold][/color] +particle-accelerator-control-menu-alarm-control-2 = [bold][color=red]LIMITER FAILURE[/bold][/color] particle-accelerator-control-menu-scan-parts-button = Сканировать части particle-accelerator-control-menu-check-containment-field-warning = Убедитесь, что сдерживающее поле активно! particle-accelerator-control-menu-foo-bar-baz = FOO-BAR-BAZ +particle-accelerator-control-menu-status-unknown = [font="Monospace"][color=red]Unknown[/color][/bold] particle-accelerator-control-menu-status-label = Статус: { $status } particle-accelerator-control-menu-status-operational = Работает particle-accelerator-control-menu-status-incomplete = Не завершено +particle-accelerator-control-menu-draw-value = [font="Monospace"]{ $watts }/{ $lastReceive }[/font] particle-accelerator-control-menu-draw-not-available = Мощность: Н/Д +particle-accelerator-radio-message-on = PA power has been switched on. +particle-accelerator-radio-message-off = PA power has been switched off. +particle-accelerator-radio-message-num = PA strength has been set to level { $level }. particle-accelerator-control-menu-draw = Мощность: { $watts }/{ $lastReceive } diff --git a/Resources/Locale/ru-RU/portal/swap-teleporter.ftl b/Resources/Locale/ru-RU/portal/swap-teleporter.ftl index 80a888ac450..67faeb8e292 100644 --- a/Resources/Locale/ru-RU/portal/swap-teleporter.ftl +++ b/Resources/Locale/ru-RU/portal/swap-teleporter.ftl @@ -5,6 +5,7 @@ swap-teleporter-popup-link-destroyed = Квантовая связь разор swap-teleporter-popup-teleport-cancel-time = Устройство перезаряжается! swap-teleporter-popup-teleport-cancel-link = Не связано с другим устройством! swap-teleporter-popup-teleport-other = { CAPITALIZE($entity) } активируется, и вы оказываетесь в другом месте. +swap-teleporter-popup-teleport-fail = { CAPITALIZE(THE($entity)) } activates and fails to transport you anywhere. swap-teleporter-verb-destroy-link = Разорвать квантовую связь swap-teleporter-examine-link-present = [color=forestgreen]Имеется квантовая связь с другим устройством.[/color] Alt-клик чтобы разорвать квантовую связь. swap-teleporter-examine-link-absent = [color=yellow]Квантовая связь отсутствует.[/color] Используйте на другом устройстве, чтобы установить квантовую связь. diff --git a/Resources/Locale/ru-RU/prayers/prayers.ftl b/Resources/Locale/ru-RU/prayers/prayers.ftl index 058813de02d..a4f74781c0c 100644 --- a/Resources/Locale/ru-RU/prayers/prayers.ftl +++ b/Resources/Locale/ru-RU/prayers/prayers.ftl @@ -1,14 +1,17 @@ prayer-verbs-subtle-message = Скрытое послание prayer-verbs-pray = Помолиться prayer-verbs-call = Позвонить +prayer-verbs-rub = Rub prayer-chat-notify-pray = МОЛИТВА prayer-chat-notify-honkmother = ХОНКОМАТЕРЬ prayer-chat-notify-centcom = ЦЕНТКОМ prayer-chat-notify-syndicate = СИНДИКАТ +prayer-chat-notify-lamp = LAMP prayer-popup-notify-honkmother-sent = Вы оставили голосовое сообщение Хонкоматери... prayer-popup-notify-centcom-sent = Вы оставили голосовое сообщение Центральному командованию... prayer-popup-notify-pray-sent = Ваша молитва была направлена богам... prayer-popup-notify-syndicate-sent = Вы оставили голосовое сообщение Верховному командованию Синдиката... +prayer-popup-notify-lamp-sent = Your thoughts seem to echo... prayer-popup-notify-pray-locked = Вы не чувствуете себя достойным... prayer-popup-subtle-default = Вы слышите голос в своей голове... prayer-popup-notify-pray-ui-message = Послание diff --git a/Resources/Locale/ru-RU/replays/replays.ftl b/Resources/Locale/ru-RU/replays/replays.ftl index aadb79a3ace..77701db2aff 100644 --- a/Resources/Locale/ru-RU/replays/replays.ftl +++ b/Resources/Locale/ru-RU/replays/replays.ftl @@ -38,3 +38,4 @@ replay-verb-spectate = Наблюдать cmd-replay-spectate-help = replay_spectate [сущность (опционально)] cmd-replay-spectate-desc = Прикрепляет или открепляет локального игрока к заданному uid сущности. cmd-replay-spectate-hint = Опциональный EntityUid +cmd-replay-toggleui-desc = Toggles the replay control UI. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl index d8941b7c467..569f82486c8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl @@ -46,6 +46,8 @@ ent-ClothingBackpackDuffelSyndicateC4tBundle = { ent-ClothingBackpackDuffelSyndi ent-ClothingBackpackChameleonFill = { ent-ClothingBackpackDuffelSyndicate } .suffix = Заполненный, Хамелеон .desc = { ent-ClothingBackpackDuffelSyndicate.desc } +ent-ClothingBackpackDuffelSyndicateRaidBundle = syndicate raid suit bundle + .desc = Contains the Syndicate's durable raid armor suit. ent-ClothingBackpackDuffelSyndicateEVABundle = { ent-ClothingBackpackDuffelSyndicate } .suffix = набор EVA Синдиката .desc = { ent-ClothingBackpackDuffelSyndicate.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl index 905f472f84e..6e70c30df32 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/clothing/neck/pins.ftl @@ -1,18 +1,36 @@ +ent-ClothingNeckAtharaPin = starry sky pin + .desc = The pin of starry sky. ent-ClothingNeckUSSPPin = значок СССП .desc = Значок Союза Советских Социалистических Планет. +ent-ClothingNeckCorvaxPin = cluster pin + .desc = The pin of cluster. ent-ClothingNeckDonkPin = значок Donk .desc = Значок корпорации Donk. ent-ClothingNeckEarthPin = значок Земли .desc = Значок Объединённого Правительства Земли. +ent-ClothingNeckEchoPin = comet pin + .desc = The pin of comet. +ent-ClothingNeckElysiumPin = dark planet pin + .desc = The pin of dark planet. ent-ClothingNeckLogistikaPin = значок Logistika .desc = Значок корпорации Kosmologistika. +ent-ClothingNeckMainPin = rocket pin + .desc = The pin of rocket. ent-ClothingNeckDeForestPin = значок DeForest .desc = Значок корпорации DeForest. ent-ClothingNeckNakamuraPin = значок Nakamura .desc = Значок корпорации Nakamura Engineering. ent-ClothingNeckNanoTrasenPin = значок Nanotrasen .desc = Значок корпорации Nanotrasen. +ent-ClothingNeckNebulaPin = nebula pin + .desc = The pin of nebula. +ent-ClothingNeckNovaPin = ring planet pin + .desc = The pin of ring planet. ent-ClothingNeckSyndicakePin = значок Синдикекса .desc = Значок Синдикексов, на обратной стороне можно разглядеть ряд цифр "2559". +ent-ClothingNeckSolarisPin = space cheese pin + .desc = The pin of space cheese. ent-ClothingNeckVitezstviPin = значок Vitezstvi .desc = Значок корпорации Vitezstvi. +ent-ClothingNeckWhiteListPin = quasar pin + .desc = The pin of quasar. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/helmets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/helmets.ftl index b33d4ccde68..05e99e3e532 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/helmets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/helmets.ftl @@ -40,6 +40,8 @@ ent-ClothingHeadHelmetAtmosFire = пожарный атмос-шлем .desc = Пожарный шлем атмосферных техников, способный охладить пыл пользователя в любой ситуации. ent-ClothingHeadHelmetLing = хитиновый шлем .desc = Раздувает тело генокрада во всепоглощающий массив хитиновый брони. Обеспечивает высокую защиту от физических повреждений, более низкую от других типов. Его вес замедляет движение генокрада, а его поддержание замедляет выработку химических веществ. +ent-ClothingHeadHelmetRaid = syndicate raid helmet + .desc = An armored helmet for use with the syndicate raid suit. Very stylish. ent-ClothingHeadHelmetBone = костяной шлем .desc = Круто выглядящий шлем, сделанный из черепов ваших врагов. ent-ClothingHeadHelmetPodWars = шлем Броненосец II diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl index 823bb577fc9..acd281cbea3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/armor.ftl @@ -9,6 +9,8 @@ ent-ClothingOuterArmorBulletproof = пуленепробиваемый жиле .desc = Тяжёлый бронежилет типа III, способный защитить владельца от традиционного метательного оружия и взрывчатки в незначительной степени. ent-ClothingOuterArmorReflective = отражающий бронежилет .desc = Бронежилет с усовершенствованной защитой от энергетического оружия. +ent-ClothingOuterArmorRaid = syndicate raid suit + .desc = A somewhat flexible and well-armored suit with a powerful shoulder mounted flashlight manufactured in the Gorlex Marauder's iconic blood-red color scheme, it does not protect it's wearer from space. ent-ClothingOuterArmorCult = доспехи аколита .desc = Зловещего вида броня культа, сделанная из костей. ent-ClothingOuterArmorHeavy = тяжёлый бронекостюм diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/arabianlamp.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/arabianlamp.ftl new file mode 100644 index 00000000000..75169bee5cc --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/arabianlamp.ftl @@ -0,0 +1,2 @@ +ent-ArabianLamp = lamp + .desc = Why the heck won't this piece of junk open!? diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl index bea12278be2..5e8c66d17bf 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/pistols/pistols.ftl @@ -3,6 +3,8 @@ ent-BaseWeaponPistol = BasePistol ent-WeaponPistolViper = Гадюка .desc = Небольшой, легко скрываемый, но маломощный пистолет. Оснащён полностью автоматическим ресивером. Использует патроны калибра .35 авто. .suffix = Пистолет +ent-WeaponPistolEchis = echis + .desc = A viper for use by cyborgs. Creates .35 ammo on the fly from an internal ammo fabricator, which slowly self-charges. ent-WeaponPistolCobra = Кобра .desc = Пистолет суровых робастных агентов, с интегрированным глушителем. Использует патроны калибра .25 безгильзовый. .suffix = Пистолет diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl index 7b99a3a2d60..3322fbf454a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl @@ -2,6 +2,8 @@ ent-EnergySword = игрушечный меч .suffix = энергетический меч .desc = Новый пластиковый меч от Sandy-Cat! Имеет реалистичный звук и насыщенный цвет! Почти как настоящий! +ent-EnergyDaggerLoud = energy dagger + .desc = A not as loud and dangerous dagger with a beam made of pure, concentrated plasma. This one is completely undisguised. # Corvax-HiddenDesc-End diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl index 33eb6a17ae0..d41584dffb3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/special.ftl @@ -1,2 +1,4 @@ ent-AtmosDeviceFanTiny = маленький вентилятор .desc = Маленький вентилятор, создающий лёгкий поток воздуха. +ent-AtmosDeviceFanDirectional = directional fan + .desc = A thin fan, stopping the movement of gases across it. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl index 032dfc3e8a0..439b7c45207 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl @@ -52,6 +52,8 @@ ent-SignDirectionalWash = знак "уборная" .desc = Указатель в сторону уборной. ent-SignAi = знак "ИИ" .desc = { ent-BaseSign.desc } +ent-SignAiUpload = ai upload sign + .desc = A sign, indicating an AI is present. ent-SignArcade = знак "аркада" .desc = Указатель в сторону комнаты с аркадами. ent-SignArmory = знак "оружейная" @@ -64,18 +66,16 @@ ent-SignAnomaly2 = знак "лаборатория аномалий" .desc = Знак, указывающий на лабораторию аномалий. ent-SignAtmos = знак "атмос" .desc = Знак, указывающий на атмосферный отсек. -ent-SignAtmosMinsky = знак "атмос" - .desc = Знак, указывающий на атмосферный отсек. +ent-SignKitchen = kitchen sign + .desc = The heart of the home. And disease. +ent-SignTheater = theater sign + .desc = Would it even be Space Station without drama? ent-SignBar = знак "бар" .desc = Знак, указывающий на бар. ent-SignBarbershop = знак "барбершоп" .desc = Знак, указывающий барбершоп. ent-SignHydro1 = знак "гидропоника" .desc = Знак, указывающий на гидропонику. -ent-SignHydro2 = знак "гидропоника" - .desc = Знак, указывающий на гидропонику. -ent-SignHydro3 = знак "гидропоника" - .desc = Знак, указывающий на гидропонику. ent-SignLibrary = знак "библиотека" .desc = Знак, указывающий на библиотеку. ent-SignChapel = знак "церковь" @@ -84,18 +84,20 @@ ent-SignHead = знак "глава" .desc = Знак, указывающий на офис главы отдела. ent-SignConference = знак "конференц-зал" .desc = Знак, указывающий на конференц-зал. -ent-SignDrones = знак "дроны" - .desc = Знак, указывающий на хранилище дронов. ent-SignEngine = знак "двигатель суперматерии" .desc = Знак, указывающий на отсек двигателя суперматерии. +ent-SignCryo = cryosleep sign + .desc = Just like that? You're gonna chicken out? ent-SignCloning = знак "клонирование" .desc = Знак, указывающий на отсек клонирования. ent-SignInterrogation = знак "допросная" .desc = Знак, указывающий на допросную. +ent-SignRestroom = restroom sign + .desc = A sign indicating where you go to... What do you do here again? +ent-SignMaterials = materials sign + .desc = An omen to the juicy vault of steel, glass, and plastic that lays before you. ent-SignSurgery = знак "операционная" .desc = Знак, указывающий на операционную. -ent-SignCourt = знак "суд" - .desc = Знак, указывающий на суд. ent-SignTelecomms = знак "телекоммуникация" .desc = Знак, указывающий на отсек телекоммуникаций. ent-SignCargo = знак "снабжение" @@ -104,10 +106,6 @@ ent-SignCargoDock = знак "карго док" .desc = Знак, указывающий на док отдела снабжения. ent-SignChem = знак "хим лаб" .desc = Знак, указывающий на химическую лабораторию. -ent-SignChemistry1 = знак "хим лаб" - .desc = Знак, указывающий на химическую лабораторию. -ent-SignChemistry2 = знак "хим лаб" - .desc = Знак, указывающий на химическую лабораторию. ent-SignEscapePods = знак "капсулы" .desc = Знак, указывающий на спасательные капсулы. ent-SignShipDock = знак "стыковочный док" @@ -134,18 +132,16 @@ ent-SignLaundromat = знак "прачечная" .desc = Знак, указывающий на прачечную. ent-SignLawyer = знак "АВД" .desc = Знак, указывающий на офис АВД. -ent-SignScience1 = знак "наука" - .desc = Знак, указывающий на научный отсек. -ent-SignScience2 = знак "наука" - .desc = Знак, указывающий на научный отсек. ent-SignToxins = знак "токсины" .desc = Знак, указывающий на лабораторию токсинов. -ent-SignToxins2 = знак "токсины" - .desc = Знак, указывающий на лабораторию токсинов. ent-SignBridge = знак "мостик" .desc = Знак, указывающий на мостик. ent-SignNews = знак "новости" .desc = Знак, указывающий на место работы репортёра. +ent-SignServer = server sign + .desc = Ever heard of Big Data? This is it, chump. The biggest. +ent-SignCans = canisters sign + .desc = A sign indicating the auspicious presence of gas canisters. ent-SignBio = знак "био лаб" .desc = Знак, указывающий на биологическую лабораторию. ent-SignBiohazard = знак "биологическая угроза" @@ -156,6 +152,8 @@ ent-SignReception = знак "ресепшен" .desc = Знак, указывающий на ресепшен. ent-SignCanisters = знак "газовые баллоны" .desc = Знак, предупреждающий о канистрах под давлением. +ent-SignVault = vault sign + .desc = A sign indicating the vault. Who knows what secrets lie inside? ent-SignCorrosives = предупреждающий знак "едкие вещества" .desc = Знак, предупреждающий об опасности едких веществ. ent-SignSalvage = знак "утилизация" @@ -186,8 +184,6 @@ ent-SignMail = знак "почта" .desc = Знак, указывающий на почту. ent-SignMemetic = предупреждающий знак "меметическая угроза" .desc = Знак, предупреждающий о меметической угрозе. -ent-SignMinerDock = знак "шахтёрский док" - .desc = Знак, указывающий на шахтёрский док. ent-SignNosmoking = знак "не курить" .desc = Знак, предупреждающий о запрете курения в непосредственной близости. ent-SignOptical = предупреждающий знак "оптическое излучение" @@ -200,8 +196,6 @@ ent-SignSecure = знак "охрана" .desc = Знак, предупреждающий что территория впереди является охраняемой зоной. ent-SignSecurearea = знак "охраняемая территория" .desc = Знак, предупреждающий что территория впереди является охраняемой зоной. -ent-SignShield = знак "щит" - .desc = Знак со щитом. ent-SignOxidants = предупреждающий знак "окислитель" .desc = Знак, предупреждающий об опасности окисляющих веществ. ent-SignShock = знак "высокое напряжение" @@ -212,10 +206,6 @@ ent-SignVirology = знак "вирусология" .desc = Знак, указывающий на лабораторию вирусологии. ent-SignXenobio = знак "ксенобиология" .desc = Знак, указывающий на лабораторию ксенобиологии. -ent-SignXenobio2 = знак "ксенобиология" - .desc = Знак, указывающий на лабораторию ксенобиологии. -ent-SignXenolab = знак "ксенолаборатория" - .desc = Знак, указывающий на лабораторию ксенобиологии. ent-SignZomlab = знак "зомби-лаборатория" .desc = Знак, указывающий на лабораторию зомби. ent-SignSecureMedRed = красный знак "охрана" diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/midround.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/midround.ftl index ffd302b5a10..7416fb5c77f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/midround.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/midround.ftl @@ -1,4 +1,2 @@ -ent-Ninja = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-Thief = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index 76ce4e9e401..a9574079629 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -220,6 +220,8 @@ uplink-hardsuit-carp-name = Скафандр карпа uplink-hardsuit-carp-desc = Выглядит как обычный костюм карпа, только космический, и заставляет космических карпов думать что вы один из них. uplink-eva-syndie-name = Набор EVA Синдиката uplink-eva-syndie-desc = Простой EVA-скафандр, который не даёт никакой защиты, кроме той, что необходима для выживания в космосе. +uplink-syndie-raid-name = Syndicate Raid Suit +uplink-syndie-raid-desc = A very durable and reasonably flexible suit of blood-red armor, reinforced against all common forms of damage but not capable of space walks. Comes with a sick helmet. uplink-hardsuit-syndieelite-name = Элитный скафандр Синдиката uplink-hardsuit-syndieelite-desc = Элитная версия кроваво-красного скафандра, отличающаяся повышенной мобильностью и огнеупорностью. Собственность Мародёров Горлекса. uplink-clothing-outer-hardsuit-juggernaut-name = Скафандр джаггернаута Cybersun diff --git a/Resources/Maps/Backmen/backmen_aspid.yml b/Resources/Maps/Backmen/backmen_aspid.yml index c70c286f0c2..f38fd7eda21 100644 --- a/Resources/Maps/Backmen/backmen_aspid.yml +++ b/Resources/Maps/Backmen/backmen_aspid.yml @@ -107279,7 +107279,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Salvage -- proto: SurveillanceCameraWirelessRouterBase +- proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 13243 components: diff --git a/Resources/Maps/Backmen/backmen_cogmap.yml b/Resources/Maps/Backmen/backmen_cogmap.yml index d904cb793e7..42dd53aba4a 100644 --- a/Resources/Maps/Backmen/backmen_cogmap.yml +++ b/Resources/Maps/Backmen/backmen_cogmap.yml @@ -177575,7 +177575,7 @@ entities: parent: 2 - type: SurveillanceCamera id: отдых снабжения -- proto: SurveillanceCameraWirelessRouterBase +- proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 21620 components: diff --git a/Resources/Maps/Dungeon/snowy_labs.yml b/Resources/Maps/Dungeon/snowy_labs.yml index 1211d7a6642..3ce318951c9 100644 --- a/Resources/Maps/Dungeon/snowy_labs.yml +++ b/Resources/Maps/Dungeon/snowy_labs.yml @@ -10731,7 +10731,7 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,14.5 parent: 1653 -- proto: MagicalLamp +- proto: ArabianLamp entities: - uid: 1204 components: diff --git a/Resources/Maps/Misc/corvax_terminal.yml b/Resources/Maps/Misc/corvax_terminal.yml index dd0eed1df50..e5717d12b5e 100644 --- a/Resources/Maps/Misc/corvax_terminal.yml +++ b/Resources/Maps/Misc/corvax_terminal.yml @@ -3,50 +3,93 @@ meta: postmapinit: false tilemap: 0: Space - 45: FloorGlass - 50: FloorGrassLight - 75: FloorPlastic + 20: FloorArcadeBlue + 21: FloorArcadeBlue2 + 7: FloorAsteroidSand + 1: FloorAstroGrass + 24: FloorBlue + 29: FloorDark + 16: FloorDarkDiagonal + 11: FloorDarkHerringbone + 14: FloorDarkMini + 3: FloorDarkMono + 4: FloorDarkOffset + 26: FloorDarkPavementVertical + 38: FloorDarkPlastic + 13: FloorGlass + 47: FloorGrass + 23: FloorKitchen + 25: FloorLino + 10: FloorMetalDiamond + 17: FloorMining + 22: FloorMiningLight + 2: FloorPlanetDirt 76: FloorRGlass - 92: FloorSteel - 108: FloorTechMaint2 - 111: FloorWhite - 121: FloorWood - 125: Plating + 77: FloorReinforced + 89: FloorSteel + 15: FloorSteelCheckerDark + 19: FloorSteelHerringbone + 27: FloorSteelLime + 18: FloorSteelMono + 12: FloorSteelOffset + 104: FloorTechMaint + 105: FloorTechMaint2 + 9: FloorWoodChessDark + 6: FloorWoodDark + 8: FloorWoodLargeDark + 5: FloorWoodParquetBlack + 120: Lattice + 121: Plating entities: - proto: "" entities: - - uid: 1 + - uid: 818 components: - type: MetaData - name: NT-EZ Космопорт FC-742 + name: NT-EM Terminal - type: Transform - pos: 0.0859375,-0.05438137 - parent: 1295 + parent: invalid - type: MapGrid chunks: + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAACgAAAAAACgAAAAAABAAAAAAAHQAAAAAADAAAAAAADAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAABgAAAAAACAAAAAAABgAAAAAAeQAAAAAA + version: 6 0,0: ind: 0,0 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASwAAAAAAXAAAAAAAXAAAAAAATAAAAAAATAAAAAAATAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAATAAAAAAATAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAMgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAMgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAAwAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAADQAAAAAADQAAAAAADAAAAAAADAAAAAAAEgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAAHQAAAAAADgAAAAAAHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAAHQAAAAAADgAAAAAAHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAAHQAAAAAADgAAAAAAHQAAAAAACAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALwAAAAAALwAAAAAAHQAAAAAADgAAAAAAHQAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAAAwAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAAeQAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAEgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAADQAAAAAADQAAAAAADAAAAAAADAAAAAAAEgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAeQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAWQAAAAAAWQAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAEgAAAAAAEgAAAAAADAAAAAAATAAAAAAADAAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAwAAAAAABgAAAAAACAAAAAAABgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAABgAAAAAACAAAAAAABgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEgAAAAAADAAAAAAADAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAA version: 6 - 1,-1: - ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAXAAAAAAAXAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAAACQAAAAAAHQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAAHQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAHQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAAAeQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAeQAAAAAAJgAAAAAADAAAAAAAEwAAAAAADAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAAADgAAAAAABAAAAAAA version: 6 1,0: ind: 1,0 - tiles: TAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -60,9 +103,7 @@ entities: - type: BecomesStation id: Empty - type: OccluderTree - - type: SpreaderGrid - type: Shuttle - - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -75,6750 +116,12312 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 116: 3,-1 - 117: 3,0 - 118: 3,1 - 119: 12,0 - 220: 24,-4 - 221: 24,3 - 223: 17,0 + 958: 14,-9 + 959: 14,-2 + 960: 14,2 + 961: 14,-15 + 962: 14,-23 + 977: 3,4 + 978: 3,-11 + 979: 7,-11 + 980: 11,-11 + 981: 7,-4 + 982: 7,-3 + 983: 11,-3 + 984: 11,-4 + 985: 7,4 + 986: 11,4 + 991: -4,4 + 992: -4,-11 - node: + angle: 1.5707963267948966 rad color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 987: -6,-4 + 988: -8,-4 + 989: 0,-4 + 990: 2,-4 + - node: + color: '#9FED5895' id: Bot decals: - 120: 17,-5 - 121: 17,-4 - 122: 17,-6 - 123: 17,-7 + 994: 2,-19 - node: color: '#FFFFFFFF' - id: BotLeft + id: BotGreyscale decals: - 125: 17,-8 + 993: -6,-19 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BotRight + id: BotGreyscale + decals: + 944: 7,-13 + 945: 6,-13 + 947: 8,-13 + - node: + color: '#3EB38896' + id: BrickLineOverlayE + decals: + 759: -9,-11 + - node: + color: '#3EB38896' + id: BrickLineOverlayN decals: - 124: 17,-3 + 756: -8,-12 + 757: -7,-12 + - node: + color: '#3EB38896' + id: BrickLineOverlayS + decals: + 760: -8,-10 + 761: -7,-10 + - node: + color: '#3EB38896' + id: BrickLineOverlayW + decals: + 758: -6,-11 - node: color: '#FFFFFFFF' - id: BrickTileSteelEndE + id: BrickTileDarkBox decals: - 284: 23,-4 - 285: 23,3 + 93: -1,0 + 652: -5,-11 + 715: -2,-13 + 892: -3,6 + 893: -3,2 + 949: -3,-9 + 963: 11,-31 + 964: 11,-27 + 1108: -5,0 - node: color: '#FFFFFFFF' - id: BrickTileSteelEndW + id: BrickTileDarkCornerNe decals: - 277: 20,-4 - 278: 20,3 + 150: 3,1 + 338: 13,3 + 339: 13,-5 + 340: 8,-5 + 341: 8,3 + 656: -6,-10 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineE + id: BrickTileDarkCornerNw decals: - 68: 6,0 - 69: 13,0 - 302: 19,6 - 315: 19,-7 - 316: 19,-8 - 317: 19,-1 - 318: 19,0 - 319: 19,6 + 145: 0,1 + 333: 6,-5 + 334: 11,-5 + 335: 6,3 + 336: 11,3 + 654: -9,-10 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineN + id: BrickTileDarkCornerSe decals: - 70: 7,-1 - 71: 8,-1 - 72: 9,-1 - 73: 14,-1 - 74: 15,-1 - 75: 16,-1 - 280: 21,3 - 281: 22,3 - 282: 21,-4 - 283: 22,-4 - 297: 20,5 - 298: 21,5 - 299: 22,5 - 300: 22,5 - 301: 23,5 - 320: 20,5 - 321: 20,-2 - 322: 21,-2 - 323: 22,-2 - 324: 23,-2 - 325: 20,-9 - 326: 21,-9 - 327: 22,-9 - 328: 23,-9 + 343: 8,-10 + 344: 13,-10 + 345: 13,-2 + 346: 8,-2 + 658: -6,-12 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineS + id: BrickTileDarkCornerSw decals: - 76: 7,1 - 77: 8,1 - 78: 9,1 - 79: 14,1 - 80: 15,1 - 81: 16,1 - 287: 22,3 - 289: 21,3 - 290: 22,-4 - 291: 21,-4 - 303: 20,7 - 304: 21,7 - 305: 22,7 - 306: 23,7 - 307: 23,1 - 308: 21,1 - 309: 22,1 - 310: 20,1 - 311: 23,-6 - 312: 22,-6 - 313: 21,-6 - 314: 20,-6 + 328: 6,-2 + 329: 11,-2 + 330: 6,-10 + 331: 11,-10 + 660: -9,-12 - node: color: '#FFFFFFFF' - id: BrickTileSteelLineW + id: BrickTileDarkEndE decals: - 82: 17,0 - 329: 24,-8 - 330: 24,-7 - 331: 24,-1 - 332: 24,0 - 333: 24,6 + 102: 3,-1 - node: color: '#FFFFFFFF' - id: BushCThree + id: BrickTileDarkEndN decals: - 208: -3.9886756,0.785882 + 837: 9,-17 + 838: 9,-21 - node: color: '#FFFFFFFF' - id: BushCTwo + id: BrickTileDarkEndS decals: - 186: -5.5815344,3.7170653 - 201: -5.4554768,-0.01960951 - 222: -6.1048346,-1.7984271 + 835: 9,-23 + 836: 9,-19 - node: color: '#FFFFFFFF' - id: Busha2 + id: BrickTileDarkEndW decals: - 203: -6.9867268,2.121015 + 97: 0,-1 - node: color: '#FFFFFFFF' - id: Busha3 + id: BrickTileDarkInnerNe decals: - 256: 21.531738,-0.36497682 + 350: 6,-10 + 351: 11,-10 + 352: 6,-2 + 353: 11,-2 + 668: -6,-11 + 712: 1,4 + 753: 1,-11 + 829: 11,-21 + 830: 11,-16 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushc1 + id: BrickTileDarkInnerNe decals: - 187: -4.5971594,3.9127421 - 202: -4.5648518,-0.06648433 + 606: 8,-5 + 607: 13,-5 + 608: 13,3 + 609: 8,3 - node: color: '#FFFFFFFF' - id: Bushc3 + id: BrickTileDarkInnerNw decals: - 224: -7.1048346,-1.8609273 + 158: 0,0 + 348: 8,-2 + 349: 13,-2 + 364: 8,-10 + 365: 13,-10 + 711: -2,4 + 752: -2,-11 + 827: 11,-16 + 828: 11,-21 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushi4 + id: BrickTileDarkInnerNw decals: - 114: 0,-4 + 602: 6,-5 + 603: 11,-5 + 604: 6,3 + 605: 11,3 - node: color: '#FFFFFFFF' - id: Bushl3 + id: BrickTileDarkInnerSe decals: - 115: 0,3 + 354: 6,3 + 355: 11,3 + 356: 11,-5 + 357: 6,-5 + 666: -6,-11 + 710: 1,4 + 754: 1,-11 + 833: 11,-19 + 834: 11,-24 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushm2 + id: BrickTileDarkInnerSe decals: - 112: 0,-2 + 610: 8,-2 + 611: 13,-2 + 612: 13,-10 + 613: 8,-10 - node: color: '#FFFFFFFF' - id: Bushm4 + id: BrickTileDarkInnerSw decals: - 113: 0,4 + 161: 0,0 + 358: 8,-5 + 359: 13,-5 + 360: 8,3 + 361: 13,3 + 713: -2,4 + 755: -2,-11 + 831: 11,-24 + 832: 11,-19 - node: - angle: 4.71238898038469 rad + zIndex: 1 color: '#FFFFFFFF' - id: DirtHeavy + id: BrickTileDarkInnerSw decals: - 126: 4,3 - 132: 15,7 - 133: 15,3 - 139: 14,9 + 614: 6,-10 + 615: 11,-10 + 616: 11,-2 + 617: 6,-2 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: DirtHeavyMonotile + id: BrickTileDarkLineE decals: - 127: 4,7 - 136: 14,4 - 137: 15,10 - 138: 14,10 + 156: 3,0 + 164: -1,0 + 245: 6,-6 + 246: 6,-7 + 247: 6,-8 + 248: 6,-9 + 249: 8,-9 + 250: 8,-8 + 251: 8,-7 + 254: 8,-6 + 255: 13,-9 + 256: 13,-8 + 257: 13,-7 + 258: 13,-6 + 261: 13,-1 + 262: 13,0 + 263: 13,1 + 265: 13,2 + 266: 8,-1 + 267: 8,0 + 268: 8,1 + 269: 8,2 + 271: 6,2 + 272: 6,1 + 273: 6,0 + 274: 6,-1 + 275: 11,-1 + 276: 11,0 + 277: 11,2 + 280: 11,-6 + 281: 11,-7 + 282: 11,-8 + 283: 11,-9 + 304: 11,1 + 702: -3,4 + 746: -3,-11 + 811: 10,-24 + 812: 10,-23 + 813: 10,-22 + 814: 10,-21 + 815: 10,-19 + 816: 10,-19 + 817: 10,-18 + 818: 10,-17 + 819: 10,-17 + 820: 10,-16 + 841: 9,-18 + 842: 9,-22 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: DirtLight + id: BrickTileDarkLineN decals: - 128: 7,5 - 129: 11,1 - 130: 12,8 - 131: 15,9 - 140: 2,0 - 141: -2,5 - 142: 1,-5 + 105: 1,-1 + 106: 2,-1 + 151: 1,1 + 152: 2,1 + 166: 0,-1 + 167: 1,-1 + 168: 2,-1 + 169: 3,-1 + 189: 7,-10 + 191: 12,-10 + 192: 12,-2 + 194: 7,-2 + 195: 7,3 + 196: 12,3 + 198: 12,-5 + 199: 7,-5 + 390: 5,-5 + 391: 9,-5 + 392: 10,-5 + 393: 10,3 + 394: 9,3 + 395: 5,3 + 584: 5,-12 + 585: 6,-12 + 586: 7,-12 + 587: 8,-12 + 588: 9,-12 + 589: 10,-12 + 590: 11,-12 + 591: 12,-12 + 592: 13,-12 + 650: -8,-10 + 651: -7,-10 + 703: -2,3 + 704: -2,3 + 705: -1,3 + 706: 0,3 + 707: 0,3 + 708: 0,3 + 709: 1,3 + 748: -2,-12 + 749: -1,-12 + 750: 0,-12 + 751: 1,-12 + 825: 11,-25 + 826: 11,-20 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: DirtMedium + id: BrickTileDarkLineS decals: - 134: 14,3 - 135: 15,4 - 143: 4,-5 - 144: 6,-3 - 145: 8,7 + 103: 1,-1 + 104: 2,-1 + 202: 7,-10 + 203: 12,-10 + 204: 12,-2 + 205: 7,-2 + 206: 7,3 + 207: 12,3 + 208: 12,-5 + 209: 7,-5 + 382: 5,-2 + 383: 9,-2 + 384: 10,-2 + 385: 9,-10 + 386: 10,-10 + 388: 5,-10 + 593: 13,5 + 594: 12,5 + 595: 10,5 + 596: 11,5 + 597: 9,5 + 598: 8,5 + 599: 7,5 + 600: 6,5 + 601: 5,5 + 663: -8,-12 + 664: -7,-12 + 697: -2,5 + 698: -1,5 + 699: -1,5 + 700: 0,5 + 701: 1,5 + 742: -2,-10 + 743: -1,-10 + 744: 0,-10 + 745: 1,-10 + 823: 11,-15 + 824: 11,-20 - node: color: '#FFFFFFFF' - id: FlowersBROne + id: BrickTileDarkLineW decals: - 105: 0,2 - 206: -6.3929768,0.07414031 - 214: -6.9810414,-0.7972784 + 212: 6,-9 + 213: 6,-8 + 214: 6,-7 + 215: 6,-6 + 217: 11,-9 + 218: 11,-8 + 219: 11,-7 + 220: 11,-6 + 221: 13,-9 + 222: 13,-8 + 223: 13,-7 + 224: 13,-6 + 225: 6,-1 + 226: 6,0 + 228: 6,1 + 229: 6,2 + 232: 8,-1 + 233: 8,0 + 234: 8,1 + 235: 8,2 + 236: 13,-1 + 238: 13,0 + 239: 13,1 + 240: 13,2 + 288: 8,-9 + 289: 8,-8 + 290: 8,-7 + 291: 8,-6 + 296: 11,-1 + 298: 11,0 + 299: 11,0 + 300: 11,1 + 302: 11,2 + 662: -9,-11 + 747: 2,-11 + 802: 12,-16 + 803: 12,-17 + 804: 12,-17 + 805: 12,-18 + 806: 12,-19 + 807: 12,-21 + 808: 12,-22 + 809: 12,-22 + 810: 12,-24 + 839: 9,-22 + 840: 9,-18 + 955: 12,-23 + 976: 2,4 - node: color: '#FFFFFFFF' - id: FlowersBRThree + id: BrickTileSteelBox decals: - 215: -5.934167,-1.0785282 + 714: -5,-11 + 766: 11,-13 + 886: 4,4 + 887: 4,-11 + 948: -5,4 + - node: + color: '#00FFFFFF' + id: BrickTileSteelCornerNe + decals: + 548: -2,13 - node: color: '#FFFFFFFF' - id: FlowersBRTwo + id: BrickTileSteelCornerNe decals: - 216: -7.0591664,-1.0316534 + 673: 3,5 + 735: 3,-10 + 784: 12,-14 - node: color: '#FFFFFFFF' - id: Flowersbr1 + id: BrickTileSteelCornerNw decals: - 217: -6.215417,0.2629112 + 674: -4,5 + 736: -4,-10 + 783: 10,-14 + - node: + color: '#00FFFFFF' + id: BrickTileSteelCornerSe + decals: + 556: -2,7 - node: color: '#FFFFFFFF' - id: Flowersbr2 + id: BrickTileSteelCornerSe decals: - 213: -6.184167,-0.9379033 + 672: 3,3 + 717: 3,-12 + 786: 12,-26 - node: color: '#FFFFFFFF' - id: Flowerspv1 + id: BrickTileSteelCornerSw decals: - 241: -5.390686,-4.3862576 - 268: 21.102154,-7.160489 + 671: -4,3 + 716: -4,-12 + 785: 10,-26 - node: color: '#FFFFFFFF' - id: Flowerspv2 + id: BrickTileSteelEndN decals: - 240: -5.062561,-3.590027 - 269: 21.258404,-7.676114 + 884: 4,-3 - node: color: '#FFFFFFFF' - id: Flowerspv3 + id: BrickTileSteelEndS + decals: + 885: 4,-4 + - node: + color: '#00FFFFFF' + id: BrickTileSteelEndW decals: - 207: -6.908602,3.0497417 - 239: -4.843811,-3.902527 - 267: 21.610348,-7.4933586 + 628: -6,7 + 629: -6,9 + 630: -6,11 + 631: -6,13 - node: color: '#FFFFFFFF' - id: Flowersy1 + id: BrickTileSteelInnerNe + decals: + 643: -7,-11 + 676: -3,5 + 686: 3,4 + 688: 2,5 + 720: 3,-11 + 738: -3,-10 + 800: 11,-14 + - node: + color: '#00FFFFFF' + id: BrickTileSteelInnerNw decals: - 106: 0,-3 - 262: 22.964508,-0.9238496 - 276: 21.753397,5.9578614 + 574: -4,11 + 575: -4,9 + 576: -4,7 - node: color: '#FFFFFFFF' - id: Flowersy2 + id: BrickTileSteelInnerNw decals: - 263: 22.558258,-0.9394747 + 644: -8,-11 + 675: -3,5 + 678: -4,4 + 689: 2,5 + 718: -4,-11 + 737: -3,-10 + 799: 11,-14 + - node: + color: '#00FFFFFF' + id: BrickTileSteelInnerSe + decals: + 578: -3,7 - node: color: '#FFFFFFFF' - id: Flowersy3 + id: BrickTileSteelInnerSe + decals: + 641: -7,-11 + 687: 3,4 + 696: -3,3 + 721: 3,-11 + 741: -2,-12 + 797: 11,-26 + - node: + color: '#00FFFFFF' + id: BrickTileSteelInnerSw decals: - 205: -4.049227,2.8553905 + 557: -3,7 + 558: -4,9 + 559: -4,11 + 560: -4,13 - node: color: '#FFFFFFFF' - id: Grassa1 + id: BrickTileSteelInnerSw + decals: + 642: -8,-11 + 677: -4,4 + 695: -3,3 + 719: -4,-11 + 740: -2,-12 + 798: 11,-26 + - node: + color: '#00FFFFFF' + id: BrickTileSteelLineE decals: - 243: -3.9063113,-3.9331326 + 549: -2,12 + 550: -2,11 + 551: -2,10 + 552: -2,9 + 553: -2,9 + 554: -2,8 - node: color: '#FFFFFFFF' - id: Grassa2 + id: BrickTileSteelLineE + decals: + 635: -9,-11 + 787: 12,-25 + 788: 12,-24 + 789: 12,-22 + 790: 12,-22 + 791: 12,-21 + 792: 12,-20 + 793: 12,-19 + 794: 12,-18 + 795: 12,-17 + 796: 12,-16 + 956: 12,-23 + 957: 12,-15 + - node: + color: '#00FFFFFF' + id: BrickTileSteelLineN decals: - 209: -3.9886754,1.835907 + 539: -6,13 + 540: -5,13 + 541: -4,13 + 542: -3,13 + 565: -6,7 + 566: -5,7 + 567: -6,9 + 568: -5,9 + 569: -6,11 + 570: -5,11 - node: color: '#FFFFFFFF' - id: Grassa3 + id: BrickTileSteelLineN + decals: + 639: -8,-12 + 640: -7,-12 + 690: -2,5 + 691: -1,5 + 692: -1,5 + 693: 0,5 + 694: 1,5 + 728: -2,-10 + 729: -1,-10 + 730: 0,-10 + 731: 0,-10 + 732: 1,-10 + 733: 1,-10 + 734: 2,-10 + 739: -2,-13 + - node: + color: '#00FFFFFF' + id: BrickTileSteelLineS decals: - 229: -7.3704596,5.30355 + 530: -6,7 + 531: -5,7 + 532: -4,7 + 533: -6,9 + 534: -5,9 + 535: -6,11 + 536: -5,11 + 537: -6,13 + 538: -5,13 - node: color: '#FFFFFFFF' - id: Grassa4 + id: BrickTileSteelLineS + decals: + 636: -8,-10 + 637: -7,-10 + 679: -2,3 + 680: -1,3 + 681: 0,3 + 682: 0,3 + 683: 1,3 + 684: 2,3 + 685: 2,3 + 722: -1,-12 + 723: 0,-12 + 724: 1,-12 + 725: 1,-12 + 726: 2,-12 + 727: -3,-12 + 801: 11,-13 + - node: + color: '#00FFFFFF' + id: BrickTileSteelLineW decals: - 232: -4.018718,-1.0518935 - 245: -3.9857244,-5.234917 - 248: -6.6769233,-4.833899 + 562: -4,10 + 563: -4,8 + 572: -4,12 - node: color: '#FFFFFFFF' - id: Grassa5 + id: BrickTileSteelLineW decals: - 189: -5.9252844,2.756492 - 196: -6.0320826,4.6379585 - 250: -6.2081733,-3.880341 - 261: 20.792633,-0.0801 - 275: 20.331522,-7.8011136 + 638: -6,-11 + 767: 10,-23 + 768: 10,-24 + 769: 10,-24 + 770: 10,-25 + 771: 10,-23 + 772: 10,-22 + 773: 10,-21 + 774: 10,-21 + 775: 10,-20 + 776: 10,-19 + 777: 10,-18 + 778: 10,-18 + 779: 10,-17 + 780: 10,-16 + 781: 10,-16 + 782: 10,-15 - node: color: '#FFFFFFFF' - id: Grassb1 - decals: - 192: -5.0346594,1.5002525 - 211: -4.051175,5.0709352 - 218: -5.1529164,-0.8777136 - 231: -5.425367,5.4573126 - 246: -4.8607244,-5.318274 - 249: -7.6144233,-4.3647165 - 251: -5.7970634,-3.2865913 - 260: 20.886383,-0.81810236 - 271: 22.024029,-7.0823636 + id: Bushh3 + decals: + 436: -5.001849,-7.7211533 - node: color: '#FFFFFFFF' - id: Grassb2 - decals: - 193: -5.034659,0.93623257 - 195: -5.1229305,4.572853 - 200: -7.377351,-5.2854385 - 230: -6.4017096,5.5041876 - 236: -3.6905925,-2.4268932 - 244: -3.703186,-3.08527 - 253: -3.7540362,-0.10736734 - 254: -3.691537,5.673626 - 255: -6.010816,-4.507654 - 266: 21.901247,0.013650417 - 286: 22.519846,6.0359864 - 288: 23.066721,6.0672364 + id: Bushk1 + decals: + 438: -4.954974,-6.7836533 - node: color: '#FFFFFFFF' - id: Grassb3 + id: Bushk2 decals: - 210: -3.769925,3.9952374 - 237: -5.828186,-2.5431523 - 259: 20.203613,-0.81810206 - 264: 21.933258,-0.84572476 - 272: 22.305279,-7.8167386 - 279: 20.972147,6.0672364 + 439: -1.0018489,-7.1586533 - node: color: '#FFFFFFFF' - id: Grassb4 - decals: - 188: -4.9096594,3.1627421 - 194: -5.784659,0.90498257 - 197: -6.3602076,3.716083 - 199: -6.9516315,4.4348326 - 204: -6.7054768,1.1678903 - 225: -7.6048346,-1.3765525 - 226: -7.7142096,-0.25155234 - 227: -7.52671,1.3421977 - 247: -5.7982244,-5.2088995 - 257: 22.422363,-0.3024767 - 258: 20.141113,-0.05247712 - 273: 23.024029,-7.7854886 + id: Bushm4 + decals: + 440: -1.0330989,-5.9242783 - node: + angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: Grassb5 + id: Caution + decals: + 971: 13.595629,2.003996 + 972: 13.595629,-2.0041823 + 973: 13.600033,-9.000203 + 974: 13.600033,-15.003099 + 975: 13.600033,-23.005238 + - node: + color: '#9FED585D' + id: CheckerNESW decals: - 219: -5.121667,-1.5171772 - 228: -7.3860846,3.6246834 - 238: -6.953186,-2.7306523 - 242: -4.531311,-4.6362576 - 265: 22.963747,-0.064474374 - 274: 20.102154,-7.035489 - 292: 20.127335,5.9734864 + 1055: 3,-22 + 1056: 3,-21 - node: color: '#FFFFFFFF' - id: Grassd2 + id: CheckerNWSE + decals: + 1057: -7,-22 + 1058: -7,-21 + - node: + color: '#422E23FF' + id: ConcreteTrimCornerNe + decals: + 447: -4,-4 + - node: + color: '#422E23FF' + id: ConcreteTrimCornerSe + decals: + 448: -3,-3 + - node: + color: '#422E23FF' + id: ConcreteTrimCornerSw + decals: + 445: -2,-4 + - node: + color: '#422E23FF' + id: ConcreteTrimInnerNw + decals: + 450: -3,-4 + - node: + color: '#422E23FF' + id: ConcreteTrimInnerSe decals: - 108: 0,4 - 109: 0,3 + 449: -3,-4 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Grassd3 + id: DeliveryGreyscale decals: - 111: 0,-2 + 946: 5,-13 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Grasse1 + id: FlowersBROne decals: - 110: 0,-4 + 622: 6.8216906,10.010503 - node: color: '#FFFFFFFF' - id: Grasse3 + id: FlowersBRThree decals: - 107: 0,3 + 51: -0.9850607,-1.9918964 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelCornerNe + id: FlowersBRThree decals: - 85: 15,-3 - 159: 25,8 - 338: 25,1 - 339: 25,-6 + 623: 11.132726,9.995637 + 625: 5.9594836,5.9358044 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelCornerNw + id: FlowersBRTwo decals: - 84: 12,-3 - 152: 18,8 + 624: 12.128723,5.903023 - node: color: '#FFFFFFFF' - id: MiniTileSteelCornerSe + id: Flowersbr1 decals: - 83: 15,-8 - 176: 25,-12 - 340: 25,-2 - 341: 25,5 + 422: -4.986224,-6.3617783 - node: color: '#FFFFFFFF' - id: MiniTileSteelCornerSw + id: Flowerspv1 decals: - 0: 18,-12 - 86: 12,-8 + 50: -5.0475607,-1.9762714 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelInnerNe + id: Flowerspv1 decals: - 42: 7,3 - 43: 11,3 - 342: 24,1 - 343: 24,-6 + 633: 11.146828,5.949858 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelInnerNw + id: Flowerspv2 decals: - 44: 12,3 - 49: 8,3 - 296: 18,1 + 626: 6.47978,5.9506707 + 632: 12.12796,10.008332 + 634: 11.205407,9.958935 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelInnerSe + id: Flowerspv3 decals: - 45: 11,10 - 48: 7,7 - 344: 24,-2 - 345: 24,5 + 627: 6.34599,10.052931 - node: color: '#FFFFFFFF' - id: MiniTileSteelInnerSw + id: Flowersy1 decals: - 46: 12,10 - 47: 8,7 - 295: 18,-1 + 431: -0.98622394,-6.4242783 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelLineE - decals: - 33: 7,4 - 34: 7,5 - 35: 7,6 - 36: 11,4 - 37: 11,5 - 38: 11,6 - 39: 11,7 - 40: 11,8 - 41: 11,9 - 89: 15,-7 - 90: 15,-6 - 91: 15,-4 - 160: 25,7 - 161: 25,6 - 162: 25,0 - 163: 25,0 - 164: 25,-1 - 165: 25,-1 - 166: 25,-8 - 167: 25,-8 - 168: 25,-7 - 169: 25,-9 - 170: 25,-9 - 171: 25,-9 - 172: 25,-10 - 173: 25,-11 - 174: 25,-11 - 334: 24,-5 - 335: 24,-3 - 336: 24,2 - 337: 24,4 + id: Flowersy1 + decals: + 618: 5.9743495,10.0997 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelLineN - decals: - 2: 17,1 - 3: 16,1 - 4: 15,1 - 5: 14,1 - 6: 13,1 - 11: 10,1 - 12: 9,1 - 13: 7,1 - 14: 6,1 - 15: 5,1 - 92: 14,-3 - 153: 19,8 - 154: 20,8 - 155: 21,8 - 156: 22,8 - 157: 23,8 - 158: 24,8 + id: Flowersy2 + decals: + 619: 11.786814,10.02537 - node: color: '#FFFFFFFF' - id: MiniTileSteelLineS - decals: - 7: 17,-1 - 8: 16,-1 - 9: 15,-1 - 10: 14,-1 - 16: 5,-1 - 17: 6,-1 - 18: 7,-1 - 19: 8,-1 - 20: 9,-1 - 21: 10,-1 - 22: 11,-1 - 23: 12,-1 - 87: 13,-8 - 88: 14,-8 - 178: 24,-12 - 179: 23,-12 - 180: 21,-12 - 181: 22,-12 - 182: 21,-12 - 183: 19,-12 - 184: 19,-12 - 185: 20,-12 + id: Flowersy3 + decals: + 426: -0.98622394,-7.9711533 - node: + zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelLineW - decals: - 1: 18,-11 - 24: 12,4 - 25: 12,5 - 26: 12,6 - 27: 12,7 - 28: 12,8 - 29: 12,9 - 30: 8,6 - 31: 8,5 - 32: 8,4 - 93: 12,-5 - 94: 12,-6 - 95: 12,-7 - 146: 18,2 - 147: 18,3 - 148: 18,4 - 149: 18,5 - 150: 18,6 - 151: 18,7 - 293: 18,-2 - 294: 18,-9 + id: Flowersy3 + decals: + 620: 6.9257503,5.937163 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Rock01 + id: Flowersy4 decals: - 190: -4.909659,2.3346171 - 252: -7.1703386,-3.6615915 - 270: 22.805279,-7.1604886 + 621: 11.311113,5.9074306 - node: color: '#FFFFFFFF' - id: Rock02 + id: Grassc1 decals: - 191: -5.9409094,1.7971272 + 48: -5.0006857,-1.9450214 + 421: -5.017474,-7.9711533 + 424: -1.0330989,-6.1274033 - node: color: '#FFFFFFFF' - id: Rock03 + id: Grassd1 decals: - 198: -4.4695826,4.8410835 - 212: -7.262292,0.2339716 - 233: -4.378093,-2.1768935 + 418: -5.001849,-6.1742783 - node: color: '#FFFFFFFF' - id: Rock04 + id: Grassd2 decals: - 234: -5.268718,-2.4268937 + 425: -1.0174739,-7.9242783 + 953: 6.818325,5.9747634 - node: color: '#FFFFFFFF' - id: Rock05 + id: Grassd3 decals: - 235: -4.3937173,-3.0831435 + 47: -5.0319357,-1.9450214 + 419: -5.017474,-6.9711533 + 423: -1.0487239,-7.0649033 + 952: 6.08395,6.0060134 + 954: 11.4277,6.0685134 - node: color: '#FFFFFFFF' - id: WarnBox + id: Grasse3 decals: - 175: 26,-4 - 177: 26,3 + 49: -1.0163107,-1.9293964 - node: color: '#FFFFFFFF' - id: WoodTrimThinCornerNe + id: GrayConcreteTrimInnerNe decals: - 50: 16,4 - 51: 16,7 - 52: 16,10 - 96: 10,-3 + 22: -6,-3 + 26: -2,-3 - node: color: '#FFFFFFFF' - id: WoodTrimThinCornerNw + id: GrayConcreteTrimInnerNw decals: - 53: 14,10 - 54: 14,7 - 55: 14,4 - 98: 8,-3 + 24: -4,-3 + 25: 0,-3 - node: color: '#FFFFFFFF' - id: WoodTrimThinCornerSe + id: GrayConcreteTrimInnerSe decals: - 59: 16,9 - 60: 16,6 - 61: 16,3 - 103: 10,-6 + 78: -2,-1 + 91: -6,-5 + 310: -6,-5 + 1121: -2,-5 - node: color: '#FFFFFFFF' - id: WoodTrimThinCornerSw + id: GrayConcreteTrimInnerSw decals: - 101: 8,-6 + 30: 0,-1 + 74: -4,-1 + 95: -4,-5 + 96: 0,-5 + 109: 0,-1 + 134: 0,-1 + 312: 0,-5 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineE + id: GrayConcreteTrimLineE decals: - 104: 10,-5 + 29: -2,-2 + 88: -2,-8 + 89: -2,-7 + 90: -2,-6 + 171: -6,-6 + 172: -6,-7 + 186: -2,-8 + 368: -6,-8 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineN + id: GrayConcreteTrimLineN decals: - 56: 15,4 - 57: 15,7 - 58: 15,10 - 97: 9,-3 + 23: -5,-3 + 27: -1,-3 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineS + id: GrayConcreteTrimLineS decals: - 62: 15,3 - 63: 14,3 - 64: 15,6 - 65: 14,6 - 66: 15,9 - 67: 14,9 - 102: 9,-6 + 94: -5,-5 + 98: -1,-5 - node: color: '#FFFFFFFF' - id: WoodTrimThinLineW + id: GrayConcreteTrimLineW decals: - 99: 8,-4 - 100: 8,-5 - - type: GridAtmosphere - version: 2 - data: - tiles: - 0,0: - 0: 65535 - 0,1: - 0: 36863 - 0,-1: - 0: 65535 - 0,2: - 0: 8 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 15 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 52431 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 0,-2: - 0: 65408 - 1,-2: - 0: 65520 - 1,-1: - 0: 65535 - 2,-2: - 0: 65528 - 2,-1: - 0: 65535 - 2,-3: - 0: 34952 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -1,-2: - 0: 65280 - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 4095 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 4,-4: - 0: 61440 - 5,-4: - 0: 65024 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65280 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 7,-4: - 0: 65024 - 7,-3: - 0: 65535 - 7,-2: - 0: 16383 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 238 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 3839 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 4095 - 7,1: - 0: 65328 - 7,2: - 0: 65535 - 7,3: - 0: 3839 - 8,1: - 0: 65472 - 8,2: - 0: 65535 - 8,3: - 0: 2047 - 9,1: - 0: 65296 - 9,2: - 0: 65535 - 9,3: - 0: 4095 - 10,1: - 0: 12544 - 10,2: - 0: 13107 - 10,3: - 0: 307 - 8,-4: - 0: 63232 - 8,-3: - 0: 65535 - 8,-2: - 0: 53247 - 9,-4: - 0: 65280 - 9,-3: - 0: 65535 - 9,-2: - 0: 8191 - 10,-4: - 0: 12544 - 10,-3: - 0: 13107 - 10,-2: - 0: 307 - 2,-4: - 0: 32768 - 3,-4: - 0: 61440 - -2,-2: - 0: 65280 - -2,-1: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 4095 - 6,-1: - 0: 30719 - 6,0: - 0: 65399 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - uid: 1295 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: Parallax - parallax: Sky - - type: MapAtmosphere - space: False - mixture: - volume: 2500 - temperature: 298.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: LoadedMap - - type: GridTree - - type: MovedGrids - - type: MapLight - ambientLightColor: '#778899FF' -- proto: Airlock - entities: - - uid: 2 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 3 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 4 - components: - - type: Transform - pos: 13.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 5 - components: - - type: Transform - pos: 13.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 6 - components: - - type: Transform - pos: 13.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 7 - components: - - type: Transform - pos: 8.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 8 - components: - - type: Transform - pos: 6.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 9 - components: - - type: Transform - pos: 6.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 10 - components: - - type: Transform - pos: 6.5,7.5 - parent: 1 - missingComponents: - - Destructible -- proto: AirlockArmoryGlassLocked - entities: - - uid: 11 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 1 - missingComponents: - - Destructible -- proto: AirlockArmoryLocked + 20: -4,-2 + 28: 0,-2 + 99: -4,-6 + 100: -4,-7 + 101: -4,-8 + 173: 0,-6 + 174: 0,-7 + 175: 0,-8 + 187: -4,-8 + 342: 0,-8 + 404: 0,-2 + - node: + color: '#639137FF' + id: MiniTileBoxOverlay + decals: + 905: 3,-15 + 906: 3,-16 + - node: + color: '#FFFFFFA4' + id: MiniTileBoxOverlay + decals: + 894: -7,-16 + 895: -7,-15 + - node: + color: '#FFFFFF5D' + id: MiniTileCornerOverlaySE + decals: + 940: -3,-18 + - node: + color: '#639137FF' + id: MiniTileCornerOverlaySW + decals: + 931: -1,-18 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndE + decals: + 995: 2,-17 + 997: -4,-17 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndW + decals: + 996: -6,-17 + 998: 0,-17 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 999: -1,-17 + 1000: -1,-16 + 1001: -1,-15 + 1034: -3,-16 + 1040: -7,-17 + 1053: -1,-14 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 1051: -5,-17 + 1052: 1,-17 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 1131: -9,1 + 1132: -8,1 + 1133: -7,1 + 1134: -6,1 + 1135: -6,0 + 1136: -7,0 + 1137: -8,0 + 1138: -9,0 + 1139: -9,0 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 1049: -5,-17 + 1050: 1,-17 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 1140: -9,0 + 1141: -8,0 + 1142: -7,0 + 1143: -6,0 + 1144: -6,0 + 1148: -6,-1 + 1149: -8,-1 + 1150: -9,-1 + 1151: -7,-1 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 1007: -3,-17 + 1008: -3,-16 + 1009: -3,-15 + 1027: -1,-16 + 1042: 3,-17 + 1054: -3,-14 + - node: + color: '#3EB38896' + id: MiniTileInnerOverlayNE + decals: + 763: -7,-11 + - node: + color: '#3EB38896' + id: MiniTileInnerOverlayNW + decals: + 762: -8,-11 + - node: + color: '#3EB38896' + id: MiniTileInnerOverlaySE + decals: + 765: -7,-11 + - node: + color: '#3EB38896' + id: MiniTileInnerOverlaySW + decals: + 764: -8,-11 + - node: + color: '#FFFFFF5D' + id: MiniTileLineOverlayE + decals: + 941: -3,-17 + 942: -3,-15 + 943: -3,-14 + - node: + color: '#639137FF' + id: MiniTileLineOverlayS + decals: + 932: 0,-18 + 933: 1,-18 + 934: 2,-18 + 935: 3,-18 + - node: + color: '#FFFFFF5D' + id: MiniTileLineOverlayS + decals: + 936: -7,-18 + 937: -6,-18 + 938: -5,-18 + 939: -4,-18 + - node: + color: '#639137FF' + id: MiniTileLineOverlayW + decals: + 928: -1,-14 + 929: -1,-15 + 930: -1,-17 + - node: + zIndex: 1 + color: '#5C473CFF' + id: OldConcreteTrimCornerNw + decals: + 1120: -3,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 965: 11,-30 + 966: 11,-29 + 967: 11,-28 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 1098: 15,-23 + 1099: 16,-23 + 1100: 15,-15 + 1101: 16,-15 + 1102: 15,-9 + 1103: 16,-9 + 1104: 15,-2 + 1105: 16,-2 + 1106: 15,2 + 1107: 16,2 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 968: 11,-30 + 969: 11,-29 + 970: 11,-28 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 1088: 15,2 + 1089: 16,2 + 1090: 15,-2 + 1091: 16,-2 + 1092: 15,-9 + 1093: 16,-9 + 1094: 15,-15 + 1095: 16,-15 + 1096: 15,-23 + 1097: 16,-23 + - node: + color: '#422E23FF' + id: WoodTrimThinCornerNeWhite + decals: + 67: -2,1 + 433: -4,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerNeWhite + decals: + 483: 7,9 + 484: 12,9 + 1035: 1,-19 + - node: + color: '#422E23FF' + id: WoodTrimThinCornerNwWhite + decals: + 68: -4,1 + - node: + color: '#463126FF' + id: WoodTrimThinCornerNwWhite + decals: + 1112: -2,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerNwWhite + decals: + 485: 6,9 + 486: 11,9 + 1036: -5,-19 + - node: + color: '#DE3A3A41' + id: WoodTrimThinCornerNwWhite + decals: + 555: 5,-15 + - node: + color: '#281E18FF' + id: WoodTrimThinCornerSeWhite + decals: + 324: 3,-8 + - node: + color: '#422E23FF' + id: WoodTrimThinCornerSeWhite + decals: + 270: 3,-5 + 435: -4,-3 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerSeWhite + decals: + 487: 12,7 + 488: 7,7 + 1037: 1,-22 + - node: + color: '#DE3A3A41' + id: WoodTrimThinCornerSeWhite + decals: + 561: 8,-15 + 564: 7,-17 + - node: + color: '#281E18FF' + id: WoodTrimThinCornerSwWhite + decals: + 319: -9,-8 + - node: + color: '#422E23FF' + id: WoodTrimThinCornerSwWhite + decals: + 293: -9,-5 + 437: -2,-3 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerSwWhite + decals: + 489: 6,7 + 490: 11,7 + 1038: -5,-22 + - node: + color: '#DE3A3A41' + id: WoodTrimThinCornerSwWhite + decals: + 571: 5,-17 + - node: + color: '#422E23FF' + id: WoodTrimThinInnerNeWhite + decals: + 36: -6,-3 + 37: -2,-3 + 69: -3,1 + 81: -2,0 + 87: 3,-3 + 454: -3,-3 + 455: -2,-4 + - node: + zIndex: 1 + color: '#463126FF' + id: WoodTrimThinInnerNeWhite + decals: + 1119: -4,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinInnerNeWhite + decals: + 1039: -5,-22 + 1041: 1,-19 + - node: + color: '#422E23FF' + id: WoodTrimThinInnerNwWhite + decals: + 32: -4,-3 + 38: 0,-3 + 70: -3,1 + 71: -4,0 + 84: -9,-3 + 452: -3,-3 + 453: -4,-4 + - node: + zIndex: 1 + color: '#463126FF' + id: WoodTrimThinInnerNwWhite + decals: + 1118: -2,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinInnerNwWhite + decals: + 1043: 1,-22 + 1044: -5,-19 + - node: + color: '#DE3A3A41' + id: WoodTrimThinInnerNwWhite + decals: + 583: 6,-15 + - node: + color: '#422E23FF' + id: WoodTrimThinInnerSeWhite + decals: + 79: -2,0 + 80: -2,-1 + 86: 3,-4 + 135: -6,-5 + 201: -3,-8 + 314: -6,-5 + 457: -2,-4 + - node: + zIndex: 1 + color: '#463126FF' + id: WoodTrimThinInnerSeWhite + decals: + 1115: -3,-5 + 1116: -4,-3 + 1122: -2,-5 + - node: + color: '#4B362BFF' + id: WoodTrimThinInnerSeWhite + decals: + 1045: -5,-19 + 1046: 1,-22 + - node: + color: '#DE3A3A41' + id: WoodTrimThinInnerSeWhite + decals: + 582: 7,-15 + - node: + color: '#422E23FF' + id: WoodTrimThinInnerSwWhite + decals: + 45: 0,-1 + 72: -4,0 + 75: -4,-1 + 85: -9,-4 + 136: 0,-1 + 143: -4,-5 + 162: 0,-5 + 197: -3,-8 + 313: 0,-5 + 451: -4,-4 + - node: + zIndex: 1 + color: '#463126FF' + id: WoodTrimThinInnerSwWhite + decals: + 1114: -3,-5 + 1117: -2,-3 + - node: + color: '#4B362BFF' + id: WoodTrimThinInnerSwWhite + decals: + 1047: 1,-19 + 1048: -5,-22 + - node: + color: '#281E18FF' + id: WoodTrimThinLineEWhite + decals: + 325: 3,-7 + 326: 3,-6 + - node: + color: '#422E23FF' + id: WoodTrimThinLineEWhite + decals: + 40: -2,-2 + 77: -2,-1 + 121: 3,-2 + 123: 3,-5 + 153: -2,-8 + 154: -2,-7 + 155: -2,-6 + 178: -6,-6 + 179: -6,-7 + 188: -2,-8 + 372: -6,-8 + 443: -5,-4 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineEWhite + decals: + 491: 12,8 + 492: 7,8 + 1030: -5,-21 + 1031: -5,-20 + 1032: 1,-21 + 1033: 1,-20 + - node: + color: '#DE3A3A41' + id: WoodTrimThinLineEWhite + decals: + 579: 7,-16 + 581: 8,-14 + - node: + color: '#422E23FF' + id: WoodTrimThinLineNWhite + decals: + 31: -5,-3 + 39: -1,-3 + 441: -3,-6 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineNWhite + decals: + 1015: -4,-22 + 1016: -3,-22 + 1017: -2,-22 + 1018: -1,-22 + 1019: 0,-22 + 1020: 0,-19 + 1021: -1,-19 + 1022: -2,-19 + 1023: -3,-19 + 1024: -4,-19 + - node: + color: '#281E18FF' + id: WoodTrimThinLineSWhite + decals: + 320: -8,-8 + 321: -7,-8 + 322: 1,-8 + 323: 2,-8 + 327: 0,-8 + 366: -6,-8 + - node: + color: '#422E23FF' + id: WoodTrimThinLineSWhite + decals: + 115: 0,-1 + 117: 1,-1 + 118: 2,-1 + 119: 3,-1 + 139: -5,-5 + 159: -1,-5 + 182: -4,-8 + 185: -2,-8 + 278: 2,-5 + 279: 1,-5 + 284: -8,-5 + 287: -7,-5 + 306: 0,-5 + 307: -6,-5 + 398: 0,-2 + 399: 1,-2 + 400: 2,-2 + 401: 3,-2 + 444: -3,-2 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineSWhite + decals: + 1002: -4,-22 + 1003: -3,-22 + 1004: -2,-22 + 1005: -1,-22 + 1006: 0,-22 + 1010: -4,-19 + 1011: -3,-19 + 1012: -2,-19 + 1013: -1,-19 + 1014: 0,-19 + - node: + color: '#DE3A3A41' + id: WoodTrimThinLineSWhite + decals: + 544: 5,-13 + 545: 6,-13 + 546: 7,-13 + 547: 8,-13 + 580: 6,-17 + - node: + color: '#281E18FF' + id: WoodTrimThinLineWWhite + decals: + 317: -9,-6 + 318: -9,-7 + - node: + color: '#422E23FF' + id: WoodTrimThinLineWWhite + decals: + 33: -4,-2 + 41: 0,-2 + 73: -4,-1 + 146: -4,-6 + 148: -4,-7 + 149: -4,-8 + 170: -1,0 + 181: 0,-6 + 183: 0,-7 + 184: 0,-8 + 190: -4,-8 + 363: 0,-8 + 406: 0,-2 + 442: -1,-4 + - node: + color: '#4B362BFF' + id: WoodTrimThinLineWWhite + decals: + 493: 6,8 + 494: 11,8 + 1025: 1,-21 + 1026: 1,-20 + 1028: -5,-21 + 1029: -5,-20 + - node: + color: '#DE3A3A41' + id: WoodTrimThinLineWWhite + decals: + 573: 5,-16 + 577: 6,-14 + - type: GridAtmosphere + version: 2 + data: + tiles: + -4,-4: + 0: 62540 + -5,-4: + 0: 32768 + -4,-2: + 1: 65535 + -5,-2: + 1: 60608 + -4,-1: + 1: 65535 + -5,-1: + 1: 52974 + -4,0: + 1: 255 + -3,-4: + 0: 12847 + 1: 2048 + -3,-2: + 1: 48056 + -3,-1: + 1: 48127 + -3,-5: + 0: 4383 + -3,-3: + 0: 8465 + 1: 2184 + -3,0: + 1: 32907 + 0: 4096 + -2,-3: + 1: 2039 + -2,-2: + 1: 63351 + -2,-1: + 1: 30719 + -2,-4: + 1: 3310 + -2,0: + 1: 28799 + -2,-5: + 1: 61134 + -1,-4: + 1: 20479 + -1,-3: + 1: 12287 + -1,-2: + 1: 63351 + -1,-1: + 1: 30719 + -1,-5: + 1: 65535 + -1,0: + 1: 62079 + 0,-4: + 1: 2047 + 0,-3: + 1: 4095 + 0,-2: + 1: 65535 + 0,-1: + 1: 65535 + 0,0: + 1: 61695 + 0,1: + 1: 62719 + -1,1: + 1: 29439 + 0,2: + 1: 65535 + 0,3: + 1: 4095 + 0,4: + 0: 11810 + 1,1: + 1: 53487 + 1,2: + 1: 4573 + 1,3: + 1: 3551 + 1,0: + 1: 61166 + 1,4: + 0: 61713 + 1,-1: + 1: 61183 + 2,0: + 1: 65535 + 2,1: + 1: 63487 + 2,2: + 1: 2047 + 2,3: + 1: 4095 + 2,-1: + 1: 65535 + 2,4: + 0: 61713 + 3,0: + 1: 16179 + 3,1: + 1: 4147 + 3,2: + 1: 17 + 0: 35016 + 3,3: + 1: 273 + 0: 35976 + 3,-1: + 1: 16179 + 3,4: + 0: 63897 + 4,0: + 1: 256 + 0,-5: + 1: 65407 + 1,-3: + 1: 61182 + 1,-4: + 1: 60654 + 1,-2: + 1: 61166 + 1,-5: + 1: 57344 + 0: 14 + 2,-4: + 1: 40412 + 2,-3: + 1: 65535 + 2,-2: + 1: 65535 + 2,-5: + 1: 61164 + 3,-4: + 1: 497 + 3,-3: + 1: 62259 + 3,-2: + 1: 13107 + 3,-5: + 1: 4369 + 4,-4: + 1: 16 + 4,-3: + 1: 4096 + 4,-1: + 1: 256 + -5,0: + 1: 12 + 0: 32768 + -4,1: + 0: 20224 + -5,1: + 0: 2297 + -4,2: + 0: 196 + -3,1: + 0: 8977 + 1: 136 + -3,2: + 0: 8946 + -3,3: + 0: 738 + -2,1: + 1: 49279 + -2,2: + 0: 16 + 1: 49344 + -2,3: + 0: 16 + 1: 49344 + -2,4: + 1: 12 + 0: 17408 + -1,2: + 1: 30583 + -1,3: + 1: 29303 + -1,4: + 1: 7 + 0: 17408 + 0,-8: + 0: 8944 + -1,-8: + 0: 240 + 0,-7: + 1: 8704 + 0: 130 + -1,-7: + 1: 43520 + 0,-6: + 1: 65522 + -1,-6: + 1: 65530 + 1,-8: + 0: 18192 + 1,-7: + 0: 17652 + 1,-6: + 0: 14 + 2,-7: + 0: 16 + 1: 52360 + 2,-6: + 1: 61164 + 2,-8: + 1: 34944 + 3,-7: + 1: 4352 + 3,-6: + 1: 4593 + 4,-6: + 1: 16 + -3,-7: + 0: 4596 + -3,-6: + 0: 4383 + -3,-8: + 0: 19456 + -2,-8: + 0: 35312 + -2,-7: + 0: 56 + 1: 34816 + -2,-6: + 1: 61160 + -6,-2: + 0: 7974 + -6,-1: + 0: 61713 + -6,0: + 0: 50274 + -6,-3: + 0: 19584 + -5,-3: + 0: 2207 + -6,1: + 0: 8 + -2,5: + 0: 228 + -1,5: + 0: 8820 + -1,6: + 0: 59942 + 0,5: + 1: 13056 + 0: 130 + 0,6: + 1: 3 + 0: 62472 + 1,5: + 0: 4369 + 1,6: + 0: 4369 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: SpreaderGrid + - type: GridPathfinding + - type: NavMap + - type: RestrictedRange + range: 48 +- proto: AirAlarm entities: - - uid: 12 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 818 + - type: DeviceList + devices: + - 1089 + - 761 + - 138 + - 971 + - 844 + - 954 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 818 + - uid: 1009 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 818 + - type: DeviceList + devices: + - 1721 + - 1712 + - 1718 + - 1711 + - 1710 + - 1511 + - 138 + - uid: 1038 + components: + - type: Transform + pos: -3.5,6.5 + parent: 818 + - type: DeviceList + devices: + - 969 + - 652 + - 970 + - 788 + - 642 + - 17 + - 797 + - 1732 + - 622 + - 596 + - 1868 + - 1876 + - uid: 1040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 818 + - type: DeviceList + devices: + - 108 + - 109 + - 1174 + - 1177 + - 1176 + - 1173 + - 298 + - 970 + - 777 + - 841 + - 971 + - 592 + - 583 + - uid: 1072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 818 + - type: DeviceList + devices: + - 519 + - 13 + - 954 + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 818 + - type: DeviceList + devices: + - 931 + - 636 + - 601 + - 602 + - 603 + - 474 + - 461 + - 8 + - 652 + - 777 + - 841 + - 844 + - 837 + - 755 + - 766 + - 757 + - 568 +- proto: Airlock + entities: + - uid: 14 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 818 + - uid: 15 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 818 + - uid: 20 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 818 + - uid: 21 + components: + - type: Transform + pos: 4.5,4.5 + parent: 818 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 818 + - uid: 473 + components: + - type: Transform + pos: -4.5,13.5 + parent: 818 + missingComponents: + - AccessReader + - uid: 549 + components: + - type: Transform + pos: -4.5,9.5 + parent: 818 + missingComponents: + - AccessReader + - uid: 595 + components: + - type: Transform + pos: -4.5,7.5 + parent: 818 + missingComponents: + - AccessReader + - uid: 791 + components: + - type: Transform + pos: -4.5,11.5 + parent: 818 + missingComponents: + - AccessReader + - uid: 1344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 818 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 764 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 818 +- proto: AirlockBarGlassLocked + entities: + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 818 +- proto: AirlockEngineeringLocked + entities: + - uid: 1632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 818 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 28 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 550 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 561 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 1221 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 1363 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible +- proto: AirlockExternalShuttleLocked + entities: + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 1363: + - DockStatus: AutoClose + 1960: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 28: + - DockStatus: AutoClose + 1959: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 561: + - DockStatus: AutoClose + 1957: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 550: + - DockStatus: AutoClose + 1958: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 462: + - DockStatus: AutoClose + 1911: + - DoorStatus: Trigger + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible + - uid: 1373 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 818 + missingComponents: + - RCDDeconstructable + - Damageable + - Destructible +- proto: AirlockGlass + entities: + - uid: 1142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 818 + - uid: 1337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 818 + - uid: 1342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 818 + - uid: 1455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 818 +- proto: AirlockMaint + entities: + - uid: 1704 + components: + - type: Transform + pos: -2.5,14.5 + parent: 818 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 730 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 818 +- proto: AirSensor + entities: + - uid: 568 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 +- proto: APCBasic + entities: + - uid: 127 + components: + - type: Transform + pos: -0.5,6.5 + parent: 818 + - uid: 572 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 818 + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 818 + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 818 + - uid: 1138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 818 +- proto: ArrivalsShuttleTimer + entities: + - uid: 318 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 818 + - uid: 486 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 818 + - uid: 487 + components: + - type: Transform + pos: 14.5,3.5 + parent: 818 + - uid: 802 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 818 + - uid: 803 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 818 +- proto: Ash + entities: + - uid: 1660 + components: + - type: Transform + pos: -1.54991,12.886424 + parent: 818 +- proto: Ashtray + entities: + - uid: 1661 + components: + - type: Transform + pos: -1.596785,12.459861 + parent: 818 +- proto: AtmosDeviceFanTiny + entities: + - uid: 34 + components: + - type: Transform + pos: 16.5,2.5 + parent: 818 + - uid: 322 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 818 + - uid: 463 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 818 + - uid: 484 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 818 + - uid: 635 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 818 + - uid: 1209 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 818 +- proto: BarSign + entities: + - uid: 648 + components: + - type: Transform + pos: 2.5,2.5 + parent: 818 +- proto: BaseComputer + entities: + - uid: 1648 + components: + - type: MetaData + name: касса + - type: Transform + pos: -1.5,-19.5 + parent: 818 +- proto: BenchRedComfy + entities: + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 818 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 818 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 818 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 818 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 818 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 818 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 818 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 818 + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 818 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 818 + - uid: 363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 818 + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 818 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 818 + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 818 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 818 + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 818 + - uid: 494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 818 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 818 + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 818 + - uid: 517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 818 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 818 + - uid: 660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 818 + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 818 + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 818 +- proto: BlockGameArcade + entities: + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 818 +- proto: BookRandomStory + entities: + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.68713,-1.3668416 + parent: 818 +- proto: BoozeDispenser + entities: + - uid: 513 + components: + - type: Transform + pos: 1.5,1.5 + parent: 818 +- proto: BowImprovised + entities: + - uid: 157 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 142 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 818 + - uid: 143 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 818 + - uid: 472 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 818 + - uid: 477 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 818 + - uid: 512 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 818 + - uid: 604 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 818 + - uid: 665 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 818 + - uid: 806 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 818 + - uid: 1010 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 818 + - uid: 1238 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 818 + - uid: 1384 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 818 + - uid: 1394 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 818 + - uid: 1395 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 818 + - uid: 1396 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 818 + - uid: 1397 + components: + - type: Transform + pos: -0.5,6.5 + parent: 818 + - uid: 1398 + components: + - type: Transform + pos: -0.5,5.5 + parent: 818 + - uid: 1399 + components: + - type: Transform + pos: -0.5,4.5 + parent: 818 + - uid: 1401 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 818 + - uid: 1402 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 818 + - uid: 1403 + components: + - type: Transform + pos: -1.5,4.5 + parent: 818 + - uid: 1404 + components: + - type: Transform + pos: -2.5,4.5 + parent: 818 + - uid: 1405 + components: + - type: Transform + pos: -3.5,4.5 + parent: 818 + - uid: 1406 + components: + - type: Transform + pos: -4.5,4.5 + parent: 818 + - uid: 1407 + components: + - type: Transform + pos: -5.5,4.5 + parent: 818 + - uid: 1408 + components: + - type: Transform + pos: -6.5,4.5 + parent: 818 + - uid: 1409 + components: + - type: Transform + pos: 0.5,4.5 + parent: 818 + - uid: 1410 + components: + - type: Transform + pos: 1.5,4.5 + parent: 818 + - uid: 1411 + components: + - type: Transform + pos: 2.5,4.5 + parent: 818 + - uid: 1415 + components: + - type: Transform + pos: -2.5,5.5 + parent: 818 + - uid: 1416 + components: + - type: Transform + pos: -2.5,6.5 + parent: 818 + - uid: 1417 + components: + - type: Transform + pos: -2.5,7.5 + parent: 818 + - uid: 1418 + components: + - type: Transform + pos: -2.5,8.5 + parent: 818 + - uid: 1419 + components: + - type: Transform + pos: -2.5,9.5 + parent: 818 + - uid: 1420 + components: + - type: Transform + pos: -2.5,10.5 + parent: 818 + - uid: 1421 + components: + - type: Transform + pos: -2.5,11.5 + parent: 818 + - uid: 1424 + components: + - type: Transform + pos: -2.5,12.5 + parent: 818 + - uid: 1426 + components: + - type: Transform + pos: -2.5,13.5 + parent: 818 + - uid: 1443 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 818 + - uid: 1444 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 818 + - uid: 1445 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 818 + - uid: 1446 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 818 + - uid: 1449 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 818 + - uid: 1450 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 818 + - uid: 1451 + components: + - type: Transform + pos: 12.5,0.5 + parent: 818 + - uid: 1452 + components: + - type: Transform + pos: 12.5,1.5 + parent: 818 + - uid: 1453 + components: + - type: Transform + pos: 12.5,2.5 + parent: 818 + - uid: 1454 + components: + - type: Transform + pos: 13.5,2.5 + parent: 818 + - uid: 1456 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 818 + - uid: 1457 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 818 + - uid: 1458 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 818 + - uid: 1459 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 818 + - uid: 1460 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 818 + - uid: 1461 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 818 + - uid: 1462 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 818 + - uid: 1463 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 818 + - uid: 1464 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 818 + - uid: 1465 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 818 + - uid: 1466 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 818 + - uid: 1467 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 818 + - uid: 1468 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 818 + - uid: 1469 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 818 + - uid: 1470 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 818 + - uid: 1471 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 818 + - uid: 1472 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 818 + - uid: 1473 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 818 + - uid: 1474 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 818 + - uid: 1475 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 818 + - uid: 1476 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 818 + - uid: 1477 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 818 + - uid: 1478 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 818 + - uid: 1479 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 818 + - uid: 1480 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 818 + - uid: 1481 + components: + - type: Transform + pos: 6.5,0.5 + parent: 818 + - uid: 1482 + components: + - type: Transform + pos: 6.5,1.5 + parent: 818 + - uid: 1483 + components: + - type: Transform + pos: 6.5,2.5 + parent: 818 + - uid: 1484 + components: + - type: Transform + pos: 6.5,3.5 + parent: 818 + - uid: 1485 + components: + - type: Transform + pos: 6.5,4.5 + parent: 818 + - uid: 1486 + components: + - type: Transform + pos: 7.5,4.5 + parent: 818 + - uid: 1487 + components: + - type: Transform + pos: 8.5,4.5 + parent: 818 + - uid: 1488 + components: + - type: Transform + pos: 9.5,4.5 + parent: 818 + - uid: 1489 + components: + - type: Transform + pos: 9.5,5.5 + parent: 818 + - uid: 1490 + components: + - type: Transform + pos: 9.5,6.5 + parent: 818 + - uid: 1491 + components: + - type: Transform + pos: 9.5,7.5 + parent: 818 + - uid: 1492 + components: + - type: Transform + pos: 9.5,8.5 + parent: 818 + - uid: 1493 + components: + - type: Transform + pos: 9.5,9.5 + parent: 818 + - uid: 1494 + components: + - type: Transform + pos: 8.5,8.5 + parent: 818 + - uid: 1495 + components: + - type: Transform + pos: 10.5,8.5 + parent: 818 + - uid: 1496 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 818 + - uid: 1497 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 818 + - uid: 1498 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 818 + - uid: 1499 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 818 + - uid: 1500 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 818 + - uid: 1501 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 818 + - uid: 1502 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 818 + - uid: 1503 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 818 + - uid: 1504 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 818 + - uid: 1505 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 818 + - uid: 1506 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 818 + - uid: 1507 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 818 + - uid: 1508 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 818 + - uid: 1509 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 818 + - uid: 1510 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 818 + - uid: 1519 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 818 + - uid: 1520 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 818 + - uid: 1521 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 818 + - uid: 1522 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 818 + - uid: 1523 + components: + - type: Transform + pos: -1.5,0.5 + parent: 818 + - uid: 1524 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 818 + - uid: 1525 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 818 + - uid: 1526 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 818 + - uid: 1527 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 818 + - uid: 1528 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 818 + - uid: 1529 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 818 + - uid: 1530 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 818 + - uid: 1531 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 818 + - uid: 1532 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 818 + - uid: 1533 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 818 + - uid: 1534 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 818 + - uid: 1535 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 818 + - uid: 1536 + components: + - type: Transform + pos: -2.5,0.5 + parent: 818 + - uid: 1538 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 818 + - uid: 1539 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 818 + - uid: 1540 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 818 + - uid: 1542 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 818 + - uid: 1543 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 818 + - uid: 1544 + components: + - type: Transform + pos: -0.5,0.5 + parent: 818 + - uid: 1546 + components: + - type: Transform + pos: 0.5,0.5 + parent: 818 + - uid: 1547 + components: + - type: Transform + pos: -3.5,0.5 + parent: 818 + - uid: 1548 + components: + - type: Transform + pos: -4.5,0.5 + parent: 818 + - uid: 1549 + components: + - type: Transform + pos: -5.5,0.5 + parent: 818 + - uid: 1550 + components: + - type: Transform + pos: -6.5,0.5 + parent: 818 + - uid: 1551 + components: + - type: Transform + pos: 1.5,0.5 + parent: 818 + - uid: 1553 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 818 + - uid: 1554 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 818 + - uid: 1555 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 818 + - uid: 1556 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 818 + - uid: 1557 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 818 + - uid: 1558 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 818 + - uid: 1559 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 818 + - uid: 1560 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 818 + - uid: 1561 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 818 + - uid: 1562 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 818 + - uid: 1563 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 818 + - uid: 1564 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 818 + - uid: 1565 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 818 + - uid: 1579 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 818 + - uid: 1591 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 818 + - uid: 1592 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 818 + - uid: 1593 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 818 + - uid: 1594 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 818 + - uid: 1595 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 818 + - uid: 1597 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 818 + - uid: 1598 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 818 + - uid: 1599 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 818 + - uid: 1600 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 818 + - uid: 1601 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 818 + - uid: 1602 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 818 + - uid: 1603 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 818 + - uid: 1604 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 818 + - uid: 1605 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 818 + - uid: 1606 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 818 + - uid: 1607 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 818 + - uid: 1608 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 818 + - uid: 1609 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 818 + - uid: 1610 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 818 + - uid: 1611 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 818 + - uid: 1612 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 818 + - uid: 1613 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 818 + - uid: 1615 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 818 + - uid: 1616 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 818 + - uid: 1617 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 818 + - uid: 1822 + components: + - type: Transform + pos: -2.5,14.5 + parent: 818 + - uid: 1824 + components: + - type: Transform + pos: -2.5,15.5 + parent: 818 + - uid: 1825 + components: + - type: Transform + pos: -3.5,15.5 + parent: 818 + - uid: 1826 + components: + - type: Transform + pos: -4.5,15.5 + parent: 818 + - uid: 1871 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 818 + - uid: 1901 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 818 +- proto: CableHV + entities: + - uid: 946 + components: + - type: Transform + pos: -5.5,3.5 + parent: 818 + - uid: 947 + components: + - type: Transform + pos: -5.5,4.5 + parent: 818 + - uid: 948 + components: + - type: Transform + pos: -5.5,5.5 + parent: 818 + - uid: 949 + components: + - type: Transform + pos: -6.5,5.5 + parent: 818 + - uid: 951 + components: + - type: Transform + pos: -7.5,5.5 + parent: 818 + - uid: 952 + components: + - type: Transform + pos: -8.5,5.5 + parent: 818 +- proto: CableMV + entities: + - uid: 57 + components: + - type: Transform + pos: -5.5,4.5 + parent: 818 + - uid: 207 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 818 + - uid: 227 + components: + - type: Transform + pos: -8.5,5.5 + parent: 818 + - uid: 291 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 818 + - uid: 293 + components: + - type: Transform + pos: -7.5,4.5 + parent: 818 + - uid: 294 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 818 + - uid: 297 + components: + - type: Transform + pos: -8.5,4.5 + parent: 818 + - uid: 699 + components: + - type: Transform + pos: -6.5,4.5 + parent: 818 + - uid: 974 + components: + - type: Transform + pos: -4.5,4.5 + parent: 818 + - uid: 984 + components: + - type: Transform + pos: -3.5,4.5 + parent: 818 + - uid: 985 + components: + - type: Transform + pos: -2.5,4.5 + parent: 818 + - uid: 986 + components: + - type: Transform + pos: -1.5,4.5 + parent: 818 + - uid: 987 + components: + - type: Transform + pos: -0.5,4.5 + parent: 818 + - uid: 988 + components: + - type: Transform + pos: -0.5,5.5 + parent: 818 + - uid: 989 + components: + - type: Transform + pos: -0.5,6.5 + parent: 818 + - uid: 1000 + components: + - type: Transform + pos: 0.5,4.5 + parent: 818 + - uid: 1001 + components: + - type: Transform + pos: 1.5,4.5 + parent: 818 + - uid: 1002 + components: + - type: Transform + pos: 2.5,4.5 + parent: 818 + - uid: 1003 + components: + - type: Transform + pos: 3.5,4.5 + parent: 818 + - uid: 1004 + components: + - type: Transform + pos: 4.5,4.5 + parent: 818 + - uid: 1005 + components: + - type: Transform + pos: 5.5,4.5 + parent: 818 + - uid: 1006 + components: + - type: Transform + pos: 6.5,4.5 + parent: 818 + - uid: 1007 + components: + - type: Transform + pos: 7.5,4.5 + parent: 818 + - uid: 1008 + components: + - type: Transform + pos: 8.5,4.5 + parent: 818 + - uid: 1012 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 818 + - uid: 1023 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 818 + - uid: 1024 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 818 + - uid: 1025 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 818 + - uid: 1026 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 818 + - uid: 1027 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 818 + - uid: 1028 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 818 + - uid: 1029 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 818 + - uid: 1033 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 818 + - uid: 1034 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 818 + - uid: 1039 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 818 + - uid: 1041 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 818 + - uid: 1042 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 818 + - uid: 1043 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 818 + - uid: 1044 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 818 + - uid: 1045 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 818 + - uid: 1046 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 818 + - uid: 1047 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 818 + - uid: 1048 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 818 + - uid: 1049 + components: + - type: Transform + pos: 8.5,3.5 + parent: 818 + - uid: 1050 + components: + - type: Transform + pos: 8.5,2.5 + parent: 818 + - uid: 1051 + components: + - type: Transform + pos: 8.5,1.5 + parent: 818 + - uid: 1052 + components: + - type: Transform + pos: 8.5,0.5 + parent: 818 + - uid: 1053 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 818 + - uid: 1054 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 818 + - uid: 1055 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 818 + - uid: 1056 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 818 + - uid: 1057 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 818 + - uid: 1058 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 818 + - uid: 1059 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 818 + - uid: 1060 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 818 + - uid: 1061 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 818 + - uid: 1062 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 818 + - uid: 1063 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 818 + - uid: 1064 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 818 + - uid: 1065 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 818 + - uid: 1066 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 818 + - uid: 1067 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 818 + - uid: 1068 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 818 + - uid: 1069 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 818 + - uid: 1094 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 818 + - uid: 1125 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 818 + - uid: 1126 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 818 + - uid: 1127 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 818 + - uid: 1128 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 818 + - uid: 1129 + components: + - type: Transform + pos: -2.5,0.5 + parent: 818 + - uid: 1130 + components: + - type: Transform + pos: -2.5,1.5 + parent: 818 + - uid: 1131 + components: + - type: Transform + pos: -2.5,2.5 + parent: 818 + - uid: 1132 + components: + - type: Transform + pos: -2.5,3.5 + parent: 818 + - uid: 1133 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 818 + - uid: 1134 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 818 + - uid: 1135 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 818 +- proto: CableTerminal + entities: + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 818 +- proto: CandleBlackInfinite + entities: + - uid: 540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.2142973,-7.1859117 + parent: 818 +- proto: CandleGreenSmallInfinite + entities: + - uid: 842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.7767973,-7.3265367 + parent: 818 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 772 + components: + - type: Transform + pos: -7.2544527,-7.1859117 + parent: 818 +- proto: CandleRedInfinite + entities: + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.7544527,-7.2327867 + parent: 818 +- proto: Carpet + entities: + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 818 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 818 + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 818 + - uid: 257 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 818 + - uid: 541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 818 + - uid: 554 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 818 + - uid: 990 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 818 + - uid: 996 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 818 + - uid: 1183 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 818 + - uid: 1186 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 818 + - uid: 1207 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 818 + - uid: 1215 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 818 + - uid: 1217 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 818 + - uid: 1218 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 818 + - uid: 1219 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 818 +- proto: CarpetBlack + entities: + - uid: 617 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 818 + - uid: 1145 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 818 + - uid: 1184 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 818 + - uid: 1362 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 818 +- proto: CarpetGreen + entities: + - uid: 1167 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 818 + - uid: 1168 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 818 + - uid: 1169 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 818 + - uid: 1170 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 818 + - uid: 1171 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 818 + - uid: 1172 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 818 +- proto: CarpetWhite + entities: + - uid: 1157 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 818 + - uid: 1158 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 818 + - uid: 1159 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 818 + - uid: 1160 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 818 + - uid: 1161 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 818 + - uid: 1162 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 818 +- proto: Catwalk + entities: + - uid: 599 + components: + - type: Transform + pos: -5.5,4.5 + parent: 818 + - uid: 609 + components: + - type: Transform + pos: -8.5,4.5 + parent: 818 + - uid: 792 + components: + - type: Transform + pos: -6.5,4.5 + parent: 818 + - uid: 853 + components: + - type: Transform + pos: -7.5,4.5 + parent: 818 +- proto: Chair + entities: + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 818 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 818 + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 818 + - uid: 430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 818 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 818 + - uid: 457 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 818 + - uid: 1114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 818 + - uid: 1121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 818 + - uid: 1146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 818 +- proto: ChairGreyscale + entities: + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 818 +- proto: ChairOfficeDark + entities: + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5282974,-14.420438 + parent: 818 +- proto: ChairWood + entities: + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 818 + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 818 + - uid: 1392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 818 + - uid: 1625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 818 + - uid: 1626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 818 +- proto: CigaretteMold + entities: + - uid: 1763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.691752,12.017473 + parent: 818 +- proto: CigaretteSpent + entities: + - uid: 1671 + components: + - type: Transform + pos: -1.70616,12.589549 + parent: 818 + - uid: 1674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.378035,12.433299 + parent: 818 + - uid: 1675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.315535,12.433299 + parent: 818 +- proto: ClothingBeltQuiver + entities: + - uid: 156 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatBeretFrench + entities: + - uid: 1518 + components: + - type: Transform + parent: 1516 + - type: Physics + canCollide: False +- proto: ClothingHeadHatBunny + entities: + - uid: 1744 + components: + - type: Transform + pos: 1.321607,-25.619549 + parent: 818 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 154 + components: + - type: MetaData + name: повязка службы безопасности + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatUshanka + entities: + - uid: 1514 + components: + - type: Transform + parent: 1512 + - type: Physics + canCollide: False +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 153 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterCoat + entities: + - uid: 1079 + components: + - type: Transform + pos: -6.765032,-16.31055 + parent: 818 + - uid: 1513 + components: + - type: Transform + parent: 1512 + - type: Physics + canCollide: False +- proto: ClothingOuterWinterEngi + entities: + - uid: 1731 + components: + - type: MetaData + name: коричневая зимняя куртка + - type: Transform + pos: -6.793171,-17.483648 + parent: 818 +- proto: ClothingOuterWinterGen + entities: + - uid: 1087 + components: + - type: MetaData + name: бело-синяя зимняя куртка + - type: Transform + pos: -6.786134,-16.921467 + parent: 818 +- proto: ClothingShoesBootsLaceup + entities: + - uid: 1733 + components: + - type: Transform + pos: 2.352745,-13.342463 + parent: 818 +- proto: ClothingShoesBootsWinter + entities: + - uid: 1338 + components: + - type: Transform + pos: -5.3679223,-13.595501 + parent: 818 +- proto: ClothingShoesBootsWinterCargo + entities: + - uid: 1187 + components: + - type: MetaData + name: коричневые зимние ботинки + - type: Transform + pos: -3.6020138,-13.568881 + parent: 818 +- proto: ClothingShoesBootsWinterMed + entities: + - uid: 1254 + components: + - type: MetaData + name: синие зимние ботинки + - type: Transform + pos: -4.5038624,-13.212091 + parent: 818 +- proto: ClothingShoesBootsWork + entities: + - uid: 1634 + components: + - type: Transform + pos: 1.3232573,-13.656497 + parent: 818 +- proto: ClothingShoesColorBlack + entities: + - uid: 1588 + components: + - type: Transform + pos: 0.50740063,-13.279211 + parent: 818 +- proto: ClothingShoesColorBlue + entities: + - uid: 37 + components: + - type: Transform + pos: 0.4818722,-13.819506 + parent: 818 +- proto: ClothingShoesColorRed + entities: + - uid: 1011 + components: + - type: Transform + pos: 2.2520154,-13.7933235 + parent: 818 +- proto: ClothingShoesDameDane + entities: + - uid: 1766 + components: + - type: Transform + pos: 2.990286,-16.449436 + parent: 818 +- proto: ClothingShoesLeather + entities: + - uid: 1319 + components: + - type: Transform + pos: 1.5809284,-13.332744 + parent: 818 +- proto: ClothingShoesSlippers + entities: + - uid: 1745 + components: + - type: Transform + pos: 1.727857,-25.275799 + parent: 818 +- proto: ClothingShoesTourist + entities: + - uid: 152 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtBlackElegantDress + entities: + - uid: 1382 + components: + - type: MetaData + desc: Элегантное платье с красивым бантом. + name: чёрное элегантное платье. + - type: Transform + pos: 3.8379946,-16.860613 + parent: 818 + - uid: 1517 + components: + - type: MetaData + desc: Элегантное платье с красивым бантом. + name: чёрное элегантное платье + - type: Transform + parent: 1516 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtGreenTurtleneckDress + entities: + - uid: 1191 + components: + - type: MetaData + desc: Платье с водолазкой и уникальным дизайном. + name: зелёное платье с водолазкой + - type: Transform + pos: 3.8496308,-17.384262 + parent: 818 +- proto: ClothingUniformJumpskirtPurpleElegantDress + entities: + - uid: 1233 + components: + - type: MetaData + desc: Элегантное платье с красивым бантом. + name: фиолетовое элегантное платье + - type: Transform + pos: 3.8296533,-16.31055 + parent: 818 +- proto: ClothingUniformJumpsuitCasualRed + entities: + - uid: 155 + components: + - type: Transform + parent: 151 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 1515 + components: + - type: Transform + parent: 1512 + - type: Physics + canCollide: False +- proto: ComfyChair + entities: + - uid: 341 + components: + - type: Transform + pos: 6.5,9.5 + parent: 818 + - uid: 466 + components: + - type: Transform + pos: 12.5,9.5 + parent: 818 + - uid: 481 + components: + - type: Transform + pos: 7.5,9.5 + parent: 818 + - uid: 499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 818 + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 818 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 818 + - uid: 621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 818 + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 818 + - uid: 625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 818 + - uid: 626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 818 + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 818 + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 818 + - uid: 651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 818 + - uid: 771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 818 + - uid: 827 + components: + - type: Transform + pos: 11.5,9.5 + parent: 818 + - uid: 828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 818 + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 818 + - uid: 835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 818 + - uid: 836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 818 + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 818 + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 818 + - uid: 1752 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 818 +- proto: ComputerCriminalRecords + entities: + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 818 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 818 +- proto: ConveyorBelt + entities: + - uid: 1689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 818 + - uid: 1690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 818 + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 818 + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 818 + - uid: 1693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 818 + - uid: 1694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 818 +- proto: CowToolboxFilled + entities: + - uid: 1645 + components: + - type: Transform + pos: -6.457727,-11.454361 + parent: 818 +- proto: CrateTrashCartFilled + entities: + - uid: 1682 + components: + - type: Transform + pos: -5.5,15.5 + parent: 818 +- proto: CurtainsWhite + entities: + - uid: 916 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 818 +- proto: CurtainsWhiteOpen + entities: + - uid: 19 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 818 + - uid: 917 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 818 + - uid: 938 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 818 +- proto: DisposalBend + entities: + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 818 + - uid: 1253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 818 + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 818 + - uid: 1313 + components: + - type: Transform + pos: 5.5,4.5 + parent: 818 + - uid: 1335 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 818 + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 818 +- proto: DisposalJunction + entities: + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 818 + - uid: 1251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 818 + - uid: 1314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 818 + - uid: 1666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 818 + - uid: 1668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 818 +- proto: DisposalJunctionFlipped + entities: + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 818 + - uid: 1662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 818 + - uid: 1663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 818 + - uid: 1667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 818 + - uid: 1724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 818 +- proto: DisposalPipe + entities: + - uid: 78 + components: + - type: Transform + pos: -2.5,0.5 + parent: 818 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 818 + - uid: 304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 818 + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 818 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 818 + - uid: 824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 818 + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 818 + - uid: 1151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 818 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 818 + - uid: 1153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 818 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-13.5 + parent: 818 + - uid: 1155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 818 + - uid: 1156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 818 + - uid: 1250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 818 + - uid: 1255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 818 + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 818 + - uid: 1257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 818 + - uid: 1258 + components: + - type: Transform + pos: -3.5,8.5 + parent: 818 + - uid: 1264 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 818 + - uid: 1265 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 818 + - uid: 1267 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 818 + - uid: 1268 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 818 + - uid: 1269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 818 + - uid: 1270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 818 + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 818 + - uid: 1272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 818 + - uid: 1273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 818 + - uid: 1274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 818 + - uid: 1278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 818 + - uid: 1279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 818 + - uid: 1280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 818 + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 818 + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 818 + - uid: 1296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 818 + - uid: 1297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 818 + - uid: 1299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 818 + - uid: 1303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 818 + - uid: 1304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 818 + - uid: 1305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 818 + - uid: 1306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 818 + - uid: 1307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 818 + - uid: 1308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 818 + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 818 + - uid: 1310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 818 + - uid: 1311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 818 + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 818 + - uid: 1664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 818 + - uid: 1665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 818 + - uid: 1670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 818 + - uid: 1672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 818 + - uid: 1673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 818 + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 818 +- proto: DisposalTrunk + entities: + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 818 + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 818 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 818 + - uid: 1260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 818 + - uid: 1275 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 818 + - uid: 1652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 818 + - uid: 1653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 818 + - uid: 1654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 818 + - uid: 1655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 818 + - uid: 1681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 818 + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 818 +- proto: DisposalUnit + entities: + - uid: 309 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 818 + - uid: 325 + components: + - type: Transform + pos: -1.5,7.5 + parent: 818 + - uid: 468 + components: + - type: Transform + pos: -3.5,1.5 + parent: 818 + - uid: 503 + components: + - type: Transform + pos: 5.5,3.5 + parent: 818 + - uid: 783 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 818 + - uid: 1327 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 818 +- proto: DrinkBadTouchGlass + entities: + - uid: 1912 + components: + - type: Transform + pos: 2.7226288,-0.3183478 + parent: 818 +- proto: DrinkColaCan + entities: + - uid: 111 + components: + - type: Transform + pos: -5.311922,-0.20970154 + parent: 818 + - uid: 171 + components: + - type: Transform + pos: -5.4770956,-0.40791774 + parent: 818 + - uid: 235 + components: + - type: Transform + pos: -5.6800737,-0.25959373 + parent: 818 +- proto: DrinkGlass + entities: + - uid: 659 + components: + - type: Transform + pos: 3.1884108,1.6255958 + parent: 818 + - uid: 877 + components: + - type: Transform + pos: 3.2977858,1.7662208 + parent: 818 + - uid: 880 + components: + - type: Transform + pos: 3.4696608,1.6099708 + parent: 818 + - uid: 1412 + components: + - type: Transform + pos: -6.3673034,-20.542006 + parent: 818 + - uid: 1422 + components: + - type: Transform + pos: 3.49748,-21.225851 + parent: 818 + - uid: 1725 + components: + - type: Transform + pos: 3.6521113,-20.442896 + parent: 818 + - uid: 1727 + components: + - type: Transform + pos: -6.555601,-21.315048 + parent: 818 +- proto: DrinkHotCoffee + entities: + - uid: 1695 + components: + - type: Transform + pos: 6.602686,8.518019 + parent: 818 + - uid: 1696 + components: + - type: Transform + pos: 7.524561,8.736769 + parent: 818 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 818 + - uid: 1676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 818 + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 818 +- proto: Firelock + entities: + - uid: 596 + components: + - type: Transform + pos: -2.5,6.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 818 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - 1038 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 818 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - uid: 766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - uid: 837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - uid: 844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - 86 + - uid: 954 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1072 + - 86 + - uid: 969 + components: + - type: Transform + pos: -4.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 +- proto: FirelockGlass + entities: + - uid: 138 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 86 + - 1009 + - uid: 298 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - 1040 + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - 1040 + - uid: 970 + components: + - type: Transform + pos: 4.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - 1038 + - uid: 971 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 86 + - 1040 +- proto: FoodBoxDonut + entities: + - uid: 1698 + components: + - type: Transform + pos: 12.368311,8.596144 + parent: 818 +- proto: FoodBoxPizzaFilled + entities: + - uid: 240 + components: + - type: Transform + pos: -5.4837027,1.7526376 + parent: 818 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 1966 + components: + - type: MetaData + name: газодобытчик воздуха + - type: Transform + pos: -8.5,-13.5 + parent: 818 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 673 + components: + - type: MetaData + name: газодобытчик воздуха + - type: Transform + pos: -8.5,-13.5 + parent: 818 +- proto: GasPassiveVent + entities: + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeBend + entities: + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 64 + components: + - type: Transform + pos: 8.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 110 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 818 + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 509 + components: + - type: Transform + pos: 11.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 632 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 732 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeFourway + entities: + - uid: 795 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 933 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 991 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1719 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeStraight + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23 + components: + - type: Transform + pos: -1.5,10.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 36 + components: + - type: Transform + pos: -1.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 38 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 47 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 818 + - uid: 50 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 100 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 117 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 118 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 119 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 120 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 121 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 818 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 818 + - uid: 150 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 319 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 320 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 321 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 529 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 615 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 616 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 702 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 703 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 721 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 756 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 784 components: - type: Transform - pos: 11.5,-3.5 - parent: 1 - missingComponents: - - Destructible -- proto: AirlockExternalGlass - entities: - - uid: 202 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 786 components: - type: Transform - pos: 25.5,-3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 488 - missingComponents: - - Destructible - - uid: 263 + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 787 components: - type: Transform - pos: 25.5,3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 21 - missingComponents: - - Destructible -- proto: AirlockGlass - entities: - - uid: 17 + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 793 components: - type: Transform - pos: 4.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 18 + pos: -6.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 798 components: - type: Transform - pos: 4.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 19 + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 800 components: - type: Transform - pos: 4.5,-0.5 - parent: 1 - missingComponents: - - Destructible -- proto: AirlockMaint - entities: - - uid: 20 + pos: -1.5,9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 801 components: - type: Transform - pos: 3.5,-4.5 - parent: 1 - missingComponents: - - Destructible -- proto: AirlockShuttle - entities: - - uid: 228 + pos: -2.5,7.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 807 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 863 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 864 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 881 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 883 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 488: - - DoorStatus: Input - missingComponents: - - Destructible - - uid: 429 + pos: 5.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 891 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 21: - - DoorStatus: Input - missingComponents: - - Destructible -- proto: APCBasic - entities: - - uid: 746 + pos: -2.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 892 components: - type: Transform - pos: 16.5,-9.5 - parent: 1 - missingComponents: - - Destructible -- proto: AtmosDeviceFanTiny - entities: - - uid: 461 + pos: -2.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - - uid: 462 + pos: -4.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 1 -- proto: BackmenVendingMachineCoffee - entities: - - uid: 400 + pos: -5.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 907 components: - type: Transform - pos: 14.5,-7.5 - parent: 1 - missingComponents: - - Destructible -- proto: Bed - entities: - - uid: 360 + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 909 components: - type: Transform - pos: 16.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 361 + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 912 components: - type: Transform - pos: 16.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 362 + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 913 components: - type: Transform - pos: 16.5,10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 387 + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 914 components: - type: Transform - pos: 8.5,-5.5 - parent: 1 - missingComponents: - - Destructible -- proto: BedsheetHOS - entities: - - uid: 388 + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 915 components: - type: Transform - pos: 8.5,-5.5 - parent: 1 -- proto: BedsheetSpawner - entities: - - uid: 363 + pos: -1.5,6.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 919 components: - type: Transform - pos: 16.5,4.5 - parent: 1 - - uid: 364 + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 921 components: - type: Transform - pos: 16.5,7.5 - parent: 1 - - uid: 365 + pos: -1.5,7.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 922 components: - type: Transform - pos: 16.5,10.5 - parent: 1 -- proto: BlastDoor - entities: - - uid: 377 + pos: 2.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 923 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 1 - missingComponents: - - Destructible -- proto: BookshelfFilled - entities: - - uid: 253 + pos: -6.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 926 components: - type: Transform - pos: 18.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 254 + pos: -7.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 927 components: - type: Transform - pos: 18.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 255 + pos: 2.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 928 components: - type: Transform - pos: 18.5,-9.5 - parent: 1 - missingComponents: - - Destructible -- proto: CableApcExtension - entities: - - uid: 14 + pos: 2.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 929 components: - type: Transform - pos: 24.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 15 + pos: -7.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 930 components: - type: Transform - pos: 24.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 209 + pos: 1.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 934 components: - type: Transform - pos: 23.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 210 + pos: 2.5,-0.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 937 components: - type: Transform - pos: 24.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 211 + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 942 components: - type: Transform - pos: 24.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 212 + pos: -2.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 943 components: - type: Transform - pos: 24.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 223 + pos: -2.5,-6.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 992 components: - type: Transform - pos: 24.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 224 + rot: 1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1147 components: - type: Transform - pos: 21.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 225 + pos: 8.5,-7.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1148 components: - type: Transform - pos: 20.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 286 + pos: 8.5,0.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1149 components: - type: Transform - pos: 23.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 296 + pos: 11.5,1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1185 components: - type: Transform - pos: 24.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 297 + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1211 components: - type: Transform - pos: 24.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 298 + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1707 components: - type: Transform - pos: 24.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 299 + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1708 components: - type: Transform - pos: 20.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 301 + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1715 components: - type: Transform - pos: 22.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 302 + pos: -0.5,-17.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1716 components: - type: Transform - pos: 20.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 451 + pos: -0.5,-16.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1717 components: - type: Transform - pos: 24.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 452 + pos: -1.5,-17.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1722 components: - type: Transform - pos: 24.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 453 + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1773 components: - type: Transform - pos: 24.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 455 + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1776 components: - type: Transform - pos: 23.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 456 + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1793 components: - type: Transform - pos: 21.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 463 + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1800 components: - type: Transform - pos: 23.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 464 + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1827 components: - type: Transform - pos: 21.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 466 + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1836 components: - type: Transform - pos: 22.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 483 + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1845 components: - type: Transform - pos: 24.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 485 + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1856 components: - type: Transform - pos: 24.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 486 + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1864 components: - type: Transform - pos: 24.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 504 + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1895 components: - type: Transform - pos: 24.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 505 + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeTJunction + entities: + - uid: 4 components: - type: Transform - pos: 22.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 506 + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 97 components: - type: Transform - pos: 22.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 511 + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 112 components: - type: Transform - pos: 24.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 512 + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 818 + - uid: 129 components: - type: Transform - pos: 24.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 523 + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 145 components: - type: Transform - pos: 25.5,-3.5 - parent: 1 - - uid: 524 + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 818 + - uid: 146 components: - type: Transform - pos: 26.5,-3.5 - parent: 1 - - uid: 525 + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 220 components: - type: Transform - pos: 25.5,3.5 - parent: 1 - - uid: 526 + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 344 components: - type: Transform - pos: 26.5,3.5 - parent: 1 - - uid: 597 + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 349 components: - type: Transform - pos: 18.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 753 + rot: 3.141592653589793 rad + pos: -6.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 354 components: - type: Transform - pos: 16.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 754 + pos: -3.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 387 components: - type: Transform - pos: 17.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 755 + pos: 2.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 465 components: - type: Transform - pos: 18.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 756 + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 483 components: - type: Transform - pos: 19.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 795 + pos: -3.5,4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 570 components: - type: Transform - pos: 21.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 796 + pos: 6.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 661 components: - type: Transform - pos: 20.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 797 + pos: -0.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 682 components: - type: Transform - pos: 19.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 798 + pos: 7.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 754 components: - type: Transform - pos: 19.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 799 + pos: -3.5,-10.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 776 components: - type: Transform - pos: 19.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 800 + rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 821 components: - type: Transform - pos: 19.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 802 + pos: 1.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 831 components: - type: Transform - pos: 19.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 803 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 840 components: - type: Transform - pos: 19.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 804 + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 908 components: - type: Transform - pos: 19.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 805 + pos: -2.5,-2.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 918 components: - type: Transform - pos: 19.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 806 + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1163 components: - type: Transform - pos: 19.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 807 + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1164 components: - type: Transform - pos: 19.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 808 + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1165 components: - type: Transform - pos: 19.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 809 + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1166 components: - type: Transform - pos: 19.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 810 + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1205 components: - type: Transform - pos: 19.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 811 + pos: -1.5,-11.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1726 components: - type: Transform - pos: 19.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 812 + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVentPump + entities: + - uid: 13 components: - type: Transform - pos: 19.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 813 + pos: -6.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1072 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 108 components: - type: Transform - pos: 19.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 814 + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 254 components: - type: Transform - pos: 19.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 815 + rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 461 components: - type: Transform - pos: 19.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 816 + pos: 1.5,0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 583 components: - type: Transform - pos: 19.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 817 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 602 components: - type: Transform - pos: 19.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 818 + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 603 components: - type: Transform - pos: 20.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 819 + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 622 components: - type: Transform - pos: 21.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 863 + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 636 components: - type: Transform - pos: 17.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 864 + pos: -6.5,0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 642 components: - type: Transform - pos: 16.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 865 + pos: -2.5,9.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 761 components: - type: Transform - pos: 15.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 866 + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 86 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 797 components: - type: Transform - pos: 14.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 867 + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1173 components: - type: Transform - pos: 13.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 868 + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1174 components: - type: Transform - pos: 12.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 869 + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1711 components: - type: Transform - pos: 11.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 870 + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1718 components: - type: Transform - pos: 10.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 871 + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1721 components: - type: Transform - pos: 9.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 872 + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1868 + components: + - type: Transform + pos: -2.5,16.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 8 components: - type: Transform - pos: 8.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 873 + pos: 2.5,0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17 components: - type: Transform - pos: 7.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 874 + rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 109 components: - type: Transform - pos: 6.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 875 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 253 components: - type: Transform - pos: 5.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 876 + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 818 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 474 components: - type: Transform - pos: 4.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 877 + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 519 components: - type: Transform - pos: 3.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 878 + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1072 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 592 components: - type: Transform - pos: 2.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 879 + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 601 components: - type: Transform - pos: 1.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 880 + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 931 components: - type: Transform - pos: 0.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 881 + pos: -7.5,0.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1089 components: - type: Transform - pos: -0.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 882 + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 86 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1176 components: - type: Transform - pos: -0.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 883 + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1177 components: - type: Transform - pos: -0.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 884 + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1511 components: - type: Transform - pos: -0.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 885 + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1710 components: - type: Transform - pos: -0.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 886 + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1712 components: - type: Transform - pos: -0.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 887 + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1009 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1732 components: - type: Transform - pos: -0.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 888 + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1876 + components: + - type: Transform + pos: -1.5,16.5 + parent: 818 + - type: DeviceNetwork + deviceLists: + - 1038 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GeneratorRTG + entities: + - uid: 747 components: - type: Transform - pos: -0.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 889 + pos: -5.5,5.5 + parent: 818 + - type: PowerSupplier + supplyRate: 30000 + - uid: 748 components: - type: Transform - pos: -0.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 890 + pos: -5.5,3.5 + parent: 818 + - type: PowerSupplier + supplyRate: 30000 +- proto: GravityGeneratorMini + entities: + - uid: 950 components: - type: Transform - pos: -0.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 891 + pos: -8.5,3.5 + parent: 818 +- proto: Grille + entities: + - uid: 243 components: - type: Transform - pos: 0.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 892 + pos: 14.5,-4.5 + parent: 818 + - uid: 260 components: - type: Transform - pos: 1.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 893 + pos: 14.5,-5.5 + parent: 818 + - uid: 392 components: - type: Transform - pos: 2.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 894 + pos: 13.5,-19.5 + parent: 818 + - uid: 418 components: - type: Transform - pos: 3.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 895 + pos: 13.5,-17.5 + parent: 818 + - uid: 456 components: - type: Transform - pos: 4.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 896 + pos: 8.5,-22.5 + parent: 818 + - uid: 893 components: - type: Transform - pos: 5.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 897 + rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 818 + - uid: 1136 components: - type: Transform - pos: 8.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 898 + pos: 13.5,-18.5 + parent: 818 + - uid: 1179 components: - type: Transform - pos: 8.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 899 + pos: 8.5,-21.5 + parent: 818 + - uid: 1180 components: - type: Transform - pos: 8.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 900 + pos: 8.5,-20.5 + parent: 818 +- proto: LockerAtmospherics + entities: + - uid: 957 components: - type: Transform - pos: 8.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 901 + pos: -7.5,-9.5 + parent: 818 +- proto: LockerSecurity + entities: + - uid: 151 components: - type: Transform - pos: 8.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 902 + pos: 6.5,-16.5 + parent: 818 + - 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: + - 157 + - 156 + - 155 + - 154 + - 153 + - 152 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Mannequin + entities: + - uid: 1512 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 818 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1515 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1513 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1514 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: RussianAccent + - uid: 1516 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 818 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1517 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1518 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: FrenchAccent +- proto: Mirror + entities: + - uid: 1736 components: - type: Transform - pos: 8.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 903 + rot: 3.141592653589793 rad + pos: -4.5,-26.5 + parent: 818 + - uid: 1737 components: - type: Transform - pos: 8.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 904 + rot: 3.141592653589793 rad + pos: -2.5,-26.5 + parent: 818 + - uid: 1738 components: - type: Transform - pos: 7.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 905 + rot: 3.141592653589793 rad + pos: -0.5,-26.5 + parent: 818 + - uid: 1739 components: - type: Transform - pos: 6.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 906 + rot: 3.141592653589793 rad + pos: 1.5,-26.5 + parent: 818 +- proto: Paper + entities: + - uid: 22 components: - type: Transform - pos: 5.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 907 + rot: 3.141592653589793 rad + pos: 9.765255,-4.4293413 + parent: 818 + - uid: 830 components: - type: Transform - pos: 7.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 908 + rot: 3.141592653589793 rad + pos: 9.921505,-4.4762163 + parent: 818 + - uid: 1639 components: - type: Transform - pos: 6.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 909 + pos: -0.11029482,-19.458694 + parent: 818 + - uid: 1646 components: - type: Transform - pos: 5.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 910 + pos: -0.35465497,-19.342327 + parent: 818 + - uid: 1647 components: - type: Transform - pos: 7.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 911 + pos: -0.5408342,-19.505241 + parent: 818 +- proto: Pen + entities: + - uid: 1649 components: - type: Transform - pos: 6.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 912 + rot: 1.5707963267948966 rad + pos: 0.18060982,-19.551788 + parent: 818 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 1315 components: - type: Transform - pos: 5.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 913 + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 818 +- proto: PlushieAtmosian + entities: + - uid: 1753 components: - type: Transform - pos: 12.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 914 + pos: -8.480301,-11.51842 + parent: 818 +- proto: PlushieLizardMirrored + entities: + - uid: 163 + components: + - type: Transform + pos: 5.5931134,-0.44783163 + parent: 818 +- proto: PlushiePenguin + entities: + - uid: 355 components: + - type: MetaData + desc: Надо было ставить Линукс. - type: Transform - pos: 12.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 915 + pos: 9.50761,2.5900903 + parent: 818 +- proto: PlushieSlime + entities: + - uid: 965 components: + - type: MetaData + desc: Уверяю вас. Мне можно доверить огнестрельное оружие... + name: плюшевый Керн - type: Transform - pos: 12.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 916 + parent: 964 + - type: Physics + canCollide: False + - uid: 1381 components: - type: Transform - pos: 12.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 917 + pos: 9.412727,-6.492947 + parent: 818 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 1754 components: - type: Transform - pos: 12.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 918 + pos: -9.5,-11.5 + parent: 818 +- proto: PottedPlant11 + entities: + - uid: 770 components: - type: Transform - pos: 12.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 919 + pos: -7.0200777,-7.4046617 + parent: 818 +- proto: PottedPlant13 + entities: + - uid: 1747 components: - type: Transform - pos: 12.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 920 + pos: -3.5,-20.5 + parent: 818 +- proto: PottedPlant17 + entities: + - uid: 738 components: - type: Transform - pos: 12.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 921 + pos: 2.010267,-7.4168715 + parent: 818 +- proto: PottedPlant7 + entities: + - uid: 964 components: - type: Transform - pos: 12.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 922 + pos: 5.5,-16.5 + parent: 818 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 965 +- proto: PottedPlantAlt2 + entities: + - uid: 2 components: - type: Transform - pos: 13.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 923 + pos: 8.25,10.5 + parent: 818 + - uid: 41 components: - type: Transform - pos: 14.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 924 + pos: 10.75,10.5 + parent: 818 +- proto: PottedPlantAlt8 + entities: + - uid: 1746 components: - type: Transform - pos: 15.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 925 + pos: 0.5,-20.5 + parent: 818 +- proto: PottedPlantRandom + entities: + - uid: 24 components: - type: Transform - pos: 13.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 926 + pos: 6.5,5.5 + parent: 818 + - uid: 179 components: - type: Transform - pos: 14.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 927 + pos: -1.5,1.5 + parent: 818 + - uid: 506 components: - type: Transform - pos: 15.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 928 + pos: -1.5,13.5 + parent: 818 + - uid: 693 components: - type: Transform - pos: 13.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 929 + pos: -3.5,-7.5 + parent: 818 + - uid: 790 components: - type: Transform - pos: 14.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 930 + pos: 12.5,5.5 + parent: 818 + - uid: 813 components: - type: Transform - pos: 15.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 931 + pos: 13.5,-11.5 + parent: 818 + - uid: 972 components: - type: Transform - pos: 13.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 932 + pos: 10.5,-13.5 + parent: 818 + - uid: 1073 components: - type: Transform - pos: 13.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 933 + pos: 12.5,-13.5 + parent: 818 + - uid: 1103 components: - type: Transform - pos: 13.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 934 + pos: 10.5,-25.5 + parent: 818 + - uid: 1104 components: - type: Transform - pos: 13.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 935 + pos: 12.5,-25.5 + parent: 818 +- proto: Poweredlight + entities: + - uid: 12 components: - type: Transform - pos: 13.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 936 + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 818 + - uid: 46 components: - type: Transform - pos: 13.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 937 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 818 + - uid: 106 components: - type: Transform - pos: 13.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 938 + rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 818 + - uid: 526 components: - type: Transform - pos: 12.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 939 + pos: 0.5,1.5 + parent: 818 + - uid: 631 components: - type: Transform - pos: 11.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 940 + pos: -1.5,1.5 + parent: 818 + - uid: 654 components: - type: Transform - pos: 10.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 941 + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 818 + - uid: 656 components: - type: Transform - pos: 9.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 942 + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 818 + - uid: 848 components: - type: Transform - pos: 9.5,-4.5 - parent: 1 - missingComponents: - - Destructible -- proto: CableHV - entities: - - uid: 747 + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 818 + - uid: 850 components: - type: Transform - pos: 15.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 748 + pos: -3.5,1.5 + parent: 818 + - uid: 999 components: - type: Transform - pos: 16.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 749 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 818 + - uid: 1084 components: - type: Transform - pos: 15.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 750 + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 818 + - uid: 1085 components: - type: Transform - pos: 14.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 751 + pos: 9.5,-16.5 + parent: 818 + - uid: 1091 components: - type: Transform - pos: 14.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 954 + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 818 + - uid: 1216 components: - type: Transform - pos: 15.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 955 + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 818 + - uid: 1227 components: - type: Transform - pos: 14.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 956 + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 818 + - uid: 1228 components: - type: Transform - pos: 16.5,-11.5 - parent: 1 - missingComponents: - - Destructible -- proto: CableMV - entities: - - uid: 752 + rot: 3.141592653589793 rad + pos: 12.5,-25.5 + parent: 818 + - uid: 1230 components: - type: Transform - pos: 16.5,-9.5 - parent: 1 - missingComponents: - - Destructible -- proto: CableTerminal - entities: - - uid: 745 + pos: 10.5,-13.5 + parent: 818 + - uid: 1232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 1 - missingComponents: - - Destructible -- proto: Catwalk - entities: - - uid: 229 + pos: 12.5,-13.5 + parent: 818 + - uid: 1236 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 291 + pos: -3.5,-9.5 + parent: 818 + - uid: 1237 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 1 - missingComponents: - - Destructible -- proto: Chair - entities: - - uid: 16 + pos: -3.5,-11.5 + parent: 818 + - uid: 1239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 33 + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 818 + - uid: 1240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 36 + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 818 + - uid: 1243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 38 + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 818 + - uid: 1244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 39 + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 818 + - uid: 1245 components: - type: Transform - pos: 21.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 40 + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 818 + - uid: 1247 components: - type: Transform - pos: 20.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 42 + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 818 + - uid: 1248 components: - type: Transform - pos: 23.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 43 + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 818 + - uid: 1249 components: - type: Transform - pos: 22.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 44 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 818 + - uid: 1262 components: - type: Transform - pos: 21.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 45 + rot: -1.5707963267948966 rad + pos: 13.5,0.5 + parent: 818 + - uid: 1263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 47 + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 818 + - uid: 1276 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 54 + pos: 12.5,8.5 + parent: 818 + - uid: 1294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 818 + - uid: 1302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 55 + pos: 13.5,5.5 + parent: 818 + - uid: 1320 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 203 + pos: 3.5,-21.5 + parent: 818 + - uid: 1324 components: - type: Transform - pos: 23.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 226 + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 818 + - uid: 1357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 227 + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 818 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 280 + pos: 13.5,-11.5 + parent: 818 + - uid: 1374 components: - type: Transform - pos: 20.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 281 + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 818 + - uid: 1633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 282 + rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 818 + - uid: 1635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 284 + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 818 + - uid: 1636 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 288 + pos: 3.5,-15.5 + parent: 818 + - uid: 1759 components: - type: Transform - pos: 22.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 477 + pos: -3.5,-13.5 + parent: 818 + - uid: 1760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 478 + pos: 0.5,-13.5 + parent: 818 + - uid: 1761 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 479 + pos: -3.5,-22.5 + parent: 818 + - uid: 1762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 1 - missingComponents: - - Destructible -- proto: ChairOfficeDark + rot: 3.141592653589793 rad + pos: 0.5,-22.5 + parent: 818 +- proto: PoweredlightPink entities: - - uid: 348 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 1 - missingComponents: - - Destructible -- proto: ChairWood + pos: -8.5,0.5 + parent: 818 +- proto: PoweredSmallLight entities: - - uid: 257 + - uid: 141 components: - type: Transform - pos: 21.5,-8.5 - parent: 1 - missingComponents: - - Destructible -- proto: Cigar - entities: - - uid: 213 + rot: -1.5707963267948966 rad + pos: 11.5,-28.5 + parent: 818 + - uid: 315 components: - type: Transform - pos: 18.440437,6.6923804 - parent: 1 -- proto: CigarCase - entities: - - uid: 396 + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 818 + - uid: 459 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.48009,-2.38844 - parent: 1 -- proto: ClosetSteelBase - entities: - - uid: 496 + pos: -5.5,7.5 + parent: 818 + - uid: 471 components: - type: Transform - pos: 11.5,10.5 - parent: 1 - missingComponents: - - Destructible -- proto: ComfyChair - entities: - - uid: 394 + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 818 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 519 + pos: 15.5,-22.5 + parent: 818 + - uid: 805 components: - type: Transform - pos: 18.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 520 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 818 + - uid: 810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 1 - missingComponents: - - Destructible -- proto: ComputerCriminalRecords - entities: - - uid: 349 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 818 + - uid: 1202 components: - type: Transform - pos: 15.5,-3.5 - parent: 1 - missingComponents: - - Destructible -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 350 + rot: 3.141592653589793 rad + pos: 15.5,-8.5 + parent: 818 + - uid: 1206 components: - type: Transform - pos: 14.5,-3.5 - parent: 1 - missingComponents: - - Destructible -- proto: ConveyorBelt - entities: - - uid: 372 + rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 818 + - uid: 1234 components: - type: Transform - pos: 6.5,-4.5 - parent: 1 - - type: DeviceLinkSink - links: - - 385 - missingComponents: - - Destructible - - uid: 373 + rot: 3.141592653589793 rad + pos: 15.5,-14.5 + parent: 818 + - uid: 1345 components: - type: Transform - pos: 6.5,-5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 385 - missingComponents: - - Destructible - - uid: 374 + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 818 + - uid: 1346 components: - type: Transform - pos: 6.5,-3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 385 - missingComponents: - - Destructible - - uid: 375 + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 818 + - uid: 1354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 385 - missingComponents: - - Destructible - - uid: 386 + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 818 + - uid: 1393 components: - type: Transform - pos: 6.5,-6.5 - parent: 1 - - type: DeviceLinkSink - links: - - 385 - missingComponents: - - Destructible -- proto: d4Dice - entities: - - uid: 181 + rot: 1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 818 + - uid: 1705 components: - type: Transform - pos: 22.540943,-10.567083 - parent: 1 -- proto: DiceBag - entities: - - uid: 269 + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 818 + - uid: 1735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.056568,-10.395208 - parent: 1 -- proto: DisposalBend - entities: - - uid: 27 + rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 818 + - uid: 1740 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 384 + pos: -0.5,-24.5 + parent: 818 + - uid: 1741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 503 + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 818 +- proto: Rack + entities: + - uid: 704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 717 + pos: -5.5,-11.5 + parent: 818 + - uid: 962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 733 + pos: -6.5,-11.5 + parent: 818 +- proto: Railing + entities: + - uid: 888 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 734 + pos: 6.5,-12.5 + parent: 818 + - uid: 889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - missingComponents: - - Destructible -- proto: DisposalJunction - entities: - - uid: 735 + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 818 + - uid: 1019 components: + - type: MetaData + desc: Вешалка для одежды. + name: вешалка - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - missingComponents: - - Destructible -- proto: DisposalJunctionFlipped - entities: - - uid: 277 + pos: -6.5,-17.5 + parent: 818 + - uid: 1021 components: + - type: MetaData + desc: Вешалка для одежды. + name: вешалка - type: Transform - pos: 19.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 716 + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 818 + - uid: 1086 components: + - type: MetaData + desc: Вешалка для одежды. + name: вешалка - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 1 - missingComponents: - - Destructible -- proto: DisposalPipe - entities: - - uid: 23 + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 818 + - uid: 1101 components: + - type: MetaData + desc: Вешалка для одежды. + name: вешалка - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 24 + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 818 + - uid: 1351 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 28 + pos: -5.5,-13.5 + parent: 818 + - uid: 1353 components: - type: Transform - pos: 19.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 29 + rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 818 + - uid: 1364 components: - type: Transform - pos: 19.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 31 + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 818 + - uid: 1365 components: - type: Transform - pos: 19.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 32 + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 818 +- proto: RailingCornerSmall + entities: + - uid: 649 components: - type: Transform - pos: 19.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 34 + pos: 8.5,-12.5 + parent: 818 + - uid: 712 components: + - type: MetaData + desc: Вешалка для одежды. + name: вешалка - type: Transform - pos: 19.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 204 + pos: -6.5,-16.5 + parent: 818 + - uid: 713 components: - - type: Transform - pos: 19.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 219 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 818 + - uid: 1196 components: + - type: MetaData + desc: Вешалка для одежды. + name: вешалка - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 220 + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 818 + - uid: 1242 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 221 + pos: 3.5,-17.5 + parent: 818 + - uid: 1246 components: + - type: MetaData + desc: Вешалка для одежды. + name: вешалка - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 222 + rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 818 +- proto: RandomDrinkBottle + entities: + - uid: 29 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 266 + pos: 3.5,1.5 + parent: 818 +- proto: RandomDrinkGlass + entities: + - uid: 611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 267 + pos: -6.5,-5.5 + parent: 818 + - uid: 1750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 270 + pos: 11.5,8.5 + parent: 818 +- proto: RandomFoodBakedSingle + entities: + - uid: 742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 271 + pos: 1.5,-5.5 + parent: 818 +- proto: RandomFoodBakedWhole + entities: + - uid: 591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 272 + pos: 2.5,-6.5 + parent: 818 +- proto: RandomFoodMeal + entities: + - uid: 569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 273 + pos: -7.5,-6.5 + parent: 818 + - uid: 1080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 274 + pos: 9.5,-21.5 + parent: 818 +- proto: RandomPosterLegit + entities: + - uid: 178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 275 + pos: 1.5,6.5 + parent: 818 +- proto: RandomVendingDrinks + entities: + - uid: 175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 495 + pos: -7.5,-2.5 + parent: 818 + - uid: 338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 499 + pos: 5.5,-4.5 + parent: 818 + - uid: 1442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 500 + pos: -6.5,-22.5 + parent: 818 +- proto: RandomVendingSnacks + entities: + - uid: 164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 501 + pos: 5.5,-1.5 + parent: 818 + - uid: 226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 502 + pos: -8.5,-2.5 + parent: 818 +- proto: Recycler + entities: + - uid: 1697 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 507 + pos: -4.5,16.5 + parent: 818 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 600 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 508 + pos: -8.5,-12.5 + parent: 818 +- proto: SignalButton + entities: + - uid: 597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 509 + pos: -5.5,10.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 549: + - Pressed: DoorBolt + - uid: 598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 510 + pos: -5.5,12.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 791: + - Pressed: DoorBolt + - uid: 749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 709 + pos: -5.5,14.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 473: + - Pressed: DoorBolt + - uid: 932 + components: + - type: Transform + pos: -5.5,8.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 595: + - Pressed: DoorBolt +- proto: SignalTimer + entities: + - uid: 1911 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 710 + pos: 16.5,2.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 462: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer + - uid: 1957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 711 + pos: 16.5,-1.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 561: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer + - uid: 1958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 712 + pos: 16.5,-8.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 550: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer + - uid: 1959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 713 + pos: 16.5,-14.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 28: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer + - uid: 1960 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 714 + pos: 16.5,-22.5 + parent: 818 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 1363: + - Timer: Toggle + - type: DeviceLinkSink + invokeCounter: 1 + - type: ApcPowerReceiver + needsPower: False + - type: Stealth + - type: StealthOnMove + - type: ActiveSignalTimer +- proto: SignArcade + entities: + - uid: 94 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 715 + pos: -4.5,-0.5 + parent: 818 +- proto: SignAtmos + entities: + - uid: 1030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 718 + pos: -4.5,-9.5 + parent: 818 +- proto: SignBar + entities: + - uid: 148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 719 + pos: 4.5,-1.5 + parent: 818 +- proto: SignDisposalSpace + entities: + - uid: 1703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 720 + pos: -1.5,14.5 + parent: 818 +- proto: SignEngineering + entities: + - uid: 1657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 721 + pos: -4.5,5.5 + parent: 818 +- proto: SignJanitor + entities: + - uid: 1702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 722 + pos: -1.5,6.5 + parent: 818 +- proto: SignShipDock + entities: + - uid: 1656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 723 + pos: 14.5,1.5 + parent: 818 + - uid: 1686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 724 + pos: 14.5,-9.5 + parent: 818 +- proto: SignSmoking + entities: + - uid: 1669 + components: + - type: Transform + pos: -0.5,12.5 + parent: 818 +- proto: Sink + entities: + - uid: 859 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 725 + pos: 3.5,0.5 + parent: 818 +- proto: SinkStemlessWater + entities: + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 818 + - uid: 794 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 726 + pos: -1.8169644,11.372251 + parent: 818 + - uid: 811 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 727 + pos: -1.8013394,9.356626 + parent: 818 +- proto: SMESBasic + entities: + - uid: 944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 728 + pos: -7.5,5.5 + parent: 818 +- proto: SodaDispenser + entities: + - uid: 634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 729 + pos: 2.5,1.5 + parent: 818 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 818 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 818 +- proto: SpawnPointLatejoin + entities: + - uid: 707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 730 + pos: 5.5,1.5 + parent: 818 + - uid: 708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 731 + pos: 10.5,-0.5 + parent: 818 + - uid: 1081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 732 + pos: 9.5,-8.5 + parent: 818 + - uid: 1204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 736 + pos: 10.5,-6.5 + parent: 818 + - uid: 1252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 737 + pos: 9.5,-7.5 + parent: 818 + - uid: 1288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 738 + pos: 9.5,-5.5 + parent: 818 + - uid: 1289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 739 + pos: 5.5,0.5 + parent: 818 + - uid: 1870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 740 + pos: 10.5,-5.5 + parent: 818 + - uid: 1902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 741 + pos: 5.5,-8.5 + parent: 818 + - uid: 1903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,6.5 - parent: 1 - missingComponents: - - Destructible -- proto: DisposalTrunk - entities: - - uid: 196 + pos: 9.5,-0.5 + parent: 818 + - uid: 1904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 242 + pos: 9.5,0.5 + parent: 818 + - uid: 1905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 383 + pos: 9.5,1.5 + parent: 818 + - uid: 1906 components: - type: Transform - pos: 5.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 497 + pos: 10.5,0.5 + parent: 818 + - uid: 1907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 628 + pos: 10.5,1.5 + parent: 818 + - uid: 1908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 630 + pos: 5.5,2.5 + parent: 818 + - uid: 1909 components: - type: Transform - pos: 8.5,7.5 - parent: 1 - missingComponents: - - Destructible -- proto: DisposalUnit - entities: - - uid: 50 + pos: 10.5,2.5 + parent: 818 + - uid: 1961 components: - type: Transform - pos: 25.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 217 + pos: 10.5,-7.5 + parent: 818 + - uid: 1962 components: - type: Transform - pos: 25.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 283 + pos: 10.5,-8.5 + parent: 818 + - uid: 1963 components: - type: Transform - pos: 25.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 347 + pos: 5.5,-7.5 + parent: 818 + - uid: 1964 components: - type: Transform - pos: 8.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 598 + pos: 5.5,-6.5 + parent: 818 + - uid: 1965 components: - type: Transform - pos: 12.5,-2.5 - parent: 1 - missingComponents: - - Destructible -- proto: DisposalYJunction + pos: 5.5,-5.5 + parent: 818 +- proto: Spoon entities: - - uid: 674 + - uid: 1734 components: + - type: MetaData + name: ложка для обуви - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,0.5 - parent: 1 - missingComponents: - - Destructible -- proto: DresserFilled - entities: - - uid: 367 + rot: -0.5235987755982988 rad + pos: 1.7093852,-16.486588 + parent: 818 + - uid: 1764 components: + - type: MetaData + name: ложка для обуви - type: Transform - pos: 16.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 368 + rot: -0.8726646259971648 rad + pos: -4.697705,-16.59065 + parent: 818 +- proto: StairDark + entities: + - uid: 759 components: - type: Transform - pos: 16.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 369 + pos: 8.5,6.5 + parent: 818 + - uid: 762 components: - type: Transform - pos: 16.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 390 + pos: 10.5,6.5 + parent: 818 + - uid: 769 components: - type: Transform - pos: 10.5,-5.5 - parent: 1 - missingComponents: - - Destructible -- proto: DrinkCognacBottleFull + pos: 9.5,6.5 + parent: 818 +- proto: Stairs entities: - - uid: 398 + - uid: 1348 components: + - type: MetaData + name: полки для обуви - type: Transform - pos: 8.776965,-2.247815 - parent: 1 - missingComponents: - - Destructible -- proto: DrinkMug - entities: - - uid: 208 + pos: -5.5,-13.5 + parent: 818 + - uid: 1349 components: + - type: MetaData + name: полки для обуви - type: Transform - pos: 18.690437,6.5205054 - parent: 1 -- proto: DrinkShotGlass - entities: - - uid: 395 + pos: -4.5,-13.5 + parent: 818 + - uid: 1350 components: + - type: MetaData + name: полки для обуви - type: Transform - pos: 8.366743,-2.404844 - parent: 1 - missingComponents: - - Destructible -- proto: EdgeDetector - entities: - - uid: 21 + pos: -3.5,-13.5 + parent: 818 + - uid: 1358 components: + - type: MetaData + name: полки для обуви - type: Transform - anchored: True - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 1 - - type: DeviceLinkSink - links: - - 429 - - type: DeviceLinkSource - linkedPorts: - 263: - - OutputHigh: Toggle - - OutputHigh: DoorBolt - - OutputLow: DoorBolt - - OutputLow: Toggle - - type: Physics - canCollide: False - bodyType: Static - - uid: 488 + pos: 0.5,-13.5 + parent: 818 + - uid: 1359 components: + - type: MetaData + name: полки для обуви - type: Transform - anchored: True - rot: 3.141592653589793 rad - pos: 26.5,-2.5 - parent: 1 - - type: DeviceLinkSink - links: - - 228 - - type: DeviceLinkSource - linkedPorts: - 202: - - OutputHigh: Toggle - - OutputHigh: DoorBolt - - OutputLow: DoorBolt - - OutputLow: Toggle - - type: Physics - canCollide: False - bodyType: Static -- proto: FloraTree02 - entities: - - uid: 268 + pos: 1.5,-13.5 + parent: 818 + - uid: 1360 components: + - type: MetaData + name: полки для обуви - type: Transform - pos: -5.936533,-2.33474 - parent: 1 - missingComponents: - - Destructible -- proto: FloraTree04 + pos: 2.5,-13.5 + parent: 818 +- proto: SteelBench entities: - - uid: 459 + - uid: 1628 components: - type: Transform - pos: -5.749033,5.0442405 - parent: 1 - missingComponents: - - Destructible -- proto: FloraTreeLarge06 - entities: - - uid: 194 + rot: 3.141592653589793 rad + pos: -4.5,-25.5 + parent: 818 + - uid: 1629 components: - type: Transform - pos: -4.295908,1.1454458 - parent: 1 - missingComponents: - - Destructible -- proto: FoodBoxDonut - entities: - - uid: 357 + rot: 3.141592653589793 rad + pos: -2.5,-25.5 + parent: 818 + - uid: 1630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.405981,-5.326151 - parent: 1 -- proto: FoodDonutCaramel - entities: - - uid: 358 + rot: 3.141592653589793 rad + pos: -0.5,-25.5 + parent: 818 + - uid: 1631 components: - type: Transform - pos: 14.796606,-5.263651 - parent: 1 -- proto: GeneratorBasic15kW + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 818 +- proto: StoolBar entities: - - uid: 951 + - uid: 27 components: - type: Transform - pos: 16.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 952 + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 818 + - uid: 43 components: - type: Transform - pos: 15.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 953 + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 818 + - uid: 173 components: - type: Transform - pos: 14.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1011 + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 818 + - uid: 376 components: - type: Transform - pos: 14.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1012 + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 818 + - uid: 525 components: - type: Transform - pos: 15.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1013 + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 818 + - uid: 539 components: - type: Transform - pos: 16.5,-11.5 - parent: 1 - missingComponents: - - Destructible -- proto: GravityGeneratorMini - entities: - - uid: 1046 + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 818 + - uid: 670 components: - type: Transform - pos: 16.5,-10.5 - parent: 1 - missingComponents: - - Destructible -- proto: Grille + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 818 +- proto: SubstationBasic entities: - - uid: 183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 201 + - uid: 469 components: - type: Transform - pos: 26.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 206 + pos: -8.5,5.5 + parent: 818 +- proto: SuitStorageBase + entities: + - uid: 959 components: - type: Transform - pos: 26.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 245 + pos: -8.5,-9.5 + parent: 818 +- proto: SurveillanceCameraGeneral + entities: + - uid: 99 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 293 + pos: -0.5,-9.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Южный коридор + - uid: 234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 294 + pos: -6.5,3.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Инженерия + - uid: 479 + components: + - type: Transform + pos: -0.5,3.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Северный коридор + - uid: 1400 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 303 + pos: -7.5,-9.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Атмос + - uid: 1587 components: - type: Transform - pos: 26.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 305 + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Бар + - uid: 1589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 306 + pos: -5.5,-7.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Ресторан + - uid: 1596 components: - type: Transform - pos: 26.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 308 + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Рекреация + - uid: 1614 components: - type: Transform - pos: 26.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 309 + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Одежда + - uid: 1620 components: - type: Transform - pos: 26.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 443 + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Терминал 1 + - uid: 1621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 444 + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Терминал 2 + - uid: 1622 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 460 + pos: 10.5,-19.5 + parent: 818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Терминал 3 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 1581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 474 + pos: -6.5,3.5 + parent: 818 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 1956 components: - type: Transform - pos: 26.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 493 + pos: -8.5,4.5 + parent: 818 +- proto: TableCarpet + entities: + - uid: 11 components: - type: Transform - pos: 26.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1009 + pos: 2.5,1.5 + parent: 818 + - uid: 516 components: - type: Transform - pos: 16.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1010 + pos: 1.5,1.5 + parent: 818 + - uid: 647 components: - type: Transform - pos: 16.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1014 + pos: 3.5,1.5 + parent: 818 + - uid: 1414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1015 + rot: -1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 818 + - uid: 1425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1016 + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 818 +- proto: TableCounterWood + entities: + - uid: 346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1017 + pos: 1.5,-0.5 + parent: 818 + - uid: 491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1018 + pos: 3.5,-0.5 + parent: 818 + - uid: 524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1019 + pos: 2.5,-0.5 + parent: 818 + - uid: 630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1020 + pos: 0.5,-0.5 + parent: 818 + - uid: 1137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1021 + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 818 + - uid: 1140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1022 + pos: -4.5,-16.5 + parent: 818 + - uid: 1640 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1023 + pos: -2.5,-19.5 + parent: 818 + - uid: 1641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 1024 + pos: 0.5,-19.5 + parent: 818 + - uid: 1642 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 - missingComponents: - - Destructible -- proto: HospitalCurtainsOpen - entities: - - uid: 389 + pos: -0.5,-19.5 + parent: 818 + - uid: 1643 components: - type: Transform - pos: 8.5,-5.5 - parent: 1 - missingComponents: - - Destructible -- proto: Lighter - entities: - - uid: 397 + pos: -3.5,-19.5 + parent: 818 + - uid: 1650 components: - type: Transform - pos: 9.089465,-2.435315 - parent: 1 -- proto: LockerHeadOfSecurity - entities: - - uid: 393 + rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 818 + - uid: 1651 components: - type: Transform - pos: 10.5,-2.5 - parent: 1 - missingComponents: - - Destructible -- proto: MagicDiceBag + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 818 +- proto: TableFancyBlack entities: - - uid: 470 + - uid: 358 components: - type: Transform - pos: 20.416056,-10.745677 - parent: 1 -- proto: Mirror - entities: - - uid: 341 + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 818 + - uid: 497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - - uid: 342 + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 818 + - uid: 498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - - uid: 343 + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 818 + - uid: 522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 1 -- proto: Paper - entities: - - uid: 180 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 818 + - uid: 627 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.578796,-9.629583 - parent: 1 - missingComponents: - - Destructible - - uid: 355 + pos: -7.5,-6.5 + parent: 818 + - uid: 628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.447807,-5.2844315 - parent: 1 - missingComponents: - - Destructible - - uid: 356 + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 818 + - uid: 629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.432182,-5.3156815 - parent: 1 - missingComponents: - - Destructible - - uid: 513 + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 818 + - uid: 657 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.49418,-11.401927 - parent: 1 - missingComponents: - - Destructible - - uid: 515 + pos: -6.5,-5.5 + parent: 818 + - uid: 658 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.728556,-11.136302 - parent: 1 - missingComponents: - - Destructible -- proto: PlasticFlapsAirtightOpaque - entities: - - uid: 154 + pos: 2.5,-7.5 + parent: 818 + - uid: 781 components: - type: Transform - pos: 6.5,-6.5 - parent: 1 - missingComponents: - - Destructible -- proto: PlushieLizard - entities: - - uid: 300 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 818 + - uid: 843 components: - - type: MetaData - desc: Картонная версия плюшевого унатха. - name: Taburetka24 - type: Transform - pos: 16.526121,6.9472337 - parent: 1 - - uid: 454 + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 818 + - uid: 845 components: - type: Transform - pos: 22.024916,0.01206398 - parent: 1 -- proto: PlushieRouny + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 818 +- proto: TableGlass entities: - - uid: 404 + - uid: 283 components: - type: Transform - pos: 16.470612,9.797383 - parent: 1 -- proto: PlushieSpaceLizard + pos: 9.5,-21.5 + parent: 818 +- proto: TableReinforced entities: - - uid: 403 + - uid: 181 components: - type: Transform - pos: 16.69722,4.366211 - parent: 1 -- proto: PottedPlant1 - entities: - - uid: 402 + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 818 + - uid: 224 components: - type: Transform - pos: 12.5,-7.5 - parent: 1 - missingComponents: - - Destructible -- proto: Poweredlight - entities: - - uid: 527 + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 818 + - uid: 706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1 - - uid: 528 + pos: 6.5,-13.5 + parent: 818 + - uid: 743 components: - type: Transform - pos: 19.5,8.5 - parent: 1 - - uid: 601 + pos: 7.5,-13.5 + parent: 818 + - uid: 861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 602 + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 818 +- proto: TableReinforcedGlass + entities: + - uid: 107 components: - type: Transform - pos: 0.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 603 + pos: 10.5,-4.5 + parent: 818 + - uid: 126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 604 + pos: 10.5,-1.5 + parent: 818 + - uid: 330 components: - type: Transform - pos: 10.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 605 + pos: 9.5,-1.5 + parent: 818 + - uid: 336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 615 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 818 + - uid: 337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 618 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 818 + - uid: 340 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 620 + pos: 12.5,8.5 + parent: 818 + - uid: 697 components: - type: Transform - pos: 11.5,10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 621 + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 818 + - uid: 963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 627 + pos: 9.5,-4.5 + parent: 818 + - uid: 1198 components: - type: Transform - pos: 14.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 629 + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 818 + - uid: 1199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 742 + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 818 + - uid: 1200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-10.5 - parent: 1 - missingComponents: - - Destructible -- proto: PoweredSmallLight - entities: - - uid: 606 + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 818 + - uid: 1201 components: - type: Transform - pos: 15.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 609 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 818 +- proto: TableStone + entities: + - uid: 324 components: - type: Transform - pos: 15.5,10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 619 + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 818 + - uid: 508 components: - type: Transform - pos: 15.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 622 + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 818 + - uid: 638 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 623 + pos: -1.5,10.5 + parent: 818 + - uid: 925 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 624 + pos: -1.5,11.5 + parent: 818 + - uid: 935 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 625 + pos: -1.5,8.5 + parent: 818 +- proto: TableWood + entities: + - uid: 1413 components: - type: Transform - pos: 6.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 626 + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 818 + - uid: 1423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 1 + pos: 3.5,-21.5 + parent: 818 +- proto: TelecomServerFilled + entities: + - uid: 953 + components: + - type: Transform + pos: -7.5,3.5 + parent: 818 +- proto: TintedWindow + entities: + - uid: 76 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible -- proto: Railing - entities: - - uid: 328 + - uid: 172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 1 + pos: 14.5,-5.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 329 + - uid: 232 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 1 + pos: 13.5,-17.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 330 + - uid: 445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 1 + pos: 13.5,-18.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 331 + - uid: 961 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-6.5 - parent: 1 + pos: 13.5,-19.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible -- proto: RailingCornerSmall - entities: - - uid: 332 + - uid: 993 components: - type: Transform - pos: 18.5,-7.5 - parent: 1 + pos: 8.5,-20.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible - - uid: 333 + - uid: 994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 1 + pos: 8.5,-21.5 + parent: 818 missingComponents: + - Occluder + - Damageable + - RCDDeconstructable - Destructible -- proto: RandomDrinkGlass - entities: - - uid: 195 + - uid: 995 components: - type: Transform - pos: 23.5,-10.5 - parent: 1 -- proto: RandomPosterAny + pos: 8.5,-22.5 + parent: 818 + missingComponents: + - Occluder + - Damageable + - RCDDeconstructable + - Destructible +- proto: ToiletEmpty entities: - - uid: 973 + - uid: 758 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - - uid: 974 + pos: -5.5,11.5 + parent: 818 + - uid: 809 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - - uid: 978 + pos: -5.5,7.5 + parent: 818 + - uid: 812 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 1 - - uid: 981 + pos: -5.5,13.5 + parent: 818 + - uid: 852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 1 - - uid: 985 + pos: -5.5,9.5 + parent: 818 +- proto: ToolboxElectrical + entities: + - uid: 1637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - - uid: 986 + pos: -5.395227,-11.313736 + parent: 818 +- proto: ToolboxMechanical + entities: + - uid: 1638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 1 -- proto: RandomPosterContraband + pos: -5.582727,-11.532486 + parent: 818 +- proto: ToyFigurineBartender entities: - - uid: 982 + - uid: 614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 1 - - uid: 983 + pos: 0.45116568,-0.33467317 + parent: 818 +- proto: TrashBag + entities: + - uid: 1678 components: + - type: MetaData + name: пакет для покупок - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 1 -- proto: RandomVending - entities: - - uid: 465 + pos: -2.547278,-20.178963 + parent: 818 + - uid: 1701 components: + - type: MetaData + name: пакет для покупок - type: Transform - pos: 25.5,-5.5 - parent: 1 - - uid: 599 + pos: -3.0217736,-20.58265 + parent: 818 +- proto: TrashBagBlue + entities: + - uid: 1680 components: + - type: MetaData + name: пакет для покупок - type: Transform - pos: 0.5,-0.5 - parent: 1 - - uid: 600 + pos: -2.9506664,-20.171206 + parent: 818 +- proto: TwoWayLever + entities: + - uid: 1700 components: - type: Transform - pos: 0.5,1.5 - parent: 1 -- proto: RandomVendingDrinks + pos: -4.5,15.5 + parent: 818 + - type: DeviceLinkSource + linkedPorts: + 1689: + - Left: Forward + - Right: Reverse + - Middle: Off + 1690: + - Left: Forward + - Right: Reverse + - Middle: Off + 1691: + - Left: Forward + - Right: Reverse + - Middle: Off + 1697: + - Left: Forward + - Right: Reverse + - Middle: Off + 1692: + - Left: Forward + - Right: Reverse + - Middle: Off + 1693: + - Left: Forward + - Right: Reverse + - Middle: Off + 1694: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: VendingMachineBooze entities: - - uid: 48 + - uid: 511 components: - type: Transform - pos: 25.5,-1.5 - parent: 1 - - uid: 192 + pos: 0.5,1.5 + parent: 818 + missingComponents: + - AccessReader +- proto: VendingMachineChang + entities: + - uid: 1441 components: - type: Transform - pos: 25.5,-9.5 - parent: 1 - - uid: 522 + pos: 3.5,-22.5 + parent: 818 +- proto: VendingMachineCigs + entities: + - uid: 3 components: - type: Transform - pos: 18.5,8.5 - parent: 1 -- proto: RandomVendingSnacks - entities: - - uid: 276 + pos: 5.5,5.5 + parent: 818 + - uid: 62 components: - type: Transform - pos: 25.5,5.5 - parent: 1 - - uid: 448 + pos: -5.5,-2.5 + parent: 818 + - uid: 1175 components: - type: Transform - pos: 25.5,-10.5 - parent: 1 -- proto: Recycler + pos: 9.5,-16.5 + parent: 818 +- proto: VendingMachineClothing entities: - - uid: 376 + - uid: 1143 components: - type: Transform - pos: 6.5,-4.5 - parent: 1 - - type: DeviceLinkSink - links: - - 385 - missingComponents: - - Destructible -- proto: ReinforcedWindow - entities: - - uid: 25 + pos: 3.5,-15.5 + parent: 818 + - uid: 1144 components: - type: Transform - pos: 16.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 26 + pos: 3.5,-14.5 + parent: 818 +- proto: VendingMachineCoffee + entities: + - uid: 174 components: - type: Transform - pos: 16.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 197 + pos: -6.5,-2.5 + parent: 818 + - uid: 906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 200 + pos: 13.5,5.5 + parent: 818 + - uid: 1178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 233 + pos: 9.5,-18.5 + parent: 818 +- proto: VendingMachineSecDrobe + entities: + - uid: 719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 240 + pos: 7.5,-16.5 + parent: 818 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 243 + pos: -5.5,-9.5 + parent: 818 +- proto: VendingMachineWinter + entities: + - uid: 1118 components: - type: Transform - pos: 26.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 244 + pos: -6.5,-14.5 + parent: 818 + - uid: 1119 components: - type: Transform - pos: 26.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 246 + pos: -6.5,-15.5 + parent: 818 +- proto: WallmountTelevision + entities: + - uid: 518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 285 + pos: 9.5,11.5 + parent: 818 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 10 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 289 + pos: -4.5,2.5 + parent: 818 + - uid: 25 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 290 + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 818 + - uid: 26 components: - type: Transform - pos: 26.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 292 + rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 818 + - uid: 32 components: - type: Transform - pos: 26.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 335 + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 818 + - uid: 33 components: - type: Transform - pos: 26.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 430 + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 818 + - uid: 39 components: - type: Transform - pos: 26.5,-8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 432 + rot: 1.5707963267948966 rad + pos: -3.5,17.5 + parent: 818 + - uid: 44 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 433 + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 818 + - uid: 51 components: - type: Transform - pos: 26.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 437 + pos: -9.5,-0.5 + parent: 818 + - uid: 52 components: - type: Transform - pos: 26.5,-6.5 - parent: 1 - missingComponents: - - Destructible -- proto: RubberStampApproved - entities: - - uid: 353 + pos: -5.5,-8.5 + parent: 818 + - uid: 54 components: - type: Transform - pos: 15.650932,-5.538704 - parent: 1 -- proto: RubberStampDenied - entities: - - uid: 354 + pos: -9.5,-4.5 + parent: 818 + - uid: 56 components: - type: Transform - pos: 15.260307,-5.538704 - parent: 1 -- proto: SignDirectionalDorms - entities: - - uid: 971 + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 818 + - uid: 58 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,2.5 - parent: 1 - missingComponents: - - Destructible -- proto: SignHead - entities: - - uid: 970 + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 818 + - uid: 59 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 1 - missingComponents: - - Destructible -- proto: SinkStemlessWater - entities: - - uid: 344 + pos: 2.5,6.5 + parent: 818 + - uid: 60 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 345 + pos: -3.5,-8.5 + parent: 818 + - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 346 + pos: 8.5,11.5 + parent: 818 + - uid: 70 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - missingComponents: - - Destructible -- proto: SMESBasic - entities: - - uid: 744 + pos: 0.5,-24.5 + parent: 818 + - uid: 75 components: - type: Transform - pos: 15.5,-9.5 - parent: 1 - missingComponents: - - Destructible -- proto: SpawnMobButterfly - entities: - - uid: 529 + pos: 4.5,-22.5 + parent: 818 + - uid: 80 components: - type: Transform - pos: -4.5,-4.5 - parent: 1 - - uid: 530 + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 818 + - uid: 81 components: - type: Transform - pos: -6.5,0.5 - parent: 1 - - uid: 531 + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 818 + - uid: 83 components: - type: Transform - pos: -4.5,4.5 - parent: 1 -- proto: SpawnPointLatejoin - entities: - - uid: 417 + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 818 + - uid: 85 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - - uid: 418 + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 818 + - uid: 87 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - - uid: 419 + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 818 + - uid: 102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - - uid: 420 + pos: -9.5,-3.5 + parent: 818 + - uid: 105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - - uid: 421 + pos: -9.5,-2.5 + parent: 818 + - uid: 123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - - uid: 422 + pos: 1.5,6.5 + parent: 818 + - uid: 131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - - uid: 423 + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 818 + - uid: 133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - - uid: 424 + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 818 + - uid: 176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - - uid: 425 + pos: 3.5,6.5 + parent: 818 + - uid: 185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 1 - - uid: 426 + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 818 + - uid: 186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - - uid: 427 + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 818 + - uid: 193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - - uid: 428 + pos: 4.5,-14.5 + parent: 818 + - uid: 199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 -- proto: SteelBench - entities: - - uid: 405 + pos: -6.5,-1.5 + parent: 818 + - uid: 201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 406 + pos: 5.5,-17.5 + parent: 818 + - uid: 202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 407 + pos: 7.5,-17.5 + parent: 818 + - uid: 203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 408 + pos: 4.5,-15.5 + parent: 818 + - uid: 206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 409 + pos: -9.5,0.5 + parent: 818 + - uid: 208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 410 + pos: -8.5,-1.5 + parent: 818 + - uid: 209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 411 + pos: -7.5,-1.5 + parent: 818 + - uid: 211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 412 + pos: -9.5,-8.5 + parent: 818 + - uid: 212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 413 + pos: -8.5,-8.5 + parent: 818 + - uid: 221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 414 + pos: 1.5,-26.5 + parent: 818 + - uid: 222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 415 + pos: 2.5,-26.5 + parent: 818 + - uid: 225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 416 + pos: -9.5,-7.5 + parent: 818 + - uid: 228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - missingComponents: - - Destructible -- proto: Stool - entities: - - uid: 13 + pos: -9.5,2.5 + parent: 818 + - uid: 237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 193 + pos: 6.5,-17.5 + parent: 818 + - uid: 238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 259 + pos: 4.5,-16.5 + parent: 818 + - uid: 239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 260 + pos: 4.5,-17.5 + parent: 818 + - uid: 241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 265 + pos: -7.5,-22.5 + parent: 818 + - uid: 244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 482 + pos: -9.5,-11.5 + parent: 818 + - uid: 245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 1 - missingComponents: - - Destructible -- proto: SubstationBasic - entities: - - uid: 743 + pos: -6.5,-12.5 + parent: 818 + - uid: 246 components: - type: Transform - pos: 16.5,-9.5 - parent: 1 - missingComponents: - - Destructible -- proto: Table - entities: - - uid: 51 + pos: -9.5,-12.5 + parent: 818 + - uid: 247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 487 + pos: -7.5,-16.5 + parent: 818 + - uid: 248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 1 - missingComponents: - - Destructible -- proto: TableCarpet - entities: - - uid: 198 + pos: -9.5,-13.5 + parent: 818 + - uid: 249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 230 + pos: -5.5,-25.5 + parent: 818 + - uid: 250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 249 + pos: -7.5,-15.5 + parent: 818 + - uid: 262 components: - type: Transform - pos: 20.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 258 + pos: 0.5,-23.5 + parent: 818 + - uid: 263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 334 + pos: 4.5,-23.5 + parent: 818 + - uid: 264 components: - type: Transform - pos: 21.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 431 + pos: 3.5,-23.5 + parent: 818 + - uid: 265 components: - type: Transform - pos: 22.5,-9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 434 + pos: 3.5,-18.5 + parent: 818 + - uid: 266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 439 + pos: 2.5,-25.5 + parent: 818 + - uid: 267 components: - type: Transform - pos: 22.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 442 + pos: 0.5,-26.5 + parent: 818 + - uid: 268 components: - type: Transform - pos: 21.5,-10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 458 + pos: 0.5,-25.5 + parent: 818 + - uid: 269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-11.5 - parent: 1 - missingComponents: - - Destructible -- proto: TableWood - entities: - - uid: 351 + pos: -3.5,-24.5 + parent: 818 + - uid: 275 components: - type: Transform - pos: 15.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 352 + pos: -3.5,-25.5 + parent: 818 + - uid: 292 components: - type: Transform - pos: 14.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 391 + pos: -5.5,-1.5 + parent: 818 + - uid: 326 components: - type: Transform - pos: 9.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 392 + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 818 + - uid: 327 components: - type: Transform - pos: 8.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 401 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 818 + - uid: 328 components: - type: Transform - pos: 12.5,-7.5 - parent: 1 - missingComponents: - - Destructible -- proto: ToiletEmpty - entities: - - uid: 338 + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 818 + - uid: 329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 339 + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 818 + - uid: 356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 340 + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 818 + - uid: 357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - missingComponents: - - Destructible -- proto: ToyAmongPequeno - entities: - - uid: 966 + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 818 + - uid: 364 components: - - type: MetaData - name: маленький соник - type: Transform - pos: 12.475545,-10.68522 - parent: 1 - - uid: 967 + pos: -3.5,-23.5 + parent: 818 + - uid: 366 components: - - type: MetaData - name: маленький мота - type: Transform - pos: 13.053669,-10.99772 - parent: 1 -- proto: TwoWayLever - entities: - - uid: 385 + pos: -9.5,-6.5 + parent: 818 + - uid: 367 components: - type: Transform - pos: 5.5,-5.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 375: - - Left: Forward - - Right: Reverse - - Middle: Off - 374: - - Left: Forward - - Right: Reverse - - Middle: Off - 372: - - Left: Forward - - Right: Reverse - - Middle: Off - 376: - - Left: Forward - - Right: Reverse - - Middle: Off - 373: - - Left: Forward - - Right: Reverse - - Middle: Off - 386: - - Left: Forward - - Right: Reverse - - Middle: Off - missingComponents: - - Destructible -- proto: VendingMachineCart - entities: - - uid: 399 + pos: -4.5,-11.5 + parent: 818 + - uid: 368 components: - type: Transform - pos: 15.5,-7.5 - parent: 1 - missingComponents: - - Destructible -- proto: VendingMachineClothing - entities: - - uid: 498 + pos: -6.5,-13.5 + parent: 818 + - uid: 369 components: - type: Transform - pos: 12.5,10.5 - parent: 1 - missingComponents: - - Destructible -- proto: VendingMachineGames - entities: - - uid: 256 + pos: -7.5,-23.5 + parent: 818 + - uid: 374 components: - type: Transform - pos: 25.5,-11.5 - parent: 1 - missingComponents: - - Destructible -- proto: WallmountTelevision - entities: - - uid: 521 + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 818 + - uid: 377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,5.5 - parent: 1 - missingComponents: - - Destructible -- proto: WallRiveted - entities: - - uid: 52 + pos: -3.5,-26.5 + parent: 818 + - uid: 378 components: - type: Transform - pos: 11.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 53 + pos: -5.5,-23.5 + parent: 818 + - uid: 379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 65 + pos: -1.5,-23.5 + parent: 818 + - uid: 380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 66 + pos: 2.5,-12.5 + parent: 818 + - uid: 381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 67 + pos: 4.5,-19.5 + parent: 818 + - uid: 382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 68 + pos: 2.5,-23.5 + parent: 818 + - uid: 383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 69 + pos: 4.5,-20.5 + parent: 818 + - uid: 384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 70 + pos: 4.5,-21.5 + parent: 818 + - uid: 388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 71 + pos: -9.5,-9.5 + parent: 818 + - uid: 400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 72 + pos: -9.5,1.5 + parent: 818 + - uid: 402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 73 + pos: -9.5,-1.5 + parent: 818 + - uid: 403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 74 + pos: -4.5,-8.5 + parent: 818 + - uid: 404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 75 + pos: -9.5,-5.5 + parent: 818 + - uid: 405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 76 + pos: -7.5,-8.5 + parent: 818 + - uid: 406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 77 + pos: -6.5,-8.5 + parent: 818 + - uid: 407 components: - type: Transform - pos: 8.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 78 + pos: -4.5,-12.5 + parent: 818 + - uid: 408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 79 + pos: -4.5,-9.5 + parent: 818 + - uid: 409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 80 + pos: -7.5,-12.5 + parent: 818 + - uid: 410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 81 + pos: -7.5,-19.5 + parent: 818 + - uid: 411 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 818 + - uid: 412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 82 + pos: -7.5,-17.5 + parent: 818 + - uid: 413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 83 + pos: -2.5,-26.5 + parent: 818 + - uid: 414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 84 + pos: -5.5,-26.5 + parent: 818 + - uid: 415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 85 + pos: -5.5,-24.5 + parent: 818 + - uid: 416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 86 + pos: -1.5,-24.5 + parent: 818 + - uid: 417 components: - type: Transform - pos: 3.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 87 + pos: -6.5,-23.5 + parent: 818 + - uid: 421 components: - type: Transform - pos: 3.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 88 + pos: -5.5,-12.5 + parent: 818 + - uid: 427 components: - type: Transform - pos: 4.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 89 + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 818 + - uid: 428 components: - type: Transform - pos: 5.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 90 + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 818 + - uid: 437 components: - type: Transform - pos: 6.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 91 + pos: -7.5,-14.5 + parent: 818 + - uid: 438 components: - type: Transform - pos: 6.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 92 + pos: -9.5,-10.5 + parent: 818 + - uid: 439 components: - type: Transform - pos: 5.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 93 + pos: -6.5,-18.5 + parent: 818 + - uid: 440 components: - type: Transform - pos: 4.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 94 + pos: -7.5,-20.5 + parent: 818 + - uid: 442 components: - type: Transform - pos: 4.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 95 + pos: -7.5,-13.5 + parent: 818 + - uid: 450 components: - type: Transform - pos: 5.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 96 + pos: -4.5,-26.5 + parent: 818 + - uid: 451 components: - type: Transform - pos: 6.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 97 + pos: -0.5,-26.5 + parent: 818 + - uid: 452 components: - type: Transform - pos: 4.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 98 + pos: 4.5,-18.5 + parent: 818 + - uid: 453 components: - type: Transform - pos: 5.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 99 + pos: -1.5,-26.5 + parent: 818 + - uid: 455 components: - type: Transform - pos: 6.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 100 + pos: 3.5,-12.5 + parent: 818 + - uid: 460 components: - type: Transform - pos: 7.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 101 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 818 + - uid: 523 components: - type: Transform - pos: 9.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 102 + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 818 + - uid: 532 components: - type: Transform - pos: 9.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 103 + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 818 + - uid: 533 components: - type: Transform - pos: 9.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 104 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 818 + - uid: 534 components: - type: Transform - pos: 9.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 105 + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 818 + - uid: 535 components: - type: Transform - pos: 9.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 106 + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 818 + - uid: 542 components: - type: Transform - pos: 9.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 107 + pos: 0.5,-8.5 + parent: 818 + - uid: 543 components: - type: Transform - pos: 9.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 108 + pos: -0.5,-8.5 + parent: 818 + - uid: 544 components: - type: Transform - pos: 10.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 109 + pos: 1.5,-8.5 + parent: 818 + - uid: 545 components: - type: Transform - pos: 10.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 110 + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 818 + - uid: 551 components: - type: Transform - pos: 10.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 111 + pos: 1.5,-12.5 + parent: 818 + - uid: 552 components: - type: Transform - pos: 10.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 112 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 818 + - uid: 553 components: - type: Transform - pos: 10.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 113 + pos: -3.5,-12.5 + parent: 818 + - uid: 557 components: - type: Transform - pos: 10.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 114 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 818 + - uid: 558 components: - type: Transform - pos: 10.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 115 + pos: -8.5,-14.5 + parent: 818 + - uid: 562 components: - type: Transform - pos: 8.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 116 + pos: -1.5,-8.5 + parent: 818 + - uid: 563 components: - type: Transform - pos: 7.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 117 + pos: -1.5,-25.5 + parent: 818 + - uid: 566 components: - type: Transform - pos: 10.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 118 + pos: -9.5,-14.5 + parent: 818 + - uid: 575 components: - type: Transform - pos: 10.5,10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 119 + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 818 + - uid: 576 components: - type: Transform - pos: 10.5,11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 120 + rot: -1.5707963267948966 rad + pos: -4.5,14.5 + parent: 818 + - uid: 577 components: - type: Transform - pos: 11.5,11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 121 + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 818 + - uid: 578 components: - type: Transform - pos: 12.5,11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 122 + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 818 + - uid: 579 components: - type: Transform - pos: 13.5,11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 123 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 818 + - uid: 585 components: - type: Transform - pos: 14.5,11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 124 + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 818 + - uid: 586 components: - type: Transform - pos: 15.5,11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 125 + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 818 + - uid: 589 components: - type: Transform - pos: 16.5,11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 126 + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 818 + - uid: 590 components: - type: Transform - pos: 17.5,11.5 - parent: 1 - missingComponents: - - Destructible - - uid: 127 + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 818 + - uid: 593 components: - type: Transform - pos: 13.5,10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 128 + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 818 + - uid: 594 components: - type: Transform - pos: 17.5,10.5 - parent: 1 - missingComponents: - - Destructible - - uid: 129 + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 818 + - uid: 663 components: - type: Transform - pos: 17.5,9.5 - parent: 1 - missingComponents: - - Destructible - - uid: 130 + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 818 + - uid: 664 components: - type: Transform - pos: 17.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 131 + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 818 + - uid: 666 components: - type: Transform - pos: 17.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 132 + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 818 + - uid: 669 components: - type: Transform - pos: 17.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 133 + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 818 + - uid: 672 components: - type: Transform - pos: 17.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 134 + pos: 3.5,-13.5 + parent: 818 + - uid: 674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 818 + - uid: 677 components: - type: Transform - pos: 17.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 135 + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 818 + - uid: 678 components: - type: Transform - pos: 17.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 136 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 818 + - uid: 683 components: - type: Transform - pos: 17.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 137 + pos: 0.5,-12.5 + parent: 818 + - uid: 684 components: - type: Transform - pos: 16.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 138 + pos: -2.5,-12.5 + parent: 818 + - uid: 685 components: - type: Transform - pos: 15.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 139 + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 818 + - uid: 686 components: - type: Transform - pos: 14.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 140 + pos: -0.5,-12.5 + parent: 818 + - uid: 687 components: - type: Transform - pos: 13.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 141 + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 818 + - uid: 688 components: - type: Transform - pos: 13.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 142 + pos: 2.5,-24.5 + parent: 818 + - uid: 689 components: - type: Transform - pos: 13.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 143 + pos: -7.5,-21.5 + parent: 818 + - uid: 711 components: - type: Transform - pos: 14.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 144 + rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 818 + - uid: 775 components: - type: Transform - pos: 15.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 145 + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 818 + - uid: 846 components: - type: Transform - pos: 16.5,5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 146 + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 818 + - uid: 854 components: - type: Transform - pos: 13.5,7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 147 + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 818 + - uid: 855 components: - type: Transform - pos: 13.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 148 + rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 818 + - uid: 870 components: - type: Transform - pos: 14.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 149 + rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 818 + - uid: 871 components: - type: Transform - pos: 15.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 150 + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 818 + - uid: 873 components: - type: Transform - pos: 16.5,8.5 - parent: 1 - missingComponents: - - Destructible - - uid: 151 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 818 + - uid: 874 components: - type: Transform - pos: 3.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 152 + pos: -9.5,5.5 + parent: 818 + - uid: 876 components: - type: Transform - pos: 4.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 153 + pos: 2.5,-8.5 + parent: 818 + - uid: 879 components: - type: Transform - pos: 5.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 155 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 818 + - uid: 885 components: - type: Transform - pos: 7.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 156 + pos: -9.5,3.5 + parent: 818 + - uid: 886 components: - type: Transform - pos: 7.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 157 + pos: -9.5,4.5 + parent: 818 + - uid: 887 components: - type: Transform - pos: 7.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 158 + pos: 3.5,-8.5 + parent: 818 + - uid: 894 components: - type: Transform - pos: 7.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 159 + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 818 + - uid: 897 components: - type: Transform - pos: 7.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 160 + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 818 + - uid: 898 components: - type: Transform - pos: 7.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 161 + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 818 + - uid: 904 components: - type: Transform - pos: 6.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 162 + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 818 + - uid: 905 components: - type: Transform - pos: 4.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 163 + pos: -9.5,6.5 + parent: 818 + - uid: 910 components: - type: Transform - pos: 5.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 164 + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 818 + - uid: 911 components: - type: Transform - pos: 9.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 165 + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 818 + - uid: 1623 components: - type: Transform - pos: 10.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 166 + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 818 + - uid: 1658 components: - type: Transform - pos: 11.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 167 + rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 818 + - uid: 1659 components: - type: Transform - pos: 11.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 168 + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 818 + - uid: 1677 components: - type: Transform - pos: 11.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 169 + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 818 + - uid: 1679 components: - type: Transform - pos: 11.5,-5.5 - parent: 1 - missingComponents: - - Destructible - - uid: 170 + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 818 + - uid: 1684 components: - type: Transform - pos: 11.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 171 + rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 818 + - uid: 1685 components: - type: Transform - pos: 10.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 172 + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 818 +- proto: WallRiveted + entities: + - uid: 45 components: - type: Transform - pos: 9.5,-6.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 173 + - uid: 53 components: - type: Transform - pos: 8.5,-6.5 - parent: 1 + pos: 14.5,1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 174 + - uid: 65 components: - type: Transform - pos: 11.5,-8.5 - parent: 1 + pos: 14.5,6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 175 + - uid: 66 components: - type: Transform - pos: 12.5,-8.5 - parent: 1 + pos: 14.5,5.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 176 + - uid: 68 components: - type: Transform - pos: 13.5,-8.5 - parent: 1 + pos: 14.5,0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 177 + - uid: 69 components: - type: Transform - pos: 14.5,-8.5 - parent: 1 + pos: 16.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 178 + - uid: 71 components: - type: Transform - pos: 15.5,-8.5 - parent: 1 + pos: 14.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 179 + - uid: 72 components: - type: Transform - pos: 16.5,-8.5 - parent: 1 + pos: 14.5,4.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 182 + - uid: 73 components: - type: Transform - pos: 17.5,-8.5 - parent: 1 + pos: 14.5,3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 184 + - uid: 74 components: - type: Transform - pos: 17.5,-1.5 - parent: 1 + pos: 15.5,3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 185 + - uid: 89 components: - type: Transform - pos: 16.5,-1.5 - parent: 1 + pos: 14.5,-2.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 186 + - uid: 90 components: - type: Transform - pos: 15.5,-1.5 - parent: 1 + pos: 15.5,-2.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 187 + - uid: 91 components: - type: Transform - pos: 14.5,-1.5 - parent: 1 + pos: 14.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 188 + - uid: 92 components: - type: Transform - pos: 12.5,-1.5 - parent: 1 + pos: 14.5,-6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 189 + - uid: 95 components: - type: Transform - pos: 16.5,-2.5 - parent: 1 + pos: 14.5,-7.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 190 + - uid: 96 components: - type: Transform - pos: 16.5,-6.5 - parent: 1 + pos: 15.5,-7.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 191 + - uid: 168 components: - type: Transform - pos: 16.5,-7.5 - parent: 1 + pos: 14.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 207 + - uid: 182 components: - type: Transform - pos: 24.5,-12.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 216 + - uid: 183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-2.5 - parent: 1 + pos: 16.5,-9.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 231 + - uid: 187 components: - type: Transform - pos: 17.5,-9.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 232 + - uid: 188 components: - type: Transform - pos: 17.5,-10.5 - parent: 1 + pos: 14.5,-9.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 234 + - uid: 189 components: - type: Transform - pos: 17.5,-11.5 - parent: 1 + pos: 15.5,-9.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 235 + - uid: 190 components: - type: Transform - pos: 17.5,-12.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 236 + - uid: 191 components: - type: Transform - pos: 18.5,-12.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 237 + - uid: 194 components: - type: Transform - pos: 19.5,-12.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 238 + - uid: 195 components: - type: Transform - pos: 20.5,-12.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 9.5,-14.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 239 + - uid: 196 components: - type: Transform - pos: 21.5,-12.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 264 + - uid: 197 components: - type: Transform - pos: 26.5,-9.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 295 + - uid: 198 components: - type: Transform - pos: 27.5,-2.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 304 + - uid: 200 components: - type: Transform - pos: 26.5,-4.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 307 + - uid: 204 components: - type: Transform - pos: 19.5,9.5 - parent: 1 + pos: 10.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 336 + - uid: 205 components: - type: Transform - pos: 22.5,-12.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 435 + - uid: 210 components: - type: Transform - pos: 26.5,-12.5 - parent: 1 + pos: 9.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 445 + - uid: 223 components: - type: Transform - pos: 27.5,-4.5 - parent: 1 + pos: 12.5,-26.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 446 + - uid: 229 components: - type: Transform - pos: 27.5,2.5 - parent: 1 + pos: 13.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 447 + - uid: 230 components: - type: Transform - pos: 24.5,9.5 - parent: 1 + pos: 12.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 449 + - uid: 231 components: - type: Transform - pos: 25.5,-2.5 - parent: 1 + pos: 13.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 468 + - uid: 233 components: - type: Transform - pos: 18.5,9.5 - parent: 1 + pos: 13.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 471 + - uid: 236 components: - type: Transform - pos: 26.5,-10.5 - parent: 1 + pos: 14.5,-12.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 472 + - uid: 242 components: - type: Transform - pos: 26.5,-11.5 - parent: 1 + pos: 10.5,-30.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 473 + - uid: 258 components: - type: Transform - pos: 25.5,-12.5 - parent: 1 + pos: 13.5,-21.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 475 + - uid: 259 components: - type: Transform - pos: 25.5,-4.5 - parent: 1 + pos: 15.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 476 + - uid: 261 components: - type: Transform - pos: 25.5,9.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 489 + - uid: 270 components: - type: Transform - pos: 26.5,9.5 - parent: 1 + pos: 14.5,-3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 490 + - uid: 271 components: - type: Transform - pos: 25.5,2.5 - parent: 1 + pos: 13.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 491 + - uid: 272 components: - type: Transform - pos: 26.5,4.5 - parent: 1 + pos: 9.5,-19.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 492 + - uid: 273 components: - type: Transform - pos: 25.5,4.5 - parent: 1 + pos: 8.5,-18.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 494 + - uid: 274 components: - type: Transform - pos: 27.5,4.5 - parent: 1 + pos: 8.5,-19.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 517 + - uid: 290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 1 + pos: 16.5,-21.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 518 + - uid: 300 components: - type: Transform - pos: 23.5,-12.5 - parent: 1 + pos: 10.5,-26.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 957 + - uid: 301 components: - type: Transform - pos: 16.5,-12.5 - parent: 1 + pos: 13.5,-26.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 958 + - uid: 370 components: - type: Transform - pos: 15.5,-12.5 - parent: 1 + pos: 8.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 959 + - uid: 371 components: - type: Transform - pos: 14.5,-12.5 - parent: 1 + pos: 14.5,-10.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 960 + - uid: 385 components: - type: Transform - pos: 13.5,-12.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 961 + - uid: 390 components: - type: Transform - pos: 12.5,-12.5 - parent: 1 + pos: 9.5,-26.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 962 + - uid: 391 components: - type: Transform - pos: 11.5,-12.5 - parent: 1 + pos: 15.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 963 + - uid: 393 components: - type: Transform - pos: 11.5,-11.5 - parent: 1 + pos: 14.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 964 + - uid: 419 components: - type: Transform - pos: 11.5,-10.5 - parent: 1 + pos: 14.5,-11.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 965 + - uid: 420 components: - type: Transform - pos: 11.5,-9.5 - parent: 1 + pos: 15.5,1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1025 + - uid: 424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 + pos: 16.5,-2.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1026 + - uid: 425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 8.5,-16.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1027 + - uid: 426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 + pos: 16.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1028 + - uid: 446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 + pos: 14.5,-21.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1029 + - uid: 454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 + pos: 12.5,-30.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1030 + - uid: 458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 1 + pos: 16.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1031 + - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1032 + - uid: 531 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 + pos: 4.5,1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1033 + - uid: 546 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 + pos: 4.5,-5.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1034 + - uid: 555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 1 + pos: 15.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1035 + - uid: 567 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 1 + pos: 5.5,-13.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1036 + - uid: 571 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 + pos: 5.5,6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1037 + - uid: 574 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 + pos: 4.5,6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1038 + - uid: 580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 + pos: 16.5,-15.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1039 + - uid: 618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1040 + - uid: 637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1041 + - uid: 667 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 1 + pos: 4.5,0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1042 + - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1 + pos: 4.5,3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1043 + - uid: 676 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,6.5 - parent: 1 + pos: 4.5,5.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1044 + - uid: 679 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 + pos: 4.5,-4.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 1045 + - uid: 681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1 + pos: -0.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WardrobeGreenFilled - entities: - - uid: 371 + - uid: 734 components: - type: Transform - pos: 14.5,10.5 - parent: 1 + pos: 15.5,-23.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WardrobeWhiteFilled - entities: - - uid: 366 + - uid: 751 components: - type: Transform - pos: 14.5,4.5 - parent: 1 + pos: 16.5,-7.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WardrobeYellowFilled - entities: - - uid: 370 + - uid: 752 components: - type: Transform - pos: 14.5,7.5 - parent: 1 + pos: 16.5,1.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: Windoor - entities: - - uid: 359 + - uid: 753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 + pos: 16.5,3.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 382 + - uid: 767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1 + pos: 15.5,-21.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WindoorSecureArmoryLocked - entities: - - uid: 310 + - uid: 804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: Window - entities: - - uid: 56 + - uid: 878 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 + pos: 4.5,-7.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 57 + - uid: 882 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 + pos: 4.5,-0.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 58 + - uid: 884 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 1 + pos: 4.5,-1.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 59 + - uid: 901 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 + pos: 4.5,-8.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 60 + - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 + pos: 4.5,-6.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 61 + - uid: 1352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 62 + - uid: 1369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 63 + - uid: 1706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 64 + - uid: 1709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 10.5,-27.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 469 + - uid: 1713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 818 missingComponents: + - Damageable - Destructible - - uid: 484 + - uid: 1714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 + rot: 3.141592653589793 rad + pos: 10.5,-29.5 + parent: 818 missingComponents: + - Damageable - Destructible -- proto: WindowDirectional +- proto: WardrobeAtmospherics entities: - - uid: 22 + - uid: 956 components: - type: Transform - pos: 23.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 30 + pos: -6.5,-9.5 + parent: 818 +- proto: WardrobeMixedFilled + entities: + - uid: 308 components: - type: Transform - pos: 21.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 35 + pos: 2.5,-18.5 + parent: 818 +- proto: WardrobeWhiteFilled + entities: + - uid: 1182 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 818 +- proto: WarningAir + entities: + - uid: 276 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 818 +- proto: WaterCooler + entities: + - uid: 1624 components: - type: Transform - pos: 20.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 37 + pos: -6.5,-19.5 + parent: 818 + - uid: 1627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 41 + pos: 3.5,-19.5 + parent: 818 +- proto: Windoor + entities: + - uid: 739 components: - type: Transform - pos: 20.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 46 + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 818 + - uid: 741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 49 + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 818 + - uid: 1390 components: - type: Transform - pos: 21.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 199 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 818 + - uid: 1391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 205 + pos: -0.5,-15.5 + parent: 818 +- proto: WindoorSecure + entities: + - uid: 1699 components: - type: Transform - pos: 23.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 215 + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 818 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 218 + pos: 6.5,-13.5 + parent: 818 + - uid: 740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 247 + pos: 7.5,-13.5 + parent: 818 +- proto: Window + entities: + - uid: 55 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 248 + pos: 12.5,6.5 + parent: 818 + - uid: 63 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 250 + pos: 12.5,10.5 + parent: 818 + - uid: 77 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 251 + pos: 7.5,6.5 + parent: 818 + - uid: 79 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 252 + pos: 11.5,10.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + offset: 0.5,0 + - uid: 82 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 261 + pos: 6.5,6.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + offset: 0.5,0 + - uid: 84 components: - type: Transform - pos: 22.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 262 + pos: 11.5,6.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + offset: 0.5,0 + - uid: 132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,6.5 - parent: 1 - missingComponents: - - Destructible + pos: 7.5,10.5 + parent: 818 - uid: 278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 1 - missingComponents: - - Destructible + pos: 6.5,10.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + offset: 0.5,0 - uid: 279 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 287 + pos: -0.5,-1.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + - uid: 447 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 311 + pos: -4.5,-1.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 2 + - uid: 510 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 312 + pos: -4.5,-7.5 + parent: 818 + - uid: 838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 313 + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 3 + - uid: 862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 314 + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 818 + - uid: 868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 315 + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 818 + - uid: 869 components: - type: Transform - pos: 0.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 316 + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 818 + - uid: 875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 317 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 818 + - type: PointLight + energy: 3 + color: '#AF60FCFF' + radius: 3 +- proto: WindowDirectional + entities: + - uid: 422 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 318 + pos: 0.5,-0.5 + parent: 818 + - uid: 633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 319 + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 818 + - uid: 785 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 320 + pos: -0.5,-13.5 + parent: 818 + - uid: 1340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 321 + pos: -0.5,-16.5 + parent: 818 + - uid: 1343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 322 + pos: -5.5,-17.5 + parent: 818 + - uid: 1370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 323 + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 818 + - uid: 1372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - missingComponents: - - Destructible - - uid: 324 + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 818 + - uid: 1375 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - missingComponents: - - Destructible - - uid: 325 + pos: -2.5,-13.5 + parent: 818 + - uid: 1376 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 326 + pos: -2.5,-16.5 + parent: 818 + - uid: 1377 components: - type: Transform - pos: 0.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 327 + pos: -2.5,-17.5 + parent: 818 + - uid: 1378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 337 + pos: -4.5,-17.5 + parent: 818 + - uid: 1379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 378 + pos: -3.5,-17.5 + parent: 818 + - uid: 1380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 379 + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 818 + - uid: 1383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 1 - missingComponents: - - Destructible - - uid: 380 + pos: -6.5,-17.5 + parent: 818 + - uid: 1385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 381 + pos: 0.5,-17.5 + parent: 818 + - uid: 1386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 1 - missingComponents: - - Destructible - - uid: 436 + pos: 1.5,-17.5 + parent: 818 + - uid: 1387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 438 + pos: 2.5,-17.5 + parent: 818 + - uid: 1388 components: - type: Transform - pos: 22.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 440 + pos: 3.5,-17.5 + parent: 818 + - uid: 1447 components: - type: Transform - pos: 21.5,-0.5 - parent: 1 - missingComponents: - - Destructible - - uid: 441 + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 818 + - uid: 1448 components: - type: Transform - pos: 23.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 450 + pos: -0.5,-17.5 + parent: 818 + - uid: 1742 components: + - type: MetaData + name: зеркало - type: Transform - pos: 22.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 457 + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 818 + - uid: 1743 components: + - type: MetaData + name: зеркало - type: Transform - pos: 20.5,6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 467 + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 818 +- proto: WindowFrostedDirectional + entities: + - uid: 35 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 1 - missingComponents: - - Destructible - - uid: 480 + pos: 7.5,-13.5 + parent: 818 + - uid: 745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 818 +- proto: WindowReinforcedDirectional + entities: + - uid: 1317 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 481 + pos: -4.5,15.5 + parent: 818 + - uid: 1321 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 514 + pos: -5.5,15.5 + parent: 818 + - uid: 1687 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 1 - missingComponents: - - Destructible - - uid: 516 + pos: -3.5,15.5 + parent: 818 + - uid: 1688 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 1 - missingComponents: - - Destructible + pos: -2.5,15.5 + parent: 818 ... diff --git a/Resources/Maps/Shuttles/emergency_cluster.yml b/Resources/Maps/Shuttles/emergency_cluster.yml index 8707b14ca02..3cc14505fee 100644 --- a/Resources/Maps/Shuttles/emergency_cluster.yml +++ b/Resources/Maps/Shuttles/emergency_cluster.yml @@ -38,7 +38,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACcQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACJgAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAcQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABIgAAAAACeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABHQAAAAADZAAAAAADZAAAAAACHQAAAAAAZAAAAAACHQAAAAABZAAAAAACZAAAAAACHQAAAAACJgAAAAADJgAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACcQAAAAABeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACJgAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAAAcQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAJgAAAAABIgAAAAACeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACJgAAAAABHQAAAAADZAAAAAADZAAAAAACHQAAAAAAZAAAAAACHQAAAAABZAAAAAACZAAAAAACHQAAAAACJgAAAAADJgAAAAAA version: 6 0,0: ind: 0,0 diff --git a/Resources/Maps/Shuttles/emergency_corvaxavrit.yml b/Resources/Maps/Shuttles/emergency_corvaxavrite.yml similarity index 100% rename from Resources/Maps/Shuttles/emergency_corvaxavrit.yml rename to Resources/Maps/Shuttles/emergency_corvaxavrite.yml diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 7a42b309666..520a4da5ae7 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -3,11 +3,11 @@ meta: postmapinit: false tilemap: 0: Space - 92: FloorSteel - 107: FloorTechMaint - 111: FloorWhite - 124: Lattice - 125: Plating + 89: FloorSteel + 104: FloorTechMaint + 108: FloorWhite + 120: Lattice + 121: Plating entities: - proto: "" entities: @@ -20,59 +20,59 @@ entities: chunks: -1,0: ind: -1,0 - tiles: XAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,1: ind: 0,1 - tiles: fAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAWQAAAAAA version: 6 1,0: ind: 1,0 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: XAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -385,11 +385,11 @@ entities: - type: Transform - type: Map - type: PhysicsMap + - type: GridTree + - type: MovedGrids - type: Broadphase - type: OccluderTree - type: LoadedMap - - type: GridTree - - type: MovedGrids - proto: AirAlarm entities: - uid: 800 @@ -401,8 +401,6 @@ entities: - type: DeviceList devices: - 801 - - type: AtmosDevice - joinedGrid: 179 - proto: AirCanister entities: - uid: 458 @@ -410,8 +408,6 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: Airlock entities: - uid: 48 @@ -831,13 +827,6 @@ entities: - type: Transform pos: -14.5,-7.5 parent: 179 -- proto: BackmenVendingMachineCigs - entities: - - uid: 870 - components: - - type: Transform - pos: -14.5,4.5 - parent: 179 - proto: BaseUplinkRadioDebug entities: - uid: 732 @@ -908,33 +897,21 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 1013 - uid: 697 components: - type: Transform pos: 1.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 1014 - uid: 698 components: - type: Transform pos: 1.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 1014 - uid: 984 components: - type: Transform pos: -2.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 1013 - proto: BoozeDispenser entities: - uid: 752 @@ -2667,13 +2644,6 @@ entities: - type: Transform pos: 24.5,5.5 parent: 179 -- proto: chem_master - entities: - - uid: 311 - components: - - type: Transform - pos: 8.5,11.5 - parent: 179 - proto: ChemDispenser entities: - uid: 583 @@ -2711,6 +2681,13 @@ entities: - type: Transform pos: 6.4651074,9.828774 parent: 179 +- proto: ChemMaster + entities: + - uid: 311 + components: + - type: Transform + pos: 8.5,11.5 + parent: 179 - proto: ChemMasterMachineCircuitboard entities: - uid: 718 @@ -3038,27 +3015,18 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - uid: 259 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 463 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 677 components: - type: Transform @@ -3070,61 +3038,40 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 720 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,11.5 parent: 179 - - type: DeviceLinkSink - links: - - 722 - uid: 985 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 989 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 179 - - type: DeviceLinkSink - links: - - 983 - uid: 990 components: - type: Transform pos: -2.5,-13.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - uid: 991 components: - type: Transform pos: -2.5,-16.5 parent: 179 - - type: DeviceLinkSink - links: - - 699 - proto: CrateEngineeringToolbox entities: - uid: 692 @@ -3280,9 +3227,6 @@ entities: - type: Transform pos: 9.5,25.5 parent: 179 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 147 @@ -3585,8 +3529,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasMixer entities: - uid: 747 @@ -3595,8 +3537,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasOutletInjector entities: - uid: 429 @@ -3605,8 +3545,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasPipeBend entities: - uid: 727 @@ -3645,8 +3583,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasPressurePump entities: - uid: 171 @@ -3655,8 +3591,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasValve entities: - uid: 168 @@ -3665,8 +3599,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVentPump entities: - uid: 729 @@ -3675,8 +3607,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVentScrubber entities: - uid: 452 @@ -3685,8 +3615,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GasVolumePump entities: - uid: 160 @@ -3695,8 +3623,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: GeigerCounter entities: - uid: 759 @@ -4233,9 +4159,6 @@ entities: - type: Transform pos: 12.5,24.5 parent: 179 - - type: DeviceLinkSink - links: - - 1083 - proto: MachineFrame entities: - uid: 533 @@ -4389,8 +4312,6 @@ entities: - type: Transform pos: 7.5,-1.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: Ointment entities: - uid: 148 @@ -4410,8 +4331,6 @@ entities: - type: Transform pos: 7.5,-3.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: PaperBin10 entities: - uid: 977 @@ -4445,8 +4364,6 @@ entities: - type: Transform pos: 7.5,-2.5 parent: 179 - - type: AtmosDevice - joinedGrid: 179 - proto: PlasticFlapsAirtightClear entities: - uid: 997 @@ -5122,7 +5039,7 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 179 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 751 components: @@ -5805,6 +5722,13 @@ entities: - type: Transform pos: -7.5,4.5 parent: 179 +- proto: VendingMachineCigs + entities: + - uid: 870 + components: + - type: Transform + pos: -14.5,4.5 + parent: 179 - proto: VendingMachineEngivend entities: - uid: 441 @@ -7591,18 +7515,6 @@ entities: - type: Transform pos: -2.5,3.5 parent: 179 -- proto: WeaponAKMSRifle - entities: - - uid: 437 - components: - - type: Transform - pos: -3.5018106,0.24183923 - parent: 179 - - uid: 949 - components: - - type: Transform - pos: -12.238617,9.081488 - parent: 179 - proto: WeaponCapacitorRecharger entities: - uid: 708 @@ -7610,7 +7522,7 @@ entities: - type: Transform pos: -0.5,-3.5 parent: 179 -- proto: WeaponEarthGovLaserRifle +- proto: WeaponLaserCarbine entities: - uid: 188 components: @@ -7631,6 +7543,18 @@ entities: - type: Transform pos: -3.478273,-1.1611286 parent: 179 +- proto: WeaponRifleAk + entities: + - uid: 437 + components: + - type: Transform + pos: -3.5018106,0.24183923 + parent: 179 + - uid: 949 + components: + - type: Transform + pos: -12.238617,9.081488 + parent: 179 - proto: WelderExperimental entities: - uid: 343 diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index 5a2a7d1c3c4..e376a1a91ee 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -3718,9 +3718,6 @@ entities: - type: Transform pos: -9.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 5310 - type: DeviceLinkSource linkedPorts: 5310: @@ -3730,9 +3727,6 @@ entities: - type: Transform pos: -7.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 1339 - type: DeviceLinkSource linkedPorts: 1339: @@ -3742,9 +3736,6 @@ entities: - type: Transform pos: -37.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 5993 - type: DeviceLinkSource linkedPorts: 5993: @@ -3754,9 +3745,6 @@ entities: - type: Transform pos: -37.5,20.5 parent: 30 - - type: DeviceLinkSink - links: - - 5990 - type: DeviceLinkSource linkedPorts: 5990: @@ -3767,12 +3755,24 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-22.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8258: + - DoorStatus: DoorBolt - uid: 8258 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-20.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8223: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 7628 @@ -3844,9 +3844,6 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 30 - - type: DeviceLinkSink - links: - - 4577 - type: DeviceLinkSource linkedPorts: 4577: @@ -3856,9 +3853,6 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 4576 - type: DeviceLinkSource linkedPorts: 4576: @@ -3869,12 +3863,24 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,0.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7904: + - DoorStatus: DoorBolt - uid: 7904 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-1.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6809: + - DoorStatus: DoorBolt - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 5503 @@ -4302,9 +4308,6 @@ entities: - type: Transform pos: 3.5,-1.5 parent: 30 - - type: DeviceLinkSink - links: - - 7475 - uid: 2403 components: - type: Transform @@ -4497,8 +4500,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 893 components: - type: MetaData @@ -4565,8 +4566,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 3101 components: - type: MetaData @@ -4669,8 +4668,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - proto: APCHyperCapacity entities: - uid: 8318 @@ -4712,18 +4709,13 @@ entities: - type: Transform pos: -50.5,12.5 parent: 30 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 750 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,34.5 - parent: 30 - - uid: 2442 - components: - - type: Transform - pos: -15.5,4.5 + pos: 22.5,34.5 parent: 30 - uid: 6874 components: @@ -4740,45 +4732,48 @@ entities: - uid: 6968 components: - type: Transform - rot: 3.141592653589793 rad pos: 13.5,-24.5 parent: 30 - uid: 6971 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,-24.5 parent: 30 - uid: 6990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-24.5 + pos: 23.5,-24.5 parent: 30 - uid: 7003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-24.5 + pos: 21.5,-24.5 parent: 30 - uid: 7942 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,34.5 + pos: 15.5,34.5 parent: 30 - - uid: 8507 + - uid: 8364 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-10.5 parent: 30 - - uid: 8508 + - uid: 8507 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 30 +- proto: AtmosDeviceFanTiny + entities: + - uid: 2442 + components: + - type: Transform + pos: -15.5,4.5 + parent: 30 - proto: AtmosFixBlockerMarker entities: - uid: 4894 @@ -5344,139 +5339,87 @@ entities: - type: Transform pos: 23.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 346 - uid: 1590 components: - type: Transform pos: -29.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1585 - uid: 4291 components: - type: Transform pos: 28.5,-16.5 parent: 30 - - type: DeviceLinkSink - links: - - 7519 - uid: 4651 components: - type: Transform pos: -27.5,-23.5 parent: 30 - - type: DeviceLinkSink - links: - - 6651 - uid: 5196 components: - type: Transform pos: 28.5,-14.5 parent: 30 - - type: DeviceLinkSink - links: - - 7520 - uid: 5836 components: - type: Transform pos: -18.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5838 components: - type: Transform pos: -22.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5929 components: - type: Transform pos: -22.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5935 components: - type: Transform pos: -18.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5971 components: - type: Transform pos: -39.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5972 components: - type: Transform pos: -40.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5973 components: - type: Transform pos: -41.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5974 components: - type: Transform pos: -42.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 5975 components: - type: Transform pos: -43.5,21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6453 - uid: 6223 components: - type: Transform pos: -28.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1585 - uid: 8171 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8208 - uid: 8660 components: - type: Transform pos: 7.5,19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8661 - - 6089 - proto: BookshelfFilled entities: - uid: 246 @@ -20408,161 +20351,104 @@ entities: - type: Transform pos: 28.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3521 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3522 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3523 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3524 components: - type: Transform pos: 28.5,-12.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3525 components: - type: Transform pos: 28.5,-13.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3526 components: - type: Transform pos: 28.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 3527 components: - type: Transform pos: 28.5,-14.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 4148 components: - type: Transform pos: 28.5,-16.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - uid: 5580 components: - type: Transform pos: -22.5,25.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5591 components: - type: Transform pos: -22.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5598 components: - type: Transform pos: -22.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5599 components: - type: Transform pos: -22.5,23.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5609 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,23.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5940 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5941 components: - type: Transform pos: -22.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5942 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,25.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5943 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - uid: 5944 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,26.5 parent: 30 - - type: DeviceLinkSink - links: - - 4627 - proto: CowToolboxFilled entities: - uid: 6210 @@ -39415,9 +39301,6 @@ entities: - type: Transform pos: -27.5,-21.5 parent: 30 - - type: DeviceLinkSink - links: - - 4694 - proto: MachineCentrifuge entities: - uid: 2461 @@ -41939,9 +41822,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 5803 - uid: 6284 components: - type: Transform @@ -41949,9 +41829,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 5551 - uid: 6456 components: - type: Transform @@ -41966,9 +41843,6 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 7923 - proto: PoweredSmallLight entities: - uid: 65 @@ -42936,9 +42810,6 @@ entities: - type: Transform pos: 28.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 7521 - proto: ReinforcedPlasmaWindow entities: - uid: 251 @@ -44693,358 +44564,232 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 265 components: - type: Transform pos: 7.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 3951 - uid: 266 components: - type: Transform pos: 9.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 2566 - uid: 330 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,1.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 332 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,3.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 497 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 711 components: - type: Transform pos: 11.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 714 components: - type: Transform pos: 12.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-4.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 1379 components: - type: Transform pos: -14.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 1380 components: - type: Transform pos: -16.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,10.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 1568 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 507 - uid: 1981 components: - type: Transform pos: 6.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1982 components: - type: Transform pos: 5.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1983 components: - type: Transform pos: 9.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 1985 components: - type: Transform pos: 8.5,4.5 parent: 30 - - type: DeviceLinkSink - links: - - 3935 - uid: 2154 components: - type: Transform pos: -15.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 2158 - uid: 2248 components: - type: Transform pos: -39.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2443 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,9.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2511 components: - type: Transform pos: 5.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 3541 - uid: 2579 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 2699 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,8.5 parent: 30 - - type: DeviceLinkSink - links: - - 1491 - uid: 2770 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 2821 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 2277 - uid: 2919 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-9.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 3272 components: - type: Transform pos: 12.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 2271 - uid: 3685 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-8.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 3931 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 5144 components: - type: Transform pos: -21.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 4478 - uid: 6321 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 6389 - uid: 6358 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 6399 - uid: 6376 components: - type: Transform pos: 30.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 6401 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6399 - uid: 6649 components: - type: Transform pos: 32.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 6699 components: - type: Transform pos: 31.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 6709 - uid: 8445 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,17.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8446 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8635 components: - type: Transform pos: 2.5,19.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - uid: 8676 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - uid: 8677 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,15.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - uid: 8678 components: - type: Transform pos: 10.5,14.5 parent: 30 - - type: DeviceLinkSink - links: - - 8389 - proto: ShuttersRadiationOpen entities: - uid: 6112 @@ -45054,8 +44799,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 4 - links: - - 6357 - uid: 7854 components: - type: Transform @@ -45063,8 +44806,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 4 - links: - - 6357 - uid: 7927 components: - type: Transform @@ -45072,8 +44813,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 2 - links: - - 6357 - uid: 7995 components: - type: Transform @@ -45081,8 +44820,6 @@ entities: parent: 30 - type: DeviceLinkSink invokeCounter: 2 - links: - - 6357 - proto: ShuttersWindowOpen entities: - uid: 331 @@ -45091,18 +44828,12 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,2.5 parent: 30 - - type: DeviceLinkSink - links: - - 706 - uid: 7384 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,17.5 parent: 30 - - type: DeviceLinkSink - links: - - 8447 - proto: SignalButton entities: - uid: 7519 @@ -45598,17 +45329,15 @@ entities: parent: 30 - proto: SignChem entities: - - uid: 2476 + - uid: 2465 components: - type: Transform - pos: -4.5,-3.5 + pos: -0.5,-3.5 parent: 30 -- proto: SignChemistry2 - entities: - - uid: 2465 + - uid: 2476 components: - type: Transform - pos: -0.5,-3.5 + pos: -4.5,-3.5 parent: 30 - proto: SignDirectionalBridge entities: @@ -45891,15 +45620,13 @@ entities: - type: Transform pos: 26.5,5.5 parent: 30 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 1557 components: - type: Transform pos: -8.5,7.5 parent: 30 -- proto: SignHydro3 - entities: - uid: 1558 components: - type: Transform @@ -45924,18 +45651,6 @@ entities: - type: Transform pos: 14.5,0.5 parent: 30 -- proto: SignMinerDock - entities: - - uid: 5802 - components: - - type: Transform - pos: -34.5,14.5 - parent: 30 - - uid: 6865 - components: - - type: Transform - pos: -37.5,29.5 - parent: 30 - proto: SignMorgue entities: - uid: 2438 @@ -45972,8 +45687,6 @@ entities: - type: Transform pos: -24.5,-7.5 parent: 30 -- proto: SignScience2 - entities: - uid: 5165 components: - type: Transform @@ -45994,6 +45707,18 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,9.5 parent: 30 +- proto: SignShipDock + entities: + - uid: 5802 + components: + - type: Transform + pos: -34.5,14.5 + parent: 30 + - uid: 6865 + components: + - type: Transform + pos: -37.5,29.5 + parent: 30 - proto: SignSpace entities: - uid: 5088 @@ -55423,17 +55148,11 @@ entities: - type: Transform pos: 6.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1476 - uid: 57 components: - type: Transform pos: 12.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 2252 - uid: 624 components: - type: Transform @@ -55445,9 +55164,6 @@ entities: - type: Transform pos: 9.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 1640 - proto: WindoorServiceLocked entities: - uid: 4707 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 51a2b8ba6c2..ed153964bdb 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -10651,9 +10651,6 @@ entities: - type: Transform pos: -44.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 13899 - uid: 14521 components: - type: MetaData @@ -10661,9 +10658,6 @@ entities: - type: Transform pos: -56.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 2511 - uid: 17448 components: - type: MetaData @@ -10671,9 +10665,6 @@ entities: - type: Transform pos: -56.5,24.5 parent: 60 - - type: DeviceLinkSink - links: - - 21611 - uid: 17459 components: - type: MetaData @@ -10681,9 +10672,6 @@ entities: - type: Transform pos: -44.5,24.5 parent: 60 - - type: DeviceLinkSink - links: - - 20425 - uid: 17460 components: - type: MetaData @@ -10691,9 +10679,6 @@ entities: - type: Transform pos: -35.5,22.5 parent: 60 - - type: DeviceLinkSink - links: - - 20979 - uid: 19905 components: - type: MetaData @@ -11028,9 +11013,6 @@ entities: - type: Transform pos: 0.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 18404 - type: DeviceLinkSource linkedPorts: 18404: @@ -11042,9 +11024,6 @@ entities: - type: Transform pos: 0.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 18403 - type: DeviceLinkSource linkedPorts: 18403: @@ -11070,9 +11049,6 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18076 - type: DeviceLinkSource linkedPorts: 18076: @@ -11131,9 +11107,6 @@ entities: - type: Transform pos: 0.5,12.5 parent: 60 - - type: DeviceLinkSink - links: - - 13069 - type: DeviceLinkSource linkedPorts: 13805: @@ -11165,10 +11138,6 @@ entities: - type: Transform pos: -1.5,14.5 parent: 60 - - type: DeviceLinkSink - links: - - 5859 - - 13069 - uid: 15490 components: - type: MetaData @@ -11315,9 +11284,6 @@ entities: - type: Transform pos: 10.5,-14.5 parent: 60 - - type: DeviceLinkSink - links: - - 1435 - type: DeviceLinkSource linkedPorts: 1435: @@ -11330,12 +11296,24 @@ entities: rot: 3.141592653589793 rad pos: -6.5,37.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23570: + - DoorStatus: DoorBolt - uid: 23570 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,39.5 parent: 60 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23569: + - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 227 @@ -11343,9 +11321,6 @@ entities: - type: Transform pos: 44.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21532 - type: DeviceLinkSource linkedPorts: 21532: @@ -11356,12 +11331,11 @@ entities: pos: -20.5,-54.5 parent: 60 - type: DeviceLinkSink - links: - - 4889 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 4889: - - DoorStatus: DoorBolt + - DoorStatus: Close - uid: 5168 components: - type: Transform @@ -11377,9 +11351,6 @@ entities: - type: Transform pos: -31.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 6673 - type: DeviceLinkSource linkedPorts: 6673: @@ -11389,9 +11360,6 @@ entities: - type: Transform pos: 52.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21534 - type: DeviceLinkSource linkedPorts: 21534: @@ -11401,9 +11369,6 @@ entities: - type: Transform pos: 46.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21533 - type: DeviceLinkSource linkedPorts: 21533: @@ -11413,9 +11378,6 @@ entities: - type: Transform pos: 54.5,27.5 parent: 60 - - type: DeviceLinkSink - links: - - 21535 - type: DeviceLinkSource linkedPorts: 21535: @@ -11425,9 +11387,6 @@ entities: - type: Transform pos: -47.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 7332 - type: DeviceLinkSource linkedPorts: 7332: @@ -11459,9 +11418,6 @@ entities: - type: Transform pos: 52.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 12706 - type: DeviceLinkSource linkedPorts: 12706: @@ -11471,9 +11427,6 @@ entities: - type: Transform pos: 55.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 12018 - type: DeviceLinkSource linkedPorts: 12018: @@ -11483,9 +11436,6 @@ entities: - type: Transform pos: 52.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 9242 - type: DeviceLinkSource linkedPorts: 9242: @@ -11495,9 +11445,6 @@ entities: - type: Transform pos: 55.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 8358 - type: DeviceLinkSource linkedPorts: 8358: @@ -11519,9 +11466,6 @@ entities: - type: Transform pos: 31.5,-56.5 parent: 60 - - type: DeviceLinkSink - links: - - 3335 - type: DeviceLinkSource linkedPorts: 3335: @@ -11531,9 +11475,6 @@ entities: - type: Transform pos: 31.5,-59.5 parent: 60 - - type: DeviceLinkSink - links: - - 3334 - type: DeviceLinkSource linkedPorts: 3334: @@ -11543,9 +11484,6 @@ entities: - type: Transform pos: -66.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 7692 - type: DeviceLinkSource linkedPorts: 7692: @@ -11555,9 +11493,6 @@ entities: - type: Transform pos: -69.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 5497 - type: DeviceLinkSource linkedPorts: 5497: @@ -11588,9 +11523,6 @@ entities: - type: Transform pos: -25.5,47.5 parent: 60 - - type: DeviceLinkSink - links: - - 17490 - type: DeviceLinkSource linkedPorts: 17490: @@ -11600,9 +11532,6 @@ entities: - type: Transform pos: -25.5,50.5 parent: 60 - - type: DeviceLinkSink - links: - - 17481 - type: DeviceLinkSource linkedPorts: 17481: @@ -11612,9 +11541,6 @@ entities: - type: Transform pos: 64.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 20108 - type: DeviceLinkSource linkedPorts: 20108: @@ -11624,9 +11550,6 @@ entities: - type: Transform pos: 66.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 20107 - type: DeviceLinkSource linkedPorts: 20107: @@ -11648,9 +11571,6 @@ entities: - type: Transform pos: 31.5,-47.5 parent: 60 - - type: DeviceLinkSink - links: - - 3080 - type: DeviceLinkSource linkedPorts: 3080: @@ -11660,9 +11580,6 @@ entities: - type: Transform pos: 31.5,-49.5 parent: 60 - - type: DeviceLinkSink - links: - - 3071 - type: DeviceLinkSource linkedPorts: 3071: @@ -11672,9 +11589,6 @@ entities: - type: Transform pos: 58.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 4596 - type: DeviceLinkSource linkedPorts: 4596: @@ -11684,9 +11598,6 @@ entities: - type: Transform pos: 58.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 4595 - type: DeviceLinkSource linkedPorts: 4595: @@ -11696,9 +11607,6 @@ entities: - type: Transform pos: -31.5,-36.5 parent: 60 - - type: DeviceLinkSink - links: - - 5312 - type: DeviceLinkSource linkedPorts: 5312: @@ -11709,20 +11617,16 @@ entities: pos: 0.5,-78.5 parent: 60 - type: DeviceLinkSink - links: - - 7364 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 7364: - - DoorStatus: DoorBolt + - DoorStatus: Close - uid: 8522 components: - type: Transform pos: -18.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 3900 - type: DeviceLinkSource linkedPorts: 3900: @@ -11732,9 +11636,6 @@ entities: - type: Transform pos: 13.5,-54.5 parent: 60 - - type: DeviceLinkSink - links: - - 10942 - type: DeviceLinkSource linkedPorts: 10942: @@ -11744,9 +11645,6 @@ entities: - type: Transform pos: 11.5,-54.5 parent: 60 - - type: DeviceLinkSink - links: - - 10940 - type: DeviceLinkSource linkedPorts: 10940: @@ -11756,9 +11654,6 @@ entities: - type: Transform pos: -52.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 12584 - type: DeviceLinkSource linkedPorts: 12584: @@ -11768,9 +11663,6 @@ entities: - type: Transform pos: 16.5,29.5 parent: 60 - - type: DeviceLinkSink - links: - - 19100 - type: DeviceLinkSource linkedPorts: 19100: @@ -11780,9 +11672,6 @@ entities: - type: Transform pos: 16.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 19087 - type: DeviceLinkSource linkedPorts: 19087: @@ -11792,9 +11681,6 @@ entities: - type: Transform pos: -72.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 21236 - type: DeviceLinkSource linkedPorts: 21236: @@ -11804,9 +11690,6 @@ entities: - type: Transform pos: -74.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 21235 - type: DeviceLinkSource linkedPorts: 21235: @@ -11816,10 +11699,6 @@ entities: - type: Transform pos: -95.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 22429 - - 22428 - type: DeviceLinkSource linkedPorts: 22428: @@ -11831,10 +11710,6 @@ entities: - type: Transform pos: -95.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 22428 - - 22429 - type: DeviceLinkSource linkedPorts: 22429: @@ -11846,10 +11721,6 @@ entities: - type: Transform pos: -98.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 22426 - - 22427 - type: DeviceLinkSource linkedPorts: 22427: @@ -11861,10 +11732,6 @@ entities: - type: Transform pos: -98.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 22426 - - 22427 - type: DeviceLinkSource linkedPorts: 22427: @@ -11897,9 +11764,6 @@ entities: linkedPorts: 227: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 227 - uid: 21533 components: - type: Transform @@ -11910,9 +11774,6 @@ entities: linkedPorts: 6695: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6695 - uid: 21534 components: - type: Transform @@ -11923,9 +11784,6 @@ entities: linkedPorts: 6693: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6693 - uid: 21535 components: - type: Transform @@ -11936,9 +11794,6 @@ entities: linkedPorts: 6767: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 6767 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 2733 @@ -11975,10 +11830,9 @@ entities: - type: DeviceLinkSource linkedPorts: 4890: - - DoorStatus: DoorBolt + - DoorStatus: Close - type: DeviceLinkSink - links: - - 4890 + invokeCounter: 1 - uid: 7364 components: - type: Transform @@ -11987,10 +11841,9 @@ entities: - type: DeviceLinkSource linkedPorts: 7362: - - DoorStatus: DoorBolt + - DoorStatus: Close - type: DeviceLinkSink - links: - - 7362 + invokeCounter: 1 - uid: 13181 components: - type: Transform @@ -12037,9 +11890,6 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 1441 - type: DeviceLinkSource linkedPorts: 1441: @@ -12049,9 +11899,6 @@ entities: - type: Transform pos: -18.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 8522 - type: DeviceLinkSource linkedPorts: 8522: @@ -12061,9 +11908,6 @@ entities: - type: Transform pos: -58.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11631 - type: DeviceLinkSource linkedPorts: 11631: @@ -12073,9 +11917,6 @@ entities: - type: Transform pos: -58.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 11630 - type: DeviceLinkSource linkedPorts: 11630: @@ -12085,9 +11926,6 @@ entities: - type: Transform pos: 10.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18033 - type: DeviceLinkSource linkedPorts: 18033: @@ -13360,9 +13198,6 @@ entities: lastSignals: DoorStatus: False DockStatus: True - - type: DeviceLinkSink - links: - - 7316 - uid: 12584 components: - type: Transform @@ -13373,9 +13208,6 @@ entities: linkedPorts: 12842: - DoorStatus: DoorBolt - - type: DeviceLinkSink - links: - - 12842 - proto: AirlockSyndicateGlassLocked entities: - uid: 5333 @@ -13444,9 +13276,6 @@ entities: - type: Transform pos: 46.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2970 - type: DeviceLinkSource linkedPorts: 2970: @@ -13456,9 +13285,6 @@ entities: - type: Transform pos: 49.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2963 - type: DeviceLinkSource linkedPorts: 2963: @@ -14493,142 +14319,128 @@ entities: - type: Transform pos: 32.2979,26.45987 parent: 60 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 297 components: - type: Transform - pos: 52.5,31.5 - parent: 60 - - uid: 5477 - components: - - type: Transform + rot: 3.141592653589793 rad pos: 46.5,31.5 parent: 60 - - uid: 6129 + - uid: 3189 components: - type: Transform - pos: -11.5,-0.5 - parent: 7536 - - uid: 6130 + rot: 3.141592653589793 rad + pos: 44.5,31.5 + parent: 60 + - uid: 5477 components: - type: Transform - pos: -11.5,-4.5 - parent: 7536 + rot: 1.5707963267948966 rad + pos: 59.5,14.5 + parent: 60 - uid: 6768 components: - type: Transform - pos: 54.5,31.5 + rot: 1.5707963267948966 rad + pos: 59.5,12.5 parent: 60 - uid: 6769 components: - type: Transform - pos: 44.5,31.5 + rot: -1.5707963267948966 rad + pos: 7.5,-70.5 parent: 60 - uid: 6788 components: - type: Transform - pos: 59.5,14.5 + rot: -1.5707963267948966 rad + pos: 7.5,-63.5 parent: 60 - uid: 7581 components: - type: Transform - pos: 59.5,12.5 - parent: 60 - - uid: 9110 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 7536 - - uid: 9214 - components: - - type: Transform - pos: 23.5,-29.5 + rot: -1.5707963267948966 rad + pos: -5.5,-70.5 parent: 60 - uid: 12269 components: - type: Transform - pos: 39.5,-46.5 - parent: 60 - - uid: 13825 - components: - - type: Transform - pos: 25.5,-25.5 + rot: 1.5707963267948966 rad + pos: 6.5,-70.5 parent: 60 - uid: 19688 components: - type: Transform - pos: 7.5,-70.5 + rot: 1.5707963267948966 rad + pos: 6.5,-63.5 parent: 60 - uid: 19689 components: - type: Transform - pos: 7.5,-63.5 + rot: -1.5707963267948966 rad + pos: -5.5,-63.5 parent: 60 - uid: 19690 components: - type: Transform - pos: -4.5,-70.5 + pos: -24.5,-36.5 parent: 60 - uid: 19691 components: - type: Transform - pos: 5.5,-70.5 + rot: 3.141592653589793 rad + pos: 52.5,31.5 parent: 60 - uid: 19692 components: - type: Transform - pos: 5.5,-63.5 + rot: 3.141592653589793 rad + pos: 54.5,31.5 parent: 60 - uid: 19694 components: - type: Transform - pos: -4.5,-63.5 + rot: 1.5707963267948966 rad + pos: 15.5,-63.5 parent: 60 - uid: 19786 components: - type: Transform - pos: -24.5,-35.5 - parent: 60 - - uid: 19800 - components: - - type: Transform - pos: 23.5,-46.5 - parent: 60 - - uid: 19808 - components: - - type: Transform - pos: 20.5,28.5 + rot: 1.5707963267948966 rad + pos: 15.5,-70.5 parent: 60 - - uid: 21130 +- proto: AtmosDeviceFanTiny + entities: + - uid: 6129 components: - type: Transform - pos: 44.5,31.5 - parent: 60 - - uid: 23380 + pos: -11.5,-0.5 + parent: 7536 + - uid: 6130 components: - type: Transform - pos: 46.5,31.5 - parent: 60 - - uid: 23381 + pos: -11.5,-4.5 + parent: 7536 + - uid: 9110 components: - type: Transform - pos: 52.5,31.5 - parent: 60 - - uid: 23382 + pos: 0.5,-0.5 + parent: 7536 + - uid: 9214 components: - type: Transform - pos: 54.5,31.5 + pos: 23.5,-29.5 parent: 60 - - uid: 23969 + - uid: 13825 components: - type: Transform - pos: 15.5,-63.5 + pos: 25.5,-25.5 parent: 60 - - uid: 23970 + - uid: 19808 components: - type: Transform - pos: 15.5,-70.5 + pos: 20.5,28.5 parent: 60 - proto: AtmosFixBlockerMarker entities: @@ -15792,183 +15604,111 @@ entities: - type: Transform pos: -23.5,34.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 2404 components: - type: Transform pos: -23.5,35.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 2506 components: - type: Transform pos: -23.5,36.5 parent: 60 - - type: DeviceLinkSink - links: - - 16396 - - 14910 - uid: 7728 components: - type: Transform pos: -18.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 7746 - uid: 7729 components: - type: Transform pos: -16.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 3803 - uid: 11697 components: - type: Transform pos: 55.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19108 - uid: 11830 components: - type: Transform pos: 55.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 19107 - uid: 12598 components: - type: Transform pos: -55.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 12596 - uid: 13175 components: - type: Transform pos: 59.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 17876 - uid: 13176 components: - type: Transform pos: 57.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 18802 - uid: 13177 components: - type: Transform pos: 57.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 18802 - uid: 13178 components: - type: Transform pos: 59.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 17876 - uid: 13901 components: - type: Transform pos: -50.5,18.5 parent: 60 - - type: DeviceLinkSink - links: - - 14622 - uid: 15089 components: - type: Transform pos: -31.5,47.5 parent: 60 - - type: DeviceLinkSink - links: - - 14913 - - 14914 - uid: 16541 components: - type: Transform pos: -5.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 4260 - - 18295 - uid: 16542 components: - type: Transform pos: -6.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 4260 - - 18295 - uid: 16973 components: - type: Transform pos: -20.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16976 components: - type: Transform pos: -19.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16977 components: - type: Transform pos: -18.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15426 - uid: 16978 components: - type: Transform pos: -14.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - uid: 16979 components: - type: Transform pos: -12.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - uid: 16980 components: - type: Transform pos: -13.5,52.5 parent: 60 - - type: DeviceLinkSink - links: - - 15424 - proto: BlastDoorBridgeOpen entities: - uid: 21763 @@ -15976,65 +15716,41 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21764 components: - type: Transform pos: 1.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21765 components: - type: Transform pos: 1.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21766 components: - type: Transform pos: -0.5,-8.5 parent: 60 - - type: DeviceLinkSink - links: - - 14726 - uid: 21767 components: - type: Transform pos: 5.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21768 components: - type: Transform pos: 5.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21769 components: - type: Transform pos: -4.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - uid: 21770 components: - type: Transform pos: -4.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 19170 - proto: BlastDoorOpen entities: - uid: 5344 @@ -16043,63 +15759,42 @@ entities: rot: 3.141592653589793 rad pos: -115.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5345 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5352 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,9.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5358 components: - type: Transform rot: 3.141592653589793 rad pos: -111.5,7.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5359 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5360 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - uid: 5361 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,9.5 parent: 60 - - type: DeviceLinkSink - links: - - 5346 - proto: BlastDoorWindowsOpen entities: - uid: 21780 @@ -59372,19 +59067,19 @@ entities: - type: Transform pos: 9.573504,-55.474518 parent: 60 -- proto: ClothingOuterCoatGentle +- proto: ClothingOuterCoatDetectiveLoadout entities: - - uid: 3530 + - uid: 6787 components: - type: Transform - pos: 51.556362,-34.423466 + pos: 19.394547,-50.426735 parent: 60 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatGentle entities: - - uid: 6787 + - uid: 3530 components: - type: Transform - pos: 19.394547,-50.426735 + pos: 51.556362,-34.423466 parent: 60 - proto: ClothingOuterCoatJensen entities: @@ -60507,135 +60202,90 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3894 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3895 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 3896 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 5284 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 5285 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 5489 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 6730 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 6978 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 7723 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 7724 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 7725 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 938 - uid: 8360 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 9238 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 11722 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - type: Construction edge: 0 - uid: 11757 @@ -60644,162 +60294,108 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 11881 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 12283 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12703 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-0.5 parent: 60 - - type: DeviceLinkSink - links: - - 5805 - uid: 12889 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,3.5 parent: 60 - - type: DeviceLinkSink - links: - - 12607 - uid: 13162 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13163 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13164 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13165 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13166 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13167 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13168 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13169 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13170 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13171 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 13173 - uid: 13221 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - uid: 13222 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,15.5 parent: 60 - - type: DeviceLinkSink - links: - - 13174 - proto: CowToolboxFilled entities: - uid: 7795 @@ -106506,60 +106102,39 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-24.5 parent: 60 - - type: DeviceLinkSink - links: - - 24347 - uid: 24333 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-2.5 parent: 60 - - type: DeviceLinkSink - links: - - 24334 - uid: 24335 components: - type: Transform pos: -17.5,-18.5 parent: 60 - - type: DeviceLinkSink - links: - - 24336 - uid: 24337 components: - type: Transform pos: 35.5,-22.5 parent: 60 - - type: DeviceLinkSink - links: - - 24365 - uid: 24350 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 24351 - uid: 24352 components: - type: Transform pos: 2.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 24353 - uid: 24355 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,7.5 parent: 60 - - type: DeviceLinkSink - links: - - 24354 - proto: JetpackBlueFilled entities: - uid: 4705 @@ -108113,9 +107688,6 @@ entities: - type: Transform pos: -50.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 466 - proto: MachineCentrifuge entities: - uid: 2457 @@ -117128,9 +116700,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-43.5 parent: 60 - - type: DeviceLinkSink - links: - - 24108 - proto: ReinforcedGirder entities: - uid: 11134 @@ -121917,73 +121486,46 @@ entities: - type: Transform pos: -3.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 920 components: - type: Transform pos: -2.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 2307 components: - type: Transform pos: 30.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 4513 - uid: 5626 components: - type: Transform pos: -32.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 5627 components: - type: Transform pos: -33.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 5628 components: - type: Transform pos: -31.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 9480 - uid: 7697 components: - type: Transform pos: -4.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 1189 - uid: 11253 components: - type: Transform pos: 29.5,-38.5 parent: 60 - - type: DeviceLinkSink - links: - - 4513 - uid: 17449 components: - type: Transform pos: -52.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 2508 - proto: ShuttersNormalOpen entities: - uid: 147 @@ -121992,621 +121534,402 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 148 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 10622 - uid: 188 components: - type: Transform pos: -17.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 10622 - uid: 552 components: - type: Transform pos: -17.5,-13.5 parent: 60 - - type: DeviceLinkSink - links: - - 11555 - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 4522 - uid: 1352 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-30.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1353 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1354 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1357 components: - type: Transform pos: 14.5,-29.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 1454 components: - type: Transform pos: 41.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 1631 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 2250 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 2381 components: - type: Transform pos: 24.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 2877 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-35.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 2892 components: - type: Transform pos: 13.5,-29.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3093 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-36.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3106 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 3200 components: - type: Transform pos: 40.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 3208 components: - type: Transform pos: 38.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 3493 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-33.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 3737 components: - type: Transform pos: -18.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 4522 - uid: 4034 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-28.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 4045 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,2.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 4355 components: - type: Transform pos: 35.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 4487 components: - type: Transform pos: 32.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 4496 components: - type: Transform pos: 34.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 1603 - uid: 5149 components: - type: Transform pos: -11.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 5560 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 6203 components: - type: Transform pos: -35.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 19870 - uid: 6206 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 4898 - uid: 6467 components: - type: Transform pos: -17.5,-10.5 parent: 60 - - type: DeviceLinkSink - links: - - 11098 - uid: 6522 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,17.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6524 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,20.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6526 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 60 - - type: DeviceLinkSink - links: - - 11477 - uid: 6733 components: - type: Transform pos: -35.5,-13.5 parent: 60 - - type: DeviceLinkSink - links: - - 4898 - uid: 6746 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 19870 - uid: 6772 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-33.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6773 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-30.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6774 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-31.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6775 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-34.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 6796 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 10621 - uid: 6813 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-34.5 parent: 60 - - type: DeviceLinkSink - links: - - 1242 - uid: 7032 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 11098 - uid: 7045 components: - type: Transform pos: -35.5,-10.5 parent: 60 - - type: DeviceLinkSink - links: - - 10621 - uid: 7131 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-7.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 7132 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-4.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - uid: 7664 components: - type: Transform pos: 39.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 8002 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 11555 - uid: 8381 components: - type: Transform pos: -13.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 8382 components: - type: Transform pos: -12.5,-52.5 parent: 60 - - type: DeviceLinkSink - links: - - 14549 - uid: 12303 components: - type: Transform pos: 23.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 12509 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 14208 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 14548 components: - type: Transform pos: -36.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 14551 - uid: 15575 components: - type: Transform pos: 13.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 13095 - uid: 16058 components: - type: Transform pos: 12.5,21.5 parent: 60 - - type: DeviceLinkSink - links: - - 13095 - uid: 16129 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,0.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 16134 components: - type: Transform pos: 22.5,-1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 17671 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,1.5 parent: 60 - - type: DeviceLinkSink - links: - - 2287 - uid: 18517 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 18518 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-4.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 18519 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 60 - - type: DeviceLinkSink - links: - - 18438 - uid: 19155 components: - type: Transform pos: -33.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 19130 - uid: 21334 components: - type: Transform pos: 40.5,-15.5 parent: 60 - - type: DeviceLinkSink - links: - - 2882 - uid: 21340 components: - type: Transform pos: 4.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21341 components: - type: Transform pos: 5.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21342 components: - type: Transform pos: 6.5,-26.5 parent: 60 - - type: DeviceLinkSink - links: - - 1240 - uid: 21753 components: - type: Transform pos: 43.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21754 components: - type: Transform pos: 44.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21755 components: - type: Transform pos: 45.5,16.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21758 components: - type: Transform pos: 45.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21759 components: - type: Transform pos: 43.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 21760 components: - type: Transform pos: 44.5,11.5 parent: 60 - - type: DeviceLinkSink - links: - - 21762 - uid: 22463 components: - type: Transform @@ -122622,57 +121945,36 @@ entities: - type: Transform pos: 38.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24367 components: - type: Transform pos: 39.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24368 components: - type: Transform pos: 40.5,-21.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24369 components: - type: Transform pos: 42.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24370 components: - type: Transform pos: 36.5,-20.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24371 components: - type: Transform pos: 36.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - uid: 24372 components: - type: Transform pos: 42.5,-16.5 parent: 60 - - type: DeviceLinkSink - links: - - 12331 - proto: ShuttersRadiationOpen entities: - uid: 16309 @@ -122680,113 +121982,71 @@ entities: - type: Transform pos: -10.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16335 components: - type: Transform pos: -12.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16336 components: - type: Transform pos: -15.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16337 components: - type: Transform pos: -16.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16363 components: - type: Transform pos: -17.5,31.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16364 components: - type: Transform pos: -20.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16365 components: - type: Transform pos: -22.5,33.5 parent: 60 - - type: DeviceLinkSink - links: - - 16397 - uid: 16369 components: - type: Transform pos: -0.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 16370 - uid: 16398 components: - type: Transform pos: 1.5,30.5 parent: 60 - - type: DeviceLinkSink - links: - - 16370 - uid: 18610 components: - type: Transform pos: 1.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18611 components: - type: Transform pos: 2.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18643 components: - type: Transform pos: 0.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18644 components: - type: Transform pos: -0.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - uid: 18706 components: - type: Transform pos: -1.5,37.5 parent: 60 - - type: DeviceLinkSink - links: - - 20989 - proto: ShuttersWindow entities: - uid: 11471 @@ -122794,55 +122054,31 @@ entities: - type: Transform pos: -51.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11568 components: - type: Transform pos: -51.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11574 components: - type: Transform pos: -49.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11575 components: - type: Transform pos: -49.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11582 components: - type: Transform pos: -50.5,26.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - uid: 11583 components: - type: Transform pos: -50.5,28.5 parent: 60 - - type: DeviceLinkSink - links: - - 11511 - - 11516 - proto: ShuttersWindowOpen entities: - uid: 6771 @@ -122851,75 +122087,48 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-32.5 parent: 60 - - type: DeviceLinkSink - links: - - 2625 - uid: 14547 components: - type: Transform pos: -37.5,10.5 parent: 60 - - type: DeviceLinkSink - links: - - 14551 - uid: 16527 components: - type: Transform pos: 42.5,-27.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 17379 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 17491 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 13575 - uid: 19158 components: - type: Transform pos: 32.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 19159 components: - type: Transform pos: 31.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 19161 components: - type: Transform pos: 30.5,-25.5 parent: 60 - - type: DeviceLinkSink - links: - - 11678 - uid: 21068 components: - type: Transform pos: -40.5,-5.5 parent: 60 - - type: DeviceLinkSink - links: - - 14550 - proto: ShuttleWindow entities: - uid: 21608 @@ -123892,8 +123101,6 @@ entities: - type: Transform pos: -56.5,35.5 parent: 60 -- proto: SignAtmosMinsky - entities: - uid: 24214 components: - type: Transform @@ -123983,32 +123190,21 @@ entities: parent: 60 - proto: SignChem entities: + - uid: 2661 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 60 - uid: 2809 components: - type: Transform pos: 42.5,-29.5 parent: 60 -- proto: SignChemistry1 - entities: - uid: 8932 components: - type: Transform pos: 42.5,-25.5 parent: 60 -- proto: SignChemistry2 - entities: - - uid: 2661 - components: - - type: Transform - pos: 37.5,-25.5 - parent: 60 -- proto: SignCourt - entities: - - uid: 24097 - components: - - type: Transform - pos: -39.5,-18.5 - parent: 60 - proto: SignCryogenicsMed entities: - uid: 4111 @@ -124628,13 +123824,6 @@ entities: - type: Transform pos: -15.5,-38.5 parent: 60 -- proto: SignDrones - entities: - - uid: 7203 - components: - - type: Transform - pos: 3.5,-46.5 - parent: 60 - proto: SignElectricalMed entities: - uid: 161 @@ -124861,7 +124050,7 @@ entities: - type: Transform pos: -39.5,-17.5 parent: 60 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 1959 components: @@ -124903,6 +124092,11 @@ entities: - type: Transform pos: -47.5,-19.5 parent: 60 + - uid: 24097 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 60 - proto: SignLibrary entities: - uid: 14057 @@ -124915,6 +124109,13 @@ entities: - type: Transform pos: -7.5,10.5 parent: 60 +- proto: SignMaterials + entities: + - uid: 7203 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 60 - proto: SignMedical entities: - uid: 2632 @@ -124927,14 +124128,6 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 60 -- proto: SignMinerDock - entities: - - uid: 13251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 - parent: 60 - proto: SignMorgue entities: - uid: 265 @@ -125239,6 +124432,14 @@ entities: - type: Transform pos: -17.5,-21.5 parent: 60 +- proto: SignShipDock + entities: + - uid: 13251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 60 - proto: SignSmoking entities: - uid: 5791 @@ -150857,54 +150058,36 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 6972 - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 1488 - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 1468 - uid: 243 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-12.5 parent: 60 - - type: DeviceLinkSink - links: - - 1486 - uid: 268 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-9.5 parent: 60 - - type: DeviceLinkSink - links: - - 1485 - uid: 843 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-6.5 parent: 60 - - type: DeviceLinkSink - links: - - 6971 - uid: 4078 components: - type: Transform diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 07a5cd9d35f..ea4dd61dd9d 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -10103,9 +10103,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27664 - uid: 6413 components: - type: MetaData @@ -10113,9 +10110,6 @@ entities: - type: Transform pos: 12.5,13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27663 - uid: 6414 components: - type: MetaData @@ -10123,9 +10117,6 @@ entities: - type: Transform pos: 7.5,14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27662 - uid: 6415 components: - type: MetaData @@ -10133,9 +10124,6 @@ entities: - type: Transform pos: 7.5,11.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27661 - uid: 6416 components: - type: MetaData @@ -10143,9 +10131,6 @@ entities: - type: Transform pos: 7.5,8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27660 - uid: 6417 components: - type: MetaData @@ -10153,9 +10138,6 @@ entities: - type: Transform pos: 7.5,5.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27659 - uid: 7533 components: - type: MetaData @@ -10827,9 +10809,6 @@ entities: - type: Transform pos: -61.5,17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13669 - type: DeviceLinkSource linkedPorts: 13669: @@ -10839,9 +10818,6 @@ entities: - type: Transform pos: -61.5,15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 431 - type: DeviceLinkSource linkedPorts: 431: @@ -10854,10 +10830,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-60.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3707 - - 3858 - type: DeviceLinkSource linkedPorts: 3707: @@ -10869,9 +10841,6 @@ entities: - type: Transform pos: 9.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 23210 - type: DeviceLinkSource linkedPorts: 23210: @@ -10881,9 +10850,6 @@ entities: - type: Transform pos: 9.5,-79.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11000 - type: DeviceLinkSource linkedPorts: 11000: @@ -10895,6 +10861,12 @@ entities: - type: Transform pos: 91.5,-29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5209: + - DoorStatus: Close - uid: 8807 components: - type: Transform @@ -10930,6 +10902,12 @@ entities: - type: Transform pos: 91.5,-26.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12644: + - DoorStatus: Close - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 3858 @@ -10937,9 +10915,6 @@ entities: - type: Transform pos: 23.5,-60.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3852 - type: DeviceLinkSource linkedPorts: 3852: @@ -10951,9 +10926,6 @@ entities: - type: Transform pos: -33.5,-37.5 parent: 8364 - - type: DeviceLinkSink - links: - - 15002 - type: DeviceLinkSource linkedPorts: 15002: @@ -10963,9 +10935,6 @@ entities: - type: Transform pos: -30.5,-37.5 parent: 8364 - - type: DeviceLinkSink - links: - - 7010 - type: DeviceLinkSource linkedPorts: 7010: @@ -10988,9 +10957,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3852 - type: DeviceLinkSource linkedPorts: 3852: @@ -11000,9 +10966,6 @@ entities: - type: Transform pos: -41.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14449 - type: DeviceLinkSource linkedPorts: 14449: @@ -11012,9 +10975,6 @@ entities: - type: Transform pos: -39.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14448 - type: DeviceLinkSource linkedPorts: 14448: @@ -11032,9 +10992,6 @@ entities: - type: Transform pos: -20.5,20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 509 - type: DeviceLinkSource linkedPorts: 509: @@ -11044,9 +11001,6 @@ entities: - type: Transform pos: -22.5,20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 508 - type: DeviceLinkSource linkedPorts: 508: @@ -11056,9 +11010,6 @@ entities: - type: Transform pos: -66.5,19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 562 - type: DeviceLinkSource linkedPorts: 562: @@ -11068,9 +11019,6 @@ entities: - type: Transform pos: -33.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 15592 - type: DeviceLinkSource linkedPorts: 15592: @@ -11080,9 +11028,6 @@ entities: - type: Transform pos: 28.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9810 - type: DeviceLinkSource linkedPorts: 9810: @@ -11092,9 +11037,6 @@ entities: - type: Transform pos: -77.5,-13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1110 - type: DeviceLinkSource linkedPorts: 1110: @@ -11104,9 +11046,6 @@ entities: - type: Transform pos: -68.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12470 - type: DeviceLinkSource linkedPorts: 12470: @@ -11116,9 +11055,6 @@ entities: - type: Transform pos: -75.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12469 - type: DeviceLinkSource linkedPorts: 12469: @@ -11128,9 +11064,6 @@ entities: - type: Transform pos: -49.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13139 - type: DeviceLinkSource linkedPorts: 13139: @@ -11140,9 +11073,6 @@ entities: - type: Transform pos: -49.5,24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13138 - type: DeviceLinkSource linkedPorts: 13138: @@ -11152,9 +11082,6 @@ entities: - type: Transform pos: 49.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19366 - type: DeviceLinkSource linkedPorts: 19366: @@ -11164,9 +11091,6 @@ entities: - type: Transform pos: 62.5,-71.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19987 - type: DeviceLinkSource linkedPorts: 19987: @@ -11176,9 +11100,6 @@ entities: - type: Transform pos: 87.5,-57.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19989 - type: DeviceLinkSource linkedPorts: 19989: @@ -11209,25 +11130,25 @@ entities: parent: 8364 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 27618 + - uid: 682 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-13.5 + pos: 87.5,-5.5 parent: 8364 - - uid: 27619 + - uid: 5094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-11.5 + pos: 87.5,-13.5 parent: 8364 - - uid: 27620 + - uid: 20798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-5.5 + pos: 87.5,-11.5 parent: 8364 - - uid: 27621 + - uid: 20799 components: - type: Transform rot: 1.5707963267948966 rad @@ -11269,9 +11190,6 @@ entities: rot: 3.141592653589793 rad pos: -79.5,-4.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12486 - type: DeviceLinkSource linkedPorts: 12486: @@ -11282,9 +11200,6 @@ entities: rot: 3.141592653589793 rad pos: -79.5,9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 593 - type: DeviceLinkSource linkedPorts: 593: @@ -11294,9 +11209,6 @@ entities: - type: Transform pos: 82.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22633 - type: DeviceLinkSource linkedPorts: 22633: @@ -11306,9 +11218,6 @@ entities: - type: Transform pos: 30.5,26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9436 - type: DeviceLinkSource linkedPorts: 9436: @@ -11318,9 +11227,6 @@ entities: - type: Transform pos: 47.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11652 - type: DeviceLinkSource linkedPorts: 11652: @@ -11330,9 +11236,6 @@ entities: - type: Transform pos: 47.5,21.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11651 - type: DeviceLinkSource linkedPorts: 11651: @@ -11342,9 +11245,6 @@ entities: - type: Transform pos: -35.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4758 - type: DeviceLinkSource linkedPorts: 4758: @@ -11354,9 +11254,6 @@ entities: - type: Transform pos: 49.5,-68.5 parent: 8364 - - type: DeviceLinkSink - links: - - 18669 - type: DeviceLinkSource linkedPorts: 18669: @@ -11366,9 +11263,6 @@ entities: - type: Transform pos: 81.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19986 - type: DeviceLinkSource linkedPorts: 19986: @@ -11378,9 +11272,6 @@ entities: - type: Transform pos: 81.5,-68.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19985 - type: DeviceLinkSource linkedPorts: 19985: @@ -11390,9 +11281,6 @@ entities: - type: Transform pos: 61.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19857 - type: DeviceLinkSource linkedPorts: 19857: @@ -11402,9 +11290,6 @@ entities: - type: Transform pos: 89.5,-57.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19988 - type: DeviceLinkSource linkedPorts: 19988: @@ -11414,9 +11299,6 @@ entities: - type: Transform pos: 80.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5626 - type: DeviceLinkSource linkedPorts: 5626: @@ -11433,9 +11315,6 @@ entities: linkedPorts: 655: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 655 - uid: 1110 components: - type: Transform @@ -11446,9 +11325,6 @@ entities: linkedPorts: 12466: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12466 - uid: 12469 components: - type: Transform @@ -11458,9 +11334,6 @@ entities: linkedPorts: 12468: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12468 - uid: 12470 components: - type: Transform @@ -11470,9 +11343,6 @@ entities: linkedPorts: 12467: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12467 - uid: 12486 components: - type: Transform @@ -11483,9 +11353,6 @@ entities: linkedPorts: 610: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 610 - proto: AirlockFreezer entities: - uid: 25720 @@ -11541,7 +11408,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -706.3356 + secondsUntilStateChange: -1003.90155 state: Opening - type: DeviceLinkSource lastSignals: @@ -11895,21 +11762,30 @@ entities: DockStatus: True - type: Physics canCollide: False - - type: DeviceLinkSink - links: - - 1495 - uid: 5209 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 1727: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12644 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-26.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 12643: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 21828 components: - type: Transform @@ -14781,92 +14657,105 @@ entities: - type: Transform pos: 56.5,-79.5 parent: 8364 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 556 components: - type: Transform - pos: -0.5,-0.5 - parent: 11906 + rot: 1.5707963267948966 rad + pos: 87.5,-11.5 + parent: 8364 - uid: 635 components: - type: Transform - pos: -77.5,7.5 + rot: 1.5707963267948966 rad + pos: 87.5,-3.5 parent: 8364 - - uid: 682 + - uid: 12475 components: - type: Transform - pos: -70.5,7.5 + rot: -1.5707963267948966 rad + pos: -22.5,24.5 parent: 8364 - - uid: 5094 + - uid: 12478 components: - type: Transform - pos: -21.5,24.5 + rot: 3.141592653589793 rad + pos: -77.5,-2.5 parent: 8364 - - uid: 7209 + - uid: 12679 components: - type: Transform - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: -70.5,-2.5 parent: 8364 - - uid: 9934 + - uid: 13779 components: - type: Transform - pos: 36.5,1.5 + rot: -1.5707963267948966 rad + pos: -67.5,-9.5 parent: 8364 - - uid: 12475 + - uid: 17910 components: - type: Transform - pos: -70.5,-2.5 + rot: 3.141592653589793 rad + pos: -66.5,21.5 parent: 8364 - - uid: 12478 + - uid: 18039 components: - type: Transform - pos: -77.5,-2.5 + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 parent: 8364 - - uid: 12679 + - uid: 20699 components: - type: Transform - pos: -66.5,-9.5 + rot: -1.5707963267948966 rad + pos: -44.5,-28.5 parent: 8364 - - uid: 13399 + - uid: 20800 components: - type: Transform - pos: 41.5,-0.5 + rot: 1.5707963267948966 rad + pos: 87.5,-5.5 parent: 8364 - - uid: 13779 + - uid: 20801 components: - type: Transform - pos: -66.5,21.5 + rot: 1.5707963267948966 rad + pos: 87.5,-13.5 parent: 8364 - - uid: 17910 + - uid: 20825 components: - type: Transform - pos: -44.5,-28.5 + pos: -70.5,7.5 parent: 8364 - - uid: 18039 + - uid: 20854 components: - type: Transform - pos: -44.5,-30.5 + pos: -77.5,7.5 parent: 8364 - - uid: 27622 + - uid: 20855 components: - type: Transform - pos: 87.5,-3.5 - parent: 8364 - - uid: 27623 + pos: -0.5,-0.5 + parent: 11906 +- proto: AtmosDeviceFanTiny + entities: + - uid: 7209 components: - type: Transform - pos: 87.5,-5.5 + pos: 36.5,-3.5 parent: 8364 - - uid: 27624 + - uid: 9934 components: - type: Transform - pos: 87.5,-11.5 + pos: 36.5,1.5 parent: 8364 - - uid: 27625 + - uid: 13399 components: - type: Transform - pos: 87.5,-13.5 + pos: 41.5,-0.5 parent: 8364 - proto: AtmosFixBlockerMarker entities: @@ -16015,9 +15904,6 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3807 - uid: 3568 components: - type: MetaData @@ -16030,25 +15916,16 @@ entities: - type: Transform pos: 15.5,-53.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3753 - uid: 3851 components: - type: Transform pos: -6.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 4704 components: - type: Transform pos: 3.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 4824 components: - type: MetaData @@ -16068,105 +15945,66 @@ entities: - type: Transform pos: 82.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5370 - uid: 5798 components: - type: Transform pos: 5.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 9182 components: - type: Transform pos: 5.5,36.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19935 - uid: 9379 components: - type: Transform pos: 4.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 10835 components: - type: Transform pos: -4.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 11732 components: - type: Transform pos: -5.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 13910 components: - type: Transform pos: -61.5,-21.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2638 - uid: 17676 components: - type: Transform pos: 19.5,-86.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 18326 components: - type: Transform pos: -44.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17791 - uid: 18327 components: - type: Transform pos: -44.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17791 - uid: 19078 components: - type: Transform pos: -10.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19080 components: - type: Transform pos: -11.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19090 components: - type: Transform pos: -12.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19994 components: - type: Transform @@ -16182,41 +16020,26 @@ entities: - type: Transform pos: 19.5,-83.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 20134 components: - type: Transform pos: 19.5,-84.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 20180 components: - type: Transform pos: 70.5,-39.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20181 components: - type: Transform pos: 70.5,-40.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20182 components: - type: Transform pos: 70.5,-41.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20518 components: - type: Transform @@ -16227,49 +16050,31 @@ entities: - type: Transform pos: 15.5,-49.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3754 - uid: 26646 components: - type: Transform pos: 19.5,-85.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 26666 components: - type: Transform pos: -3.5,-74.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26671 - uid: 26667 components: - type: Transform pos: -3.5,-73.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26671 - uid: 26668 components: - type: Transform pos: 2.5,-74.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26670 - uid: 26669 components: - type: Transform pos: 2.5,-73.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26670 - proto: BlastDoorOpen entities: - uid: 3134 @@ -16278,107 +16083,68 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 4212 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 4494 components: - type: Transform pos: 7.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4213 - uid: 4495 components: - type: Transform pos: 9.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4213 - uid: 5898 components: - type: Transform pos: -10.5,-8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 5911 components: - type: Transform pos: -10.5,-9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 6086 components: - type: Transform pos: -10.5,-7.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 6087 components: - type: Transform pos: 9.5,-7.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6098 components: - type: Transform pos: 9.5,-8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6099 components: - type: Transform pos: 9.5,-9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6970 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 19930 components: - type: Transform pos: -4.5,33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19933 - uid: 19932 components: - type: Transform pos: -5.5,33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19933 - proto: BlockGameArcade entities: - uid: 1873 @@ -16433,7 +16199,7 @@ entities: - type: Transform pos: 60.576424,0.7512084 parent: 8364 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 11336 components: @@ -68722,7 +68488,7 @@ entities: - type: Transform pos: -46.493744,14.462048 parent: 8364 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 5116 components: @@ -70069,134 +69835,89 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 6226 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6227 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6228 components: - type: Transform pos: -57.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6229 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6230 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6231 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6232 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 7162 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7213 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7622 components: - type: Transform @@ -70209,9 +69930,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 9475 components: - type: Transform @@ -70230,72 +69948,48 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10535 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10536 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10804 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 11321 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 11325 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 13812 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 17202 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 20048 components: - type: Transform @@ -122989,9 +122683,6 @@ entities: - type: Transform pos: 71.5,-40.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17552 - proto: MachineCentrifuge entities: - uid: 16828 @@ -133040,9 +132731,6 @@ entities: - type: Transform pos: -58.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - proto: ReinforcedPlasmaWindow entities: - uid: 3494 @@ -138552,33 +138240,21 @@ entities: - type: Transform pos: 43.5,1.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27608 - uid: 20192 components: - type: Transform pos: 52.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - uid: 20193 components: - type: Transform pos: 53.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - uid: 20194 components: - type: Transform pos: 54.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - proto: ShuttersNormalOpen entities: - uid: 1454 @@ -138587,225 +138263,144 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 1455 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 1918 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 1923 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-62.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 1924 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-63.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 2941 components: - type: Transform pos: 20.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 3001 components: - type: Transform pos: 19.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 5223 components: - type: Transform pos: -7.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 5241 components: - type: Transform pos: -5.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 5336 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 5338 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 5590 components: - type: Transform pos: -12.5,-24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 5591 components: - type: Transform pos: -12.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 5592 components: - type: Transform pos: -12.5,-22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 8158 components: - type: Transform pos: 6.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - uid: 8606 components: - type: Transform pos: 3.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8607 components: - type: Transform pos: 3.5,24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8614 components: - type: Transform pos: 2.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8615 components: - type: Transform pos: 1.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 9639 components: - type: Transform pos: -2.5,16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9640 components: - type: Transform pos: -2.5,15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9641 components: - type: Transform pos: -2.5,14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9642 components: - type: Transform pos: -5.5,18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9923 components: - type: Transform pos: 10.5,-32.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5322 - uid: 14148 components: - type: Transform pos: 21.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 14850 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15377 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15391 components: - type: Transform @@ -138817,9 +138412,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-29.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15426 components: - type: Transform @@ -138831,18 +138423,12 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 17669 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 17684 components: - type: Transform @@ -138853,146 +138439,92 @@ entities: - type: Transform pos: -0.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 18406 components: - type: Transform pos: -2.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 19022 components: - type: Transform pos: 23.5,-17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 19023 components: - type: Transform pos: 23.5,-18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 19024 components: - type: Transform pos: 23.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 22014 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 22990 components: - type: Transform pos: -1.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 26786 components: - type: Transform pos: -5.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26787 components: - type: Transform pos: -4.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26788 components: - type: Transform pos: -2.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26789 components: - type: Transform pos: -1.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26790 components: - type: Transform pos: -0.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26791 components: - type: Transform pos: 0.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26792 components: - type: Transform pos: 1.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26793 components: - type: Transform pos: 4.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26794 components: - type: Transform pos: 3.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 27220 components: - type: Transform pos: 7.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - uid: 27221 components: - type: Transform pos: 8.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - proto: ShuttersRadiationOpen entities: - uid: 3788 @@ -139000,33 +138532,21 @@ entities: - type: Transform pos: 0.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3789 components: - type: Transform pos: 1.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3868 components: - type: Transform pos: -2.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3875 components: - type: Transform pos: -1.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - proto: ShuttersWindow entities: - uid: 1416 @@ -139043,161 +138563,101 @@ entities: - type: Transform pos: 18.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8645 components: - type: Transform pos: 17.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8646 components: - type: Transform pos: 16.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8647 components: - type: Transform pos: 15.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8648 components: - type: Transform pos: 14.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8649 components: - type: Transform pos: 13.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8650 components: - type: Transform pos: 12.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8775 components: - type: Transform pos: -10.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8776 components: - type: Transform pos: -9.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8777 components: - type: Transform pos: -8.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8778 components: - type: Transform pos: -6.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8779 components: - type: Transform pos: -5.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8780 components: - type: Transform pos: -4.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8781 components: - type: Transform pos: -2.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8782 components: - type: Transform pos: -1.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8783 components: - type: Transform pos: -0.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 10454 components: - type: Transform pos: 35.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10455 components: - type: Transform pos: 36.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10456 components: - type: Transform pos: 37.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10457 components: - type: Transform pos: 38.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 20837 components: - type: Transform @@ -139218,57 +138678,36 @@ entities: - type: Transform pos: 69.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20841 components: - type: Transform pos: 70.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20842 components: - type: Transform pos: 71.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20843 components: - type: Transform pos: 68.5,-22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20844 components: - type: Transform pos: 68.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20845 components: - type: Transform pos: 68.5,-24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20846 components: - type: Transform pos: 68.5,-28.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20847 components: - type: Transform @@ -139279,9 +138718,6 @@ entities: - type: Transform pos: 68.5,-30.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20849 components: - type: Transform @@ -139297,25 +138733,16 @@ entities: - type: Transform pos: 68.5,-33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - uid: 20852 components: - type: Transform pos: 68.5,-34.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - uid: 20853 components: - type: Transform pos: 68.5,-35.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - proto: ShuttleConsoleCircuitboard entities: - uid: 12454 @@ -139921,7 +139348,7 @@ entities: - type: Transform pos: 4.5,34.5 parent: 8364 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 22926 components: @@ -139990,17 +139417,15 @@ entities: parent: 8364 - proto: SignChem entities: - - uid: 18609 + - uid: 8023 components: - type: Transform - pos: 23.5,-16.5 + pos: 18.5,-23.5 parent: 8364 -- proto: SignChemistry1 - entities: - - uid: 8023 + - uid: 18609 components: - type: Transform - pos: 18.5,-23.5 + pos: 23.5,-16.5 parent: 8364 - proto: SignCloning entities: @@ -140340,13 +139765,6 @@ entities: rot: 3.141592653589793 rad pos: 17.490667,-11.707433 parent: 8364 -- proto: SignDrones - entities: - - uid: 21495 - components: - - type: Transform - pos: -51.5,-3.5 - parent: 8364 - proto: SignElectricalMed entities: - uid: 764 @@ -140495,7 +139913,7 @@ entities: - type: Transform pos: -8.5,-28.5 parent: 8364 -- proto: SignHydro3 +- proto: SignHydro1 entities: - uid: 13393 components: @@ -140572,6 +139990,13 @@ entities: - type: Transform pos: -18.5,-16.5 parent: 8364 +- proto: SignMaterials + entities: + - uid: 21495 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 8364 - proto: SignMedical entities: - uid: 1754 @@ -140768,15 +140193,13 @@ entities: - type: Transform pos: 64.5,-25.5 parent: 8364 -- proto: SignScience1 +- proto: SignScience entities: - uid: 11319 components: - type: Transform pos: 72.5,-15.5 parent: 8364 -- proto: SignScience2 - entities: - uid: 21761 components: - type: Transform @@ -141107,17 +140530,15 @@ entities: parent: 8364 - proto: SignToxins entities: - - uid: 5296 + - uid: 5295 components: - type: Transform - pos: 64.5,-34.5 + pos: 69.5,-43.5 parent: 8364 -- proto: SignToxins2 - entities: - - uid: 5295 + - uid: 5296 components: - type: Transform - pos: 69.5,-43.5 + pos: 64.5,-34.5 parent: 8364 - proto: SignVirology entities: @@ -170643,9 +170064,6 @@ entities: - type: Transform pos: -1.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 8743 - uid: 8625 components: - type: MetaData @@ -170653,9 +170071,6 @@ entities: - type: Transform pos: -5.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 25829 - uid: 8626 components: - type: MetaData @@ -170663,9 +170078,6 @@ entities: - type: Transform pos: -9.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26575 - uid: 8973 components: - type: Transform diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index 01a2cdd798c..a8c3becaf3d 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -54,39 +54,39 @@ entities: chunks: 0,0: ind: 0,0 - tiles: bAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACbAAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAACbAAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAACbAAAAAADbQAAAAADbQAAAAAAbQAAAAACbQAAAAADbAAAAAADbAAAAAADWQAAAAADTAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAADWQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAABeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADYAAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAWQAAAAADTAAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABdgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAABYAAAAAAATAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACdgAAAAAAdgAAAAABdgAAAAACDgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABdgAAAAAAdgAAAAADdgAAAAAADgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAABeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABDgAAAAABDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADTAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAAAWQAAAAAATAAAAAAAYAAAAAAAWQAAAAADWQAAAAABTAAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAC + tiles: HQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACAQAAAAAAAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABdgAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACdgAAAAAAdgAAAAABdgAAAAACDgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABdgAAAAAAdgAAAAADdgAAAAAADgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABDgAAAAABDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAC version: 6 -1,0: ind: -1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADYAAAAAAAWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABTAAAAAAAWQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAbAAAAAADcQAAAAADbQAAAAACbQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAACcQAAAAADbQAAAAABbQAAAAACeQAAAAAAYAAAAAAATAAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAABeQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAACYAAAAAAAWQAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABcQAAAAABbAAAAAACbAAAAAAAbAAAAAAAWQAAAAACTAAAAAAAWQAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAcQAAAAACbAAAAAABbAAAAAABbAAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAACDgAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACDgAAAAAAbAAAAAABeQAAAAAAeQAAAAAAcQAAAAACeQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAADbAAAAAACeQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAADeQAAAAAAWQAAAAABTAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACeQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACYAAAAAAAYAAAAAAAWQAAAAAAbAAAAAAAcQAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADTAAAAAAAWQAAAAACWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAbAAAAAADcQAAAAADbQAAAAACbQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAACcQAAAAADbQAAAAABbQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAACbAAAAAABeQAAAAAAcQAAAAABcQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACWQAAAAACWQAAAAAAWQAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABcQAAAAABbAAAAAACbAAAAAAAbAAAAAAAWQAAAAACWQAAAAAAWQAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAcQAAAAACbAAAAAABbAAAAAABbAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAACDgAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACDgAAAAAAbAAAAAABeQAAAAAAeQAAAAAAcQAAAAACeQAAAAAAeQAAAAAAcQAAAAAAcQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAADbAAAAAACeQAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAcQAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAB version: 6 -1,-1: ind: -1,-1 - tiles: ZAAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAADYQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAHQAAAAACHQAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAACeQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAADEQAAAAAAIQAAAAABEQAAAAAAHgAAAAACHgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYQAAAAADYQAAAAADeQAAAAAAWQAAAAABWQAAAAABHQAAAAACHQAAAAABEQAAAAAAIQAAAAADEQAAAAAAHgAAAAADHgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZAAAAAABWQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAHQAAAAABHQAAAAABEQAAAAAAIQAAAAABEQAAAAAAHgAAAAABHgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYQAAAAAAYQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABYAAAAAAAWQAAAAABWQAAAAADWQAAAAABYAAAAAAAYQAAAAAAYQAAAAADeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADTAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAATAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACYAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAJAAAAAACJAAAAAADOgAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAABIgAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAJAAAAAABJAAAAAACOgAAAAAAYAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAYAAAAAAATAAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACLQAAAAAALQAAAAAALQAAAAAAHQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACIgAAAAABJAAAAAACJAAAAAADJAAAAAADWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAJAAAAAACJAAAAAADJAAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAJAAAAAADJAAAAAAAeQAAAAAA + tiles: IgAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAAAHQAAAAADEQAAAAAAIQAAAAABEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAACHQAAAAABEQAAAAAAIQAAAAADEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAABEQAAAAAAIQAAAAABEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWQAAAAADWQAAAAADeQAAAAAAIgAAAAABIgAAAAAAeQAAAAAAIgAAAAACIgAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACLQAAAAAALQAAAAAALQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACIgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WQAAAAACWQAAAAACWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAATAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABTAAAAAAAWQAAAAABWQAAAAACWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAZAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABZAAAAAAAWQAAAAABJAAAAAACJAAAAAAAJAAAAAADOgAAAAAAJAAAAAAAJAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADeQAAAAAAZAAAAAABJAAAAAABJAAAAAADJAAAAAABOgAAAAAAJAAAAAABJAAAAAABeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABTAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAOgAAAAAAJAAAAAAAJAAAAAADeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAABHQAAAAAC + tiles: WQAAAAACWQAAAAACWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAHQAAAAABHQAAAAAC version: 6 -1,1: ind: -1,1 - tiles: bAAAAAAAeQAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbQAAAAADbQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbQAAAAAAbQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbQAAAAACbQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAABbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAD + tiles: bAAAAAAAeQAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADcQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbQAAAAADbQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbQAAAAAAbQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbQAAAAACbQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAABbQAAAAAAbQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAADTQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAD version: 6 0,1: ind: 0,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: YAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADYAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAbAAAAAADPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACIgAAAAAAbAAAAAAC + tiles: YAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbwAAAAACbwAAAAABbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAbAAAAAADPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACIgAAAAAAbAAAAAAC version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAYAAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: YAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACZAAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAACWQAAAAADZAAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAZAAAAAABWQAAAAABYAAAAAAAYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAYAAAAAAAWQAAAAACWQAAAAABWQAAAAADZAAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAZAAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAZAAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABYAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: WQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAACeQAAAAAAeQAAAAAAWQAAAAACZAAAAAAAZAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADZAAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAZAAAAAABWQAAAAABZAAAAAAAZAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAZAAAAAADWQAAAAAAZAAAAAAAZAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAdgAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -2,1: ind: -2,1 @@ -106,15 +106,15 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAACZAAAAAABeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAAAZAAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAYQAAAAACYQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAABZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAYQAAAAAAYQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAYQAAAAACZAAAAAADHgAAAAADHgAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHgAAAAACHgAAAAADHgAAAAABWQAAAAABWQAAAAADWQAAAAAAYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAADHgAAAAAAHgAAAAADeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAHgAAAAACHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABEQAAAAAAIgAAAAADEQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADYAAAAAAAWQAAAAADYAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIgAAAAADEQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAIgAAAAACEQAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAD + tiles: dgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAZAAAAAAAZAAAAAADHgAAAAADHgAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHgAAAAACHgAAAAADHgAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADHgAAAAAAHgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAHgAAAAACHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABEQAAAAAAIgAAAAADEQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADWQAAAAAAWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABIgAAAAADEQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAIgAAAAACEQAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABYAAAAAAAWQAAAAABWQAAAAADUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAABXgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + tiles: AAAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAIgAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABdgAAAAABdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAADeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAC + tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAABdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -122,15 +122,15 @@ entities: version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADYAAAAAAAWQAAAAAAWQAAAAADYAAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAADWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAYAAAAAAAWQAAAAADWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,0: ind: 2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAAAWQAAAAABWQAAAAADYAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAACeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACYAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACYAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA version: 6 2,1: ind: 2,1 - tiles: WQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACYAAAAAAAYAAAAAAAWQAAAAABeQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAYAAAAAAAWQAAAAACYAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADLQAAAAAALQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACLQAAAAAALQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAWQAAAAABWQAAAAACWQAAAAACYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACIgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACHQAAAAABHQAAAAACdgAAAAACdgAAAAAAdgAAAAACeQAAAAAA + tiles: WQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADHQAAAAADHQAAAAADdgAAAAABdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACHQAAAAABHQAAAAACdgAAAAACdgAAAAAAdgAAAAACeQAAAAAA version: 6 2,2: ind: 2,2 @@ -142,7 +142,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABLQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADZAAAAAABWQAAAAABWQAAAAAAWQAAAAADYAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADYAAAAAAAWQAAAAADWQAAAAAAZAAAAAAAWQAAAAABWQAAAAACZAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABYAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACZAAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADYAAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAAAWQAAAAACYAAAAAAAZAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAALQAAAAAALQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAWQAAAAABWQAAAAABLQAAAAAALQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAABWQAAAAACYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA + tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -150,19 +150,19 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACYAAAAAAAWQAAAAADWQAAAAADWQAAAAABYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAYAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACYAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADWQAAAAACYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAABYAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADZAAAAAADWQAAAAACYAAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADZAAAAAABYAAAAAAAWQAAAAAAYAAAAAAAWQAAAAABYAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAYAAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAA + tiles: AAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAWQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAADZAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAADZAAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADZAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABYAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAACeQAAAAAAYAAAAAAAWQAAAAACWQAAAAACYAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACHQAAAAACHQAAAAABYAAAAAAAWQAAAAABYAAAAAAAWQAAAAADWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIgAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAACHQAAAAACHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAB version: 6 3,-1: ind: 3,-1 @@ -174,7 +174,7 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACYAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADYAAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADYAAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADYAAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABYAAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADYAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAYAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAABHQAAAAACPgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAABHQAAAAACPgAAAAAA version: 6 -3,1: ind: -3,1 @@ -254,2845 +254,3037 @@ entities: color: '#FFFFFFFF' id: Basalt1 decals: - 1287: 25.881918,34.192333 - 1290: 36.05116,32.59352 + 1179: 25.881918,34.192333 + 1182: 36.05116,32.59352 - node: color: '#FFFFFFFF' id: Basalt5 decals: - 1288: 31.894993,33.661083 - 1300: 25.780825,32.109146 + 1180: 31.894993,33.661083 + 1192: 25.780825,32.109146 - node: color: '#FFFFFFFF' id: Basalt8 decals: - 1289: 33.992474,34.93727 + 1181: 33.992474,34.93727 - node: color: '#A46106FF' id: BotLeft decals: - 1044: 22,-28 - 1045: 21,-28 - 1046: 20,-28 - 1047: 20,-27 - 1048: 21,-27 - 1049: 22,-27 - 1050: 15,-22 - 1051: 15,-23 - 1052: 15,-24 - 1053: 15,-25 - 1054: 14,-25 - 1055: 14,-24 - 1056: 14,-23 - 1057: 14,-22 - 1058: 18,-28 - 1059: 18,-27 - 1060: 17,-27 - 1061: 17,-28 - 1062: 16,-27 - 1063: 16,-28 + 936: 22,-28 + 937: 21,-28 + 938: 20,-28 + 939: 20,-27 + 940: 21,-27 + 941: 22,-27 + 942: 15,-22 + 943: 15,-23 + 944: 15,-24 + 945: 15,-25 + 946: 14,-25 + 947: 14,-24 + 948: 14,-23 + 949: 14,-22 + 950: 18,-28 + 951: 18,-27 + 952: 17,-27 + 953: 17,-28 + 954: 16,-27 + 955: 16,-28 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1363: 6,-22 - 1364: 6,-21 - 1365: 6,-20 - 1366: 5,-20 - 1367: 4,-20 - 1368: -3,17 - 1369: -2,17 - 1370: -1,17 - 1371: 0,17 + 1244: 6,-22 + 1245: 6,-21 + 1246: 6,-20 + 1247: 5,-20 + 1248: 4,-20 + 1249: -3,17 + 1250: -2,17 + 1251: -1,17 + 1252: 0,17 - node: - color: '#EFB341FF' - id: BotRight + color: '#FFFFFFFF' + id: Box decals: - 967: 26,-7 - 968: 26,-6 - 969: 26,-5 - 970: 26,-4 - 971: 27,-4 - 972: 27,-5 - 973: 27,-6 - 974: 27,-7 - 975: 28,-7 - 976: 28,-6 - 977: 28,-5 - 978: 28,-4 + 1381: -17,-13 + 1382: -17,-15 + 1383: -17,-11 + 1384: -17,-9 - node: color: '#52B4E9FF' id: BrickCornerOverlayNE decals: - 1462: -23,24 + 1343: -23,24 - node: color: '#52B4E9FF' id: BrickCornerOverlayNW decals: - 1399: -27,24 + 1280: -27,24 - node: color: '#52B4E9FF' id: BrickCornerOverlaySE decals: - 1400: -23,20 + 1281: -23,20 - node: color: '#52B4E9FF' id: BrickCornerOverlaySW decals: - 1401: -27,20 + 1282: -27,20 - node: color: '#52B4E9FF' id: BrickLineOverlayE decals: - 1411: -23,23 - 1412: -23,22 - 1413: -23,21 + 1292: -23,23 + 1293: -23,22 + 1294: -23,21 - node: color: '#52B4E9FF' id: BrickLineOverlayN decals: - 1408: -26,24 - 1409: -25,24 - 1410: -24,24 + 1289: -26,24 + 1290: -25,24 + 1291: -24,24 - node: color: '#52B4E9FF' id: BrickLineOverlayS decals: - 1402: -26,20 - 1403: -25,20 - 1404: -24,20 + 1283: -26,20 + 1284: -25,20 + 1285: -24,20 - node: color: '#52B4E9FF' id: BrickLineOverlayW decals: - 1405: -27,21 - 1406: -27,22 - 1407: -27,23 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 890: -17,-9 - 905: -17,-13 - 906: -17,-11 - 907: -17,-15 + 1286: -27,21 + 1287: -27,22 + 1288: -27,23 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 115: -4,56 - 116: -3,55 - 124: -6,46 + 111: -4,56 + 112: -3,55 + 120: -6,46 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 113: -11,55 - 114: -10,56 - 123: -8,46 + 109: -11,55 + 110: -10,56 + 119: -8,46 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 109: -4,48 - 110: -3,49 - 121: -6,44 + 105: -4,48 + 106: -3,49 + 117: -6,44 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 111: -10,48 - 112: -11,49 - 122: -8,44 + 107: -10,48 + 108: -11,49 + 118: -8,44 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 771: -10,-3 + 691: -10,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 768: -12,-3 + 688: -12,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 118: -4,55 + 114: -4,55 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 117: -10,55 + 113: -10,55 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 119: -4,49 + 115: -4,49 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 120: -10,49 + 116: -10,49 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 87: -3,54 - 88: -3,53 - 89: -3,52 - 90: -3,51 - 91: -3,50 - 125: -6,45 + 83: -3,54 + 84: -3,53 + 85: -3,52 + 86: -3,51 + 87: -3,50 + 121: -6,45 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 92: -8,56 - 93: -9,56 - 94: -7,56 - 95: -5,56 - 96: -5,56 - 97: -6,56 - 128: -7,46 - 770: -11,-3 + 88: -8,56 + 89: -9,56 + 90: -7,56 + 91: -5,56 + 92: -5,56 + 93: -6,56 + 124: -7,46 + 690: -11,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 104: -9,48 - 105: -8,48 - 106: -7,48 - 107: -6,48 - 108: -5,48 - 127: -7,44 - 769: -11,-3 + 100: -9,48 + 101: -8,48 + 102: -7,48 + 103: -6,48 + 104: -5,48 + 123: -7,44 + 689: -11,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 98: -11,54 - 99: -11,53 - 100: -11,53 - 101: -11,51 - 102: -11,52 - 103: -11,50 - 126: -8,45 + 94: -11,54 + 95: -11,53 + 96: -11,53 + 97: -11,51 + 98: -11,52 + 99: -11,50 + 122: -8,45 - node: color: '#334E6DFF' id: BrickTileSteelBox decals: - 196: 2,49 - 197: 3,49 + 192: 2,49 + 193: 3,49 - node: color: '#52B4E9FF' id: BrickTileSteelBox decals: - 193: -1,49 - 194: 0,49 - 195: 1,49 + 189: -1,49 + 190: 0,49 + 191: 1,49 - node: color: '#9FED58FF' id: BrickTileSteelBox decals: - 187: -1,53 - 188: 0,53 + 183: -1,53 + 184: 0,53 - node: color: '#A46106FF' id: BrickTileSteelBox decals: - 185: -1,55 - 186: 0,55 + 181: -1,55 + 182: 0,55 - node: color: '#B7FF8FFF' id: BrickTileSteelBox decals: - 189: 2,55 - 190: 3,55 + 185: 2,55 + 186: 3,55 - node: color: '#D381C9FF' id: BrickTileSteelBox decals: - 191: -1,51 - 192: 0,51 + 187: -1,51 + 188: 0,51 - node: color: '#DE3A3AFF' id: BrickTileSteelBox decals: - 181: 2,51 - 182: 3,51 + 177: 2,51 + 178: 3,51 - node: color: '#EFB341FF' id: BrickTileSteelBox decals: - 183: 2,53 - 184: 3,53 + 179: 2,53 + 180: 3,53 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNe decals: - 681: -19,16 - 682: -23,16 + 633: -19,16 + 634: -23,16 - node: color: '#D381C9FF' id: BrickTileSteelCornerNe decals: - 829: -21,-1 + 749: -21,-1 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerNe + decals: + 1578: 25,25 + 1582: 25,28 + 1583: 33,28 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 490: 29,14 + 486: 29,14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 746: 2,-5 - 747: -2,-5 - 1173: -14,-51 - 1180: -41,-18 + 666: 2,-5 + 667: -2,-5 + 1065: -14,-51 + 1072: -41,-18 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNw decals: - 679: -27,16 - 680: -21,16 + 631: -27,16 + 632: -21,16 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw decals: - 830: -23,-1 + 750: -23,-1 + 1386: -21,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerNw + decals: + 1574: 27,28 + 1575: 24,28 + 1579: 24,25 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 489: 25,14 + 485: 25,14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 748: 0,-5 - 749: 4,-5 - 1174: -16,-51 - 1179: -44,-18 + 668: 0,-5 + 669: 4,-5 + 1066: -16,-51 + 1071: -44,-18 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSe decals: - 677: -19,13 - 678: -23,13 + 629: -19,13 + 630: -23,13 - node: color: '#D381C9FF' id: BrickTileSteelCornerSe decals: - 832: -21,-4 - 901: -15,-19 + 752: -21,-4 + 811: -15,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerSe + decals: + 1576: 25,24 + 1580: 25,27 + 1584: 33,25 + 1587: 30,24 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 492: 29,12 + 488: 29,12 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 1178: -14,-52 - 1182: -41,-21 + 1070: -14,-52 + 1074: -41,-21 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSw decals: - 683: -27,13 - 684: -21,13 + 635: -27,13 + 636: -21,13 - node: color: '#D381C9FF' id: BrickTileSteelCornerSw decals: - 831: -23,-4 - 900: -21,-19 + 751: -23,-4 + 810: -21,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelCornerSw + decals: + 1577: 24,24 + 1581: 24,27 + 1588: 27,24 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 491: 25,12 + 487: 25,12 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 1177: -16,-52 - 1181: -44,-21 + 1069: -16,-52 + 1073: -44,-21 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 757: 2,-3 + 677: 2,-3 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 758: 4,-3 - 759: 0,-3 + 678: 4,-3 + 679: 0,-3 + - node: + color: '#D381C9FF' + id: BrickTileSteelInnerNw + decals: + 1389: -18,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelInnerSe + decals: + 1586: 30,25 - node: color: '#52B4E9FF' id: BrickTileSteelLineE decals: - 661: -19,14 - 662: -19,15 - 666: -23,15 - 667: -23,14 + 613: -19,14 + 614: -19,15 + 618: -23,15 + 619: -23,14 - node: color: '#D381C9FF' id: BrickTileSteelLineE decals: - 823: -21,-2 - 824: -21,-3 - 891: -15,-17 - 892: -15,-18 - 1327: -15,-15 - 1328: -15,-14 - 1329: -15,-13 - 1330: -15,-11 - 1331: -15,-10 - 1332: -15,-9 + 743: -21,-2 + 744: -21,-3 + 804: -15,-18 + 1215: -15,-15 + 1216: -15,-14 + 1217: -15,-13 + 1218: -15,-11 + 1219: -15,-10 + 1220: -15,-9 + 1390: -15,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineE + decals: + 1569: 33,27 + 1570: 33,26 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 484: 29,13 + 480: 29,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 755: -2,-6 - 756: 2,-6 - 1185: -41,-19 - 1186: -41,-20 + 675: -2,-6 + 676: 2,-6 + 1077: -41,-19 + 1078: -41,-20 - node: color: '#52B4E9FF' id: BrickTileSteelLineN decals: - 663: -24,16 - 664: -25,16 - 665: -26,16 - 676: -20,16 + 615: -24,16 + 616: -25,16 + 617: -26,16 + 628: -20,16 - node: color: '#D381C9FF' id: BrickTileSteelLineN decals: - 825: -22,-1 + 745: -22,-1 + 1387: -20,-17 + 1388: -19,-17 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineN + decals: + 1564: 28,28 + 1565: 29,28 + 1566: 31,28 + 1567: 32,28 + 1568: 30,28 + 1594: 26,25 + 1595: 26,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 485: 28,14 - 486: 27,14 - 487: 26,14 + 481: 28,14 + 482: 27,14 + 483: 26,14 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 215: -4,26 - 750: -3,-5 - 751: 1,-5 - 752: 5,-5 - 760: 1,-3 - 763: 5,-3 - 1175: -15,-51 - 1183: -43,-18 - 1184: -42,-18 + 211: -4,26 + 670: -3,-5 + 671: 1,-5 + 672: 5,-5 + 680: 1,-3 + 683: 5,-3 + 1067: -15,-51 + 1075: -43,-18 + 1076: -42,-18 - node: color: '#52B4E9FF' id: BrickTileSteelLineS decals: - 672: -26,13 - 673: -25,13 - 674: -24,13 - 675: -20,13 + 624: -26,13 + 625: -25,13 + 626: -24,13 + 627: -20,13 - node: color: '#D381C9FF' id: BrickTileSteelLineS decals: - 826: -22,-4 - 893: -17,-19 - 894: -16,-19 - 895: -18,-19 - 896: -19,-19 - 897: -20,-19 + 746: -22,-4 + 805: -17,-19 + 806: -16,-19 + 807: -18,-19 + 808: -19,-19 + 809: -20,-19 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineS + decals: + 1571: 31,25 + 1572: 29,24 + 1573: 28,24 + 1585: 32,25 + 1592: 26,25 + 1593: 26,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 481: 28,12 - 482: 27,12 - 483: 26,12 + 477: 28,12 + 478: 27,12 + 479: 26,12 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 761: 1,-3 - 762: 5,-3 - 1176: -15,-52 - 1189: -43,-21 - 1190: -42,-21 - 1374: -3,-3 - 1375: -2,-3 - 1376: -1,-3 + 681: 1,-3 + 682: 5,-3 + 1068: -15,-52 + 1081: -43,-21 + 1082: -42,-21 + 1255: -3,-3 + 1256: -2,-3 + 1257: -1,-3 - node: color: '#52B4E9FF' id: BrickTileSteelLineW decals: - 668: -27,15 - 669: -27,14 - 670: -21,15 - 671: -21,14 + 620: -27,15 + 621: -27,14 + 622: -21,15 + 623: -21,14 - node: color: '#D381C9FF' id: BrickTileSteelLineW decals: - 827: -23,-3 - 828: -23,-2 - 898: -21,-18 - 899: -21,-17 - 1333: -18,-15 - 1334: -18,-14 - 1335: -18,-13 - 1336: -18,-11 - 1337: -18,-10 - 1338: -18,-9 - 1340: -18,-12 - 1341: -18,-16 + 747: -23,-3 + 748: -23,-2 + 1221: -18,-15 + 1222: -18,-14 + 1223: -18,-13 + 1224: -18,-11 + 1225: -18,-10 + 1226: -18,-9 + 1385: -21,-18 + - node: + color: '#DD563BFF' + id: BrickTileSteelLineW + decals: + 1589: 27,25 + 1590: 27,26 + 1591: 27,27 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 488: 25,13 + 484: 25,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 214: 2,28 - 753: 4,-6 - 754: 0,-6 - 1187: -44,-19 - 1188: -44,-20 + 210: 2,28 + 673: 4,-6 + 674: 0,-6 + 1079: -44,-19 + 1080: -44,-20 - node: color: '#EFB341FF' id: BrickTileWhiteBox decals: - 1039: 19,-15 + 931: 19,-15 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe decals: - 710: -9,6 + 662: -9,6 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerNe decals: - 1430: -12,11 - 1440: -16,16 - 1464: -12,8 + 1311: -12,11 + 1321: -16,16 + 1345: -12,8 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerNe decals: - 1234: 46,28 - 1257: 43,27 + 1126: 46,28 + 1149: 43,27 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNe decals: - 640: -11,21 - 643: -11,19 + 592: -11,21 + 595: -11,19 - node: color: '#A46106FF' id: BrickTileWhiteCornerNe decals: - 1096: 11,-18 + 988: 11,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 494: 29,18 + 490: 29,18 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 1027: 20,-14 - 1043: 21,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 741: 4,2 + 919: 20,-14 + 935: 21,-6 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: - 707: -10,6 + 659: -10,6 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerNw decals: - 1439: -17,16 - 1455: -27,11 - 1463: -22,8 + 1320: -17,16 + 1336: -27,11 + 1344: -22,8 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerNw decals: - 1235: 39,28 - 1256: 42,27 + 1127: 39,28 + 1148: 42,27 - node: color: '#9FED58FF' id: BrickTileWhiteCornerNw decals: - 638: -12,21 - 642: -12,19 + 590: -12,21 + 594: -12,19 - node: color: '#A46106FF' id: BrickTileWhiteCornerNw decals: - 1161: 8,-18 + 1053: 8,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 493: 27,18 + 489: 27,18 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 1028: 16,-14 - 1042: 20,-6 + 920: 16,-14 + 934: 20,-6 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerNw decals: - 738: 1,2 + 1369: 11,6 + 1370: 14,6 + 1371: 17,6 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSe decals: - 1230: 44,33 + 1122: 44,33 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSe decals: - 708: -9,5 + 660: -9,5 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSe decals: - 1426: -12,5 - 1474: -12,9 + 1307: -12,5 + 1355: -12,9 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerSe decals: - 1252: 46,25 - 1255: 43,26 + 1144: 46,25 + 1147: 43,26 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSe decals: - 639: -11,18 - 641: -11,20 + 591: -11,18 + 593: -11,20 - node: color: '#A46106FF' id: BrickTileWhiteCornerSe decals: - 1095: 11,-24 + 987: 11,-24 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 495: 29,16 + 491: 29,16 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 1029: 20,-16 - 1040: 21,-7 + 921: 20,-16 + 932: 21,-7 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerSe decals: - 739: 4,1 + 1372: 12,5 + 1373: 15,5 + 1374: 18,5 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 1231: 41,33 + 1123: 41,33 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSw decals: - 709: -10,5 + 661: -10,5 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSw decals: - 1416: -22,5 - 1456: -27,9 + 1297: -22,5 + 1337: -27,9 - node: color: '#9D9D97FF' id: BrickTileWhiteCornerSw decals: - 1253: 39,25 - 1254: 42,26 + 1145: 39,25 + 1146: 42,26 - node: color: '#9FED58FF' id: BrickTileWhiteCornerSw decals: - 637: -12,18 - 644: -12,20 + 589: -12,18 + 596: -12,20 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 496: 27,16 + 492: 27,16 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 1030: 16,-16 - 1041: 20,-7 + 922: 16,-16 + 933: 20,-7 - node: - color: '#FFFFFFFF' + color: '#F9801D7F' id: BrickTileWhiteCornerSw decals: - 740: 1,1 + 1366: 11,5 + 1367: 14,5 + 1368: 17,5 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNe decals: - 1434: -16,11 + 1315: -16,11 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: - 158: -2,52 + 154: -2,52 - node: color: '#BDFF8593' id: BrickTileWhiteInnerNe decals: - 175: 1,54 + 171: 1,54 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 149: 1,50 + 145: 1,50 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNe decals: - 171: 1,52 + 167: 1,52 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 1169: -5,-25 + 1061: -5,-25 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNw decals: - 1445: -17,11 + 1326: -17,11 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 165: 1,52 + 161: 1,52 - node: color: '#A46106FF' id: BrickTileWhiteInnerNw decals: - 180: 1,54 - 1160: 8,-19 + 176: 1,54 + 1052: 8,-19 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw decals: - 157: 1,50 + 153: 1,50 + - node: + color: '#F9801D7F' + id: BrickTileWhiteInnerNw + decals: + 1378: 12,6 + 1379: 15,6 + 1380: 18,6 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 1312: -3,-25 + 1204: -3,-25 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 151: -2,52 + 147: -2,52 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 148: 1,52 + 144: 1,52 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSe decals: - 172: 1,54 + 168: 1,54 - node: color: '#9FED5896' id: BrickTileWhiteInnerSw decals: - 164: 1,54 + 160: 1,54 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw decals: - 154: 1,52 + 150: 1,52 - node: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 1229: 44,34 + 1121: 44,34 - node: color: '#7C5C98FF' id: BrickTileWhiteLineE decals: - 1313: 9,-2 + 1205: 9,-2 - node: color: '#96DAFFFF' id: BrickTileWhiteLineE decals: - 1427: -12,6 - 1428: -12,7 - 1429: -12,10 - 1435: -16,12 - 1436: -16,13 - 1437: -16,14 - 1438: -16,15 + 1308: -12,6 + 1309: -12,7 + 1310: -12,10 + 1316: -16,12 + 1317: -16,13 + 1318: -16,14 + 1319: -16,15 - node: color: '#9D9D97FF' id: BrickTileWhiteLineE decals: - 1242: 46,27 - 1243: 46,26 + 1134: 46,27 + 1135: 46,26 - node: color: '#A46106FF' id: BrickTileWhiteLineE decals: - 1087: 11,-19 - 1088: 11,-20 - 1089: 11,-21 - 1090: 11,-22 - 1091: 11,-23 - 1159: 7,-18 + 979: 11,-19 + 980: 11,-20 + 981: 11,-21 + 982: 11,-22 + 983: 11,-23 + 1051: 7,-18 - node: color: '#BDFF8593' id: BrickTileWhiteLineE decals: - 176: 1,55 + 172: 1,55 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 147: 1,51 - 499: 29,17 + 143: 1,51 + 495: 29,17 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 166: 1,53 - 1037: 20,-15 + 162: 1,53 + 929: 20,-15 + - node: + color: '#F9801D7F' + id: BrickTileWhiteLineE + decals: + 1375: 18,6 + 1376: 15,6 + 1377: 12,6 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteLineN + decals: + 1537: -26,7 + 1538: -25,7 - node: color: '#96DAFFFF' id: BrickTileWhiteLineN decals: - 1431: -13,11 - 1432: -14,11 - 1433: -15,11 - 1446: -18,11 - 1447: -19,11 - 1448: -20,11 - 1449: -21,11 - 1450: -22,11 - 1451: -23,11 - 1452: -24,11 - 1453: -25,11 - 1454: -26,11 - 1465: -21,8 - 1466: -20,8 - 1467: -19,8 - 1468: -18,8 - 1469: -17,8 - 1470: -16,8 - 1471: -15,8 - 1472: -14,8 - 1473: -13,8 + 1312: -13,11 + 1313: -14,11 + 1314: -15,11 + 1327: -18,11 + 1328: -19,11 + 1329: -20,11 + 1330: -21,11 + 1331: -22,11 + 1332: -23,11 + 1333: -24,11 + 1334: -25,11 + 1335: -26,11 + 1346: -21,8 + 1347: -20,8 + 1348: -19,8 + 1349: -18,8 + 1350: -17,8 + 1351: -16,8 + 1352: -15,8 + 1353: -14,8 + 1354: -13,8 - node: color: '#9D9D97FF' id: BrickTileWhiteLineN decals: - 1236: 40,28 - 1237: 41,28 - 1238: 42,28 - 1239: 43,28 - 1240: 44,28 - 1241: 45,28 + 1128: 40,28 + 1129: 41,28 + 1130: 42,28 + 1131: 43,28 + 1132: 44,28 + 1133: 45,28 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 159: -1,52 - 160: 0,52 + 155: -1,52 + 156: 0,52 - node: color: '#A46106FF' id: BrickTileWhiteLineN decals: - 177: -1,54 - 178: 0,54 - 1085: 9,-18 - 1086: 10,-18 + 173: -1,54 + 174: 0,54 + 977: 9,-18 + 978: 10,-18 - node: color: '#BDFF8593' id: BrickTileWhiteLineN decals: - 173: 2,54 - 174: 3,54 + 169: 2,54 + 170: 3,54 - node: color: '#D381C9FF' id: BrickTileWhiteLineN decals: - 155: -1,50 - 156: 0,50 + 151: -1,50 + 152: 0,50 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 143: 2,50 - 144: 3,50 - 498: 28,18 + 139: 2,50 + 140: 3,50 + 494: 28,18 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 169: 2,52 - 170: 3,52 - 1031: 17,-14 - 1032: 18,-14 - 1033: 19,-14 + 165: 2,52 + 166: 3,52 + 923: 17,-14 + 924: 18,-14 + 925: 19,-14 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 742: 2,2 - 743: 3,2 - 764: 3,-1 - 765: 4,-1 - 1168: -4,-25 + 684: 3,-1 + 685: 4,-1 + 1060: -4,-25 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 141: 2,50 - 142: 3,50 - 1226: 42,33 - 1227: 43,33 + 137: 2,50 + 138: 3,50 + 1118: 42,33 + 1119: 43,33 - node: color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 138: -1,50 - 139: 0,50 - 140: 1,50 - 1262: -4,-34 + 134: -1,50 + 135: 0,50 + 136: 1,50 + 1154: -4,-34 - node: color: '#7C5C98FF' id: BrickTileWhiteLineS decals: - 1318: 14,1 - 1319: 15,1 + 1210: 14,1 + 1211: 15,1 - node: color: '#96DAFFFF' id: BrickTileWhiteLineS decals: - 1417: -21,5 - 1418: -20,5 - 1419: -19,5 - 1420: -18,5 - 1421: -17,5 - 1422: -16,5 - 1423: -15,5 - 1424: -14,5 - 1425: -13,5 - 1458: -26,9 - 1459: -25,9 - 1460: -24,9 - 1461: -23,9 - 1475: -22,9 - 1476: -21,9 - 1477: -20,9 - 1478: -19,9 - 1479: -18,9 - 1480: -17,9 - 1481: -16,9 - 1482: -15,9 - 1483: -14,9 - 1484: -13,9 + 1298: -21,5 + 1299: -20,5 + 1300: -19,5 + 1301: -18,5 + 1302: -17,5 + 1303: -16,5 + 1304: -15,5 + 1305: -14,5 + 1306: -13,5 + 1339: -26,9 + 1340: -25,9 + 1341: -24,9 + 1342: -23,9 + 1356: -22,9 + 1357: -21,9 + 1358: -20,9 + 1359: -19,9 + 1360: -18,9 + 1361: -17,9 + 1362: -16,9 + 1363: -15,9 + 1364: -14,9 + 1365: -13,9 - node: color: '#9D9D97FF' id: BrickTileWhiteLineS decals: - 1244: 45,25 - 1245: 44,25 - 1246: 43,25 - 1247: 42,25 - 1248: 41,25 - 1249: 40,25 + 1136: 45,25 + 1137: 44,25 + 1138: 43,25 + 1139: 42,25 + 1140: 41,25 + 1141: 40,25 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 161: -1,54 - 162: 0,54 + 157: -1,54 + 158: 0,54 - node: color: '#A46106FF' id: BrickTileWhiteLineS decals: - 1092: 8,-24 - 1093: 9,-24 - 1094: 10,-24 - 1263: -3,-34 + 984: 8,-24 + 985: 9,-24 + 986: 10,-24 + 1155: -3,-34 - node: color: '#D381C9FF' id: BrickTileWhiteLineS decals: - 152: -1,52 - 153: 0,52 - 1264: -5,-34 + 148: -1,52 + 149: 0,52 + 1156: -5,-34 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 145: 2,52 - 146: 3,52 - 497: 28,16 + 141: 2,52 + 142: 3,52 + 493: 28,16 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 167: 2,54 - 168: 3,54 - 1034: 17,-16 - 1035: 18,-16 - 1036: 19,-16 - 1261: -2,-34 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 744: 2,1 - 745: 3,1 + 163: 2,54 + 164: 3,54 + 926: 17,-16 + 927: 18,-16 + 928: 19,-16 + 1153: -2,-34 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 1258: -7,-32 + 1150: -7,-32 - node: color: '#334E6DFF' id: BrickTileWhiteLineW decals: - 1228: 41,34 + 1120: 41,34 - node: color: '#70707093' id: BrickTileWhiteLineW decals: - 1260: -7,-34 + 1152: -7,-34 - node: color: '#96DAFFFF' id: BrickTileWhiteLineW decals: - 1414: -22,7 - 1415: -22,6 - 1441: -17,15 - 1442: -17,14 - 1443: -17,13 - 1444: -17,12 - 1457: -27,10 + 1295: -22,7 + 1296: -22,6 + 1322: -17,15 + 1323: -17,14 + 1324: -17,13 + 1325: -17,12 + 1338: -27,10 - node: color: '#9D9D97FF' id: BrickTileWhiteLineW decals: - 1250: 39,26 - 1251: 39,27 + 1142: 39,26 + 1143: 39,27 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 163: 1,53 + 159: 1,53 - node: color: '#A46106FF' id: BrickTileWhiteLineW decals: - 179: 1,55 + 175: 1,55 - node: color: '#C78B1993' id: BrickTileWhiteLineW decals: - 1259: -7,-33 + 1151: -7,-33 - node: color: '#D381C9FF' id: BrickTileWhiteLineW decals: - 150: 1,51 + 146: 1,51 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 500: 27,17 + 496: 27,17 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 1038: 16,-15 + 930: 16,-15 - node: color: '#FFFFFFFF' id: Busha1 decals: - 1283: 28.377537,33.036083 + 1175: 28.377537,33.036083 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 1278: 22.922419,33.036083 - 1279: 19.880083,33.942333 + 1170: 22.922419,33.036083 + 1171: 19.880083,33.942333 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 1280: 18.98016,34.92671 - 1281: 19.38641,32.098583 - 1282: 24.355186,34.536083 + 1172: 18.98016,34.92671 + 1173: 19.38641,32.098583 + 1174: 24.355186,34.536083 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 1304: 34.975742,34.972504 + 1196: 34.975742,34.972504 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 1302: 28.499575,31.984146 - 1303: 36.95945,33.952896 + 1194: 28.499575,31.984146 + 1195: 36.95945,33.952896 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 1301: 27.04645,31.937271 + 1193: 27.04645,31.937271 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 1284: 31.565037,34.80171 - 1285: 32.45566,32.92671 - 1286: 29.877537,34.89546 + 1176: 31.565037,34.80171 + 1177: 32.45566,32.92671 + 1178: 29.877537,34.89546 - node: color: '#FFFFFFFF' id: Caution decals: - 913: -27,-6 - 1066: 11,-28 - 1067: 13,-28 - 1167: -41,16 + 817: -27,-6 + 958: 11,-28 + 959: 13,-28 + 1059: -41,16 - node: color: '#000000FF' id: CheckerNESW decals: - 711: 0,3 - 712: 1,3 - 713: 2,3 - 714: 3,3 - 715: 4,3 - 716: 5,3 - 717: 5,2 - 718: 0,2 - 719: 0,1 - 720: 5,1 - 721: 5,0 - 722: 4,0 - 723: 3,0 - 724: 2,0 - 725: 1,0 - 726: 0,0 - 727: 4,4 - 728: 3,4 - 729: 6,2 + 663: 4,4 + 664: 3,4 + 665: 6,2 - node: color: '#A4610696' id: CheckerNESW decals: - 1150: 6,-28 - 1151: 6,-27 - 1152: 6,-26 - 1153: 5,-26 - 1154: 5,-27 - 1155: 5,-28 - 1156: 4,-28 - 1157: 4,-27 - 1158: 4,-26 + 1042: 6,-28 + 1043: 6,-27 + 1044: 6,-26 + 1045: 5,-26 + 1046: 5,-27 + 1047: 5,-28 + 1048: 4,-28 + 1049: 4,-27 + 1050: 4,-26 - node: color: '#D381C996' id: CheckerNESW decals: - 872: -13,-7 - 873: -13,-6 - 874: -12,-6 - 875: -12,-7 + 792: -13,-7 + 793: -13,-6 + 794: -12,-6 + 795: -12,-7 - node: color: '#DE3A3A96' id: CheckerNESW decals: - 379: 18,12 - 380: 18,13 - 381: 18,14 - 382: 18,15 - 383: 19,15 - 384: 19,14 - 385: 19,13 - 386: 19,12 - 387: 20,12 - 388: 20,13 - 389: 20,14 - 390: 20,15 - 391: 21,15 - 392: 21,14 - 393: 21,13 - 394: 21,12 - 395: 22,12 - 396: 22,13 - 397: 22,15 - 398: 22,14 - 399: 23,15 - 400: 23,14 - 401: 23,13 - 402: 23,12 - 403: 20,11 - 404: 21,11 - 561: 15,11 - 562: 14,12 - 563: 15,12 - 564: 16,12 - 565: 16,13 - 566: 15,13 - 567: 14,13 - 568: 14,14 - 569: 15,14 - 570: 16,14 - 571: 16,15 - 572: 15,15 - 573: 14,15 - 574: 13,14 - 575: 13,13 - 580: 10,13 - 581: 10,14 + 375: 18,12 + 376: 18,13 + 377: 18,14 + 378: 18,15 + 379: 19,15 + 380: 19,14 + 381: 19,13 + 382: 19,12 + 383: 20,12 + 384: 20,13 + 385: 20,14 + 386: 20,15 + 387: 21,15 + 388: 21,14 + 389: 21,13 + 390: 21,12 + 391: 22,12 + 392: 22,13 + 393: 22,15 + 394: 22,14 + 395: 23,15 + 396: 23,14 + 397: 23,13 + 398: 23,12 + 399: 20,11 + 400: 21,11 + 527: 15,11 + 528: 14,12 + 529: 15,12 + 530: 16,12 + 531: 16,13 + 532: 15,13 + 533: 14,13 + 534: 14,14 + 535: 15,14 + 536: 16,14 + 537: 16,15 + 538: 15,15 + 539: 14,15 + 540: 13,14 + 541: 13,13 + 546: 10,13 + 547: 10,14 - node: color: '#52B4E996' id: CheckerNWSE decals: - 625: -8,8 - 626: -9,8 - 627: -10,8 - 628: -10,9 - 629: -9,9 - 630: -8,9 - 631: -8,10 - 632: -9,10 - 633: -10,10 - 634: -10,11 - 635: -9,11 - 636: -8,11 + 577: -8,8 + 578: -9,8 + 579: -10,8 + 580: -10,9 + 581: -9,9 + 582: -8,9 + 583: -8,10 + 584: -9,10 + 585: -10,10 + 586: -10,11 + 587: -9,11 + 588: -8,11 - node: color: '#DE3A3A96' id: CheckerNWSE decals: - 559: 34,11 - 560: 35,11 - 598: 15,7 - 599: 18,7 - 600: 12,7 + 525: 34,11 + 526: 35,11 + 552: 15,7 + 553: 18,7 + 554: 12,7 - node: color: '#EF5C1F93' id: CheckerNWSE decals: - 517: 32,23 - 518: 33,23 + 513: 32,23 + 514: 33,23 - node: color: '#EFB34196' id: CheckerNWSE decals: - 940: 17,-5 - 941: 16,-5 - 942: 15,-5 + 844: 17,-5 + 845: 16,-5 + 846: 15,-5 - node: color: '#FFFFFFFF' id: Delivery decals: - 911: -21,-14 - 912: -21,-10 - 1191: -6,52 - 1192: -7,53 - 1193: -8,52 - 1194: -7,51 - 1309: 11,27 - 1310: 12,27 - 1311: 13,27 + 815: -21,-14 + 816: -21,-10 + 1083: -6,52 + 1084: -7,53 + 1085: -8,52 + 1086: -7,51 + 1201: 11,27 + 1202: 12,27 + 1203: 13,27 + 1405: 0,3 - node: - color: '#000000FF' - id: DiagonalCheckerAOverlay + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1535: -6,15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1407: -42,15 + 1408: -40,9 + 1409: -42,4 + 1410: -37,1 + 1430: -7,14 + 1431: -1,14 + 1432: 4,14 + 1433: 7,17 + 1439: -16,-6 + 1440: -18,-6 + 1441: -19,-2 + 1442: -16,-2 + 1461: 0,-15 + 1462: 4,-22 + 1478: 0,-34 + 1479: 2,-30 + 1483: 11,-28 + 1536: -27,10 + 1539: 18,8 + 1540: 11,5 + 1541: 11,6 + 1542: 12,6 + 1543: 12,5 + 1544: 14,6 + 1545: 15,6 + 1546: 15,5 + 1547: 17,6 + 1548: 17,5 + 1549: 18,6 + 1550: 18,5 + 1551: 21,7 + 1552: 20,14 + 1625: 39,28 + 1626: 39,26 + 1627: 44,27 + 1628: 45,25 + 1643: 0,24 + 1644: 4,24 + 1645: 3,21 + 1646: -1,30 + 1647: -6,28 + 1648: 0,28 + 1649: -5,30 + 1655: 1,1 + 1656: 4,3 + 1657: 4,0 + 1658: -3,2 + 1662: -24,24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1411: -42,6 + 1412: -42,9 + 1413: -33,0 + 1416: -32,3 + 1417: -18,1 + 1418: -10,3 + 1419: -7,1 + 1427: -10,11 + 1428: -10,8 + 1429: -7,6 + 1434: -19,2 + 1435: -19,1 + 1436: -11,1 + 1437: -14,3 + 1438: -13,-4 + 1480: 19,-23 + 1481: 22,-26 + 1482: 18,-28 + 1484: 9,-27 + 1485: 13,-22 + 1486: 13,-23 + 1502: 8,5 + 1503: 9,10 + 1504: 9,7 + 1505: 9,3 + 1506: 8,10 + 1525: -5,10 + 1526: -8,13 + 1527: -7,13 + 1528: 2,15 + 1529: 7,16 + 1530: 8,14 + 1531: 4,8 + 1532: -1,9 + 1533: -2,9 + 1534: -2,8 + 1596: 22,-7 + 1597: 26,-9 + 1598: 18,-11 + 1599: 24,-12 + 1600: 28,-12 + 1601: 32,-18 + 1602: 31,-17 + 1603: 31,-18 + 1604: 32,-11 + 1605: 18,-15 + 1606: 12,-12 + 1607: 14,-11 + 1608: -5,-22 + 1609: -5,-23 + 1659: -27,23 + 1660: -24,21 + 1661: -23,20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight decals: - 730: 2,2 - 731: 3,1 - 732: 1,1 - 733: 4,2 - 734: 2,1 - 735: 1,2 - 736: 3,2 - 737: 4,1 + 1414: -30,3 + 1415: -24,1 + 1420: -17,9 + 1421: -12,6 + 1423: -21,10 + 1443: -27,-6 + 1444: -28,-7 + 1445: -26,-7 + 1446: -22,-7 + 1447: -16,-10 + 1451: -13,-14 + 1452: -12,-16 + 1453: -6,-15 + 1454: -13,-10 + 1455: -12,-11 + 1456: -9,-8 + 1457: -6,-9 + 1463: 0,-17 + 1464: 2,-23 + 1465: -6,-25 + 1466: -13,-26 + 1474: -3,-29 + 1475: -4,-34 + 1476: 2,-34 + 1477: 0,-30 + 1487: 8,-19 + 1488: 10,-22 + 1489: 9,-24 + 1490: 4,-21 + 1491: 2,-14 + 1492: 8,-10 + 1493: 7,-4 + 1494: 9,-6 + 1495: 8,-8 + 1496: 12,-6 + 1497: 8,-2 + 1507: 8,8 + 1508: 6,3 + 1509: 9,6 + 1510: 8,3 + 1511: 7,5 + 1512: 8,13 + 1513: 3,16 + 1514: 2,15 + 1515: -3,15 + 1516: -5,13 + 1517: -5,16 + 1518: -6,10 + 1519: -5,7 + 1520: -7,6 + 1521: -6,9 + 1522: -5,3 + 1523: -6,2 + 1524: -7,2 + 1553: 19,13 + 1554: 19,14 + 1555: 23,9 + 1556: 14,10 + 1557: 12,14 + 1558: 25,8 + 1559: 29,10 + 1560: 32,11 + 1561: 32,18 + 1562: 32,21 + 1563: 28,26 + 1610: 3,-5 + 1611: -2,-4 + 1612: 3,-2 + 1613: 5,-4 + 1614: 13,-2 + 1615: 13,3 + 1616: 22,2 + 1617: 27,2 + 1618: 31,3 + 1619: 34,1 + 1620: 37,2 + 1621: 46,4 + 1622: 46,8 + 1623: 45,21 + 1624: 44,22 + 1650: -3,28 + 1651: -17,20 + 1652: -14,18 + 1653: -17,14 + 1654: -20,6 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1406: -26,6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1422: -27,9 + 1424: -22,5 + 1425: -17,16 + 1426: -12,11 + 1448: -15,-14 + 1449: -17,-19 + 1450: -21,-18 + 1458: 0,-9 + 1459: -2,-10 + 1460: -7,-8 + 1467: -14,-25 + 1468: -6,-27 + 1469: -18,-28 + 1470: -16,-28 + 1471: -18,-28 + 1472: -18,-28 + 1473: -20,-25 + 1498: 8,1 + 1499: 8,-3 + 1500: 6,-5 + 1501: 12,-7 + 1629: 42,30 + 1630: 44,28 + 1631: 40,26 + 1632: 46,14 + 1633: 46,10 + 1634: 44,7 + 1635: 45,2 + 1636: 39,3 + 1637: 36,1 + 1638: 33,3 + 1639: 29,1 + 1640: 25,2 + 1641: 15,1 + 1642: 10,1 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 306: -7,29 - 307: -13,30 - 308: -16,30 - 319: 4,20 - 320: 4,17 + 302: -7,29 + 303: -13,30 + 304: -16,30 + 315: 4,20 + 316: 4,17 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 480: 22,4 + 476: 22,4 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 501: 30,13 - 502: 30,17 - 507: 32,19 - 508: 33,19 + 497: 30,13 + 498: 30,17 + 503: 32,19 + 504: 33,19 - node: color: '#EF5C1F93' id: FullTileOverlayGreyscale decals: - 511: 32,22 - 512: 33,22 - 513: 32,24 - 514: 33,24 - 533: 26,25 - 534: 26,27 + 507: 32,22 + 508: 33,22 + 509: 32,24 + 510: 33,24 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 1273: 25.518755,33.161083 - 1274: 28.102278,34.536083 - 1275: 30.90701,33.067333 + 1165: 25.518755,33.161083 + 1166: 28.102278,34.536083 + 1167: 30.90701,33.067333 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 1276: 33.051407,34.442333 - 1277: 35.00453,33.848583 + 1168: 33.051407,34.442333 + 1169: 35.00453,33.848583 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1272: 22.28438,34.23921 + 1164: 22.28438,34.23921 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1298: 28.9527,33.984146 - 1299: 26.85895,32.952896 + 1190: 28.9527,33.984146 + 1191: 26.85895,32.952896 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 1297: 21.980526,32.077896 + 1189: 21.980526,32.077896 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1294: 23.027401,35.28102 - 1295: 24.996151,35.327896 - 1296: 23.902401,32.12477 + 1186: 23.027401,35.28102 + 1187: 24.996151,35.327896 + 1188: 23.902401,32.12477 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1291: 20.983843,34.62477 - 1292: 19.968218,33.077896 - 1293: 23.34307,34.234146 + 1183: 20.983843,34.62477 + 1184: 19.968218,33.077896 + 1185: 23.34307,34.234146 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale decals: - 1347: 32,-17 + 1228: 32,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 303: -11,31 - 304: -10,31 - 305: -9,31 - 317: 4,19 - 321: 4,16 - 322: 3,16 - 323: 5,16 - 340: 2,25 - 341: 3,25 - 342: 4,25 - 343: -2,32 - 344: -3,32 - 345: 0,31 - 346: -5,31 - 370: -3,17 - 371: -2,17 - 372: -1,17 - 373: 0,17 - 374: 1,17 + 299: -11,31 + 300: -10,31 + 301: -9,31 + 313: 4,19 + 317: 4,16 + 318: 3,16 + 319: 5,16 + 336: 2,25 + 337: 3,25 + 338: 4,25 + 339: -2,32 + 340: -3,32 + 341: 0,31 + 342: -5,31 + 366: -3,17 + 367: -2,17 + 368: -1,17 + 369: 0,17 + 370: 1,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 467: 21,7 - 468: 22,7 - 471: 22,3 - 649: -17,21 - 650: -16,21 - 651: -15,21 - 652: -14,21 + 463: 21,7 + 464: 22,7 + 467: 22,3 + 601: -17,21 + 602: -16,21 + 603: -15,21 + 604: -14,21 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 37: 3,-8 + 33: 3,-8 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 778: -11,-2 - 779: -10,-2 - 833: -18,-1 - 834: -17,-1 - 835: -16,-1 + 698: -11,-2 + 699: -10,-2 + 753: -18,-1 + 754: -17,-1 + 755: -16,-1 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 466: 32,18 - 554: 37,13 + 462: 32,18 + 520: 37,13 - node: color: '#EF5C1F93' id: HalfTileOverlayGreyscale decals: - 509: 32,21 - 510: 33,21 - 523: 28,28 - 524: 29,28 - 525: 30,28 - 526: 31,28 - 527: 32,28 + 505: 32,21 + 506: 33,21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 1012: 12,-11 - 1013: 13,-11 - 1014: 14,-11 - 1015: 15,-11 + 904: 12,-11 + 905: 13,-11 + 906: 14,-11 + 907: 15,-11 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale180 decals: - 1348: 32,-19 + 1229: 32,-19 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 292: -11,26 - 293: -9,26 - 294: -10,26 - 318: 4,18 - 347: 4,21 - 348: 2,23 - 349: 1,23 - 350: -1,27 - 351: -2,27 - 352: -5,27 - 353: -4,27 - 354: -3,27 + 288: -11,26 + 289: -9,26 + 290: -10,26 + 314: 4,18 + 343: 4,21 + 344: 2,23 + 345: 1,23 + 346: -1,27 + 347: -2,27 + 348: -5,27 + 349: -4,27 + 350: -3,27 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 469: 21,5 - 470: 22,5 - 645: -17,18 - 646: -16,18 - 647: -15,18 - 648: -14,18 + 465: 21,5 + 466: 22,5 + 597: -17,18 + 598: -16,18 + 599: -15,18 + 600: -14,18 - node: color: '#707070FF' id: HalfTileOverlayGreyscale180 decals: - 57: -9,-10 - 58: -8,-10 - 59: -8,-10 - 60: -7,-10 + 53: -9,-10 + 54: -8,-10 + 55: -8,-10 + 56: -7,-10 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 decals: - 284: 1,14 + 280: 1,14 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 780: -12,-4 - 781: -11,-4 - 782: -10,-4 - 840: -16,-7 - 841: -17,-7 - 842: -18,-7 + 700: -12,-4 + 701: -11,-4 + 702: -10,-4 + 760: -16,-7 + 761: -17,-7 + 762: -18,-7 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 505: 32,20 - 506: 33,20 - 553: 37,10 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale180 - decals: - 519: 32,25 - 520: 31,25 - 521: 29,24 - 522: 28,24 + 501: 32,20 + 502: 33,20 + 519: 37,10 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 1009: 15,-12 - 1010: 12,-13 - 1011: 13,-13 + 901: 15,-12 + 902: 12,-13 + 903: 13,-13 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale270 decals: - 1350: 31,-18 + 1231: 31,-18 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 299: -12,27 - 300: -12,28 - 301: -12,29 - 302: -12,30 - 363: -6,28 - 364: -6,29 - 365: -6,30 - 366: 0,26 - 367: 0,25 - 368: 0,24 - 369: 3,22 + 295: -12,27 + 296: -12,28 + 297: -12,29 + 298: -12,30 + 359: -6,28 + 360: -6,29 + 361: -6,30 + 362: 0,26 + 363: 0,25 + 364: 0,24 + 365: 3,22 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 473: 20,6 - 655: -18,20 - 660: -18,19 + 469: 20,6 + 607: -18,20 + 612: -18,19 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 18: 7,2 + 14: 7,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 1135: 8,-27 + 1027: 8,-27 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 784: -13,-3 - 785: -13,-2 - 843: -19,-6 - 844: -19,-5 - 845: -19,-4 - 846: -19,-2 + 704: -13,-3 + 705: -13,-2 + 763: -19,-6 + 764: -19,-5 + 765: -19,-4 + 766: -19,-2 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 557: 36,11 - 558: 36,12 - 584: 11,13 - 585: 11,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale270 - decals: - 530: 27,25 - 531: 27,26 - 532: 27,27 + 523: 36,11 + 524: 36,12 + 550: 11,13 + 551: 11,14 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 953: 15,-8 - 1016: 11,-12 + 857: 15,-8 + 908: 11,-12 - node: color: '#2BAF9D93' id: HalfTileOverlayGreyscale90 decals: - 1349: 33,-18 + 1230: 33,-18 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 295: -8,27 - 296: -8,28 - 297: -8,29 - 298: -8,30 - 355: 5,22 - 356: 5,23 - 357: 5,24 - 358: 1,26 - 359: 1,27 - 360: 1,28 - 361: 1,29 - 362: 1,30 + 291: -8,27 + 292: -8,28 + 293: -8,29 + 294: -8,30 + 351: 5,22 + 352: 5,23 + 353: 5,24 + 354: 1,26 + 355: 1,27 + 356: 1,28 + 357: 1,29 + 358: 1,30 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 472: 23,6 - 653: -13,20 - 654: -13,19 + 468: 23,6 + 605: -13,20 + 606: -13,19 - node: color: '#707070FF' id: HalfTileOverlayGreyscale90 decals: - 62: -12,-12 - 63: -12,-13 - 64: -12,-14 - 65: -12,-16 - 66: -12,-15 + 58: -12,-12 + 59: -12,-13 + 60: -12,-14 + 61: -12,-16 + 62: -12,-15 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 285: -5,2 + 281: -5,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1076: 6,-23 - 1077: 6,-22 - 1078: 6,-21 + 968: 6,-23 + 969: 6,-22 + 970: 6,-21 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 783: -9,-3 - 836: -15,-2 - 837: -15,-4 - 838: -15,-5 - 839: -15,-6 + 703: -9,-3 + 756: -15,-2 + 757: -15,-4 + 758: -15,-5 + 759: -15,-6 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 555: 38,11 - 556: 38,12 - 582: 12,13 - 583: 12,14 - - node: - color: '#EF5C1F93' - id: HalfTileOverlayGreyscale90 - decals: - 528: 33,26 - 529: 33,27 + 521: 38,11 + 522: 38,12 + 548: 12,13 + 549: 12,14 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 917: 13,-8 - 918: 13,-7 - 919: 13,-6 - 952: 16,-8 + 821: 13,-8 + 822: 13,-7 + 823: 13,-6 + 856: 16,-8 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 1372: 1,17 + 1253: 1,17 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1373: 6,-23 + 1254: 6,-23 - node: color: '#D381C9FF' id: MiniTileSteelCornerNe decals: - 818: -32,-7 + 738: -32,-7 - node: color: '#D381C9FF' id: MiniTileSteelCornerNw decals: - 820: -31,-7 + 740: -31,-7 - node: color: '#D381C9FF' id: MiniTileSteelCornerSe decals: - 813: -25,-4 + 733: -25,-4 - node: color: '#D381C9FF' id: MiniTileSteelCornerSw decals: - 814: -29,-4 + 734: -29,-4 - node: color: '#D381C9FF' id: MiniTileSteelInnerNw decals: - 819: -30,-7 + 739: -30,-7 - node: color: '#D381C9FF' id: MiniTileSteelLineE decals: - 810: -25,-3 - 811: -25,-2 - 812: -25,-1 - 822: -32,-8 + 730: -25,-3 + 731: -25,-2 + 732: -25,-1 + 742: -32,-8 - node: color: '#D381C9FF' id: MiniTileSteelLineS decals: - 807: -28,-4 - 808: -27,-4 - 809: -26,-4 - 816: -32,-6 - 817: -31,-6 + 727: -28,-4 + 728: -27,-4 + 729: -26,-4 + 736: -32,-6 + 737: -31,-6 - node: color: '#D381C9FF' id: MiniTileSteelLineW decals: - 804: -29,-1 - 805: -29,-2 - 806: -29,-3 - 821: -31,-8 + 724: -29,-1 + 725: -29,-2 + 726: -29,-3 + 741: -31,-8 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNe decals: - 611: -24,7 + 563: -24,7 - node: color: '#EF7241FF' id: MiniTileWhiteCornerNe decals: - 685: -11,16 - 686: -9,14 + 637: -11,16 + 638: -9,14 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNw decals: - 610: -27,7 + 562: -27,7 - node: color: '#EF7241FF' id: MiniTileWhiteCornerNw decals: - 689: -14,16 + 641: -14,16 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSe decals: - 612: -24,5 + 564: -24,5 - node: color: '#D381C9FF' id: MiniTileWhiteCornerSe decals: - 858: -25,-8 + 778: -25,-8 - node: color: '#EF7241FF' id: MiniTileWhiteCornerSe decals: - 687: -9,13 + 639: -9,13 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSw decals: - 613: -27,5 + 565: -27,5 - node: color: '#D381C9FF' id: MiniTileWhiteCornerSw decals: - 859: -29,-8 + 779: -29,-8 - node: color: '#EF7241FF' id: MiniTileWhiteCornerSw decals: - 688: -14,13 + 640: -14,13 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerNe decals: - 1316: 9,-3 + 1208: 9,-3 - node: color: '#EF7241FF' id: MiniTileWhiteInnerNe decals: - 699: -11,14 + 651: -11,14 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerSe decals: - 1314: 13,1 - 1315: 9,-1 + 1206: 13,1 + 1207: 9,-1 - node: color: '#7C5C98FF' id: MiniTileWhiteInnerSw decals: - 1317: 16,1 + 1209: 16,1 - node: color: '#52B4E9FF' id: MiniTileWhiteLineE decals: - 602: -24,6 + 556: -24,6 - node: color: '#D381C9FF' id: MiniTileWhiteLineE decals: - 851: -25,-6 - 852: -25,-7 + 771: -25,-6 + 772: -25,-7 - node: color: '#EF7241FF' id: MiniTileWhiteLineE decals: - 694: -11,15 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 607: -26,7 - 608: -25,7 + 646: -11,15 - node: color: '#D381C9FF' id: MiniTileWhiteLineN decals: - 860: -21,-6 - 861: -22,-6 - 862: -23,-6 + 780: -21,-6 + 781: -22,-6 + 782: -23,-6 - node: color: '#EF7241FF' id: MiniTileWhiteLineN decals: - 697: -13,16 - 698: -12,16 - 700: -10,14 + 649: -13,16 + 650: -12,16 + 652: -10,14 - node: color: '#52B4E9FF' id: MiniTileWhiteLineS decals: - 603: -26,5 - 604: -26,5 - 605: -25,5 + 557: -26,5 + 558: -26,5 + 559: -25,5 - node: color: '#D381C9FF' id: MiniTileWhiteLineS decals: - 853: -26,-8 - 854: -27,-8 - 855: -28,-8 - 863: -23,-7 - 864: -22,-7 - 865: -21,-7 + 773: -26,-8 + 774: -27,-8 + 775: -28,-8 + 783: -23,-7 + 784: -22,-7 + 785: -21,-7 - node: color: '#EF7241FF' id: MiniTileWhiteLineS decals: - 690: -13,13 - 691: -12,13 - 692: -11,13 - 693: -10,13 + 642: -13,13 + 643: -12,13 + 644: -11,13 + 645: -10,13 - node: color: '#52B4E9FF' id: MiniTileWhiteLineW decals: - 606: -27,6 + 560: -27,6 - node: color: '#D381C9FF' id: MiniTileWhiteLineW decals: - 856: -29,-7 - 857: -29,-6 + 776: -29,-7 + 777: -29,-6 - node: color: '#EF7241FF' id: MiniTileWhiteLineW decals: - 695: -14,14 - 696: -14,15 + 647: -14,14 + 648: -14,15 - node: color: '#334E6DC8' id: MonoOverlay decals: - 1267: -8,-32 + 1159: -8,-32 - node: color: '#52B4E996' id: MonoOverlay decals: - 622: -11,10 - 623: -11,6 - 624: -11,5 - 701: -10,7 - 702: -9,7 - 703: -13,12 - 704: -10,12 - 705: -9,12 - 706: -15,15 - 1266: -4,-35 + 574: -11,10 + 575: -11,6 + 576: -11,5 + 653: -10,7 + 654: -9,7 + 655: -13,12 + 656: -10,12 + 657: -9,12 + 658: -15,15 + 1158: -4,-35 - node: color: '#52B4E9FF' id: MonoOverlay decals: - 609: -25,8 + 561: -25,8 - node: color: '#70707093' id: MonoOverlay decals: - 1269: -8,-34 + 1161: -8,-34 - node: color: '#A14F9793' id: MonoOverlay decals: - 800: -27,-3 - 801: -28,-2 - 802: -27,-1 - 803: -26,-2 - 815: -27,-5 + 720: -27,-3 + 721: -28,-2 + 722: -27,-1 + 723: -26,-2 + 735: -27,-5 - node: color: '#A4610696' id: MonoOverlay decals: - 1097: 5,-25 - 1098: 7,-27 - 1099: 9,-25 - 1100: 10,-25 - 1101: 12,-23 - 1102: 12,-22 - 1103: 7,-22 - 1104: 7,-21 - 1105: 7,-24 - 1108: 17,-22 - 1109: 17,-23 - 1271: -3,-35 + 989: 5,-25 + 990: 7,-27 + 991: 9,-25 + 992: 10,-25 + 993: 12,-23 + 994: 12,-22 + 995: 7,-22 + 996: 7,-21 + 997: 7,-24 + 1000: 17,-22 + 1001: 17,-23 + 1163: -3,-35 - node: color: '#A46106FF' id: MonoOverlay decals: - 1106: 20,-25 - 1107: 21,-25 + 998: 20,-25 + 999: 21,-25 - node: color: '#C78B1993' id: MonoOverlay decals: - 1268: -8,-33 + 1160: -8,-33 - node: color: '#D381C996' id: MonoOverlay decals: - 876: -13,-8 - 877: -12,-8 - 878: -11,-7 - 879: -11,-6 - 880: -12,-5 - 881: -13,-5 - 882: -17,-8 - 1265: -5,-35 + 796: -13,-8 + 797: -12,-8 + 798: -11,-7 + 799: -11,-6 + 800: -12,-5 + 801: -13,-5 + 802: -17,-8 + 1157: -5,-35 - node: color: '#D381C9FF' id: MonoOverlay decals: - 866: -24,-6 - 867: -24,-7 - 868: -20,-6 - 869: -20,-7 - 870: -14,-7 - 871: -14,-6 + 786: -24,-6 + 787: -24,-7 + 788: -20,-6 + 789: -20,-7 + 790: -14,-7 + 791: -14,-6 - node: color: '#EF663193' id: MonoOverlay decals: - 1307: 34,23 + 1199: 34,23 - node: color: '#EFB34196' id: MonoOverlay decals: - 954: 14,-8 - 955: 14,-7 - 956: 15,-6 - 957: 16,-6 - 958: 22,-10 - 959: 23,-10 - 960: 24,-8 - 961: 27,-10 - 962: 17,-11 - 963: 17,-12 - 964: 25,-13 - 965: 30,-12 - 966: 30,-11 - 1270: -2,-35 + 858: 14,-8 + 859: 14,-7 + 860: 15,-6 + 861: 16,-6 + 862: 22,-10 + 863: 23,-10 + 864: 24,-8 + 865: 27,-10 + 866: 17,-11 + 867: 17,-12 + 868: 25,-13 + 869: 30,-12 + 870: 30,-11 + 1162: -2,-35 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 325: 6,16 - 326: -4,31 + 321: 6,16 + 322: -4,31 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 475: 23,3 - 614: -7,7 - 615: -7,8 - 616: -7,9 - 617: -7,10 - 618: -7,11 - 619: -7,12 - 620: -7,13 - 621: -7,14 + 471: 23,3 + 566: -7,7 + 567: -7,8 + 568: -7,9 + 569: -7,10 + 570: -7,11 + 571: -7,12 + 572: -7,13 + 573: -7,14 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 260: 7,4 - 261: 7,5 - 262: 7,6 - 263: 7,7 - 264: 7,8 - 265: 7,9 - 266: 7,10 - 275: 7,11 + 256: 7,4 + 257: 7,5 + 258: 7,6 + 259: 7,7 + 260: 7,8 + 261: 7,9 + 262: 7,10 + 271: 7,11 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 20: 7,1 - 28: 7,-8 - 29: -4,-8 - 30: -3,-8 - 31: -2,-8 - 32: -1,-8 - 33: 0,-8 - 34: 1,-8 - 39: 2,-8 + 16: 7,1 + 24: 7,-8 + 25: -4,-8 + 26: -3,-8 + 27: -2,-8 + 28: -1,-8 + 29: 0,-8 + 30: 1,-8 + 35: 2,-8 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 1082: 5,-20 - 1083: 4,-20 - 1084: 3,-20 - 1124: 13,-21 - 1125: 13,-22 - 1126: 13,-24 - 1127: 13,-23 - 1128: 13,-25 - 1129: 13,-26 - 1130: 12,-26 - 1131: 11,-26 - 1132: 10,-26 - 1133: 9,-26 - 1134: 8,-26 + 974: 5,-20 + 975: 4,-20 + 976: 3,-20 + 1016: 13,-21 + 1017: 13,-22 + 1018: 13,-24 + 1019: 13,-23 + 1020: 13,-25 + 1021: 13,-26 + 1022: 12,-26 + 1023: 11,-26 + 1024: 10,-26 + 1025: 9,-26 + 1026: 8,-26 - node: color: '#B02E26FF' id: QuarterTileOverlayGreyscale decals: - 1232: 42,29 + 1124: 42,29 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 48: -10,-10 - 49: -10,-9 - 50: -10,-8 - 51: -10,-7 - 52: -10,-6 - 53: -9,-6 - 54: -8,-6 + 44: -10,-10 + 45: -10,-9 + 46: -10,-8 + 47: -10,-7 + 48: -10,-6 + 49: -9,-6 + 50: -8,-6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 461: 31,10 - 1379: 10,-5 - 1380: 11,-5 + 457: 31,10 + 1260: 10,-5 + 1261: 11,-5 - node: color: '#EF5C1F93' id: QuarterTileOverlayGreyscale decals: - 516: 34,21 + 512: 34,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 920: 12,-5 - 922: 18,-5 - 923: 18,-4 - 924: 19,-4 - 925: 20,-4 - 926: 21,-4 - 927: 22,-4 - 937: 18,-8 - 938: 18,-7 - 939: 18,-6 - 989: 28,-11 - 990: 27,-11 - 991: 26,-11 - 992: 25,-11 - 993: 24,-11 - 1018: 25,-8 - 1019: 25,-7 - 1020: 25,-6 - 1021: 25,-5 - 1022: 25,-4 + 824: 12,-5 + 826: 18,-5 + 827: 18,-4 + 828: 19,-4 + 829: 20,-4 + 830: 21,-4 + 831: 22,-4 + 841: 18,-8 + 842: 18,-7 + 843: 18,-6 + 881: 28,-11 + 882: 27,-11 + 883: 26,-11 + 884: 25,-11 + 885: 24,-11 + 910: 25,-8 + 911: 25,-7 + 912: 25,-6 + 913: 25,-5 + 914: 25,-4 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale decals: - 1221: 45,34 + 1113: 45,34 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale180 decals: - 1214: 43,30 - 1215: 43,31 - 1216: 43,32 - 1217: 44,32 - 1218: 45,32 - 1219: 46,32 + 1106: 43,30 + 1107: 43,31 + 1108: 43,32 + 1109: 44,32 + 1110: 45,32 + 1111: 46,32 - node: color: '#707070FF' id: QuarterTileOverlayGreyscale180 decals: - 55: -10,-10 - 61: -12,-11 + 51: -10,-10 + 57: -12,-11 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 276: -4,12 - 277: -3,13 - 282: -2,14 - 283: -1,14 + 272: -4,12 + 273: -3,13 + 278: -2,14 + 279: -1,14 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 41: -5,-7 - 42: -5,-6 - 43: -5,-5 - 44: -5,-4 - 45: -5,-3 - 46: -5,-2 - 47: -5,-1 - 287: -5,3 + 37: -5,-7 + 38: -5,-6 + 39: -5,-5 + 40: -5,-4 + 41: -5,-3 + 42: -5,-2 + 43: -5,-1 + 283: -5,3 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 424: 13,8 - 425: 14,8 - 426: 15,8 - 427: 16,8 - 428: 17,8 - 429: 18,8 - 430: 20,8 - 431: 19,8 - 432: 21,8 - 433: 22,8 - 434: 23,8 - 435: 24,8 - 436: 25,8 - 437: 26,8 - 438: 27,8 - 439: 28,8 - 440: 29,8 - 441: 30,8 - 442: 31,8 - 443: 32,8 - 444: 33,8 - 445: 33,9 - 446: 33,10 - 447: 33,11 - 448: 33,12 - 449: 33,13 - 450: 33,14 - 451: 33,15 - 452: 33,17 - 453: 33,16 - 503: 31,20 - 601: 12,8 - - node: - color: '#EF5C1F93' - id: QuarterTileOverlayGreyscale180 - decals: - 548: 30,25 + 420: 13,8 + 421: 14,8 + 422: 15,8 + 423: 16,8 + 424: 17,8 + 425: 18,8 + 426: 20,8 + 427: 19,8 + 428: 21,8 + 429: 22,8 + 430: 23,8 + 431: 24,8 + 432: 25,8 + 433: 26,8 + 434: 27,8 + 435: 28,8 + 436: 29,8 + 437: 30,8 + 438: 31,8 + 439: 32,8 + 440: 33,8 + 441: 33,9 + 442: 33,10 + 443: 33,11 + 444: 33,12 + 445: 33,13 + 446: 33,14 + 447: 33,15 + 448: 33,17 + 449: 33,16 + 499: 31,20 + 555: 12,8 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 928: 23,-5 - 929: 23,-6 - 930: 23,-7 - 931: 23,-8 - 932: 23,-9 - 933: 22,-9 - 934: 21,-9 - 935: 20,-9 - 936: 19,-9 - 983: 23,-12 - 984: 22,-12 - 985: 21,-12 - 986: 20,-12 - 987: 19,-12 - 1007: 14,-12 - 1023: 26,-9 - 1024: 27,-9 - 1025: 28,-9 - 1026: 29,-9 + 832: 23,-5 + 833: 23,-6 + 834: 23,-7 + 835: 23,-8 + 836: 23,-9 + 837: 22,-9 + 838: 21,-9 + 839: 20,-9 + 840: 19,-9 + 875: 23,-12 + 876: 22,-12 + 877: 21,-12 + 878: 20,-12 + 879: 19,-12 + 899: 14,-12 + 915: 26,-9 + 916: 27,-9 + 917: 28,-9 + 918: 29,-9 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale180 decals: - 1220: 46,33 + 1112: 46,33 - node: color: '#2BAF9D93' id: QuarterTileOverlayGreyscale270 decals: - 1361: 32,-12 - 1362: 31,-12 + 1242: 32,-12 + 1243: 31,-12 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 328: 0,27 - 329: 3,23 + 324: 0,27 + 325: 3,23 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1377: 10,-9 - 1378: 11,-9 + 1258: 10,-9 + 1259: 11,-9 - node: color: '#707070FF' id: QuarterTileOverlayGreyscale270 decals: - 56: -6,-10 + 52: -6,-10 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 278: 6,12 - 279: 5,13 - 280: 4,14 - 281: 3,14 + 274: 6,12 + 275: 5,13 + 276: 4,14 + 277: 3,14 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale270 decals: - 1224: 39,33 + 1116: 39,33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 19: 7,3 - 21: 7,-1 - 22: 7,-2 - 23: 7,-3 - 24: 7,-4 - 25: 7,-5 - 26: 7,-6 - 27: 7,-7 + 15: 7,3 + 17: 7,-1 + 18: 7,-2 + 19: 7,-3 + 20: 7,-4 + 21: 7,-5 + 22: 7,-6 + 23: 7,-7 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 1079: 5,-24 - 1080: 4,-24 - 1081: 3,-24 - 1110: 8,-28 - 1111: 9,-28 - 1142: 18,-22 - 1143: 18,-23 - 1144: 18,-24 - 1145: 19,-24 - 1146: 20,-24 - 1147: 21,-24 + 971: 5,-24 + 972: 4,-24 + 973: 3,-24 + 1002: 8,-28 + 1003: 9,-28 + 1034: 18,-22 + 1035: 18,-23 + 1036: 18,-24 + 1037: 19,-24 + 1038: 20,-24 + 1039: 21,-24 - node: color: '#B02E26FF' id: QuarterTileOverlayGreyscale270 decals: - 1208: 39,32 - 1209: 40,32 - 1210: 41,32 - 1211: 42,32 - 1212: 42,31 - 1213: 42,30 + 1100: 39,32 + 1101: 40,32 + 1102: 41,32 + 1103: 42,32 + 1104: 42,31 + 1105: 42,30 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 454: 31,17 - 455: 31,16 - 456: 31,15 - 457: 31,14 - 458: 31,13 - 459: 31,12 - 460: 31,11 - 504: 34,20 + 450: 31,17 + 451: 31,16 + 452: 31,15 + 453: 31,14 + 454: 31,13 + 455: 31,12 + 456: 31,11 + 500: 34,20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 921: 12,-9 - 979: 28,-12 - 980: 27,-12 - 981: 26,-12 - 982: 25,-12 - 988: 24,-12 - 1356: 31,-11 - 1357: 32,-11 + 825: 12,-9 + 871: 28,-12 + 872: 27,-12 + 873: 26,-12 + 874: 25,-12 + 880: 24,-12 + 1237: 31,-11 + 1238: 32,-11 - node: color: '#2BAF9D93' id: QuarterTileOverlayGreyscale90 decals: - 1355: 31,-11 - 1359: 32,-12 - 1360: 32,-11 + 1236: 31,-11 + 1240: 32,-12 + 1241: 32,-11 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 324: 2,16 - 327: -1,31 - 339: 1,25 + 320: 2,16 + 323: -1,31 + 335: 1,25 - node: color: '#3C44AAFF' id: QuarterTileOverlayGreyscale90 decals: - 1233: 43,29 + 1125: 43,29 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 474: 21,3 + 470: 21,3 - node: color: '#79150096' id: QuarterTileOverlayGreyscale90 decals: - 267: -5,4 - 268: -5,5 - 269: -5,6 - 270: -5,7 - 271: -5,8 - 272: -5,9 - 273: -5,10 - 274: -5,11 + 263: -5,4 + 264: -5,5 + 265: -5,6 + 266: -5,7 + 267: -5,8 + 268: -5,9 + 269: -5,10 + 270: -5,11 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale90 decals: - 1225: 40,34 + 1117: 40,34 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 35: 6,-8 - 36: 5,-8 - 38: 4,-8 - 40: -5,-8 - 286: -5,1 + 31: 6,-8 + 32: 5,-8 + 34: 4,-8 + 36: -5,-8 + 282: -5,1 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1112: 22,-26 - 1113: 21,-26 - 1114: 20,-26 - 1115: 19,-26 - 1116: 18,-26 - 1117: 16,-26 - 1118: 17,-26 - 1119: 16,-25 - 1120: 16,-24 - 1121: 16,-23 - 1122: 16,-22 - 1123: 16,-21 - 1137: 22,-21 - 1138: 21,-21 - 1139: 20,-21 - 1140: 19,-21 - 1141: 22,-22 - 1383: 22,-23 + 1004: 22,-26 + 1005: 21,-26 + 1006: 20,-26 + 1007: 19,-26 + 1008: 18,-26 + 1009: 16,-26 + 1010: 17,-26 + 1011: 16,-25 + 1012: 16,-24 + 1013: 16,-23 + 1014: 16,-22 + 1015: 16,-21 + 1029: 22,-21 + 1030: 21,-21 + 1031: 20,-21 + 1032: 19,-21 + 1033: 22,-22 + 1264: 22,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 777: -12,-2 + 697: -12,-2 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 375: 9,15 - 376: 9,14 - 377: 9,13 - 378: 9,12 - 405: 30,10 - 406: 29,10 - 407: 27,10 - 408: 28,10 - 409: 26,10 - 410: 24,10 - 411: 25,10 - 412: 23,10 - 413: 22,10 - 414: 21,10 - 415: 20,10 - 416: 19,10 - 417: 18,10 - 418: 17,10 - 419: 16,10 - 420: 15,10 - 421: 14,10 - 422: 13,10 - 423: 12,10 + 371: 9,15 + 372: 9,14 + 373: 9,13 + 374: 9,12 + 401: 30,10 + 402: 29,10 + 403: 27,10 + 404: 28,10 + 405: 26,10 + 406: 24,10 + 407: 25,10 + 408: 23,10 + 409: 22,10 + 410: 21,10 + 411: 20,10 + 412: 19,10 + 413: 18,10 + 414: 17,10 + 415: 16,10 + 416: 15,10 + 417: 14,10 + 418: 13,10 + 419: 12,10 - node: color: '#EF5C1F93' id: QuarterTileOverlayGreyscale90 decals: - 515: 31,21 + 511: 31,21 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 994: 23,-11 - 995: 22,-11 - 996: 21,-11 - 997: 20,-11 - 998: 19,-11 - 1358: 31,-12 + 886: 23,-11 + 887: 22,-11 + 888: 21,-11 + 889: 20,-11 + 890: 19,-11 + 1239: 31,-12 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Rust decals: - 1390: 16,22 - 1391: 15,20 - 1392: 12,20 - 1393: 17,20 - 1394: 14,21 + 1271: 16,22 + 1272: 15,20 + 1273: 12,20 + 1274: 17,20 + 1275: 14,21 - node: color: '#FFFFFFFF' id: StandClear decals: - 908: -17,-7 - 909: -8,-10 - 910: -8,-15 - 914: -27,-4 - 1064: 10,-27 - 1065: 14,-27 - 1308: 12,26 + 812: -17,-7 + 813: -8,-10 + 814: -8,-15 + 818: -27,-4 + 956: 10,-27 + 957: 14,-27 + 1200: 12,26 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 1166: -40,22 + 1058: -40,22 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale decals: - 1352: 31,-17 + 1233: 31,-17 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 289: -12,31 - 309: -15,31 - 315: 3,19 - 334: -4,32 - 335: -6,31 + 285: -12,31 + 305: -15,31 + 311: 3,19 + 330: -4,32 + 331: -6,31 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 476: 20,7 - 656: -18,21 + 472: 20,7 + 608: -18,21 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale decals: - 1148: 18,-21 + 1040: 18,-21 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 776: -13,-1 - 847: -19,-1 + 696: -13,-1 + 767: -19,-1 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 463: 11,10 - 465: 31,18 - 549: 36,13 - 577: 11,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 535: 27,28 - 542: 24,28 - 543: 24,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale - decals: - 589: 11,6 - 590: 14,6 - 591: 17,6 + 459: 11,10 + 461: 31,18 + 515: 36,13 + 543: 11,15 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 949: 15,-7 - 1000: 18,-11 - 1005: 11,-11 + 853: 15,-7 + 892: 18,-11 + 897: 11,-11 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1354: 33,-19 + 1235: 33,-19 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 291: -8,26 - 312: -14,30 - 313: 5,18 - 338: 5,21 + 287: -8,26 + 308: -14,30 + 309: 5,18 + 334: 5,21 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 479: 23,5 - 659: -13,18 + 475: 23,5 + 611: -13,18 - node: color: '#9D9D97FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1223: 40,33 + 1115: 40,33 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1075: 6,-24 - 1149: 22,-24 + 967: 6,-24 + 1041: 22,-24 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 773: -9,-4 - 850: -15,-7 + 693: -9,-4 + 770: -15,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 552: 38,10 - 579: 12,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 538: 30,24 - 539: 33,25 - 540: 25,24 - 541: 25,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 595: 12,5 - 596: 15,5 - 597: 18,5 + 518: 38,10 + 545: 12,12 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 916: 13,-9 - 951: 16,-9 - 1002: 29,-12 - 1003: 16,-12 - 1008: 14,-13 + 820: 13,-9 + 855: 16,-9 + 894: 29,-12 + 895: 16,-12 + 900: 14,-13 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1353: 31,-19 + 1234: 31,-19 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 290: -12,26 - 311: -15,30 - 316: 3,18 - 330: 3,21 - 336: 0,23 - 337: -6,27 + 286: -12,26 + 307: -15,30 + 312: 3,18 + 326: 3,21 + 332: 0,23 + 333: -6,27 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 478: 20,5 - 658: -18,18 + 474: 20,5 + 610: -18,18 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 772: -13,-4 - 849: -19,-7 + 692: -13,-4 + 769: -19,-7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 462: 11,8 - 551: 36,10 - 576: 11,12 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 537: 27,24 - 546: 24,24 - 547: 24,27 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 592: 11,5 - 593: 14,5 - 594: 17,5 + 458: 11,8 + 517: 36,10 + 542: 11,12 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 943: 18,-9 - 950: 15,-9 - 1001: 18,-12 - 1006: 11,-13 - 1017: 25,-9 + 847: 18,-9 + 854: 15,-9 + 893: 18,-12 + 898: 11,-13 + 909: 25,-9 - node: color: '#F9801DFF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1222: 45,33 + 1114: 45,33 - node: color: '#2BAF9D93' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1351: 33,-17 + 1232: 33,-17 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 288: -8,31 - 310: -14,31 - 314: 5,19 - 331: 5,25 - 332: 1,31 - 333: -1,32 + 284: -8,31 + 306: -14,31 + 310: 5,19 + 327: 5,25 + 328: 1,31 + 329: -1,32 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 477: 23,7 - 657: -13,21 + 473: 23,7 + 609: -13,21 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1074: 6,-20 + 966: 6,-20 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 774: -9,-2 - 775: -12,-1 - 848: -15,-1 + 694: -9,-2 + 695: -12,-1 + 768: -15,-1 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 464: 33,18 - 550: 38,13 - 578: 12,15 - - node: - color: '#EF5C1F93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 536: 33,28 - 544: 25,28 - 545: 25,25 - - node: - color: '#EF791B93' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 586: 12,6 - 587: 15,6 - 588: 18,6 + 460: 33,18 + 516: 38,13 + 544: 12,15 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 915: 13,-5 - 944: 23,-4 - 948: 16,-7 - 999: 29,-11 - 1004: 16,-11 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 904: -21,-18 + 819: 13,-5 + 848: 23,-4 + 852: 16,-7 + 891: 29,-11 + 896: 16,-11 - node: color: '#FFFFFFFF' id: WarnBox decals: - 129: -1,46 - 1199: -7,52 + 125: -1,46 + 1091: -7,52 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 134: -2,46 + 130: -2,46 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 5: -9,-15 - 133: -1,45 - 1320: -12,-52 + 129: -1,45 + 1212: -12,-52 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 209: -2,23 - 945: 17,-4 - 1305: -41,23 - 1381: 18,-1 + 205: -2,23 + 849: 17,-4 + 1197: -41,23 + 1262: 18,-1 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 786: -11,-1 + 706: -11,-1 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 81: -8,49 - 82: -9,50 - 135: -3,46 - 799: -29,-4 - 1165: -40,20 + 77: -8,49 + 78: -9,50 + 131: -3,46 + 719: -29,-4 + 1057: -40,20 + 1404: -10,-15 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6: -6,-15 - 79: -6,49 - 80: -5,50 - 198: -2,23 - 213: -4,24 - 798: -25,-4 + 5: -6,-15 + 75: -6,49 + 76: -5,50 + 194: -2,23 + 209: -4,24 + 718: -25,-4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 83: -9,54 - 84: -8,55 - 1072: 9,-28 + 79: -9,54 + 80: -8,55 + 964: 9,-28 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 85: -6,55 - 86: -5,54 - 210: -4,26 - 1073: 15,-28 + 81: -6,55 + 82: -5,54 + 206: -4,26 + 965: 15,-28 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 13: -10,-16 - 14: -10,-15 - 15: -10,-14 - 16: -10,-13 - 17: -10,-12 - 74: -9,53 - 75: -9,52 - 76: -9,51 - 136: -2,45 - 137: -2,44 - 207: -2,24 - 208: -2,25 - 795: -29,-3 - 796: -29,-2 - 797: -29,-1 - 1162: -40,21 - 1163: -40,22 - 1164: -40,23 - 1198: -6,52 - 1397: -4,-30 - 1398: -4,-29 + 11: -10,-14 + 12: -10,-13 + 13: -10,-12 + 70: -9,53 + 71: -9,52 + 72: -9,51 + 132: -2,45 + 133: -2,44 + 203: -2,24 + 204: -2,25 + 715: -29,-3 + 716: -29,-2 + 717: -29,-1 + 1054: -40,21 + 1055: -40,22 + 1056: -40,23 + 1090: -6,52 + 1278: -4,-30 + 1279: -4,-29 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 67: -13,-8 - 68: -12,-8 - 77: -7,55 - 130: -2,47 - 131: -1,47 - 204: -5,23 - 205: -4,23 - 206: -3,23 - 787: -10,-1 - 788: -9,-1 - 946: 16,-4 - 947: 15,-4 - 1068: 11,-28 - 1069: 13,-28 - 1070: 14,-28 - 1071: 12,-28 - 1136: 10,-28 - 1195: -7,51 - 1306: -42,23 - 1323: -17,-12 - 1324: -16,-12 - 1342: -18,-16 - 1343: -17,-16 - 1344: -16,-16 - 1345: -18,-12 - 1382: 17,-1 + 63: -13,-8 + 64: -12,-8 + 73: -7,55 + 126: -2,47 + 127: -1,47 + 200: -5,23 + 201: -4,23 + 202: -3,23 + 707: -10,-1 + 708: -9,-1 + 850: 16,-4 + 851: 15,-4 + 960: 11,-28 + 961: 13,-28 + 962: 14,-28 + 963: 12,-28 + 1028: 10,-28 + 1087: -7,51 + 1198: -42,23 + 1263: 17,-1 + 1391: -18,-16 + 1392: -17,-16 + 1393: -16,-16 + 1394: -18,-12 + 1395: -17,-12 + 1396: -16,-12 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3102,167 +3294,162 @@ entities: 2: -11,-14 3: -11,-15 4: -11,-16 - 7: -9,-16 - 8: -6,-13 - 9: -6,-12 - 10: -6,-14 - 71: -5,52 - 72: -5,51 - 73: -5,53 - 132: -1,44 - 199: -2,25 - 200: -2,24 - 211: -4,25 - 789: -25,-1 - 790: -25,-2 - 791: -25,-3 - 1196: -8,52 - 1321: -12,-53 - 1322: -12,-54 - 1395: -2,-30 - 1396: -2,-29 + 6: -6,-13 + 7: -6,-12 + 8: -6,-14 + 67: -5,52 + 68: -5,51 + 69: -5,53 + 128: -1,44 + 195: -2,25 + 196: -2,24 + 207: -4,25 + 709: -25,-1 + 710: -25,-2 + 711: -25,-3 + 1088: -8,52 + 1213: -12,-53 + 1214: -12,-54 + 1276: -2,-30 + 1277: -2,-29 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 11: -8,-15 - 12: -7,-15 - 69: -13,-8 - 70: -12,-8 - 78: -7,49 - 201: -5,23 - 202: -4,23 - 203: -3,23 - 212: -5,24 - 792: -28,-4 - 793: -27,-4 - 794: -26,-4 - 883: -17,-9 - 884: -16,-9 - 885: -18,-17 - 886: -17,-17 - 887: -16,-17 - 888: -19,-17 - 889: -20,-17 - 902: -21,-17 - 903: -15,-17 - 1197: -7,53 - 1325: -17,-12 - 1326: -16,-12 - 1339: -18,-9 - 1346: -18,-12 + 9: -8,-15 + 10: -7,-15 + 65: -13,-8 + 66: -12,-8 + 74: -7,49 + 197: -5,23 + 198: -4,23 + 199: -3,23 + 208: -5,24 + 712: -28,-4 + 713: -27,-4 + 714: -26,-4 + 803: -16,-9 + 1089: -7,53 + 1227: -18,-9 + 1397: -18,-16 + 1398: -17,-16 + 1399: -16,-16 + 1400: -18,-12 + 1401: -17,-12 + 1402: -16,-12 + 1403: -9,-15 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 1201: 41,31 + 1093: 41,31 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 1200: 44,31 + 1092: 44,31 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 257: -4,9 - 258: -1,8 - 259: 3,9 + 253: -4,9 + 254: -1,8 + 255: 3,9 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 254: 6,9 - 255: 3,8 - 256: -1,9 + 250: 6,9 + 251: 3,8 + 252: -1,9 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 251: -1,12 - 252: -4,8 - 253: 3,12 - 1172: -8,-27 + 247: -1,12 + 248: -4,8 + 249: 3,12 + 1064: -8,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 248: 6,8 - 249: -1,12 - 250: 3,12 - 1171: -6,-27 + 244: 6,8 + 245: -1,12 + 246: 3,12 + 1063: -6,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 243: -1,11 - 244: -1,10 - 245: -1,9 - 246: 3,10 - 247: 3,11 - 1203: 41,30 + 239: -1,11 + 240: -1,10 + 241: -1,9 + 242: 3,10 + 243: 3,11 + 1095: 41,30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 234: 0,8 - 235: 1,8 - 236: 2,8 - 237: -3,9 - 238: -2,9 - 239: 4,9 - 240: 5,9 - 766: 3,4 - 767: 4,4 - 1204: 40,31 - 1205: 39,31 - 1206: 45,31 - 1207: 46,31 + 230: 0,8 + 231: 1,8 + 232: 2,8 + 233: -3,9 + 234: -2,9 + 235: 4,9 + 236: 5,9 + 686: 3,4 + 687: 4,4 + 1096: 40,31 + 1097: 39,31 + 1098: 45,31 + 1099: 46,31 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 216: -3,8 - 217: -2,8 - 218: -1,8 - 219: 0,8 - 220: 1,8 - 221: 1,8 - 222: 2,8 - 223: 3,8 - 224: 4,8 - 225: 5,8 - 226: 5,8 - 227: 0,12 - 228: 1,12 - 229: 2,12 - 1170: -7,-27 + 212: -3,8 + 213: -2,8 + 214: -1,8 + 215: 0,8 + 216: 1,8 + 217: 1,8 + 218: 2,8 + 219: 3,8 + 220: 4,8 + 221: 5,8 + 222: 5,8 + 223: 0,12 + 224: 1,12 + 225: 2,12 + 1062: -7,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 230: 3,11 - 231: 3,11 - 232: 3,9 - 233: 3,10 - 241: -1,10 - 242: -1,11 - 1202: 44,30 + 226: 3,11 + 227: 3,11 + 228: 3,9 + 229: 3,10 + 237: -1,10 + 238: -1,11 + 1094: 44,30 - node: angle: 4.71238898038469 rad color: '#69150079' id: footprint decals: - 1385: 12.797138,20.095083 - 1386: 13.359638,19.751333 - 1387: 13.890888,20.079458 - 1388: 14.422138,19.766958 - 1389: 12.219013,19.751333 + 1266: 12.797138,20.095083 + 1267: 13.359638,19.751333 + 1268: 13.890888,20.079458 + 1269: 14.422138,19.766958 + 1270: 12.219013,19.751333 - node: color: '#691500FF' id: splatter decals: - 1384: 12.062763,20.798208 + 1265: 12.062763,20.798208 - type: GridAtmosphere version: 2 data: @@ -5868,14 +6055,11 @@ entities: pos: 23.5,-23.5 parent: 1 - type: DeviceLinkSink - links: - - 1752 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 1752: - DoorStatus: DoorBolt - - DoorStatus: Close - - DoorStatus: AutoClose - uid: 1717 components: - type: Transform @@ -5895,14 +6079,11 @@ entities: pos: 25.5,-25.5 parent: 1 - type: DeviceLinkSink - links: - - 1523 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 1523: - - DoorStatus: Close - DoorStatus: DoorBolt - - DoorStatus: AutoClose - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 3571 @@ -5911,24 +6092,48 @@ entities: rot: 3.141592653589793 rad pos: -35.5,-24.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3572: + - DoorStatus: DoorBolt - uid: 3572 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-22.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3571: + - DoorStatus: DoorBolt - uid: 3573 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,31.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3574: + - DoorStatus: DoorBolt - uid: 3574 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,30.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3573: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 3284 @@ -5936,28 +6141,60 @@ entities: - type: Transform pos: -17.5,29.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3286: + - DoorStatus: DoorBolt - uid: 3285 components: - type: Transform pos: -16.5,30.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3286: + - DoorStatus: DoorBolt - uid: 3286 components: - type: Transform pos: -17.5,32.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3284: + - DoorStatus: DoorBolt + 3285: + - DoorStatus: DoorBolt - uid: 3354 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-19.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3355: + - DoorStatus: DoorBolt - uid: 3355 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3354: + - DoorStatus: DoorBolt - uid: 3607 components: - type: Transform @@ -7315,19 +7552,19 @@ entities: - type: Transform pos: -4.4293957,-34.588463 parent: 1 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 1949 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,12.5 + pos: 48.5,12.5 parent: 1 - uid: 1950 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,5.5 + pos: 48.5,5.5 parent: 1 - uid: 1954 components: @@ -7342,19 +7579,19 @@ entities: - uid: 3001 components: - type: Transform - pos: 1.5,-34.5 + pos: 1.5,-35.5 parent: 1 - uid: 3063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,13.5 + pos: -44.5,11.5 parent: 1 - uid: 3064 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,11.5 + pos: -44.5,13.5 parent: 1 - uid: 3065 components: @@ -7368,55 +7605,59 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,3.5 parent: 1 - - uid: 3147 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - - uid: 3148 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1 - uid: 4816 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,22.5 + pos: 48.5,22.5 parent: 1 - uid: 7073 components: - type: Transform + rot: -1.5707963267948966 rad pos: -42.5,-10.5 parent: 1 - uid: 8324 components: - type: Transform + rot: 3.141592653589793 rad pos: 10.5,34.5 parent: 1 - - uid: 12494 + - uid: 10900 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,38.5 + pos: 33.5,38.5 parent: 1 - - uid: 12495 + - uid: 10901 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,38.5 + pos: 31.5,38.5 parent: 1 - - uid: 12496 + - uid: 10902 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,38.5 + pos: 25.5,38.5 parent: 1 - - uid: 12497 + - uid: 10903 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,38.5 + pos: 23.5,38.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 3147 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 3148 + components: + - type: Transform + pos: -3.5,2.5 parent: 1 - proto: AtmosFixBlockerMarker entities: @@ -7944,34 +8185,21 @@ entities: - type: Transform pos: 34.5,11.5 parent: 1 - - type: DeviceLinkSink - links: - - 5388 - - 5389 - uid: 3434 components: - type: Transform pos: -21.5,-9.5 parent: 1 - - type: DeviceLinkSink - links: - - 6338 - uid: 3435 components: - type: Transform pos: -21.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 6337 - uid: 3561 components: - type: Transform pos: -35.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 1978 - uid: 3795 components: - type: Transform @@ -7979,41 +8207,26 @@ entities: parent: 1 - type: DeviceLinkSink invokeCounter: 1 - links: - - 6068 - - 1357 - uid: 7432 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7436 - uid: 7433 components: - type: Transform pos: 10.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7436 - uid: 7434 components: - type: Transform pos: 14.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7437 - uid: 7435 components: - type: Transform pos: 14.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7437 - proto: BlastDoorOpen entities: - uid: 4064 @@ -8021,25 +8234,16 @@ entities: - type: Transform pos: 5.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - uid: 4065 components: - type: Transform pos: 4.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - uid: 4066 components: - type: Transform pos: 3.5,32.5 parent: 1 - - type: DeviceLinkSink - links: - - 4100 - proto: BlockGameArcade entities: - uid: 4945 @@ -23548,6 +23752,11 @@ entities: - type: Transform pos: -17.5,-32.5 parent: 1 + - uid: 5966 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 - uid: 7005 components: - type: Transform @@ -23790,6 +23999,11 @@ entities: - type: Transform pos: 26.5,-27.5 parent: 1 + - uid: 8256 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 - uid: 8937 components: - type: Transform @@ -24570,6 +24784,26 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,15.5 parent: 1 + - uid: 9284 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 9312 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 9313 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 9331 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 - uid: 9332 components: - type: Transform @@ -25008,6 +25242,26 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 1 + - uid: 9624 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 9658 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 9659 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 9661 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 - uid: 9741 components: - type: Transform @@ -25404,6 +25658,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-15.5 parent: 1 + - uid: 10130 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 10863 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 - uid: 12516 components: - type: Transform @@ -27629,7 +27893,7 @@ entities: - type: Transform pos: -7.419932,-28.49488 parent: 1 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 12524 components: @@ -28195,171 +28459,111 @@ entities: - type: Transform pos: 10.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1731 components: - type: Transform pos: 10.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1732 components: - type: Transform pos: 10.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1733 components: - type: Transform pos: 10.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1734 components: - type: Transform pos: 10.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 7429 - uid: 1735 components: - type: Transform pos: 14.5,-31.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1736 components: - type: Transform pos: 14.5,-30.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1737 components: - type: Transform pos: 14.5,-29.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1738 components: - type: Transform pos: 14.5,-28.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1739 components: - type: Transform pos: 14.5,-27.5 parent: 1 - - type: DeviceLinkSink - links: - - 7430 - uid: 1740 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 1741 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 1742 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 7431 - uid: 3563 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3564 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3565 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3566 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3567 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3568 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - uid: 3569 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - proto: CowToolboxFilled entities: - uid: 12285 @@ -28540,9 +28744,6 @@ entities: - type: Transform pos: 3.5,3.5 parent: 1 - - type: EntityStorage - open: True - removedMasks: 28 - type: Fixtures fixtures: fix1: @@ -28559,14 +28760,15 @@ entities: - HighImpassable - LowImpassable layer: + - TableLayer + - HighImpassable + - LowImpassable - BulletImpassable - Opaque density: 135 hard: True restitution: 0 friction: 0.4 - - type: PlaceableSurface - isPlaceable: True - proto: CrateNPCHamlet entities: - uid: 7180 @@ -32588,10 +32790,10 @@ entities: parent: 1 - proto: DrinkMilkCarton entities: - - uid: 6014 + - uid: 10875 components: - type: Transform - pos: 0.5749459,1.7185974 + pos: 1.6770757,3.695939 parent: 1 - proto: DrinkMugBlack entities: @@ -33416,12 +33618,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,0.5 parent: 1 - - uid: 9284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 1 - uid: 9285 components: - type: Transform @@ -33548,6 +33744,12 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 1 + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,0.5 + parent: 1 - uid: 11600 components: - type: Transform @@ -36128,18 +36330,17 @@ entities: parent: 1 - proto: FoodCartHot entities: - - uid: 1795 + - uid: 6017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: 0.5,1.5 parent: 1 - proto: FoodContainerEgg entities: - - uid: 6015 + - uid: 6016 components: - type: Transform - pos: 0.6686959,0.7498474 + pos: 2.6014228,3.2195196 parent: 1 - proto: FoodDonutJellySlugcat entities: @@ -38788,18 +38989,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10130 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 10131 components: - type: Transform @@ -56133,9 +56322,6 @@ entities: - type: Transform pos: -20.5,-13.5 parent: 1 - - type: DeviceLinkSink - links: - - 6123 - proto: MachineCentrifuge entities: - uid: 1891 @@ -59274,6 +59460,12 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 5962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 1 - uid: 5995 components: - type: Transform @@ -59282,6 +59474,17 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6014 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 6015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 1 - uid: 6406 components: - type: Transform @@ -59384,13 +59587,6 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6747 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6748 components: - type: Transform @@ -59538,10 +59734,9 @@ entities: - uid: 7208 components: - type: Transform - pos: 21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 8.5,17.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7209 components: - type: Transform @@ -60092,6 +60287,11 @@ entities: parent: 1 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10890 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 - uid: 11929 components: - type: Transform @@ -62282,17 +62482,17 @@ entities: parent: 1 - proto: ReagentContainerFlour entities: - - uid: 6016 + - uid: 10877 components: - type: Transform - pos: 0.46557093,1.1092224 + pos: 2.3558922,3.6381907 parent: 1 - proto: ReagentContainerSugar entities: - - uid: 6017 + - uid: 10876 components: - type: Transform - pos: 0.6191431,1.0935974 + pos: 2.110363,3.652628 parent: 1 - proto: Recycler entities: @@ -62302,9 +62502,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 9199 - proto: ReinforcedPlasmaWindow entities: - uid: 521 @@ -64389,6 +64586,74 @@ entities: - type: Transform pos: 16.498451,27.468857 parent: 1 +- proto: Screen + entities: + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,11.5 + parent: 1 + - uid: 5957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 1 + - uid: 10878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,0.5 + parent: 1 + - uid: 10882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 10883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + - uid: 10884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 1 + - uid: 10885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 1 + - uid: 10886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 1 + - uid: 10887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-24.5 + parent: 1 + - uid: 10888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 1 + - uid: 10889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,4.5 + parent: 1 - proto: SecurityTechFab entities: - uid: 5417 @@ -64671,49 +64936,31 @@ entities: - type: Transform pos: -8.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3432 components: - type: Transform pos: -7.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3433 components: - type: Transform pos: -6.5,-10.5 parent: 1 - - type: DeviceLinkSink - links: - - 1799 - uid: 3436 components: - type: Transform pos: -29.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 9264 - uid: 5459 components: - type: Transform pos: 14.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 7670 - uid: 5460 components: - type: Transform pos: 15.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 7670 - proto: ShuttersNormalOpen entities: - uid: 1796 @@ -64721,97 +64968,61 @@ entities: - type: Transform pos: 14.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 1797 components: - type: Transform pos: 15.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 1798 components: - type: Transform pos: 17.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 1824 components: - type: Transform pos: 11.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 1847 components: - type: Transform pos: 12.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 1866 components: - type: Transform pos: 18.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 1936 components: - type: Transform pos: -21.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1937 components: - type: Transform pos: -20.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1938 components: - type: Transform pos: -18.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1939 components: - type: Transform pos: -17.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1940 components: - type: Transform pos: -15.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 1941 components: - type: Transform pos: -14.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 3618 components: - type: Transform @@ -64837,89 +65048,56 @@ entities: - type: Transform pos: -2.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5068 components: - type: Transform pos: -1.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5069 components: - type: Transform pos: -0.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5070 components: - type: Transform pos: 1.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 5450 components: - type: Transform pos: 11.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5447 - uid: 5451 components: - type: Transform pos: 14.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5448 - uid: 5452 components: - type: Transform pos: 17.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 5449 - uid: 5683 components: - type: Transform pos: 18.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5684 components: - type: Transform pos: 19.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5685 components: - type: Transform pos: 20.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5686 components: - type: Transform pos: 16.5,-12.5 parent: 1 - - type: DeviceLinkSink - links: - - 5682 - uid: 5687 components: - type: Transform @@ -64930,203 +65108,128 @@ entities: - type: Transform pos: -12.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 5902 components: - type: Transform pos: -11.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 6131 components: - type: Transform pos: -9.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 6142 components: - type: Transform pos: -8.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 7183 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 7438 components: - type: Transform pos: 5.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 7439 - uid: 7485 components: - type: Transform pos: 10.5,15.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 7660 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 5883 - uid: 11721 components: - type: Transform pos: -1.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11722 components: - type: Transform pos: -0.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11723 components: - type: Transform pos: 0.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11724 components: - type: Transform pos: 1.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11725 components: - type: Transform pos: 2.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11726 components: - type: Transform pos: 3.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11727 components: - type: Transform pos: 4.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11730 components: - type: Transform pos: -3.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11731 components: - type: Transform pos: -3.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11732 components: - type: Transform pos: 6.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11733 components: - type: Transform pos: 6.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 12444 components: - type: Transform pos: 10.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12445 components: - type: Transform pos: 10.5,10.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12446 components: - type: Transform pos: 10.5,9.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12447 components: - type: Transform pos: 10.5,8.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12448 components: - type: Transform pos: 13.5,12.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12449 components: - type: Transform pos: 13.5,15.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - proto: ShuttersWindowOpen entities: - uid: 5071 @@ -65134,41 +65237,26 @@ entities: - type: Transform pos: 0.5,18.5 parent: 1 - - type: DeviceLinkSink - links: - - 5072 - uid: 11728 components: - type: Transform pos: -2.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 11729 components: - type: Transform pos: 5.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 11713 - uid: 12450 components: - type: Transform pos: 13.5,14.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - uid: 12451 components: - type: Transform pos: 13.5,13.5 parent: 1 - - type: DeviceLinkSink - links: - - 7484 - proto: SignAi entities: - uid: 3006 @@ -65904,13 +65992,6 @@ entities: - type: Transform pos: -26.5,-26.5 parent: 1 -- proto: SignDrones - entities: - - uid: 9653 - components: - - type: Transform - pos: 10.5,27.5 - parent: 1 - proto: SignEscapePods entities: - uid: 25 @@ -65972,6 +66053,13 @@ entities: rot: 3.141592653589793 rad pos: 16.5,0.5 parent: 1 +- proto: SignMaterials + entities: + - uid: 9653 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1 - proto: SignMedical entities: - uid: 5301 @@ -68635,12 +68723,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 5957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - uid: 5959 components: - type: Transform @@ -68653,12 +68735,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,1.5 parent: 1 - - uid: 5966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - uid: 5992 components: - type: Transform @@ -68893,6 +68969,16 @@ entities: - type: Transform pos: -9.5,-28.5 parent: 1 + - uid: 8232 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 8235 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 - uid: 8236 components: - type: Transform @@ -69194,6 +69280,11 @@ entities: - type: Transform pos: -28.5,12.5 parent: 1 + - uid: 10864 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 - uid: 11797 components: - type: Transform @@ -70440,10 +70531,10 @@ entities: parent: 1 - proto: VendingMachineChefvend entities: - - uid: 5962 + - uid: 6747 components: - type: Transform - pos: 1.5,3.5 + pos: 0.5,0.5 parent: 1 - proto: VendingMachineChemDrobe entities: @@ -70502,7 +70593,7 @@ entities: - uid: 5964 components: - type: Transform - pos: 2.5,3.5 + pos: 1.5,0.5 parent: 1 - proto: VendingMachineEngiDrobe entities: @@ -80180,25 +80271,16 @@ entities: - type: Transform pos: 12.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12485 - uid: 5536 components: - type: Transform pos: 15.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12486 - uid: 5537 components: - type: Transform pos: 18.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 12487 - proto: WindoorServiceLocked entities: - uid: 3375 diff --git a/Resources/Maps/corvax_avrit.yml b/Resources/Maps/corvax_avrite.yml similarity index 99% rename from Resources/Maps/corvax_avrit.yml rename to Resources/Maps/corvax_avrite.yml index 61713a45d68..bc69f588c16 100644 --- a/Resources/Maps/corvax_avrit.yml +++ b/Resources/Maps/corvax_avrite.yml @@ -113,7 +113,9 @@ tilemap: 54: FloorWhitePavement 23: FloorWhitePavementVertical 125: FloorWood + 114: FloorWoodChess 4: FloorWoodLarge + 117: FloorWoodParquet 5: FloorWoodTile 128: Lattice 129: Plating @@ -186,7 +188,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: MAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAABGwAAAAABgQAAAAAAgQAAAAAAGwAAAAAFgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAADGwAAAAAGgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADDwAAAAAADwAAAAAADwAAAAADgQAAAAAADAAAAAACDwAAAAADYAAAAAAAOgAAAAAADwAAAAAAOgAAAAAADwAAAAAAOgAAAAAADwAAAAADOgAAAAAADwAAAAAAOgAAAAAADwAAAAABDwAAAAADDwAAAAAAgQAAAAAADAAAAAADDwAAAAACYAAAAAACOgAAAAAADwAAAAADOgAAAAAADwAAAAADOgAAAAAADwAAAAABOgAAAAAADwAAAAACOgAAAAAADwAAAAADDwAAAAAADwAAAAACgQAAAAAAKAAAAAADDwAAAAADYAAAAAACOgAAAAAADwAAAAAAOgAAAAAADwAAAAAAOgAAAAAADwAAAAAAOgAAAAAADwAAAAACOgAAAAAAYAAAAAACYAAAAAABYAAAAAADgQAAAAAAKAAAAAACYAAAAAABYAAAAAACOgAAAAAADwAAAAABOgAAAAAADwAAAAACOgAAAAAADwAAAAADOgAAAAAADwAAAAACOgAAAAAAYAAAAAADYAAAAAAAYAAAAAADYAAAAAACKAAAAAABDwAAAAAAYAAAAAABOgAAAAAADwAAAAACOgAAAAAADwAAAAACOgAAAAAADwAAAAACOgAAAAAADwAAAAADOgAAAAAAYAAAAAACYAAAAAACYAAAAAADgQAAAAAAKAAAAAACDwAAAAAAYAAAAAAAOgAAAAAADwAAAAACOgAAAAAADwAAAAABOgAAAAAADwAAAAAAOgAAAAAADwAAAAABOgAAAAAADwAAAAADDwAAAAAADwAAAAACgQAAAAAAKAAAAAADDwAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADDwAAAAADDwAAAAADDwAAAAAAgQAAAAAADAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAYAAAAAAAYAAAAAAADwAAAAADDwAAAAACDwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAA + tiles: MAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAACMAAAAAACMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAACMAAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGwAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAGwAAAAABGwAAAAABgQAAAAAAgQAAAAAAGwAAAAAFgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAADGwAAAAAGgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAABIAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAADDwAAAAAADwAAAAAADwAAAAADgQAAAAAADAAAAAACIAAAAAAAYAAAAAAAOgAAAAAADwAAAAAAIQAAAAAADwAAAAAAIQAAAAAADwAAAAADIQAAAAAADwAAAAAAOgAAAAAADwAAAAABDwAAAAADDwAAAAAAgQAAAAAADAAAAAADIAAAAAAAYAAAAAACOgAAAAAADwAAAAADIQAAAAAADwAAAAADIQAAAAAADwAAAAABIQAAAAAADwAAAAACOgAAAAAADwAAAAADDwAAAAAADwAAAAACgQAAAAAAKAAAAAADIAAAAAAAYAAAAAACOgAAAAAADwAAAAAAIQAAAAAADwAAAAAAIQAAAAAADwAAAAAAIQAAAAAADwAAAAACOgAAAAAAYAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAKAAAAAACIAAAAAAAYAAAAAACOgAAAAAADwAAAAABIQAAAAAADwAAAAACIQAAAAAADwAAAAADIQAAAAAADwAAAAACOgAAAAAAYAAAAAAAIAAAAAAAYAAAAAAAYAAAAAACKAAAAAABIAAAAAAAYAAAAAABOgAAAAAADwAAAAACIQAAAAAADwAAAAACIQAAAAAADwAAAAACIQAAAAAADwAAAAADOgAAAAAAYAAAAAAAIAAAAAAAYAAAAAAAgQAAAAAAKAAAAAACIAAAAAAAYAAAAAAAOgAAAAAADwAAAAACIQAAAAAADwAAAAABIQAAAAAADwAAAAAAIQAAAAAADwAAAAABOgAAAAAADwAAAAADDwAAAAAADwAAAAACgQAAAAAAKAAAAAADIAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABYAAAAAABYAAAAAADDwAAAAADDwAAAAADDwAAAAAAgQAAAAAADAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIAAAAAAAIAAAAAAADwAAAAADDwAAAAACDwAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAbwAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAA version: 6 1,-1: ind: 1,-1 @@ -234,7 +236,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAADFwAAAAACFwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAMAAAAAABYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAABFwAAAAAAFwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAACFwAAAAABFwAAAAADFwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAFwAAAAACFwAAAAACFwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAABMAAAAAABgQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAMAAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAABfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAABgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAADfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAADgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAMAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAADfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAADMAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAMAAAAAAAMAAAAAABYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAACgAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAADfQAAAAABfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAABfQAAAAAAGQAAAAAAMAAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAABfQAAAAAAfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACfQAAAAADfQAAAAAB + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAgQAAAAAADAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAADFwAAAAACFwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAMAAAAAABYwAAAAAAMAAAAAADYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAABFwAAAAAAFwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAACFwAAAAABFwAAAAADFwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAACYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAFwAAAAACFwAAAAACFwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAABMAAAAAABgQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAMAAAAAADfQAAAAADfQAAAAAAfQAAAAACfQAAAAABfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAABgQAAAAAAYwAAAAAAMAAAAAACYwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAABfQAAAAADfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAADgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAMAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAADfQAAAAADGAAAAAAAgQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAADMAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAADYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAMAAAAAABMAAAAAAAMAAAAAAAMAAAAAABYwAAAAAAYwAAAAAAMAAAAAAAMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAMAAAAAADMAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAACgAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABAAAAAADfQAAAAABLQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAAAfQAAAAAAGQAAAAAAMAAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAABfQAAAAAALQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAB version: 6 -1,2: ind: -1,2 @@ -342,7 +344,7 @@ entities: version: 6 0,-4: ind: 0,-4 - tiles: fQAAAAABfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAgQAAAAAABgAAAAADBgAAAAADBgAAAAADMAAAAAAAWQAAAAABWQAAAAAAWQAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWQAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAcwAAAAABcwAAAAADcwAAAAADMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABgQAAAAAAcwAAAAABcwAAAAADcwAAAAACMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAcwAAAAADdAAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAMAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAcwAAAAADdAAAAAACcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAARwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADgQAAAAAAcwAAAAACdAAAAAADcwAAAAACOwAAAAAALQAAAAADLQAAAAADOwAAAAAAcwAAAAADOwAAAAAALQAAAAACLQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABAwAAAAABcwAAAAADgQAAAAAAcwAAAAACcwAAAAABcwAAAAABMAAAAAACGAAAAAAAGAAAAAAAMAAAAAADdAAAAAAAdAAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACAwAAAAACcwAAAAACgQAAAAAAcwAAAAACcwAAAAAAcwAAAAADMAAAAAACGAAAAAAAGAAAAAAAMAAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAADAwAAAAADcwAAAAABgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACMAAAAAABGAAAAAAAGAAAAAAAMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAAAdAAAAAACcwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGgAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAACdAAAAAAAcwAAAAABgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGgAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAADdAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAcwAAAAADdAAAAAAAcwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAA + tiles: fQAAAAABfQAAAAACfQAAAAAAfQAAAAABgQAAAAAAcwAAAAACcwAAAAADcwAAAAAAgQAAAAAABgAAAAADBgAAAAADBgAAAAADMAAAAAAAWQAAAAABWQAAAAAAWQAAAAACcwAAAAAAcwAAAAAAcwAAAAABcwAAAAABgQAAAAAAcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAWQAAAAADcwAAAAADcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAACcwAAAAACcwAAAAADcwAAAAAAgQAAAAAAcwAAAAADcwAAAAABcwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAcwAAAAABcwAAAAABcwAAAAADgQAAAAAAcwAAAAADdAAAAAAAcwAAAAACgQAAAAAAcwAAAAADcwAAAAABcwAAAAAAMAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAcwAAAAADcwAAAAAAcwAAAAACcwAAAAACgQAAAAAAcwAAAAADdAAAAAACcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAARwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAADgQAAAAAAcwAAAAACdAAAAAADcwAAAAACOwAAAAAALQAAAAADLQAAAAADOwAAAAAAcwAAAAADOwAAAAAALQAAAAACLQAAAAAAcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAACcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAABAwAAAAABcwAAAAADgQAAAAAAcwAAAAACcwAAAAABcwAAAAABMAAAAAACGAAAAAAAGAAAAAAAMAAAAAADdAAAAAAAdAAAAAADcwAAAAAAcwAAAAAAcwAAAAACcwAAAAACAwAAAAACcwAAAAACgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAACGAAAAAAAGAAAAAAAMAAAAAACcwAAAAADcwAAAAACcwAAAAABcwAAAAACcwAAAAACcwAAAAADAwAAAAADcwAAAAABgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAMAAAAAABGAAAAAAAGAAAAAAAMAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAAAdAAAAAACcwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGgAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAACdAAAAAAAcwAAAAABgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGgAAAAACGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAcwAAAAADdAAAAAAAcwAAAAABgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAcwAAAAADdAAAAAAAcwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAA version: 6 -7,-1: ind: -7,-1 @@ -378,11 +380,11 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: GQAAAAAAMAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAACfQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABfQAAAAABfQAAAAADGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAACfQAAAAACBAAAAAACBAAAAAACLQAAAAADLQAAAAADBAAAAAACBAAAAAADfQAAAAABfQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAfQAAAAADBAAAAAAABAAAAAADLQAAAAABLQAAAAACBAAAAAAABAAAAAADfQAAAAADfQAAAAAAGQAAAAAAMAAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAfQAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADfQAAAAABfQAAAAABGQAAAAAAMAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGgAAAAACfQAAAAABfQAAAAADfQAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAAAfQAAAAADfQAAAAAAGQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAABfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABBAAAAAABBAAAAAACBAAAAAABGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAARgAAAAAAYAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAGQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACMAAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAANgAAAAADNgAAAAADNgAAAAABNgAAAAABNgAAAAADYAAAAAAAYAAAAAABYAAAAAACMAAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAABBQAAAAACNgAAAAACNgAAAAACNgAAAAABNgAAAAAANgAAAAAANgAAAAADMAAAAAACYAAAAAAAMAAAAAACYAAAAAABgQAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABNgAAAAACNgAAAAAANgAAAAACNgAAAAAANgAAAAAANgAAAAAAcwAAAAAAYAAAAAAAMAAAAAABYAAAAAABMAAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAAANgAAAAADNgAAAAADcwAAAAADYAAAAAACMAAAAAABYAAAAAADMAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAANgAAAAADNgAAAAACNgAAAAADNgAAAAABNgAAAAADNgAAAAAAMAAAAAADYAAAAAAAYAAAAAACYAAAAAAAMAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAANgAAAAACgQAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAANwAAAAACMAAAAAABDAAAAAABDAAAAAADKwAAAAACDAAAAAAAMAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAABMAAAAAADDAAAAAADDAAAAAABKwAAAAADDAAAAAABMAAAAAACYAAAAAABMAAAAAAAYAAAAAAAIgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAABgQAAAAAA + tiles: GQAAAAAAMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAAALQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAADGQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAACLQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAGQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAfQAAAAADLQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAGQAAAAAAMAAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAAAfQAAAAABLQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAGQAAAAAAMAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAGgAAAAACfQAAAAABLQAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfQAAAAAAMAAAAAAAMAAAAAAAGQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAABAAAAAABfQAAAAAALQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAABBAAAAAABBAAAAAACBAAAAAABGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAARgAAAAAAYAAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAGQAAAAAAgQAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACMAAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAADgQAAAAAAgQAAAAAANgAAAAADNgAAAAADNgAAAAABNgAAAAABNgAAAAADYAAAAAAAYAAAAAABYAAAAAACMAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAADMAAAAAACYAAAAAAAMAAAAAACYAAAAAABgQAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAYAAAAAAAMAAAAAABYAAAAAABMAAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAADYAAAAAACMAAAAAABYAAAAAADMAAAAAABYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAMAAAAAADYAAAAAAAYAAAAAACYAAAAAAAMAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAANgAAAAACgQAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAADgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAANwAAAAACMAAAAAABDAAAAAABDAAAAAADKwAAAAACDAAAAAAAMAAAAAADYAAAAAADYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANwAAAAABMAAAAAADDAAAAAADDAAAAAABKwAAAAADDAAAAAABMAAAAAACYAAAAAABMAAAAAAAYAAAAAAAIgAAAAAAIgAAAAADIgAAAAADIgAAAAACIgAAAAABgQAAAAAA version: 6 -4,2: ind: -4,2 - tiles: bwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAVQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAAGfQAAAAABgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAAEHwAAAAAFBQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAACfQAAAAACgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAACHwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAABfQAAAAADgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAAgAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAADZAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAABCgAAAAADNgAAAAADNgAAAAAANgAAAAADNgAAAAADZQAAAAAAZQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAABCgAAAAAANgAAAAACNgAAAAABNgAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAANgAAAAABNgAAAAABNgAAAAABNgAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAANwAAAAAANwAAAAACNwAAAAABNwAAAAAANwAAAAACgQAAAAAAgQAAAAAANwAAAAADgQAAAAAANgAAAAADbwAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADNwAAAAACNwAAAAACNwAAAAACNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAANwAAAAAANwAAAAABNwAAAAABNwAAAAAANwAAAAADNwAAAAABNwAAAAADNwAAAAAANwAAAAABNwAAAAAB + tiles: bwAAAAAAZwAAAAAAbwAAAAAAZwAAAAAAbwAAAAAAgQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAVQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAAGfQAAAAABgQAAAAAAbwAAAAAAZwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAAEHwAAAAAFBQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABfQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAACfQAAAAACgQAAAAAAZwAAAAAAbwAAAAAAbwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAACHwAAAAABgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHwAAAAABfQAAAAADgQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAgQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAABcwAAAAACcwAAAAAAAgAAAAAANgAAAAADNgAAAAABNgAAAAADNgAAAAADZAAAAAAAgQAAAAAAgQAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAABCgAAAAADcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAZQAAAAAAZQAAAAAAZwAAAAAAZwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAACcwAAAAACcwAAAAACcwAAAAABCgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAgQAAAAAANgAAAAABNgAAAAABNgAAAAABNgAAAAACgQAAAAAAYAAAAAABYAAAAAADYAAAAAABYAAAAAAAgQAAAAAANwAAAAAANwAAAAACNwAAAAABNwAAAAAANwAAAAACgQAAAAAAgQAAAAAANwAAAAADgQAAAAAANgAAAAADbwAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADNwAAAAACNwAAAAACNwAAAAACNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACgQAAAAAANwAAAAAANwAAAAABNwAAAAABNwAAAAAANwAAAAADNwAAAAABNwAAAAADNwAAAAAANwAAAAABNwAAAAAB version: 6 5,-3: ind: 5,-3 @@ -450,7 +452,7 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: fQAAAAACBAAAAAAABAAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAFQAAAAADFQAAAAACFQAAAAACFQAAAAABFgAAAAACFgAAAAABFgAAAAACfQAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAFQAAAAAAFQAAAAABFQAAAAADFQAAAAADFgAAAAAAFgAAAAADFgAAAAABfQAAAAADfQAAAAADfQAAAAACfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADFQAAAAAAFgAAAAADFgAAAAACFgAAAAADfQAAAAACfQAAAAADfQAAAAABfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAADfQAAAAABgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAABAAAAAABBAAAAAAAfQAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAABQAAAAADfQAAAAACBQAAAAABfQAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMwAAAAABgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAABgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADMwAAAAADMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAMwAAAAADMwAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAA + tiles: fQAAAAACBAAAAAAABAAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAABYwAAAAAAgQAAAAAAFQAAAAADFQAAAAACFQAAAAACFQAAAAABFgAAAAACFgAAAAABFgAAAAACMAAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAFQAAAAAAFQAAAAABFQAAAAADFQAAAAADFgAAAAAAFgAAAAADFgAAAAABfQAAAAADfQAAAAADfQAAAAACfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAADFQAAAAAAFgAAAAADFgAAAAACFgAAAAADcgAAAAAAfQAAAAADfQAAAAABfQAAAAABgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAgQAAAAAAYwAAAAAAMAAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAABAAAAAABBAAAAAAAdQAAAAAABAAAAAACgQAAAAAAYwAAAAAAMAAAAAADYwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAfQAAAAAAfQAAAAACfQAAAAADfQAAAAADgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAcgAAAAAAfQAAAAACcgAAAAAAfQAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMwAAAAAAgQAAAAAAMwAAAAABgQAAAAAAgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAACgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAAAfQAAAAABMwAAAAABMwAAAAADMwAAAAABMwAAAAABgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAADfQAAAAADfQAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAADgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAADMwAAAAADMwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAMwAAAAADMwAAAAACfQAAAAADfQAAAAACfQAAAAADfQAAAAACgQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAfQAAAAADfQAAAAABgQAAAAAAfQAAAAAAfQAAAAACfQAAAAAA version: 6 1,2: ind: 1,2 @@ -554,7 +556,7 @@ entities: version: 6 -7,2: ind: -7,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAAgQAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAgQAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAABLQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAADMAAAAAAALQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAAAMAAAAAABMAAAAAAALQAAAAADgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAACAQAAAAAAAQAAAAAAMAAAAAAAMAAAAAADLQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAABAQAAAAAAAQAAAAAAMAAAAAABMAAAAAAALQAAAAADgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAACAQAAAAAAAQAAAAAAMAAAAAADMAAAAAADLQAAAAADgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAADAQAAAAAAAQAAAAAAMAAAAAACMAAAAAADLQAAAAADgQAAAAAAgAAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAADwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAADwAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAADwAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAADwAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA version: 6 -6,2: ind: -6,2 @@ -562,7 +564,7 @@ entities: version: 6 -7,3: ind: -7,3 - tiles: AAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAMAAAAAADMAAAAAABLQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAADMAAAAAACLQAAAAABgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAACMAAAAAABMAAAAAADMAAAAAADMAAAAAABLQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAACMAAAAAABMAAAAAADMAAAAAADMAAAAAADLQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAABAQAAAAAAAQAAAAAAMAAAAAACMAAAAAACLQAAAAADgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAACAQAAAAAAAQAAAAAAMAAAAAACMAAAAAABLQAAAAACYAAAAAAAYAAAAAABLQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAABgQAAAAAALQAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAMAAAAAABMAAAAAADLQAAAAAAYAAAAAADYAAAAAACLQAAAAADAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAACAQAAAAAAAQAAAAAAMAAAAAABMAAAAAACLQAAAAAAYAAAAAACYAAAAAAALQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAMAAAAAADMAAAAAADLQAAAAACgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAABMAAAAAADMAAAAAABLQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAADLQAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAABMAAAAAACMAAAAAACMAAAAAADMAAAAAABLQAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAADAQAAAAAAAQAAAAAAMAAAAAABMAAAAAABLQAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAABAQAAAAAAAQAAAAAAMAAAAAAAMAAAAAACLQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAACgQAAAAAALQAAAAAAMAAAAAAAMAAAAAACAQAAAAAAAQAAAAAAMAAAAAADMAAAAAABLQAAAAABgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAAQAAAAAAMAAAAAABMAAAAAAALQAAAAADgQAAAAAAgAAAAAAAgQAAAAAA + tiles: AAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAYAAAAAAAYAAAAAABLQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAABgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAYAAAAAADYAAAAAACLQAAAAADAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAYAAAAAACYAAAAAAALQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAMAAAAAAAMAAAAAACgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAA version: 6 -6,4: ind: -6,4 @@ -570,11 +572,11 @@ entities: version: 6 -7,4: ind: -7,4 - tiles: AAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAALQAAAAAAMAAAAAAAMAAAAAABAQAAAAAAAQAAAAAAMAAAAAACMAAAAAABLQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAACMAAAAAAAMAAAAAADMAAAAAADMAAAAAACLQAAAAACgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAAMAAAAAAAMAAAAAABMAAAAAACMAAAAAAAMAAAAAADMAAAAAACLQAAAAACgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAQAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAAALQAAAAACgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAAgQAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAgQAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAACgAAAAAACgAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAACgAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAMAAAAAAADwAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgQAAAAAADwAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAMAAAAAAADwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAADwAAAAAAMAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAADwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: WQAAAAABBAAAAAABBAAAAAABJAAAAAAAJAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADKAAAAAABKAAAAAACKAAAAAADKAAAAAADGAAAAAAAGAAAAAAAMAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACKAAAAAABKAAAAAADKAAAAAABKAAAAAADGAAAAAAAGAAAAAAAMAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACKAAAAAAAKAAAAAABKAAAAAACKAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAKAAAAAADKAAAAAACKAAAAAADKAAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAAAOwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABKAAAAAABKAAAAAADKAAAAAABKAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADKAAAAAACKAAAAAACKAAAAAAAKAAAAAABOAAAAAADOAAAAAAAOAAAAAABOwAAAAAAcwAAAAAAMAAAAAADGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACOAAAAAACOAAAAAAAcwAAAAADcwAAAAABMAAAAAABGAAAAAAAGAAAAAAAgQAAAAAAKQAAAAAAKAAAAAADKQAAAAAAKQAAAAADKQAAAAADgQAAAAAAEwAAAAAAOAAAAAACOAAAAAAAOAAAAAAAcwAAAAAAcwAAAAACMAAAAAABGAAAAAAAGAAAAAAAgQAAAAAAKAAAAAABOAAAAAABLQAAAAADOAAAAAADKQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAFgAAAAABgQAAAAAAgQAAAAAAXgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADOAAAAAACLQAAAAAAOAAAAAADKAAAAAABgQAAAAAAbwAAAAAAGgAAAAAAGgAAAAADGgAAAAADgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAABVQAAAAAAgQAAAAAAKQAAAAACOAAAAAADLQAAAAADOAAAAAAAKQAAAAABgQAAAAAAgQAAAAAAGgAAAAADGgAAAAADGgAAAAADgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAVQAAAAAAKAAAAAAAKQAAAAABOAAAAAACLQAAAAABOAAAAAABKAAAAAABgQAAAAAAbwAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAABVQAAAAAAgQAAAAAAKQAAAAABKAAAAAADKQAAAAAAKQAAAAACKQAAAAADgQAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA + tiles: WQAAAAABBAAAAAABBAAAAAABJAAAAAAAJAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAbwAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAADIAAAAAACIAAAAAADKAAAAAABKAAAAAACKAAAAAADKAAAAAADGAAAAAAAGAAAAAAAMAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAACIAAAAAADIAAAAAACKAAAAAABKAAAAAADKAAAAAABKAAAAAADGAAAAAAAGAAAAAAAMAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACKAAAAAAAKAAAAAABKAAAAAACKAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAACIAAAAAABIAAAAAAAKAAAAAADKAAAAAACKAAAAAADKAAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAAAOwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABKAAAAAABKAAAAAADKAAAAAABKAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAADKAAAAAACKAAAAAACKAAAAAAAKAAAAAABOAAAAAADOAAAAAAAOAAAAAABOwAAAAAAcwAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOAAAAAACOAAAAAACOAAAAAAAcwAAAAADcwAAAAABgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAKQAAAAAAKAAAAAADKQAAAAAAKQAAAAADKQAAAAADgQAAAAAAEwAAAAAAOAAAAAACOAAAAAAAOAAAAAAAcwAAAAAAcwAAAAACgQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAKAAAAAABOAAAAAABLQAAAAADOAAAAAADKQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAFgAAAAABgQAAAAAAgQAAAAAAXgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAADOAAAAAACLQAAAAAAOAAAAAADKAAAAAABgQAAAAAAbwAAAAAAGgAAAAAAGgAAAAADGgAAAAADgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAABVQAAAAAAgQAAAAAAKQAAAAACOAAAAAADLQAAAAADOAAAAAAAKQAAAAABgQAAAAAAgQAAAAAAGgAAAAADGgAAAAADGgAAAAADgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAVQAAAAAAKAAAAAAAKQAAAAABOAAAAAACLQAAAAABOAAAAAABKAAAAAABgQAAAAAAbwAAAAAAVQAAAAAAgQAAAAAAVQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAABVQAAAAAAgQAAAAAAKQAAAAABKAAAAAADKQAAAAAAKQAAAAACKQAAAAADgQAAAAAAbwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAcwAAAAAAVQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAA version: 6 0,4: ind: 0,4 @@ -1474,6 +1476,12 @@ entities: 20081: -62,-88 20082: -63,-88 20083: -63,-87 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Bot + decals: + 21305: 22,-54 - node: zIndex: 60 color: '#FFFFFFFF' @@ -1947,7 +1955,6 @@ entities: color: '#52B4E996' id: BrickCornerOverlayNE decals: - 6103: 11,-54 6112: 11,-60 - node: color: '#52B4E996' @@ -1959,18 +1966,11 @@ entities: id: BrickCornerOverlaySE decals: 6105: 11,-56 - 6110: 11,-62 - node: color: '#52B4E996' id: BrickCornerOverlaySW decals: 6106: 9,-56 - - node: - color: '#52B4E996' - id: BrickLineOverlayE - decals: - 6107: 11,-55 - 6108: 11,-61 - node: color: '#52B4E996' id: BrickLineOverlayN @@ -2671,6 +2671,11 @@ entities: id: BrickTileSteelCornerNe decals: 14573: -40,54 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelCornerNe + decals: + 21021: -100,67 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe @@ -2698,6 +2703,11 @@ entities: id: BrickTileSteelCornerNw decals: 15003: -27,1 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelCornerNw + decals: + 21022: -107,67 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw @@ -2725,6 +2735,11 @@ entities: id: BrickTileSteelCornerSe decals: 15006: -25,-1 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelCornerSe + decals: + 21020: -100,41 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe @@ -2753,6 +2768,11 @@ entities: decals: 14267: -7,50 15005: -27,-1 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelCornerSw + decals: + 21019: -107,41 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw @@ -3071,6 +3091,23 @@ entities: id: BrickTileSteelInnerNe decals: 7346: 34,-61 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelInnerNe + decals: + 21066: -105,41 + 21067: -107,42 + 21068: -102,42 + 21069: -105,43 + 21070: -105,49 + 21071: -105,51 + 21072: -107,50 + 21073: -102,50 + 21074: -107,58 + 21075: -105,59 + 21076: -102,58 + 21077: -105,57 + 21078: -105,65 - node: color: '#DCDCDCFF' id: BrickTileSteelInnerNe @@ -3114,6 +3151,23 @@ entities: id: BrickTileSteelInnerNw decals: 7347: 38,-61 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelInnerNw + decals: + 21051: -102,65 + 21052: -105,58 + 21053: -102,59 + 21054: -100,58 + 21055: -102,57 + 21056: -105,50 + 21057: -102,51 + 21058: -100,50 + 21059: -102,49 + 21061: -105,42 + 21063: -102,43 + 21064: -102,41 + 21065: -100,42 - node: color: '#DCDCDCFF' id: BrickTileSteelInnerNw @@ -3159,6 +3213,23 @@ entities: id: BrickTileSteelInnerSe decals: 7344: 34,-59 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelInnerSe + decals: + 21023: -107,66 + 21024: -105,67 + 21025: -105,65 + 21026: -102,66 + 21027: -105,59 + 21028: -107,58 + 21029: -105,57 + 21030: -102,58 + 21031: -105,51 + 21032: -107,50 + 21033: -105,49 + 21034: -102,50 + 21035: -105,43 - node: color: '#DCDCDCFF' id: BrickTileSteelInnerSe @@ -3207,6 +3278,23 @@ entities: id: BrickTileSteelInnerSw decals: 7345: 38,-59 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelInnerSw + decals: + 21036: -102,43 + 21037: -102,49 + 21038: -105,50 + 21039: -100,50 + 21040: -102,51 + 21043: -105,58 + 21044: -102,57 + 21045: -102,59 + 21046: -100,58 + 21047: -105,66 + 21048: -102,65 + 21049: -102,67 + 21050: -100,66 - node: color: '#DCDCDCFF' id: BrickTileSteelInnerSw @@ -3273,6 +3361,96 @@ entities: id: BrickTileSteelLineE decals: 7336: 34,-60 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelLineE + decals: + 20788: -107,65 + 20789: -107,64 + 20790: -107,63 + 20791: -107,62 + 20792: -107,61 + 20793: -107,60 + 20794: -107,59 + 20798: -105,63 + 20799: -105,64 + 20800: -102,59 + 20801: -102,60 + 20802: -102,61 + 20803: -102,62 + 20804: -102,63 + 20805: -102,64 + 20806: -102,65 + 20807: -105,66 + 20808: -100,66 + 20809: -100,65 + 20810: -100,64 + 20811: -100,63 + 20812: -100,62 + 20813: -100,61 + 20814: -100,60 + 20815: -100,59 + 20816: -100,58 + 20817: -100,57 + 20818: -100,56 + 20819: -100,55 + 20820: -100,54 + 20821: -100,53 + 20822: -100,52 + 20823: -100,51 + 20824: -100,50 + 20825: -100,49 + 20826: -100,48 + 20827: -100,46 + 20828: -100,47 + 20829: -100,45 + 20830: -100,44 + 20831: -100,43 + 20832: -100,42 + 20833: -105,42 + 20834: -102,43 + 20835: -102,44 + 20836: -102,45 + 20837: -102,46 + 20838: -102,47 + 20839: -102,48 + 20840: -102,49 + 20841: -107,43 + 20842: -107,44 + 20843: -107,45 + 20844: -107,46 + 20845: -107,47 + 20846: -107,48 + 20847: -107,49 + 20848: -105,44 + 20849: -105,45 + 20850: -105,46 + 20851: -105,47 + 20852: -105,48 + 20853: -105,52 + 20854: -105,53 + 20855: -105,54 + 20856: -105,55 + 20857: -105,56 + 20858: -107,51 + 20859: -107,52 + 20860: -107,53 + 20861: -107,54 + 20863: -107,56 + 20864: -107,57 + 20865: -102,51 + 20866: -102,52 + 20867: -102,53 + 20868: -102,54 + 20869: -102,55 + 20870: -102,56 + 20871: -102,57 + 20874: -105,62 + 20875: -105,61 + 20876: -105,60 + 20877: -105,50 + 20915: -107,55 + 21003: -105,58 - node: color: '#DCDCDCFF' id: BrickTileSteelLineE @@ -3374,6 +3552,36 @@ entities: 7337: 35,-61 7338: 36,-61 7339: 37,-61 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelLineN + decals: + 20927: -106,67 + 20928: -105,67 + 20929: -104,67 + 20930: -103,67 + 20931: -102,67 + 20932: -101,67 + 20933: -104,65 + 20934: -103,65 + 21001: -104,57 + 21002: -103,57 + 21005: -104,59 + 21006: -103,59 + 21007: -104,51 + 21008: -103,51 + 21009: -104,43 + 21010: -103,43 + 21011: -106,50 + 21012: -101,50 + 21013: -106,58 + 21014: -101,58 + 21015: -106,42 + 21016: -101,42 + 21017: -104,41 + 21018: -103,41 + 21041: -104,49 + 21042: -103,49 - node: color: '#DCDCDCFF' id: BrickTileSteelLineN @@ -3481,6 +3689,36 @@ entities: 7341: 36,-59 7342: 37,-59 7343: 35,-59 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelLineS + decals: + 20974: -106,41 + 20976: -104,41 + 20977: -103,41 + 20978: -102,41 + 20979: -101,41 + 20980: -103,43 + 20981: -104,43 + 20982: -104,49 + 20983: -103,49 + 20984: -104,51 + 20985: -103,51 + 20986: -106,50 + 20987: -101,50 + 20988: -104,57 + 20989: -103,57 + 20990: -106,58 + 20991: -101,58 + 20992: -106,66 + 20993: -104,65 + 20994: -103,65 + 20995: -101,66 + 20996: -104,67 + 20997: -103,67 + 20999: -104,59 + 21000: -103,59 + 21062: -105,41 - node: color: '#DCDCDCFF' id: BrickTileSteelLineS @@ -3616,6 +3854,96 @@ entities: id: BrickTileSteelLineW decals: 7335: 38,-60 + - node: + color: '#CDCDCDFF' + id: BrickTileSteelLineW + decals: + 20878: -105,43 + 20879: -105,44 + 20880: -105,45 + 20881: -105,46 + 20882: -105,47 + 20883: -105,48 + 20884: -105,49 + 20885: -102,44 + 20886: -102,45 + 20887: -102,46 + 20888: -102,47 + 20889: -102,48 + 20890: -102,50 + 20891: -102,42 + 20892: -100,43 + 20893: -100,44 + 20894: -100,45 + 20895: -100,46 + 20896: -100,47 + 20897: -100,48 + 20898: -100,49 + 20899: -107,42 + 20900: -107,43 + 20901: -107,44 + 20902: -107,45 + 20903: -107,46 + 20904: -107,47 + 20905: -107,48 + 20906: -107,49 + 20907: -107,50 + 20908: -107,51 + 20909: -107,52 + 20910: -107,53 + 20911: -107,54 + 20914: -107,55 + 20916: -107,56 + 20917: -107,57 + 20918: -107,58 + 20919: -107,59 + 20920: -107,60 + 20921: -107,61 + 20922: -107,62 + 20923: -107,63 + 20924: -107,64 + 20925: -107,65 + 20926: -107,66 + 20935: -102,66 + 20936: -105,65 + 20937: -105,64 + 20938: -105,63 + 20939: -105,62 + 20940: -105,61 + 20941: -105,60 + 20942: -105,59 + 20943: -100,59 + 20944: -100,60 + 20945: -100,61 + 20946: -100,62 + 20947: -100,63 + 20948: -100,64 + 20949: -100,65 + 20950: -102,60 + 20951: -102,61 + 20952: -102,62 + 20953: -102,63 + 20954: -102,64 + 20955: -105,57 + 20956: -105,56 + 20957: -105,55 + 20958: -105,54 + 20959: -105,53 + 20960: -105,52 + 20961: -105,51 + 20962: -102,52 + 20963: -102,53 + 20964: -102,54 + 20965: -102,55 + 20966: -102,56 + 20967: -100,51 + 20968: -100,52 + 20969: -100,53 + 20970: -100,54 + 20971: -100,55 + 20972: -100,56 + 20973: -100,57 + 21004: -102,58 - node: color: '#DCDCDCFF' id: BrickTileSteelLineW @@ -3791,7 +4119,6 @@ entities: 6373: -1,-58 6802: 23,-60 6803: 17,-60 - 6913: 23,-54 15656: 1,-35 15657: -4,-35 15658: 6,-35 @@ -3926,7 +4253,6 @@ entities: 6374: -3,-58 6792: 13,-60 6793: 19,-60 - 6912: 22,-54 15659: 4,-35 15660: -1,-35 15661: -6,-35 @@ -4035,7 +4361,6 @@ entities: 6375: -1,-61 6804: 17,-62 6805: 23,-62 - 6917: 23,-56 15663: -4,-36 15665: 1,-36 15669: 6,-36 @@ -4169,16 +4494,15 @@ entities: 211: 49,-20 2513: 6,-10 4194: -30,-13 - 6183: 13,-56 6376: -3,-61 6806: 13,-62 6807: 19,-62 6808: 13,-62 6809: 19,-62 - 6916: 22,-56 15662: -6,-36 15667: -1,-36 15668: 4,-36 + 21332: 13,-56 - node: cleanable: True color: '#FFFFFFFF' @@ -4797,7 +5121,6 @@ entities: id: BrickTileWhiteInnerSw decals: 6273: 16,-56 - 6274: 13,-56 - node: color: '#628E36FF' id: BrickTileWhiteInnerSw @@ -5222,7 +5545,6 @@ entities: 6369: -1,-61 6794: 17,-61 6795: 23,-61 - 6914: 23,-55 14445: -6,-51 14446: -6,-50 14447: -6,-49 @@ -6187,13 +6509,11 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 6177: 13,-56 6178: 13,-55 6371: -3,-59 6372: -3,-60 6816: 13,-61 6817: 19,-61 - 6915: 22,-55 7121: 22,-49 7122: 22,-50 7123: 22,-52 @@ -8517,12 +8837,6 @@ entities: 18908: -75,-64 18909: -73,-66 18910: -72,-66 - - node: - color: '#DCD5E6FF' - id: Delivery - decals: - 6204: 9,-54 - 6205: 9,-62 - node: angle: 1.5707963267948966 rad color: '#FEFFFFFF' @@ -8637,6 +8951,14 @@ entities: id: Delivery decals: 20012: 47,-20 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Delivery + decals: + 21334: 26,-53 + 21335: 28,-53 + 21336: 28,-51 - node: color: '#222223FF' id: DeliveryGreyscale @@ -9020,11 +9342,16 @@ entities: id: DiagonalOverlay decals: 6198: 14,-56 - 6199: 13,-56 6200: 13,-55 6201: 14,-55 6202: 14,-54 6203: 13,-54 + - node: + zIndex: 1 + color: '#0000003F' + id: DiagonalOverlay + decals: + 21333: 13,-56 - node: color: '#00000041' id: DiagonalOverlay @@ -9056,16 +9383,6 @@ entities: 9171: 14,-86 9172: 14,-78 9173: 13,-78 - - node: - color: '#0000004D' - id: DiagonalOverlay - decals: - 6920: 22,-54 - 6921: 23,-54 - 6922: 23,-55 - 6923: 22,-55 - 6924: 22,-56 - 6925: 23,-56 - node: color: '#00000050' id: DiagonalOverlay @@ -10966,7 +11283,6 @@ entities: 3: -24.112602,-2.9593968 979: -102.56544,-1.2520137 3950: -103,53 - 3952: -103,60 4558: -93,41 13573: -16.166363,-4.223278 13592: -16.45884,4.7594748 @@ -12361,7 +12677,6 @@ entities: 2719: 10,-7 6307: 12,-56 6308: 15,-56 - 6311: 21,-56 13803: -73,-2 18333: -8,-54 20269: -66,8 @@ -12661,8 +12976,6 @@ entities: 6313: 12,-54 6314: 15,-55 6315: 15,-54 - 6316: 21,-55 - 6317: 21,-54 6318: 18,-61 6319: 18,-62 6320: 12,-62 @@ -13274,8 +13587,6 @@ entities: 6327: 15,-55 6328: 18,-62 6329: 18,-61 - 6330: 21,-55 - 6331: 21,-54 8139: 34,43 8140: 34,44 8141: 34,45 @@ -13577,6 +13888,12 @@ entities: id: Max decals: 19661: -28.758524,-79.93474 + - node: + zIndex: 1 + color: '#334E6DC8' + id: MiniTileCheckerAOverlay + decals: + 21300: 22,-56 - node: color: '#52B4E9FF' id: MiniTileCheckerAOverlay @@ -13635,27 +13952,52 @@ entities: id: MiniTileCornerOverlayNE decals: 1803: -84,14 + - node: + zIndex: 1 + color: '#334E6DC8' + id: MiniTileCornerOverlayNE + decals: + 21302: 23,-54 - node: color: '#00C06AFF' id: MiniTileCornerOverlayNW decals: 1804: -88,14 + - node: + zIndex: 1 + color: '#334E6DC8' + id: MiniTileCornerOverlayNW + decals: + 21301: 22,-54 - node: color: '#00C06AFF' id: MiniTileCornerOverlaySE decals: 1805: -84,12 + - node: + zIndex: 1 + color: '#334E6DC8' + id: MiniTileCornerOverlaySE + decals: + 21304: 23,-55 - node: color: '#00C06AFF' id: MiniTileCornerOverlaySW decals: 1806: -88,12 + - node: + zIndex: 1 + color: '#334E6DC8' + id: MiniTileCornerOverlaySW + decals: + 21303: 22,-55 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: 2946: 71,-63 2970: 53,-63 + 21299: 23,-54 - node: zIndex: 90 color: '#FFFFFFFF' @@ -13669,6 +14011,7 @@ entities: decals: 2928: 49,-63 2945: 67,-63 + 21298: 22,-54 - node: zIndex: 90 color: '#FFFFFFFF' @@ -13683,6 +14026,7 @@ entities: decals: 2925: 53,-67 2944: 71,-67 + 21296: 23,-55 - node: zIndex: 90 color: '#FFFFFFFF' @@ -13696,6 +14040,7 @@ entities: decals: 2932: 49,-67 2947: 67,-67 + 21297: 22,-55 - node: zIndex: 90 color: '#FFFFFFFF' @@ -19669,7 +20014,6 @@ entities: color: '#0000001B' id: OriginStationSign4 decals: - 4065: -29,37 4066: -34,37 4067: -35,37 4068: -37,37 @@ -19746,8 +20090,6 @@ entities: color: '#0000001F' id: OriginStationSign4 decals: - 4166: -33,37 - 4167: -33,37 7553: -11,-57 7554: -11,-57 7555: -11,-57 @@ -20051,12 +20393,6 @@ entities: 3499: -1,-12 3500: 0,-12 3501: 1,-12 - 6926: 22,-54 - 6927: 23,-54 - 6928: 23,-55 - 6929: 22,-55 - 6930: 22,-56 - 6931: 23,-56 6981: 13,-67 6982: 14,-67 6983: 15,-67 @@ -20258,8 +20594,6 @@ entities: 3669: -2,5 3670: 2,5 4147: -32,37 - 4148: -31,37 - 4149: -31,37 7155: 20,-53 11825: -48,-7 11827: -48,-8 @@ -20340,26 +20674,10 @@ entities: color: '#0000003E' id: OriginStationSign4 decals: - 4006: -29,37 - 4007: -29,36 - 4008: -30,36 - 4009: -31,36 - 4010: -32,36 - 4011: -33,36 - 4012: -34,36 4013: -34,37 4014: -35,37 - 4015: -35,36 - 4016: -36,36 - 4017: -37,36 4018: -37,37 4019: -38,37 - 4020: -38,36 - 4021: -39,36 - 4022: -39,37 - 4023: -40,37 - 4024: -40,36 - 4025: -41,36 4026: -41,37 4027: -42,36 4028: -42,35 @@ -20368,74 +20686,20 @@ entities: 4031: -42,32 4032: -42,31 4033: -41,30 - 4034: -41,31 - 4035: -40,31 - 4036: -40,30 - 4037: -39,30 - 4038: -39,31 - 4039: -38,31 4040: -38,30 - 4041: -41,32 - 4042: -41,33 - 4043: -41,34 - 4044: -41,35 - 4045: -34,35 - 4046: -33,35 - 4047: -32,35 - 4048: -32,34 - 4049: -33,34 - 4050: -34,34 - 4051: -34,33 - 4052: -33,33 - 4053: -32,33 4054: -32,32 4055: -33,32 - 4056: -34,32 - 4057: -34,31 4058: -33,31 4059: -32,30 4060: -33,30 - 4061: -34,30 - 4062: -35,31 - 4063: -36,31 - 4064: -37,31 - 6121: 9,-54 - 6122: 10,-54 - 6123: 10,-55 - 6124: 9,-55 - 6125: 9,-55 - 6126: 10,-55 - 6127: 10,-55 - 6128: 9,-54 - 6129: 10,-54 - 6130: 9,-55 - 6131: 10,-54 - 6132: 9,-54 - 6133: 9,-61 - 6134: 9,-62 - 6135: 10,-61 - 6136: 10,-62 - 6137: 9,-61 - 6138: 9,-62 - 6139: 10,-61 - 6140: 10,-62 - 6141: 9,-61 - 6142: 9,-62 - 6143: 10,-61 - 6144: 10,-62 6145: 9,-60 6146: 10,-60 6147: 11,-60 - 6148: 11,-61 - 6149: 11,-62 6150: 9,-56 6151: 10,-56 6152: 11,-56 - 6153: 11,-55 - 6154: 11,-54 6171: 13,-54 6172: 13,-55 - 6173: 13,-56 6174: 14,-56 6175: 14,-55 6176: 14,-54 @@ -21737,96 +22001,6 @@ entities: color: '#000000FF' id: Rust decals: - 839: -38,33 - 840: -37,33 - 841: -37,34 - 842: -38,34 - 843: -38,33 - 844: -38,34 - 845: -37,34 - 846: -37,33 - 881: -37,33 - 882: -38,33 - 883: -38,34 - 884: -37,34 - 3753: -101,41 - 3754: -102,41 - 3755: -103,41 - 3756: -104,41 - 3757: -105,41 - 3758: -106,41 - 3759: -106,41 - 3760: -105,41 - 3761: -104,41 - 3762: -103,41 - 3763: -102,41 - 3764: -101,41 - 3765: -101,67 - 3766: -101,67 - 3767: -102,67 - 3768: -102,67 - 3769: -103,67 - 3770: -103,67 - 3771: -104,67 - 3772: -104,67 - 3773: -105,67 - 3774: -105,67 - 3775: -106,67 - 3776: -106,67 - 3786: -100,41 - 3787: -100,41 - 3788: -100,42 - 3789: -100,42 - 3791: -100,43 - 3792: -100,43 - 3793: -100,44 - 3794: -100,44 - 3795: -100,45 - 3796: -100,45 - 3797: -100,46 - 3798: -100,46 - 3799: -100,47 - 3800: -100,47 - 3801: -100,48 - 3802: -100,48 - 3803: -100,49 - 3804: -100,49 - 3805: -100,50 - 3806: -100,50 - 3807: -100,51 - 3808: -100,51 - 3809: -100,52 - 3810: -100,52 - 3811: -100,53 - 3812: -100,53 - 3813: -100,54 - 3814: -100,54 - 3815: -100,55 - 3816: -100,55 - 3817: -100,56 - 3818: -100,56 - 3819: -100,57 - 3820: -100,57 - 3821: -100,58 - 3822: -100,58 - 3823: -100,59 - 3824: -100,59 - 3825: -100,60 - 3826: -100,60 - 3827: -100,61 - 3828: -100,61 - 3829: -100,62 - 3830: -100,62 - 3831: -100,63 - 3832: -100,63 - 3833: -100,64 - 3834: -100,64 - 3835: -100,65 - 3836: -100,65 - 3837: -100,66 - 3838: -100,66 - 3839: -100,67 - 3840: -100,67 4566: -97,53 4567: -97,53 4568: -97,54 @@ -22105,101 +22279,6 @@ entities: 16589: -28,-91 16590: -29,-91 16591: -30,-91 - 20146: -102,57 - 20147: -101,57 - 20148: -103,57 - 20149: -104,57 - 20150: -105,57 - 20151: -105,58 - 20152: -104,58 - 20153: -103,58 - 20154: -102,58 - 20155: -101,58 - 20156: -101,59 - 20157: -101,60 - 20158: -101,61 - 20159: -101,62 - 20160: -101,63 - 20161: -101,64 - 20162: -101,65 - 20163: -101,66 - 20164: -102,66 - 20165: -103,66 - 20166: -104,66 - 20167: -105,66 - 20168: -105,65 - 20169: -104,65 - 20170: -103,65 - 20171: -102,65 - 20172: -102,64 - 20173: -105,64 - 20174: -105,63 - 20175: -105,62 - 20176: -105,61 - 20177: -105,60 - 20178: -105,59 - 20179: -104,59 - 20180: -103,59 - 20181: -102,59 - 20182: -102,60 - 20183: -102,61 - 20184: -102,62 - 20185: -102,63 - 20186: -101,56 - 20187: -102,56 - 20188: -102,55 - 20189: -102,54 - 20190: -102,53 - 20191: -102,52 - 20192: -101,52 - 20193: -101,53 - 20194: -101,54 - 20195: -101,55 - 20196: -105,56 - 20197: -105,55 - 20198: -105,54 - 20199: -105,53 - 20200: -105,52 - 20201: -105,51 - 20202: -104,51 - 20203: -103,51 - 20204: -102,51 - 20205: -101,51 - 20206: -101,50 - 20207: -102,50 - 20208: -103,50 - 20209: -104,50 - 20210: -105,50 - 20211: -105,49 - 20212: -104,49 - 20213: -103,49 - 20214: -102,49 - 20215: -101,49 - 20216: -103,42 - 20217: -103,43 - 20218: -104,43 - 20219: -104,42 - 20220: -105,42 - 20221: -105,43 - 20222: -105,44 - 20223: -105,45 - 20224: -105,46 - 20225: -105,47 - 20226: -105,48 - 20227: -102,48 - 20228: -101,48 - 20229: -101,47 - 20230: -102,47 - 20231: -102,46 - 20232: -101,46 - 20233: -101,45 - 20234: -102,45 - 20235: -102,44 - 20236: -101,44 - 20237: -101,43 - 20238: -102,43 - 20239: -102,42 - 20240: -101,42 20271: 11,-85 20272: 10,-85 20273: 9,-85 @@ -22209,85 +22288,6 @@ entities: 20277: 11,-83 20278: 10,-83 20279: 9,-83 - 20353: -106,42 - 20354: -106,43 - 20355: -106,44 - 20356: -106,45 - 20357: -106,46 - 20358: -106,47 - 20359: -106,48 - 20360: -106,50 - 20361: -106,49 - 20362: -106,51 - 20363: -106,52 - 20364: -106,53 - 20365: -106,54 - 20366: -106,55 - 20367: -106,56 - 20368: -106,57 - 20369: -106,58 - 20370: -106,59 - 20371: -106,60 - 20372: -106,61 - 20373: -106,66 - 20374: -106,65 - 20375: -106,64 - 20376: -106,63 - 20377: -106,62 - 20378: -107,41 - 20379: -107,41 - 20380: -107,42 - 20381: -107,42 - 20382: -107,43 - 20383: -107,43 - 20384: -107,44 - 20385: -107,44 - 20386: -107,45 - 20387: -107,45 - 20388: -107,46 - 20389: -107,46 - 20390: -107,47 - 20391: -107,47 - 20392: -107,48 - 20393: -107,48 - 20394: -107,49 - 20395: -107,49 - 20396: -107,50 - 20397: -107,50 - 20398: -107,51 - 20399: -107,51 - 20400: -107,52 - 20401: -107,52 - 20402: -107,53 - 20403: -107,53 - 20404: -107,54 - 20405: -107,54 - 20406: -107,55 - 20407: -107,55 - 20408: -107,56 - 20409: -107,56 - 20410: -107,57 - 20411: -107,57 - 20412: -107,58 - 20413: -107,58 - 20414: -107,59 - 20415: -107,59 - 20416: -107,60 - 20417: -107,60 - 20418: -107,61 - 20419: -107,61 - 20420: -107,62 - 20421: -107,62 - 20422: -107,63 - 20423: -107,63 - 20424: -107,64 - 20425: -107,64 - 20426: -107,65 - 20427: -107,65 - 20428: -107,66 - 20429: -107,66 - 20430: -107,67 - 20431: -107,67 - node: color: '#1F591BFF' id: Rust @@ -22832,10 +22832,10 @@ entities: 6081: 11,-39 6088: 15,-48 6098: 17,-39 - 6119: 10,-54 - 6120: 10,-61 7226: 41,-59 7945: 84,44 + 21327: 11,-54 + 21328: 11,-61 - node: color: '#0000003F' id: WarnCornerNW @@ -22856,10 +22856,10 @@ entities: 6080: 9,-39 6087: 13,-48 6097: 15,-39 - 6117: 9,-54 - 6118: 9,-61 7224: 39,-59 7944: 82,44 + 21325: 9,-61 + 21326: 9,-54 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -22876,10 +22876,10 @@ entities: 6082: 11,-40 6090: 15,-49 6099: 17,-41 - 6115: 10,-62 - 6116: 10,-55 7223: 41,-61 7946: 84,42 + 21329: 11,-62 + 21330: 11,-55 - node: color: '#0000003F' id: WarnCornerSW @@ -22900,10 +22900,10 @@ entities: 6083: 9,-40 6089: 13,-49 6100: 15,-41 - 6113: 9,-55 - 6114: 9,-62 7222: 39,-61 7947: 82,42 + 21323: 9,-62 + 21324: 9,-55 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE @@ -22965,6 +22965,12 @@ entities: id: WarnEndS decals: 1217: -56,43 + - node: + zIndex: 1 + color: '#0000000C' + id: WarnFull + decals: + 21283: -33,37 - node: color: '#00000022' id: WarnFull @@ -22985,6 +22991,142 @@ entities: 7454: 4,-50 7455: 4,-51 7456: 4,-52 + - node: + color: '#0000003F' + id: WarnFull + decals: + 21080: -101,53 + 21081: -101,52 + 21082: -101,51 + 21083: -101,54 + 21084: -101,55 + 21085: -101,56 + 21086: -101,57 + 21087: -106,51 + 21088: -106,52 + 21089: -106,53 + 21090: -106,54 + 21091: -106,55 + 21092: -106,56 + 21093: -106,57 + 21094: -104,50 + 21095: -103,50 + 21096: -106,49 + 21097: -106,48 + 21098: -106,47 + 21099: -106,46 + 21100: -106,45 + 21101: -106,44 + 21102: -106,43 + 21103: -101,43 + 21104: -101,44 + 21105: -101,45 + 21106: -101,46 + 21107: -101,47 + 21108: -101,48 + 21109: -101,49 + 21110: -103,42 + 21111: -104,42 + 21112: -104,58 + 21113: -103,58 + 21114: -106,59 + 21115: -106,60 + 21116: -106,61 + 21117: -106,62 + 21118: -106,63 + 21119: -106,64 + 21120: -106,65 + 21121: -104,66 + 21122: -103,66 + 21123: -101,65 + 21124: -101,64 + 21125: -101,63 + 21126: -101,62 + 21127: -101,61 + 21128: -101,60 + 21129: -101,59 + - node: + zIndex: 1 + color: '#0000003F' + id: WarnFull + decals: + 21189: -41,36 + 21190: -41,35 + 21191: -41,34 + 21192: -41,33 + 21193: -41,32 + 21194: -41,31 + 21195: -40,31 + 21196: -40,32 + 21197: -40,33 + 21198: -40,34 + 21199: -40,35 + 21200: -40,36 + 21207: -38,31 + 21208: -38,32 + 21209: -38,34 + 21210: -38,33 + 21211: -38,35 + 21212: -38,36 + 21213: -37,36 + 21214: -37,35 + 21215: -37,34 + 21216: -37,33 + 21217: -37,32 + 21218: -37,31 + 21219: -36,31 + 21220: -36,32 + 21221: -36,33 + 21222: -36,34 + 21223: -36,35 + 21224: -36,36 + 21225: -35,36 + 21226: -35,35 + 21227: -35,34 + 21228: -35,33 + 21229: -35,32 + 21230: -35,31 + 21231: -34,30 + 21232: -34,31 + 21233: -34,32 + 21234: -34,33 + 21235: -33,33 + 21236: -32,33 + 21237: -34,34 + 21238: -33,34 + 21239: -32,34 + 21240: -32,35 + 21241: -33,35 + 21242: -34,35 + 21243: -32,36 + 21244: -33,36 + 21245: -34,36 + 21261: -39,30 + 21262: -39,31 + 21263: -39,32 + 21264: -39,33 + 21265: -39,34 + 21266: -39,35 + 21267: -39,36 + 21268: -39,37 + 21269: -40,37 + 21270: -40,30 + 21271: -37,30 + 21272: -36,30 + 21273: -35,30 + 21306: 19,-56 + 21307: 9,-55 + 21308: 10,-55 + 21309: 11,-55 + 21310: 11,-54 + 21311: 10,-54 + 21312: 9,-54 + 21313: 9,-61 + 21314: 9,-62 + 21315: 10,-62 + 21316: 10,-61 + 21317: 11,-61 + 21318: 11,-62 - node: color: '#00000044' id: WarnFull @@ -23988,6 +24130,24 @@ entities: 14603: -73,53 14604: -73,54 14605: -73,55 + - node: + zIndex: 1 + color: '#00000019' + id: WarnLineN + decals: + 21282: -33.000042,37.43738 + - node: + zIndex: 1 + color: '#00000026' + id: WarnLineN + decals: + 21281: -33.000042,37.21863 + - node: + zIndex: 1 + color: '#00000033' + id: WarnLineN + decals: + 21279: -33,37 - node: color: '#FFFFFFFF' id: WarnLineN @@ -24059,6 +24219,8 @@ entities: 12728: -50,-30 12736: -59,-31 12737: -60,-31 + 21321: 10,-55 + 21322: 10,-62 - node: cleanable: True color: '#FFFFFFFF' @@ -24231,6 +24393,12 @@ entities: 13154: 54,33 15608: -20,5 15609: -20,13 + - node: + zIndex: 1 + color: '#0000000C' + id: WarnLineW + decals: + 21280: -33,37 - node: angle: -4.71238898038469 rad color: '#FFFFFF98' @@ -24303,6 +24471,8 @@ entities: 12735: -57,-30 12759: -60,-30 12760: -59,-30 + 21319: 10,-61 + 21320: 10,-54 - node: color: '#737273FF' id: WoodTrimThinBox @@ -24355,11 +24525,6 @@ entities: decals: 18027: -72,75 18028: -68,75 - - node: - color: '#D9DBDCFF' - id: WoodTrimThinBox - decals: - 4144: -31,37 - node: color: '#DCDCDCFF' id: WoodTrimThinBox @@ -24374,7 +24539,6 @@ entities: id: WoodTrimThinBox decals: 3999: -37,37 - 4000: -29,37 - node: color: '#E6E2E3FF' id: WoodTrimThinBox @@ -24491,6 +24655,11 @@ entities: decals: 1624: -39,74 1625: -36,73 + - node: + color: '#E1E1E1FF' + id: WoodTrimThinCornerNe + decals: + 21248: -39,37 - node: color: '#E6E2ECFF' id: WoodTrimThinCornerNe @@ -24543,6 +24712,7 @@ entities: 6585: 25,24 6654: 30,24 12902: -77,-14 + 21284: -29,32 - node: cleanable: True color: '#FFFFFFFF' @@ -24639,6 +24809,7 @@ entities: 6462: -13,71 6657: 24,24 12899: -80,-14 + 21287: -31,32 - node: cleanable: True color: '#FFFFFFFF' @@ -24692,6 +24863,11 @@ entities: decals: 1628: -36,69 1629: -51,69 + - node: + color: '#E1E1E1FF' + id: WoodTrimThinCornerSe + decals: + 21247: -39,30 - node: color: '#E6E2ECFF' id: WoodTrimThinCornerSe @@ -24734,6 +24910,7 @@ entities: 6460: -10,69 6655: 30,23 12900: -77,-18 + 21285: -29,30 - node: cleanable: True color: '#FFFFFFFF' @@ -24830,6 +25007,7 @@ entities: 6733: -3,-67 6738: 0,-69 12901: -80,-18 + 21286: -31,30 - node: cleanable: True color: '#FFFFFFFF' @@ -24882,6 +25060,9 @@ entities: decals: 3299: -3,35 3308: -3,33 + 21141: -36,33 + 21142: -36,31 + 21143: -36,36 - node: cleanable: True color: '#FFFFFFFF' @@ -24917,11 +25098,6 @@ entities: id: WoodTrimThinEndN decals: 8903: -26,-57 - - node: - color: '#DFE2ECFF' - id: WoodTrimThinEndN - decals: - 3996: -29,37 - node: cleanable: True color: '#FFFFFFFF' @@ -24974,6 +25150,15 @@ entities: id: WoodTrimThinEndW decals: 3997: -35,37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 21144: -38,36 + 21145: -38,33 + 21146: -38,31 + 21182: -34,33 + 21183: -34,36 - node: cleanable: True color: '#FFFFFFFF' @@ -25034,8 +25219,6 @@ entities: decals: 32: 41,-29 301: 28,-29 - 857: -39,32 - 879: -41,31 900: -20,-11 901: -20,-10 986: -32,-8 @@ -25058,6 +25241,8 @@ entities: 6479: 1,74 6588: 24,20 8038: 41,22 + 21136: -30,36 + 21292: -29,32 - node: cleanable: True color: '#FFFFFFFF' @@ -25122,8 +25307,6 @@ entities: decals: 33: 41,-29 302: 28,-29 - 858: -36,32 - 880: -34,31 902: -21,-10 985: -32,-8 999: -21,-11 @@ -25143,6 +25326,8 @@ entities: 4738: -95,64 4775: -92,48 6478: 1,74 + 21135: -30,36 + 21293: -31,32 - node: color: '#C8C8C8FF' id: WoodTrimThinInnerSe @@ -25180,11 +25365,6 @@ entities: id: WoodTrimThinInnerSe decals: 9076: 12,-78 - - node: - color: '#E6E2ECFF' - id: WoodTrimThinInnerSe - decals: - 3980: -32,36 - node: color: '#EFE5E9FF' id: WoodTrimThinInnerSe @@ -25195,7 +25375,6 @@ entities: id: WoodTrimThinInnerSe decals: 304: 28,-33 - 856: -39,35 1005: -24,-9 1979: 67,6 2844: -73,13 @@ -25215,6 +25394,7 @@ entities: 6647: 27,23 6653: 24,22 8039: 41,26 + 21295: -29,30 - node: color: '#DCDCDCFF' id: WoodTrimThinInnerSw @@ -25259,8 +25439,6 @@ entities: 431: -114.42469,9.961205 432: -114.49761,10.6903715 433: 68,6 - 855: -36,35 - 878: -34,36 1006: -22,-9 1242: -34,21 1977: 67,6 @@ -25277,6 +25455,7 @@ entities: 6736: 0,-67 8037: 49,26 8045: 45,25 + 21294: -31,30 - node: color: '#737273FF' id: WoodTrimThinLineE @@ -25502,6 +25681,21 @@ entities: 8946: -23,-61 8947: -23,-61 8948: -23,-60 + - node: + color: '#E1E1E1FF' + id: WoodTrimThinLineE + decals: + 21161: -32,34 + 21162: -32,35 + 21180: -32,36 + 21181: -32,33 + 21249: -39,36 + 21254: -39,35 + 21255: -39,34 + 21258: -39,33 + 21259: -39,32 + 21260: -39,31 + 21278: -33,37 - node: color: '#E3DBDCFF' id: WoodTrimThinLineE @@ -25529,19 +25723,6 @@ entities: 9105: 8,-80 9111: 12,-78 9112: 12,-86 - - node: - color: '#E6E2E3FF' - id: WoodTrimThinLineE - decals: - 4164: -33,37 - - node: - color: '#E6E2ECFF' - id: WoodTrimThinLineE - decals: - 3973: -32,33 - 3974: -32,34 - 3975: -32,35 - 3976: -29,36 - node: color: '#E6E6E6FF' id: WoodTrimThinLineE @@ -25628,12 +25809,6 @@ entities: 835: -27,48 836: -27,49 837: -27,50 - 847: -39,33 - 848: -39,34 - 865: -41,32 - 866: -41,33 - 867: -41,34 - 868: -41,35 889: -19,-11 890: -19,-12 896: -20,-10 @@ -25727,6 +25902,8 @@ entities: 12908: -77,-15 16231: -69.017265,-3.9417996 16232: -69.142265,-3.9464293 + 21131: -30,37 + 21288: -29,31 - node: cleanable: True color: '#FFFFFFFF' @@ -26087,8 +26264,6 @@ entities: color: '#DFE2ECFF' id: WoodTrimThinLineN decals: - 4002: -40,37 - 4003: -39,37 4004: -38,37 - node: color: '#E0E2E1FF' @@ -26268,14 +26443,6 @@ entities: 417: 65,7 715: -34,24 827: -28,51 - 851: -38,32 - 852: -37,32 - 859: -35,31 - 860: -36,31 - 861: -37,31 - 862: -38,31 - 863: -39,31 - 864: -40,31 887: -21,-10 888: -20,-10 898: -22,-11 @@ -26380,6 +26547,16 @@ entities: 12916: -78,-14 16235: -69.0219,-3.9973552 16236: -69.03116,-4.136244 + 21132: -31,36 + 21133: -29,36 + 21147: -37,31 + 21148: -37,33 + 21149: -37,36 + 21176: -33,33 + 21177: -32,33 + 21178: -33,36 + 21179: -32,36 + 21291: -30,32 - node: cleanable: True color: '#FFFFFFFF' @@ -26773,6 +26950,11 @@ entities: 8941: -25,-63 8942: -24,-63 8943: -23,-63 + - node: + color: '#E1E1E1FF' + id: WoodTrimThinLineS + decals: + 21188: -34,30 - node: color: '#E3DFD9FF' id: WoodTrimThinLineS @@ -26806,15 +26988,9 @@ entities: color: '#E6E2ECFF' id: WoodTrimThinLineS decals: - 3965: -40,30 - 3966: -39,30 3967: -38,30 - 3968: -34,30 3969: -33,30 3970: -32,30 - 3977: -31,36 - 3978: -30,36 - 3979: -29,36 - node: color: '#E6E6E6FF' id: WoodTrimThinLineS @@ -26887,13 +27063,6 @@ entities: 719: -35,21 720: -36,21 833: -28,47 - 853: -38,35 - 854: -37,35 - 873: -40,36 - 874: -38,36 - 875: -37,36 - 876: -36,36 - 877: -35,36 893: -22,-12 894: -20,-12 895: -19,-12 @@ -26964,7 +27133,6 @@ entities: 3447: -10,37 3448: -9,37 3449: -8,37 - 4005: -39,36 4694: -81,47 4695: -80,47 4708: -80,58 @@ -27003,6 +27171,15 @@ entities: 12911: -78,-18 16229: -69.017845,-3.8225632 16230: -69.017845,-3.9475632 + 21134: -30,38 + 21150: -37,36 + 21151: -37,33 + 21152: -37,31 + 21172: -32,36 + 21173: -33,36 + 21174: -33,33 + 21175: -32,33 + 21290: -30,30 - node: cleanable: True color: '#FFFFFFFF' @@ -27288,6 +27465,17 @@ entities: 8955: -26,-62 8956: -26,-63 8957: -26,-63 + - node: + color: '#E1E1E1FF' + id: WoodTrimThinLineW + decals: + 21166: -41,31 + 21167: -41,32 + 21168: -41,33 + 21169: -41,34 + 21170: -41,35 + 21171: -41,36 + 21277: -33,37 - node: color: '#E3DBDCFF' id: WoodTrimThinLineW @@ -27318,21 +27506,6 @@ entities: 9106: 12,-78 9109: 8,-86 9110: 8,-78 - - node: - color: '#E6E2E3FF' - id: WoodTrimThinLineW - decals: - 4165: -33,37 - - node: - color: '#E6E2ECFF' - id: WoodTrimThinLineW - decals: - 3959: -41,35 - 3960: -41,34 - 3961: -41,33 - 3962: -41,32 - 3963: -41,31 - 3983: -41,36 - node: color: '#E6E6E6FF' id: WoodTrimThinLineW @@ -27409,12 +27582,6 @@ entities: 829: -29,50 830: -29,49 831: -29,48 - 849: -36,33 - 850: -36,34 - 869: -34,32 - 870: -34,33 - 871: -34,34 - 872: -34,35 891: -22,-11 892: -22,-12 897: -21,-10 @@ -27503,6 +27670,16 @@ entities: 12914: -80,-15 16233: -69.00338,-3.9464293 16234: -68.85523,-3.9464293 + 21130: -30,37 + 21156: -38,32 + 21157: -38,34 + 21158: -38,35 + 21159: -34,34 + 21160: -34,35 + 21184: -34,32 + 21185: -34,31 + 21187: -34,30 + 21289: -31,31 - node: cleanable: True color: '#FFFFFFFF' @@ -29464,12 +29641,6 @@ entities: id: splatter decals: 1467: -22.97315,35.893066 - - node: - cleanable: True - color: '#3AB3D922' - id: splatter - decals: - 838: -29.389366,43.988293 - node: cleanable: True color: '#411C008F' @@ -31101,13 +31272,11 @@ entities: -4,-3: 0: 65534 -5,-3: - 0: 64433 - 2: 2 + 0: 64435 -4,-2: 0: 61183 -5,-2: - 0: 12731 - 2: 512 + 0: 13243 -5,-1: 0: 61488 -4,-5: @@ -31305,8 +31474,7 @@ entities: -9,-3: 0: 47907 -8,-2: - 0: 6315 - 2: 16 + 0: 6331 -9,-2: 0: 46011 -8,-1: @@ -31386,12 +31554,10 @@ entities: 5,0: 0: 255 6,-3: - 0: 13072 - 3: 32 + 0: 13104 1: 2056 6,-2: - 0: 19 - 2: 32 + 0: 51 1: 22536 6,-1: 0: 61440 @@ -31764,7 +31930,8 @@ entities: -9,7: 0: 65295 -8,8: - 0: 65535 + 0: 4607 + 3: 60928 -7,5: 0: 48059 -7,6: @@ -32052,14 +32219,13 @@ entities: -16,-4: 0: 57599 -16,-5: - 0: 61755 - 2: 128 + 0: 61883 -17,-4: 0: 49629 -16,-3: 0: 65518 -17,-3: - 0: 64989 + 0: 56797 -16,-2: 0: 4092 -17,-2: @@ -32073,8 +32239,7 @@ entities: -15,-2: 0: 4095 -15,-5: - 0: 61751 - 2: 64 + 0: 61815 -14,-4: 0: 7645 -14,-3: @@ -32143,17 +32308,21 @@ entities: -15,6: 0: 65395 -15,7: - 0: 53375 + 0: 4223 + 2: 49152 -15,8: - 0: 56829 + 0: 4401 + 2: 52428 -14,5: 0: 52701 -14,6: 0: 65480 -14,7: - 0: 28687 + 0: 15 + 2: 28672 -14,8: - 0: 30711 + 2: 30583 + 0: 128 -13,8: 0: 65535 -8,-12: @@ -32577,9 +32746,11 @@ entities: -22,-4: 0: 36317 1: 8192 + -24,-1: + 1: 17408 -24,0: + 1: 117 0: 28680 - 1: 113 -23,-1: 0: 29184 -23,0: @@ -32795,11 +32966,7 @@ entities: 1: 31880 0: 1 -24,6: - 1: 17612 - -24,7: - 1: 19532 - -24,8: - 1: 36036 + 1: 140 -23,5: 1: 12544 0: 2254 @@ -32954,7 +33121,8 @@ entities: -9,12: 0: 30583 -8,9: - 0: 65535 + 0: 65361 + 3: 174 -8,10: 0: 65375 -8,11: @@ -33205,8 +33373,7 @@ entities: 18,1: 0: 65535 18,2: - 0: 14192 - 2: 16384 + 0: 30576 18,3: 1: 58096 18,4: @@ -33550,8 +33717,7 @@ entities: 5,11: 0: 29439 5,12: - 0: 26215 - 2: 4368 + 0: 30583 6,9: 0: 65520 6,10: @@ -33714,10 +33880,10 @@ entities: 1: 61064 12,14: 1: 4606 - 4: 49152 + 3: 49152 12,15: 1: 4369 - 4: 52428 + 3: 52428 8,-16: 0: 65293 8,-17: @@ -34342,32 +34508,36 @@ entities: 0: 61883 -22,16: 0: 56591 - -28,11: - 0: 49344 -28,9: - 1: 32768 + 1: 59520 -28,10: - 1: 8 - -27,9: - 1: 28672 + 1: 8738 + 0: 34944 + -28,11: + 0: 57568 -27,11: - 0: 64764 + 0: 65278 + -27,9: + 0: 41504 + 1: 128 -27,10: - 0: 56784 + 0: 61154 -27,12: - 0: 56796 + 0: 61166 -26,9: - 0: 21760 + 1: 112 + 0: 28672 -26,10: - 0: 65525 + 0: 65520 -26,11: - 0: 56797 + 0: 52428 -26,12: - 0: 65533 + 0: 65532 -25,9: - 1: 28672 - -25,10: 0: 4368 + 1: 17472 + -25,10: + 0: 4369 1: 19524 -25,11: 0: 4369 @@ -34375,11 +34545,11 @@ entities: -24,10: 1: 16 0: 57568 - -23,8: - 1: 65280 -23,10: 1: 16 0: 52416 + -23,8: + 1: 65280 -23,9: 1: 8742 0: 34816 @@ -34388,29 +34558,31 @@ entities: -22,10: 0: 47927 -28,12: - 1: 17472 + 1: 8736 + 0: 34944 -28,13: - 0: 49344 + 0: 57568 -28,14: - 1: 17472 + 1: 8736 + 0: 34944 -28,15: - 0: 49344 + 0: 57568 -27,13: - 0: 64764 + 0: 65278 -27,15: - 0: 64764 + 0: 65278 -27,14: - 0: 56796 + 0: 61166 -27,16: - 0: 56796 - -26,13: - 0: 56797 + 0: 61166 -26,14: - 0: 65533 + 0: 65532 + -26,13: + 0: 52428 -26,15: - 0: 56797 + 0: 52428 -26,16: - 0: 65533 + 0: 65532 -25,16: 0: 4369 1: 19524 @@ -34426,14 +34598,20 @@ entities: -22,20: 1: 25668 0: 2048 + -28,16: + 1: 8736 + 0: 34944 -28,17: - 1: 136 + 1: 35042 -27,17: - 1: 112 + 0: 8866 + 1: 32768 -26,17: - 0: 1365 + 0: 112 + 1: 28672 -25,17: - 1: 116 + 0: 4369 + 1: 17476 4,-17: 0: 65535 5,-16: @@ -34441,7 +34619,7 @@ entities: 5,-15: 0: 65535 5,-14: - 0: 7645 + 0: 7637 5,-17: 0: 57309 6,-15: @@ -34495,7 +34673,7 @@ entities: 1: 3976 4,17: 1: 12835 - 4: 2184 + 3: 2184 4,18: 1: 3918 -4,18: @@ -34753,7 +34931,7 @@ entities: 1: 36067 8,17: 1: 4369 - 4: 3276 + 3: 3276 8,18: 1: 3871 7,18: @@ -34762,14 +34940,14 @@ entities: 1: 3919 9,17: 1: 8738 - 4: 2184 + 3: 2184 10,17: - 4: 273 + 3: 273 1: 17476 10,18: 1: 3855 11,17: - 4: 1911 + 3: 1911 11,18: 1: 3983 12,16: @@ -34779,17 +34957,17 @@ entities: 12,18: 1: 3909 5,17: - 4: 273 + 3: 273 1: 17476 5,18: 1: 3855 6,17: - 4: 819 + 3: 819 1: 34952 6,18: 1: 3919 7,17: - 4: 1638 + 3: 1638 4,-24: 1: 3948 3,-24: @@ -34913,7 +35091,7 @@ entities: 13,18: 1: 814 13,15: - 4: 4369 + 3: 4369 1: 17484 14,16: 1: 62815 @@ -34931,7 +35109,7 @@ entities: 1: 36863 13,14: 1: 17532 - 4: 4096 + 3: 4096 14,13: 1: 20293 14,14: @@ -35919,22 +36097,7 @@ entities: - 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.14975 + temperature: 235 moles: - 21.824879 - 82.10312 @@ -39319,11 +39482,6 @@ entities: - type: Transform pos: 0.42520475,76.24384 parent: 2 - - uid: 14619 - components: - - type: Transform - pos: 14.514906,-61.37566 - parent: 2 - uid: 19512 components: - type: Transform @@ -39915,15 +40073,17 @@ entities: parent: 2 - type: DeviceList devices: - - 14518 - - 50814 - - 47018 - - 47022 - - 50802 - - 50803 + - 23657 + - 13820 - 50804 - - 45158 - - 45691 + - 50803 + - 50802 + - 23655 + - 36349 + - 19261 + - 22653 + - 53951 + - 13781 - uid: 22114 components: - type: Transform @@ -40752,7 +40912,7 @@ entities: - 46147 - 46149 - 46150 - - 41539 + - 47044 - 46738 - 31710 - 50671 @@ -41302,6 +41462,8 @@ entities: - 47911 - 47912 - 47913 + - 55490 + - 55492 - uid: 50347 components: - type: Transform @@ -41336,6 +41498,8 @@ entities: devices: - 48576 - 47883 + - 55519 + - 55520 - uid: 50351 components: - type: Transform @@ -42230,6 +42394,11 @@ entities: - 47492 - 47491 - 47486 + - 55454 + - 55453 + - 55449 + - 46123 + - 55448 - 47490 - 47494 - 31706 @@ -42243,11 +42412,6 @@ entities: - 50734 - 47484 - 47485 - - 50733 - - 49718 - - 42802 - - 48629 - - 48481 - 47482 - 47483 - uid: 50743 @@ -44527,6 +44691,16 @@ entities: - 52250 - 55187 - 55147 + - uid: 55521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 55405 + - 55402 - uid: 56002 components: - type: Transform @@ -45098,9 +45272,6 @@ entities: - type: Transform pos: -86.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 5585 - uid: 5577 components: - type: MetaData @@ -45108,9 +45279,6 @@ entities: - type: Transform pos: -83.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 5586 - uid: 5578 components: - type: MetaData @@ -45118,13 +45286,6 @@ entities: - type: Transform pos: -80.5,11.5 parent: 2 - - type: DeviceLinkSink - links: - - 5589 - - 5578 - - type: DeviceLinkSource - linkedPorts: - 5578: [] - uid: 5580 components: - type: MetaData @@ -45132,9 +45293,6 @@ entities: - type: Transform pos: -80.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 5588 - uid: 5582 components: - type: Transform @@ -45203,9 +45361,6 @@ entities: - type: Transform pos: -56.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 9035 - uid: 7912 components: - type: MetaData @@ -45213,9 +45368,6 @@ entities: - type: Transform pos: -54.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 9036 - uid: 7913 components: - type: MetaData @@ -45223,9 +45375,6 @@ entities: - type: Transform pos: -52.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 9037 - uid: 7916 components: - type: Transform @@ -45243,9 +45392,6 @@ entities: - type: Transform pos: -75.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 8050 - uid: 8635 components: - type: MetaData @@ -45253,9 +45399,6 @@ entities: - type: Transform pos: -75.5,13.5 parent: 2 - - type: DeviceLinkSink - links: - - 8243 - uid: 9777 components: - type: Transform @@ -45376,10 +45519,6 @@ entities: - type: Transform pos: -47.5,-31.5 parent: 2 - - type: DeviceLinkSink - links: - - 21310 - - 21309 - uid: 8226 components: - type: MetaData @@ -45387,10 +45526,6 @@ entities: - type: Transform pos: -45.5,-31.5 parent: 2 - - type: DeviceLinkSink - links: - - 21310 - - 21309 - uid: 8238 components: - type: MetaData @@ -45398,10 +45533,6 @@ entities: - type: Transform pos: -53.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 21310 - - 21309 - uid: 20216 components: - type: Transform @@ -45600,9 +45731,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 3594 - uid: 8260 components: - type: Transform @@ -46183,10 +46311,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 21966 - - 445 - - 21963 - type: DeviceLinkSource linkedPorts: 21963: @@ -46204,10 +46328,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 21966 - - 271 - - 21963 - type: DeviceLinkSource linkedPorts: 271: @@ -46225,9 +46345,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 31186 - - 19920 - type: DeviceLinkSource linkedPorts: 19920: @@ -46243,9 +46360,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 31185 - - 19920 - type: DeviceLinkSource linkedPorts: 31185: @@ -46289,8 +46403,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 23684 - type: DeviceLinkSource linkedPorts: 23684: @@ -46305,8 +46417,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 23683 - type: DeviceLinkSource linkedPorts: 23683: @@ -46320,8 +46430,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 26178 - type: DeviceLinkSource linkedPorts: 26178: @@ -46335,8 +46443,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 29621 - type: DeviceLinkSource linkedPorts: 29621: @@ -46430,9 +46536,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 23681 - - 19937 - type: DeviceLinkSource linkedPorts: 23681: @@ -46449,8 +46552,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 23680 - type: DeviceLinkSource linkedPorts: 23680: @@ -46466,9 +46567,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 25347 - - 25346 - type: DeviceLinkSource linkedPorts: 25346: @@ -46484,9 +46582,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 25347 - - 25346 - type: DeviceLinkSource linkedPorts: 25347: @@ -46502,9 +46597,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 25341 - - 25340 - type: DeviceLinkSource linkedPorts: 25341: @@ -46520,9 +46612,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 25341 - - 25340 - type: DeviceLinkSource linkedPorts: 25341: @@ -46540,8 +46629,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 20610 - type: DeviceLinkSource linkedPorts: 20610: @@ -46555,8 +46642,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 12 - type: DeviceLinkSource linkedPorts: 12: @@ -46570,8 +46655,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 11 - type: DeviceLinkSource linkedPorts: 11: @@ -46595,8 +46678,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 9 - type: DeviceLinkSource linkedPorts: 9: @@ -46632,8 +46713,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 26042 - type: DeviceLinkSource linkedPorts: 26042: @@ -46647,8 +46726,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 27786 - type: DeviceLinkSource linkedPorts: 27786: @@ -46662,8 +46739,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 27785 - type: DeviceLinkSource linkedPorts: 27785: @@ -46677,8 +46752,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 29622 - type: DeviceLinkSource linkedPorts: 29622: @@ -46694,9 +46767,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 31185 - - 31186 - type: DeviceLinkSource linkedPorts: 31186: @@ -46712,9 +46782,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 21961 - - 21960 - type: DeviceLinkSource linkedPorts: 21960: @@ -46730,10 +46797,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 21966 - - 445 - - 271 - type: DeviceLinkSource linkedPorts: 21966: @@ -46751,10 +46814,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 445 - - 271 - - 21963 - type: DeviceLinkSource linkedPorts: 445: @@ -46927,9 +46986,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 270 - - 11318 - type: DeviceLinkSource linkedPorts: 270: @@ -46945,9 +47001,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 46 - - 11318 - type: DeviceLinkSource linkedPorts: 11318: @@ -46963,9 +47016,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 46 - - 270 - type: DeviceLinkSource linkedPorts: 270: @@ -46979,9 +47029,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 21961 - - 21962 - type: DeviceLinkSource linkedPorts: 21962: @@ -46995,9 +47042,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 21960 - - 21962 - type: DeviceLinkSource linkedPorts: 21962: @@ -47011,8 +47055,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 24482 - type: DeviceLinkSource linkedPorts: 24482: @@ -47024,8 +47066,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 24477 - type: DeviceLinkSource linkedPorts: 24477: @@ -47037,8 +47077,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 27025 - type: DeviceLinkSource linkedPorts: 27025: @@ -47050,8 +47088,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 27024 - type: DeviceLinkSource linkedPorts: 27024: @@ -47138,15 +47174,15 @@ entities: parent: 55943 - proto: AirlockFreezer entities: - - uid: 6258 + - uid: 1453 components: - type: Transform - pos: -58.5,33.5 + pos: -52.5,33.5 parent: 2 - - uid: 6259 + - uid: 1701 components: - type: Transform - pos: -52.5,33.5 + pos: -58.5,33.5 parent: 2 - proto: AirlockGlass entities: @@ -47730,9 +47766,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 23681 - - 23680 - type: DeviceLinkSource linkedPorts: 23680: @@ -47899,9 +47932,6 @@ entities: - type: Transform pos: -78.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 8050 - uid: 1033 components: - type: Transform @@ -48062,9 +48092,6 @@ entities: rot: 3.141592653589793 rad pos: -87.5,62.5 parent: 2 - - type: DeviceLinkSink - links: - - 51583 - uid: 9907 components: - type: Transform @@ -48086,9 +48113,6 @@ entities: - type: Transform pos: -87.5,46.5 parent: 2 - - type: DeviceLinkSink - links: - - 51583 - uid: 12940 components: - type: Transform @@ -49051,9 +49075,6 @@ entities: - type: Transform pos: -18.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 22626 - uid: 604 components: - type: Transform @@ -49069,10 +49090,6 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 21311 - - 21309 - uid: 2567 components: - type: Transform @@ -49089,9 +49106,6 @@ entities: - type: Transform pos: -30.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 22623 - uid: 4084 components: - type: Transform @@ -49123,10 +49137,6 @@ entities: - type: Transform pos: -53.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 21311 - - 21309 - uid: 11147 components: - type: Transform @@ -49212,17 +49222,11 @@ entities: - type: Transform pos: -26.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 22624 - uid: 20175 components: - type: Transform pos: -22.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 22625 - uid: 21998 components: - type: Transform @@ -49281,17 +49285,11 @@ entities: - type: Transform pos: -15.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 13251 - uid: 3205 components: - type: Transform pos: -13.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 22628 - uid: 8022 components: - type: Transform @@ -49724,15 +49722,6 @@ entities: - type: DeviceNetwork deviceLists: - 8687 - - uid: 14518 - components: - - type: Transform - pos: -102.5,59.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22014 - - 51974 - uid: 17701 components: - type: Transform @@ -49808,6 +49797,14 @@ entities: deviceLists: - 49911 - 51911 + - uid: 36349 + components: + - type: Transform + pos: -104.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22014 - uid: 42729 components: - type: Transform @@ -50055,15 +50052,6 @@ entities: deviceLists: - 50723 - 51927 - - uid: 48481 - components: - - type: Transform - pos: -35.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50742 - - 51924 - uid: 48491 components: - type: Transform @@ -51335,15 +51323,6 @@ entities: - type: DeviceNetwork deviceLists: - 50727 - - uid: 50733 - components: - - type: Transform - pos: -38.5,33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50742 - - 51924 - uid: 50744 components: - type: Transform @@ -51567,15 +51546,6 @@ entities: deviceLists: - 50805 - 51958 - - uid: 50814 - components: - - type: Transform - pos: -102.5,49.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22014 - - 51974 - uid: 50825 components: - type: Transform @@ -52826,6 +52796,14 @@ entities: - type: DeviceNetwork deviceLists: - 54238 + - uid: 53951 + components: + - type: Transform + pos: -104.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22014 - uid: 54744 components: - type: Transform @@ -52845,6 +52823,15 @@ entities: - type: Transform pos: 0.5,4.5 parent: 55142 + - uid: 55449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50742 - uid: 56019 components: - type: Transform @@ -53268,21 +53255,6 @@ entities: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 7677 - components: - - type: MetaData - name: Ксено-археология 1/2 - - type: Transform - pos: 76.5,-33.5 - parent: 2 - - uid: 8192 - components: - - type: MetaData - name: Отдел токсинов - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-41.5 - parent: 2 - uid: 8883 components: - type: MetaData @@ -53291,13 +53263,6 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-63.5 parent: 2 - - uid: 8992 - components: - - type: MetaData - name: Отдел экспериментов - - type: Transform - pos: 61.5,-53.5 - parent: 2 - uid: 9154 components: - type: MetaData @@ -53633,14 +53598,6 @@ entities: rot: -1.5707963267948966 rad pos: 75.5,-24.5 parent: 2 - - uid: 36349 - components: - - type: MetaData - name: Ксено-археология 2/2 - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-42.5 - parent: 2 - uid: 36809 components: - type: MetaData @@ -54483,6 +54440,30 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,19.5 parent: 66965 +- proto: APCHighCapacity + entities: + - uid: 3727 + components: + - type: Transform + pos: 76.5,-33.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-41.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 61.5,-53.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-42.5 + parent: 2 - proto: APCHyperCapacity entities: - uid: 71013 @@ -54973,6 +54954,11 @@ entities: - type: Transform pos: 0.5,-4.5 parent: 55142 + - uid: 55412 + components: + - type: Transform + pos: -29.5,37.5 + parent: 2 - uid: 55946 components: - type: Transform @@ -55079,6 +55065,31 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: + - uid: 6098 + components: + - type: Transform + pos: -29.5,34.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -29.5,35.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: -28.5,35.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + pos: -28.5,37.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: -28.5,36.5 + parent: 2 - uid: 35211 components: - type: Transform @@ -55349,6 +55360,163 @@ entities: - type: Transform pos: 52.5,59.5 parent: 2 + - uid: 46110 + components: + - type: Transform + pos: -29.5,36.5 + parent: 2 + - uid: 47045 + components: + - type: Transform + pos: -30.5,34.5 + parent: 2 + - uid: 47047 + components: + - type: Transform + pos: -28.5,34.5 + parent: 2 + - uid: 47049 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 47051 + components: + - type: Transform + pos: -30.5,37.5 + parent: 2 + - uid: 47052 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 13388 + components: + - type: Transform + pos: -57.5,32.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + pos: -57.5,33.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: -57.5,34.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + pos: -57.5,35.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + pos: -56.5,35.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: -56.5,34.5 + parent: 2 + - uid: 55081 + components: + - type: Transform + pos: -56.5,33.5 + parent: 2 + - uid: 55091 + components: + - type: Transform + pos: -56.5,32.5 + parent: 2 + - uid: 55104 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - uid: 55105 + components: + - type: Transform + pos: -55.5,35.5 + parent: 2 + - uid: 55124 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 55195 + components: + - type: Transform + pos: -55.5,33.5 + parent: 2 + - uid: 55199 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 55207 + components: + - type: Transform + pos: -55.5,31.5 + parent: 2 + - uid: 55208 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 + - uid: 55280 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 55281 + components: + - type: Transform + pos: -54.5,33.5 + parent: 2 + - uid: 55282 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 55283 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 + - uid: 55284 + components: + - type: Transform + pos: -53.5,35.5 + parent: 2 + - uid: 55285 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 55286 + components: + - type: Transform + pos: -53.5,33.5 + parent: 2 + - uid: 55287 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 55288 + components: + - type: Transform + pos: -53.5,31.5 + parent: 2 - proto: Autolathe entities: - uid: 3865 @@ -56769,6 +56937,11 @@ entities: - type: Transform pos: -30.5,51.5 parent: 2 + - uid: 6010 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 - uid: 6815 components: - type: Transform @@ -56814,6 +56987,11 @@ entities: - type: Transform pos: -8.5,22.5 parent: 2 + - uid: 10475 + components: + - type: Transform + pos: 28.5,-53.5 + parent: 2 - uid: 11201 components: - type: Transform @@ -56889,11 +57067,6 @@ entities: - type: Transform pos: 28.5,-52.5 parent: 2 - - uid: 19261 - components: - - type: Transform - pos: 26.5,-52.5 - parent: 2 - uid: 19264 components: - type: Transform @@ -57003,15 +57176,20 @@ entities: parent: 2 - proto: BedsheetBlue entities: - - uid: 18762 + - uid: 6011 components: - type: Transform - pos: -22.5,-73.5 + pos: 28.5,-53.5 parent: 2 - - uid: 19279 + - uid: 11444 components: - type: Transform - pos: 26.5,-52.5 + pos: 28.5,-51.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + pos: -22.5,-73.5 parent: 2 - uid: 19280 components: @@ -57147,40 +57325,26 @@ entities: parent: 2 - proto: BedsheetMedical entities: - - uid: 14899 - components: - - type: Transform - pos: 13.5,-61.5 - parent: 2 - - uid: 14900 - components: - - type: Transform - pos: 17.5,-61.5 - parent: 2 - - uid: 14901 - components: - - type: Transform - pos: 19.5,-61.5 - parent: 2 - - uid: 14903 + - uid: 1442 components: - type: Transform - pos: 21.5,-61.5 + rot: 3.141592653589793 rad + pos: 23.5,-54.5 parent: 2 - - uid: 14904 + - uid: 6092 components: - type: Transform - pos: 23.5,-61.5 + pos: 23.5,-59.5 parent: 2 - - uid: 14905 + - uid: 6130 components: - type: Transform - pos: 23.5,-55.5 + pos: 19.5,-59.5 parent: 2 - - uid: 14906 + - uid: 12325 components: - type: Transform - pos: 23.5,-53.5 + pos: 19.5,-61.5 parent: 2 - uid: 14908 components: @@ -57203,6 +57367,21 @@ entities: - type: Transform pos: -14.5,-19.5 parent: 2 + - uid: 42813 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 2 + - uid: 42903 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 2 + - uid: 45158 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 - uid: 53918 components: - type: Transform @@ -57788,308 +57967,190 @@ entities: - type: Transform pos: 60.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6255 - uid: 4150 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 8688 - uid: 4160 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 8689 - uid: 4285 components: - type: Transform pos: 91.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6226 - uid: 4740 components: - type: Transform pos: 91.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6226 - uid: 5125 components: - type: Transform pos: 67.5,-46.5 parent: 2 - - type: DeviceLinkSink - links: - - 5062 - uid: 5132 components: - type: Transform pos: 88.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6226 - uid: 5142 components: - type: Transform pos: 88.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6226 - uid: 5623 components: - type: Transform pos: 68.5,-46.5 parent: 2 - - type: DeviceLinkSink - links: - - 5062 - uid: 5723 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,50.5 parent: 2 - - type: DeviceLinkSink - links: - - 43723 - - 51722 - uid: 5741 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,49.5 parent: 2 - - type: DeviceLinkSink - links: - - 43723 - - 51722 - uid: 6225 components: - type: Transform pos: 88.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 6223 - uid: 6239 components: - type: Transform pos: 82.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 6240 - - 6269 - uid: 6243 components: - type: Transform pos: 60.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 6255 - uid: 6325 components: - type: Transform pos: 87.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 6349 - - 6348 - uid: 6695 components: - type: Transform pos: -26.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6708 - uid: 6696 components: - type: Transform pos: -24.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6708 - uid: 6697 components: - type: Transform pos: -25.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6708 - uid: 6734 components: - type: Transform pos: 53.5,31.5 parent: 2 - - type: DeviceLinkSink - links: - - 51697 - uid: 6735 components: - type: Transform pos: 53.5,32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51697 - uid: 6737 components: - type: Transform pos: 53.5,33.5 parent: 2 - - type: DeviceLinkSink - links: - - 51697 - uid: 6743 components: - type: Transform pos: 59.5,31.5 parent: 2 - - type: DeviceLinkSink - links: - - 51696 - - 51698 - uid: 6744 components: - type: Transform pos: 59.5,32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51696 - - 51698 - uid: 6745 components: - type: Transform pos: 59.5,33.5 parent: 2 - - type: DeviceLinkSink - links: - - 51696 - - 51698 - uid: 7987 components: - type: Transform pos: 84.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 8708 - uid: 7988 components: - type: Transform pos: 84.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 8708 - uid: 7989 components: - type: Transform pos: 84.5,-34.5 parent: 2 - - type: DeviceLinkSink - links: - - 8709 - uid: 7992 components: - type: Transform pos: 84.5,-36.5 parent: 2 - - type: DeviceLinkSink - links: - - 8709 - uid: 7993 components: - type: Transform pos: 84.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 8709 - uid: 8017 components: - type: Transform pos: 84.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 8708 - uid: 8437 components: - type: Transform pos: 70.5,-69.5 parent: 2 - - type: DeviceLinkSink - links: - - 51808 - uid: 8438 components: - type: Transform pos: 69.5,-69.5 parent: 2 - - type: DeviceLinkSink - links: - - 51808 - uid: 8600 components: - type: Transform pos: 68.5,-69.5 parent: 2 - - type: DeviceLinkSink - links: - - 51808 - uid: 8787 components: - type: Transform pos: 52.5,-69.5 parent: 2 - - type: DeviceLinkSink - links: - - 51807 - uid: 8788 components: - type: Transform pos: 51.5,-69.5 parent: 2 - - type: DeviceLinkSink - links: - - 51807 - uid: 8791 components: - type: Transform pos: 50.5,-69.5 parent: 2 - - type: DeviceLinkSink - links: - - 51807 - uid: 10191 components: - type: Transform pos: 10.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 32489 - uid: 11492 components: - type: Transform @@ -58106,139 +58167,87 @@ entities: - type: Transform pos: -43.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 21293 - uid: 20459 components: - type: Transform pos: -43.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 21295 - uid: 21589 components: - type: Transform pos: -80.5,-34.5 parent: 2 - - type: DeviceLinkSink - links: - - 51133 - uid: 21590 components: - type: Transform pos: -80.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 51133 - uid: 21604 components: - type: Transform pos: -80.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51133 - uid: 31722 components: - type: Transform pos: 29.5,-69.5 parent: 2 - - type: DeviceLinkSink - links: - - 32411 - uid: 31751 components: - type: Transform pos: 23.5,-72.5 parent: 2 - - type: DeviceLinkSink - links: - - 32402 - uid: 31796 components: - type: Transform pos: 2.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 32411 - uid: 31802 components: - type: Transform pos: 10.5,-74.5 parent: 2 - - type: DeviceLinkSink - links: - - 32411 - uid: 31803 components: - type: Transform pos: 7.5,-72.5 parent: 2 - - type: DeviceLinkSink - links: - - 32393 - uid: 32012 components: - type: Transform pos: 24.5,-87.5 parent: 2 - - type: DeviceLinkSink - links: - - 32241 - uid: 32019 components: - type: Transform pos: 22.5,-83.5 parent: 2 - - type: DeviceLinkSink - links: - - 32402 - uid: 32081 components: - type: Transform pos: 16.5,-72.5 parent: 2 - - type: DeviceLinkSink - links: - - 32240 - uid: 43722 components: - type: Transform pos: 66.5,-46.5 parent: 2 - - type: DeviceLinkSink - links: - - 5062 - uid: 51679 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,61.5 parent: 2 - - type: DeviceLinkSink - links: - - 24650 - - 51680 - uid: 53919 components: - type: Transform pos: 3.5,-5.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54399 - uid: 53920 components: - type: Transform pos: -4.5,-0.5 parent: 53899 - - type: DeviceLinkSink - links: - - 53811 - type: DeviceLinkSource linkedPorts: 54400: @@ -58249,9 +58258,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 53899 - - type: DeviceLinkSink - links: - - 53811 - type: DeviceLinkSource linkedPorts: 54402: @@ -58262,9 +58268,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 53899 - - type: DeviceLinkSink - links: - - 53809 - type: DeviceLinkSource linkedPorts: 54402: @@ -58274,9 +58277,6 @@ entities: - type: Transform pos: 5.5,-0.5 parent: 53899 - - type: DeviceLinkSink - links: - - 53809 - type: DeviceLinkSource linkedPorts: 54400: @@ -58309,36 +58309,24 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 7840 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 8348 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 8612 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 11486 components: - type: Transform @@ -58372,206 +58360,128 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-72.5 parent: 2 - - type: DeviceLinkSink - links: - - 17829 - uid: 17493 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 17828 - uid: 18529 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 17827 - uid: 18537 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-72.5 parent: 2 - - type: DeviceLinkSink - links: - - 17826 - uid: 20651 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 20863 - - 45266 - - 22599 - uid: 20652 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 20863 - - 45266 - - 22599 - uid: 20653 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 20863 - - 45266 - - 22599 - uid: 22297 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 20949 - - 51313 - - 51312 - uid: 22298 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-25.5 parent: 2 - - type: DeviceLinkSink - links: - - 20949 - - 51313 - - 51312 - uid: 22299 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 20949 - - 51313 - - 51312 - uid: 26208 components: - type: Transform pos: -90.5,-45.5 parent: 2 - - type: DeviceLinkSink - links: - - 26472 - uid: 26209 components: - type: Transform pos: -90.5,-51.5 parent: 2 - - type: DeviceLinkSink - links: - - 26373 - uid: 41516 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 41518 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 53924 components: - type: Transform pos: 2.5,-0.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - uid: 53925 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - uid: 53926 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - uid: 53927 components: - type: Transform pos: -1.5,-0.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - uid: 53928 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,16.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - uid: 53929 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,16.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - uid: 54766 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-10.5 parent: 54730 - - type: DeviceLinkSink - links: - - 54901 - uid: 54767 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-10.5 parent: 54730 - - type: DeviceLinkSink - links: - - 54901 - proto: BlockGameArcade entities: - uid: 2155 @@ -58819,14 +58729,6 @@ entities: parent: 2 - type: Paper content: "──────────────────────────────────────\r\n┌───────────────┐\r\n│██░███░░░░██░░░│ <ПОСОБИЕ ПИЛОТА>\r\n│░█░████░░░██░░░│ ASSS MK-738\r\n│░░░██░██░░██░░░| ASSS Hole MK-545\r\n│░░░██░░██░██░█░│ *NT CLASSIFIED*\r\n│░░░██░░░████░██│\r\n└───────────────┘\r\n──────────────────────────────────────\n ● О шаттлах Avrite\r●\nПатрульный шаттл ASSS MK-738 и боевой шаттл ASSS Hole MK-545, используемые станцией Avrite являются гордостью учёных и инженеров NanoTrasen. Всё потому, что данные шаттлы оборудованы Продвинутой системой пилотирования типа ACE. \n\r\n ● Управление с технологией ACE\r●\nПо центру панели расположен сенсорный экран, на котором можно увидеть шаттл и всё, что его окружает в космическом пространстве. Используйте сенсоры экрана для изменения масштаба, а так же для управления стыковочными шлюзами.\n\r\nДля отстыковки выберите пристыкованный шлюз в меню и нажмите «отстыковать».\n\r\nДля стыковки выберите нужный ваш шлюз в меню и плавным движением соедините его со шлюзом, к которому вы хотите пристыковаться.\n\r\nASSS MK-738 и ASSS Hole MK-545 сделаны по современным стандартам шаттлостроения, потому они поддерживают следующие типы перемещения и их комбинации:\r\n1. Крен – вращательное движение шаттла.\r\n2. Тангаж – поступательное движение шаттла вперёд и назад.\r\n3. Рыскание – поступательное движение влево и вправо.\r\n\nПомимо описанного выше, шаттлы так же обладает режимом Ускоренного Торможения. При использовании этого режима шаттл быстро замедляется и останавливается, что даёт возможность качественнее стыковаться и лучше маневрировать в космосе.\r\n\r\n\n ● Задачи пилота СБ Avrite\r●\nПилот СБ Avrite получает оба шаттла под свою ответственность, и должен выполнять следующие задачи:\r\n1. Патруль пространства вокруг станции\r\n2. Транспортировка пожизненных заключённых на Каторгу «Добрый Самаритянин»\r\n3. Транспортировка сотрудников СБ для выполнения задач за пределами станции\r\n\n ● Внимание\r●\nУтеря Пособия наказуема арестом по статье 207 «Халатность» и немедленным снятием с должности Пилота СБ.\n\r\nДопуск угона или угон ASSS MK-738 или ASSS Hole MK-545 наказуем арестом по статье 407 «Грубая халатность», немедленным увольнением из СБ, а так же штрафом, размером в стоимость строительства угнанного шаттла.\n \r\nПо окончанию прочтения Пособия, будущий или текущий пилот СБ должен немедленно приступить к выполнению обязанностей.\r\n" -- proto: BookChefGaming - entities: - - uid: 13339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.451912,-46.424217 - parent: 2 - proto: BookChemicalCompendium entities: - uid: 18018 @@ -58849,6 +58751,14 @@ entities: rot: 1.5707963267948966 rad pos: 16.514175,33.847744 parent: 2 +- proto: BookHowToCookForFortySpaceman + entities: + - uid: 13339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.451912,-46.424217 + parent: 2 - proto: BookIanAntarctica entities: - uid: 18703 @@ -59014,11 +58924,6 @@ entities: - type: Transform pos: -5.5867877,39.602287 parent: 2 - - uid: 14605 - components: - - type: Transform - pos: 23.510727,-54.433235 - parent: 2 - uid: 18469 components: - type: Transform @@ -60043,6 +59948,12 @@ entities: - type: Transform pos: 56.860237,9.684974 parent: 2 + - uid: 8734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.561799,-61.226894 + parent: 2 - uid: 12418 components: - type: Transform @@ -60429,6 +60340,11 @@ entities: - type: Transform pos: 11.261681,34.636475 parent: 2 + - uid: 55443 + components: + - type: Transform + pos: -16.322649,34.22732 + parent: 2 - proto: BoxLighttube entities: - uid: 16105 @@ -60441,6 +60357,16 @@ entities: - type: Transform pos: 46.5,-4.5 parent: 2 + - uid: 55444 + components: + - type: Transform + pos: -20.856668,34.67331 + parent: 2 + - uid: 55445 + components: + - type: Transform + pos: -20.75261,34.62871 + parent: 2 - proto: BoxMagazinePistolPractice entities: - uid: 19793 @@ -60961,7 +60887,7 @@ entities: - uid: 13599 components: - type: Transform - pos: 11.469373,-53.36902 + pos: 10.55945,-54.15304 parent: 2 - uid: 18273 components: @@ -61516,6 +61442,11 @@ entities: - type: Transform pos: -66.32496,-84.31056 parent: 2 + - uid: 42807 + components: + - type: Transform + pos: 13.576664,-59.984127 + parent: 2 - uid: 67164 components: - type: Transform @@ -61630,6 +61561,11 @@ entities: - type: Transform pos: 25.305855,-61.597523 parent: 2 + - uid: 55442 + components: + - type: Transform + pos: -20.981472,32.37757 + parent: 2 - uid: 67166 components: - type: Transform @@ -125866,13 +125802,6 @@ entities: - type: Transform pos: -9.214966,-22.367533 parent: 2 -- proto: CandleBlack - entities: - - uid: 23657 - components: - - type: Transform - pos: -37.378223,35.79562 - parent: 2 - proto: CandleBlackInfinite entities: - uid: 9646 @@ -125947,6 +125876,12 @@ entities: rot: 1.5707963267948966 rad pos: -91.639084,-46.444267 parent: 2 + - uid: 55428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.419704,35.15613 + parent: 2 - proto: CandleBlackSmall entities: - uid: 12139 @@ -125954,11 +125889,6 @@ entities: - type: Transform pos: -60.14811,65.5793 parent: 2 - - uid: 23655 - components: - - type: Transform - pos: -37.64385,35.57687 - parent: 2 - proto: CandleBlackSmallInfinite entities: - uid: 9649 @@ -126016,6 +125946,12 @@ entities: - type: Transform pos: 8.973921,-84.533 parent: 2 + - uid: 55429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.627823,35.022335 + parent: 2 - proto: CandleBlue entities: - uid: 6961 @@ -126656,21 +126592,6 @@ entities: - type: Transform pos: -64.5,63.5 parent: 2 - - uid: 5986 - components: - - type: Transform - pos: -36.5,30.5 - parent: 2 - - uid: 6010 - components: - - type: Transform - pos: -35.5,30.5 - parent: 2 - - uid: 6011 - components: - - type: Transform - pos: -34.5,30.5 - parent: 2 - uid: 7966 components: - type: Transform @@ -126964,6 +126885,23 @@ entities: - type: Transform pos: -59.5,-19.5 parent: 2 + - uid: 47969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,31.5 + parent: 2 + - uid: 55423 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 55424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,32.5 + parent: 2 - uid: 67366 components: - type: Transform @@ -127369,6 +127307,42 @@ entities: - type: Transform pos: -59.5,-87.5 parent: 2 + - uid: 55432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,31.5 + parent: 2 + - uid: 55433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,32.5 + parent: 2 + - uid: 55434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,33.5 + parent: 2 + - uid: 55435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,34.5 + parent: 2 + - uid: 55436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - uid: 55437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,36.5 + parent: 2 - proto: CarpetBlue entities: - uid: 3742 @@ -139064,18 +139038,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.3590055,11.65698 parent: 2 - - uid: 11594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.454785,-60.458813 - parent: 2 - - uid: 11597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.53291,-54.443188 - parent: 2 - uid: 11598 components: - type: Transform @@ -139408,17 +139370,6 @@ entities: rot: 3.141592653589793 rad pos: 16.884619,-56.286938 parent: 2 - - uid: 15434 - components: - - type: Transform - pos: 14.321617,-60.155563 - parent: 2 - - uid: 15436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.475029,-53.624313 - parent: 2 - uid: 16126 components: - type: Transform @@ -139488,6 +139439,12 @@ entities: rot: 1.5707963267948966 rad pos: 64.934685,-14.178745 parent: 2 + - uid: 47038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-60.5 + parent: 2 - uid: 54164 components: - type: Transform @@ -139748,62 +139705,40 @@ entities: parent: 2 - proto: ChairWood entities: - - uid: 2600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -98.43131,15.513179 - parent: 2 - - uid: 6094 - components: - - type: Transform - pos: -39.5,34.5 - parent: 2 - - uid: 6095 - components: - - type: Transform - pos: -34.5,35.5 - parent: 2 - - uid: 6096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,32.5 - parent: 2 - - uid: 6097 + - uid: 1779 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,35.5 + pos: -35.5,35.5 parent: 2 - - uid: 6098 + - uid: 2600 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,35.5 + pos: -98.43131,15.513179 parent: 2 - uid: 6099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,32.5 + rot: -1.5707963267948966 rad + pos: -35.5,34.5 parent: 2 - - uid: 6100 + - uid: 6259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,32.5 + rot: 1.5707963267948966 rad + pos: -37.5,32.5 parent: 2 - - uid: 6101 + - uid: 6891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,33.5 + pos: -74.5,21.5 parent: 2 - - uid: 6891 + - uid: 7208 components: - type: Transform - pos: -74.5,21.5 + rot: 1.5707963267948966 rad + pos: -37.5,34.5 parent: 2 - uid: 7427 components: @@ -139956,6 +139891,18 @@ entities: rot: 1.5707963267948966 rad pos: 19.536266,-63.33123 parent: 2 + - uid: 11579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,34.5 + parent: 2 + - uid: 11580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 - uid: 11713 components: - type: Transform @@ -140491,6 +140438,30 @@ entities: rot: 3.141592653589793 rad pos: -64.5,73.5 parent: 2 + - uid: 30096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - uid: 30570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,35.5 + parent: 2 + - uid: 41539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,35.5 + parent: 2 + - uid: 47050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,32.5 + parent: 2 - proto: CheapLighter entities: - uid: 14803 @@ -140608,6 +140579,18 @@ entities: rot: -1.5707963267948966 rad pos: -3.3637543,-13.543121 parent: 53899 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 55484 + components: + - type: Transform + pos: 21.44777,-61.236458 + parent: 2 + - uid: 55485 + components: + - type: Transform + pos: 21.34371,-61.429718 + parent: 2 - proto: ChemistryEmptyBottle03 entities: - uid: 6715 @@ -140706,11 +140689,6 @@ entities: rot: 3.141592653589793 rad pos: -47.519207,56.580315 parent: 2 - - uid: 23658 - components: - - type: Transform - pos: -39.520557,33.63432 - parent: 2 - uid: 26751 components: - type: Transform @@ -141695,21 +141673,6 @@ entities: - type: Transform pos: 7.5,-42.5 parent: 2 - - uid: 13388 - components: - - type: Transform - pos: 21.5,-53.5 - parent: 2 - - uid: 13389 - components: - - type: Transform - pos: 21.5,-54.5 - parent: 2 - - uid: 13390 - components: - - type: Transform - pos: 21.5,-55.5 - parent: 2 - uid: 13447 components: - type: Transform @@ -142537,6 +142500,16 @@ entities: - type: Transform pos: 10.5,62.5 parent: 2 + - uid: 8992 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: -53.5,25.5 + parent: 2 - uid: 14880 components: - type: Transform @@ -142699,11 +142672,6 @@ entities: - type: Transform pos: 71.5,-50.5 parent: 2 - - uid: 22645 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 - uid: 22646 components: - type: Transform @@ -142714,11 +142682,6 @@ entities: - type: Transform pos: -69.5,-1.5 parent: 2 - - uid: 22653 - components: - - type: Transform - pos: -53.5,25.5 - parent: 2 - uid: 22654 components: - type: Transform @@ -147325,6 +147288,11 @@ entities: - type: Transform pos: -18.49618,-53.39322 parent: 2 + - uid: 55482 + components: + - type: Transform + pos: 21.524384,-59.40262 + parent: 2 - proto: ClothingNeckStoleChaplain entities: - uid: 12613 @@ -152120,811 +152088,522 @@ entities: rot: -1.5707963267948966 rad pos: 88.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 6349 - - 6348 - uid: 2263 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 2815 components: - type: Transform pos: 82.5,11.5 parent: 2 - - type: DeviceLinkSink - links: - - 6240 - - 6269 - uid: 4175 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 4224 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4234 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4236 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4247 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-8.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4270 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4347 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4356 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4358 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4359 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4360 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4361 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 4369 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5145 components: - type: Transform pos: 86.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5149 components: - type: Transform pos: 86.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5150 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5155 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5156 components: - type: Transform pos: 86.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5157 components: - type: Transform pos: 86.5,-6.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5158 components: - type: Transform pos: 86.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5159 components: - type: Transform pos: 86.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5160 components: - type: Transform pos: 86.5,-8.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5161 components: - type: Transform pos: 86.5,-9.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5162 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5163 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5164 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5165 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5166 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5167 components: - type: Transform pos: 86.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5168 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5169 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 5170 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5171 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5172 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5173 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5174 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5175 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5176 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5177 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5178 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5179 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5180 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5181 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5182 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5183 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5184 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 5185 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-9.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 6149 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,39.5 parent: 2 - - type: DeviceLinkSink - links: - - 6242 - uid: 6150 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,39.5 parent: 2 - - type: DeviceLinkSink - links: - - 6242 - uid: 6195 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6196 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6197 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6198 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6199 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6200 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6201 components: - type: Transform pos: 84.5,-23.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6202 components: - type: Transform pos: 84.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6203 components: - type: Transform pos: 84.5,-21.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - uid: 6227 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 6228 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 6229 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-6.5 parent: 2 - - type: DeviceLinkSink - links: - - 6270 - uid: 6234 components: - type: Transform pos: 82.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 6240 - - 6269 - uid: 6235 components: - type: Transform pos: 82.5,9.5 parent: 2 - - type: DeviceLinkSink - links: - - 6240 - - 6269 - uid: 6237 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 6238 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 6241 components: - type: Transform pos: 86.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 6284 - uid: 6246 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 6255 - uid: 6247 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 6255 - uid: 6248 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 6255 - uid: 6250 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6255 - uid: 6251 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6255 - uid: 6252 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6255 - uid: 6345 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 6349 - - 6348 - uid: 6346 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 6349 - - 6348 - uid: 13588 components: - type: Transform pos: 18.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 13634 - uid: 13597 components: - type: Transform pos: 18.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 13634 - uid: 13614 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - type: DeviceLinkSink - links: - - 13634 - uid: 13615 components: - type: Transform pos: 18.5,-48.5 parent: 2 - - type: DeviceLinkSink - links: - - 13634 - uid: 19755 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19756 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19757 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19758 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19759 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19760 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19761 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19762 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-38.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19763 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - uid: 19764 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 19770 - - 19769 - proto: CounterMetalFrame entities: - uid: 521 @@ -153971,7 +153650,6 @@ entities: occludes: True ent: null - type: Label - originalName: ящик Иана и Алисы currentLabel: 'Поставка: Собаки Ke.' - uid: 19275 components: @@ -155056,15 +154734,10 @@ entities: parent: 66965 - proto: CryogenicSleepUnit entities: - - uid: 19259 - components: - - type: Transform - pos: 28.5,-51.5 - parent: 2 - - uid: 19262 + - uid: 10450 components: - type: Transform - pos: 28.5,-53.5 + pos: 26.5,-52.5 parent: 2 - uid: 19263 components: @@ -155448,11 +155121,6 @@ entities: parent: 2 - proto: CurtainsGreenOpen entities: - - uid: 3727 - components: - - type: Transform - pos: 26.5,-51.5 - parent: 2 - uid: 9805 components: - type: Transform @@ -155464,41 +155132,6 @@ entities: - type: Transform pos: -59.5,-59.5 parent: 2 - - uid: 19265 - components: - - type: Transform - pos: 26.5,-50.5 - parent: 2 - - uid: 19266 - components: - - type: Transform - pos: 26.5,-52.5 - parent: 2 - - uid: 19270 - components: - - type: Transform - pos: 26.5,-53.5 - parent: 2 - - uid: 19271 - components: - - type: Transform - pos: 28.5,-50.5 - parent: 2 - - uid: 19272 - components: - - type: Transform - pos: 28.5,-51.5 - parent: 2 - - uid: 19273 - components: - - type: Transform - pos: 28.5,-52.5 - parent: 2 - - uid: 19274 - components: - - type: Transform - pos: 28.5,-53.5 - parent: 2 - proto: CurtainsOrange entities: - uid: 4614 @@ -155639,7 +155272,7 @@ entities: pos: -12.5,61.5 parent: 2 - type: Door - secondsUntilStateChange: -355268.75 + secondsUntilStateChange: -368777.38 state: Closing - proto: CurtainsPurple entities: @@ -155893,8 +155526,7 @@ entities: - uid: 6126 components: - type: Transform - rot: 0.5235987755982988 rad - pos: -31.490768,33.448498 + pos: -32.556396,30.770039 parent: 2 - uid: 26190 components: @@ -155918,12 +155550,6 @@ entities: parent: 2 - proto: DartPurple entities: - - uid: 6124 - components: - - type: Transform - rot: 0.5235987755982988 rad - pos: -31.662643,33.620373 - parent: 2 - uid: 26197 components: - type: Transform @@ -155944,14 +155570,13 @@ entities: - type: Transform pos: 53.446926,-12.375677 parent: 2 -- proto: DartYellow - entities: - - uid: 6130 + - uid: 55427 components: - type: Transform - rot: 0.5235987755982988 rad - pos: -31.443893,33.573498 + pos: -32.660458,30.48758 parent: 2 +- proto: DartYellow + entities: - uid: 21627 components: - type: Transform @@ -155986,6 +155611,12 @@ entities: - type: Transform pos: 53.4313,-12.235052 parent: 2 + - uid: 55426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.259083,30.695705 + parent: 2 - proto: DawInstrumentMachineCircuitboard entities: - uid: 16185 @@ -157264,10 +156895,11 @@ entities: parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 1779 + - uid: 6090 components: - type: Transform - pos: 18.5,-62.5 + rot: -1.5707963267948966 rad + pos: 24.5,-54.5 parent: 2 - uid: 21497 components: @@ -157303,6 +156935,12 @@ entities: - type: Transform pos: -2.5,3.5 parent: 2 + - uid: 47074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-68.5 + parent: 2 - uid: 54850 components: - type: Transform @@ -159930,6 +159568,12 @@ entities: - type: Transform pos: -100.5,51.5 parent: 2 + - uid: 14605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,32.5 + parent: 2 - uid: 14884 components: - type: Transform @@ -165510,11 +165154,6 @@ entities: - type: Transform pos: -38.5,31.5 parent: 2 - - uid: 36203 - components: - - type: Transform - pos: -38.5,32.5 - parent: 2 - uid: 36204 components: - type: Transform @@ -174495,6 +174134,13 @@ entities: - type: Transform pos: 48.297565,48.637276 parent: 2 +- proto: DrinkBeerGrowler + entities: + - uid: 47040 + components: + - type: Transform + pos: -34.51577,43.905556 + parent: 2 - proto: DrinkBerryJuice entities: - uid: 7023 @@ -175376,11 +175022,6 @@ entities: parent: 2 - proto: DrinkGreenTea entities: - - uid: 14621 - components: - - type: Transform - pos: 22.522572,-61.422535 - parent: 2 - uid: 31399 components: - type: Transform @@ -176167,11 +175808,6 @@ entities: - type: Transform pos: -8.704701,45.210316 parent: 2 - - uid: 14620 - components: - - type: Transform - pos: 16.563587,-61.31316 - parent: 2 - uid: 53802 components: - type: Transform @@ -176985,6 +176621,12 @@ entities: rot: 1.5707963267948966 rad pos: -106.5,62.5 parent: 2 + - uid: 13295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 2 - uid: 15247 components: - type: Transform @@ -178433,12 +178075,6 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-29.5 parent: 2 - - uid: 53550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-56.5 - parent: 2 - uid: 53551 components: - type: Transform @@ -179142,6 +178778,16 @@ entities: - type: Transform pos: -22.684105,-69.65106 parent: 2 + - uid: 55481 + components: + - type: Transform + pos: 23.673697,-53.44686 + parent: 2 + - uid: 55483 + components: + - type: Transform + pos: 21.68562,-61.38512 + parent: 2 - proto: ERTSpawnerEngineering entities: - uid: 54232 @@ -179149,9 +178795,6 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - proto: ERTSpawnerLeader entities: - uid: 54233 @@ -179159,9 +178802,6 @@ entities: - type: Transform pos: -5.5,-6.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - proto: ERTSpawnerMedical entities: - uid: 54234 @@ -179169,9 +178809,6 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - proto: ERTSpawnerSrcurity entities: - uid: 54235 @@ -179179,25 +178816,16 @@ entities: - type: Transform pos: 6.5,-4.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - uid: 54236 components: - type: Transform pos: 6.5,-5.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - uid: 54237 components: - type: Transform pos: 6.5,-6.5 parent: 53899 - - type: DeviceLinkSink - links: - - 54462 - proto: EvidenceMarkerEight entities: - uid: 21639 @@ -180311,6 +179939,16 @@ entities: - type: Transform pos: -91.5,-47.5 parent: 2 + - uid: 42925 + components: + - type: Transform + pos: 14.25,-61.5 + parent: 2 + - uid: 45152 + components: + - type: Transform + pos: 14.75,-61.5 + parent: 2 - proto: filingCabinetTallRandom entities: - uid: 5263 @@ -180633,7 +180271,6 @@ entities: - 46147 - 46149 - 46150 - - 41539 - 46738 - 31710 - 50671 @@ -180880,9 +180517,6 @@ entities: devices: - 47483 - 47482 - - 48481 - - 42802 - - 50733 - 47485 - 47484 - 50734 @@ -181775,15 +181409,9 @@ entities: parent: 2 - type: DeviceList devices: - - 14518 - - 50814 - - 47018 - - 47022 - 50802 - 50803 - 50804 - - 45158 - - 45691 - uid: 51975 components: - type: Transform @@ -182228,8 +181856,11 @@ entities: - uid: 47177 components: - type: Transform + rot: -1.5707963267948966 rad pos: 9.863173,-20.066223 parent: 2 + - type: Spray + transferAmount: 0 - uid: 67434 components: - type: Transform @@ -191840,6 +191471,118 @@ entities: - type: Transform pos: -26.395006,63.85367 parent: 2 +- proto: FloorAzureWaterEntity + entities: + - uid: 13389 + components: + - type: Transform + pos: -17.5,63.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: -20.5,65.5 + parent: 2 + - uid: 13528 + components: + - type: Transform + pos: -21.5,64.5 + parent: 2 + - uid: 13533 + components: + - type: Transform + pos: -21.5,63.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: -18.5,65.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: -20.5,64.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + pos: -19.5,64.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + pos: -19.5,65.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: -17.5,65.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + pos: -19.5,63.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + pos: -18.5,64.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: -18.5,63.5 + parent: 2 + - uid: 13751 + components: + - type: Transform + pos: -17.5,64.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: -20.5,63.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: -21.5,65.5 + parent: 2 + - uid: 53953 + components: + - type: Transform + pos: -17.5,66.5 + parent: 2 + - uid: 55038 + components: + - type: Transform + pos: -17.5,67.5 + parent: 2 + - uid: 55056 + components: + - type: Transform + pos: -18.5,66.5 + parent: 2 + - uid: 55067 + components: + - type: Transform + pos: -18.5,67.5 + parent: 2 + - uid: 55068 + components: + - type: Transform + pos: -19.5,66.5 + parent: 2 + - uid: 55071 + components: + - type: Transform + pos: -19.5,67.5 + parent: 2 + - uid: 55072 + components: + - type: Transform + pos: -20.5,66.5 + parent: 2 - proto: FloorCarpetItemCyan entities: - uid: 7882 @@ -192274,67 +192017,12 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,81.5 parent: 2 - - uid: 8012 - components: - - type: Transform - pos: -21.5,63.5 - parent: 2 - - uid: 8466 - components: - - type: Transform - pos: -19.5,66.5 - parent: 2 - - uid: 9658 - components: - - type: Transform - pos: -20.5,63.5 - parent: 2 - - uid: 9746 - components: - - type: Transform - pos: -18.5,65.5 - parent: 2 - uid: 9845 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,84.5 parent: 2 - - uid: 10449 - components: - - type: Transform - pos: -20.5,64.5 - parent: 2 - - uid: 10450 - components: - - type: Transform - pos: -17.5,64.5 - parent: 2 - - uid: 10455 - components: - - type: Transform - pos: -18.5,64.5 - parent: 2 - - uid: 10472 - components: - - type: Transform - pos: -18.5,63.5 - parent: 2 - - uid: 10475 - components: - - type: Transform - pos: -17.5,65.5 - parent: 2 - - uid: 10476 - components: - - type: Transform - pos: -21.5,64.5 - parent: 2 - - uid: 10479 - components: - - type: Transform - pos: -18.5,66.5 - parent: 2 - uid: 12149 components: - type: Transform @@ -192969,61 +192657,6 @@ entities: - type: Transform pos: 14.5,-85.5 parent: 2 - - uid: 30082 - components: - - type: Transform - pos: -19.5,63.5 - parent: 2 - - uid: 30084 - components: - - type: Transform - pos: -17.5,63.5 - parent: 2 - - uid: 30085 - components: - - type: Transform - pos: -17.5,66.5 - parent: 2 - - uid: 30087 - components: - - type: Transform - pos: -20.5,66.5 - parent: 2 - - uid: 30088 - components: - - type: Transform - pos: -21.5,65.5 - parent: 2 - - uid: 30091 - components: - - type: Transform - pos: -19.5,67.5 - parent: 2 - - uid: 30092 - components: - - type: Transform - pos: -20.5,65.5 - parent: 2 - - uid: 30093 - components: - - type: Transform - pos: -18.5,67.5 - parent: 2 - - uid: 30094 - components: - - type: Transform - pos: -19.5,64.5 - parent: 2 - - uid: 30095 - components: - - type: Transform - pos: -17.5,67.5 - parent: 2 - - uid: 30096 - components: - - type: Transform - pos: -19.5,65.5 - parent: 2 - proto: FloraRockSolid01 entities: - uid: 17753 @@ -195890,6 +195523,11 @@ entities: - type: Transform pos: -14.76681,-61.03669 parent: 2 + - uid: 55488 + components: + - type: Transform + pos: 19.559834,-60.374218 + parent: 2 - proto: FoodSnackCookieFortune entities: - uid: 9182 @@ -195907,6 +195545,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 55487 + components: + - type: Transform + pos: 19.50037,-60.270157 + parent: 2 - proto: FoodSnackEnergyBar entities: - uid: 12826 @@ -196001,7 +195644,7 @@ entities: - uid: 23659 components: - type: Transform - pos: -34.471973,34.748745 + pos: -36.5,32.75 parent: 2 - proto: FoodSoupMeatball entities: @@ -196816,6 +196459,9 @@ entities: - type: Transform pos: 39.5,68.5 parent: 2 + - type: GasMiner + spawnAmount: 1200 + maxExternalPressure: 15000 - proto: GasMinerOxygenStationLarge entities: - uid: 2665 @@ -196953,6 +196599,14 @@ entities: color: '#0000FFFF' - proto: GasPassiveVent entities: + - uid: 7209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' - uid: 8499 components: - type: Transform @@ -197045,6 +196699,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#000000FF' + - uid: 47048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' - uid: 52291 components: - type: Transform @@ -197170,6 +196832,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13826 + components: + - type: Transform + pos: -99.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14415 components: - type: Transform @@ -197186,6 +196863,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 14518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14620 + components: + - type: Transform + pos: -31.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 15650 components: - type: Transform @@ -197310,6 +197018,14 @@ entities: - type: Transform pos: -71.5,-33.5 parent: 2 + - uid: 23654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 24273 components: - type: Transform @@ -197341,6 +197057,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#000000FF' + - uid: 30087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 31840 components: - type: Transform @@ -197357,6 +197089,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 36203 + components: + - type: Transform + pos: -100.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 40731 components: - type: Transform @@ -198054,21 +197793,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 46453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 46457 - components: - - type: Transform - pos: -100.5,58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 46494 components: - type: Transform @@ -198297,21 +198021,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 47027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47031 - components: - - type: Transform - pos: -101.5,66.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 47087 components: - type: Transform @@ -198327,14 +198036,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 47336 components: - type: Transform @@ -198838,28 +198539,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 49898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 49899 - components: - - type: Transform - pos: 22.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 49901 - components: - - type: Transform - pos: 22.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 49902 components: - type: Transform @@ -199156,6 +198835,108 @@ entities: parent: 55142 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 55291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55292 + components: + - type: Transform + pos: 42.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55398 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 56183 components: - type: Transform @@ -199421,6 +199202,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 30085 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 42131 components: - type: Transform @@ -199449,13 +199237,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42925 - components: - - type: Transform - pos: -38.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 43558 components: - type: Transform @@ -200055,6 +199836,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 3407 + components: + - type: Transform + pos: -100.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 3447 components: - type: Transform @@ -200548,6 +200336,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 13868 + components: + - type: Transform + pos: -99.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 13878 components: - type: Transform @@ -200653,6 +200448,60 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14611 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14619 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 15194 components: - type: Transform @@ -200722,6 +200571,22 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-49.5 parent: 2 + - uid: 15450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 15459 components: - type: Transform @@ -201084,6 +200949,78 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 19259 + components: + - type: Transform + pos: -99.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19262 + components: + - type: Transform + pos: -99.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19265 + components: + - type: Transform + pos: -99.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19266 + components: + - type: Transform + pos: -99.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19271 + components: + - type: Transform + pos: -99.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19272 + components: + - type: Transform + pos: -99.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19273 + components: + - type: Transform + pos: -99.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19279 + components: + - type: Transform + pos: -99.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 21672 components: - type: Transform @@ -201122,6 +201059,56 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,-33.5 parent: 2 + - uid: 22486 + components: + - type: Transform + pos: -99.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22490 + components: + - type: Transform + pos: -99.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23652 + components: + - type: Transform + pos: -99.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23658 + components: + - type: Transform + pos: -31.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,32.5 + parent: 2 - uid: 26975 components: - type: Transform @@ -201200,6 +201187,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 30082 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30088 + components: + - type: Transform + pos: -99.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30095 + components: + - type: Transform + pos: -100.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 30832 components: - type: Transform @@ -203451,34 +203467,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42812 - components: - - type: Transform - pos: -32.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42813 - components: - - type: Transform - pos: -32.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42814 - components: - - type: Transform - pos: -32.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42815 - components: - - type: Transform - pos: -32.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 42816 components: - type: Transform @@ -203486,27 +203474,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 42817 - components: - - type: Transform - pos: -32.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42818 - components: - - type: Transform - pos: -32.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42819 - components: - - type: Transform - pos: -32.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 42823 components: - type: Transform @@ -203598,45 +203565,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 42901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42906 - components: - - type: Transform - pos: -32.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 42948 components: - type: Transform @@ -203719,14 +203647,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 42965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 42966 components: - type: Transform @@ -208403,6 +208323,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 45691 + components: + - type: Transform + pos: 42.5,67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' - uid: 45699 components: - type: Transform @@ -208419,6 +208346,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 45701 + components: + - type: Transform + pos: 42.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' - uid: 45720 components: - type: Transform @@ -209660,13 +209594,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 46123 - components: - - type: Transform - pos: -0.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 46124 components: - type: Transform @@ -209791,30 +209718,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 46159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 46160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 46161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 46162 components: - type: Transform @@ -210149,14 +210052,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 46228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 46230 components: - type: Transform @@ -211129,6 +211024,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 46453 + components: + - type: Transform + pos: 42.5,68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' - uid: 46456 components: - type: Transform @@ -211137,6 +211039,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 46457 + components: + - type: Transform + pos: 42.5,65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' - uid: 46458 components: - type: Transform @@ -213384,144 +213293,73 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 47028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 47029 + - uid: 47018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,1.5 + pos: 42.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 47030 + color: '#FF00FFFF' + - uid: 47022 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 47036 - components: - - type: Transform - pos: -101.5,65.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47037 - components: - - type: Transform - pos: -101.5,64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47038 - components: - - type: Transform - pos: -101.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47039 - components: - - type: Transform - pos: -101.5,62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47040 - components: - - type: Transform - pos: -101.5,61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47041 - components: - - type: Transform - pos: -101.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47042 - components: - - type: Transform - pos: -101.5,59.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47043 - components: - - type: Transform - pos: -101.5,58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47044 - components: - - type: Transform - pos: -101.5,57.5 + pos: 41.5,70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47045 + color: '#FF00FFFF' + - uid: 47027 components: - type: Transform - pos: -101.5,56.5 + pos: 42.5,63.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47047 + color: '#FF00FFFF' + - uid: 47028 components: - type: Transform - pos: -101.5,54.5 + rot: 1.5707963267948966 rad + pos: -70.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47048 + color: '#FF0000FF' + - uid: 47029 components: - type: Transform - pos: -101.5,53.5 + rot: 1.5707963267948966 rad + pos: -71.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47049 + color: '#FF0000FF' + - uid: 47030 components: - type: Transform - pos: -101.5,52.5 + rot: 1.5707963267948966 rad + pos: -72.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47050 + color: '#FF0000FF' + - uid: 47031 components: - type: Transform - pos: -101.5,51.5 + pos: 42.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47051 + color: '#FF00FFFF' + - uid: 47036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,55.5 + pos: 42.5,69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 47052 + color: '#FF00FFFF' + - uid: 47037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,55.5 + pos: 42.5,66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF00FFFF' - uid: 47053 components: - type: Transform @@ -213554,22 +213392,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 47063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 47064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,58.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 47070 components: - type: Transform @@ -213598,13 +213420,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47074 - components: - - type: Transform - pos: -100.5,52.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 47075 components: - type: Transform @@ -213654,20 +213469,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47082 - components: - - type: Transform - pos: -100.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 47083 - components: - - type: Transform - pos: -100.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 47084 components: - type: Transform @@ -217071,14 +216872,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 48033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 48047 components: - type: Transform @@ -226074,14 +225867,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 49762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 49767 components: - type: Transform @@ -226686,14 +226471,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 49897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 49903 components: - type: Transform @@ -230422,6 +230199,1168 @@ entities: parent: 55142 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 55289 + components: + - type: Transform + pos: 42.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55290 + components: + - type: Transform + pos: 42.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55308 + components: + - type: Transform + pos: 27.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55309 + components: + - type: Transform + pos: 27.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55310 + components: + - type: Transform + pos: 27.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55311 + components: + - type: Transform + pos: 27.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55312 + components: + - type: Transform + pos: 27.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55313 + components: + - type: Transform + pos: 27.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55314 + components: + - type: Transform + pos: 27.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55315 + components: + - type: Transform + pos: 27.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55316 + components: + - type: Transform + pos: 27.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55317 + components: + - type: Transform + pos: 27.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55318 + components: + - type: Transform + pos: 27.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55319 + components: + - type: Transform + pos: 27.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55320 + components: + - type: Transform + pos: 27.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55321 + components: + - type: Transform + pos: 27.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55322 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55323 + components: + - type: Transform + pos: 27.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55324 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55325 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55459 + components: + - type: Transform + pos: -25.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55460 + components: + - type: Transform + pos: -25.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55461 + components: + - type: Transform + pos: -25.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55462 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55493 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55494 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55495 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55496 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55497 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55498 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 56196 components: - type: Transform @@ -231965,12 +232904,90 @@ entities: color: '#FF0000FF' - proto: GasPipeTJunction entities: + - uid: 1702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14904 + components: + - type: Transform + pos: -36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 15483 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-47.5 parent: 2 + - uid: 15488 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 15867 components: - type: Transform @@ -232043,6 +233060,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 22491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 24856 components: - type: Transform @@ -232122,6 +233163,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 30091 + components: + - type: Transform + pos: 21.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 31974 components: - type: Transform @@ -232453,14 +233509,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 42743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 42750 components: - type: Transform @@ -232507,14 +233555,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 42808 components: - type: Transform @@ -232993,13 +234033,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 45152 - components: - - type: Transform - pos: -34.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 45165 components: - type: Transform @@ -233196,14 +234229,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 45701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 45704 components: - type: Transform @@ -233390,14 +234415,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 46110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 46148 components: - type: Transform @@ -234172,14 +235189,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 47092 components: - type: Transform @@ -234586,13 +235595,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47969 - components: - - type: Transform - pos: 21.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 47975 components: - type: Transform @@ -235654,6 +236656,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 55401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 56253 components: - type: Transform @@ -235913,6 +236931,20 @@ entities: parent: 55142 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 55414 + components: + - type: Transform + pos: -28.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55479 + components: + - type: Transform + pos: -24.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF00FFFF' - uid: 56255 components: - type: Transform @@ -235951,13 +236983,6 @@ entities: color: '#0000FFFF' - proto: GasPressurePump entities: - - uid: 3407 - components: - - type: Transform - pos: 28.5,58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 3712 components: - type: Transform @@ -236093,6 +237118,13 @@ entities: rot: 3.141592653589793 rad pos: -71.5,-34.5 parent: 2 + - uid: 30092 + components: + - type: Transform + pos: 28.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 54305 components: - type: Transform @@ -236213,6 +237245,17 @@ entities: - 50356 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 13781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22014 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14407 components: - type: Transform @@ -236251,40 +237294,46 @@ entities: - 50732 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 25065 + - uid: 23655 components: - type: Transform - pos: -44.5,47.5 + rot: 1.5707963267948966 rad + pos: -101.5,48.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 22014 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41017 + - uid: 23657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,45.5 + pos: -101.5,56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 50762 + - 22014 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41539 + - uid: 25065 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,42.5 + pos: -44.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,45.5 parent: 2 - type: DeviceNetwork deviceLists: - - 49911 - - 51911 + - 50762 - type: AtmosPipeColor color: '#0000FFFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 41651 components: - type: Transform @@ -236592,18 +237641,6 @@ entities: - 51931 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 45691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,66.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22014 - - 51974 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 45783 components: - type: Transform @@ -236954,16 +237991,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 47018 + - uid: 47044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,50.5 + rot: -1.5707963267948966 rad + pos: 0.5,42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22014 - - 51974 + - 49911 - type: AtmosPipeColor color: '#0000FFFF' - uid: 47203 @@ -237599,16 +238635,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 48629 - components: - - type: Transform - pos: -34.5,33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50742 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 48668 components: - type: Transform @@ -239264,6 +240290,70 @@ entities: parent: 55142 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 55402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55521 + - type: AtmosPipeColor + color: '#FF00FFFF' + - uid: 55453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50742 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50742 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55492 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50346 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55519 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50349 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 55520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50349 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 56257 components: - type: Transform @@ -239664,6 +240754,17 @@ entities: - type: Physics canCollide: True bodyType: Dynamic + - uid: 13820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22014 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14367 components: - type: Transform @@ -239702,6 +240803,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 19261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22014 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22430 components: - type: Transform @@ -239713,28 +240825,27 @@ entities: - 50692 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42551 + - uid: 22653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,27.5 + rot: 1.5707963267948966 rad + pos: -101.5,60.5 parent: 2 - type: DeviceNetwork deviceLists: - - 48130 - - 51916 + - 22014 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42802 + - uid: 42551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,33.5 + rot: 3.141592653589793 rad + pos: 13.5,27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 50742 - - 51924 + - 48130 + - 51916 - type: AtmosPipeColor color: '#FF0000FF' - uid: 42835 @@ -239897,18 +241008,6 @@ entities: - 48131 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 45158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,58.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22014 - - 51974 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 45301 components: - type: Transform @@ -240064,6 +241163,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 46123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50742 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 46149 components: - type: Transform @@ -240356,18 +241466,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 47022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22014 - - 51974 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 47034 components: - type: Transform @@ -241940,17 +243038,6 @@ entities: - 50844 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 49718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50742 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 49721 components: - type: Transform @@ -242733,6 +243820,38 @@ entities: parent: 55142 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 55405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55521 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50742 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55490 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50346 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 56265 components: - type: Transform @@ -257550,51 +258669,10 @@ entities: parent: 66965 - proto: HospitalCurtainsOpen entities: - - uid: 11432 - components: - - type: Transform - pos: 23.5,-61.5 - parent: 2 - - uid: 11436 - components: - - type: Transform - pos: 17.5,-61.5 - parent: 2 - - uid: 11438 - components: - - type: Transform - pos: 14.5,-55.5 - parent: 2 - - uid: 11441 - components: - - type: Transform - pos: 13.5,-61.5 - parent: 2 - - uid: 11442 - components: - - type: Transform - pos: 19.5,-61.5 - parent: 2 - - uid: 11444 - components: - - type: Transform - pos: 21.5,-61.5 - parent: 2 - - uid: 14349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-53.5 - parent: 2 - - uid: 14562 - components: - - type: Transform - pos: 23.5,-53.5 - parent: 2 - - uid: 14563 + - uid: 6096 components: - type: Transform - pos: 23.5,-55.5 + pos: 22.5,-55.5 parent: 2 - uid: 15010 components: @@ -257804,6 +258882,11 @@ entities: rot: -1.5707963267948966 rad pos: -62.52229,45.509502 parent: 2 + - uid: 13207 + components: + - type: Transform + pos: 12.630841,-38.315506 + parent: 2 - uid: 13379 components: - type: Transform @@ -258350,7 +259433,7 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 -- proto: IntercomAssesmbly +- proto: IntercomAssembly entities: - uid: 24223 components: @@ -258412,6 +259495,11 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-37.5 parent: 2 + - uid: 55503 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 2 - proto: IntercomScience entities: - uid: 3591 @@ -258460,6 +259548,11 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-75.5 parent: 2 + - uid: 55441 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 - proto: JanitorServiceLight entities: - uid: 2244 @@ -258468,35 +259561,23 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 52859 - uid: 4294 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 52859 - uid: 4574 components: - type: Transform pos: -30.5,40.5 parent: 2 - - type: DeviceLinkSink - links: - - 51506 - uid: 39452 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-31.5 parent: 2 - - type: DeviceLinkSink - links: - - 55107 - uid: 51541 components: - type: Transform @@ -258508,27 +259589,18 @@ entities: - type: Transform pos: 47.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 51734 - uid: 52855 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 52858 - uid: 52856 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,26.5 parent: 2 - - type: DeviceLinkSink - links: - - 52858 - proto: JetpackBlackFilled entities: - uid: 6636 @@ -259052,6 +260124,12 @@ entities: - type: Transform pos: 65.521034,8.874497 parent: 2 + - uid: 6095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-59.5 + parent: 2 - uid: 7545 components: - type: Transform @@ -259563,6 +260641,44 @@ entities: - type: Transform pos: -71.338295,-53.546642 parent: 2 +- proto: LedLightBulb + entities: + - uid: 10449 + components: + - type: Transform + parent: 9746 + - type: LightBulb + lightRadius: 1 + color: '#FF0000FF' + - type: Physics + canCollide: False + - uid: 11432 + components: + - type: Transform + parent: 10479 + - type: LightBulb + lightRadius: 1 + color: '#FF0000FF' + - type: Physics + canCollide: False + - uid: 11438 + components: + - type: Transform + parent: 11436 + - type: LightBulb + lightRadius: 1 + color: '#FF0000FF' + - type: Physics + canCollide: False + - uid: 11442 + components: + - type: Transform + parent: 11441 + - type: LightBulb + lightRadius: 1 + color: '#FF0000FF' + - type: Physics + canCollide: False - proto: Left4ZedChemistryBottle entities: - uid: 11650 @@ -262429,20 +263545,20 @@ entities: - type: Transform pos: 3.5,-58.5 parent: 2 - - uid: 15450 + - uid: 18117 components: - type: Transform - pos: 17.5,-59.5 + pos: -18.5,-72.5 parent: 2 - - uid: 15451 + - uid: 42905 components: - type: Transform - pos: 19.5,-59.5 + pos: 21.5,-60.5 parent: 2 - - uid: 18117 + - uid: 47042 components: - type: Transform - pos: -18.5,-72.5 + pos: 17.5,-60.5 parent: 2 - proto: LockerMime entities: @@ -262825,9 +263941,6 @@ entities: gate: And - type: DeviceLinkSink invokeCounter: 4 - links: - - 53923 - - 53920 - type: DeviceLinkSource linkedPorts: 54401: @@ -262845,9 +263958,6 @@ entities: gate: And - type: DeviceLinkSink invokeCounter: 10 - links: - - 54400 - - 54402 - type: DeviceLinkSource linkedPorts: 54462: @@ -262865,9 +263975,6 @@ entities: gate: And - type: DeviceLinkSink invokeCounter: 4 - links: - - 53922 - - 53921 - type: DeviceLinkSource linkedPorts: 54401: @@ -262912,6 +264019,11 @@ entities: rot: -1.5707963267948966 rad pos: -61.639763,-11.741359 parent: 2 + - uid: 42815 + components: + - type: Transform + pos: 13.48747,-60.66198 + parent: 2 - uid: 52455 components: - type: Transform @@ -262978,17 +264090,11 @@ entities: - type: Transform pos: 82.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 8059 - uid: 8227 components: - type: Transform pos: 82.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 7870 - proto: MachineCentrifuge entities: - uid: 13664 @@ -264574,75 +265680,75 @@ entities: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 12325 + - uid: 6094 components: - type: Transform - pos: 23.5,-61.5 + pos: 19.5,-61.5 parent: 2 - - uid: 13293 + - uid: 11594 components: - type: Transform - pos: 14.5,-53.5 + pos: 23.5,-54.5 parent: 2 - - uid: 13528 + - uid: 13293 components: - type: Transform - pos: 19.5,-61.5 + pos: 14.5,-53.5 parent: 2 - - uid: 13533 + - uid: 13650 components: - type: Transform - pos: 21.5,-61.5 + pos: 14.5,-55.5 parent: 2 - - uid: 13553 + - uid: 17854 components: - type: Transform - pos: 13.5,-61.5 + pos: -56.5,-59.5 parent: 2 - - uid: 13650 + - uid: 17862 components: - type: Transform - pos: 14.5,-55.5 + pos: -48.5,-61.5 parent: 2 - - uid: 13675 + - uid: 17866 components: - type: Transform - pos: 23.5,-55.5 + pos: -56.5,-55.5 parent: 2 - - uid: 13693 + - uid: 17869 components: - type: Transform - pos: 23.5,-53.5 + pos: -48.5,-57.5 parent: 2 - - uid: 13726 + - uid: 20250 components: - type: Transform - pos: 17.5,-61.5 + pos: -12.5,-19.5 parent: 2 - - uid: 17854 + - uid: 42743 components: - type: Transform - pos: -56.5,-59.5 + pos: 19.5,-59.5 parent: 2 - - uid: 17862 + - uid: 42819 components: - type: Transform - pos: -48.5,-61.5 + pos: 17.5,-61.5 parent: 2 - - uid: 17866 + - uid: 42901 components: - type: Transform - pos: -56.5,-55.5 + pos: 23.5,-61.5 parent: 2 - - uid: 17869 + - uid: 42902 components: - type: Transform - pos: -48.5,-57.5 + pos: 17.5,-59.5 parent: 2 - - uid: 20250 + - uid: 47039 components: - type: Transform - pos: -12.5,-19.5 + pos: 23.5,-59.5 parent: 2 - uid: 54405 components: @@ -264918,11 +266024,6 @@ entities: - type: Transform pos: 15.389687,-51.44885 parent: 2 - - uid: 14622 - components: - - type: Transform - pos: 20.506947,-61.391285 - parent: 2 - uid: 15486 components: - type: Transform @@ -266067,6 +267168,19 @@ entities: - type: Transform pos: -31.5,71.5 parent: 2 + - uid: 55417 + components: + - type: Transform + pos: -28.5,37.5 + parent: 2 + - uid: 55480 + components: + - type: Transform + anchored: True + pos: -24.5,56.5 + parent: 2 + - type: Physics + bodyType: Static - uid: 56304 components: - type: Transform @@ -266379,6 +267493,11 @@ entities: - type: Transform pos: -66.65308,-84.56056 parent: 2 + - uid: 55486 + components: + - type: Transform + pos: 23.514091,-60.374218 + parent: 2 - uid: 67740 components: - type: Transform @@ -268921,6 +270040,12 @@ entities: - type: Transform pos: 26.599947,-56.310997 parent: 2 + - uid: 42818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.428007,-61.21203 + parent: 2 - uid: 49060 components: - type: Transform @@ -268940,6 +270065,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 49899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.532067,-61.122833 + parent: 2 + - uid: 49901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-60.5 + parent: 2 - uid: 51121 components: - type: Transform @@ -273614,11 +274751,6 @@ entities: - type: Transform pos: -36.69781,37.427124 parent: 2 - - uid: 23652 - components: - - type: Transform - pos: -28.479061,37.427124 - parent: 2 - uid: 51113 components: - type: Transform @@ -273753,11 +274885,6 @@ entities: - type: Transform pos: -34.519184,37.364624 parent: 2 - - uid: 23654 - components: - - type: Transform - pos: -30.50356,37.364624 - parent: 2 - uid: 23771 components: - type: Transform @@ -273782,6 +274909,13 @@ entities: - type: Transform pos: -115.541695,7.1914587 parent: 2 +- proto: PottedPlant26 + entities: + - uid: 55418 + components: + - type: Transform + pos: -30.4375,37.25 + parent: 2 - proto: PottedPlant3 entities: - uid: 7576 @@ -274092,11 +275226,6 @@ entities: - type: Transform pos: 11.671165,25.262005 parent: 2 - - uid: 6114 - components: - - type: Transform - pos: -36.5,32.5 - parent: 2 - uid: 9947 components: - type: Transform @@ -274230,6 +275359,11 @@ entities: - type: Transform pos: -28.449495,-9.37295 parent: 2 + - uid: 55430 + components: + - type: Transform + pos: -32.5,34.9375 + parent: 2 - proto: PottedPlantBioluminscent entities: - uid: 7841 @@ -276250,9 +277384,6 @@ entities: parent: 2 - type: PoweredLight on: False - - type: DeviceLinkSink - links: - - 11392 - uid: 11378 components: - type: Transform @@ -276261,9 +277392,6 @@ entities: parent: 2 - type: PoweredLight on: False - - type: DeviceLinkSink - links: - - 11392 - uid: 11379 components: - type: Transform @@ -276283,9 +277411,6 @@ entities: parent: 2 - type: PoweredLight on: False - - type: DeviceLinkSink - links: - - 11392 - uid: 11389 components: - type: Transform @@ -276564,9 +277689,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 20986 - uid: 15274 components: - type: Transform @@ -277944,9 +279066,6 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 20985 - uid: 21009 components: - type: Transform @@ -278894,33 +280013,11 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 2 - - uid: 22486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-0.5 - parent: 2 - - uid: 22487 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 - uid: 22488 components: - type: Transform pos: 38.5,1.5 parent: 2 - - uid: 22490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-1.5 - parent: 2 - - uid: 22491 - components: - - type: Transform - pos: 23.5,2.5 - parent: 2 - uid: 22492 components: - type: Transform @@ -279445,6 +280542,23 @@ entities: rot: 3.141592653589793 rad pos: 37.5,26.5 parent: 2 + - uid: 46159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 2 + - uid: 46160 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 46161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-0.5 + parent: 2 - uid: 46683 components: - type: Transform @@ -279641,6 +280755,17 @@ entities: - type: Transform pos: 1.5,0.5 parent: 55142 + - uid: 55446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 2 + - uid: 55447 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 - uid: 55971 components: - type: Transform @@ -280854,6 +281979,12 @@ entities: rot: -1.5707963267948966 rad pos: -108.5,71.5 parent: 2 + - uid: 55431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 - uid: 71404 components: - type: Transform @@ -281412,9 +282543,6 @@ entities: parent: 2 - type: PoweredLight on: False - - type: DeviceLinkSink - links: - - 20986 - uid: 20977 components: - type: Transform @@ -281422,9 +282550,6 @@ entities: parent: 2 - type: PoweredLight on: False - - type: DeviceLinkSink - links: - - 20985 - uid: 21347 components: - type: Transform @@ -281466,9 +282591,6 @@ entities: parent: 2 - type: PoweredLight on: False - - type: DeviceLinkSink - links: - - 53811 - uid: 53813 components: - type: Transform @@ -281477,9 +282599,6 @@ entities: parent: 2 - type: PoweredLight on: False - - type: DeviceLinkSink - links: - - 53809 - uid: 54426 components: - type: Transform @@ -281701,9 +282820,6 @@ entities: rot: 1.5707963267948966 rad pos: -78.5,13.5 parent: 2 - - type: DeviceLinkSink - links: - - 8243 - uid: 8056 components: - type: Transform @@ -281819,53 +282935,35 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 5590 - uid: 8990 components: - type: Transform pos: -80.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 5589 - uid: 8991 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,4.5 parent: 2 - - type: DeviceLinkSink - links: - - 5585 - uid: 8994 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,4.5 parent: 2 - - type: DeviceLinkSink - links: - - 5586 - uid: 8995 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,4.5 parent: 2 - - type: DeviceLinkSink - links: - - 5588 - uid: 8996 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,4.5 parent: 2 - - type: DeviceLinkSink - links: - - 5591 - uid: 9006 components: - type: Transform @@ -282072,12 +283170,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-61.5 parent: 2 - - uid: 14611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - uid: 14613 components: - type: Transform @@ -284008,6 +285100,17 @@ entities: rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 55142 + - uid: 55489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 2 + - uid: 55502 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 - uid: 56332 components: - type: Transform @@ -284053,6 +285156,62 @@ entities: powerLoad: 0 - proto: PoweredSmallLightEmpty entities: + - uid: 9746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-50.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 10449 + - type: ApcPowerReceiver + powerLoad: 6 + - uid: 10479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-51.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 11432 + - type: ApcPowerReceiver + powerLoad: 6 + - uid: 11436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-52.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 11438 + - type: ApcPowerReceiver + powerLoad: 6 + - uid: 11441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-53.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 11442 + - type: ApcPowerReceiver + powerLoad: 6 - uid: 11744 components: - type: Transform @@ -285667,29 +286826,11 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,37.5 parent: 2 - - uid: 1442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,37.5 - parent: 2 - uid: 1445 components: - type: Transform pos: -51.5,34.5 parent: 2 - - uid: 1702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 2 - - uid: 1897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,37.5 - parent: 2 - uid: 1947 components: - type: Transform @@ -286228,11 +287369,6 @@ entities: - type: Transform pos: -34.5,38.5 parent: 2 - - uid: 5740 - components: - - type: Transform - pos: -28.5,38.5 - parent: 2 - uid: 5747 components: - type: Transform @@ -286406,6 +287542,12 @@ entities: rot: 3.141592653589793 rad pos: -30.5,54.5 parent: 2 + - uid: 6097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-56.5 + parent: 2 - uid: 6115 components: - type: Transform @@ -286814,11 +287956,6 @@ entities: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 8734 - components: - - type: Transform - pos: -30.5,38.5 - parent: 2 - uid: 9194 components: - type: Transform @@ -289457,24 +290594,12 @@ entities: - type: Transform pos: -102.5,4.5 parent: 2 - - uid: 1453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,38.5 - parent: 2 - uid: 1514 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,38.5 parent: 2 - - uid: 1701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,38.5 - parent: 2 - uid: 1959 components: - type: Transform @@ -290436,12 +291561,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,38.5 parent: 2 - - uid: 8732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,38.5 - parent: 2 - uid: 8733 components: - type: Transform @@ -295601,9 +296720,6 @@ entities: rot: 1.5707963267948966 rad pos: 86.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 6222 - proto: ReinforcedGirder entities: - uid: 26892 @@ -300170,6 +301286,8 @@ entities: - type: Transform pos: -8.348379,-20.570932 parent: 2 + - type: Strap + enabled: False - type: Foldable folded: True - uid: 54451 @@ -300532,6 +301650,48 @@ entities: - type: Transform pos: -107.5,64.5 parent: 2 +- proto: ScreenTimer + entities: + - uid: 10455 + components: + - type: Transform + pos: 28.5,-53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11441: + - Timer: On + - Start: Off + - uid: 10472 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9746: + - Start: Off + - Timer: On + - uid: 10476 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10479: + - Timer: On + - Start: Off + - uid: 46228 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11436: + - Timer: On + - Start: Off - proto: Screwdriver entities: - uid: 8852 @@ -302243,83 +303403,53 @@ entities: - type: Transform pos: -23.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6708 - uid: 6698 components: - type: Transform pos: -27.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 6708 - uid: 6699 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 6708 - uid: 6700 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,10.5 parent: 2 - - type: DeviceLinkSink - links: - - 6708 - uid: 7099 components: - type: Transform pos: -16.5,29.5 parent: 2 - - type: DeviceLinkSink - links: - - 7118 - uid: 7100 components: - type: Transform pos: -17.5,29.5 parent: 2 - - type: DeviceLinkSink - links: - - 7118 - uid: 7101 components: - type: Transform pos: -18.5,29.5 parent: 2 - - type: DeviceLinkSink - links: - - 7118 - uid: 21560 components: - type: Transform pos: -77.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51116 - uid: 21561 components: - type: Transform pos: -78.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51116 - uid: 21574 components: - type: Transform pos: -79.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51116 - uid: 24729 components: - type: Transform @@ -302345,17 +303475,11 @@ entities: - type: Transform pos: -70.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 51434 - uid: 51410 components: - type: Transform pos: -66.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 51434 - proto: ShuttersNormalOpen entities: - uid: 5247 @@ -302364,269 +303488,171 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,54.5 parent: 2 - - type: DeviceLinkSink - links: - - 51585 - - 51583 - uid: 5883 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 7579 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 7835 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 5348 - uid: 7836 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-21.5 parent: 2 - - type: DeviceLinkSink - links: - - 5348 - uid: 7839 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-19.5 parent: 2 - - type: DeviceLinkSink - links: - - 3594 - uid: 7960 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-21.5 parent: 2 - - type: DeviceLinkSink - links: - - 3594 - uid: 7963 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 3594 - uid: 7970 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-19.5 parent: 2 - - type: DeviceLinkSink - links: - - 5348 - uid: 8447 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,56.5 parent: 2 - - type: DeviceLinkSink - links: - - 51585 - - 51583 - uid: 9281 components: - type: Transform pos: -71.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 4941 - uid: 9282 components: - type: Transform pos: -70.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 4941 - uid: 9283 components: - type: Transform pos: -69.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 4941 - uid: 9989 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,53.5 parent: 2 - - type: DeviceLinkSink - links: - - 51586 - - 51583 - uid: 10195 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 10194 - uid: 10196 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 10194 - uid: 10197 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 10194 - uid: 11204 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,52.5 parent: 2 - - type: DeviceLinkSink - links: - - 51586 - - 51583 - uid: 11741 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,53.5 parent: 2 - - type: DeviceLinkSink - links: - - 51585 - - 51583 - uid: 11792 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,55.5 parent: 2 - - type: DeviceLinkSink - links: - - 51585 - - 51583 - uid: 11835 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,54.5 parent: 2 - - type: DeviceLinkSink - links: - - 51586 - - 51583 - uid: 11852 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,55.5 parent: 2 - - type: DeviceLinkSink - links: - - 51586 - - 51583 - uid: 11853 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,56.5 parent: 2 - - type: DeviceLinkSink - links: - - 51586 - - 51583 - uid: 11855 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,52.5 parent: 2 - - type: DeviceLinkSink - links: - - 51585 - - 51583 - uid: 13189 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-46.5 parent: 2 - - type: DeviceLinkSink - links: - - 13671 - - 51825 - uid: 13191 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-43.5 parent: 2 - - type: DeviceLinkSink - links: - - 13671 - uid: 13199 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 13671 - uid: 13200 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 - - type: DeviceLinkSink - links: - - 13671 - uid: 13513 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 13671 - uid: 14933 components: - type: Transform @@ -302637,86 +303663,47 @@ entities: - type: Transform pos: -44.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20862 - - 45266 - - 22599 - uid: 20649 components: - type: Transform pos: -42.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20862 - - 45266 - - 22599 - uid: 20650 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20862 - - 45266 - - 22599 - uid: 20654 components: - type: Transform pos: -40.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20862 - - 45266 - - 22599 - uid: 20656 components: - type: Transform pos: -38.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20862 - - 45266 - - 22599 - uid: 22827 components: - type: Transform pos: -15.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 51828 - uid: 22829 components: - type: Transform pos: -14.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 51828 - uid: 22830 components: - type: Transform pos: -13.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 51828 - uid: 26279 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 20948 - - 51313 - - 51312 - uid: 26436 components: - type: Transform @@ -302729,856 +303716,538 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 - - type: DeviceLinkSink - links: - - 20948 - - 51313 - - 51312 - uid: 28044 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 - - type: DeviceLinkSink - links: - - 20948 - - 51313 - - 51312 - uid: 28121 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 20948 - - 51313 - - 51312 - uid: 28122 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 20948 - - 51313 - - 51312 - uid: 36862 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 36997 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 37035 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 39485 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,31.5 parent: 2 - - type: DeviceLinkSink - links: - - 14340 - uid: 39496 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,30.5 parent: 2 - - type: DeviceLinkSink - links: - - 14340 - uid: 39628 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,32.5 parent: 2 - - type: DeviceLinkSink - links: - - 14340 - uid: 39704 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,33.5 parent: 2 - - type: DeviceLinkSink - links: - - 14340 - uid: 41515 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 41517 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 41533 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 42828 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 42830 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 37036 - uid: 43717 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 51795 - uid: 43718 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 51795 - uid: 43720 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51820 - uid: 47103 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,34.5 parent: 2 - - type: DeviceLinkSink - links: - - 14340 - uid: 47656 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,35.5 parent: 2 - - type: DeviceLinkSink - links: - - 14340 - uid: 47678 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,36.5 parent: 2 - - type: DeviceLinkSink - links: - - 14340 - uid: 47693 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,37.5 parent: 2 - - type: DeviceLinkSink - links: - - 14340 - uid: 51050 components: - type: Transform pos: -43.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20862 - - 45266 - - 22599 - uid: 51078 components: - type: Transform pos: -53.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 51082 - uid: 51079 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 51082 - uid: 51080 components: - type: Transform pos: -50.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 51082 - uid: 51081 components: - type: Transform pos: -49.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 51082 - uid: 51100 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 51094 - uid: 51101 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-9.5 parent: 2 - - type: DeviceLinkSink - links: - - 51094 - uid: 51300 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 20948 - - 51313 - - 51312 - uid: 51346 components: - type: Transform pos: -31.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51347 components: - type: Transform pos: -30.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51348 components: - type: Transform pos: -29.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51349 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51350 components: - type: Transform pos: -30.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51351 components: - type: Transform pos: -31.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51352 components: - type: Transform pos: -27.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51353 components: - type: Transform pos: -26.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51354 components: - type: Transform pos: -25.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51355 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51356 components: - type: Transform pos: -26.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51357 components: - type: Transform pos: -27.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51358 components: - type: Transform pos: -23.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51359 components: - type: Transform pos: -22.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51360 components: - type: Transform pos: -21.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51361 components: - type: Transform pos: -23.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51362 components: - type: Transform pos: -22.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51363 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51364 components: - type: Transform pos: -19.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51365 components: - type: Transform pos: -18.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51366 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51367 components: - type: Transform pos: -17.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51368 components: - type: Transform pos: -18.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51369 components: - type: Transform pos: -19.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51370 components: - type: Transform pos: -15.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51371 components: - type: Transform pos: -15.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51372 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51373 components: - type: Transform pos: -13.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51374 components: - type: Transform pos: -13.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51375 components: - type: Transform pos: -31.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51376 components: - type: Transform pos: -30.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51377 components: - type: Transform pos: -29.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51378 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51379 components: - type: Transform pos: -27.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51380 components: - type: Transform pos: -27.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51381 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51382 components: - type: Transform pos: -29.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51383 components: - type: Transform pos: -30.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51384 components: - type: Transform pos: -31.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51385 components: - type: Transform pos: -25.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51386 components: - type: Transform pos: -24.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51387 components: - type: Transform pos: -23.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51388 components: - type: Transform pos: -22.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51389 components: - type: Transform pos: -21.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51390 components: - type: Transform pos: -20.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51391 components: - type: Transform pos: -19.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51392 components: - type: Transform pos: -19.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51393 components: - type: Transform pos: -20.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51394 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51395 components: - type: Transform pos: -22.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51396 components: - type: Transform pos: -23.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51397 components: - type: Transform pos: -24.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51398 components: - type: Transform pos: -25.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51399 components: - type: Transform pos: -17.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51400 components: - type: Transform pos: -16.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51401 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51402 components: - type: Transform pos: -14.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51403 components: - type: Transform pos: -13.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51404 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51405 components: - type: Transform pos: -16.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51406 components: - type: Transform pos: -15.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51407 components: - type: Transform pos: -14.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51408 components: - type: Transform pos: -13.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 51421 - uid: 51457 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-30.5 parent: 2 - - type: DeviceLinkSink - links: - - 21301 - uid: 51458 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-32.5 parent: 2 - - type: DeviceLinkSink - links: - - 21300 - uid: 51486 components: - type: Transform pos: -28.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 51495 - uid: 51487 components: - type: Transform pos: -26.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 51495 - uid: 51488 components: - type: Transform pos: -25.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 51495 - uid: 51489 components: - type: Transform pos: -24.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 51495 - uid: 51490 components: - type: Transform pos: -23.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 51495 - uid: 51491 components: - type: Transform pos: -22.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 51495 - uid: 51512 components: - type: Transform @@ -303602,678 +304271,444 @@ entities: - type: Transform pos: -51.5,29.5 parent: 2 - - type: DeviceLinkSink - links: - - 51511 - uid: 51535 components: - type: Transform pos: -50.5,29.5 parent: 2 - - type: DeviceLinkSink - links: - - 51511 - uid: 51536 components: - type: Transform pos: -49.5,29.5 parent: 2 - - type: DeviceLinkSink - links: - - 51511 - uid: 51547 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 51542 - uid: 51548 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,19.5 parent: 2 - - type: DeviceLinkSink - links: - - 51542 - uid: 51549 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,18.5 parent: 2 - - type: DeviceLinkSink - links: - - 51542 - uid: 51550 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,17.5 parent: 2 - - type: DeviceLinkSink - links: - - 51542 - uid: 51551 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,21.5 parent: 2 - - type: DeviceLinkSink - links: - - 51542 - uid: 51552 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,21.5 parent: 2 - - type: DeviceLinkSink - links: - - 51542 - uid: 51559 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,24.5 parent: 2 - - type: DeviceLinkSink - links: - - 51564 - uid: 51560 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,23.5 parent: 2 - - type: DeviceLinkSink - links: - - 51564 - uid: 51561 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,21.5 parent: 2 - - type: DeviceLinkSink - links: - - 51564 - uid: 51562 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 51564 - uid: 51566 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,49.5 parent: 2 - - type: DeviceLinkSink - links: - - 51584 - uid: 51567 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,49.5 parent: 2 - - type: DeviceLinkSink - links: - - 51584 - uid: 51568 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,49.5 parent: 2 - - type: DeviceLinkSink - links: - - 51584 - uid: 51618 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,46.5 parent: 2 - - type: DeviceLinkSink - links: - - 51612 - uid: 51619 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,46.5 parent: 2 - - type: DeviceLinkSink - links: - - 51612 - uid: 51643 components: - type: Transform pos: 5.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 51648 - uid: 51644 components: - type: Transform pos: 6.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 51648 - uid: 51645 components: - type: Transform pos: 8.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 51648 - uid: 51646 components: - type: Transform pos: 10.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 51648 - uid: 51647 components: - type: Transform pos: 11.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 51648 - uid: 51649 components: - type: Transform pos: -2.5,52.5 parent: 2 - - type: DeviceLinkSink - links: - - 51652 - uid: 51650 components: - type: Transform pos: -0.5,52.5 parent: 2 - - type: DeviceLinkSink - links: - - 51652 - uid: 51651 components: - type: Transform pos: 0.5,52.5 parent: 2 - - type: DeviceLinkSink - links: - - 51652 - uid: 51653 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51657 - uid: 51654 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51657 - uid: 51655 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51657 - uid: 51656 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51657 - uid: 51658 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51664 - uid: 51659 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51664 - uid: 51660 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51664 - uid: 51661 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51664 - uid: 51662 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51664 - uid: 51663 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51664 - uid: 51668 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,31.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51669 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51670 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,33.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51671 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,34.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51672 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,36.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51673 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,36.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51674 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,36.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51675 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,34.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51676 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,33.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51677 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,32.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51678 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 - - type: DeviceLinkSink - links: - - 51667 - uid: 51727 components: - type: Transform pos: 56.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 51735 - uid: 51728 components: - type: Transform pos: 57.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 51735 - uid: 51729 components: - type: Transform pos: 58.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 51735 - uid: 51749 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 51757 components: - type: Transform pos: 65.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 51762 - uid: 51758 components: - type: Transform pos: 66.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 51762 - uid: 51759 components: - type: Transform pos: 68.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 51762 - uid: 51760 components: - type: Transform pos: 69.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 51762 - uid: 51786 components: - type: Transform pos: 40.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 51785 - uid: 51787 components: - type: Transform pos: 42.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 51785 - uid: 51819 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-40.5 parent: 2 - - type: DeviceLinkSink - links: - - 51820 - uid: 51821 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-38.5 parent: 2 - - type: DeviceLinkSink - links: - - 51820 - uid: 51822 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 51820 - uid: 51874 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-58.5 parent: 2 - - type: DeviceLinkSink - links: - - 51884 - uid: 51881 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 36996 - uid: 51883 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-60.5 parent: 2 - - type: DeviceLinkSink - links: - - 51884 - uid: 51898 components: - type: Transform pos: -11.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 51828 - uid: 51899 components: - type: Transform pos: -9.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 51828 - uid: 52469 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52470 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52471 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52472 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-9.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52473 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52474 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-6.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52475 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-8.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52476 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52477 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 52478 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 52479 - uid: 56343 components: - type: Transform pos: 0.5,8.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71119 - uid: 56344 components: - type: Transform pos: 1.5,8.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71119 - uid: 56345 components: - type: Transform pos: 2.5,8.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71119 - uid: 56346 components: - type: Transform @@ -304294,25 +304729,16 @@ entities: - type: Transform pos: -1.5,7.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71115 - uid: 56350 components: - type: Transform pos: -2.5,7.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71115 - uid: 56351 components: - type: Transform pos: -3.5,6.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71115 - proto: ShuttersRadiation entities: - uid: 7071 @@ -304320,70 +304746,46 @@ entities: - type: Transform pos: 37.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 3714 - uid: 7166 components: - type: Transform pos: 37.5,45.5 parent: 2 - - type: DeviceLinkSink - links: - - 3714 - uid: 7172 components: - type: Transform pos: 37.5,47.5 parent: 2 - - type: DeviceLinkSink - links: - - 3714 - uid: 51714 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,41.5 parent: 2 - - type: DeviceLinkSink - links: - - 51720 - uid: 51715 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,42.5 parent: 2 - - type: DeviceLinkSink - links: - - 51720 - uid: 51716 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 51720 - uid: 51717 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,44.5 parent: 2 - - type: DeviceLinkSink - links: - - 51720 - uid: 51718 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,45.5 parent: 2 - - type: DeviceLinkSink - links: - - 51720 - proto: ShuttersWindowOpen entities: - uid: 212 @@ -304391,400 +304793,236 @@ entities: - type: Transform pos: -36.5,41.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 213 components: - type: Transform pos: -32.5,41.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 1087 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,44.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 1652 components: - type: Transform pos: -33.5,41.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 2099 components: - type: Transform pos: -31.5,41.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 2128 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,42.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 2186 components: - type: Transform pos: -35.5,41.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 8726 components: - type: Transform pos: -34.5,41.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 10573 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 1951 - uid: 20528 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-6.5 parent: 2 - - type: DeviceLinkSink - links: - - 22210 - - 45266 - - 22599 - uid: 20529 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 22210 - - 45266 - - 22599 - uid: 20530 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 22210 - - 45266 - - 22599 - uid: 20531 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 22210 - - 45266 - - 22599 - uid: 20657 components: - type: Transform pos: -40.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 22210 - - 45266 - - 22599 - uid: 20658 components: - type: Transform pos: -39.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 22210 - - 45266 - - 22599 - uid: 20659 components: - type: Transform pos: -38.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 22210 - - 45266 - - 22599 - uid: 22303 components: - type: Transform pos: -3.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 51283 - - 51313 - - 51312 - uid: 22304 components: - type: Transform pos: -4.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 22303 - - 51283 - - 51313 - - 51312 - uid: 22305 components: - type: Transform pos: -5.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 51283 - - 51313 - - 51312 - uid: 22306 components: - type: Transform pos: -6.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 51283 - - 51313 - - 51312 - uid: 25364 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 51283 - - 51313 - - 51312 - uid: 25798 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 - - type: DeviceLinkSink - links: - - 51283 - - 51313 - - 51312 - uid: 26727 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 51283 - - 51313 - - 51312 - uid: 51329 components: - type: Transform pos: -31.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51342 components: - type: Transform pos: -27.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51343 components: - type: Transform pos: -23.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51345 components: - type: Transform pos: -19.5,-26.5 parent: 2 - - type: DeviceLinkSink - links: - - 51422 - uid: 51832 components: - type: Transform pos: -15.5,-68.5 parent: 2 - - type: DeviceLinkSink - links: - - 51830 - uid: 51833 components: - type: Transform pos: -14.5,-68.5 parent: 2 - - type: DeviceLinkSink - links: - - 51830 - uid: 51834 components: - type: Transform pos: -13.5,-68.5 parent: 2 - - type: DeviceLinkSink - links: - - 51830 - uid: 51835 components: - type: Transform pos: -13.5,-66.5 parent: 2 - - type: DeviceLinkSink - links: - - 51830 - uid: 51836 components: - type: Transform pos: -14.5,-66.5 parent: 2 - - type: DeviceLinkSink - links: - - 51830 - uid: 51837 components: - type: Transform pos: -15.5,-66.5 parent: 2 - - type: DeviceLinkSink - links: - - 51830 - uid: 51838 components: - type: Transform pos: -11.5,-66.5 parent: 2 - - type: DeviceLinkSink - links: - - 51831 - uid: 51839 components: - type: Transform pos: -10.5,-66.5 parent: 2 - - type: DeviceLinkSink - links: - - 51831 - uid: 51840 components: - type: Transform pos: -9.5,-66.5 parent: 2 - - type: DeviceLinkSink - links: - - 51831 - uid: 51841 components: - type: Transform pos: -11.5,-68.5 parent: 2 - - type: DeviceLinkSink - links: - - 51831 - uid: 51842 components: - type: Transform pos: -10.5,-68.5 parent: 2 - - type: DeviceLinkSink - links: - - 51831 - uid: 51843 components: - type: Transform pos: -9.5,-68.5 parent: 2 - - type: DeviceLinkSink - links: - - 51831 - uid: 56352 components: - type: Transform pos: -4.5,-3.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71113 - uid: 56353 components: - type: Transform pos: -4.5,-4.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71113 - uid: 71088 components: - type: Transform pos: -4.5,-5.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71113 - uid: 71089 components: - type: Transform pos: 7.5,-3.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71112 - uid: 71090 components: - type: Transform pos: 7.5,-4.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71112 - uid: 71091 components: - type: Transform pos: 7.5,-5.5 parent: 56001 - - type: DeviceLinkSink - links: - - 71112 - proto: ShuttleConsoleCircuitboard entities: - uid: 16162 @@ -305119,7 +305357,6 @@ entities: - Pressed: Toggle 7960: - Pressed: Toggle - 7940: [] - uid: 3714 components: - type: MetaData @@ -306006,10 +306243,6 @@ entities: parent: 2 - type: GasValve open: False - - type: DeviceLinkSink - links: - - 29778 - - 12533 - type: AtmosPipeColor color: '#000000FF' - proto: SignalTimer @@ -306028,9 +306261,6 @@ entities: linkedPorts: 29806: - Timer: Close - - type: DeviceLinkSink - links: - - 29778 - uid: 54462 components: - type: Transform @@ -306067,8 +306297,6 @@ entities: - Timer: Toggle - type: DeviceLinkSink invokeCounter: 1 - links: - - 54401 - proto: SignalTrigger entities: - uid: 8878 @@ -311127,16 +311355,6 @@ entities: parent: 2 - proto: SpaceHeaterAnchored entities: - - uid: 15487 - components: - - type: Transform - pos: 13.5,-59.5 - parent: 2 - - uid: 15488 - components: - - type: Transform - pos: 23.5,-59.5 - parent: 2 - uid: 16027 components: - type: Transform @@ -312094,11 +312312,6 @@ entities: - type: Transform pos: -30.5,51.5 parent: 2 - - uid: 23706 - components: - - type: Transform - pos: -33.5,43.5 - parent: 2 - uid: 23730 components: - type: Transform @@ -312109,6 +312322,11 @@ entities: - type: Transform pos: -15.5,21.5 parent: 2 + - uid: 55440 + components: + - type: Transform + pos: -35.5,43.5 + parent: 2 - proto: SpawnPointBorg entities: - uid: 71082 @@ -312455,30 +312673,35 @@ entities: - type: Transform pos: -29.5,-76.5 parent: 2 - - uid: 56088 + - uid: 55499 components: - type: Transform - pos: -1.5,-60.5 + pos: 15.5,-60.5 parent: 2 - - uid: 56089 + - uid: 55500 components: - type: Transform - pos: 2.5,-58.5 + pos: 10.5,-57.5 parent: 2 - - uid: 56090 + - uid: 55501 components: - type: Transform - pos: 17.5,-54.5 + pos: 19.5,-57.5 parent: 2 - - uid: 56091 + - uid: 56088 components: - type: Transform - pos: 11.5,-54.5 + pos: -1.5,-60.5 parent: 2 - - uid: 56092 + - uid: 56089 components: - type: Transform - pos: 14.5,-60.5 + pos: 2.5,-58.5 + parent: 2 + - uid: 56090 + components: + - type: Transform + pos: 17.5,-54.5 parent: 2 - uid: 56093 components: @@ -312512,11 +312735,6 @@ entities: - type: Transform pos: 0.5,-58.5 parent: 2 - - uid: 71056 - components: - - type: Transform - pos: 11.5,-60.5 - parent: 2 - proto: SpawnPointMime entities: - uid: 7026 @@ -312999,20 +313217,20 @@ entities: parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 23731 + - uid: 6100 components: - type: Transform - pos: -32.5,39.5 + pos: -34.5,33.5 parent: 2 - - uid: 23732 + - uid: 6101 components: - type: Transform - pos: -39.5,31.5 + pos: -39.5,32.5 parent: 2 - - uid: 23733 + - uid: 23731 components: - type: Transform - pos: -32.5,33.5 + pos: -32.5,39.5 parent: 2 - uid: 23734 components: @@ -313029,11 +313247,6 @@ entities: - type: Transform pos: -15.5,22.5 parent: 2 - - uid: 71081 - components: - - type: Transform - pos: -34.5,35.5 - parent: 2 - proto: SpawnPointStationEngineer entities: - uid: 23801 @@ -314279,11 +314492,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,72.5 parent: 2 - - uid: 5600 - components: - - type: Transform - pos: -29.5,37.5 - parent: 2 - uid: 5601 components: - type: Transform @@ -315183,6 +315391,16 @@ entities: - type: Transform pos: 9.5,-53.5 parent: 2 + - uid: 50814 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - uid: 53550 + components: + - type: Transform + pos: 11.5,-61.5 + parent: 2 - uid: 54481 components: - type: Transform @@ -317400,6 +317618,11 @@ entities: - type: Transform pos: -24.5,6.5 parent: 2 + - uid: 42817 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 2 - uid: 54483 components: - type: Transform @@ -319260,7 +319483,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Утилизаторский док -- proto: SurveillanceCameraWirelessRouterBase +- proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 18488 components: @@ -319366,12 +319589,12 @@ entities: - uid: 13676 components: - type: Transform - pos: 11.578749,-61.420425 + pos: 10.648644,-61.27351 parent: 2 - uid: 13734 components: - type: Transform - pos: 11.406874,-61.389175 + pos: 10.544584,-61.020782 parent: 2 - uid: 18824 components: @@ -319389,6 +319612,11 @@ entities: - type: Transform pos: -3.360918,-33.45595 parent: 2 + - uid: 42812 + components: + - type: Transform + pos: 23.42098,-53.387398 + parent: 2 - proto: SyringeBicaridine entities: - uid: 54759 @@ -322404,6 +322632,11 @@ entities: - type: Transform pos: 20.5,-76.5 parent: 2 + - uid: 55504 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 2 - proto: TableCounterWood entities: - uid: 999 @@ -322762,6 +322995,12 @@ entities: parent: 2 - proto: TableFancyBlack entities: + - uid: 1897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,35.5 + parent: 2 - uid: 2261 components: - type: Transform @@ -322848,10 +323087,16 @@ entities: - type: Transform pos: -31.5,41.5 parent: 2 - - uid: 6092 + - uid: 6114 components: - type: Transform - pos: -34.5,34.5 + pos: -34.5,43.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,34.5 parent: 2 - uid: 8927 components: @@ -323011,13 +323256,18 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-79.5 parent: 2 -- proto: TableFancyBlue - entities: - - uid: 6090 + - uid: 55438 components: - type: Transform - pos: -39.5,33.5 + pos: -33.5,43.5 + parent: 2 + - uid: 55439 + components: + - type: Transform + pos: -32.5,43.5 parent: 2 +- proto: TableFancyBlue + entities: - uid: 6302 components: - type: Transform @@ -323113,6 +323363,18 @@ entities: rot: 1.5707963267948966 rad pos: -85.5,-48.5 parent: 2 + - uid: 55421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - uid: 55422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,34.5 + parent: 2 - proto: TableFancyCyan entities: - uid: 18547 @@ -323185,6 +323447,12 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,22.5 parent: 2 + - uid: 7677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,32.5 + parent: 2 - uid: 13554 components: - type: Transform @@ -323232,11 +323500,6 @@ entities: - type: Transform pos: 68.5,11.5 parent: 2 - - uid: 6093 - components: - - type: Transform - pos: -37.5,35.5 - parent: 2 - uid: 6733 components: - type: Transform @@ -323287,13 +323550,6 @@ entities: - type: Transform pos: -29.5,-70.5 parent: 2 -- proto: TableFancyPink - entities: - - uid: 6091 - components: - - type: Transform - pos: -36.5,32.5 - parent: 2 - proto: TableFancyPurple entities: - uid: 456 @@ -324138,6 +324394,12 @@ entities: - type: Transform pos: -31.5,61.5 parent: 2 + - uid: 6091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-61.5 + parent: 2 - uid: 6591 components: - type: Transform @@ -324428,16 +324690,6 @@ entities: - type: Transform pos: 16.5,-55.5 parent: 2 - - uid: 11579 - components: - - type: Transform - pos: 11.5,-61.5 - parent: 2 - - uid: 11580 - components: - - type: Transform - pos: 11.5,-53.5 - parent: 2 - uid: 11581 components: - type: Transform @@ -325240,6 +325492,30 @@ entities: - type: Transform pos: -27.5,-25.5 parent: 2 + - uid: 42802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-60.5 + parent: 2 + - uid: 47061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-60.5 + parent: 2 + - uid: 47063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-54.5 + parent: 2 + - uid: 47064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-59.5 + parent: 2 - uid: 51009 components: - type: Transform @@ -325306,6 +325582,11 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-7.5 parent: 54730 + - uid: 55491 + components: + - type: Transform + pos: 14.5,-59.5 + parent: 2 - uid: 56397 components: - type: Transform @@ -325409,6 +325690,11 @@ entities: - type: Transform pos: -54.5,43.5 parent: 2 + - uid: 6093 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 - uid: 6403 components: - type: Transform @@ -325485,36 +325771,11 @@ entities: - type: Transform pos: -42.5,17.5 parent: 2 - - uid: 13562 - components: - - type: Transform - pos: 16.5,-61.5 - parent: 2 - uid: 13641 components: - type: Transform pos: 14.5,-54.5 parent: 2 - - uid: 13665 - components: - - type: Transform - pos: 14.5,-61.5 - parent: 2 - - uid: 13680 - components: - - type: Transform - pos: 20.5,-61.5 - parent: 2 - - uid: 13826 - components: - - type: Transform - pos: 22.5,-61.5 - parent: 2 - - uid: 13868 - components: - - type: Transform - pos: 23.5,-54.5 - parent: 2 - uid: 14627 components: - type: Transform @@ -325556,6 +325817,27 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 + - uid: 42814 + components: + - type: Transform + pos: 19.5,-60.5 + parent: 2 + - uid: 42906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-53.5 + parent: 2 + - uid: 47082 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 2 + - uid: 47083 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 2 - uid: 55247 components: - type: Transform @@ -327409,11 +327691,6 @@ entities: parent: 2 - proto: TargetDarts entities: - - uid: 6120 - components: - - type: Transform - pos: -31.5,33.5 - parent: 2 - uid: 11938 components: - type: Transform @@ -327436,6 +327713,11 @@ entities: - type: Transform pos: 54.5,-15.5 parent: 2 + - uid: 55425 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 - proto: TargetHuman entities: - uid: 8957 @@ -342897,6 +343179,11 @@ entities: - type: Transform pos: 56.5,-57.5 parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 - uid: 8517 components: - type: Transform @@ -343049,6 +343336,11 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-28.5 parent: 2 + - uid: 8732 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 - uid: 8737 components: - type: Transform @@ -353431,6 +353723,11 @@ entities: - type: Transform pos: -107.5,54.5 parent: 2 + - uid: 42965 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 - uid: 43518 components: - type: Transform @@ -353530,6 +353827,46 @@ entities: - type: Transform pos: 12.5,-2.5 parent: 2 + - uid: 48033 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 48481 + components: + - type: Transform + pos: 21.5,-52.5 + parent: 2 + - uid: 48629 + components: + - type: Transform + pos: 22.5,-52.5 + parent: 2 + - uid: 49718 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - uid: 49762 + components: + - type: Transform + pos: 24.5,-53.5 + parent: 2 + - uid: 49897 + components: + - type: Transform + pos: 24.5,-54.5 + parent: 2 + - uid: 49898 + components: + - type: Transform + pos: 24.5,-52.5 + parent: 2 + - uid: 50733 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 2 - uid: 50892 components: - type: Transform @@ -379826,11 +380163,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-46.5 parent: 2 - - uid: 13207 - components: - - type: Transform - pos: 24.5,-55.5 - parent: 2 - uid: 13214 components: - type: Transform @@ -379936,11 +380268,6 @@ entities: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 13295 - components: - - type: Transform - pos: 21.5,-52.5 - parent: 2 - uid: 13315 components: - type: Transform @@ -380141,11 +380468,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-63.5 parent: 2 - - uid: 13540 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - uid: 13543 components: - type: Transform @@ -380409,11 +380731,6 @@ entities: - type: Transform pos: 18.5,-68.5 parent: 2 - - uid: 13679 - components: - - type: Transform - pos: 23.5,-52.5 - parent: 2 - uid: 13684 components: - type: Transform @@ -380537,26 +380854,11 @@ entities: - type: Transform pos: -88.5,62.5 parent: 2 - - uid: 13751 - components: - - type: Transform - pos: 24.5,-53.5 - parent: 2 - - uid: 13754 - components: - - type: Transform - pos: 24.5,-54.5 - parent: 2 - uid: 13757 components: - type: Transform pos: 21.5,-68.5 parent: 2 - - uid: 13780 - components: - - type: Transform - pos: 24.5,-52.5 - parent: 2 - uid: 13795 components: - type: Transform @@ -388692,6 +388994,12 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,67.5 parent: 2 + - uid: 55419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,38.5 + parent: 2 - proto: WarningO2 entities: - uid: 52026 @@ -390607,6 +390915,17 @@ entities: - type: Transform pos: 29.5,-76.5 parent: 2 + - uid: 52429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-59.5 + parent: 2 + - uid: 53780 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 - proto: WindoorAssembly entities: - uid: 25867 @@ -390815,18 +391134,12 @@ entities: rot: 3.141592653589793 rad pos: -62.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 5726 - uid: 7700 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 7687 - uid: 11762 components: - type: Transform @@ -390892,6 +391205,11 @@ entities: - type: Transform pos: 20.5,-23.5 parent: 2 + - uid: 55413 + components: + - type: Transform + pos: -29.5,38.5 + parent: 2 - uid: 70928 components: - type: Transform @@ -390942,10 +391260,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 21309 - - 21310 - uid: 20221 components: - type: Transform @@ -391012,36 +391326,24 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20856 - uid: 51049 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 20858 - uid: 51297 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 20980 - uid: 51298 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 20983 - proto: WindoorSecureCargoLocked entities: - uid: 4879 @@ -391241,6 +391543,12 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: + - uid: 6258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-56.5 + parent: 2 - uid: 7171 components: - type: Transform @@ -391264,6 +391572,12 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-40.5 parent: 2 + - uid: 47167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-55.5 + parent: 2 - uid: 49787 components: - type: Transform @@ -391411,28 +391725,18 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-29.5 parent: 2 - - type: DeviceLinkSink - links: - - 21309 - - 21311 - uid: 11203 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,49.5 parent: 2 - - type: DeviceLinkSink - links: - - 51587 - uid: 11701 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,46.5 parent: 2 - - type: DeviceLinkSink - links: - - 51604 - uid: 11778 components: - type: Transform @@ -391533,7 +391837,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -116338.93 + secondsUntilStateChange: -129847.55 state: Opening - uid: 21930 components: @@ -392910,11 +393214,6 @@ entities: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 13591 - components: - - type: Transform - pos: 21.5,-55.5 - parent: 2 - uid: 13616 components: - type: Transform @@ -392935,16 +393234,6 @@ entities: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 13781 - components: - - type: Transform - pos: 21.5,-54.5 - parent: 2 - - uid: 13820 - components: - - type: Transform - pos: 21.5,-53.5 - parent: 2 - uid: 13822 components: - type: Transform @@ -394475,6 +394764,17 @@ entities: - type: Transform pos: -28.5,33.5 parent: 2 + - uid: 6120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-59.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 2 - uid: 6148 components: - type: Transform @@ -395242,30 +395542,6 @@ entities: - type: Transform pos: -63.5,-49.5 parent: 2 - - uid: 13463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-54.5 - parent: 2 - - uid: 13466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-60.5 - parent: 2 - - uid: 13539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-53.5 - parent: 2 - - uid: 13600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-61.5 - parent: 2 - uid: 13635 components: - type: Transform @@ -395894,6 +396170,17 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-39.5 parent: 2 + - uid: 47041 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 47043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-59.5 + parent: 2 - uid: 52042 components: - type: Transform @@ -396018,12 +396305,16 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,34.5 parent: 2 + - type: Physics + canCollide: False - uid: 5990 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,35.5 parent: 2 + - type: Physics + canCollide: False - uid: 5991 components: - type: Transform @@ -396425,6 +396716,44 @@ entities: - type: Transform pos: -46.5,-36.5 parent: 2 + - uid: 55406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,36.5 + parent: 2 + - uid: 55407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,37.5 + parent: 2 + - uid: 55408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,36.5 + parent: 2 + - type: Physics + canCollide: False + - uid: 55409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,37.5 + parent: 2 + - type: Physics + canCollide: False + - uid: 55410 + components: + - type: Transform + pos: -28.5,38.5 + parent: 2 + - uid: 55411 + components: + - type: Transform + pos: -30.5,38.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 426 @@ -399716,6 +400045,11 @@ entities: - type: Transform pos: 2.598732,0.8006773 parent: 54730 + - uid: 55420 + components: + - type: Transform + pos: -28.491568,37.51377 + parent: 2 - uid: 71054 components: - type: Transform diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml index 8ec3d6b2aa2..a5aafd6d5a5 100644 --- a/Resources/Maps/corvax_delta.yml +++ b/Resources/Maps/corvax_delta.yml @@ -740,13 +740,8 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 15842: 88,3 - 21360: -16.954817,20.099903 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 21361: 14.8853855,19.990562 + 15840: 88,3 + 21358: -16.954817,20.099903 - node: color: '#FFFFFFFF' id: Bot @@ -818,23 +813,23 @@ entities: 1221: 63,7 1222: 63,8 1223: 63,9 - 6994: 4,29 - 6995: 5,29 - 6996: 6,29 - 6997: 7,29 - 6998: 8,29 - 6999: 8,28 - 7000: 7,28 - 7001: 7,28 - 7002: 6,28 - 7003: 5,28 - 7004: 4,28 - 18574: 12,-13 - 18575: 13,-13 - 18576: 14,-13 - 18577: 14,-14 - 18578: 13,-14 - 18579: 12,-14 + 6992: 4,29 + 6993: 5,29 + 6994: 6,29 + 6995: 7,29 + 6996: 8,29 + 6997: 8,28 + 6998: 7,28 + 6999: 7,28 + 7000: 6,28 + 7001: 5,28 + 7002: 4,28 + 18572: 12,-13 + 18573: 13,-13 + 18574: 14,-13 + 18575: 14,-14 + 18576: 13,-14 + 18577: 12,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -897,12 +892,12 @@ entities: 1145: -91,-3 1146: -91,-13 1147: -95,-13 - 20027: -16,4 - 20028: -16,3 - 20029: -16,2 - 20030: -16,1 - 20031: -16,0 - 20032: -16,-1 + 20025: -16,4 + 20026: -16,3 + 20027: -16,2 + 20028: -16,1 + 20029: -16,0 + 20030: -16,-1 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -952,8 +947,8 @@ entities: color: '#A9DA8BFF' id: Box decals: - 3013: -31,45 - 3014: -31,38 + 3011: -31,45 + 3012: -31,38 - node: color: '#FFFFFFFF' id: Box @@ -987,4976 +982,4976 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 20046: -16,3 - 20047: -16,2 - 20048: -16,1 - 20049: -16,0 - 20050: -16,-1 - 20051: -16,4 + 20044: -16,3 + 20045: -16,2 + 20046: -16,1 + 20047: -16,0 + 20048: -16,-1 + 20049: -16,4 - node: color: '#DA8B8BFF' id: BrickTileDarkBox decals: - 19347: 55,9 + 19345: 55,9 - node: color: '#EFB341FF' id: BrickTileDarkBox decals: - 17855: -61,57 - 17856: -63,53 - 17857: -61,50 - 17858: -61,48 - 17859: -59,55 - 17860: -54,43 - 17861: -56,43 - 17862: -51,41 - 17863: -55,39 - 17864: -48,43 - 17865: -46,41 + 17853: -61,57 + 17854: -63,53 + 17855: -61,50 + 17856: -61,48 + 17857: -59,55 + 17858: -54,43 + 17859: -56,43 + 17860: -51,41 + 17861: -55,39 + 17862: -48,43 + 17863: -46,41 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1973: -8,30 - 1974: -8,33 - 1975: -4,30 - 1976: -8,27 - 1993: -9,25 - 2251: -14,48 - 2252: -14,50 - 2274: -25,41 - 2327: -28,30 - 2390: -31,29 - 2411: -30,39 - 2515: -9,45 - 2605: -5,37 - 2606: -1,42 - 2608: -1,40 - 2638: -1,55 - 2639: -2,51 - 2695: 3,49 - 2697: -12,51 - 2713: -6,51 - 2768: -1,48 - 2790: -4,47 - 2836: -30,44 - 2837: -32,44 - 2987: -36,49 - 2988: -38,44 - 3435: -1,61 - 3438: 2,59 - 3564: -14,77 - 3565: -16,77 - 3566: -10,77 - 3567: -8,77 - 3643: 4,77 - 3644: 2,77 - 3645: 4,84 - 3646: 2,84 - 3647: 6,86 - 3683: 6,66 - 3689: 4,64 - 3692: 4,60 - 3695: 5,91 - 3708: 10,83 - 3709: 13,78 - 3710: 12,73 - 3715: 10,89 - 3716: 12,87 - 3720: 5,93 - 3721: 10,91 - 3725: -22,55 - 3727: -25,66 - 3729: -25,63 - 3730: -25,61 - 3731: -25,59 - 3732: -28,59 - 3733: -30,66 - 3775: 4,57 - 3822: 9,68 - 3826: 13,67 - 3893: 24,66 - 3894: 16,66 - 3923: 7,58 - 3967: -31,59 + 1971: -8,30 + 1972: -8,33 + 1973: -4,30 + 1974: -8,27 + 1991: -9,25 + 2249: -14,48 + 2250: -14,50 + 2272: -25,41 + 2325: -28,30 + 2388: -31,29 + 2409: -30,39 + 2513: -9,45 + 2603: -5,37 + 2604: -1,42 + 2606: -1,40 + 2636: -1,55 + 2637: -2,51 + 2693: 3,49 + 2695: -12,51 + 2711: -6,51 + 2766: -1,48 + 2788: -4,47 + 2834: -30,44 + 2835: -32,44 + 2985: -36,49 + 2986: -38,44 + 3433: -1,61 + 3436: 2,59 + 3562: -14,77 + 3563: -16,77 + 3564: -10,77 + 3565: -8,77 + 3641: 4,77 + 3642: 2,77 + 3643: 4,84 + 3644: 2,84 + 3645: 6,86 + 3681: 6,66 + 3687: 4,64 + 3690: 4,60 + 3693: 5,91 + 3706: 10,83 + 3707: 13,78 + 3708: 12,73 + 3713: 10,89 + 3714: 12,87 + 3718: 5,93 + 3719: 10,91 + 3723: -22,55 + 3725: -25,66 + 3727: -25,63 + 3728: -25,61 + 3729: -25,59 + 3730: -28,59 + 3731: -30,66 + 3773: 4,57 + 3820: 9,68 + 3824: 13,67 + 3891: 24,66 + 3892: 16,66 + 3921: 7,58 + 3965: -31,59 + 3966: -38,58 + 3967: -38,58 3968: -38,58 - 3969: -38,58 - 3970: -38,58 - 3971: -36,58 - 4124: -21,20 - 4162: -25,18 - 4163: -21,20 - 4164: -21,17 - 4199: -10,12 - 4387: 1,29 - 4390: 4,32 - 4391: 9,32 - 4392: 11,28 - 4393: 11,30 - 4394: 13,33 - 4484: 15,33 - 4521: 10,38 - 4522: 5,38 - 4523: 10,41 - 4600: 12,45 - 4601: 12,43 - 4666: 19,24 - 4667: 21,25 - 4676: 28,31 - 4677: 23,36 - 4805: 28,39 - 4876: 33,51 - 4877: 33,49 - 4878: 39,51 - 4916: 10,55 - 4917: 17,55 - 5077: 39,52 - 5078: 39,48 - 5079: 33,48 - 5080: 33,52 - 5081: 39,49 - 5106: 31,29 - 5107: 35,29 - 5108: 37,30 - 5109: 35,33 - 5541: -17,4 - 5542: -17,-1 - 5598: -35,26 - 5647: -1,-7 - 5648: 8,-7 - 5656: 15,-4 - 5659: -11,6 - 5660: -15,4 - 5661: -14,-5 - 5670: 8,12 - 5701: 13,3 - 5716: 8,4 - 5729: 10,-1 - 5788: 12,-3 - 5817: -10,-7 - 6257: -4,-13 - 6258: 2,-13 - 6259: -4,-18 - 6260: -3,-16 - 6365: 8,-18 - 6366: 11,-16 - 6455: -21,-20 - 6557: -24,-10 - 6698: -31,1 - 6710: -24,-1 - 6711: -23,3 - 6719: -28,-17 - 6785: -17,-1 - 6787: -31,7 - 6788: -36,7 - 6793: -26,16 - 6820: -42,2 - 6912: -36,17 - 6965: -24,-19 - 6966: -24,-19 - 7068: 22,7 - 7087: 22,3 - 7088: 19,-3 - 7089: 22,-9 - 7136: 24,-8 - 7187: 32,1 - 7188: 35,3 - 7189: 36,-3 - 7190: 24,-2 - 7193: 30,3 - 7303: 29,7 - 7364: 33,6 - 7365: 33,4 - 7366: 36,7 - 7367: 36,10 - 7368: 38,6 - 7369: 38,4 - 7390: 45,8 - 7391: 40,10 - 7392: 45,12 - 7393: 40,2 - 7394: 45,0 - 7395: 36,10 - 7490: 49,4 - 7493: 49,8 - 7496: 53,10 - 7508: 47,14 - 7509: 51,14 - 7521: 49,16 - 7534: 37,20 - 7535: 44,20 - 7536: 52,20 - 7537: 57,20 - 7538: 55,17 - 7539: 60,25 - 7570: 49,12 - 7576: 75,24 - 7577: 75,26 - 7578: 73,20 - 7579: 71,18 - 7580: 71,13 - 7581: 71,6 - 7582: 73,4 - 7583: 75,9 - 7584: 79,9 - 7585: 83,11 - 7586: 94,17 - 7587: 94,21 - 7588: 90,21 - 7589: 92,27 - 7590: 92,24 - 7591: 83,11 - 7592: 73,4 - 7593: 72,-4 - 7594: 72,-4 - 7595: 69,-2 - 7596: 69,-2 - 7597: 64,-4 - 7598: 64,-4 - 7599: 61,-2 - 7600: 65,-2 - 7601: 52,-2 - 7602: 47,-2 - 7603: 47,-2 - 7638: 58,2 - 7639: 62,2 - 7640: 66,2 - 7641: 62,10 - 7642: 61,12 - 7643: 71,6 - 7662: 71,18 - 7663: 71,13 - 7668: 73,20 - 7788: 68,-1 - 7789: 68,1 - 7790: 71,-1 - 7791: 71,1 - 7973: 64,-19 - 7974: 66,-19 - 7975: 66,-22 - 7976: 64,-22 - 7977: 76,-22 - 7978: 76,-19 - 7979: 78,-19 - 7980: 78,-22 - 7981: 82,-22 - 7982: 82,-19 - 8031: 54,-21 - 8032: 54,-19 - 8033: 54,-11 - 8098: 23,-15 - 8099: 25,-13 - 8100: 32,-16 - 8101: 27,-17 - 8102: 29,-17 - 8103: 31,-17 - 8158: 25,-19 - 8165: 32,-12 - 8166: 32,-10 - 8167: 32,-10 - 8226: 33,-6 - 8230: 42,-8 - 8231: 39,-18 - 8232: 41,-18 - 8233: 41,-18 - 8234: 42,-19 - 8235: 42,-21 - 8238: 44,-22 - 8239: 48,-22 - 8240: 52,-22 - 8291: 40,-17 - 8369: 46,-13 - 8410: 52,-18 - 8584: 54,-29 - 9559: 2,-35 - 9560: 5,-29 - 9561: 11,-29 - 9562: 13,-29 - 9563: 12,-33 - 9564: 15,-31 - 9629: 9,-36 - 9630: 9,-34 - 9631: 5,-37 - 9636: 1,-39 - 9715: 15,-35 - 9746: 21,-33 - 9747: 29,-33 - 9748: 36,-33 - 9749: 33,-23 - 9750: 29,-28 - 9751: 23,-29 - 9752: 29,-40 - 9753: 25,-44 - 9754: 29,-44 - 9755: 29,-50 - 9756: 19,-44 - 9757: 22,-50 - 9758: 17,-48 - 9761: 27,-54 - 9925: 15,-44 - 9967: 39,-35 - 9972: 37,-43 - 10101: 35,-26 - 10102: 37,-27 - 10103: 37,-25 - 10181: 31,-54 - 10320: 4,-42 - 10321: 1,-44 - 10322: 9,-42 - 10323: 4,-48 - 10324: 1,-51 - 10325: 10,-54 - 10326: 8,-56 - 10327: 2,-55 - 10328: 12,-56 - 10329: 10,-57 - 10330: 7,-57 - 10331: 13,-47 - 10332: 17,-54 - 10512: 25,-56 - 10513: 29,-56 - 10538: 2,-60 - 10539: 2,-60 - 10540: 5,-63 - 10541: 5,-63 - 10553: 5,-73 - 10554: 5,-73 - 10555: 7,-75 - 10556: 5,-79 - 10557: 4,-87 - 10558: 4,-83 - 10559: 7,-77 - 10560: 7,-65 - 10669: 76,-45 - 10670: 73,-41 - 10671: 68,-41 - 10672: 73,-48 - 10673: 71,-50 - 10848: 33,-61 - 10900: 42,-62 - 10901: 37,-62 - 10916: 33,-68 - 10917: 37,-70 - 10918: 39,-72 - 10919: 41,-72 - 10920: 41,-72 - 11210: -61,-43 - 11211: -59,-33 - 11212: -59,-40 - 11213: -47,-46 - 11214: -47,-42 - 11326: -11,-83 - 11327: -11,-79 - 11328: -6,-83 - 11329: -4,-83 - 11330: -4,-83 - 11331: 2,-87 - 11332: -4,-87 - 11333: -6,-87 - 11337: 2,-83 - 11380: -24,-63 - 11381: -23,-71 - 11382: -23,-77 - 11383: -23,-79 - 11384: -21,-77 - 11385: -18,-78 - 11386: -12,-78 - 11387: -14,-77 - 11388: -19,-81 - 11389: -10,-63 - 11394: -34,-51 - 11395: -36,-53 - 11396: -34,-55 - 11397: -32,-53 - 11398: -3,-48 - 11408: -4,-35 - 11412: -6,-29 - 11416: -15,-29 - 11417: -13,-29 - 11653: -11,-35 - 11654: -11,-34 - 11655: -13,-33 - 11656: -15,-33 - 11706: -7,-37 - 11707: -6,-45 - 11708: -12,-50 - 11709: -20,-52 - 11710: -18,-51 - 11711: -6,-54 - 11712: -4,-56 - 11713: -16,-55 - 11718: -19,-45 - 11719: -19,-45 - 11720: -16,-40 - 11721: -34,-25 - 11722: -38,-25 - 11723: -42,-25 - 11724: -49,-28 - 11725: -42,-31 - 11726: -38,-31 - 11727: -34,-31 - 11739: -46,-24 - 11740: -48,-23 - 11741: -48,-23 - 11742: -35,-37 - 11743: -35,-37 - 11744: -42,-37 - 11745: -42,-37 - 11746: -45,-35 - 11747: -29,-37 - 11748: -29,-37 - 11749: -31,-39 - 11750: -29,-43 - 11751: -29,-43 - 11752: -24,-37 - 11753: -12,-41 - 11829: -12,-59 - 11830: -24,-43 - 11831: -24,-49 - 11890: -36,-45 - 11891: -36,-40 - 12084: -25,-24 - 12085: -23,-23 - 12086: -21,-26 - 12087: -17,-24 - 12088: -21,-31 - 12379: -17,-64 - 12380: -4,-60 - 12715: -37,27 - 12757: -45,9 - 12759: -45,18 - 12873: -45,9 - 12875: -44,23 - 13309: 52,-37 - 13377: -37,-59 - 13378: -37,-64 - 13379: -35,-66 - 13380: -41,-64 - 13391: -30,-61 - 13586: -33,-72 - 14409: -46,12 - 14410: -46,14 - 15375: -49,9 - 15376: -48,7 - 15392: -42,2 - 15589: 75,1 - 15595: 92,8 - 15596: 94,10 - 15597: 78,3 - 15598: 81,-1 - 15599: 85,-1 - 15600: 89,-1 - 15606: 96,-3 - 15912: 94,13 - 16179: -61,-48 - 16703: -58,-11 - 16704: -56,-9 - 16705: -56,-7 - 16728: -58,-11 - 16734: -56,-19 - 16735: -54,-19 - 16738: -60,-17 - 16739: -62,-17 - 16785: -58,-5 - 16790: -48,1 - 16791: -49,3 - 16855: -56,-7 - 16856: -56,-9 - 16857: -62,-7 - 16947: -62,1 - 16948: -65,1 - 17008: -62,-7 - 17091: -51,-15 - 17122: -61,-18 - 17151: -60,14 - 17152: -67,15 - 17153: -72,13 - 17154: -72,9 - 17155: -79,14 - 17156: -77,8 - 17157: -83,14 - 17158: -77,2 - 17159: -75,0 - 17160: -73,3 - 17161: -65,1 - 17162: -71,-5 - 17163: -69,-5 - 17172: -60,14 - 17173: -58,16 - 17174: -67,15 - 17175: -72,13 - 17176: -77,12 - 17177: -79,14 - 17178: -77,8 - 17179: -72,9 - 17180: -73,3 - 17181: -77,2 - 17182: -75,0 - 17183: -80,0 - 17184: -80,-5 - 17185: -82,-3 - 17186: -62,-7 - 17187: -60,6 - 17188: -60,10 - 17189: -46,14 - 17190: -46,12 - 17264: -77,8 - 17265: -72,9 - 17266: -73,3 - 17267: -77,2 - 17268: -75,0 - 17269: -80,0 - 17462: 9,90 - 17463: 11,90 - 17854: -69,55 - 17866: -55,39 - 17867: -54,43 - 17868: -56,43 - 17869: -51,41 - 17870: -48,43 - 17871: -46,41 - 17872: -61,48 - 17873: -61,50 - 17874: -63,53 - 17875: -61,57 - 17876: -67,57 - 17877: -59,55 - 17878: -60,39 - 17879: -62,39 - 17880: -55,31 - 17881: -51,21 - 18084: -44,52 - 18085: -44,50 - 18118: -52,20 - 18508: -14,-11 - 18509: -10,-11 - 18545: 8,-11 - 18996: 57,3 - 18997: 59,3 - 18998: 61,3 - 18999: 63,3 - 19000: 65,3 - 19001: 67,3 - 19005: 57,6 - 19006: 59,6 - 19007: 61,6 - 19008: 63,6 - 19009: 65,6 - 19010: 67,6 - 19011: 68,7 - 19012: 70,7 - 19013: 70,8 - 19014: 68,8 - 19835: -29,-25 - 19937: -48,-3 - 20022: -16,5 - 20023: -16,-2 - 20058: 37,39 - 20081: 71,26 - 20114: 62,27 - 20149: 40,-17 - 20150: 40,-17 - 21217: 75,-4 - 21247: 45,-8 - 21257: 51,-6 - 21276: 56,-2 - 21393: 21,23 + 3969: -36,58 + 4122: -21,20 + 4160: -25,18 + 4161: -21,20 + 4162: -21,17 + 4197: -10,12 + 4385: 1,29 + 4388: 4,32 + 4389: 9,32 + 4390: 11,28 + 4391: 11,30 + 4392: 13,33 + 4482: 15,33 + 4519: 10,38 + 4520: 5,38 + 4521: 10,41 + 4598: 12,45 + 4599: 12,43 + 4664: 19,24 + 4665: 21,25 + 4674: 28,31 + 4675: 23,36 + 4803: 28,39 + 4874: 33,51 + 4875: 33,49 + 4876: 39,51 + 4914: 10,55 + 4915: 17,55 + 5075: 39,52 + 5076: 39,48 + 5077: 33,48 + 5078: 33,52 + 5079: 39,49 + 5104: 31,29 + 5105: 35,29 + 5106: 37,30 + 5107: 35,33 + 5539: -17,4 + 5540: -17,-1 + 5596: -35,26 + 5645: -1,-7 + 5646: 8,-7 + 5654: 15,-4 + 5657: -11,6 + 5658: -15,4 + 5659: -14,-5 + 5668: 8,12 + 5699: 13,3 + 5714: 8,4 + 5727: 10,-1 + 5786: 12,-3 + 5815: -10,-7 + 6255: -4,-13 + 6256: 2,-13 + 6257: -4,-18 + 6258: -3,-16 + 6363: 8,-18 + 6364: 11,-16 + 6453: -21,-20 + 6555: -24,-10 + 6696: -31,1 + 6708: -24,-1 + 6709: -23,3 + 6717: -28,-17 + 6783: -17,-1 + 6785: -31,7 + 6786: -36,7 + 6791: -26,16 + 6818: -42,2 + 6910: -36,17 + 6963: -24,-19 + 6964: -24,-19 + 7066: 22,7 + 7085: 22,3 + 7086: 19,-3 + 7087: 22,-9 + 7134: 24,-8 + 7185: 32,1 + 7186: 35,3 + 7187: 36,-3 + 7188: 24,-2 + 7191: 30,3 + 7301: 29,7 + 7362: 33,6 + 7363: 33,4 + 7364: 36,7 + 7365: 36,10 + 7366: 38,6 + 7367: 38,4 + 7388: 45,8 + 7389: 40,10 + 7390: 45,12 + 7391: 40,2 + 7392: 45,0 + 7393: 36,10 + 7488: 49,4 + 7491: 49,8 + 7494: 53,10 + 7506: 47,14 + 7507: 51,14 + 7519: 49,16 + 7532: 37,20 + 7533: 44,20 + 7534: 52,20 + 7535: 57,20 + 7536: 55,17 + 7537: 60,25 + 7568: 49,12 + 7574: 75,24 + 7575: 75,26 + 7576: 73,20 + 7577: 71,18 + 7578: 71,13 + 7579: 71,6 + 7580: 73,4 + 7581: 75,9 + 7582: 79,9 + 7583: 83,11 + 7584: 94,17 + 7585: 94,21 + 7586: 90,21 + 7587: 92,27 + 7588: 92,24 + 7589: 83,11 + 7590: 73,4 + 7591: 72,-4 + 7592: 72,-4 + 7593: 69,-2 + 7594: 69,-2 + 7595: 64,-4 + 7596: 64,-4 + 7597: 61,-2 + 7598: 65,-2 + 7599: 52,-2 + 7600: 47,-2 + 7601: 47,-2 + 7636: 58,2 + 7637: 62,2 + 7638: 66,2 + 7639: 62,10 + 7640: 61,12 + 7641: 71,6 + 7660: 71,18 + 7661: 71,13 + 7666: 73,20 + 7786: 68,-1 + 7787: 68,1 + 7788: 71,-1 + 7789: 71,1 + 7971: 64,-19 + 7972: 66,-19 + 7973: 66,-22 + 7974: 64,-22 + 7975: 76,-22 + 7976: 76,-19 + 7977: 78,-19 + 7978: 78,-22 + 7979: 82,-22 + 7980: 82,-19 + 8029: 54,-21 + 8030: 54,-19 + 8031: 54,-11 + 8096: 23,-15 + 8097: 25,-13 + 8098: 32,-16 + 8099: 27,-17 + 8100: 29,-17 + 8101: 31,-17 + 8156: 25,-19 + 8163: 32,-12 + 8164: 32,-10 + 8165: 32,-10 + 8224: 33,-6 + 8228: 42,-8 + 8229: 39,-18 + 8230: 41,-18 + 8231: 41,-18 + 8232: 42,-19 + 8233: 42,-21 + 8236: 44,-22 + 8237: 48,-22 + 8238: 52,-22 + 8289: 40,-17 + 8367: 46,-13 + 8408: 52,-18 + 8582: 54,-29 + 9557: 2,-35 + 9558: 5,-29 + 9559: 11,-29 + 9560: 13,-29 + 9561: 12,-33 + 9562: 15,-31 + 9627: 9,-36 + 9628: 9,-34 + 9629: 5,-37 + 9634: 1,-39 + 9713: 15,-35 + 9744: 21,-33 + 9745: 29,-33 + 9746: 36,-33 + 9747: 33,-23 + 9748: 29,-28 + 9749: 23,-29 + 9750: 29,-40 + 9751: 25,-44 + 9752: 29,-44 + 9753: 29,-50 + 9754: 19,-44 + 9755: 22,-50 + 9756: 17,-48 + 9759: 27,-54 + 9923: 15,-44 + 9965: 39,-35 + 9970: 37,-43 + 10099: 35,-26 + 10100: 37,-27 + 10101: 37,-25 + 10179: 31,-54 + 10318: 4,-42 + 10319: 1,-44 + 10320: 9,-42 + 10321: 4,-48 + 10322: 1,-51 + 10323: 10,-54 + 10324: 8,-56 + 10325: 2,-55 + 10326: 12,-56 + 10327: 10,-57 + 10328: 7,-57 + 10329: 13,-47 + 10330: 17,-54 + 10510: 25,-56 + 10511: 29,-56 + 10536: 2,-60 + 10537: 2,-60 + 10538: 5,-63 + 10539: 5,-63 + 10551: 5,-73 + 10552: 5,-73 + 10553: 7,-75 + 10554: 5,-79 + 10555: 4,-87 + 10556: 4,-83 + 10557: 7,-77 + 10558: 7,-65 + 10667: 76,-45 + 10668: 73,-41 + 10669: 68,-41 + 10670: 73,-48 + 10671: 71,-50 + 10846: 33,-61 + 10898: 42,-62 + 10899: 37,-62 + 10914: 33,-68 + 10915: 37,-70 + 10916: 39,-72 + 10917: 41,-72 + 10918: 41,-72 + 11208: -61,-43 + 11209: -59,-33 + 11210: -59,-40 + 11211: -47,-46 + 11212: -47,-42 + 11324: -11,-83 + 11325: -11,-79 + 11326: -6,-83 + 11327: -4,-83 + 11328: -4,-83 + 11329: 2,-87 + 11330: -4,-87 + 11331: -6,-87 + 11335: 2,-83 + 11378: -24,-63 + 11379: -23,-71 + 11380: -23,-77 + 11381: -23,-79 + 11382: -21,-77 + 11383: -18,-78 + 11384: -12,-78 + 11385: -14,-77 + 11386: -19,-81 + 11387: -10,-63 + 11392: -34,-51 + 11393: -36,-53 + 11394: -34,-55 + 11395: -32,-53 + 11396: -3,-48 + 11406: -4,-35 + 11410: -6,-29 + 11414: -15,-29 + 11415: -13,-29 + 11651: -11,-35 + 11652: -11,-34 + 11653: -13,-33 + 11654: -15,-33 + 11704: -7,-37 + 11705: -6,-45 + 11706: -12,-50 + 11707: -20,-52 + 11708: -18,-51 + 11709: -6,-54 + 11710: -4,-56 + 11711: -16,-55 + 11716: -19,-45 + 11717: -19,-45 + 11718: -16,-40 + 11719: -34,-25 + 11720: -38,-25 + 11721: -42,-25 + 11722: -49,-28 + 11723: -42,-31 + 11724: -38,-31 + 11725: -34,-31 + 11737: -46,-24 + 11738: -48,-23 + 11739: -48,-23 + 11740: -35,-37 + 11741: -35,-37 + 11742: -42,-37 + 11743: -42,-37 + 11744: -45,-35 + 11745: -29,-37 + 11746: -29,-37 + 11747: -31,-39 + 11748: -29,-43 + 11749: -29,-43 + 11750: -24,-37 + 11751: -12,-41 + 11827: -12,-59 + 11828: -24,-43 + 11829: -24,-49 + 11888: -36,-45 + 11889: -36,-40 + 12082: -25,-24 + 12083: -23,-23 + 12084: -21,-26 + 12085: -17,-24 + 12086: -21,-31 + 12377: -17,-64 + 12378: -4,-60 + 12713: -37,27 + 12755: -45,9 + 12757: -45,18 + 12871: -45,9 + 12873: -44,23 + 13307: 52,-37 + 13375: -37,-59 + 13376: -37,-64 + 13377: -35,-66 + 13378: -41,-64 + 13389: -30,-61 + 13584: -33,-72 + 14407: -46,12 + 14408: -46,14 + 15373: -49,9 + 15374: -48,7 + 15390: -42,2 + 15587: 75,1 + 15593: 92,8 + 15594: 94,10 + 15595: 78,3 + 15596: 81,-1 + 15597: 85,-1 + 15598: 89,-1 + 15604: 96,-3 + 15910: 94,13 + 16177: -61,-48 + 16701: -58,-11 + 16702: -56,-9 + 16703: -56,-7 + 16726: -58,-11 + 16732: -56,-19 + 16733: -54,-19 + 16736: -60,-17 + 16737: -62,-17 + 16783: -58,-5 + 16788: -48,1 + 16789: -49,3 + 16853: -56,-7 + 16854: -56,-9 + 16855: -62,-7 + 16945: -62,1 + 16946: -65,1 + 17006: -62,-7 + 17089: -51,-15 + 17120: -61,-18 + 17149: -60,14 + 17150: -67,15 + 17151: -72,13 + 17152: -72,9 + 17153: -79,14 + 17154: -77,8 + 17155: -83,14 + 17156: -77,2 + 17157: -75,0 + 17158: -73,3 + 17159: -65,1 + 17160: -71,-5 + 17161: -69,-5 + 17170: -60,14 + 17171: -58,16 + 17172: -67,15 + 17173: -72,13 + 17174: -77,12 + 17175: -79,14 + 17176: -77,8 + 17177: -72,9 + 17178: -73,3 + 17179: -77,2 + 17180: -75,0 + 17181: -80,0 + 17182: -80,-5 + 17183: -82,-3 + 17184: -62,-7 + 17185: -60,6 + 17186: -60,10 + 17187: -46,14 + 17188: -46,12 + 17262: -77,8 + 17263: -72,9 + 17264: -73,3 + 17265: -77,2 + 17266: -75,0 + 17267: -80,0 + 17460: 9,90 + 17461: 11,90 + 17852: -69,55 + 17864: -55,39 + 17865: -54,43 + 17866: -56,43 + 17867: -51,41 + 17868: -48,43 + 17869: -46,41 + 17870: -61,48 + 17871: -61,50 + 17872: -63,53 + 17873: -61,57 + 17874: -67,57 + 17875: -59,55 + 17876: -60,39 + 17877: -62,39 + 17878: -55,31 + 17879: -51,21 + 18082: -44,52 + 18083: -44,50 + 18116: -52,20 + 18506: -14,-11 + 18507: -10,-11 + 18543: 8,-11 + 18994: 57,3 + 18995: 59,3 + 18996: 61,3 + 18997: 63,3 + 18998: 65,3 + 18999: 67,3 + 19003: 57,6 + 19004: 59,6 + 19005: 61,6 + 19006: 63,6 + 19007: 65,6 + 19008: 67,6 + 19009: 68,7 + 19010: 70,7 + 19011: 70,8 + 19012: 68,8 + 19833: -29,-25 + 19935: -48,-3 + 20020: -16,5 + 20021: -16,-2 + 20056: 37,39 + 20079: 71,26 + 20112: 62,27 + 20147: 40,-17 + 20148: 40,-17 + 21215: 75,-4 + 21245: 45,-8 + 21255: 51,-6 + 21274: 56,-2 + 21391: 21,23 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 4103: 0,25 + 4101: 0,25 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNe decals: - 4192: -11,16 - 4211: 11,16 - 4275: 4,18 - 4276: 7,16 - 4307: 14,16 - 9960: 34,-44 + 4190: -11,16 + 4209: 11,16 + 4273: 4,18 + 4274: 7,16 + 4305: 14,16 + 9958: 34,-44 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerNe decals: - 2979: -26,54 - 2980: -25,53 + 2977: -26,54 + 2978: -25,53 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNe decals: - 11760: -5,-38 - 11761: -4,-39 - 12652: -51,-25 - 12653: -50,-27 + 11758: -5,-38 + 11759: -4,-39 + 12650: -51,-25 + 12651: -50,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNe decals: - 7438: 37,9 - 7454: 37,12 - 7457: 48,-3 - 7623: 58,-3 - 7626: 53,-3 - 15579: 74,3 - 19058: 74,19 - 19084: 44,1 - 19127: 41,1 - 19143: 44,9 - 19144: 44,13 - 19145: 41,13 - 19181: 47,24 - 19185: 48,19 - 19215: 54,19 - 19230: 71,-3 - 19245: 76,23 - 19312: 60,13 - 19345: 55,9 - 19642: 55,29 - 20055: 58,32 - 20056: 59,31 + 7436: 37,9 + 7452: 37,12 + 7455: 48,-3 + 7621: 58,-3 + 7624: 53,-3 + 15577: 74,3 + 19056: 74,19 + 19082: 44,1 + 19125: 41,1 + 19141: 44,9 + 19142: 44,13 + 19143: 41,13 + 19179: 47,24 + 19183: 48,19 + 19213: 54,19 + 19228: 71,-3 + 19243: 76,23 + 19310: 60,13 + 19343: 55,9 + 19640: 55,29 + 20053: 58,32 + 20054: 59,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerNe decals: - 17591: -61,11 - 17671: -70,8 - 18263: -67,1 + 17589: -61,11 + 17669: -70,8 + 18261: -67,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 1202: 13,-59 1242: 70,4 - 2023: -15,28 - 2342: -28,38 - 2414: -10,46 - 2472: -10,46 - 2545: -6,43 - 2546: -7,46 - 3210: -2,65 - 3949: 18,61 - 5723: 11,7 - 5737: 11,3 - 5783: 8,-2 - 5820: -15,-4 - 5830: -9,-3 - 5943: 1,14 - 6572: -22,-5 - 6573: -22,-5 - 7232: 23,2 - 7294: 36,1 - 7338: 33,11 - 7699: 43,22 - 7718: 36,21 - 8533: 53,-23 - 8611: 65,-10 - 8615: 65,-29 - 10263: 37,-29 - 10264: 37,-29 - 10429: 12,-49 - 10498: 14,-58 - 10599: 51,-54 - 10696: 82,-43 - 10711: 74,-37 - 10792: 45,-51 - 11325: -74,-34 - 12422: -15,-74 - 12443: -13,-65 - 12457: -13,-79 - 12469: -21,-80 - 12625: -23,-64 - 13384: -38,-66 - 13558: -29,-73 - 13590: -31,-77 - 15681: 93,7 - 15720: 100,-2 - 15754: 96,3 - 16050: 91,9 - 16800: -45,6 - 17129: -46,-12 - 17752: -78,11 - 18089: -44,48 - 18104: -53,38 - 18125: -52,25 - 18162: -57,7 - 18402: -50,-36 - 18568: 14,-13 - 18584: 14,-13 - 18585: 14,-13 - 19462: -9,34 - 19471: -12,34 - 19528: -12,34 - 19545: -9,34 - 19844: -27,-22 - 20135: 68,30 - 21405: 26,17 - 21449: 25,16 + 2021: -15,28 + 2340: -28,38 + 2412: -10,46 + 2470: -10,46 + 2543: -6,43 + 2544: -7,46 + 3208: -2,65 + 3947: 18,61 + 5721: 11,7 + 5735: 11,3 + 5781: 8,-2 + 5818: -15,-4 + 5828: -9,-3 + 5941: 1,14 + 6570: -22,-5 + 6571: -22,-5 + 7230: 23,2 + 7292: 36,1 + 7336: 33,11 + 7697: 43,22 + 7716: 36,21 + 8531: 53,-23 + 8609: 65,-10 + 8613: 65,-29 + 10261: 37,-29 + 10262: 37,-29 + 10427: 12,-49 + 10496: 14,-58 + 10597: 51,-54 + 10694: 82,-43 + 10709: 74,-37 + 10790: 45,-51 + 11323: -74,-34 + 12420: -15,-74 + 12441: -13,-65 + 12455: -13,-79 + 12467: -21,-80 + 12623: -23,-64 + 13382: -38,-66 + 13556: -29,-73 + 13588: -31,-77 + 15679: 93,7 + 15718: 100,-2 + 15752: 96,3 + 16048: 91,9 + 16798: -45,6 + 17127: -46,-12 + 17750: -78,11 + 18087: -44,48 + 18102: -53,38 + 18123: -52,25 + 18160: -57,7 + 18400: -50,-36 + 18566: 14,-13 + 18582: 14,-13 + 18583: 14,-13 + 19460: -9,34 + 19469: -12,34 + 19526: -12,34 + 19543: -9,34 + 19842: -27,-22 + 20133: 68,30 + 21403: 26,17 + 21447: 25,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNw decals: - 4174: -16,16 - 4181: -13,16 - 4213: 9,16 - 4262: -9,16 - 4265: -6,18 - 21339: -16,16 + 4172: -16,16 + 4179: -13,16 + 4211: 9,16 + 4260: -9,16 + 4263: -6,18 + 21337: -16,16 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNw decals: - 11754: -10,-38 - 11755: -10,-38 - 11756: -11,-39 - 12651: -53,-25 + 11752: -10,-38 + 11753: -10,-38 + 11754: -11,-39 + 12649: -53,-25 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNw decals: - 7453: 35,12 - 7620: 50,-3 - 7621: 55,-3 - 7622: 55,-3 - 15580: 72,3 - 19059: 72,19 - 19085: 43,1 - 19124: 35,9 - 19126: 39,1 - 19140: 43,13 - 19141: 39,13 - 19142: 43,9 - 19165: 46,13 - 19179: 45,24 - 19214: 50,19 - 19228: 56,19 - 19229: 68,-3 - 19244: 72,23 - 19313: 50,13 - 19346: 50,9 - 19403: -20,-24 - 19641: 53,29 - 20052: 50,32 - 20053: 49,31 + 7451: 35,12 + 7618: 50,-3 + 7619: 55,-3 + 7620: 55,-3 + 15578: 72,3 + 19057: 72,19 + 19083: 43,1 + 19122: 35,9 + 19124: 39,1 + 19138: 43,13 + 19139: 39,13 + 19140: 43,9 + 19163: 46,13 + 19177: 45,24 + 19212: 50,19 + 19226: 56,19 + 19227: 68,-3 + 19242: 72,23 + 19311: 50,13 + 19344: 50,9 + 19401: -20,-24 + 19639: 53,29 + 20050: 50,32 + 20051: 49,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerNw decals: - 20325: -24,2 + 20323: -24,2 - node: color: '#EFB341FF' id: BrickTileDarkCornerNw decals: - 17590: -66,11 - 17672: -74,8 - 18262: -73,1 + 17588: -66,11 + 17670: -74,8 + 18260: -73,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 1203: 11,-59 1241: 68,4 - 2012: -17,34 - 2535: -8,46 - 2614: -4,40 - 2720: -7,54 - 3935: 12,62 - 3983: -42,63 - 5713: 7,7 - 5725: 7,3 - 5782: 7,-2 - 5819: -16,-4 - 5828: -13,-3 - 5942: -3,14 - 6570: -26,-5 - 6571: -26,-5 - 7242: 20,2 - 7293: 34,1 - 7309: 26,9 - 7337: 29,11 - 7693: 39,22 - 7716: 34,21 - 7717: 34,21 - 8532: 51,-23 - 8609: 64,-29 - 8610: 64,-10 - 10262: 35,-29 - 10428: 2,-49 - 10463: 2,-49 - 10598: 49,-54 - 10695: 80,-43 - 10710: 72,-37 - 10791: 44,-51 - 11323: -75,-34 - 11324: -75,-34 - 12423: -19,-74 - 12442: -21,-65 - 12456: -16,-79 - 12468: -23,-80 - 12576: -18,-80 - 12611: -25,-64 - 12612: -24,-72 - 12626: -25,-64 - 12708: -39,26 - 13381: -41,-66 - 13589: -35,-77 - 15669: 89,10 - 15684: 91,7 - 15719: 99,-2 - 15747: 93,3 - 15865: 79,-2 - 15892: 83,-2 - 15893: 87,-2 - 15922: 95,14 - 16053: 93,9 - 16796: -49,6 - 17753: -79,11 - 18088: -45,48 - 18161: -58,7 - 18392: -53,-36 - 18569: 12,-13 - 18583: 12,-13 - 19461: -10,34 - 19485: -15,31 - 19527: -10,34 - 19838: -31,-22 - 20126: 61,30 - 21404: 22,17 - 21448: 23,16 + 2010: -17,34 + 2533: -8,46 + 2612: -4,40 + 2718: -7,54 + 3933: 12,62 + 3981: -42,63 + 5711: 7,7 + 5723: 7,3 + 5780: 7,-2 + 5817: -16,-4 + 5826: -13,-3 + 5940: -3,14 + 6568: -26,-5 + 6569: -26,-5 + 7240: 20,2 + 7291: 34,1 + 7307: 26,9 + 7335: 29,11 + 7691: 39,22 + 7714: 34,21 + 7715: 34,21 + 8530: 51,-23 + 8607: 64,-29 + 8608: 64,-10 + 10260: 35,-29 + 10426: 2,-49 + 10461: 2,-49 + 10596: 49,-54 + 10693: 80,-43 + 10708: 72,-37 + 10789: 44,-51 + 11321: -75,-34 + 11322: -75,-34 + 12421: -19,-74 + 12440: -21,-65 + 12454: -16,-79 + 12466: -23,-80 + 12574: -18,-80 + 12609: -25,-64 + 12610: -24,-72 + 12624: -25,-64 + 12706: -39,26 + 13379: -41,-66 + 13587: -35,-77 + 15667: 89,10 + 15682: 91,7 + 15717: 99,-2 + 15745: 93,3 + 15863: 79,-2 + 15890: 83,-2 + 15891: 87,-2 + 15920: 95,14 + 16051: 93,9 + 16794: -49,6 + 17751: -79,11 + 18086: -45,48 + 18159: -58,7 + 18390: -53,-36 + 18567: 12,-13 + 18581: 12,-13 + 19459: -10,34 + 19483: -15,31 + 19525: -10,34 + 19836: -31,-22 + 20124: 61,30 + 21402: 22,17 + 21446: 23,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSe decals: - 4210: 11,13 - 4288: -4,13 - 4308: 14,13 - 9961: 34,-45 + 4208: 11,13 + 4286: -4,13 + 4306: 14,13 + 9959: 34,-45 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSe decals: - 2981: -25,52 + 2979: -25,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSe decals: - 11762: -4,-43 - 11763: -5,-44 - 12150: -23,-48 - 12654: -50,-29 - 12655: -51,-31 + 11760: -4,-43 + 11761: -5,-44 + 12148: -23,-48 + 12652: -50,-29 + 12653: -51,-31 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSe decals: - 7452: 37,11 - 7459: 48,-5 - 7614: 58,-5 - 7615: 53,-5 - 15587: 74,-1 - 19061: 74,5 - 19081: 44,-1 - 19125: 41,-1 - 19137: 44,7 - 19138: 44,11 - 19139: 41,11 - 19163: 60,11 - 19168: 48,15 - 19199: 59,21 - 19216: 54,15 - 19226: 57,15 - 19232: 71,-5 - 19243: 76,21 - 19351: 55,3 - 19404: -18,-28 - 19657: 52,31 + 7450: 37,11 + 7457: 48,-5 + 7612: 58,-5 + 7613: 53,-5 + 15585: 74,-1 + 19059: 74,5 + 19079: 44,-1 + 19123: 41,-1 + 19135: 44,7 + 19136: 44,11 + 19137: 41,11 + 19161: 60,11 + 19166: 48,15 + 19197: 59,21 + 19214: 54,15 + 19224: 57,15 + 19230: 71,-5 + 19241: 76,21 + 19349: 55,3 + 19402: -18,-28 + 19655: 52,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerSe decals: - 20324: -22,0 + 20322: -22,0 - node: color: '#EFB341FF' id: BrickTileDarkCornerSe decals: - 17589: -61,4 - 17664: -70,4 - 18277: -67,-3 + 17587: -61,4 + 17662: -70,4 + 18275: -67,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 1204: 13,-61 - 2020: -15,26 - 2024: -15,32 - 2418: -10,36 - 2481: -10,36 - 2533: -6,36 - 2617: -2,36 - 2668: 2,54 - 2716: -5,52 - 3207: -2,60 - 3888: 23,65 - 3988: -40,59 - 5721: 11,5 - 5732: 11,0 - 5781: 8,-3 - 5822: -15,-6 - 5831: -9,-6 - 5941: 1,12 - 6569: -22,-9 - 6840: -33,8 - 7288: 36,-1 - 7304: 27,8 - 7342: 33,8 - 7700: 43,18 - 7701: 43,18 - 7713: 36,19 - 8542: 53,-26 - 8607: 65,-12 - 8608: 65,-31 - 10261: 37,-31 - 10431: 12,-53 - 10492: 14,-62 - 10600: 51,-56 - 10694: 82,-47 - 10713: 74,-40 - 10790: 45,-55 - 11318: -74,-36 - 12429: -15,-76 - 12463: -13,-82 - 12466: -21,-82 - 12574: -17,-82 - 12710: -38,25 - 13389: -38,-68 - 13578: -36,-78 - 13596: -31,-80 - 15682: 93,6 - 15722: 100,-4 - 15753: 96,1 - 15871: 81,-5 - 15888: 89,-5 - 15889: 85,-5 - 15920: 96,12 - 16801: -45,4 - 17134: -46,-18 - 17754: -78,9 - 18087: -44,46 - 18166: -57,5 - 18573: 14,-14 - 18581: 14,-14 - 19002: 70,3 - 19473: -12,26 - 19533: -12,26 - 19839: -27,-24 - 20136: 68,28 - 21403: 26,12 - 21444: 25,13 + 2018: -15,26 + 2022: -15,32 + 2416: -10,36 + 2479: -10,36 + 2531: -6,36 + 2615: -2,36 + 2666: 2,54 + 2714: -5,52 + 3205: -2,60 + 3886: 23,65 + 3986: -40,59 + 5719: 11,5 + 5730: 11,0 + 5779: 8,-3 + 5820: -15,-6 + 5829: -9,-6 + 5939: 1,12 + 6567: -22,-9 + 6838: -33,8 + 7286: 36,-1 + 7302: 27,8 + 7340: 33,8 + 7698: 43,18 + 7699: 43,18 + 7711: 36,19 + 8540: 53,-26 + 8605: 65,-12 + 8606: 65,-31 + 10259: 37,-31 + 10429: 12,-53 + 10490: 14,-62 + 10598: 51,-56 + 10692: 82,-47 + 10711: 74,-40 + 10788: 45,-55 + 11316: -74,-36 + 12427: -15,-76 + 12461: -13,-82 + 12464: -21,-82 + 12572: -17,-82 + 12708: -38,25 + 13387: -38,-68 + 13576: -36,-78 + 13594: -31,-80 + 15680: 93,6 + 15720: 100,-4 + 15751: 96,1 + 15869: 81,-5 + 15886: 89,-5 + 15887: 85,-5 + 15918: 96,12 + 16799: -45,4 + 17132: -46,-18 + 17752: -78,9 + 18085: -44,46 + 18164: -57,5 + 18571: 14,-14 + 18579: 14,-14 + 19000: 70,3 + 19471: -12,26 + 19531: -12,26 + 19837: -27,-24 + 20134: 68,28 + 21401: 26,12 + 21442: 25,13 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSw decals: - 4175: -16,13 - 4180: -13,13 - 4287: 2,13 - 9962: 30,-45 - 21335: -13,13 - 21336: -16,13 + 4173: -16,13 + 4178: -13,13 + 4285: 2,13 + 9960: 30,-45 + 21333: -13,13 + 21334: -16,13 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSw decals: - 2975: -27,52 + 2973: -27,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSw decals: - 11764: -11,-44 - 12151: -30,-48 - 12656: -53,-31 + 11762: -11,-44 + 12149: -30,-48 + 12654: -53,-31 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSw decals: - 7455: 35,11 - 7612: 50,-5 - 7613: 55,-5 - 19060: 72,5 - 19078: 46,-1 - 19079: 39,-1 - 19080: 43,-1 - 19123: 35,8 - 19134: 39,11 - 19135: 43,11 - 19136: 43,7 - 19164: 50,11 - 19169: 45,15 - 19200: 49,21 - 19213: 50,15 - 19227: 56,15 - 19231: 68,-5 - 19246: 72,21 - 19352: 50,3 - 19405: -20,-28 - 19658: 56,31 + 7453: 35,11 + 7610: 50,-5 + 7611: 55,-5 + 19058: 72,5 + 19076: 46,-1 + 19077: 39,-1 + 19078: 43,-1 + 19121: 35,8 + 19132: 39,11 + 19133: 43,11 + 19134: 43,7 + 19162: 50,11 + 19167: 45,15 + 19198: 49,21 + 19211: 50,15 + 19225: 56,15 + 19229: 68,-5 + 19244: 72,21 + 19350: 50,3 + 19403: -20,-28 + 19656: 56,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerSw decals: - 17588: -66,4 - 17665: -74,4 - 18276: -73,-3 + 17586: -66,4 + 17663: -74,4 + 18274: -73,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 1201: 11,-61 - 2019: -17,26 - 2532: -8,36 - 2615: -4,36 - 2669: 1,54 - 2684: -1,50 - 2715: -7,52 - 3892: 17,65 - 3986: -42,59 - 5715: 7,5 - 5728: 7,0 - 5784: 7,-3 - 5821: -16,-6 - 5832: -13,-6 - 5940: -3,12 - 6565: -26,-9 - 6839: -39,8 - 7241: 20,-8 - 7287: 34,-1 - 7310: 26,8 - 7705: 39,18 - 7714: 34,19 - 7715: 34,19 - 8543: 51,-26 - 8612: 64,-12 - 8613: 64,-31 - 8614: 64,-31 - 10260: 35,-31 - 10430: 2,-53 - 10491: 10,-62 - 10597: 49,-56 - 10714: 72,-40 - 10789: 44,-55 - 11319: -75,-36 - 12428: -19,-76 - 12462: -16,-82 - 12467: -23,-82 - 12575: -18,-82 - 12609: -24,-76 - 12610: -25,-70 - 12709: -39,25 - 13386: -41,-68 - 13562: -30,-80 - 13579: -30,-78 - 13584: -37,-80 - 13597: -35,-80 - 13598: -32,-80 - 15683: 91,6 - 15721: 99,-4 - 15752: 93,1 - 15872: 79,-5 - 15890: 83,-5 - 15891: 87,-5 - 15923: 95,12 - 17755: -79,9 - 18086: -45,46 - 18165: -58,5 - 18394: -53,-38 - 18571: 12,-14 - 18580: 12,-14 - 19003: 68,3 - 19463: -10,26 - 19476: -14,26 - 19484: -15,29 - 19532: -10,26 - 19840: -31,-24 - 20137: 61,28 - 21402: 22,12 - 21443: 23,13 + 2017: -17,26 + 2530: -8,36 + 2613: -4,36 + 2667: 1,54 + 2682: -1,50 + 2713: -7,52 + 3890: 17,65 + 3984: -42,59 + 5713: 7,5 + 5726: 7,0 + 5782: 7,-3 + 5819: -16,-6 + 5830: -13,-6 + 5938: -3,12 + 6563: -26,-9 + 6837: -39,8 + 7239: 20,-8 + 7285: 34,-1 + 7308: 26,8 + 7703: 39,18 + 7712: 34,19 + 7713: 34,19 + 8541: 51,-26 + 8610: 64,-12 + 8611: 64,-31 + 8612: 64,-31 + 10258: 35,-31 + 10428: 2,-53 + 10489: 10,-62 + 10595: 49,-56 + 10712: 72,-40 + 10787: 44,-55 + 11317: -75,-36 + 12426: -19,-76 + 12460: -16,-82 + 12465: -23,-82 + 12573: -18,-82 + 12607: -24,-76 + 12608: -25,-70 + 12707: -39,25 + 13384: -41,-68 + 13560: -30,-80 + 13577: -30,-78 + 13582: -37,-80 + 13595: -35,-80 + 13596: -32,-80 + 15681: 91,6 + 15719: 99,-4 + 15750: 93,1 + 15870: 79,-5 + 15888: 83,-5 + 15889: 87,-5 + 15921: 95,12 + 17753: -79,9 + 18084: -45,46 + 18163: -58,5 + 18392: -53,-38 + 18569: 12,-14 + 18578: 12,-14 + 19001: 68,3 + 19461: -10,26 + 19474: -14,26 + 19482: -15,29 + 19530: -10,26 + 19838: -31,-24 + 20135: 61,28 + 21400: 22,12 + 21441: 23,13 - node: color: '#CEDA8BFF' id: BrickTileDarkEndE decals: - 10871: 45,-64 - 10872: 45,-61 - 10886: 41,-64 + 10869: 45,-64 + 10870: 45,-61 + 10884: 41,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndE decals: - 19247: 76,25 + 19245: 76,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 2217: -18,54 - 2664: 2,55 - 3849: 23,72 - 3861: 19,68 - 3862: 22,68 - 4321: 4,12 - 4322: -5,12 - 4453: 16,25 - 4602: 21,33 - 5531: -18,7 - 5547: -18,-7 - 5568: -33,30 - 5571: -31,25 - 5600: -10,66 - 5601: -10,59 - 5650: 11,-7 - 5981: 0,7 - 5982: 0,3 - 5983: 0,-1 - 5984: 0,-5 - 6091: -11,-18 - 6131: 18,-7 - 6141: 18,7 - 6186: -18,-22 - 6317: 18,-22 - 6389: 14,-18 - 6561: -32,3 - 6562: -32,-10 - 6789: -25,7 - 6832: -38,16 - 6833: -38,16 - 6837: -38,8 - 6838: -38,8 - 7476: 48,10 - 8194: 36,-17 - 8195: 36,-17 - 8221: 36,-7 - 8236: 47,-18 - 8735: 0,-22 - 8736: 0,-29 - 8737: -6,-22 - 8738: -13,-22 - 8739: 5,-22 - 8740: 12,-22 - 8741: 0,-37 - 8742: 0,-57 - 8743: 0,-63 - 9115: -4,-74 - 9125: -3,-68 - 9126: -3,-66 - 9162: 0,-82 - 9693: 18,-37 - 9694: 28,-37 - 11540: -18,-33 - 11548: -22,-33 - 11549: -22,-33 - 11558: -13,-37 - 11559: -13,-37 - 11714: -13,-45 - 12761: -17,59 - 12762: -3,59 - 12763: -3,66 - 12764: -17,66 - 12765: -11,70 - 12766: 7,70 - 12767: -29,70 - 13583: -36,-80 - 14419: -57,20 - 14444: -61,13 - 14486: -18,21 - 14491: 18,21 - 15390: -41,3 - 15404: -41,7 - 15905: 80,-1 + 2215: -18,54 + 2662: 2,55 + 3847: 23,72 + 3859: 19,68 + 3860: 22,68 + 4319: 4,12 + 4320: -5,12 + 4451: 16,25 + 4600: 21,33 + 5529: -18,7 + 5545: -18,-7 + 5566: -33,30 + 5569: -31,25 + 5598: -10,66 + 5599: -10,59 + 5648: 11,-7 + 5979: 0,7 + 5980: 0,3 + 5981: 0,-1 + 5982: 0,-5 + 6089: -11,-18 + 6129: 18,-7 + 6139: 18,7 + 6184: -18,-22 + 6315: 18,-22 + 6387: 14,-18 + 6559: -32,3 + 6560: -32,-10 + 6787: -25,7 + 6830: -38,16 + 6831: -38,16 + 6835: -38,8 + 6836: -38,8 + 7474: 48,10 + 8192: 36,-17 + 8193: 36,-17 + 8219: 36,-7 + 8234: 47,-18 + 8733: 0,-22 + 8734: 0,-29 + 8735: -6,-22 + 8736: -13,-22 + 8737: 5,-22 + 8738: 12,-22 + 8739: 0,-37 + 8740: 0,-57 + 8741: 0,-63 + 9113: -4,-74 + 9123: -3,-68 + 9124: -3,-66 + 9160: 0,-82 + 9691: 18,-37 + 9692: 28,-37 + 11538: -18,-33 + 11546: -22,-33 + 11547: -22,-33 + 11556: -13,-37 + 11557: -13,-37 + 11712: -13,-45 + 12759: -17,59 + 12760: -3,59 + 12761: -3,66 + 12762: -17,66 + 12763: -11,70 + 12764: 7,70 + 12765: -29,70 + 13581: -36,-80 + 14417: -57,20 + 14442: -61,13 + 14484: -18,21 + 14489: 18,21 + 15388: -41,3 + 15402: -41,7 + 15903: 80,-1 + 15904: 84,-1 + 15905: 88,-1 15906: 84,-1 - 15907: 88,-1 - 15908: 84,-1 - 15909: 80,-1 - 15914: 98,14 - 16038: 93,15 - 16792: -52,3 - 16793: -52,7 - 16955: -56,3 - 17164: -69,-9 - 17409: -69,-9 - 17710: -80,13 - 17714: -80,15 - 17882: -53,19 - 18095: -56,38 - 18408: -48,-38 - 18564: 14,-11 - 19015: 70,10 - 19816: -6,-40 - 20116: 67,27 + 15907: 80,-1 + 15912: 98,14 + 16036: 93,15 + 16790: -52,3 + 16791: -52,7 + 16953: -56,3 + 17162: -69,-9 + 17407: -69,-9 + 17708: -80,13 + 17712: -80,15 + 17880: -53,19 + 18093: -56,38 + 18406: -48,-38 + 18562: 14,-11 + 19013: 70,10 + 19814: -6,-40 + 20114: 67,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 4045: -18,25 - 4112: 8,25 - 4113: 5,25 + 4043: -18,25 + 4110: 8,25 + 4111: 5,25 - node: color: '#A9DA8BFF' id: BrickTileDarkEndN decals: - 2978: -27,55 + 2976: -27,55 - node: color: '#B18BDAFF' id: BrickTileDarkEndN decals: - 12129: -30,-44 - 12130: -23,-44 + 12127: -30,-44 + 12128: -23,-44 - node: color: '#EFB341FF' id: BrickTileDarkEndN decals: - 17836: -59,7 - 17837: -56,7 - 18269: -68,0 + 17834: -59,7 + 17835: -56,7 + 18267: -68,0 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 2513: -9,43 - 2514: -9,43 - 2670: 4,54 - 2856: -24,48 - 2859: -24,51 - 3136: -16,65 - 3150: -8,65 - 3194: -22,65 - 3558: -22,58 - 3641: 9,81 - 3648: 9,76 - 3828: 16,71 - 4165: -14,15 - 4170: -17,15 - 4299: 12,15 - 4300: 15,15 - 4519: 12,36 - 4912: 14,53 - 4915: 14,50 - 5238: -32,82 - 5239: -28,82 - 5240: -28,92 - 5241: -32,92 - 5325: -14,92 - 5326: -10,92 - 5343: -10,82 - 5344: -14,82 - 5345: -14,82 - 5357: 4,82 - 5576: -29,28 - 5577: -29,28 - 5617: -17,-8 - 5618: 15,-8 - 5643: -17,-19 - 5662: -7,10 - 5666: 5,10 - 5980: -1,8 - 6170: -3,-19 - 6171: 1,-19 - 6172: -17,-19 - 6185: 15,-19 - 6558: -21,-2 - 6792: -21,12 - 6964: -22,-16 - 7053: 26,6 - 7060: 19,6 - 7090: 26,-10 - 7091: 19,-10 - 7400: 49,1 - 7557: 48,23 - 7645: 56,5 - 8203: 42,-14 - 8204: 42,-10 - 8205: 42,-10 - 8834: 1,-25 - 8835: -3,-25 - 9113: -2,-69 - 9114: -7,-69 - 9130: -1,-67 - 9131: -1,-67 - 9132: -8,-67 - 9133: -8,-72 - 9134: -1,-72 - 9135: -1,-72 - 9146: -6,-72 - 9147: -6,-72 - 9148: -3,-72 - 9149: -3,-72 - 9370: 1,-46 - 9371: 1,-55 - 9372: 1,-55 - 9375: -3,-55 - 9377: 1,-46 - 9547: 15,-25 - 9568: 19,-27 - 9686: 19,-34 - 9689: 19,-39 - 9690: 25,-39 - 9759: 15,-39 - 10299: 20,-51 - 10547: 3,-66 - 10548: 3,-75 - 10549: 3,-75 - 10788: 53,-50 - 11376: -12,-66 - 11377: -22,-66 - 11402: -3,-40 - 11546: -21,-34 - 11547: -21,-34 - 11730: -44,-27 - 11731: -32,-27 - 12357: -21,-46 - 12583: -20,-80 - 12584: -24,-80 - 12705: -38,29 - 14474: -21,24 - 14475: -8,24 - 14476: 6,24 - 15389: -40,6 - 15521: 58,-26 - 15522: 60,-26 - 15531: 58,-13 - 15532: 60,-13 - 15876: 80,-3 - 15880: 84,-3 - 15881: 88,-3 - 16812: -54,6 - 16813: -51,6 - 16870: -55,-10 - 16871: -55,-5 - 17166: -74,-6 - 17334: -50,-7 - 17402: -74,-6 - 17720: -79,7 - 17721: -76,7 - 17751: -76,11 - 17885: -56,24 - 18092: -57,34 - 18114: -55,22 - 18199: -55,-5 - 18467: -16,-13 - 18470: -14,-13 - 18471: -12,-13 - 18472: -10,-13 - 18487: -8,-16 - 19019: 57,9 - 19020: 59,9 - 19021: 63,9 - 19022: 61,9 - 20153: -21,6 - 21376: 19,15 - 21385: 21,15 - 21400: 24,15 + 2511: -9,43 + 2512: -9,43 + 2668: 4,54 + 2854: -24,48 + 2857: -24,51 + 3134: -16,65 + 3148: -8,65 + 3192: -22,65 + 3556: -22,58 + 3639: 9,81 + 3646: 9,76 + 3826: 16,71 + 4163: -14,15 + 4168: -17,15 + 4297: 12,15 + 4298: 15,15 + 4517: 12,36 + 4910: 14,53 + 4913: 14,50 + 5236: -32,82 + 5237: -28,82 + 5238: -28,92 + 5239: -32,92 + 5323: -14,92 + 5324: -10,92 + 5341: -10,82 + 5342: -14,82 + 5343: -14,82 + 5355: 4,82 + 5574: -29,28 + 5575: -29,28 + 5615: -17,-8 + 5616: 15,-8 + 5641: -17,-19 + 5660: -7,10 + 5664: 5,10 + 5978: -1,8 + 6168: -3,-19 + 6169: 1,-19 + 6170: -17,-19 + 6183: 15,-19 + 6556: -21,-2 + 6790: -21,12 + 6962: -22,-16 + 7051: 26,6 + 7058: 19,6 + 7088: 26,-10 + 7089: 19,-10 + 7398: 49,1 + 7555: 48,23 + 7643: 56,5 + 8201: 42,-14 + 8202: 42,-10 + 8203: 42,-10 + 8832: 1,-25 + 8833: -3,-25 + 9111: -2,-69 + 9112: -7,-69 + 9128: -1,-67 + 9129: -1,-67 + 9130: -8,-67 + 9131: -8,-72 + 9132: -1,-72 + 9133: -1,-72 + 9144: -6,-72 + 9145: -6,-72 + 9146: -3,-72 + 9147: -3,-72 + 9368: 1,-46 + 9369: 1,-55 + 9370: 1,-55 + 9373: -3,-55 + 9375: 1,-46 + 9545: 15,-25 + 9566: 19,-27 + 9684: 19,-34 + 9687: 19,-39 + 9688: 25,-39 + 9757: 15,-39 + 10297: 20,-51 + 10545: 3,-66 + 10546: 3,-75 + 10547: 3,-75 + 10786: 53,-50 + 11374: -12,-66 + 11375: -22,-66 + 11400: -3,-40 + 11544: -21,-34 + 11545: -21,-34 + 11728: -44,-27 + 11729: -32,-27 + 12355: -21,-46 + 12581: -20,-80 + 12582: -24,-80 + 12703: -38,29 + 14472: -21,24 + 14473: -8,24 + 14474: 6,24 + 15387: -40,6 + 15519: 58,-26 + 15520: 60,-26 + 15529: 58,-13 + 15530: 60,-13 + 15874: 80,-3 + 15878: 84,-3 + 15879: 88,-3 + 16810: -54,6 + 16811: -51,6 + 16868: -55,-10 + 16869: -55,-5 + 17164: -74,-6 + 17332: -50,-7 + 17400: -74,-6 + 17718: -79,7 + 17719: -76,7 + 17749: -76,11 + 17883: -56,24 + 18090: -57,34 + 18112: -55,22 + 18197: -55,-5 + 18465: -16,-13 + 18468: -14,-13 + 18469: -12,-13 + 18470: -10,-13 + 18485: -8,-16 + 19017: 57,9 + 19018: 59,9 + 19019: 63,9 + 19020: 61,9 + 20151: -21,6 + 21374: 19,15 + 21383: 21,15 + 21398: 24,15 - node: color: '#EFB341FF' id: BrickTileDarkEndS decals: - 17838: -59,5 - 17839: -56,5 + 17836: -59,5 + 17837: -56,5 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 2330: -28,32 - 2516: -9,39 - 2671: 4,50 - 2857: -24,47 - 2858: -24,50 - 3141: -16,60 - 3151: -8,60 - 3195: -22,60 - 3559: -22,57 - 3642: 9,80 - 3649: 9,75 - 3829: 16,70 - 4166: -14,14 - 4171: -17,14 - 4301: 12,14 - 4302: 15,14 - 4520: 12,35 - 4913: 14,52 - 4914: 14,49 - 5242: -32,88 - 5243: -28,88 - 5244: -28,88 - 5245: -28,79 - 5246: -32,79 - 5327: -14,88 - 5328: -10,88 - 5346: -14,79 - 5347: -10,79 - 5361: 4,79 - 5578: -29,27 - 5579: -29,27 - 5644: -17,-21 - 5663: -7,8 - 5667: 5,8 - 6034: -8,-17 - 6035: -8,-13 - 6053: -16,-16 - 6054: -14,-16 - 6055: -12,-16 - 6056: -10,-16 - 6176: -3,-21 - 6177: 1,-21 - 6184: 15,-21 - 6559: -21,-3 - 6791: -21,11 - 6967: -22,-17 - 7054: 26,4 - 7061: 19,4 - 7092: 19,-12 - 7093: 26,-12 - 7401: 49,-1 - 7558: 48,22 - 7644: 56,4 - 8206: 42,-16 - 8207: 42,-12 - 8836: -3,-26 - 8837: 1,-26 - 9118: -7,-71 - 9119: -2,-71 - 9136: -8,-74 - 9137: -1,-74 - 9138: -1,-74 - 9139: -3,-73 - 9140: -3,-73 - 9141: -6,-73 - 9142: -6,-73 - 9143: -8,-68 - 9144: -1,-68 - 9145: -1,-68 - 9373: -3,-56 - 9374: 1,-56 - 9376: 1,-47 - 9548: 15,-26 - 9569: 19,-28 - 9691: 19,-40 - 9692: 25,-40 - 9699: 19,-36 - 9760: 15,-40 - 10300: 20,-53 - 10550: 3,-76 - 10551: 3,-67 - 10552: 5,-73 - 10780: 53,-56 - 11378: -22,-67 - 11379: -12,-67 - 11403: -3,-41 - 11545: -21,-36 - 11728: -44,-29 - 11729: -32,-29 - 12358: -21,-48 - 12582: -20,-82 - 12585: -24,-82 - 14477: 6,22 - 14478: -8,22 - 14479: -21,22 - 15408: -40,4 - 15523: 58,-28 - 15524: 60,-28 - 15533: 58,-15 - 15534: 60,-15 - 15877: 80,-4 - 15878: 84,-4 - 15879: 88,-4 - 16814: -54,4 - 16815: -51,4 - 16872: -55,-11 - 16873: -55,-6 - 17167: -74,-8 - 17335: -50,-9 - 17403: -74,-8 - 17728: -76,3 - 17729: -79,3 - 17884: -56,23 - 18097: -57,32 - 18105: -53,32 - 18115: -55,20 - 18120: -52,22 - 18490: -17,-10 - 18519: 15,-10 - 18557: 15,-10 - 19023: 57,7 - 19024: 59,7 - 19025: 61,7 - 19026: 63,7 - 20154: -21,4 - 21377: 19,14 - 21386: 21,14 - 21401: 24,14 + 2328: -28,32 + 2514: -9,39 + 2669: 4,50 + 2855: -24,47 + 2856: -24,50 + 3139: -16,60 + 3149: -8,60 + 3193: -22,60 + 3557: -22,57 + 3640: 9,80 + 3647: 9,75 + 3827: 16,70 + 4164: -14,14 + 4169: -17,14 + 4299: 12,14 + 4300: 15,14 + 4518: 12,35 + 4911: 14,52 + 4912: 14,49 + 5240: -32,88 + 5241: -28,88 + 5242: -28,88 + 5243: -28,79 + 5244: -32,79 + 5325: -14,88 + 5326: -10,88 + 5344: -14,79 + 5345: -10,79 + 5359: 4,79 + 5576: -29,27 + 5577: -29,27 + 5642: -17,-21 + 5661: -7,8 + 5665: 5,8 + 6032: -8,-17 + 6033: -8,-13 + 6051: -16,-16 + 6052: -14,-16 + 6053: -12,-16 + 6054: -10,-16 + 6174: -3,-21 + 6175: 1,-21 + 6182: 15,-21 + 6557: -21,-3 + 6789: -21,11 + 6965: -22,-17 + 7052: 26,4 + 7059: 19,4 + 7090: 19,-12 + 7091: 26,-12 + 7399: 49,-1 + 7556: 48,22 + 7642: 56,4 + 8204: 42,-16 + 8205: 42,-12 + 8834: -3,-26 + 8835: 1,-26 + 9116: -7,-71 + 9117: -2,-71 + 9134: -8,-74 + 9135: -1,-74 + 9136: -1,-74 + 9137: -3,-73 + 9138: -3,-73 + 9139: -6,-73 + 9140: -6,-73 + 9141: -8,-68 + 9142: -1,-68 + 9143: -1,-68 + 9371: -3,-56 + 9372: 1,-56 + 9374: 1,-47 + 9546: 15,-26 + 9567: 19,-28 + 9689: 19,-40 + 9690: 25,-40 + 9697: 19,-36 + 9758: 15,-40 + 10298: 20,-53 + 10548: 3,-76 + 10549: 3,-67 + 10550: 5,-73 + 10778: 53,-56 + 11376: -22,-67 + 11377: -12,-67 + 11401: -3,-41 + 11543: -21,-36 + 11726: -44,-29 + 11727: -32,-29 + 12356: -21,-48 + 12580: -20,-82 + 12583: -24,-82 + 14475: 6,22 + 14476: -8,22 + 14477: -21,22 + 15406: -40,4 + 15521: 58,-28 + 15522: 60,-28 + 15531: 58,-15 + 15532: 60,-15 + 15875: 80,-4 + 15876: 84,-4 + 15877: 88,-4 + 16812: -54,4 + 16813: -51,4 + 16870: -55,-11 + 16871: -55,-6 + 17165: -74,-8 + 17333: -50,-9 + 17401: -74,-8 + 17726: -76,3 + 17727: -79,3 + 17882: -56,23 + 18095: -57,32 + 18103: -53,32 + 18113: -55,20 + 18118: -52,22 + 18488: -17,-10 + 18517: 15,-10 + 18555: 15,-10 + 19021: 57,7 + 19022: 59,7 + 19023: 61,7 + 19024: 63,7 + 20152: -21,4 + 21375: 19,14 + 21384: 21,14 + 21399: 24,14 - node: color: '#CEDA8BFF' id: BrickTileDarkEndW decals: - 10873: 43,-61 - 10887: 38,-64 + 10871: 43,-61 + 10885: 38,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndW decals: - 19248: 74,25 + 19246: 74,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 2218: -20,54 - 2329: -29,38 - 2665: 1,55 - 3850: 17,72 - 3863: 18,68 - 3864: 21,68 - 4323: -6,12 - 4324: 3,12 - 4454: 14,25 - 4603: 20,33 - 5532: -20,7 - 5548: -20,-7 - 5569: -34,30 - 5570: -34,25 - 5602: -14,59 - 5603: -14,66 - 5649: 10,-7 - 5985: -2,-5 - 5986: -2,-1 - 5987: -2,3 - 5988: -2,7 - 6092: -13,-18 - 6130: 16,-7 - 6142: 16,7 - 6187: -20,-22 - 6318: 16,-22 - 6390: 12,-18 - 6391: 12,-18 - 6560: -33,3 - 6563: -33,-10 - 6564: -17,-1 - 6790: -26,7 - 6834: -34,16 - 6835: -34,16 - 6836: -34,8 - 7477: 46,10 - 8196: 33,-17 - 8222: 34,-7 - 8237: 46,-18 - 8744: -2,-37 - 8745: -2,-29 - 8746: -2,-22 - 8747: -7,-22 - 8748: -14,-22 - 8749: 4,-22 - 8750: 11,-22 - 8751: -2,-57 - 8752: -2,-63 - 9116: -5,-74 - 9117: -2,-63 - 9127: -6,-66 - 9128: -6,-66 - 9129: -6,-68 - 9163: -2,-82 - 9164: -2,-82 - 9687: 16,-37 - 9688: 26,-37 - 11541: -20,-33 - 11550: -24,-33 - 11560: -15,-37 - 11715: -15,-45 - 12591: -24,-78 - 12768: -31,70 - 12769: -13,70 - 12770: -21,66 - 12771: -7,66 - 12772: 5,70 - 12808: -21,59 - 12815: -7,59 - 13582: -30,-80 - 14420: -61,20 - 14443: -66,13 - 14487: -20,21 - 14493: 16,21 - 15391: -43,3 - 15405: -43,7 - 15902: 79,-1 - 15903: 83,-1 - 15904: 87,-1 - 16039: 91,15 - 16045: 91,15 - 16794: -53,7 - 16795: -53,3 - 16956: -59,3 - 17123: -49,-12 - 17124: -49,-18 - 17165: -71,-9 - 17408: -71,-9 - 17711: -82,13 - 17712: -82,15 - 17713: -82,15 - 17883: -54,19 - 18093: -54,35 - 18094: -57,38 - 18096: -54,38 - 18119: -55,25 - 18565: 12,-11 - 19016: 68,10 - 19815: -9,-40 - 20115: 64,27 + 2216: -20,54 + 2327: -29,38 + 2663: 1,55 + 3848: 17,72 + 3861: 18,68 + 3862: 21,68 + 4321: -6,12 + 4322: 3,12 + 4452: 14,25 + 4601: 20,33 + 5530: -20,7 + 5546: -20,-7 + 5567: -34,30 + 5568: -34,25 + 5600: -14,59 + 5601: -14,66 + 5647: 10,-7 + 5983: -2,-5 + 5984: -2,-1 + 5985: -2,3 + 5986: -2,7 + 6090: -13,-18 + 6128: 16,-7 + 6140: 16,7 + 6185: -20,-22 + 6316: 16,-22 + 6388: 12,-18 + 6389: 12,-18 + 6558: -33,3 + 6561: -33,-10 + 6562: -17,-1 + 6788: -26,7 + 6832: -34,16 + 6833: -34,16 + 6834: -34,8 + 7475: 46,10 + 8194: 33,-17 + 8220: 34,-7 + 8235: 46,-18 + 8742: -2,-37 + 8743: -2,-29 + 8744: -2,-22 + 8745: -7,-22 + 8746: -14,-22 + 8747: 4,-22 + 8748: 11,-22 + 8749: -2,-57 + 8750: -2,-63 + 9114: -5,-74 + 9115: -2,-63 + 9125: -6,-66 + 9126: -6,-66 + 9127: -6,-68 + 9161: -2,-82 + 9162: -2,-82 + 9685: 16,-37 + 9686: 26,-37 + 11539: -20,-33 + 11548: -24,-33 + 11558: -15,-37 + 11713: -15,-45 + 12589: -24,-78 + 12766: -31,70 + 12767: -13,70 + 12768: -21,66 + 12769: -7,66 + 12770: 5,70 + 12806: -21,59 + 12813: -7,59 + 13580: -30,-80 + 14418: -61,20 + 14441: -66,13 + 14485: -20,21 + 14491: 16,21 + 15389: -43,3 + 15403: -43,7 + 15900: 79,-1 + 15901: 83,-1 + 15902: 87,-1 + 16037: 91,15 + 16043: 91,15 + 16792: -53,7 + 16793: -53,3 + 16954: -59,3 + 17121: -49,-12 + 17122: -49,-18 + 17163: -71,-9 + 17406: -71,-9 + 17709: -82,13 + 17710: -82,15 + 17711: -82,15 + 17881: -54,19 + 18091: -54,35 + 18092: -57,38 + 18094: -54,38 + 18117: -55,25 + 18563: 12,-11 + 19014: 68,10 + 19813: -9,-40 + 20113: 64,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 4046: -20,25 - 4114: 4,25 - 4115: 7,25 + 4044: -20,25 + 4112: 4,25 + 4113: 7,25 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNe decals: - 4194: -11,15 - 4281: 4,16 - 4284: 7,15 - 4298: 11,15 - 4310: 14,15 - 15257: -6,14 - 15258: -12,15 - 15259: 1,16 - 15260: 8,14 - 15261: 10,15 - 21348: -18,11 - 21359: -18,15 + 4192: -11,15 + 4279: 4,16 + 4282: 7,15 + 4296: 11,15 + 4308: 14,15 + 15255: -6,14 + 15256: -12,15 + 15257: 1,16 + 15258: 8,14 + 15259: 10,15 + 21346: -18,11 + 21357: -18,15 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNe decals: - 2984: -26,53 - 2985: -27,54 + 2982: -26,53 + 2983: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNe decals: - 11783: -7,-38 - 11784: -4,-40 - 11791: -7,-38 - 11792: -5,-39 - 12161: -30,-48 - 12666: -50,-28 - 12670: -51,-27 + 11781: -7,-38 + 11782: -4,-40 + 11789: -7,-38 + 11790: -5,-39 + 12159: -30,-48 + 12664: -50,-28 + 12668: -51,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNe decals: - 7437: 36,9 - 7439: 37,8 - 7442: 40,1 - 7447: 48,12 - 7451: 47,13 - 7461: 47,-3 - 7469: 73,19 - 7471: 53,9 - 7475: 73,3 - 7502: 51,13 - 7503: 51,13 - 7517: 47,23 - 7520: 48,16 - 7528: 52,19 - 7529: 54,17 - 7542: 57,19 - 7568: 59,25 - 7625: 52,-3 - 7653: 60,12 - 7672: 75,23 - 7681: 76,22 - 7686: 75,25 - 7691: 74,9 - 15593: 74,1 - 19075: 67,-1 - 19082: 44,0 - 19096: 36,6 - 19115: 37,4 - 19147: 44,8 - 19148: 44,12 - 19184: 47,19 - 19235: 71,-4 - 19238: 69,-3 - 19364: 55,5 - 19385: 70,-1 - 19670: 51,21 - 19671: 54,21 - 19672: 50,28 - 19673: 55,28 - 20057: 58,31 + 7435: 36,9 + 7437: 37,8 + 7440: 40,1 + 7445: 48,12 + 7449: 47,13 + 7459: 47,-3 + 7467: 73,19 + 7469: 53,9 + 7473: 73,3 + 7500: 51,13 + 7501: 51,13 + 7515: 47,23 + 7518: 48,16 + 7526: 52,19 + 7527: 54,17 + 7540: 57,19 + 7566: 59,25 + 7623: 52,-3 + 7651: 60,12 + 7670: 75,23 + 7679: 76,22 + 7684: 75,25 + 7689: 74,9 + 15591: 74,1 + 19073: 67,-1 + 19080: 44,0 + 19094: 36,6 + 19113: 37,4 + 19145: 44,8 + 19146: 44,12 + 19182: 47,19 + 19233: 71,-4 + 19236: 69,-3 + 19362: 55,5 + 19383: 70,-1 + 19668: 51,21 + 19669: 54,21 + 19670: 50,28 + 19671: 55,28 + 20055: 58,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNe decals: - 17587: -66,4 - 17613: -61,6 - 17614: -61,10 - 17667: -72,8 + 17585: -66,4 + 17611: -61,6 + 17612: -61,10 + 17665: -72,8 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1977: -9,33 - 1983: -12,33 - 2032: -16,28 - 2405: -33,37 - 2407: -31,37 - 2408: -30,36 - 2419: -10,45 - 2422: -10,43 - 2423: -10,43 - 2550: -7,43 - 2551: -6,37 - 2622: -2,40 - 2627: -3,40 - 3217: -3,64 - 3218: -2,61 - 3449: -3,64 - 3882: 19,67 - 3885: 22,67 - 3886: 23,66 - 3947: 17,61 - 3952: 18,60 - 5734: 11,1 - 5740: 8,3 - 5824: -15,-5 - 5870: -10,-3 - 6588: -24,-5 - 6633: -24,-7 - 7255: 23,-8 - 7256: 23,-2 - 7259: 22,2 - 7306: 27,9 - 7413: 37,4 - 7719: 36,20 - 7720: 36,20 - 7726: 43,20 - 8523: 56,-24 - 8529: 56,-20 - 8530: 56,-20 - 8535: 52,-23 - 9032: -8,-28 - 9033: -8,-23 - 9039: -4,-23 - 9044: -4,-27 - 9045: -15,-23 - 9049: -16,-27 - 9071: 3,-23 - 9072: 10,-23 - 9073: 14,-23 - 9074: 14,-27 - 9075: 2,-27 - 9090: 10,-28 - 10457: 4,-49 - 10481: 13,-60 - 10482: 12,-59 - 10502: 10,-58 - 12434: -17,-74 - 12452: -17,-65 - 12565: -14,-78 - 12586: -20,-81 - 12621: -23,-66 - 12635: -24,-64 - 12714: -38,27 - 13577: -31,-79 - 13581: -37,-79 - 13585: -37,-80 - 15520: 60,-31 - 15661: 79,1 - 15662: 84,1 - 15663: 88,1 - 15680: 92,7 - 15759: 95,3 - 16810: -48,6 - 16876: -53,-1 - 16877: -56,1 - 16878: -53,-7 - 16879: -53,-12 - 16880: -55,-17 - 18374: -64,-7 - 18375: -69,-7 - 18376: -58,-8 - 18406: -50,-38 - 19467: -9,27 - 19468: -9,30 - 19526: -12,33 - 19536: -9,30 - 19540: -9,27 - 19544: -9,33 - 19942: 96,2 - 20080: -1,54 + 1975: -9,33 + 1981: -12,33 + 2030: -16,28 + 2403: -33,37 + 2405: -31,37 + 2406: -30,36 + 2417: -10,45 + 2420: -10,43 + 2421: -10,43 + 2548: -7,43 + 2549: -6,37 + 2620: -2,40 + 2625: -3,40 + 3215: -3,64 + 3216: -2,61 + 3447: -3,64 + 3880: 19,67 + 3883: 22,67 + 3884: 23,66 + 3945: 17,61 + 3950: 18,60 + 5732: 11,1 + 5738: 8,3 + 5822: -15,-5 + 5868: -10,-3 + 6586: -24,-5 + 6631: -24,-7 + 7253: 23,-8 + 7254: 23,-2 + 7257: 22,2 + 7304: 27,9 + 7411: 37,4 + 7717: 36,20 + 7718: 36,20 + 7724: 43,20 + 8521: 56,-24 + 8527: 56,-20 + 8528: 56,-20 + 8533: 52,-23 + 9030: -8,-28 + 9031: -8,-23 + 9037: -4,-23 + 9042: -4,-27 + 9043: -15,-23 + 9047: -16,-27 + 9069: 3,-23 + 9070: 10,-23 + 9071: 14,-23 + 9072: 14,-27 + 9073: 2,-27 + 9088: 10,-28 + 10455: 4,-49 + 10479: 13,-60 + 10480: 12,-59 + 10500: 10,-58 + 12432: -17,-74 + 12450: -17,-65 + 12563: -14,-78 + 12584: -20,-81 + 12619: -23,-66 + 12633: -24,-64 + 12712: -38,27 + 13575: -31,-79 + 13579: -37,-79 + 13583: -37,-80 + 15518: 60,-31 + 15659: 79,1 + 15660: 84,1 + 15661: 88,1 + 15678: 92,7 + 15757: 95,3 + 16808: -48,6 + 16874: -53,-1 + 16875: -56,1 + 16876: -53,-7 + 16877: -53,-12 + 16878: -55,-17 + 18372: -64,-7 + 18373: -69,-7 + 18374: -58,-8 + 18404: -50,-38 + 19465: -9,27 + 19466: -9,30 + 19524: -12,33 + 19534: -9,30 + 19538: -9,27 + 19542: -9,33 + 19940: 96,2 + 20078: -1,54 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNw decals: - 4178: -16,15 - 4184: -13,15 - 4195: -9,15 - 4283: 9,15 - 5528: -6,16 - 15254: -10,14 - 15256: -12,15 - 15262: 10,15 - 15273: 4,14 - 21338: -16,15 - 21351: 16,11 - 21356: 16,15 + 4176: -16,15 + 4182: -13,15 + 4193: -9,15 + 4281: 9,15 + 5526: -6,16 + 15252: -10,14 + 15254: -12,15 + 15260: 10,15 + 15271: 4,14 + 21336: -16,15 + 21349: 16,11 + 21354: 16,15 - node: color: '#96A4EBFF' id: BrickTileDarkInnerNw decals: - 15253: -10,14 - 19553: -3,16 + 15251: -10,14 + 19551: -3,16 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNw decals: - 2976: -27,53 + 2974: -27,53 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNw decals: - 11782: -7,-38 - 11787: -11,-41 - 11790: -7,-38 - 11793: -10,-39 - 12155: -30,-46 - 12160: -23,-48 + 11780: -7,-38 + 11785: -11,-41 + 11788: -7,-38 + 11791: -10,-39 + 12153: -30,-46 + 12158: -23,-48 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNw decals: - 7399: 39,6 - 7410: 39,4 - 7430: 39,8 - 7432: 46,12 - 7435: 36,9 - 7436: 36,9 - 7441: 40,1 - 7444: 46,0 - 7450: 47,13 - 7460: 47,-3 - 7468: 73,19 - 7470: 53,9 - 7472: 72,1 - 7474: 73,3 - 7486: 50,8 - 7489: 50,4 - 7501: 51,13 - 7507: 50,12 - 7523: 45,20 - 7527: 52,19 - 7530: 50,16 - 7546: 57,19 - 7547: 56,17 - 7556: 49,23 - 7624: 52,-3 - 7657: 72,6 - 7658: 72,13 - 7660: 72,18 - 7671: 75,23 - 7687: 75,25 - 15584: 72,-1 - 19095: 36,6 - 19114: 34,4 - 19237: 69,-3 - 19387: 69,-1 - 19418: -20,-26 - 19666: 53,28 - 19667: 58,28 - 19668: 57,21 - 19669: 54,21 - 20054: 50,31 + 7397: 39,6 + 7408: 39,4 + 7428: 39,8 + 7430: 46,12 + 7433: 36,9 + 7434: 36,9 + 7439: 40,1 + 7442: 46,0 + 7448: 47,13 + 7458: 47,-3 + 7466: 73,19 + 7468: 53,9 + 7470: 72,1 + 7472: 73,3 + 7484: 50,8 + 7487: 50,4 + 7499: 51,13 + 7505: 50,12 + 7521: 45,20 + 7525: 52,19 + 7528: 50,16 + 7544: 57,19 + 7545: 56,17 + 7554: 49,23 + 7622: 52,-3 + 7655: 72,6 + 7656: 72,13 + 7658: 72,18 + 7669: 75,23 + 7685: 75,25 + 15582: 72,-1 + 19093: 36,6 + 19112: 34,4 + 19235: 69,-3 + 19385: 69,-1 + 19416: -20,-26 + 19664: 53,28 + 19665: 58,28 + 19666: 57,21 + 19667: 54,21 + 20052: 50,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNw decals: - 17586: -61,4 - 17666: -72,8 - 17844: -59,6 + 17584: -61,4 + 17664: -72,8 + 17842: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1984: -10,33 - 2034: -17,30 - 2039: -15,34 - 2386: -30,32 - 2387: -29,33 - 2406: -31,37 - 2536: -8,45 - 2538: -8,43 - 2625: -4,37 - 2626: -3,40 - 2692: -1,51 - 2728: -4,54 - 3225: -2,60 - 3883: 21,67 - 3953: 16,62 - 4672: 21,24 - 5741: 8,3 - 5834: -13,-5 - 5869: -10,-3 - 6586: -26,-6 - 6587: -24,-5 - 6632: -24,-7 - 7251: 20,-3 - 7258: 22,2 - 7382: 34,4 - 8524: 62,-24 - 8525: 62,-24 - 8534: 52,-23 - 9031: -12,-28 - 9035: -12,-23 - 9038: -5,-23 - 9043: -4,-27 - 9046: -16,-23 - 9050: -16,-27 - 9066: 2,-23 - 9067: 6,-23 - 9068: 13,-23 - 9069: 14,-27 - 9070: 14,-27 - 9076: 2,-27 - 9089: 6,-28 - 10458: 4,-49 - 10466: 2,-51 - 10479: 11,-60 - 10483: 12,-59 - 10707: 80,-47 - 10708: 80,-47 - 12433: -17,-74 - 12451: -17,-65 - 12564: -14,-78 - 12579: -17,-80 - 12592: -23,-78 - 12613: -23,-72 - 12636: -24,-64 - 12717: -38,26 - 12878: -18,-81 - 13593: -35,-79 - 15519: 58,-31 - 15658: 77,1 - 15659: 81,1 - 15660: 86,1 - 15679: 92,7 - 15757: 94,3 - 15758: 93,2 - 15867: 81,-2 - 15898: 85,-2 - 15899: 89,-2 - 15925: 95,13 - 16809: -48,6 - 16874: -53,-1 - 16875: -58,1 - 16881: -53,-12 - 16882: -57,-17 - 16883: -53,-7 - 17145: -46,-18 - 18112: -53,35 - 18371: -72,-7 - 18372: -67,-7 - 18373: -60,-8 - 19486: -14,31 - 19525: -10,33 - 21412: 22,15 + 1982: -10,33 + 2032: -17,30 + 2037: -15,34 + 2384: -30,32 + 2385: -29,33 + 2404: -31,37 + 2534: -8,45 + 2536: -8,43 + 2623: -4,37 + 2624: -3,40 + 2690: -1,51 + 2726: -4,54 + 3223: -2,60 + 3881: 21,67 + 3951: 16,62 + 4670: 21,24 + 5739: 8,3 + 5832: -13,-5 + 5867: -10,-3 + 6584: -26,-6 + 6585: -24,-5 + 6630: -24,-7 + 7249: 20,-3 + 7256: 22,2 + 7380: 34,4 + 8522: 62,-24 + 8523: 62,-24 + 8532: 52,-23 + 9029: -12,-28 + 9033: -12,-23 + 9036: -5,-23 + 9041: -4,-27 + 9044: -16,-23 + 9048: -16,-27 + 9064: 2,-23 + 9065: 6,-23 + 9066: 13,-23 + 9067: 14,-27 + 9068: 14,-27 + 9074: 2,-27 + 9087: 6,-28 + 10456: 4,-49 + 10464: 2,-51 + 10477: 11,-60 + 10481: 12,-59 + 10705: 80,-47 + 10706: 80,-47 + 12431: -17,-74 + 12449: -17,-65 + 12562: -14,-78 + 12577: -17,-80 + 12590: -23,-78 + 12611: -23,-72 + 12634: -24,-64 + 12715: -38,26 + 12876: -18,-81 + 13591: -35,-79 + 15517: 58,-31 + 15656: 77,1 + 15657: 81,1 + 15658: 86,1 + 15677: 92,7 + 15755: 94,3 + 15756: 93,2 + 15865: 81,-2 + 15896: 85,-2 + 15897: 89,-2 + 15923: 95,13 + 16807: -48,6 + 16872: -53,-1 + 16873: -58,1 + 16879: -53,-12 + 16880: -57,-17 + 16881: -53,-7 + 17143: -46,-18 + 18110: -53,35 + 18369: -72,-7 + 18370: -67,-7 + 18371: -60,-8 + 19484: -14,31 + 19523: -10,33 + 21410: 22,15 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSe decals: - 4198: -10,13 - 4286: 8,13 - 4296: -4,15 - 4297: 11,14 - 4309: 14,14 - 4319: -2,15 - 15263: -12,14 - 15264: -6,14 - 15265: 1,16 - 15266: 8,14 - 15267: 10,14 - 21349: -18,18 - 21358: -18,14 + 4196: -10,13 + 4284: 8,13 + 4294: -4,15 + 4295: 11,14 + 4307: 14,14 + 4317: -2,15 + 15261: -12,14 + 15262: -6,14 + 15263: 1,16 + 15264: 8,14 + 15265: 10,14 + 21347: -18,18 + 21356: -18,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSe decals: - 2983: -26,52 + 2981: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSe decals: - 11785: -4,-41 - 11788: -6,-44 - 11794: -5,-43 - 12158: -24,-48 - 12668: -50,-28 - 12669: -51,-29 + 11783: -4,-41 + 11786: -6,-44 + 11792: -5,-43 + 12156: -24,-48 + 12666: -50,-28 + 12667: -51,-29 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSe decals: - 7433: 36,11 - 7445: 47,-1 - 7448: 48,12 - 7449: 48,12 - 7465: 61,-1 - 7466: 52,-1 - 7467: 65,-1 - 7504: 53,11 - 7515: 47,15 - 7518: 47,22 - 7519: 48,16 - 7526: 51,15 - 7531: 54,17 - 7545: 57,19 - 7553: 52,21 - 7566: 57,21 - 7567: 59,25 - 7652: 60,12 - 7678: 73,21 - 7682: 76,22 - 7689: 75,25 - 7690: 74,9 - 7861: 73,5 - 15594: 74,1 - 19083: 44,0 - 19113: 35,4 - 19116: 37,6 - 19121: 36,8 - 19149: 44,8 - 19150: 44,12 - 19151: 40,11 - 19236: 71,-4 - 19365: 55,4 - 19374: 69,-1 - 19384: 70,1 - 19414: -18,-24 - 19659: 51,28 - 19660: 54,28 - 19661: 50,31 - 19662: 52,32 + 7431: 36,11 + 7443: 47,-1 + 7446: 48,12 + 7447: 48,12 + 7463: 61,-1 + 7464: 52,-1 + 7465: 65,-1 + 7502: 53,11 + 7513: 47,15 + 7516: 47,22 + 7517: 48,16 + 7524: 51,15 + 7529: 54,17 + 7543: 57,19 + 7551: 52,21 + 7564: 57,21 + 7565: 59,25 + 7650: 60,12 + 7676: 73,21 + 7680: 76,22 + 7687: 75,25 + 7688: 74,9 + 7859: 73,5 + 15592: 74,1 + 19081: 44,0 + 19111: 35,4 + 19114: 37,6 + 19119: 36,8 + 19147: 44,8 + 19148: 44,12 + 19149: 40,11 + 19234: 71,-4 + 19363: 55,4 + 19372: 69,-1 + 19382: 70,1 + 19412: -18,-24 + 19657: 51,28 + 19658: 54,28 + 19659: 50,31 + 19660: 52,32 - node: color: '#EFB341FF' id: BrickTileDarkInnerSe decals: - 17584: -66,11 - 17615: -61,10 - 17616: -61,6 - 17683: -73,4 + 17582: -66,11 + 17613: -61,10 + 17614: -61,6 + 17681: -73,4 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1982: -9,33 - 2031: -16,32 - 2050: -18,35 - 2403: -33,33 - 2409: -31,33 - 2410: -30,34 - 2420: -10,45 - 2426: -10,39 - 2552: -6,37 - 2553: -6,37 - 2621: -2,40 - 2683: 3,50 - 2722: -5,54 - 2729: -6,52 - 3216: -3,61 - 3219: -2,61 - 3450: -3,61 - 3887: 23,66 - 3944: 17,58 - 5717: 8,5 - 5735: 11,1 - 5778: 10,0 - 5825: -15,-5 - 5839: -10,-6 - 6590: -24,-9 - 6635: -24,-7 - 7254: 22,-8 - 7257: 23,-2 - 7307: 27,9 - 7346: 29,8 - 7385: 35,4 - 7414: 37,6 - 7721: 36,20 - 7722: 36,20 - 7727: 43,20 - 8527: 56,-17 - 8528: 56,-17 - 8531: 56,-21 - 9029: -8,-28 - 9036: -8,-23 - 9040: -4,-23 - 9041: -4,-28 - 9048: -15,-23 - 9052: -16,-28 - 9059: 10,-23 - 9060: 14,-23 - 9061: 14,-28 - 9078: 2,-28 - 9079: 3,-23 - 9091: 10,-28 - 10469: 10,-53 - 10478: 13,-60 - 10485: 12,-61 - 10723: 73,-40 - 12436: -17,-67 - 12566: -13,-78 - 12587: -20,-81 - 12620: -23,-67 - 12713: -38,27 - 13580: -37,-79 - 13595: -31,-79 - 13600: -34,-79 - 15394: -42,3 - 15518: 60,-10 - 15664: 79,1 - 15665: 84,1 - 15666: 88,1 - 15674: 92,9 - 15712: 92,6 - 15761: 95,1 - 15777: 96,2 - 15911: 93,10 - 15917: 97,14 - 15919: 96,14 - 16811: -49,4 - 16889: -55,-17 - 16890: -53,-15 - 16891: -53,-9 - 16892: -53,-4 - 16893: -56,1 - 18380: -64,-7 - 18381: -69,-7 - 19466: -9,27 - 19469: -9,30 - 19475: -12,27 - 19530: -12,27 - 19535: -9,30 - 19537: -9,27 - 19543: -9,33 - 19850: -29,-24 - 20139: 62,28 - 20140: 67,28 + 1980: -9,33 + 2029: -16,32 + 2048: -18,35 + 2401: -33,33 + 2407: -31,33 + 2408: -30,34 + 2418: -10,45 + 2424: -10,39 + 2550: -6,37 + 2551: -6,37 + 2619: -2,40 + 2681: 3,50 + 2720: -5,54 + 2727: -6,52 + 3214: -3,61 + 3217: -2,61 + 3448: -3,61 + 3885: 23,66 + 3942: 17,58 + 5715: 8,5 + 5733: 11,1 + 5776: 10,0 + 5823: -15,-5 + 5837: -10,-6 + 6588: -24,-9 + 6633: -24,-7 + 7252: 22,-8 + 7255: 23,-2 + 7305: 27,9 + 7344: 29,8 + 7383: 35,4 + 7412: 37,6 + 7719: 36,20 + 7720: 36,20 + 7725: 43,20 + 8525: 56,-17 + 8526: 56,-17 + 8529: 56,-21 + 9027: -8,-28 + 9034: -8,-23 + 9038: -4,-23 + 9039: -4,-28 + 9046: -15,-23 + 9050: -16,-28 + 9057: 10,-23 + 9058: 14,-23 + 9059: 14,-28 + 9076: 2,-28 + 9077: 3,-23 + 9089: 10,-28 + 10467: 10,-53 + 10476: 13,-60 + 10483: 12,-61 + 10721: 73,-40 + 12434: -17,-67 + 12564: -13,-78 + 12585: -20,-81 + 12618: -23,-67 + 12711: -38,27 + 13578: -37,-79 + 13593: -31,-79 + 13598: -34,-79 + 15392: -42,3 + 15516: 60,-10 + 15662: 79,1 + 15663: 84,1 + 15664: 88,1 + 15672: 92,9 + 15710: 92,6 + 15759: 95,1 + 15775: 96,2 + 15909: 93,10 + 15915: 97,14 + 15917: 96,14 + 16809: -49,4 + 16887: -55,-17 + 16888: -53,-15 + 16889: -53,-9 + 16890: -53,-4 + 16891: -56,1 + 18378: -64,-7 + 18379: -69,-7 + 19464: -9,27 + 19467: -9,30 + 19473: -12,27 + 19528: -12,27 + 19533: -9,30 + 19535: -9,27 + 19541: -9,33 + 19848: -29,-24 + 20137: 62,28 + 20138: 67,28 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSw decals: - 4179: -16,14 - 4185: -13,14 - 4197: -10,13 - 4285: 8,13 - 4295: 2,15 - 4318: -2,15 - 9963: 30,-44 - 15268: 4,14 - 15269: 10,14 - 15270: -3,16 - 15271: -10,14 - 15272: -12,14 - 21337: -16,14 - 21350: 16,18 - 21357: 16,14 + 4177: -16,14 + 4183: -13,14 + 4195: -10,13 + 4283: 8,13 + 4293: 2,15 + 4316: -2,15 + 9961: 30,-44 + 15266: 4,14 + 15267: 10,14 + 15268: -3,16 + 15269: -10,14 + 15270: -12,14 + 21335: -16,14 + 21348: 16,18 + 21355: 16,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSw decals: - 2977: -27,53 - 2982: -26,52 + 2975: -27,53 + 2980: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSw decals: - 11786: -11,-41 - 11789: -6,-44 - 12156: -30,-46 - 12157: -24,-48 + 11784: -11,-41 + 11787: -6,-44 + 12154: -30,-46 + 12155: -24,-48 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSw decals: - 7398: 39,4 - 7411: 39,6 - 7429: 39,8 - 7431: 46,12 - 7434: 36,11 - 7443: 46,0 - 7446: 47,-1 - 7462: 52,-1 - 7463: 61,-1 - 7464: 65,-1 - 7473: 72,1 - 7487: 50,8 - 7488: 50,4 - 7505: 53,11 - 7506: 50,12 - 7516: 47,15 - 7524: 45,20 - 7525: 51,15 - 7532: 50,16 - 7548: 56,17 - 7549: 56,17 - 7554: 52,21 - 7555: 49,22 - 7565: 57,21 - 7656: 72,6 - 7659: 72,13 - 7661: 72,18 - 7677: 73,21 - 7688: 75,25 - 7862: 73,5 - 15583: 72,-1 - 19110: 34,6 - 19111: 35,4 - 19122: 36,8 - 19152: 40,11 - 19375: 69,-1 - 19386: 69,1 - 19417: -20,-26 - 19663: 56,32 - 19664: 58,31 - 19665: 57,28 - 19696: 54,28 + 7396: 39,4 + 7409: 39,6 + 7427: 39,8 + 7429: 46,12 + 7432: 36,11 + 7441: 46,0 + 7444: 47,-1 + 7460: 52,-1 + 7461: 61,-1 + 7462: 65,-1 + 7471: 72,1 + 7485: 50,8 + 7486: 50,4 + 7503: 53,11 + 7504: 50,12 + 7514: 47,15 + 7522: 45,20 + 7523: 51,15 + 7530: 50,16 + 7546: 56,17 + 7547: 56,17 + 7552: 52,21 + 7553: 49,22 + 7563: 57,21 + 7654: 72,6 + 7657: 72,13 + 7659: 72,18 + 7675: 73,21 + 7686: 75,25 + 7860: 73,5 + 15581: 72,-1 + 19108: 34,6 + 19109: 35,4 + 19120: 36,8 + 19150: 40,11 + 19373: 69,-1 + 19384: 69,1 + 19415: -20,-26 + 19661: 56,32 + 19662: 58,31 + 19663: 57,28 + 19694: 54,28 - node: color: '#EFB341FF' id: BrickTileDarkInnerSw decals: - 17585: -61,11 - 17682: -73,4 - 17843: -59,6 + 17583: -61,11 + 17680: -73,4 + 17841: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1994: -10,27 - 2033: -17,30 - 2343: -28,38 - 2388: -29,37 - 2389: -30,38 - 2404: -31,33 - 2537: -8,45 - 2539: -8,39 - 2624: -4,37 - 2682: 3,50 - 2691: -1,51 - 2730: -6,52 - 3943: 17,58 - 5718: 8,5 - 5777: 10,0 - 5835: -13,-5 - 5838: -10,-6 - 6585: -26,-6 - 6589: -24,-9 - 6634: -24,-7 - 7252: 20,-3 - 7253: 22,-8 - 7383: 34,6 - 7384: 35,4 - 8526: 62,-17 - 9030: -12,-28 - 9034: -12,-23 - 9037: -5,-23 - 9042: -4,-28 - 9047: -16,-23 - 9051: -16,-28 - 9062: 14,-28 - 9063: 2,-23 - 9064: 6,-23 - 9065: 13,-23 - 9077: 2,-28 - 9092: 6,-28 - 10464: 2,-51 - 10468: 10,-53 - 10480: 11,-60 - 10484: 12,-61 - 10722: 73,-40 - 12435: -17,-67 - 12578: -17,-78 - 12593: -23,-78 - 12619: -23,-76 - 12634: -23,-70 - 12877: -18,-81 - 13594: -35,-79 - 15395: -42,3 - 15517: 58,-10 - 15667: 81,1 - 15668: 77,1 - 15675: 92,9 - 15711: 92,6 - 15760: 94,1 - 15776: 93,2 - 15918: 97,14 - 15924: 95,13 - 16884: -58,1 - 16885: -53,-4 - 16886: -53,-9 - 16887: -53,-15 - 16888: -57,-17 - 17146: -46,-12 - 18110: -53,38 - 18111: -53,35 - 18126: -52,25 - 18377: -72,-7 - 18378: -67,-7 - 18379: -60,-8 - 19464: -9,26 - 19487: -14,34 - 19529: -10,27 - 19546: -14,29 - 19849: -29,-24 - 20019: 86,1 - 20141: 64,28 - 20142: 62,28 - 21413: 22,14 + 1992: -10,27 + 2031: -17,30 + 2341: -28,38 + 2386: -29,37 + 2387: -30,38 + 2402: -31,33 + 2535: -8,45 + 2537: -8,39 + 2622: -4,37 + 2680: 3,50 + 2689: -1,51 + 2728: -6,52 + 3941: 17,58 + 5716: 8,5 + 5775: 10,0 + 5833: -13,-5 + 5836: -10,-6 + 6583: -26,-6 + 6587: -24,-9 + 6632: -24,-7 + 7250: 20,-3 + 7251: 22,-8 + 7381: 34,6 + 7382: 35,4 + 8524: 62,-17 + 9028: -12,-28 + 9032: -12,-23 + 9035: -5,-23 + 9040: -4,-28 + 9045: -16,-23 + 9049: -16,-28 + 9060: 14,-28 + 9061: 2,-23 + 9062: 6,-23 + 9063: 13,-23 + 9075: 2,-28 + 9090: 6,-28 + 10462: 2,-51 + 10466: 10,-53 + 10478: 11,-60 + 10482: 12,-61 + 10720: 73,-40 + 12433: -17,-67 + 12576: -17,-78 + 12591: -23,-78 + 12617: -23,-76 + 12632: -23,-70 + 12875: -18,-81 + 13592: -35,-79 + 15393: -42,3 + 15515: 58,-10 + 15665: 81,1 + 15666: 77,1 + 15673: 92,9 + 15709: 92,6 + 15758: 94,1 + 15774: 93,2 + 15916: 97,14 + 15922: 95,13 + 16882: -58,1 + 16883: -53,-4 + 16884: -53,-9 + 16885: -53,-15 + 16886: -57,-17 + 17144: -46,-12 + 18108: -53,38 + 18109: -53,35 + 18124: -52,25 + 18375: -72,-7 + 18376: -67,-7 + 18377: -60,-8 + 19462: -9,26 + 19485: -14,34 + 19527: -10,27 + 19544: -14,29 + 19847: -29,-24 + 20017: 86,1 + 20139: 64,28 + 20140: 62,28 + 21411: 22,14 - node: color: '#8CB7E8FF' id: BrickTileDarkLineE decals: - 4176: -17,14 - 4177: -17,15 - 4182: -14,15 - 4183: -14,14 - 4253: -11,14 - 4254: -13,14 - 4255: -13,15 - 4256: -4,16 - 4257: 3,14 - 4258: 9,14 - 4259: 9,15 - 4278: 4,17 - 4289: -4,14 - 9955: 29,-44 - 21340: -18,16 - 21341: -18,17 - 21342: -18,13 - 21343: -18,12 + 4174: -17,14 + 4175: -17,15 + 4180: -14,15 + 4181: -14,14 + 4251: -11,14 + 4252: -13,14 + 4253: -13,15 + 4254: -4,16 + 4255: 3,14 + 4256: 9,14 + 4257: 9,15 + 4276: 4,17 + 4287: -4,14 + 9953: 29,-44 + 21338: -18,16 + 21339: -18,17 + 21340: -18,13 + 21341: -18,12 - node: color: '#96A4EBFF' id: BrickTileDarkLineE decals: - 21316: -18,13 - 21317: -18,12 - 21318: -18,16 - 21319: -18,17 + 21314: -18,13 + 21315: -18,12 + 21316: -18,16 + 21317: -18,17 - node: color: '#B18BDAFF' id: BrickTileDarkLineE decals: - 11775: -4,-42 - 11780: -12,-41 - 12131: -30,-45 - 12132: -30,-46 - 12133: -30,-47 - 12154: -31,-46 - 12279: -23,-47 - 12280: -23,-46 - 12281: -23,-45 - 12664: -51,-26 - 12665: -51,-30 + 11773: -4,-42 + 11778: -12,-41 + 12129: -30,-45 + 12130: -30,-46 + 12131: -30,-47 + 12152: -31,-46 + 12277: -23,-47 + 12278: -23,-46 + 12279: -23,-45 + 12662: -51,-26 + 12663: -51,-30 - node: color: '#DA8B8BFF' id: BrickTileDarkLineE decals: - 3699: -1,61 - 3702: -1,61 - 4599: 11,30 - 7396: 38,4 - 7397: 38,6 - 7407: 49,-1 - 7408: 49,0 - 7409: 49,1 - 7416: 45,8 - 7419: 45,12 - 7428: 45,0 - 7458: 48,-4 - 7492: 49,4 - 7495: 49,8 - 7533: 49,16 - 7550: 55,17 - 7561: 48,22 - 7562: 48,23 - 7563: 48,23 - 7572: 49,12 - 7573: 44,20 - 7616: 53,-4 - 7617: 58,-4 - 7655: 71,6 - 7664: 71,13 - 7665: 71,18 - 7794: 71,-1 - 7795: 71,1 - 10542: 2,-60 - 10563: 3,-67 - 10564: 3,-66 - 10565: 3,-66 - 10566: 3,-75 - 10567: 3,-75 - 10568: 3,-76 - 10572: 7,-75 - 10573: 7,-77 - 10575: 7,-65 - 10576: 7,-65 - 15380: -49,9 - 15588: 74,0 - 15592: 74,2 - 19046: 74,6 - 19047: 74,7 - 19048: 74,8 - 19049: 74,10 - 19050: 74,11 - 19051: 74,13 - 19052: 74,12 - 19053: 74,14 - 19054: 74,15 - 19055: 74,17 - 19056: 74,16 - 19057: 74,18 - 19076: 67,0 - 19102: 33,6 - 19103: 33,4 - 19108: 37,5 - 19119: 38,4 - 19120: 38,6 - 19129: 41,0 - 19153: 48,11 - 19182: 47,21 - 19183: 47,20 - 19186: 48,17 - 19187: 48,18 - 19188: 59,22 - 19189: 59,23 - 19190: 59,24 - 19196: 59,28 - 19197: 59,27 - 19198: 59,26 - 19217: 54,16 - 19218: 54,18 - 19221: 57,17 - 19224: 57,18 - 19225: 57,16 - 19348: 55,6 - 19349: 55,7 - 19350: 55,8 - 19377: 68,-1 - 19378: 68,1 - 19383: 70,0 - 19411: -18,-25 - 19412: -18,-26 - 19413: -18,-27 - 19416: -21,-26 - 19606: 51,27 - 19607: 51,26 - 19608: 51,26 - 19609: 51,25 - 19610: 51,24 - 19611: 51,23 - 19612: 51,22 - 19621: 54,27 - 19622: 54,26 - 19623: 54,26 - 19624: 54,25 - 19625: 54,24 - 19626: 54,23 - 19627: 54,22 - 19635: 59,31 - 19636: 59,30 - 19637: 59,30 - 19638: 59,29 - 19650: 50,29 - 19651: 50,30 + 3697: -1,61 + 3700: -1,61 + 4597: 11,30 + 7394: 38,4 + 7395: 38,6 + 7405: 49,-1 + 7406: 49,0 + 7407: 49,1 + 7414: 45,8 + 7417: 45,12 + 7426: 45,0 + 7456: 48,-4 + 7490: 49,4 + 7493: 49,8 + 7531: 49,16 + 7548: 55,17 + 7559: 48,22 + 7560: 48,23 + 7561: 48,23 + 7570: 49,12 + 7571: 44,20 + 7614: 53,-4 + 7615: 58,-4 + 7653: 71,6 + 7662: 71,13 + 7663: 71,18 + 7792: 71,-1 + 7793: 71,1 + 10540: 2,-60 + 10561: 3,-67 + 10562: 3,-66 + 10563: 3,-66 + 10564: 3,-75 + 10565: 3,-75 + 10566: 3,-76 + 10570: 7,-75 + 10571: 7,-77 + 10573: 7,-65 + 10574: 7,-65 + 15378: -49,9 + 15586: 74,0 + 15590: 74,2 + 19044: 74,6 + 19045: 74,7 + 19046: 74,8 + 19047: 74,10 + 19048: 74,11 + 19049: 74,13 + 19050: 74,12 + 19051: 74,14 + 19052: 74,15 + 19053: 74,17 + 19054: 74,16 + 19055: 74,18 + 19074: 67,0 + 19100: 33,6 + 19101: 33,4 + 19106: 37,5 + 19117: 38,4 + 19118: 38,6 + 19127: 41,0 + 19151: 48,11 + 19180: 47,21 + 19181: 47,20 + 19184: 48,17 + 19185: 48,18 + 19186: 59,22 + 19187: 59,23 + 19188: 59,24 + 19194: 59,28 + 19195: 59,27 + 19196: 59,26 + 19215: 54,16 + 19216: 54,18 + 19219: 57,17 + 19222: 57,18 + 19223: 57,16 + 19346: 55,6 + 19347: 55,7 + 19348: 55,8 + 19375: 68,-1 + 19376: 68,1 + 19381: 70,0 + 19409: -18,-25 + 19410: -18,-26 + 19411: -18,-27 + 19414: -21,-26 + 19604: 51,27 + 19605: 51,26 + 19606: 51,26 + 19607: 51,25 + 19608: 51,24 + 19609: 51,23 + 19610: 51,22 + 19619: 54,27 + 19620: 54,26 + 19621: 54,26 + 19622: 54,25 + 19623: 54,24 + 19624: 54,23 + 19625: 54,22 + 19633: 59,31 + 19634: 59,30 + 19635: 59,30 + 19636: 59,29 + 19648: 50,29 + 19649: 50,30 - node: color: '#EFB341FF' id: BrickTileDarkLineE decals: - 17578: -66,5 - 17579: -66,6 - 17580: -66,7 - 17581: -66,8 - 17582: -66,9 - 17583: -66,10 - 17592: -61,9 - 17593: -61,8 - 17594: -61,7 - 17595: -61,5 - 17676: -70,5 - 17677: -70,6 - 17678: -70,7 - 17841: -56,6 - 17842: -59,6 - 17845: -60,6 - 18273: -67,0 - 18274: -67,-1 - 18275: -67,-2 + 17576: -66,5 + 17577: -66,6 + 17578: -66,7 + 17579: -66,8 + 17580: -66,9 + 17581: -66,10 + 17590: -61,9 + 17591: -61,8 + 17592: -61,7 + 17593: -61,5 + 17674: -70,5 + 17675: -70,6 + 17676: -70,7 + 17839: -56,6 + 17840: -59,6 + 17843: -60,6 + 18271: -67,0 + 18272: -67,-1 + 18273: -67,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1978: -9,28 - 1979: -9,29 - 1980: -9,31 - 1981: -9,32 - 2022: -15,27 - 2025: -16,31 - 2026: -15,33 + 1976: -9,28 + 1977: -9,29 + 1978: -9,31 + 1979: -9,32 + 2020: -15,27 + 2023: -16,31 + 2024: -15,33 + 2025: -16,30 + 2026: -16,29 2027: -16,30 - 2028: -16,29 - 2029: -16,30 - 2030: -16,31 - 2035: -18,26 - 2038: -15,34 - 2042: -18,34 - 2043: -18,33 - 2044: -18,32 - 2045: -18,31 - 2046: -18,29 - 2047: -18,28 - 2048: -18,27 - 2049: -18,30 - 2337: -28,33 - 2338: -28,34 - 2339: -28,35 - 2340: -28,36 - 2341: -28,37 - 2421: -10,44 - 2424: -10,37 - 2425: -10,38 - 2520: -9,40 - 2521: -9,41 - 2522: -9,42 - 2540: -9,39 - 2541: -9,40 - 2542: -9,41 - 2543: -9,42 - 2544: -9,43 - 2547: -7,45 - 2548: -7,44 - 2549: -7,44 - 2554: -6,38 - 2555: -6,39 - 2556: -6,40 - 2557: -6,41 - 2558: -6,42 - 2559: -9,45 - 2611: -5,37 - 2618: -2,37 - 2619: -2,38 - 2620: -2,39 - 2676: 4,53 - 2677: 4,52 - 2678: 4,51 - 2693: -2,51 - 2717: -5,53 - 3142: -16,61 - 3143: -16,62 - 3144: -16,63 - 3145: -16,64 - 3146: -8,64 - 3147: -8,63 - 3148: -8,62 - 3149: -8,61 - 3200: -22,61 - 3201: -22,62 - 3202: -22,63 - 3203: -22,64 - 3204: -2,64 - 3205: -2,63 - 3206: -2,62 - 3208: -3,60 - 3209: -3,65 - 3437: -1,61 - 3945: 17,62 - 3948: 18,61 - 3987: -40,62 - 4668: 19,24 - 5253: -28,91 - 5254: -28,90 - 5255: -28,90 - 5256: -28,89 - 5257: -28,81 - 5258: -28,80 - 5259: -32,80 - 5260: -32,81 - 5261: -32,89 - 5262: -32,90 - 5263: -32,90 - 5264: -32,91 - 5332: -14,91 - 5333: -14,90 - 5334: -14,89 - 5340: -10,91 - 5341: -10,90 - 5342: -10,89 - 5351: -14,80 - 5352: -14,81 - 5355: -10,80 - 5356: -10,81 - 5362: 4,80 - 5363: 4,81 - 5364: 4,81 - 5365: 4,82 - 5646: -17,-20 - 5665: -7,9 - 5669: 5,9 - 5722: 11,6 - 5736: 11,2 - 5833: -14,-5 - 5840: -9,-4 - 5841: -9,-5 - 5950: 1,13 - 5989: -1,6 - 5990: -1,5 - 5991: -1,4 - 5992: -1,2 - 5993: -1,1 - 5994: -1,1 - 5995: -1,0 - 5996: -1,-2 - 5997: -1,-3 - 5998: -1,-4 - 5999: -1,-4 - 6000: -1,-6 - 6032: -8,-12 - 6033: -8,-16 - 6069: -12,-15 - 6070: -12,-14 - 6071: -12,-13 - 6072: -10,-15 - 6073: -10,-14 - 6074: -10,-13 - 6075: -14,-15 - 6076: -14,-14 - 6077: -14,-13 - 6180: -3,-20 - 6181: 1,-20 - 6182: 15,-20 - 6580: -22,-8 - 6581: -22,-7 - 6582: -22,-7 - 6583: -22,-6 - 6584: -22,-6 - 6621: -27,-6 - 6629: -25,-7 - 6630: -25,-7 - 6841: -33,9 - 6842: -33,10 - 6843: -33,11 - 6844: -33,11 - 6845: -33,12 - 6846: -33,12 + 2028: -16,31 + 2033: -18,26 + 2036: -15,34 + 2040: -18,34 + 2041: -18,33 + 2042: -18,32 + 2043: -18,31 + 2044: -18,29 + 2045: -18,28 + 2046: -18,27 + 2047: -18,30 + 2335: -28,33 + 2336: -28,34 + 2337: -28,35 + 2338: -28,36 + 2339: -28,37 + 2419: -10,44 + 2422: -10,37 + 2423: -10,38 + 2518: -9,40 + 2519: -9,41 + 2520: -9,42 + 2538: -9,39 + 2539: -9,40 + 2540: -9,41 + 2541: -9,42 + 2542: -9,43 + 2545: -7,45 + 2546: -7,44 + 2547: -7,44 + 2552: -6,38 + 2553: -6,39 + 2554: -6,40 + 2555: -6,41 + 2556: -6,42 + 2557: -9,45 + 2609: -5,37 + 2616: -2,37 + 2617: -2,38 + 2618: -2,39 + 2674: 4,53 + 2675: 4,52 + 2676: 4,51 + 2691: -2,51 + 2715: -5,53 + 3140: -16,61 + 3141: -16,62 + 3142: -16,63 + 3143: -16,64 + 3144: -8,64 + 3145: -8,63 + 3146: -8,62 + 3147: -8,61 + 3198: -22,61 + 3199: -22,62 + 3200: -22,63 + 3201: -22,64 + 3202: -2,64 + 3203: -2,63 + 3204: -2,62 + 3206: -3,60 + 3207: -3,65 + 3435: -1,61 + 3943: 17,62 + 3946: 18,61 + 3985: -40,62 + 4666: 19,24 + 5251: -28,91 + 5252: -28,90 + 5253: -28,90 + 5254: -28,89 + 5255: -28,81 + 5256: -28,80 + 5257: -32,80 + 5258: -32,81 + 5259: -32,89 + 5260: -32,90 + 5261: -32,90 + 5262: -32,91 + 5330: -14,91 + 5331: -14,90 + 5332: -14,89 + 5338: -10,91 + 5339: -10,90 + 5340: -10,89 + 5349: -14,80 + 5350: -14,81 + 5353: -10,80 + 5354: -10,81 + 5360: 4,80 + 5361: 4,81 + 5362: 4,81 + 5363: 4,82 + 5644: -17,-20 + 5663: -7,9 + 5667: 5,9 + 5720: 11,6 + 5734: 11,2 + 5831: -14,-5 + 5838: -9,-4 + 5839: -9,-5 + 5948: 1,13 + 5987: -1,6 + 5988: -1,5 + 5989: -1,4 + 5990: -1,2 + 5991: -1,1 + 5992: -1,1 + 5993: -1,0 + 5994: -1,-2 + 5995: -1,-3 + 5996: -1,-4 + 5997: -1,-4 + 5998: -1,-6 + 6030: -8,-12 + 6031: -8,-16 + 6067: -12,-15 + 6068: -12,-14 + 6069: -12,-13 + 6070: -10,-15 + 6071: -10,-14 + 6072: -10,-13 + 6073: -14,-15 + 6074: -14,-14 + 6075: -14,-13 + 6178: -3,-20 + 6179: 1,-20 + 6180: 15,-20 + 6578: -22,-8 + 6579: -22,-7 + 6580: -22,-7 + 6581: -22,-6 + 6582: -22,-6 + 6619: -27,-6 + 6627: -25,-7 + 6628: -25,-7 + 6839: -33,9 + 6840: -33,10 + 6841: -33,11 + 6842: -33,11 + 6843: -33,12 + 6844: -33,12 + 6845: -33,13 + 6846: -33,13 6847: -33,13 - 6848: -33,13 - 6849: -33,13 - 6850: -33,15 - 6851: -33,14 - 6852: -33,14 - 6860: -39,9 - 6861: -39,10 - 6862: -39,11 - 6863: -39,11 - 6864: -39,12 - 6865: -39,12 + 6848: -33,15 + 6849: -33,14 + 6850: -33,14 + 6858: -39,9 + 6859: -39,10 + 6860: -39,11 + 6861: -39,11 + 6862: -39,12 + 6863: -39,12 + 6864: -39,13 + 6865: -39,13 6866: -39,13 6867: -39,13 - 6868: -39,13 - 6869: -39,13 - 6870: -39,14 - 6871: -39,14 - 6872: -39,15 - 6873: -39,15 - 7042: 19,5 - 7056: 26,5 - 7096: 19,-11 - 7097: 26,-11 - 7233: 23,1 - 7234: 23,0 - 7235: 23,-1 - 7236: 23,-3 - 7237: 23,-4 - 7238: 23,-5 - 7239: 23,-6 - 7240: 23,-7 - 7261: 19,-3 - 7291: 36,0 - 7343: 33,9 - 7344: 33,10 - 7378: 33,4 - 7379: 33,6 - 7403: 49,0 - 7412: 37,5 - 7728: 43,19 - 7729: 43,21 - 8211: 42,-15 - 8212: 42,-15 - 8213: 42,-11 - 8517: 56,-18 - 8518: 56,-19 - 8519: 56,-22 - 8520: 56,-22 - 8521: 56,-23 - 8522: 56,-23 - 8539: 53,-24 - 8540: 53,-24 - 8541: 53,-25 - 8618: 65,-11 - 8619: 65,-30 - 8620: 60,-26 - 9011: 13,-28 - 9012: 13,-27 - 9013: 12,-23 - 9014: 5,-23 - 9015: -13,-23 - 9018: -6,-23 - 9019: -5,-27 - 9020: -5,-28 - 9028: -13,-28 - 9088: 5,-28 - 9122: -7,-70 - 9123: -7,-70 - 9124: -2,-70 - 9153: -8,-73 - 9154: -1,-73 - 9155: -1,-73 - 9701: 19,-35 - 10267: 37,-30 - 10301: 20,-52 - 10444: 12,-52 - 10445: 12,-51 - 10446: 12,-50 - 10465: 1,-51 - 10475: 10,-60 - 10499: 14,-59 - 10500: 14,-60 - 10501: 14,-61 - 10504: 12,-59 + 6868: -39,14 + 6869: -39,14 + 6870: -39,15 + 6871: -39,15 + 7040: 19,5 + 7054: 26,5 + 7094: 19,-11 + 7095: 26,-11 + 7231: 23,1 + 7232: 23,0 + 7233: 23,-1 + 7234: 23,-3 + 7235: 23,-4 + 7236: 23,-5 + 7237: 23,-6 + 7238: 23,-7 + 7259: 19,-3 + 7289: 36,0 + 7341: 33,9 + 7342: 33,10 + 7376: 33,4 + 7377: 33,6 + 7401: 49,0 + 7410: 37,5 + 7726: 43,19 + 7727: 43,21 + 8209: 42,-15 + 8210: 42,-15 + 8211: 42,-11 + 8515: 56,-18 + 8516: 56,-19 + 8517: 56,-22 + 8518: 56,-22 + 8519: 56,-23 + 8520: 56,-23 + 8537: 53,-24 + 8538: 53,-24 + 8539: 53,-25 + 8616: 65,-11 + 8617: 65,-30 + 8618: 60,-26 + 9009: 13,-28 + 9010: 13,-27 + 9011: 12,-23 + 9012: 5,-23 + 9013: -13,-23 + 9016: -6,-23 + 9017: -5,-27 + 9018: -5,-28 + 9026: -13,-28 + 9086: 5,-28 + 9120: -7,-70 + 9121: -7,-70 + 9122: -2,-70 + 9151: -8,-73 + 9152: -1,-73 + 9153: -1,-73 + 9699: 19,-35 + 10265: 37,-30 + 10299: 20,-52 + 10442: 12,-52 + 10443: 12,-51 + 10444: 12,-50 + 10463: 1,-51 + 10473: 10,-60 + 10497: 14,-59 + 10498: 14,-60 + 10499: 14,-61 + 10502: 12,-59 + 10503: 12,-60 + 10504: 12,-61 10505: 12,-60 10506: 12,-61 - 10507: 12,-60 - 10508: 12,-61 - 10605: 51,-55 - 10697: 82,-44 - 10698: 82,-45 - 10699: 82,-46 - 10709: 79,-47 - 10718: 74,-39 - 10719: 74,-38 - 10785: 53,-55 - 10786: 53,-54 - 10787: 53,-53 - 10793: 45,-52 - 10794: 45,-53 - 10795: 45,-54 - 10808: 43,-56 - 10809: 43,-56 - 10810: 43,-55 - 10811: 43,-50 - 10812: 43,-50 - 11320: -74,-35 - 11321: -74,-35 - 11552: -21,-35 - 11735: -44,-28 - 11736: -44,-28 - 11737: -32,-28 - 11738: -32,-28 - 12360: -21,-47 - 12391: -17,-68 - 12392: -17,-69 - 12393: -17,-70 - 12394: -17,-71 - 12395: -17,-72 - 12396: -17,-73 - 12426: -15,-75 - 12427: -15,-76 - 12460: -13,-80 - 12461: -13,-81 - 12472: -21,-81 - 12476: -22,-67 - 12477: -22,-66 - 12557: -18,-78 - 12571: -17,-79 - 12572: -17,-80 - 12573: -17,-81 - 12580: -19,-81 - 12589: -24,-81 - 12590: -23,-78 - 12599: -23,-76 - 12600: -23,-75 - 12601: -23,-74 - 12602: -23,-73 - 12603: -23,-73 - 12604: -23,-72 - 12605: -23,-70 - 12606: -23,-69 - 12607: -23,-68 - 12608: -23,-65 - 12711: -38,26 - 12712: -38,28 - 12879: -19,-81 - 13390: -38,-67 - 13559: -29,-74 - 13560: -29,-77 - 13561: -29,-78 - 13571: -36,-78 - 13574: -31,-78 - 13575: -31,-77 - 13576: -31,-80 - 14483: -21,23 - 14484: -8,23 - 14485: 6,23 - 15410: -40,5 - 15513: 57,-31 - 15516: 57,-10 - 15527: 58,-27 - 15528: 60,-27 - 15529: 60,-14 - 15530: 58,-14 - 15641: 76,1 - 15642: 80,1 - 15657: 85,1 - 15724: 100,-3 - 15751: 92,2 - 15868: 81,-2 - 15869: 81,-3 - 15870: 81,-4 - 15882: 85,-2 - 15883: 85,-3 - 15884: 85,-4 - 15885: 89,-2 - 15886: 89,-3 - 15887: 89,-4 - 15913: 94,13 - 15921: 96,13 - 16761: -58,-17 - 16762: -54,-12 - 16763: -54,-13 - 16764: -54,-14 - 16765: -54,-15 - 16766: -54,-9 - 16767: -54,-8 - 16768: -54,-7 - 16769: -59,1 - 16808: -45,5 - 16818: -51,5 - 16819: -54,5 - 17135: -46,-17 - 17136: -46,-16 - 17137: -46,-15 - 17138: -46,-14 - 17139: -46,-13 - 17169: -74,-7 - 17337: -50,-8 - 17404: -74,-7 - 17725: -76,6 - 17726: -76,5 - 17727: -76,4 - 17730: -79,4 - 17731: -79,5 - 17732: -79,6 - 17756: -78,10 - 17757: -76,10 - 18091: -44,47 - 18098: -57,33 - 18099: -53,33 - 18100: -53,34 - 18101: -53,35 - 18102: -53,36 - 18103: -53,37 - 18117: -55,21 - 18129: -52,24 - 18130: -52,23 - 18164: -57,6 - 18201: -54,-4 - 18202: -54,-3 - 18203: -54,-2 - 18204: -54,-1 - 18365: -73,-7 - 18366: -68,-7 - 18367: -61,-8 - 18401: -50,-37 - 18468: -16,-14 - 18469: -16,-15 - 18491: -17,-9 - 18520: 15,-9 - 19031: 57,8 - 19032: 59,8 - 19033: 63,8 - 19034: 61,8 - 19465: -9,26 - 19534: -9,26 - 19538: -9,28 - 19539: -9,29 - 19541: -9,31 - 19542: -9,32 - 19846: -27,-23 - 20155: -21,5 - 21391: 19,14 - 21392: 19,15 - 21396: 23,14 - 21397: 23,15 + 10603: 51,-55 + 10695: 82,-44 + 10696: 82,-45 + 10697: 82,-46 + 10707: 79,-47 + 10716: 74,-39 + 10717: 74,-38 + 10783: 53,-55 + 10784: 53,-54 + 10785: 53,-53 + 10791: 45,-52 + 10792: 45,-53 + 10793: 45,-54 + 10806: 43,-56 + 10807: 43,-56 + 10808: 43,-55 + 10809: 43,-50 + 10810: 43,-50 + 11318: -74,-35 + 11319: -74,-35 + 11550: -21,-35 + 11733: -44,-28 + 11734: -44,-28 + 11735: -32,-28 + 11736: -32,-28 + 12358: -21,-47 + 12389: -17,-68 + 12390: -17,-69 + 12391: -17,-70 + 12392: -17,-71 + 12393: -17,-72 + 12394: -17,-73 + 12424: -15,-75 + 12425: -15,-76 + 12458: -13,-80 + 12459: -13,-81 + 12470: -21,-81 + 12474: -22,-67 + 12475: -22,-66 + 12555: -18,-78 + 12569: -17,-79 + 12570: -17,-80 + 12571: -17,-81 + 12578: -19,-81 + 12587: -24,-81 + 12588: -23,-78 + 12597: -23,-76 + 12598: -23,-75 + 12599: -23,-74 + 12600: -23,-73 + 12601: -23,-73 + 12602: -23,-72 + 12603: -23,-70 + 12604: -23,-69 + 12605: -23,-68 + 12606: -23,-65 + 12709: -38,26 + 12710: -38,28 + 12877: -19,-81 + 13388: -38,-67 + 13557: -29,-74 + 13558: -29,-77 + 13559: -29,-78 + 13569: -36,-78 + 13572: -31,-78 + 13573: -31,-77 + 13574: -31,-80 + 14481: -21,23 + 14482: -8,23 + 14483: 6,23 + 15408: -40,5 + 15511: 57,-31 + 15514: 57,-10 + 15525: 58,-27 + 15526: 60,-27 + 15527: 60,-14 + 15528: 58,-14 + 15639: 76,1 + 15640: 80,1 + 15655: 85,1 + 15722: 100,-3 + 15749: 92,2 + 15866: 81,-2 + 15867: 81,-3 + 15868: 81,-4 + 15880: 85,-2 + 15881: 85,-3 + 15882: 85,-4 + 15883: 89,-2 + 15884: 89,-3 + 15885: 89,-4 + 15911: 94,13 + 15919: 96,13 + 16759: -58,-17 + 16760: -54,-12 + 16761: -54,-13 + 16762: -54,-14 + 16763: -54,-15 + 16764: -54,-9 + 16765: -54,-8 + 16766: -54,-7 + 16767: -59,1 + 16806: -45,5 + 16816: -51,5 + 16817: -54,5 + 17133: -46,-17 + 17134: -46,-16 + 17135: -46,-15 + 17136: -46,-14 + 17137: -46,-13 + 17167: -74,-7 + 17335: -50,-8 + 17402: -74,-7 + 17723: -76,6 + 17724: -76,5 + 17725: -76,4 + 17728: -79,4 + 17729: -79,5 + 17730: -79,6 + 17754: -78,10 + 17755: -76,10 + 18089: -44,47 + 18096: -57,33 + 18097: -53,33 + 18098: -53,34 + 18099: -53,35 + 18100: -53,36 + 18101: -53,37 + 18115: -55,21 + 18127: -52,24 + 18128: -52,23 + 18162: -57,6 + 18199: -54,-4 + 18200: -54,-3 + 18201: -54,-2 + 18202: -54,-1 + 18363: -73,-7 + 18364: -68,-7 + 18365: -61,-8 + 18399: -50,-37 + 18466: -16,-14 + 18467: -16,-15 + 18489: -17,-9 + 18518: 15,-9 + 19029: 57,8 + 19030: 59,8 + 19031: 63,8 + 19032: 61,8 + 19463: -9,26 + 19532: -9,26 + 19536: -9,28 + 19537: -9,29 + 19539: -9,31 + 19540: -9,32 + 19844: -27,-23 + 20153: -21,5 + 21389: 19,14 + 21390: 19,15 + 21394: 23,14 + 21395: 23,15 + 21415: 26,14 + 21416: 26,13 21417: 26,14 - 21418: 26,13 - 21419: 26,14 - 21420: 26,15 - 21421: 26,16 - 21446: 25,14 - 21447: 25,15 + 21418: 26,15 + 21419: 26,16 + 21444: 25,14 + 21445: 25,15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 4044: -15,27 + 4042: -15,27 - node: color: '#8CB7E8FF' id: BrickTileDarkLineN decals: - 4191: -12,16 - 4193: -10,15 - 4200: -10,12 - 4212: 10,16 - 4231: -12,13 - 4232: -10,13 - 4233: -9,13 - 4234: -8,13 - 4235: -7,13 - 4236: -6,13 - 4237: -3,15 - 4238: -2,15 - 4239: -1,15 - 4240: 0,15 - 4241: 1,15 - 4242: 4,13 - 4243: 5,13 - 4244: 6,13 - 4245: 7,13 - 4246: 8,13 - 4247: 10,13 - 4263: -8,16 - 4264: -7,16 - 4266: -5,18 - 4267: -4,18 - 4268: -3,18 - 4269: -2,18 - 4270: -1,18 - 4271: 0,18 - 4272: 1,18 - 4273: 2,18 - 4274: 3,18 - 4279: 5,16 - 4280: 6,16 - 4282: 8,15 - 4320: -2,14 - 5530: -10,12 - 5671: 8,12 - 9956: 30,-44 - 9957: 31,-44 - 9958: 32,-44 - 9959: 33,-44 - 15255: -12,13 + 4189: -12,16 + 4191: -10,15 + 4198: -10,12 + 4210: 10,16 + 4229: -12,13 + 4230: -10,13 + 4231: -9,13 + 4232: -8,13 + 4233: -7,13 + 4234: -6,13 + 4235: -3,15 + 4236: -2,15 + 4237: -1,15 + 4238: 0,15 + 4239: 1,15 + 4240: 4,13 + 4241: 5,13 + 4242: 6,13 + 4243: 7,13 + 4244: 8,13 + 4245: 10,13 + 4261: -8,16 + 4262: -7,16 + 4264: -5,18 + 4265: -4,18 + 4266: -3,18 + 4267: -2,18 + 4268: -1,18 + 4269: 0,18 + 4270: 1,18 + 4271: 2,18 + 4272: 3,18 + 4277: 5,16 + 4278: 6,16 + 4280: 8,15 + 4318: -2,14 + 5528: -10,12 + 5669: 8,12 + 9954: 30,-44 + 9955: 31,-44 + 9956: 32,-44 + 9957: 33,-44 + 15253: -12,13 - node: color: '#96A4EBFF' id: BrickTileDarkLineN decals: - 5526: -12,13 - 5527: -10,12 + 5524: -12,13 + 5525: -10,12 - node: color: '#B18BDAFF' id: BrickTileDarkLineN decals: - 11757: -9,-38 - 11758: -8,-38 - 11759: -6,-38 - 11781: -6,-45 - 12143: -24,-49 - 12144: -29,-48 - 12145: -28,-48 - 12146: -27,-48 - 12147: -26,-48 - 12148: -25,-48 - 12149: -24,-48 - 12663: -52,-25 + 11755: -9,-38 + 11756: -8,-38 + 11757: -6,-38 + 11779: -6,-45 + 12141: -24,-49 + 12142: -29,-48 + 12143: -28,-48 + 12144: -27,-48 + 12145: -26,-48 + 12146: -25,-48 + 12147: -24,-48 + 12661: -52,-25 - node: color: '#CEDA8BFF' id: BrickTileDarkLineN decals: - 10874: 44,-61 - 10875: 44,-64 - 10890: 39,-64 - 10891: 40,-64 + 10872: 44,-61 + 10873: 44,-64 + 10888: 39,-64 + 10889: 40,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkLineN decals: - 3697: 2,59 - 3700: 2,59 - 6713: -24,-1 - 7421: 40,10 - 7422: 36,7 - 7424: 36,10 - 7426: 40,2 - 7456: 36,12 - 7480: 46,10 - 7481: 47,10 - 7482: 48,10 - 7499: 53,10 - 7500: 53,10 - 7513: 47,14 - 7514: 51,14 - 7552: 52,20 - 7564: 57,20 - 7605: 47,-2 - 7606: 52,-2 - 7611: 51,-3 - 7627: 61,-2 - 7628: 65,-2 - 7670: 73,20 - 7676: 73,20 - 7683: 75,24 - 7684: 75,24 - 7864: 73,4 - 9745: 12,-33 - 10545: 5,-63 - 10562: 5,-73 - 10574: 5,-79 - 10583: 4,-83 - 15381: -48,7 - 19089: 50,1 - 19090: 51,1 - 19098: 36,7 - 19099: 37,6 - 19100: 35,6 - 19101: 34,6 - 19112: 35,3 - 19146: 40,13 - 19180: 46,24 - 19219: 51,19 - 19220: 53,19 - 19239: 70,-3 - 19249: 73,23 - 19250: 74,23 - 19303: 52,13 - 19304: 53,13 - 19305: 54,13 - 19306: 55,13 - 19307: 56,13 - 19308: 57,13 - 19309: 58,13 - 19310: 58,13 - 19311: 59,13 - 19342: 52,9 - 19343: 51,9 - 19344: 54,9 - 19376: 69,-2 - 19379: 69,1 - 19380: 70,1 - 19409: -19,-24 - 19410: -18,-24 - 19585: 50,32 - 19586: 51,32 - 19587: 52,32 - 19588: 52,32 - 19589: 56,32 - 19590: 53,32 - 19591: 54,32 - 19592: 55,32 - 19593: 55,32 - 19628: 52,21 - 19629: 53,21 - 19630: 55,21 - 19631: 56,21 - 19639: 57,32 - 19640: 58,32 - 19643: 54,29 - 19644: 56,28 - 19645: 57,28 - 19646: 52,28 - 19647: 51,28 + 3695: 2,59 + 3698: 2,59 + 6711: -24,-1 + 7419: 40,10 + 7420: 36,7 + 7422: 36,10 + 7424: 40,2 + 7454: 36,12 + 7478: 46,10 + 7479: 47,10 + 7480: 48,10 + 7497: 53,10 + 7498: 53,10 + 7511: 47,14 + 7512: 51,14 + 7550: 52,20 + 7562: 57,20 + 7603: 47,-2 + 7604: 52,-2 + 7609: 51,-3 + 7625: 61,-2 + 7626: 65,-2 + 7668: 73,20 + 7674: 73,20 + 7681: 75,24 + 7682: 75,24 + 7862: 73,4 + 9743: 12,-33 + 10543: 5,-63 + 10560: 5,-73 + 10572: 5,-79 + 10581: 4,-83 + 15379: -48,7 + 19087: 50,1 + 19088: 51,1 + 19096: 36,7 + 19097: 37,6 + 19098: 35,6 + 19099: 34,6 + 19110: 35,3 + 19144: 40,13 + 19178: 46,24 + 19217: 51,19 + 19218: 53,19 + 19237: 70,-3 + 19247: 73,23 + 19248: 74,23 + 19301: 52,13 + 19302: 53,13 + 19303: 54,13 + 19304: 55,13 + 19305: 56,13 + 19306: 57,13 + 19307: 58,13 + 19308: 58,13 + 19309: 59,13 + 19340: 52,9 + 19341: 51,9 + 19342: 54,9 + 19374: 69,-2 + 19377: 69,1 + 19378: 70,1 + 19407: -19,-24 + 19408: -18,-24 + 19583: 50,32 + 19584: 51,32 + 19585: 52,32 + 19586: 52,32 + 19587: 56,32 + 19588: 53,32 + 19589: 54,32 + 19590: 55,32 + 19591: 55,32 + 19626: 52,21 + 19627: 53,21 + 19628: 55,21 + 19629: 56,21 + 19637: 57,32 + 19638: 58,32 + 19641: 54,29 + 19642: 56,28 + 19643: 57,28 + 19644: 52,28 + 19645: 51,28 - node: color: '#DABC8BFF' id: BrickTileDarkLineN decals: - 3694: 6,86 + 3692: 6,86 - node: color: '#DE3A3AFF' id: BrickTileDarkLineN decals: - 20327: -24,-1 + 20325: -24,-1 - node: color: '#EFB341FF' id: BrickTileDarkLineN decals: - 17574: -65,4 - 17575: -64,4 - 17576: -63,4 - 17577: -62,4 - 17597: -65,11 - 17598: -64,11 - 17599: -63,11 - 17600: -62,11 - 17669: -73,8 - 17670: -71,8 - 17681: -73,3 - 18264: -72,1 - 18265: -71,1 - 18266: -69,1 - 18267: -70,1 - 18268: -68,1 + 17572: -65,4 + 17573: -64,4 + 17574: -63,4 + 17575: -62,4 + 17595: -65,11 + 17596: -64,11 + 17597: -63,11 + 17598: -62,11 + 17667: -73,8 + 17668: -71,8 + 17679: -73,3 + 18262: -72,1 + 18263: -71,1 + 18264: -69,1 + 18265: -70,1 + 18266: -68,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: 1243: 69,4 - 1995: -9,25 - 1996: -8,34 - 2040: -16,34 - 2220: -19,54 - 2413: -14,46 - 2468: -14,46 - 2469: -13,46 - 2470: -12,46 - 2471: -11,46 - 2623: -2,40 - 2689: 0,54 - 2690: 3,54 - 2696: 3,49 - 2714: -6,51 - 2719: -6,54 - 2721: -5,54 - 3439: 2,59 - 3856: 18,72 - 3857: 19,72 - 3858: 20,72 - 3859: 21,72 - 3860: 22,72 - 3884: 20,67 - 3936: 13,62 - 3937: 14,62 - 3938: 15,62 - 3946: 18,61 - 3950: 19,60 - 3951: 20,60 - 4456: 15,25 - 4671: 20,24 - 5534: -19,7 - 5550: -19,-7 - 5574: -33,25 - 5575: -32,25 - 5611: -13,59 - 5612: -12,59 - 5613: -11,59 - 5614: -13,66 - 5615: -12,66 - 5616: -11,66 - 5724: 9,7 - 5738: 10,3 - 5739: 9,3 - 5762: 8,4 - 5763: 10,-1 - 5829: -12,-3 - 5842: -10,-7 - 5868: -11,-3 - 5944: -1,14 - 5945: 0,14 - 6001: -1,-7 - 6094: -12,-18 - 6133: 17,-7 - 6134: 17,-7 - 6144: 17,7 - 6189: -19,-22 - 6320: 17,-22 - 6393: 13,-18 - 6394: 13,-18 - 6576: -23,-5 - 6577: -23,-5 - 6578: -25,-5 - 6579: -25,-5 - 6591: -24,-10 - 6631: -24,-8 - 7231: 21,2 - 7262: 22,-9 - 7292: 35,1 - 7308: 27,9 - 7334: 30,11 - 7335: 31,11 - 7336: 32,11 - 7345: 29,7 - 7375: 34,6 - 7376: 35,6 - 7377: 37,6 - 7386: 35,3 - 7479: 47,10 - 7694: 40,22 - 7695: 40,22 - 7696: 41,22 - 7697: 42,22 - 7698: 42,22 - 7712: 35,21 - 8200: 34,-17 - 8201: 35,-17 - 8202: 35,-17 - 8225: 35,-7 - 8501: 57,-24 - 8502: 58,-24 - 8503: 58,-24 - 8504: 59,-24 - 8505: 59,-24 - 8506: 60,-24 - 8507: 60,-24 - 8508: 61,-24 - 8756: -1,-29 - 8757: -1,-22 - 8758: -1,-37 - 8759: -1,-57 - 8760: -1,-63 - 8990: -5,-24 - 8991: -4,-24 - 8992: 6,-24 - 8993: 7,-24 - 8994: 8,-24 - 8995: 9,-24 - 8996: 10,-24 - 8997: -8,-24 - 8998: -9,-24 - 8999: -10,-24 - 9000: -11,-24 - 9001: -12,-24 - 9016: -16,-24 - 9017: -15,-24 - 9053: 2,-24 - 9054: 3,-24 - 9055: 13,-24 - 9056: 14,-24 - 9107: 14,-24 - 9110: 2,-24 - 9159: -5,-66 - 9160: -4,-66 - 9161: -4,-66 - 9166: -1,-82 - 9447: -5,-68 - 9448: -4,-68 - 9697: 17,-37 - 9698: 27,-37 - 10268: 36,-29 - 10269: 36,-29 - 10447: 11,-49 - 10448: 10,-49 + 1993: -9,25 + 1994: -8,34 + 2038: -16,34 + 2218: -19,54 + 2411: -14,46 + 2466: -14,46 + 2467: -13,46 + 2468: -12,46 + 2469: -11,46 + 2621: -2,40 + 2687: 0,54 + 2688: 3,54 + 2694: 3,49 + 2712: -6,51 + 2717: -6,54 + 2719: -5,54 + 3437: 2,59 + 3854: 18,72 + 3855: 19,72 + 3856: 20,72 + 3857: 21,72 + 3858: 22,72 + 3882: 20,67 + 3934: 13,62 + 3935: 14,62 + 3936: 15,62 + 3944: 18,61 + 3948: 19,60 + 3949: 20,60 + 4454: 15,25 + 4669: 20,24 + 5532: -19,7 + 5548: -19,-7 + 5572: -33,25 + 5573: -32,25 + 5609: -13,59 + 5610: -12,59 + 5611: -11,59 + 5612: -13,66 + 5613: -12,66 + 5614: -11,66 + 5722: 9,7 + 5736: 10,3 + 5737: 9,3 + 5760: 8,4 + 5761: 10,-1 + 5827: -12,-3 + 5840: -10,-7 + 5866: -11,-3 + 5942: -1,14 + 5943: 0,14 + 5999: -1,-7 + 6092: -12,-18 + 6131: 17,-7 + 6132: 17,-7 + 6142: 17,7 + 6187: -19,-22 + 6318: 17,-22 + 6391: 13,-18 + 6392: 13,-18 + 6574: -23,-5 + 6575: -23,-5 + 6576: -25,-5 + 6577: -25,-5 + 6589: -24,-10 + 6629: -24,-8 + 7229: 21,2 + 7260: 22,-9 + 7290: 35,1 + 7306: 27,9 + 7332: 30,11 + 7333: 31,11 + 7334: 32,11 + 7343: 29,7 + 7373: 34,6 + 7374: 35,6 + 7375: 37,6 + 7384: 35,3 + 7477: 47,10 + 7692: 40,22 + 7693: 40,22 + 7694: 41,22 + 7695: 42,22 + 7696: 42,22 + 7710: 35,21 + 8198: 34,-17 + 8199: 35,-17 + 8200: 35,-17 + 8223: 35,-7 + 8499: 57,-24 + 8500: 58,-24 + 8501: 58,-24 + 8502: 59,-24 + 8503: 59,-24 + 8504: 60,-24 + 8505: 60,-24 + 8506: 61,-24 + 8754: -1,-29 + 8755: -1,-22 + 8756: -1,-37 + 8757: -1,-57 + 8758: -1,-63 + 8988: -5,-24 + 8989: -4,-24 + 8990: 6,-24 + 8991: 7,-24 + 8992: 8,-24 + 8993: 9,-24 + 8994: 10,-24 + 8995: -8,-24 + 8996: -9,-24 + 8997: -10,-24 + 8998: -11,-24 + 8999: -12,-24 + 9014: -16,-24 + 9015: -15,-24 + 9051: 2,-24 + 9052: 3,-24 + 9053: 13,-24 + 9054: 14,-24 + 9105: 14,-24 + 9108: 2,-24 + 9157: -5,-66 + 9158: -4,-66 + 9159: -4,-66 + 9164: -1,-82 + 9445: -5,-68 + 9446: -4,-68 + 9695: 17,-37 + 9696: 27,-37 + 10266: 36,-29 + 10267: 36,-29 + 10445: 11,-49 + 10446: 10,-49 + 10447: 9,-49 + 10448: 9,-49 10449: 9,-49 - 10450: 9,-49 - 10451: 9,-49 - 10452: 8,-49 + 10450: 8,-49 + 10451: 6,-49 + 10452: 7,-49 10453: 6,-49 - 10454: 7,-49 - 10455: 6,-49 - 10456: 5,-49 - 10460: 3,-49 - 10467: 10,-54 - 10487: 12,-62 - 10493: 11,-58 - 10494: 12,-58 - 10495: 12,-58 - 10496: 13,-58 - 10497: 13,-58 - 10603: 50,-54 - 10604: 50,-54 - 10700: 81,-43 - 10715: 73,-41 - 10716: 73,-41 - 10717: 73,-37 - 11544: -19,-33 - 11557: -23,-33 - 11561: -14,-37 - 11562: -14,-37 - 11717: -14,-45 - 12411: -20,-66 - 12412: -20,-66 - 12413: -19,-66 - 12414: -18,-66 - 12415: -16,-66 - 12416: -15,-66 - 12417: -14,-66 - 12418: -13,-66 - 12419: -17,-66 - 12420: -16,-74 - 12421: -18,-74 - 12437: -21,-76 - 12438: -21,-76 - 12439: -20,-76 - 12440: -14,-76 - 12441: -13,-76 - 12444: -20,-65 - 12445: -19,-65 - 12446: -18,-65 - 12447: -16,-65 - 12448: -15,-65 - 12449: -14,-65 - 12458: -15,-79 - 12459: -14,-79 - 12470: -22,-80 - 12475: -21,-66 - 12558: -21,-77 - 12559: -17,-78 - 12560: -16,-78 - 12561: -15,-78 - 12563: -13,-78 - 12594: -23,-79 - 12596: -23,-77 - 12615: -23,-71 - 12782: -30,70 - 12783: -12,70 - 12784: -20,66 - 12785: -19,66 - 12786: -18,66 - 12787: -6,66 - 12788: -5,66 - 12789: -4,66 - 12790: 6,70 - 12816: -6,59 - 12817: -5,59 - 12818: -4,59 - 12819: -18,59 - 12820: -19,59 - 12821: -20,59 - 12822: -20,66 - 12823: -19,66 - 13382: -40,-66 - 13383: -39,-66 - 13553: -36,-73 - 13554: -35,-73 - 13555: -34,-73 - 13556: -32,-73 - 13557: -31,-73 - 13587: -33,-77 - 13588: -34,-77 - 13591: -32,-77 - 14424: -60,20 - 14425: -59,20 - 14426: -58,20 - 14450: -65,13 - 14451: -64,13 - 14452: -64,13 - 14453: -63,13 - 14454: -62,13 - 14489: -19,21 - 14490: 17,21 - 15393: -42,2 - 15396: -42,3 - 15407: -42,7 - 15507: 58,-11 - 15508: 59,-11 - 15509: 60,-11 - 15632: 77,0 - 15633: 78,0 - 15634: 79,0 - 15635: 82,0 - 15636: 83,0 - 15637: 84,0 - 15638: 86,0 - 15639: 87,0 - 15640: 88,0 - 15656: 81,0 - 15670: 90,10 - 15671: 91,10 - 15672: 92,10 - 15673: 93,10 - 15676: 92,8 - 15678: 91,7 - 15710: 92,5 - 15755: 95,0 - 15756: 94,0 - 15866: 80,-2 - 15894: 88,-2 - 15895: 84,-2 - 15915: 97,14 - 15916: 97,13 - 15926: 96,14 - 15931: 97,13 - 16041: 92,15 - 16051: 89,9 - 16052: 90,9 - 16753: -58,0 - 16754: -56,0 - 16755: -53,-5 - 16756: -53,-10 - 16757: -53,-16 - 16758: -57,-18 - 16759: -56,-18 - 16760: -55,-18 - 16798: -47,6 - 16799: -46,6 - 16804: -49,3 - 16959: -58,3 - 16960: -57,3 - 17125: -48,-18 - 17126: -47,-18 - 17127: -48,-12 - 17128: -47,-12 - 17171: -70,-9 - 17407: -70,-9 - 17717: -81,15 - 17718: -81,13 - 18127: -54,25 - 18128: -53,25 - 18200: -57,0 - 18352: -60,-9 - 18353: -59,-9 - 18354: -58,-9 - 18355: -67,-8 - 18356: -66,-8 - 18357: -65,-8 - 18358: -65,-8 - 18359: -64,-8 - 18360: -69,-8 - 18361: -69,-8 - 18362: -70,-8 - 18363: -71,-8 - 18364: -72,-8 - 18403: -52,-36 - 18404: -52,-36 - 18405: -51,-36 - 18407: -49,-38 - 18567: 13,-11 - 18570: 13,-13 - 18586: 13,-13 - 19018: 69,10 - 19470: -11,33 - 19477: -14,34 - 19478: -13,34 - 19524: -11,33 - 19819: -8,-40 - 19820: -7,-40 - 19841: -30,-22 - 19842: -29,-22 - 19843: -28,-22 - 19851: -29,-25 - 20119: 65,27 - 20120: 66,27 - 20127: 62,30 - 20128: 63,30 - 20129: 64,30 - 20130: 65,30 - 20131: 65,30 - 20132: 67,30 - 20133: 67,30 - 20134: 66,30 - 20144: 62,27 - 20145: 64,27 - 20146: 65,27 - 20147: 66,27 - 20148: 67,27 - 21388: 20,15 - 21399: 24,13 - 21406: 23,17 - 21407: 25,17 - 21408: 25,17 - 21409: 24,17 - 21452: 24,16 + 10454: 5,-49 + 10458: 3,-49 + 10465: 10,-54 + 10485: 12,-62 + 10491: 11,-58 + 10492: 12,-58 + 10493: 12,-58 + 10494: 13,-58 + 10495: 13,-58 + 10601: 50,-54 + 10602: 50,-54 + 10698: 81,-43 + 10713: 73,-41 + 10714: 73,-41 + 10715: 73,-37 + 11542: -19,-33 + 11555: -23,-33 + 11559: -14,-37 + 11560: -14,-37 + 11715: -14,-45 + 12409: -20,-66 + 12410: -20,-66 + 12411: -19,-66 + 12412: -18,-66 + 12413: -16,-66 + 12414: -15,-66 + 12415: -14,-66 + 12416: -13,-66 + 12417: -17,-66 + 12418: -16,-74 + 12419: -18,-74 + 12435: -21,-76 + 12436: -21,-76 + 12437: -20,-76 + 12438: -14,-76 + 12439: -13,-76 + 12442: -20,-65 + 12443: -19,-65 + 12444: -18,-65 + 12445: -16,-65 + 12446: -15,-65 + 12447: -14,-65 + 12456: -15,-79 + 12457: -14,-79 + 12468: -22,-80 + 12473: -21,-66 + 12556: -21,-77 + 12557: -17,-78 + 12558: -16,-78 + 12559: -15,-78 + 12561: -13,-78 + 12592: -23,-79 + 12594: -23,-77 + 12613: -23,-71 + 12780: -30,70 + 12781: -12,70 + 12782: -20,66 + 12783: -19,66 + 12784: -18,66 + 12785: -6,66 + 12786: -5,66 + 12787: -4,66 + 12788: 6,70 + 12814: -6,59 + 12815: -5,59 + 12816: -4,59 + 12817: -18,59 + 12818: -19,59 + 12819: -20,59 + 12820: -20,66 + 12821: -19,66 + 13380: -40,-66 + 13381: -39,-66 + 13551: -36,-73 + 13552: -35,-73 + 13553: -34,-73 + 13554: -32,-73 + 13555: -31,-73 + 13585: -33,-77 + 13586: -34,-77 + 13589: -32,-77 + 14422: -60,20 + 14423: -59,20 + 14424: -58,20 + 14448: -65,13 + 14449: -64,13 + 14450: -64,13 + 14451: -63,13 + 14452: -62,13 + 14487: -19,21 + 14488: 17,21 + 15391: -42,2 + 15394: -42,3 + 15405: -42,7 + 15505: 58,-11 + 15506: 59,-11 + 15507: 60,-11 + 15630: 77,0 + 15631: 78,0 + 15632: 79,0 + 15633: 82,0 + 15634: 83,0 + 15635: 84,0 + 15636: 86,0 + 15637: 87,0 + 15638: 88,0 + 15654: 81,0 + 15668: 90,10 + 15669: 91,10 + 15670: 92,10 + 15671: 93,10 + 15674: 92,8 + 15676: 91,7 + 15708: 92,5 + 15753: 95,0 + 15754: 94,0 + 15864: 80,-2 + 15892: 88,-2 + 15893: 84,-2 + 15913: 97,14 + 15914: 97,13 + 15924: 96,14 + 15929: 97,13 + 16039: 92,15 + 16049: 89,9 + 16050: 90,9 + 16751: -58,0 + 16752: -56,0 + 16753: -53,-5 + 16754: -53,-10 + 16755: -53,-16 + 16756: -57,-18 + 16757: -56,-18 + 16758: -55,-18 + 16796: -47,6 + 16797: -46,6 + 16802: -49,3 + 16957: -58,3 + 16958: -57,3 + 17123: -48,-18 + 17124: -47,-18 + 17125: -48,-12 + 17126: -47,-12 + 17169: -70,-9 + 17405: -70,-9 + 17715: -81,15 + 17716: -81,13 + 18125: -54,25 + 18126: -53,25 + 18198: -57,0 + 18350: -60,-9 + 18351: -59,-9 + 18352: -58,-9 + 18353: -67,-8 + 18354: -66,-8 + 18355: -65,-8 + 18356: -65,-8 + 18357: -64,-8 + 18358: -69,-8 + 18359: -69,-8 + 18360: -70,-8 + 18361: -71,-8 + 18362: -72,-8 + 18401: -52,-36 + 18402: -52,-36 + 18403: -51,-36 + 18405: -49,-38 + 18565: 13,-11 + 18568: 13,-13 + 18584: 13,-13 + 19016: 69,10 + 19468: -11,33 + 19475: -14,34 + 19476: -13,34 + 19522: -11,33 + 19817: -8,-40 + 19818: -7,-40 + 19839: -30,-22 + 19840: -29,-22 + 19841: -28,-22 + 19849: -29,-25 + 20117: 65,27 + 20118: 66,27 + 20125: 62,30 + 20126: 63,30 + 20127: 64,30 + 20128: 65,30 + 20129: 65,30 + 20130: 67,30 + 20131: 67,30 + 20132: 66,30 + 20142: 62,27 + 20143: 64,27 + 20144: 65,27 + 20145: 66,27 + 20146: 67,27 + 21386: 20,15 + 21397: 24,13 + 21404: 23,17 + 21405: 25,17 + 21406: 25,17 + 21407: 24,17 + 21450: 24,16 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 4048: -19,25 + 4046: -19,25 - node: color: '#8CB7E8FF' id: BrickTileDarkLineS decals: - 4186: -12,13 - 4187: -11,13 - 4188: -9,13 - 4189: -8,13 - 4190: -7,13 - 4201: -6,13 - 4202: -5,13 - 4203: 3,13 - 4204: 4,13 - 4205: 5,13 - 4206: 6,13 - 4207: 7,13 - 4208: 9,13 - 4209: 10,13 - 4214: -10,15 - 4215: -9,15 - 4216: -8,15 - 4217: -7,15 - 4218: -3,17 - 4219: -1,17 - 4220: -1,17 - 4221: -2,17 - 4222: 0,17 - 4223: 1,17 - 4224: 4,15 - 4225: 5,15 - 4226: 6,15 - 4227: 7,15 - 4228: 8,15 - 4229: 10,16 - 4230: -12,16 - 4290: -3,15 - 4291: -1,15 - 4292: 0,15 - 4293: 1,15 - 5529: -6,15 - 9964: 31,-45 - 9965: 32,-45 - 9966: 33,-45 - 21333: -12,13 - 21334: -11,13 + 4184: -12,13 + 4185: -11,13 + 4186: -9,13 + 4187: -8,13 + 4188: -7,13 + 4199: -6,13 + 4200: -5,13 + 4201: 3,13 + 4202: 4,13 + 4203: 5,13 + 4204: 6,13 + 4205: 7,13 + 4206: 9,13 + 4207: 10,13 + 4212: -10,15 + 4213: -9,15 + 4214: -8,15 + 4215: -7,15 + 4216: -3,17 + 4217: -1,17 + 4218: -1,17 + 4219: -2,17 + 4220: 0,17 + 4221: 1,17 + 4222: 4,15 + 4223: 5,15 + 4224: 6,15 + 4225: 7,15 + 4226: 8,15 + 4227: 10,16 + 4228: -12,16 + 4288: -3,15 + 4289: -1,15 + 4290: 0,15 + 4291: 1,15 + 5527: -6,15 + 9962: 31,-45 + 9963: 32,-45 + 9964: 33,-45 + 21331: -12,13 + 21332: -11,13 - node: color: '#B18BDAFF' id: BrickTileDarkLineS decals: - 11765: -10,-44 - 11766: -9,-44 - 11767: -8,-44 - 11768: -8,-44 - 11769: -7,-44 - 11778: -7,-37 - 11779: -7,-37 - 12137: -29,-48 - 12138: -28,-48 - 12139: -28,-48 - 12140: -27,-48 - 12141: -26,-48 - 12142: -25,-48 - 12662: -52,-31 + 11763: -10,-44 + 11764: -9,-44 + 11765: -8,-44 + 11766: -8,-44 + 11767: -7,-44 + 11776: -7,-37 + 11777: -7,-37 + 12135: -29,-48 + 12136: -28,-48 + 12137: -28,-48 + 12138: -27,-48 + 12139: -26,-48 + 12140: -25,-48 + 12660: -52,-31 - node: color: '#CEDA8BFF' id: BrickTileDarkLineS decals: - 10876: 44,-61 - 10877: 44,-64 - 10888: 40,-64 - 10889: 39,-64 + 10874: 44,-61 + 10875: 44,-64 + 10886: 40,-64 + 10887: 39,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkLineS decals: - 4598: 13,33 - 6712: -23,3 - 7415: 40,10 - 7420: 40,10 - 7423: 36,10 - 7425: 40,2 - 7440: 37,8 - 7483: 46,10 - 7484: 47,10 - 7485: 48,10 - 7497: 53,10 - 7498: 53,10 - 7510: 47,14 - 7511: 51,14 - 7512: 51,14 - 7540: 52,20 - 7541: 57,20 - 7604: 47,-2 - 7607: 52,-2 - 7608: 56,-5 - 7609: 57,-5 - 7610: 52,-5 - 7646: 58,2 - 7647: 62,2 - 7648: 66,2 - 7669: 73,20 - 7673: 75,24 - 7674: 75,24 - 7675: 73,20 - 7685: 75,26 - 7859: 69,-2 - 7863: 73,4 - 9742: 11,-29 - 9743: 13,-29 - 10537: 7,-57 - 10546: 5,-63 - 10569: 5,-73 - 10584: 5,-79 - 15585: 72,-1 - 15586: 73,-1 - 19062: 51,-1 - 19063: 50,-1 - 19064: 55,-1 - 19065: 54,-1 - 19066: 53,-1 - 19067: 60,-1 - 19068: 59,-1 - 19069: 58,-1 - 19070: 64,-1 - 19071: 63,-1 - 19072: 62,-1 - 19073: 66,-1 - 19074: 67,-1 - 19077: 48,-1 - 19097: 36,7 - 19104: 34,4 - 19105: 36,4 - 19106: 36,4 - 19107: 37,4 - 19130: 40,-1 - 19154: 52,11 - 19155: 51,11 - 19156: 54,11 - 19157: 55,11 - 19158: 56,11 - 19159: 57,11 - 19160: 58,11 - 19161: 58,11 - 19162: 59,11 - 19166: 47,14 - 19167: 46,15 - 19201: 50,21 - 19202: 51,21 - 19203: 56,21 - 19204: 55,21 - 19205: 54,21 - 19206: 54,21 - 19207: 53,21 - 19208: 58,21 - 19209: 53,15 - 19210: 52,15 - 19233: 69,-5 - 19234: 70,-5 - 19251: 74,21 - 19252: 75,21 - 19353: 51,3 - 19354: 52,3 - 19355: 53,3 - 19356: 54,3 - 19357: 54,3 - 19373: 70,-1 - 19406: -19,-28 - 19419: 13,-29 - 19420: 7,-57 - 19594: 52,28 - 19595: 53,28 - 19604: 55,28 - 19605: 56,28 - 19652: 51,31 - 19653: 57,31 - 19654: 54,32 - 19655: 53,32 - 19656: 55,32 + 4596: 13,33 + 6710: -23,3 + 7413: 40,10 + 7418: 40,10 + 7421: 36,10 + 7423: 40,2 + 7438: 37,8 + 7481: 46,10 + 7482: 47,10 + 7483: 48,10 + 7495: 53,10 + 7496: 53,10 + 7508: 47,14 + 7509: 51,14 + 7510: 51,14 + 7538: 52,20 + 7539: 57,20 + 7602: 47,-2 + 7605: 52,-2 + 7606: 56,-5 + 7607: 57,-5 + 7608: 52,-5 + 7644: 58,2 + 7645: 62,2 + 7646: 66,2 + 7667: 73,20 + 7671: 75,24 + 7672: 75,24 + 7673: 73,20 + 7683: 75,26 + 7857: 69,-2 + 7861: 73,4 + 9740: 11,-29 + 9741: 13,-29 + 10535: 7,-57 + 10544: 5,-63 + 10567: 5,-73 + 10582: 5,-79 + 15583: 72,-1 + 15584: 73,-1 + 19060: 51,-1 + 19061: 50,-1 + 19062: 55,-1 + 19063: 54,-1 + 19064: 53,-1 + 19065: 60,-1 + 19066: 59,-1 + 19067: 58,-1 + 19068: 64,-1 + 19069: 63,-1 + 19070: 62,-1 + 19071: 66,-1 + 19072: 67,-1 + 19075: 48,-1 + 19095: 36,7 + 19102: 34,4 + 19103: 36,4 + 19104: 36,4 + 19105: 37,4 + 19128: 40,-1 + 19152: 52,11 + 19153: 51,11 + 19154: 54,11 + 19155: 55,11 + 19156: 56,11 + 19157: 57,11 + 19158: 58,11 + 19159: 58,11 + 19160: 59,11 + 19164: 47,14 + 19165: 46,15 + 19199: 50,21 + 19200: 51,21 + 19201: 56,21 + 19202: 55,21 + 19203: 54,21 + 19204: 54,21 + 19205: 53,21 + 19206: 58,21 + 19207: 53,15 + 19208: 52,15 + 19231: 69,-5 + 19232: 70,-5 + 19249: 74,21 + 19250: 75,21 + 19351: 51,3 + 19352: 52,3 + 19353: 53,3 + 19354: 54,3 + 19355: 54,3 + 19371: 70,-1 + 19404: -19,-28 + 19417: 13,-29 + 19418: 7,-57 + 19592: 52,28 + 19593: 53,28 + 19602: 55,28 + 19603: 56,28 + 19650: 51,31 + 19651: 57,31 + 19652: 54,32 + 19653: 53,32 + 19654: 55,32 - node: color: '#DABC8BFF' id: BrickTileDarkLineS decals: - 3696: 5,91 + 3694: 5,91 - node: color: '#DE3A3AFF' id: BrickTileDarkLineS decals: - 20326: -23,3 + 20324: -23,3 - node: color: '#EFB341FF' id: BrickTileDarkLineS decals: - 17565: -65,11 - 17566: -64,11 - 17567: -63,11 - 17568: -62,11 - 17608: -65,4 - 17609: -64,4 - 17610: -63,4 - 17611: -62,4 - 17668: -72,9 - 17679: -72,4 - 17680: -71,4 - 17684: -72,9 + 17563: -65,11 + 17564: -64,11 + 17565: -63,11 + 17566: -62,11 + 17606: -65,4 + 17607: -64,4 + 17608: -63,4 + 17609: -62,4 + 17666: -72,9 + 17677: -72,4 + 17678: -71,4 + 17682: -72,9 + 18276: -72,-3 + 18277: -71,-3 18278: -72,-3 - 18279: -71,-3 - 18280: -72,-3 - 18281: -70,-3 - 18282: -69,-3 - 18283: -68,-3 + 18279: -70,-3 + 18280: -69,-3 + 18281: -68,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2021: -16,26 - 2036: -17,35 - 2037: -16,35 - 2041: -15,35 - 2219: -19,54 - 2291: -15,35 - 2416: -14,36 - 2474: -14,36 - 2475: -13,36 - 2476: -13,36 - 2477: -11,36 - 2478: -11,36 - 2479: -12,36 - 2534: -7,36 - 2616: -3,36 - 2629: -3,41 - 2666: 1,55 - 2667: 2,55 - 2679: 0,50 - 2680: 1,50 - 2681: 2,50 - 2694: -1,55 - 3685: 6,66 - 3851: 18,72 - 3852: 19,72 - 3853: 20,72 - 3854: 21,72 - 3855: 22,72 - 3879: 19,68 - 3880: 21,68 - 3881: 22,68 - 3889: 21,65 - 3890: 22,65 - 3891: 18,65 - 3939: 13,58 - 3940: 14,58 - 3941: 15,58 - 3942: 16,58 - 4455: 15,25 - 4669: 20,24 - 4670: 21,24 - 4673: 21,25 - 5533: -19,7 - 5549: -19,-7 - 5572: -33,25 - 5573: -32,25 - 5604: -13,66 - 5605: -12,66 - 5606: -11,66 - 5607: -13,59 - 5608: -12,59 - 5609: -11,59 - 5610: -11,59 - 5719: 9,5 - 5720: 10,5 - 5730: 8,0 - 5731: 9,0 - 5761: 8,4 - 5836: -12,-6 - 5837: -11,-6 - 5871: -10,-2 - 5911: -10,-2 - 5946: -2,12 - 5947: -1,12 - 5948: -1,12 - 5949: 0,12 - 6093: -12,-18 - 6132: 17,-7 - 6143: 17,7 - 6188: -19,-22 - 6319: 17,-22 - 6388: 19,-14 - 6392: 13,-18 - 6566: -25,-9 - 6567: -23,-9 - 6568: -23,-9 - 6622: -24,-4 - 6625: -24,-6 - 6626: -24,-6 - 7229: 21,-8 - 7230: 23,-8 - 7260: 22,3 - 7289: 35,-1 - 7339: 30,8 - 7340: 31,8 - 7341: 32,8 - 7372: 34,4 - 7373: 36,4 - 7374: 37,4 - 7389: 36,7 - 7478: 47,10 - 7702: 42,18 - 7703: 41,18 - 7704: 40,18 - 7711: 35,19 - 8197: 34,-17 - 8198: 35,-17 - 8199: 35,-17 - 8223: 35,-7 - 8224: 35,-7 - 8494: 57,-17 - 8495: 58,-17 - 8496: 58,-17 - 8497: 59,-17 - 8498: 59,-17 - 8499: 60,-17 - 8500: 61,-17 - 8544: 52,-26 - 8545: 52,-22 - 8753: -1,-37 - 8754: -1,-29 - 8755: -1,-22 - 8761: -1,-63 - 8762: -1,-57 - 9021: -16,-26 - 9022: -12,-27 - 9023: -11,-27 - 9024: -10,-27 - 9025: -9,-27 - 9026: -8,-27 - 9027: -4,-26 - 9057: 2,-26 - 9058: 14,-26 - 9080: 6,-27 - 9081: 6,-27 - 9082: 7,-27 - 9083: 8,-27 - 9084: 9,-27 - 9085: 10,-27 - 9086: 10,-27 - 9156: -5,-66 - 9157: -4,-66 - 9158: -4,-66 - 9165: -1,-82 - 9445: -5,-68 - 9446: -4,-68 - 9695: 17,-37 - 9696: 27,-37 - 10265: 36,-31 - 10266: 36,-31 - 10432: 3,-53 - 10433: 4,-53 - 10434: 5,-53 - 10435: 6,-53 - 10436: 6,-53 - 10437: 7,-53 - 10438: 7,-53 - 10439: 8,-53 - 10440: 8,-53 - 10441: 9,-53 - 10442: 9,-53 - 10443: 11,-53 - 10459: 4,-48 - 10486: 12,-58 - 10488: 11,-62 - 10489: 12,-62 - 10490: 13,-62 - 10503: 10,-57 - 10601: 50,-56 - 10602: 50,-56 - 10705: 80,-47 - 10706: 81,-47 - 11246: -64,-48 - 11542: -19,-33 - 11543: -19,-33 - 11553: -23,-33 - 11554: -23,-33 - 11555: -14,-37 - 11556: -14,-37 - 11716: -14,-45 - 12386: -13,-67 - 12387: -14,-67 - 12388: -15,-67 - 12406: -16,-67 + 2019: -16,26 + 2034: -17,35 + 2035: -16,35 + 2039: -15,35 + 2217: -19,54 + 2289: -15,35 + 2414: -14,36 + 2472: -14,36 + 2473: -13,36 + 2474: -13,36 + 2475: -11,36 + 2476: -11,36 + 2477: -12,36 + 2532: -7,36 + 2614: -3,36 + 2627: -3,41 + 2664: 1,55 + 2665: 2,55 + 2677: 0,50 + 2678: 1,50 + 2679: 2,50 + 2692: -1,55 + 3683: 6,66 + 3849: 18,72 + 3850: 19,72 + 3851: 20,72 + 3852: 21,72 + 3853: 22,72 + 3877: 19,68 + 3878: 21,68 + 3879: 22,68 + 3887: 21,65 + 3888: 22,65 + 3889: 18,65 + 3937: 13,58 + 3938: 14,58 + 3939: 15,58 + 3940: 16,58 + 4453: 15,25 + 4667: 20,24 + 4668: 21,24 + 4671: 21,25 + 5531: -19,7 + 5547: -19,-7 + 5570: -33,25 + 5571: -32,25 + 5602: -13,66 + 5603: -12,66 + 5604: -11,66 + 5605: -13,59 + 5606: -12,59 + 5607: -11,59 + 5608: -11,59 + 5717: 9,5 + 5718: 10,5 + 5728: 8,0 + 5729: 9,0 + 5759: 8,4 + 5834: -12,-6 + 5835: -11,-6 + 5869: -10,-2 + 5909: -10,-2 + 5944: -2,12 + 5945: -1,12 + 5946: -1,12 + 5947: 0,12 + 6091: -12,-18 + 6130: 17,-7 + 6141: 17,7 + 6186: -19,-22 + 6317: 17,-22 + 6386: 19,-14 + 6390: 13,-18 + 6564: -25,-9 + 6565: -23,-9 + 6566: -23,-9 + 6620: -24,-4 + 6623: -24,-6 + 6624: -24,-6 + 7227: 21,-8 + 7228: 23,-8 + 7258: 22,3 + 7287: 35,-1 + 7337: 30,8 + 7338: 31,8 + 7339: 32,8 + 7370: 34,4 + 7371: 36,4 + 7372: 37,4 + 7387: 36,7 + 7476: 47,10 + 7700: 42,18 + 7701: 41,18 + 7702: 40,18 + 7709: 35,19 + 8195: 34,-17 + 8196: 35,-17 + 8197: 35,-17 + 8221: 35,-7 + 8222: 35,-7 + 8492: 57,-17 + 8493: 58,-17 + 8494: 58,-17 + 8495: 59,-17 + 8496: 59,-17 + 8497: 60,-17 + 8498: 61,-17 + 8542: 52,-26 + 8543: 52,-22 + 8751: -1,-37 + 8752: -1,-29 + 8753: -1,-22 + 8759: -1,-63 + 8760: -1,-57 + 9019: -16,-26 + 9020: -12,-27 + 9021: -11,-27 + 9022: -10,-27 + 9023: -9,-27 + 9024: -8,-27 + 9025: -4,-26 + 9055: 2,-26 + 9056: 14,-26 + 9078: 6,-27 + 9079: 6,-27 + 9080: 7,-27 + 9081: 8,-27 + 9082: 9,-27 + 9083: 10,-27 + 9084: 10,-27 + 9154: -5,-66 + 9155: -4,-66 + 9156: -4,-66 + 9163: -1,-82 + 9443: -5,-68 + 9444: -4,-68 + 9693: 17,-37 + 9694: 27,-37 + 10263: 36,-31 + 10264: 36,-31 + 10430: 3,-53 + 10431: 4,-53 + 10432: 5,-53 + 10433: 6,-53 + 10434: 6,-53 + 10435: 7,-53 + 10436: 7,-53 + 10437: 8,-53 + 10438: 8,-53 + 10439: 9,-53 + 10440: 9,-53 + 10441: 11,-53 + 10457: 4,-48 + 10484: 12,-58 + 10486: 11,-62 + 10487: 12,-62 + 10488: 13,-62 + 10501: 10,-57 + 10599: 50,-56 + 10600: 50,-56 + 10703: 80,-47 + 10704: 81,-47 + 11244: -64,-48 + 11540: -19,-33 + 11541: -19,-33 + 11551: -23,-33 + 11552: -23,-33 + 11553: -14,-37 + 11554: -14,-37 + 11714: -14,-45 + 12384: -13,-67 + 12385: -14,-67 + 12386: -15,-67 + 12404: -16,-67 + 12405: -19,-67 + 12406: -20,-67 12407: -19,-67 - 12408: -20,-67 - 12409: -19,-67 - 12410: -18,-67 - 12430: -18,-76 - 12431: -17,-76 - 12432: -16,-76 - 12450: -17,-64 - 12464: -15,-82 - 12465: -14,-82 - 12471: -22,-82 - 12474: -21,-67 - 12562: -14,-77 - 12567: -13,-78 - 12568: -14,-78 - 12569: -15,-78 - 12570: -16,-78 - 12595: -23,-79 - 12597: -23,-77 - 12614: -23,-71 - 12624: -24,-63 - 12633: -24,-70 - 12773: 6,70 - 12774: -6,66 - 12775: -5,66 - 12776: -4,66 - 12777: -20,66 - 12778: -19,66 - 12779: -18,66 - 12780: -12,70 - 12781: -30,70 - 12809: -20,59 - 12810: -19,59 - 12811: -18,59 - 12812: -6,59 - 12813: -5,59 - 12814: -4,59 - 13387: -40,-68 - 13388: -39,-68 - 13565: -35,-76 - 13566: -34,-76 - 13567: -32,-76 - 13568: -32,-76 - 13569: -33,-76 - 13570: -31,-76 - 13599: -33,-79 - 14421: -60,20 - 14422: -59,20 - 14423: -58,20 - 14445: -65,13 - 14446: -64,13 - 14447: -64,13 - 14448: -62,13 - 14449: -63,13 - 14488: -19,21 - 14492: 17,21 - 15397: -42,3 - 15406: -42,7 - 15510: 58,-30 - 15511: 59,-30 - 15512: 60,-30 - 15620: 77,2 - 15621: 78,2 - 15622: 79,2 - 15623: 81,2 - 15624: 82,2 - 15625: 83,2 - 15626: 83,2 - 15627: 84,2 - 15628: 86,2 - 15629: 87,2 - 15630: 88,2 - 15631: 88,2 - 15677: 92,8 - 15748: 94,4 - 15749: 95,4 - 15873: 80,-5 - 15900: 88,-5 - 15901: 84,-5 - 16040: 92,15 - 16745: -57,-16 - 16746: -56,-16 - 16747: -55,-16 - 16748: -53,-11 - 16749: -53,-6 - 16750: -53,0 - 16751: -56,2 - 16752: -57,2 - 16797: -48,7 - 16805: -48,4 - 16806: -47,4 - 16807: -46,4 - 16957: -58,3 - 16958: -57,3 - 16961: -58,2 - 17130: -48,-12 - 17131: -47,-12 - 17132: -48,-18 - 17133: -47,-18 - 17170: -70,-9 - 17406: -70,-9 - 17715: -81,13 - 17716: -81,15 - 18123: -54,25 - 18124: -53,25 - 18340: -72,-6 - 18341: -71,-6 - 18342: -70,-6 - 18343: -69,-6 - 18344: -67,-6 - 18345: -66,-6 - 18346: -65,-6 - 18347: -64,-6 - 18348: -60,-7 - 18349: -59,-7 - 18350: -59,-7 - 18351: -58,-7 - 18395: -52,-38 - 18396: -51,-38 - 18397: -51,-38 - 18398: -50,-38 - 18399: -49,-38 - 18400: -49,-38 - 18566: 13,-11 - 18572: 13,-14 - 18582: 13,-14 - 19004: 69,3 - 19017: 69,10 - 19472: -13,26 - 19474: -11,27 - 19531: -11,27 - 19817: -8,-40 - 19818: -7,-40 - 19847: -30,-24 - 19848: -28,-24 - 20117: 65,27 - 20118: 66,27 - 20138: 63,28 - 21387: 20,14 - 21398: 24,16 - 21414: 23,12 - 21415: 24,12 - 21416: 25,12 - 21445: 24,13 + 12408: -18,-67 + 12428: -18,-76 + 12429: -17,-76 + 12430: -16,-76 + 12448: -17,-64 + 12462: -15,-82 + 12463: -14,-82 + 12469: -22,-82 + 12472: -21,-67 + 12560: -14,-77 + 12565: -13,-78 + 12566: -14,-78 + 12567: -15,-78 + 12568: -16,-78 + 12593: -23,-79 + 12595: -23,-77 + 12612: -23,-71 + 12622: -24,-63 + 12631: -24,-70 + 12771: 6,70 + 12772: -6,66 + 12773: -5,66 + 12774: -4,66 + 12775: -20,66 + 12776: -19,66 + 12777: -18,66 + 12778: -12,70 + 12779: -30,70 + 12807: -20,59 + 12808: -19,59 + 12809: -18,59 + 12810: -6,59 + 12811: -5,59 + 12812: -4,59 + 13385: -40,-68 + 13386: -39,-68 + 13563: -35,-76 + 13564: -34,-76 + 13565: -32,-76 + 13566: -32,-76 + 13567: -33,-76 + 13568: -31,-76 + 13597: -33,-79 + 14419: -60,20 + 14420: -59,20 + 14421: -58,20 + 14443: -65,13 + 14444: -64,13 + 14445: -64,13 + 14446: -62,13 + 14447: -63,13 + 14486: -19,21 + 14490: 17,21 + 15395: -42,3 + 15404: -42,7 + 15508: 58,-30 + 15509: 59,-30 + 15510: 60,-30 + 15618: 77,2 + 15619: 78,2 + 15620: 79,2 + 15621: 81,2 + 15622: 82,2 + 15623: 83,2 + 15624: 83,2 + 15625: 84,2 + 15626: 86,2 + 15627: 87,2 + 15628: 88,2 + 15629: 88,2 + 15675: 92,8 + 15746: 94,4 + 15747: 95,4 + 15871: 80,-5 + 15898: 88,-5 + 15899: 84,-5 + 16038: 92,15 + 16743: -57,-16 + 16744: -56,-16 + 16745: -55,-16 + 16746: -53,-11 + 16747: -53,-6 + 16748: -53,0 + 16749: -56,2 + 16750: -57,2 + 16795: -48,7 + 16803: -48,4 + 16804: -47,4 + 16805: -46,4 + 16955: -58,3 + 16956: -57,3 + 16959: -58,2 + 17128: -48,-12 + 17129: -47,-12 + 17130: -48,-18 + 17131: -47,-18 + 17168: -70,-9 + 17404: -70,-9 + 17713: -81,13 + 17714: -81,15 + 18121: -54,25 + 18122: -53,25 + 18338: -72,-6 + 18339: -71,-6 + 18340: -70,-6 + 18341: -69,-6 + 18342: -67,-6 + 18343: -66,-6 + 18344: -65,-6 + 18345: -64,-6 + 18346: -60,-7 + 18347: -59,-7 + 18348: -59,-7 + 18349: -58,-7 + 18393: -52,-38 + 18394: -51,-38 + 18395: -51,-38 + 18396: -50,-38 + 18397: -49,-38 + 18398: -49,-38 + 18564: 13,-11 + 18570: 13,-14 + 18580: 13,-14 + 19002: 69,3 + 19015: 69,10 + 19470: -13,26 + 19472: -11,27 + 19529: -11,27 + 19815: -8,-40 + 19816: -7,-40 + 19845: -30,-24 + 19846: -28,-24 + 20115: 65,27 + 20116: 66,27 + 20136: 63,28 + 21385: 20,14 + 21396: 24,16 + 21412: 23,12 + 21413: 24,12 + 21414: 25,12 + 21443: 24,13 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 4047: -19,25 + 4045: -19,25 - node: color: '#00C9DAFF' id: BrickTileDarkLineW decals: - 8127: 32,-16 + 8125: 32,-16 - node: color: '#8CB7E8FF' id: BrickTileDarkLineW decals: - 4196: -9,16 - 4248: 9,14 - 4249: 11,14 - 4250: 11,15 - 4251: 2,16 - 4252: -5,14 - 4260: -11,14 - 4261: -11,15 - 4277: -6,17 - 4294: 2,14 - 4303: 12,14 - 4304: 12,15 - 4305: 15,14 - 4306: 15,15 - 21344: 16,16 - 21345: 16,13 - 21346: 16,12 - 21347: 16,17 + 4194: -9,16 + 4246: 9,14 + 4247: 11,14 + 4248: 11,15 + 4249: 2,16 + 4250: -5,14 + 4258: -11,14 + 4259: -11,15 + 4275: -6,17 + 4292: 2,14 + 4301: 12,14 + 4302: 12,15 + 4303: 15,14 + 4304: 15,15 + 21342: 16,16 + 21343: 16,13 + 21344: 16,12 + 21345: 16,17 - node: color: '#A9DA8BFF' id: BrickTileDarkLineW decals: - 2986: -27,54 + 2984: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkLineW decals: - 11770: -11,-43 - 11771: -11,-42 - 11772: -11,-42 - 11773: -11,-40 - 11774: -11,-40 - 11776: -3,-41 - 11777: -3,-40 - 12134: -23,-45 - 12135: -23,-46 - 12136: -23,-47 - 12152: -30,-47 - 12153: -30,-45 - 12657: -53,-30 - 12658: -53,-29 - 12659: -53,-27 - 12660: -53,-27 - 12661: -53,-26 - 12667: -49,-28 - 13000: -53,-28 + 11768: -11,-43 + 11769: -11,-42 + 11770: -11,-42 + 11771: -11,-40 + 11772: -11,-40 + 11774: -3,-41 + 11775: -3,-40 + 12132: -23,-45 + 12133: -23,-46 + 12134: -23,-47 + 12150: -30,-47 + 12151: -30,-45 + 12655: -53,-30 + 12656: -53,-29 + 12657: -53,-27 + 12658: -53,-27 + 12659: -53,-26 + 12665: -49,-28 + 12998: -53,-28 - node: color: '#DA8B8BFF' id: BrickTileDarkLineW decals: - 3698: 4,60 - 3701: 4,60 - 3703: 4,64 - 7404: 49,1 - 7405: 49,0 - 7406: 49,-1 - 7417: 45,8 - 7418: 45,12 - 7427: 45,0 - 7491: 49,4 - 7494: 49,8 - 7522: 49,16 - 7543: 58,19 - 7544: 58,19 - 7551: 55,17 - 7559: 48,22 - 7560: 48,23 - 7569: 60,25 - 7571: 49,12 - 7618: 55,-4 - 7619: 50,-4 - 7649: 56,4 - 7650: 56,5 - 7651: 61,12 - 7654: 61,12 - 7679: 77,22 - 7680: 77,22 - 7692: 75,9 - 7792: 68,1 - 7793: 68,-1 - 7860: 72,-4 - 9744: 15,-31 - 10561: 7,-65 - 10570: 7,-77 - 10571: 7,-75 - 15379: -45,9 - 15581: 72,2 - 15582: 72,0 - 15591: 75,1 - 19035: 72,7 - 19036: 72,8 - 19037: 72,9 - 19038: 72,9 - 19039: 72,10 - 19040: 72,11 - 19041: 72,12 - 19042: 72,14 - 19043: 72,15 - 19044: 72,16 - 19045: 72,17 - 19086: 43,0 - 19087: 46,2 - 19088: 46,1 - 19091: 68,1 - 19092: 68,-1 - 19093: 46,11 - 19094: 39,7 - 19109: 34,5 - 19117: 38,4 - 19118: 38,6 - 19128: 39,0 - 19131: 39,12 - 19132: 43,12 - 19133: 43,8 - 19170: 45,16 - 19171: 45,17 - 19172: 45,18 - 19173: 45,18 - 19174: 45,19 - 19175: 45,23 - 19176: 45,22 - 19177: 45,22 - 19178: 45,21 - 19191: 49,25 - 19192: 49,24 - 19193: 49,26 - 19194: 49,27 - 19195: 49,28 - 19211: 50,18 - 19212: 50,17 - 19222: 56,16 - 19223: 56,18 - 19240: 68,-4 - 19253: 72,22 - 19358: 50,5 - 19359: 50,6 - 19360: 50,7 - 19366: 69,0 - 19381: 71,1 - 19382: 71,-1 - 19407: -20,-27 - 19408: -20,-25 - 19415: -17,-24 - 19596: 54,27 - 19597: 54,26 - 19598: 54,25 - 19599: 54,25 - 19600: 54,24 - 19601: 54,24 - 19602: 54,23 - 19603: 54,22 - 19613: 57,22 - 19614: 57,22 - 19615: 57,23 - 19616: 57,24 - 19617: 57,25 - 19618: 57,25 - 19619: 57,26 - 19620: 57,27 - 19632: 49,29 - 19633: 49,30 - 19634: 49,31 - 19648: 58,29 - 19649: 58,30 + 3696: 4,60 + 3699: 4,60 + 3701: 4,64 + 7402: 49,1 + 7403: 49,0 + 7404: 49,-1 + 7415: 45,8 + 7416: 45,12 + 7425: 45,0 + 7489: 49,4 + 7492: 49,8 + 7520: 49,16 + 7541: 58,19 + 7542: 58,19 + 7549: 55,17 + 7557: 48,22 + 7558: 48,23 + 7567: 60,25 + 7569: 49,12 + 7616: 55,-4 + 7617: 50,-4 + 7647: 56,4 + 7648: 56,5 + 7649: 61,12 + 7652: 61,12 + 7677: 77,22 + 7678: 77,22 + 7690: 75,9 + 7790: 68,1 + 7791: 68,-1 + 7858: 72,-4 + 9742: 15,-31 + 10559: 7,-65 + 10568: 7,-77 + 10569: 7,-75 + 15377: -45,9 + 15579: 72,2 + 15580: 72,0 + 15589: 75,1 + 19033: 72,7 + 19034: 72,8 + 19035: 72,9 + 19036: 72,9 + 19037: 72,10 + 19038: 72,11 + 19039: 72,12 + 19040: 72,14 + 19041: 72,15 + 19042: 72,16 + 19043: 72,17 + 19084: 43,0 + 19085: 46,2 + 19086: 46,1 + 19089: 68,1 + 19090: 68,-1 + 19091: 46,11 + 19092: 39,7 + 19107: 34,5 + 19115: 38,4 + 19116: 38,6 + 19126: 39,0 + 19129: 39,12 + 19130: 43,12 + 19131: 43,8 + 19168: 45,16 + 19169: 45,17 + 19170: 45,18 + 19171: 45,18 + 19172: 45,19 + 19173: 45,23 + 19174: 45,22 + 19175: 45,22 + 19176: 45,21 + 19189: 49,25 + 19190: 49,24 + 19191: 49,26 + 19192: 49,27 + 19193: 49,28 + 19209: 50,18 + 19210: 50,17 + 19220: 56,16 + 19221: 56,18 + 19238: 68,-4 + 19251: 72,22 + 19356: 50,5 + 19357: 50,6 + 19358: 50,7 + 19364: 69,0 + 19379: 71,1 + 19380: 71,-1 + 19405: -20,-27 + 19406: -20,-25 + 19413: -17,-24 + 19594: 54,27 + 19595: 54,26 + 19596: 54,25 + 19597: 54,25 + 19598: 54,24 + 19599: 54,24 + 19600: 54,23 + 19601: 54,22 + 19611: 57,22 + 19612: 57,22 + 19613: 57,23 + 19614: 57,24 + 19615: 57,25 + 19616: 57,25 + 19617: 57,26 + 19618: 57,27 + 19630: 49,29 + 19631: 49,30 + 19632: 49,31 + 19646: 58,29 + 19647: 58,30 - node: color: '#DE3A3AFF' id: BrickTileDarkLineW decals: - 20328: -24,0 - 20329: -24,1 + 20326: -24,0 + 20327: -24,1 - node: color: '#EFB341FF' id: BrickTileDarkLineW decals: - 17569: -61,9 - 17570: -61,8 - 17571: -61,7 - 17572: -61,6 - 17573: -61,5 - 17596: -61,10 - 17601: -66,10 - 17602: -66,9 - 17603: -66,8 - 17604: -66,8 - 17605: -66,7 - 17606: -66,6 - 17607: -66,5 - 17612: -60,6 - 17617: -60,10 - 17619: -60,6 - 17673: -74,7 - 17674: -74,6 - 17675: -74,5 - 17840: -56,6 - 17846: -60,6 - 17847: -60,10 - 18270: -73,0 - 18271: -73,-1 - 18272: -73,-2 + 17567: -61,9 + 17568: -61,8 + 17569: -61,7 + 17570: -61,6 + 17571: -61,5 + 17594: -61,10 + 17599: -66,10 + 17600: -66,9 + 17601: -66,8 + 17602: -66,8 + 17603: -66,7 + 17604: -66,6 + 17605: -66,5 + 17610: -60,6 + 17615: -60,10 + 17617: -60,6 + 17671: -74,7 + 17672: -74,6 + 17673: -74,5 + 17838: -56,6 + 17844: -60,6 + 17845: -60,10 + 18268: -73,0 + 18269: -73,-1 + 18270: -73,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1985: -8,30 - 1986: -8,33 - 1987: -8,27 - 2013: -17,33 - 2014: -17,32 - 2015: -17,31 - 2016: -17,29 - 2017: -17,28 - 2018: -17,27 - 2331: -28,33 - 2332: -28,34 - 2333: -28,34 - 2334: -28,35 - 2335: -28,36 - 2336: -28,37 - 2517: -9,40 - 2518: -9,41 - 2519: -9,42 - 2523: -9,43 - 2524: -9,42 - 2525: -9,41 - 2526: -9,40 - 2527: -9,39 - 2528: -9,45 - 2529: -8,44 - 2530: -8,38 - 2531: -8,37 - 2607: -5,37 - 2612: -4,38 - 2613: -4,39 - 2628: -1,40 - 2672: 4,51 - 2673: 4,52 - 2674: 4,53 - 2675: 4,53 - 2685: -1,52 - 2686: -1,53 - 2687: -1,54 - 2688: -1,54 - 2718: -7,53 - 2723: -4,54 - 3137: -16,64 - 3138: -16,63 - 3139: -16,62 - 3140: -16,61 - 3152: -8,61 - 3153: -8,62 - 3154: -8,63 - 3155: -8,63 - 3156: -8,64 - 3196: -22,61 - 3197: -22,62 - 3198: -22,63 - 3199: -22,64 - 3211: -2,64 - 3212: -2,63 - 3213: -2,62 - 3214: -2,62 - 3215: -2,61 - 3220: -1,61 - 3436: -1,61 - 3691: 4,64 - 3693: 4,60 - 3900: 24,66 - 3984: -42,61 - 3985: -42,60 - 5247: -32,80 - 5248: -32,81 - 5249: -32,89 - 5250: -32,89 - 5251: -32,90 - 5252: -32,91 - 5265: -28,91 - 5266: -28,90 - 5267: -28,89 - 5268: -28,89 - 5269: -28,81 - 5270: -28,80 - 5271: -28,80 - 5329: -14,89 - 5330: -14,90 - 5331: -14,91 - 5335: -10,89 - 5336: -10,90 - 5337: -10,90 - 5338: -10,91 - 5339: -10,91 - 5348: -14,80 - 5349: -14,80 - 5350: -14,81 - 5353: -10,80 - 5354: -10,81 - 5358: 4,81 - 5359: 4,80 - 5360: 4,79 - 5645: -17,-20 - 5664: -7,9 - 5668: 5,9 - 5714: 7,6 - 5726: 7,2 - 5727: 7,1 - 5733: 12,1 - 5823: -16,-5 - 5826: -14,-5 - 5827: -13,-4 - 5951: -3,13 - 5967: -1,-6 - 5968: -1,-4 - 5969: -1,-3 - 5970: -1,-2 - 5971: -1,-2 - 5972: -1,0 - 5973: -1,1 - 5974: -1,1 - 5975: -1,2 - 5976: -1,4 - 5977: -1,5 - 5978: -1,5 - 5979: -1,6 - 6030: -8,-16 - 6031: -8,-12 - 6057: -14,-15 - 6058: -14,-14 - 6059: -14,-13 - 6060: -12,-15 - 6061: -12,-14 - 6062: -12,-13 - 6063: -16,-15 - 6064: -16,-14 - 6065: -16,-13 - 6066: -10,-15 - 6067: -10,-14 - 6068: -10,-13 - 6178: -3,-20 - 6179: 1,-20 - 6183: 15,-20 - 6574: -26,-7 - 6575: -26,-8 - 6627: -23,-7 - 6628: -23,-7 - 6853: -33,15 - 6854: -33,14 - 6855: -33,13 - 6856: -33,12 - 6857: -33,11 - 6858: -33,10 - 6859: -33,9 - 6874: -39,10 - 6875: -39,9 - 6876: -39,11 - 6877: -39,11 - 6878: -39,12 - 6879: -39,13 + 1983: -8,30 + 1984: -8,33 + 1985: -8,27 + 2011: -17,33 + 2012: -17,32 + 2013: -17,31 + 2014: -17,29 + 2015: -17,28 + 2016: -17,27 + 2329: -28,33 + 2330: -28,34 + 2331: -28,34 + 2332: -28,35 + 2333: -28,36 + 2334: -28,37 + 2515: -9,40 + 2516: -9,41 + 2517: -9,42 + 2521: -9,43 + 2522: -9,42 + 2523: -9,41 + 2524: -9,40 + 2525: -9,39 + 2526: -9,45 + 2527: -8,44 + 2528: -8,38 + 2529: -8,37 + 2605: -5,37 + 2610: -4,38 + 2611: -4,39 + 2626: -1,40 + 2670: 4,51 + 2671: 4,52 + 2672: 4,53 + 2673: 4,53 + 2683: -1,52 + 2684: -1,53 + 2685: -1,54 + 2686: -1,54 + 2716: -7,53 + 2721: -4,54 + 3135: -16,64 + 3136: -16,63 + 3137: -16,62 + 3138: -16,61 + 3150: -8,61 + 3151: -8,62 + 3152: -8,63 + 3153: -8,63 + 3154: -8,64 + 3194: -22,61 + 3195: -22,62 + 3196: -22,63 + 3197: -22,64 + 3209: -2,64 + 3210: -2,63 + 3211: -2,62 + 3212: -2,62 + 3213: -2,61 + 3218: -1,61 + 3434: -1,61 + 3689: 4,64 + 3691: 4,60 + 3898: 24,66 + 3982: -42,61 + 3983: -42,60 + 5245: -32,80 + 5246: -32,81 + 5247: -32,89 + 5248: -32,89 + 5249: -32,90 + 5250: -32,91 + 5263: -28,91 + 5264: -28,90 + 5265: -28,89 + 5266: -28,89 + 5267: -28,81 + 5268: -28,80 + 5269: -28,80 + 5327: -14,89 + 5328: -14,90 + 5329: -14,91 + 5333: -10,89 + 5334: -10,90 + 5335: -10,90 + 5336: -10,91 + 5337: -10,91 + 5346: -14,80 + 5347: -14,80 + 5348: -14,81 + 5351: -10,80 + 5352: -10,81 + 5356: 4,81 + 5357: 4,80 + 5358: 4,79 + 5643: -17,-20 + 5662: -7,9 + 5666: 5,9 + 5712: 7,6 + 5724: 7,2 + 5725: 7,1 + 5731: 12,1 + 5821: -16,-5 + 5824: -14,-5 + 5825: -13,-4 + 5949: -3,13 + 5965: -1,-6 + 5966: -1,-4 + 5967: -1,-3 + 5968: -1,-2 + 5969: -1,-2 + 5970: -1,0 + 5971: -1,1 + 5972: -1,1 + 5973: -1,2 + 5974: -1,4 + 5975: -1,5 + 5976: -1,5 + 5977: -1,6 + 6028: -8,-16 + 6029: -8,-12 + 6055: -14,-15 + 6056: -14,-14 + 6057: -14,-13 + 6058: -12,-15 + 6059: -12,-14 + 6060: -12,-13 + 6061: -16,-15 + 6062: -16,-14 + 6063: -16,-13 + 6064: -10,-15 + 6065: -10,-14 + 6066: -10,-13 + 6176: -3,-20 + 6177: 1,-20 + 6181: 15,-20 + 6572: -26,-7 + 6573: -26,-8 + 6625: -23,-7 + 6626: -23,-7 + 6851: -33,15 + 6852: -33,14 + 6853: -33,13 + 6854: -33,12 + 6855: -33,11 + 6856: -33,10 + 6857: -33,9 + 6872: -39,10 + 6873: -39,9 + 6874: -39,11 + 6875: -39,11 + 6876: -39,12 + 6877: -39,13 + 6878: -39,14 + 6879: -39,14 6880: -39,14 - 6881: -39,14 - 6882: -39,14 - 6883: -39,15 - 6884: -39,16 - 7041: 19,5 - 7055: 26,5 - 7094: 19,-11 - 7095: 26,-11 - 7243: 20,1 - 7244: 20,0 - 7245: 20,-1 - 7246: 20,-2 - 7247: 20,-4 - 7248: 20,-5 - 7249: 20,-6 - 7250: 20,-7 - 7263: 24,-8 - 7264: 24,-2 - 7290: 34,0 - 7305: 28,9 - 7331: 29,8 - 7332: 29,9 - 7333: 29,10 - 7380: 34,5 - 7387: 38,6 - 7388: 38,4 - 7402: 49,0 - 7706: 39,19 - 7707: 39,20 - 7708: 39,21 - 7709: 39,21 - 7710: 34,20 - 7723: 37,20 - 7724: 37,20 - 7725: 44,20 - 8208: 42,-11 - 8209: 42,-15 - 8210: 42,-15 - 8492: 57,-20 - 8493: 57,-21 - 8509: 62,-23 - 8510: 62,-23 - 8511: 62,-22 - 8512: 62,-22 - 8513: 62,-20 - 8514: 62,-19 - 8515: 62,-18 - 8516: 62,-21 - 8536: 51,-24 - 8537: 51,-24 - 8538: 51,-25 - 8616: 64,-30 - 8617: 64,-11 - 9002: -7,-23 - 9003: -14,-23 - 9004: -15,-28 - 9005: -15,-27 - 9006: -7,-28 - 9007: 11,-23 - 9008: 4,-23 - 9009: 3,-28 - 9010: 3,-27 - 9087: 11,-28 - 9102: 3,-28 - 9120: -7,-70 - 9121: -2,-70 - 9150: -8,-73 - 9151: -1,-73 - 9152: -1,-73 - 9700: 19,-35 - 10270: 35,-30 - 10302: 20,-52 - 10461: 2,-50 - 10462: 2,-52 - 10470: 10,-58 - 10471: 10,-59 - 10472: 10,-60 - 10473: 10,-60 - 10474: 10,-61 - 10476: 14,-60 - 10477: 14,-60 - 10509: 12,-61 - 10510: 12,-60 - 10511: 12,-59 - 10606: 49,-55 - 10701: 80,-44 - 10702: 80,-45 - 10703: 80,-45 - 10704: 80,-46 - 10720: 72,-39 - 10721: 72,-38 - 10781: 53,-55 - 10782: 53,-55 - 10783: 53,-54 - 10784: 53,-53 - 10796: 44,-55 - 10797: 44,-54 - 10798: 43,-51 - 10799: 43,-51 - 10800: 43,-52 - 10801: 43,-53 - 10802: 43,-54 - 10803: 43,-54 - 10804: 43,-55 - 10805: 43,-56 - 10806: 43,-51 - 10807: 43,-50 - 11322: -75,-35 - 11551: -21,-35 - 11732: -44,-28 - 11733: -32,-28 - 11734: -32,-28 - 12359: -21,-47 - 12389: -12,-67 - 12390: -12,-66 - 12397: -17,-73 - 12398: -17,-72 - 12399: -17,-71 - 12400: -17,-71 - 12401: -17,-70 - 12402: -17,-70 - 12403: -17,-69 - 12404: -17,-69 - 12405: -17,-68 - 12424: -19,-75 - 12425: -19,-76 - 12453: -16,-82 - 12454: -16,-81 - 12455: -16,-80 - 12473: -23,-81 - 12478: -12,-66 - 12479: -12,-67 - 12577: -17,-79 - 12581: -19,-81 - 12588: -24,-81 - 12598: -12,-78 - 12616: -24,-73 - 12617: -24,-74 - 12618: -24,-75 - 12622: -22,-66 - 12623: -22,-67 - 12627: -25,-65 - 12628: -25,-66 - 12629: -25,-67 - 12630: -25,-67 - 12631: -25,-68 - 12632: -25,-69 - 12706: -38,28 - 12707: -38,27 - 12716: -37,27 - 13385: -41,-67 - 13551: -37,-79 - 13552: -37,-74 - 13563: -30,-78 - 13564: -30,-77 - 13572: -35,-78 - 13573: -35,-77 - 13592: -35,-80 - 14480: -21,23 - 14481: -8,23 - 14482: 6,23 - 15409: -40,5 - 15514: 61,-31 - 15515: 61,-10 - 15525: 58,-27 - 15526: 60,-27 - 15535: 58,-14 - 15536: 60,-14 - 15590: 75,1 - 15643: 80,1 - 15644: 89,1 - 15655: 85,1 - 15723: 99,-3 - 15750: 97,2 - 15874: 79,-4 - 15875: 79,-3 - 15896: 83,-3 - 15897: 83,-4 - 15910: 94,10 - 16111: 87,-4 - 16112: 87,-3 - 16770: -55,1 - 16771: -52,-1 - 16772: -52,-2 - 16773: -52,-2 - 16774: -52,-3 - 16775: -52,-4 - 16776: -52,-7 - 16777: -52,-8 - 16778: -52,-9 - 16779: -52,-12 - 16780: -52,-13 - 16781: -52,-14 - 16782: -52,-15 - 16783: -54,-17 - 16802: -49,4 - 16803: -49,5 - 16816: -54,5 - 16817: -51,5 - 17140: -46,-13 - 17141: -46,-14 - 17142: -46,-15 - 17143: -46,-16 - 17144: -46,-17 - 17168: -74,-7 - 17336: -50,-8 - 17405: -74,-7 - 17722: -79,6 - 17723: -79,5 - 17724: -79,4 - 17733: -76,6 - 17734: -76,5 - 17735: -76,4 - 17758: -76,10 - 17759: -79,10 - 18090: -45,47 - 18106: -53,33 - 18107: -53,34 - 18108: -53,36 - 18109: -53,37 - 18113: -57,33 - 18116: -55,21 - 18121: -52,23 - 18122: -52,24 - 18163: -58,6 - 18368: -63,-7 - 18369: -68,-7 - 18370: -57,-8 - 18393: -53,-37 - 18488: -17,-9 - 18489: -17,-10 - 18521: 15,-9 - 19027: 57,8 - 19028: 59,8 - 19029: 61,8 - 19030: 63,8 - 19479: -14,33 - 19480: -14,32 - 19481: -15,30 - 19482: -14,28 - 19483: -14,27 - 19845: -31,-23 - 20143: 61,29 - 20156: -21,5 - 21389: 21,14 - 21390: 21,15 - 21394: 25,14 - 21395: 25,15 - 21410: 22,16 - 21411: 22,13 - 21450: 23,15 - 21451: 23,14 + 6881: -39,15 + 6882: -39,16 + 7039: 19,5 + 7053: 26,5 + 7092: 19,-11 + 7093: 26,-11 + 7241: 20,1 + 7242: 20,0 + 7243: 20,-1 + 7244: 20,-2 + 7245: 20,-4 + 7246: 20,-5 + 7247: 20,-6 + 7248: 20,-7 + 7261: 24,-8 + 7262: 24,-2 + 7288: 34,0 + 7303: 28,9 + 7329: 29,8 + 7330: 29,9 + 7331: 29,10 + 7378: 34,5 + 7385: 38,6 + 7386: 38,4 + 7400: 49,0 + 7704: 39,19 + 7705: 39,20 + 7706: 39,21 + 7707: 39,21 + 7708: 34,20 + 7721: 37,20 + 7722: 37,20 + 7723: 44,20 + 8206: 42,-11 + 8207: 42,-15 + 8208: 42,-15 + 8490: 57,-20 + 8491: 57,-21 + 8507: 62,-23 + 8508: 62,-23 + 8509: 62,-22 + 8510: 62,-22 + 8511: 62,-20 + 8512: 62,-19 + 8513: 62,-18 + 8514: 62,-21 + 8534: 51,-24 + 8535: 51,-24 + 8536: 51,-25 + 8614: 64,-30 + 8615: 64,-11 + 9000: -7,-23 + 9001: -14,-23 + 9002: -15,-28 + 9003: -15,-27 + 9004: -7,-28 + 9005: 11,-23 + 9006: 4,-23 + 9007: 3,-28 + 9008: 3,-27 + 9085: 11,-28 + 9100: 3,-28 + 9118: -7,-70 + 9119: -2,-70 + 9148: -8,-73 + 9149: -1,-73 + 9150: -1,-73 + 9698: 19,-35 + 10268: 35,-30 + 10300: 20,-52 + 10459: 2,-50 + 10460: 2,-52 + 10468: 10,-58 + 10469: 10,-59 + 10470: 10,-60 + 10471: 10,-60 + 10472: 10,-61 + 10474: 14,-60 + 10475: 14,-60 + 10507: 12,-61 + 10508: 12,-60 + 10509: 12,-59 + 10604: 49,-55 + 10699: 80,-44 + 10700: 80,-45 + 10701: 80,-45 + 10702: 80,-46 + 10718: 72,-39 + 10719: 72,-38 + 10779: 53,-55 + 10780: 53,-55 + 10781: 53,-54 + 10782: 53,-53 + 10794: 44,-55 + 10795: 44,-54 + 10796: 43,-51 + 10797: 43,-51 + 10798: 43,-52 + 10799: 43,-53 + 10800: 43,-54 + 10801: 43,-54 + 10802: 43,-55 + 10803: 43,-56 + 10804: 43,-51 + 10805: 43,-50 + 11320: -75,-35 + 11549: -21,-35 + 11730: -44,-28 + 11731: -32,-28 + 11732: -32,-28 + 12357: -21,-47 + 12387: -12,-67 + 12388: -12,-66 + 12395: -17,-73 + 12396: -17,-72 + 12397: -17,-71 + 12398: -17,-71 + 12399: -17,-70 + 12400: -17,-70 + 12401: -17,-69 + 12402: -17,-69 + 12403: -17,-68 + 12422: -19,-75 + 12423: -19,-76 + 12451: -16,-82 + 12452: -16,-81 + 12453: -16,-80 + 12471: -23,-81 + 12476: -12,-66 + 12477: -12,-67 + 12575: -17,-79 + 12579: -19,-81 + 12586: -24,-81 + 12596: -12,-78 + 12614: -24,-73 + 12615: -24,-74 + 12616: -24,-75 + 12620: -22,-66 + 12621: -22,-67 + 12625: -25,-65 + 12626: -25,-66 + 12627: -25,-67 + 12628: -25,-67 + 12629: -25,-68 + 12630: -25,-69 + 12704: -38,28 + 12705: -38,27 + 12714: -37,27 + 13383: -41,-67 + 13549: -37,-79 + 13550: -37,-74 + 13561: -30,-78 + 13562: -30,-77 + 13570: -35,-78 + 13571: -35,-77 + 13590: -35,-80 + 14478: -21,23 + 14479: -8,23 + 14480: 6,23 + 15407: -40,5 + 15512: 61,-31 + 15513: 61,-10 + 15523: 58,-27 + 15524: 60,-27 + 15533: 58,-14 + 15534: 60,-14 + 15588: 75,1 + 15641: 80,1 + 15642: 89,1 + 15653: 85,1 + 15721: 99,-3 + 15748: 97,2 + 15872: 79,-4 + 15873: 79,-3 + 15894: 83,-3 + 15895: 83,-4 + 15908: 94,10 + 16109: 87,-4 + 16110: 87,-3 + 16768: -55,1 + 16769: -52,-1 + 16770: -52,-2 + 16771: -52,-2 + 16772: -52,-3 + 16773: -52,-4 + 16774: -52,-7 + 16775: -52,-8 + 16776: -52,-9 + 16777: -52,-12 + 16778: -52,-13 + 16779: -52,-14 + 16780: -52,-15 + 16781: -54,-17 + 16800: -49,4 + 16801: -49,5 + 16814: -54,5 + 16815: -51,5 + 17138: -46,-13 + 17139: -46,-14 + 17140: -46,-15 + 17141: -46,-16 + 17142: -46,-17 + 17166: -74,-7 + 17334: -50,-8 + 17403: -74,-7 + 17720: -79,6 + 17721: -79,5 + 17722: -79,4 + 17731: -76,6 + 17732: -76,5 + 17733: -76,4 + 17756: -76,10 + 17757: -79,10 + 18088: -45,47 + 18104: -53,33 + 18105: -53,34 + 18106: -53,36 + 18107: -53,37 + 18111: -57,33 + 18114: -55,21 + 18119: -52,23 + 18120: -52,24 + 18161: -58,6 + 18366: -63,-7 + 18367: -68,-7 + 18368: -57,-8 + 18391: -53,-37 + 18486: -17,-9 + 18487: -17,-10 + 18519: 15,-9 + 19025: 57,8 + 19026: 59,8 + 19027: 61,8 + 19028: 63,8 + 19477: -14,33 + 19478: -14,32 + 19479: -15,30 + 19480: -14,28 + 19481: -14,27 + 19843: -31,-23 + 20141: 61,29 + 20154: -21,5 + 21387: 21,14 + 21388: 21,15 + 21392: 25,14 + 21393: 25,15 + 21408: 22,16 + 21409: 22,13 + 21448: 23,15 + 21449: 23,14 - node: color: '#DE3A3AFF' id: BrickTileSteelBox decals: - 20881: 55,9 + 20879: 55,9 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 7667: 73,20 + 7665: 73,20 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNe decals: - 8117: 31,-14 - 8118: 22,-14 + 8115: 31,-14 + 8116: 22,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNe decals: - 15794: 79,6 + 15792: 79,6 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerNe decals: - 3925: 21,63 + 3923: 21,63 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNe decals: - 9802: 22,-31 - 10036: 32,-31 - 10037: 25,-31 - 10042: 26,-25 - 10066: 31,-23 - 10075: 32,-22 - 10154: 24,-46 - 10218: 34,-47 + 9800: 22,-31 + 10034: 32,-31 + 10035: 25,-31 + 10040: 26,-25 + 10064: 31,-23 + 10073: 32,-22 + 10152: 24,-46 + 10216: 34,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNe decals: - 11968: -26,-26 - 11986: -45,-25 - 11987: -41,-26 - 11988: -33,-26 - 11989: -37,-26 - 11990: -37,-26 - 12073: -45,-22 - 12175: -28,-38 - 12176: -23,-38 - 12349: -17,-38 - 16170: -62,-46 - 16171: -63,-45 + 11966: -26,-26 + 11984: -45,-25 + 11985: -41,-26 + 11986: -33,-26 + 11987: -37,-26 + 11988: -37,-26 + 12071: -45,-22 + 12173: -28,-38 + 12174: -23,-38 + 12347: -17,-38 + 16168: -62,-46 + 16169: -63,-45 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerNe decals: - 10957: 32,-66 + 10955: 32,-66 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 20330: -22,2 - 20382: 6,-80 - 20412: 6,-64 - 20413: 6,-74 - 20419: 10,-77 - 20420: 10,-74 - 20421: 9,-64 - 20449: 8,-58 - 20477: 14,-30 - 20520: 3,65 - 20530: 59,31 - 20531: 58,32 - 20538: 48,13 - 20550: 41,13 - 20570: 41,9 - 20582: 37,9 - 20585: 37,12 - 20625: 93,23 - 20626: 86,10 - 20627: 74,3 - 20633: 74,19 - 20660: 44,13 - 20804: 54,19 - 20805: 48,19 - 20806: 47,24 - 20862: 60,13 - 20950: 78,10 - 21025: 76,23 - 21067: 71,-3 - 21087: 48,-3 - 21097: 53,-3 - 21104: 58,-3 - 21125: 44,1 - 21135: 41,1 - 21178: 44,9 - 21206: 77,-2 - 21207: 74,-3 - 21422: 28,22 + 20328: -22,2 + 20380: 6,-80 + 20410: 6,-64 + 20411: 6,-74 + 20417: 10,-77 + 20418: 10,-74 + 20419: 9,-64 + 20447: 8,-58 + 20475: 14,-30 + 20518: 3,65 + 20528: 59,31 + 20529: 58,32 + 20536: 48,13 + 20548: 41,13 + 20568: 41,9 + 20580: 37,9 + 20583: 37,12 + 20623: 93,23 + 20624: 86,10 + 20625: 74,3 + 20631: 74,19 + 20658: 44,13 + 20802: 54,19 + 20803: 48,19 + 20804: 47,24 + 20860: 60,13 + 20948: 78,10 + 21023: 76,23 + 21065: 71,-3 + 21085: 48,-3 + 21095: 53,-3 + 21102: 58,-3 + 21123: 44,1 + 21133: 41,1 + 21176: 44,9 + 21204: 77,-2 + 21205: 74,-3 + 21420: 28,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2216: -17,53 - 2236: -15,52 - 2351: -28,38 - 2396: -33,38 - 2784: -2,46 - 2798: -5,28 - 2819: -26,43 - 3462: -28,92 - 3471: -29,96 - 3480: -28,82 - 3491: -11,96 - 3505: -10,92 - 3513: -10,82 - 3553: 8,69 - 3773: 3,58 - 4152: -23,23 - 5144: 36,32 - 6344: 4,-14 - 6412: 14,-15 - 6827: -35,16 - 6828: -34,15 - 6919: -35,19 - 6936: -22,15 - 7077: 24,10 - 7160: 31,2 - 7174: 31,-7 - 8657: 63,-10 - 8661: 57,-10 - 8884: 1,-34 - 8885: 1,-34 - 9173: 2,-64 - 9174: 2,-64 - 9313: 1,-58 - 9314: 1,-58 - 9453: -39,-14 - 10608: 56,-43 - 10609: 56,-43 - 10653: 49,-38 - 10654: 49,-38 - 11260: -58,-34 - 11306: -77,-19 - 11307: -77,-26 - 11833: -37,-51 - 11834: -37,-55 - 11869: -23,-50 - 11884: -33,-52 - 11885: -33,-52 - 13428: -36,-60 - 15366: -8,-69 - 15807: 89,2 - 16461: -39,-6 - 16725: -55,-12 - 16850: -49,-1 - 17530: 7,85 - 17536: 8,82 + 2214: -17,53 + 2234: -15,52 + 2349: -28,38 + 2394: -33,38 + 2782: -2,46 + 2796: -5,28 + 2817: -26,43 + 3460: -28,92 + 3469: -29,96 + 3478: -28,82 + 3489: -11,96 + 3503: -10,92 + 3511: -10,82 + 3551: 8,69 + 3771: 3,58 + 4150: -23,23 + 5142: 36,32 + 6342: 4,-14 + 6410: 14,-15 + 6825: -35,16 + 6826: -34,15 + 6917: -35,19 + 6934: -22,15 + 7075: 24,10 + 7158: 31,2 + 7172: 31,-7 + 8655: 63,-10 + 8659: 57,-10 + 8882: 1,-34 + 8883: 1,-34 + 9171: 2,-64 + 9172: 2,-64 + 9311: 1,-58 + 9312: 1,-58 + 9451: -39,-14 + 10606: 56,-43 + 10607: 56,-43 + 10651: 49,-38 + 10652: 49,-38 + 11258: -58,-34 + 11304: -77,-19 + 11305: -77,-26 + 11831: -37,-51 + 11832: -37,-55 + 11867: -23,-50 + 11882: -33,-52 + 11883: -33,-52 + 13426: -36,-60 + 15364: -8,-69 + 15805: 89,2 + 16459: -39,-6 + 16723: -55,-12 + 16848: -49,-1 + 17528: 7,85 + 17534: 8,82 + 18473: -9,-12 + 18474: -9,-12 18475: -9,-12 - 18476: -9,-12 - 18477: -9,-12 - 18550: 10,-12 + 18548: 10,-12 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNw decals: - 8115: 20,-14 - 8116: 24,-14 + 8113: 20,-14 + 8114: 24,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNw decals: - 3742: -28,65 + 3740: -28,65 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNw decals: - 9803: 20,-31 - 10035: 31,-31 - 10039: 24,-31 - 10043: 24,-25 - 10067: 29,-23 - 10080: 28,-22 - 10153: 20,-46 - 10217: 32,-47 + 9801: 20,-31 + 10033: 31,-31 + 10037: 24,-31 + 10041: 24,-25 + 10065: 29,-23 + 10078: 28,-22 + 10151: 20,-46 + 10215: 32,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNw decals: - 11973: -31,-26 - 11998: -43,-26 - 11999: -43,-26 - 12000: -35,-26 - 12032: -39,-26 - 12074: -47,-22 - 12177: -30,-38 - 12178: -26,-38 - 12350: -21,-38 - 16172: -65,-45 + 11971: -31,-26 + 11996: -43,-26 + 11997: -43,-26 + 11998: -35,-26 + 12030: -39,-26 + 12072: -47,-22 + 12175: -30,-38 + 12176: -26,-38 + 12348: -21,-38 + 16170: -65,-45 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerNw decals: - 10956: 26,-66 + 10954: 26,-66 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerNw decals: - 7841: 68,6 + 7839: 68,6 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerNw decals: - 3930: 18,63 + 3928: 18,63 - node: color: '#DAA58BFF' id: BrickTileSteelCornerNw decals: - 4563: 13,39 + 4561: 13,39 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 20337: -24,2 - 20381: 4,-80 - 20410: 4,-74 - 20411: 4,-64 - 20436: 8,-74 - 20457: 3,-58 - 20461: 8,-64 - 20480: 10,-30 - 20500: 12,32 - 20521: 0,65 - 20532: 50,32 - 20533: 49,31 - 20534: 45,24 - 20551: 39,13 - 20571: 39,9 - 20583: 35,9 - 20584: 35,12 - 20628: 72,3 - 20632: 72,19 - 20656: 46,13 - 20657: 43,13 - 20694: 91,23 - 20695: 81,14 - 20696: 80,10 - 20697: 76,10 - 20698: 72,23 - 20803: 50,19 - 20835: 56,19 - 20861: 50,13 - 20884: 50,9 - 21070: 68,-3 - 21102: 50,-3 - 21103: 55,-3 - 21126: 43,1 - 21127: 39,1 - 21177: 43,9 - 21208: 73,-3 - 21209: 76,-2 - 21239: -20,-24 - 21255: 45,-3 - 21273: 46,-7 - 21425: 20,22 + 20335: -24,2 + 20379: 4,-80 + 20408: 4,-74 + 20409: 4,-64 + 20434: 8,-74 + 20455: 3,-58 + 20459: 8,-64 + 20478: 10,-30 + 20498: 12,32 + 20519: 0,65 + 20530: 50,32 + 20531: 49,31 + 20532: 45,24 + 20549: 39,13 + 20569: 39,9 + 20581: 35,9 + 20582: 35,12 + 20626: 72,3 + 20630: 72,19 + 20654: 46,13 + 20655: 43,13 + 20692: 91,23 + 20693: 81,14 + 20694: 80,10 + 20695: 76,10 + 20696: 72,23 + 20801: 50,19 + 20833: 56,19 + 20859: 50,13 + 20882: 50,9 + 21068: 68,-3 + 21100: 50,-3 + 21101: 55,-3 + 21124: 43,1 + 21125: 39,1 + 21175: 43,9 + 21206: 73,-3 + 21207: 76,-2 + 21237: -20,-24 + 21253: 45,-3 + 21271: 46,-7 + 21423: 20,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2214: -23,52 - 2215: -21,53 - 2259: -24,45 - 2317: -28,39 - 2380: -30,33 - 2395: -34,38 - 2755: -3,51 - 2785: -5,46 - 2800: -7,28 - 3316: -32,69 - 3424: -32,92 - 3425: -32,82 - 3472: -31,96 - 3492: -13,96 - 3506: -14,92 - 3514: -14,82 - 3655: 4,82 - 5125: 29,32 - 5566: -21,-15 - 5803: 7,-4 - 6263: -6,-14 - 6413: 12,-15 - 6414: 12,-15 - 6815: -44,21 - 6829: -37,16 - 6830: -37,16 - 6831: -38,15 - 6907: -37,16 - 6920: -37,19 - 6944: -29,15 - 6945: -29,15 - 7078: 20,10 - 7155: 25,2 - 7166: 25,-7 - 7320: 28,12 - 8362: 38,-19 - 8660: 61,-10 - 8666: 55,-10 - 8886: -3,-34 - 9315: -3,-58 - 9316: -3,-58 - 9330: -3,-58 - 9645: -11,-64 - 10607: 54,-43 - 10651: 43,-38 - 10652: 43,-38 - 11305: -78,-19 - 11313: -78,-26 - 11314: -78,-23 - 11832: -42,-51 - 11839: -39,-55 - 11868: -26,-50 - 11886: -35,-52 - 11887: -35,-52 - 13429: -38,-60 - 14407: -45,15 - 15367: -1,-69 - 15602: 76,2 - 16463: -40,-6 - 16697: -61,-12 - 16824: -61,-1 - 16852: -51,-1 - 17531: 5,85 - 18547: 6,-12 - 20107: 61,26 + 2212: -23,52 + 2213: -21,53 + 2257: -24,45 + 2315: -28,39 + 2378: -30,33 + 2393: -34,38 + 2753: -3,51 + 2783: -5,46 + 2798: -7,28 + 3314: -32,69 + 3422: -32,92 + 3423: -32,82 + 3470: -31,96 + 3490: -13,96 + 3504: -14,92 + 3512: -14,82 + 3653: 4,82 + 5123: 29,32 + 5564: -21,-15 + 5801: 7,-4 + 6261: -6,-14 + 6411: 12,-15 + 6412: 12,-15 + 6813: -44,21 + 6827: -37,16 + 6828: -37,16 + 6829: -38,15 + 6905: -37,16 + 6918: -37,19 + 6942: -29,15 + 6943: -29,15 + 7076: 20,10 + 7153: 25,2 + 7164: 25,-7 + 7318: 28,12 + 8360: 38,-19 + 8658: 61,-10 + 8664: 55,-10 + 8884: -3,-34 + 9313: -3,-58 + 9314: -3,-58 + 9328: -3,-58 + 9643: -11,-64 + 10605: 54,-43 + 10649: 43,-38 + 10650: 43,-38 + 11303: -78,-19 + 11311: -78,-26 + 11312: -78,-23 + 11830: -42,-51 + 11837: -39,-55 + 11866: -26,-50 + 11884: -35,-52 + 11885: -35,-52 + 13427: -38,-60 + 14405: -45,15 + 15365: -1,-69 + 15600: 76,2 + 16461: -40,-6 + 16695: -61,-12 + 16822: -61,-1 + 16850: -51,-1 + 17529: 5,85 + 18545: 6,-12 + 20105: 61,26 - node: cleanable: True color: '#FFFFFFFF' @@ -5967,150 +5962,150 @@ entities: color: '#00C9DAFF' id: BrickTileSteelCornerSe decals: - 8119: 22,-16 + 8117: 22,-16 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSe decals: - 15781: 79,4 + 15779: 79,4 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSe decals: - 9805: 22,-32 - 10033: 32,-32 - 10034: 32,-32 - 10040: 25,-32 - 10054: 26,-26 - 10163: 24,-49 - 10220: 34,-53 + 9803: 22,-32 + 10031: 32,-32 + 10032: 32,-32 + 10038: 25,-32 + 10052: 26,-26 + 10161: 24,-49 + 10218: 34,-53 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSe decals: - 11960: -26,-32 - 11994: -33,-30 - 11995: -37,-30 - 11996: -41,-30 - 11997: -45,-31 - 12075: -45,-23 - 12110: -24,-47 - 12179: -28,-42 - 12180: -23,-42 + 11958: -26,-32 + 11992: -33,-30 + 11993: -37,-30 + 11994: -41,-30 + 11995: -45,-31 + 12073: -45,-23 + 12108: -24,-47 + 12177: -28,-42 + 12178: -23,-42 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerSe decals: - 10955: 32,-70 + 10953: 32,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSe decals: - 7799: 59,3 - 7800: 63,3 - 7801: 67,3 - 7820: 70,5 - 19292: 67,4 + 7797: 59,3 + 7798: 63,3 + 7799: 67,3 + 7818: 70,5 + 19290: 67,4 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSe decals: - 3954: 21,61 + 3952: 21,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 20332: -22,0 - 20343: -46,8 - 20387: 6,-82 - 20388: 10,-78 - 20389: 10,-75 - 20390: 6,-72 - 20391: 9,-66 - 20392: 8,-62 - 20393: 6,-78 - 20479: 14,-32 - 20501: 13,30 - 20535: 48,15 - 20552: 41,11 - 20586: 37,11 - 20637: 76,21 - 20658: 44,11 - 20692: 86,9 - 20693: 93,12 - 20754: 59,21 - 20833: 57,15 - 20846: 54,15 - 20863: 60,11 - 20882: 55,3 - 20949: 78,8 - 20978: 74,-1 - 20979: 74,5 - 21076: 71,-5 - 21088: 48,-5 - 21106: 53,-5 - 21107: 58,-5 - 21121: 44,-1 - 21124: 41,-1 - 21176: 44,7 - 21214: 74,-5 - 21221: 77,-4 - 21241: -18,-28 - 21270: 51,-9 - 21424: 28,21 + 20330: -22,0 + 20341: -46,8 + 20385: 6,-82 + 20386: 10,-78 + 20387: 10,-75 + 20388: 6,-72 + 20389: 9,-66 + 20390: 8,-62 + 20391: 6,-78 + 20477: 14,-32 + 20499: 13,30 + 20533: 48,15 + 20550: 41,11 + 20584: 37,11 + 20635: 76,21 + 20656: 44,11 + 20690: 86,9 + 20691: 93,12 + 20752: 59,21 + 20831: 57,15 + 20844: 54,15 + 20861: 60,11 + 20880: 55,3 + 20947: 78,8 + 20976: 74,-1 + 20977: 74,5 + 21074: 71,-5 + 21086: 48,-5 + 21104: 53,-5 + 21105: 58,-5 + 21119: 44,-1 + 21122: 41,-1 + 21174: 44,7 + 21212: 74,-5 + 21219: 77,-4 + 21239: -18,-28 + 21268: 51,-9 + 21422: 28,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2235: -17,55 - 2319: -25,29 - 2393: -33,32 - 2788: -2,44 - 2799: -5,26 - 3476: -28,88 - 3484: -28,79 - 3501: -10,88 - 3518: -10,79 - 3777: 3,56 - 5797: 14,-6 - 6082: -9,-17 - 6323: 18,-21 - 6341: 4,-17 - 6377: 10,-17 - 6825: -35,8 - 6826: -34,9 - 6918: -35,18 - 6935: -22,8 - 7074: 24,8 - 7177: 31,-8 - 7179: 31,-6 - 8626: 57,-31 - 8635: 63,-31 - 8636: 63,-31 - 8881: 1,-36 - 9183: -8,-66 - 9247: -3,-82 - 9309: 1,-62 - 9310: 1,-62 - 10611: 56,-44 - 10648: 49,-45 - 11258: -58,-39 - 11259: -58,-39 - 11298: -77,-32 - 11315: -77,-24 - 11835: -37,-56 - 11836: -37,-56 - 11854: -41,-56 - 11878: -23,-54 - 11889: -33,-54 - 15364: -8,-71 - 16460: 8,67 - 16462: -39,-7 - 16721: -55,-15 - 16853: -49,-4 - 17547: 8,74 - 20044: -16,-1 - 20100: 70,21 + 2233: -17,55 + 2317: -25,29 + 2391: -33,32 + 2786: -2,44 + 2797: -5,26 + 3474: -28,88 + 3482: -28,79 + 3499: -10,88 + 3516: -10,79 + 3775: 3,56 + 5795: 14,-6 + 6080: -9,-17 + 6321: 18,-21 + 6339: 4,-17 + 6375: 10,-17 + 6823: -35,8 + 6824: -34,9 + 6916: -35,18 + 6933: -22,8 + 7072: 24,8 + 7175: 31,-8 + 7177: 31,-6 + 8624: 57,-31 + 8633: 63,-31 + 8634: 63,-31 + 8879: 1,-36 + 9181: -8,-66 + 9245: -3,-82 + 9307: 1,-62 + 9308: 1,-62 + 10609: 56,-44 + 10646: 49,-45 + 11256: -58,-39 + 11257: -58,-39 + 11296: -77,-32 + 11313: -77,-24 + 11833: -37,-56 + 11834: -37,-56 + 11852: -41,-56 + 11876: -23,-54 + 11887: -33,-54 + 15362: -8,-71 + 16458: 8,67 + 16460: -39,-7 + 16719: -55,-15 + 16851: -49,-4 + 17545: 8,74 + 20042: -16,-1 + 20098: 70,21 - node: cleanable: True color: '#FFFFFFFF' @@ -6121,233 +6116,233 @@ entities: color: '#00C9DAFF' id: BrickTileSteelCornerSw decals: - 8113: 20,-16 - 8114: 24,-18 + 8111: 20,-16 + 8112: 24,-18 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSw decals: - 3751: -26,59 - 10675: 69,-50 - 10676: 69,-50 + 3749: -26,59 + 10673: 69,-50 + 10674: 69,-50 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerSw decals: - 3927: 18,62 + 3925: 18,62 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSw decals: - 9804: 20,-32 - 10032: 31,-32 - 10038: 24,-32 - 10053: 24,-26 - 10164: 20,-49 - 10219: 32,-53 - 19388: 5,62 + 9802: 20,-32 + 10030: 31,-32 + 10036: 24,-32 + 10051: 24,-26 + 10162: 20,-49 + 10217: 32,-53 + 19386: 5,62 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSw decals: - 11978: -31,-32 - 11991: -43,-30 - 11992: -39,-30 - 11993: -35,-30 - 12109: -29,-47 - 12181: -26,-42 - 12182: -30,-42 - 16165: -66,-48 + 11976: -31,-32 + 11989: -43,-30 + 11990: -39,-30 + 11991: -35,-30 + 12107: -29,-47 + 12179: -26,-42 + 12180: -30,-42 + 16163: -66,-48 - node: color: '#CEDA8BFF' id: BrickTileSteelCornerSw decals: - 10954: 26,-70 + 10952: 26,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSw decals: - 7796: 57,3 - 7797: 61,3 - 7798: 65,3 + 7794: 57,3 + 7795: 61,3 + 7796: 65,3 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSw decals: - 3929: 19,61 + 3927: 19,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 20414: 4,-78 - 20415: 4,-72 - 20416: 3,-62 - 20417: 8,-66 - 20418: 8,-78 - 20478: 10,-32 - 20522: 0,60 - 20536: 45,15 - 20537: 39,3 - 20553: 39,11 - 20587: 35,11 - 20588: 35,8 - 20659: 43,11 - 20745: 49,21 - 20834: 56,15 - 20847: 50,15 - 20848: 50,11 - 20883: 50,3 - 20937: 81,12 - 20948: 76,8 - 20977: 72,5 - 21016: 72,21 - 21066: 68,-5 - 21098: 50,-5 - 21099: 55,-5 - 21115: 46,-1 - 21122: 43,-1 - 21123: 39,-1 - 21175: 43,7 - 21213: 73,-5 - 21240: -20,-28 - 21254: 45,-5 - 21271: 46,-9 - 21423: 20,21 + 20412: 4,-78 + 20413: 4,-72 + 20414: 3,-62 + 20415: 8,-66 + 20416: 8,-78 + 20476: 10,-32 + 20520: 0,60 + 20534: 45,15 + 20535: 39,3 + 20551: 39,11 + 20585: 35,11 + 20586: 35,8 + 20657: 43,11 + 20743: 49,21 + 20832: 56,15 + 20845: 50,15 + 20846: 50,11 + 20881: 50,3 + 20935: 81,12 + 20946: 76,8 + 20975: 72,5 + 21014: 72,21 + 21064: 68,-5 + 21096: 50,-5 + 21097: 55,-5 + 21113: 46,-1 + 21120: 43,-1 + 21121: 39,-1 + 21173: 43,7 + 21211: 73,-5 + 21238: -20,-28 + 21252: 45,-5 + 21269: 46,-9 + 21421: 20,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2263: -24,40 - 2292: -23,28 - 2320: -27,29 - 2381: -30,37 - 2394: -34,32 - 2786: -5,45 - 2787: -4,44 - 2801: -7,26 - 3315: -32,67 - 3477: -32,88 - 3483: -32,79 - 3508: -14,88 - 3515: -14,79 - 3658: 4,79 - 5132: 29,30 - 5567: -21,-18 - 5801: 7,-6 - 6267: -6,-17 - 6380: 6,-17 - 6381: 6,-17 - 6445: -20,-21 - 6819: -44,8 - 6823: -37,8 - 6824: -38,9 - 6921: -37,18 - 6956: -29,8 - 7073: 20,8 - 8375: 38,-21 - 8624: 55,-31 - 8625: 55,-31 - 8633: 61,-31 - 8882: -3,-36 - 8883: -3,-36 - 9182: -1,-66 - 9241: -9,-82 - 9248: 1,-82 - 9249: 1,-82 - 9305: -3,-62 - 9460: -42,-18 - 10649: 43,-45 - 10650: 43,-45 - 11248: -60,-39 - 11299: -78,-32 - 11300: -78,-28 - 11301: -78,-24 - 11302: -78,-21 - 11853: -42,-56 - 11867: -26,-54 - 11888: -35,-54 - 14415: -45,11 - 15365: -1,-71 - 15401: -43,4 - 15603: 76,0 - 16464: -40,-7 - 16708: -61,-15 - 16827: -61,-4 - 20099: 61,21 + 2261: -24,40 + 2290: -23,28 + 2318: -27,29 + 2379: -30,37 + 2392: -34,32 + 2784: -5,45 + 2785: -4,44 + 2799: -7,26 + 3313: -32,67 + 3475: -32,88 + 3481: -32,79 + 3506: -14,88 + 3513: -14,79 + 3656: 4,79 + 5130: 29,30 + 5565: -21,-18 + 5799: 7,-6 + 6265: -6,-17 + 6378: 6,-17 + 6379: 6,-17 + 6443: -20,-21 + 6817: -44,8 + 6821: -37,8 + 6822: -38,9 + 6919: -37,18 + 6954: -29,8 + 7071: 20,8 + 8373: 38,-21 + 8622: 55,-31 + 8623: 55,-31 + 8631: 61,-31 + 8880: -3,-36 + 8881: -3,-36 + 9180: -1,-66 + 9239: -9,-82 + 9246: 1,-82 + 9247: 1,-82 + 9303: -3,-62 + 9458: -42,-18 + 10647: 43,-45 + 10648: 43,-45 + 11246: -60,-39 + 11297: -78,-32 + 11298: -78,-28 + 11299: -78,-24 + 11300: -78,-21 + 11851: -42,-56 + 11865: -26,-54 + 11886: -35,-54 + 14413: -45,11 + 15363: -1,-71 + 15399: -43,4 + 15601: 76,0 + 16462: -40,-7 + 16706: -61,-15 + 16825: -61,-4 + 20097: 61,21 - node: color: '#00FFFFFF' id: BrickTileSteelEndE decals: - 3735: -24,65 - 3764: -24,59 - 3765: -24,61 - 3766: -24,63 - 10246: 38,-26 + 3733: -24,65 + 3762: -24,59 + 3763: -24,61 + 3764: -24,63 + 10244: 38,-26 - node: color: '#CEDA8BFF' id: BrickTileSteelEndE decals: - 10870: 45,-64 - 10936: 42,-75 - 10937: 39,-75 + 10868: 45,-64 + 10934: 42,-75 + 10935: 39,-75 - node: color: '#DA8B8BFF' id: BrickTileSteelEndE decals: - 19316: 70,9 + 19314: 70,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndE decals: - 21032: 76,25 + 21030: 76,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 7326: 33,12 + 7324: 33,12 - node: color: '#00FFFFFF' id: BrickTileSteelEndN decals: - 10674: 69,-49 + 10672: 69,-49 - node: color: '#A9DA8BFF' id: BrickTileSteelEndN decals: - 2989: -39,50 - 3005: -39,46 + 2987: -39,50 + 3003: -39,46 - node: color: '#DA8B8BFF' id: BrickTileSteelEndN decals: - 19314: 58,9 - 19315: 66,9 + 19312: 58,9 + 19313: 66,9 - node: color: '#00C9DAFF' id: BrickTileSteelEndS decals: - 8131: 27,-18 - 8132: 29,-18 - 8133: 31,-18 - 8134: 31,-18 + 8129: 27,-18 + 8130: 29,-18 + 8131: 31,-18 + 8132: 31,-18 - node: color: '#A9DA8BFF' id: BrickTileSteelEndS decals: - 2990: -39,48 - 3010: -39,45 + 2988: -39,48 + 3008: -39,45 - node: color: '#B18BDAFF' id: BrickTileSteelEndS decals: - 12319: -21,-44 - 12320: -17,-44 + 12317: -21,-44 + 12318: -17,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 7311: 28,8 - 12553: -21,-78 + 7309: 28,8 + 12551: -21,-78 - node: cleanable: True color: '#FFFFFFFF' @@ -6358,2123 +6353,2123 @@ entities: color: '#00FFFFFF' id: BrickTileSteelEndW decals: - 10254: 34,-26 - 10376: 12,-47 - 15782: 76,6 - 15783: 76,4 + 10252: 34,-26 + 10374: 12,-47 + 15780: 76,6 + 15781: 76,4 - node: color: '#B18BDAFF' id: BrickTileSteelEndW decals: - 16163: -67,-46 + 16161: -67,-46 - node: color: '#CEDA8BFF' id: BrickTileSteelEndW decals: - 10938: 38,-75 - 10939: 41,-75 + 10936: 38,-75 + 10937: 41,-75 - node: color: '#DA8B8BFF' id: BrickTileSteelEndW decals: - 19317: 68,9 + 19315: 68,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndW decals: - 21033: 74,25 + 21031: 74,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 2352: -28,39 - 6078: -16,-17 - 6079: -16,-17 - 12554: -19,-78 - 18474: -16,-12 + 2350: -28,39 + 6076: -16,-17 + 6077: -16,-17 + 12552: -19,-78 + 18472: -16,-12 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNe decals: - 8148: 25,-14 - 8151: 22,-15 - 8152: 22,-15 - 8164: 31,-16 + 8146: 25,-14 + 8149: 22,-15 + 8150: 22,-15 + 8162: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNe decals: - 3746: -25,65 - 3752: -26,59 - 3753: -26,61 - 3754: -26,63 - 10250: 37,-26 - 10677: 69,-50 + 3744: -25,65 + 3750: -26,59 + 3751: -26,61 + 3752: -26,63 + 10248: 37,-26 + 10675: 69,-50 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNe decals: - 10081: 32,-23 + 10079: 32,-23 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNe decals: - 12012: -42,-26 - 12013: -38,-26 - 12014: -38,-26 - 12015: -34,-26 - 12016: -34,-26 - 12031: -37,-27 - 12034: -41,-27 + 12010: -42,-26 + 12011: -38,-26 + 12012: -38,-26 + 12013: -34,-26 + 12014: -34,-26 + 12029: -37,-27 + 12032: -41,-27 + 12038: -37,-27 12040: -37,-27 - 12042: -37,-27 - 12043: -33,-27 - 12055: -45,-27 - 12058: -46,-25 - 12125: -29,-44 - 12194: -29,-38 - 12195: -24,-38 - 12355: -17,-40 - 16176: -63,-46 - 16177: -62,-48 - 19814: -6,-41 - 19829: -6,-40 - 19837: -29,-26 + 12041: -33,-27 + 12053: -45,-27 + 12056: -46,-25 + 12123: -29,-44 + 12192: -29,-38 + 12193: -24,-38 + 12353: -17,-40 + 16174: -63,-46 + 16175: -62,-48 + 19812: -6,-41 + 19827: -6,-40 + 19835: -29,-26 - node: color: '#CEDA8BFF' id: BrickTileSteelInnerNe decals: - 10973: 32,-68 + 10971: 32,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNe decals: - 7844: 66,5 - 7845: 69,6 - 7854: 58,5 - 7855: 62,5 + 7842: 66,5 + 7843: 69,6 + 7852: 58,5 + 7853: 62,5 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNe decals: - 20336: -23,2 - 20384: 5,-80 - 20394: 6,-77 - 20395: 6,-75 - 20399: 6,-65 - 20400: 5,-64 - 20451: 7,-58 - 20470: 5,-74 - 20483: 11,-30 - 20490: 14,-31 - 20493: 13,-30 - 20515: 3,64 - 20527: 3,60 - 20574: 40,9 - 20643: 74,9 - 20652: 48,12 - 20653: 47,13 - 20654: 47,13 - 20663: 44,12 - 20677: 48,8 - 20724: 58,31 - 20725: 59,25 - 20770: 51,21 - 20771: 54,21 - 20772: 50,28 - 20773: 55,28 - 20821: 48,16 - 20822: 47,19 - 20826: 47,23 - 20838: 57,19 - 20842: 54,17 - 20858: 52,19 - 20866: 60,12 - 20870: 51,13 - 20879: 48,4 - 20911: 93,21 - 20919: 93,13 - 20942: 83,10 - 20954: 78,9 - 21015: 73,19 - 21024: 76,22 - 21027: 75,23 - 21028: 75,25 - 21037: 93,17 - 21041: 92,23 - 21044: 73,3 - 21045: 74,1 - 21060: 70,-1 - 21064: 67,-1 - 21073: 69,-3 - 21077: 71,-4 - 21086: 47,-3 - 21110: 52,-3 - 21130: 44,0 - 21131: 40,1 - 21157: 36,6 - 21159: 37,4 - 21166: 36,9 - 21168: 37,8 - 21172: 44,8 - 21180: 53,9 - 21182: 55,5 - 21216: 74,-4 - 21283: 56,-3 - 21286: 48,1 - 21312: 58,1 - 21313: 62,1 - 21314: 66,1 - 21428: 21,22 + 20334: -23,2 + 20382: 5,-80 + 20392: 6,-77 + 20393: 6,-75 + 20397: 6,-65 + 20398: 5,-64 + 20449: 7,-58 + 20468: 5,-74 + 20481: 11,-30 + 20488: 14,-31 + 20491: 13,-30 + 20513: 3,64 + 20525: 3,60 + 20572: 40,9 + 20641: 74,9 + 20650: 48,12 + 20651: 47,13 + 20652: 47,13 + 20661: 44,12 + 20675: 48,8 + 20722: 58,31 + 20723: 59,25 + 20768: 51,21 + 20769: 54,21 + 20770: 50,28 + 20771: 55,28 + 20819: 48,16 + 20820: 47,19 + 20824: 47,23 + 20836: 57,19 + 20840: 54,17 + 20856: 52,19 + 20864: 60,12 + 20868: 51,13 + 20877: 48,4 + 20909: 93,21 + 20917: 93,13 + 20940: 83,10 + 20952: 78,9 + 21013: 73,19 + 21022: 76,22 + 21025: 75,23 + 21026: 75,25 + 21035: 93,17 + 21039: 92,23 + 21042: 73,3 + 21043: 74,1 + 21058: 70,-1 + 21062: 67,-1 + 21071: 69,-3 + 21075: 71,-4 + 21084: 47,-3 + 21108: 52,-3 + 21128: 44,0 + 21129: 40,1 + 21155: 36,6 + 21157: 37,4 + 21164: 36,9 + 21166: 37,8 + 21170: 44,8 + 21178: 53,9 + 21180: 55,5 + 21214: 74,-4 + 21281: 56,-3 + 21284: 48,1 + 21310: 58,1 + 21311: 62,1 + 21312: 66,1 + 21426: 21,22 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 2221: -18,53 - 2222: -18,53 - 2242: -17,52 - 2245: -15,50 - 2246: -15,48 - 2250: -15,46 - 2354: -29,38 - 2759: -3,48 - 2760: -6,50 - 2761: -12,50 - 2796: -4,46 - 2824: -30,43 - 2830: -26,41 - 2835: -32,43 - 3064: -17,58 - 3413: -11,69 - 3442: -3,58 - 3458: -29,69 - 3459: -29,77 - 3460: -29,84 - 3463: -29,92 - 3474: -30,96 - 3479: -29,82 - 3494: -12,96 - 3495: -11,92 - 3496: -11,84 - 3497: -11,77 - 3512: -11,82 - 3555: 8,68 - 3637: 7,69 - 3772: 2,58 - 3779: 3,57 - 5122: 31,28 - 5146: 36,30 - 5438: 18,-3 - 5452: -25,6 - 5481: -31,6 - 5490: -42,23 - 5546: -18,-1 - 5621: 11,-8 - 5631: -18,-8 - 5654: 8,-8 - 5791: 12,-4 - 5814: -1,-8 - 5815: -10,-8 - 6102: -11,-19 - 6128: 18,-10 - 6175: -18,-19 - 6273: -4,-16 - 6280: -4,-19 - 6324: 18,-20 - 6347: 2,-14 - 6385: 10,-16 - 6403: 14,-19 - 6418: 8,-19 - 6806: -36,6 - 6807: -36,6 - 6909: -36,16 - 6911: -35,15 - 6939: -26,15 - 6943: -27,15 - 6963: -22,12 - 7036: 18,12 - 7037: 18,18 - 7040: 18,6 - 7082: 22,10 - 7083: 22,6 - 7134: 22,-10 - 7161: 31,1 - 7223: 29,6 - 7228: 32,4 - 8017: 81,-22 - 8267: 31,-12 - 8302: 41,-8 - 8303: 41,-8 - 8314: 33,-8 - 8357: 39,-19 - 8358: 41,-19 - 8359: 41,-19 - 8381: 41,-21 - 8416: 47,-19 - 8437: 52,-19 - 8438: 52,-19 - 8444: 53,-21 - 8490: 56,-20 - 8670: 60,-31 - 8671: 63,-22 - 8672: 63,-19 - 8845: 0,-25 - 8888: 0,-34 - 8951: -8,-28 - 8954: -4,-27 - 8963: -15,-23 - 8964: -15,-23 - 8965: -8,-23 - 8966: -8,-23 - 8985: -16,-27 - 9171: 0,-64 - 9172: 0,-64 - 9179: 2,-66 - 9180: 2,-66 - 9218: -10,-64 - 9290: -9,-69 - 9291: -9,-69 - 9292: -9,-75 - 9328: 0,-58 - 9461: -39,-16 - 9578: 1,-35 - 9638: 0,-39 - 10366: 0,-44 - 10396: 0,-51 - 10582: 2,-75 - 10595: 1,-60 - 10668: 49,-42 - 11261: -59,-34 - 11266: -59,-41 - 11267: -59,-41 - 11310: -77,-31 - 11434: -15,-30 - 11857: -37,-53 - 11871: -24,-50 - 11872: -24,-50 - 13421: -37,-60 - 14956: 16,24 - 14959: 8,24 - 14960: 5,24 - 14963: 0,24 - 14964: -9,24 - 14976: -18,24 - 15411: -41,6 - 15798: 78,2 - 16702: -58,-12 - 16789: -58,-6 - 16849: -52,2 - 16864: -57,-9 - 16865: -57,-7 - 17533: 6,85 - 17537: 7,82 - 17539: 8,81 - 17544: 8,76 - 18485: -14,-12 - 18486: -10,-12 - 18552: 8,-12 - 19925: -24,13 - 20112: 67,26 - 20113: 62,26 - 20320: -18,4 - 20323: -18,-1 - 21378: 18,15 + 2219: -18,53 + 2220: -18,53 + 2240: -17,52 + 2243: -15,50 + 2244: -15,48 + 2248: -15,46 + 2352: -29,38 + 2757: -3,48 + 2758: -6,50 + 2759: -12,50 + 2794: -4,46 + 2822: -30,43 + 2828: -26,41 + 2833: -32,43 + 3062: -17,58 + 3411: -11,69 + 3440: -3,58 + 3456: -29,69 + 3457: -29,77 + 3458: -29,84 + 3461: -29,92 + 3472: -30,96 + 3477: -29,82 + 3492: -12,96 + 3493: -11,92 + 3494: -11,84 + 3495: -11,77 + 3510: -11,82 + 3553: 8,68 + 3635: 7,69 + 3770: 2,58 + 3777: 3,57 + 5120: 31,28 + 5144: 36,30 + 5436: 18,-3 + 5450: -25,6 + 5479: -31,6 + 5488: -42,23 + 5544: -18,-1 + 5619: 11,-8 + 5629: -18,-8 + 5652: 8,-8 + 5789: 12,-4 + 5812: -1,-8 + 5813: -10,-8 + 6100: -11,-19 + 6126: 18,-10 + 6173: -18,-19 + 6271: -4,-16 + 6278: -4,-19 + 6322: 18,-20 + 6345: 2,-14 + 6383: 10,-16 + 6401: 14,-19 + 6416: 8,-19 + 6804: -36,6 + 6805: -36,6 + 6907: -36,16 + 6909: -35,15 + 6937: -26,15 + 6941: -27,15 + 6961: -22,12 + 7034: 18,12 + 7035: 18,18 + 7038: 18,6 + 7080: 22,10 + 7081: 22,6 + 7132: 22,-10 + 7159: 31,1 + 7221: 29,6 + 7226: 32,4 + 8015: 81,-22 + 8265: 31,-12 + 8300: 41,-8 + 8301: 41,-8 + 8312: 33,-8 + 8355: 39,-19 + 8356: 41,-19 + 8357: 41,-19 + 8379: 41,-21 + 8414: 47,-19 + 8435: 52,-19 + 8436: 52,-19 + 8442: 53,-21 + 8488: 56,-20 + 8668: 60,-31 + 8669: 63,-22 + 8670: 63,-19 + 8843: 0,-25 + 8886: 0,-34 + 8949: -8,-28 + 8952: -4,-27 + 8961: -15,-23 + 8962: -15,-23 + 8963: -8,-23 + 8964: -8,-23 + 8983: -16,-27 + 9169: 0,-64 + 9170: 0,-64 + 9177: 2,-66 + 9178: 2,-66 + 9216: -10,-64 + 9288: -9,-69 + 9289: -9,-69 + 9290: -9,-75 + 9326: 0,-58 + 9459: -39,-16 + 9576: 1,-35 + 9636: 0,-39 + 10364: 0,-44 + 10394: 0,-51 + 10580: 2,-75 + 10593: 1,-60 + 10666: 49,-42 + 11259: -59,-34 + 11264: -59,-41 + 11265: -59,-41 + 11308: -77,-31 + 11432: -15,-30 + 11855: -37,-53 + 11869: -24,-50 + 11870: -24,-50 + 13419: -37,-60 + 14954: 16,24 + 14957: 8,24 + 14958: 5,24 + 14961: 0,24 + 14962: -9,24 + 14974: -18,24 + 15409: -41,6 + 15796: 78,2 + 16700: -58,-12 + 16787: -58,-6 + 16847: -52,2 + 16862: -57,-9 + 16863: -57,-7 + 17531: 6,85 + 17535: 7,82 + 17537: 8,81 + 17542: 8,76 + 18483: -14,-12 + 18484: -10,-12 + 18550: 8,-12 + 19923: -24,13 + 20110: 67,26 + 20111: 62,26 + 20318: -18,4 + 20321: -18,-1 + 21376: 18,15 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNw decals: - 8147: 25,-14 - 8150: 24,-15 + 8145: 25,-14 + 8148: 24,-15 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNw decals: - 3745: -25,65 - 10249: 37,-26 - 15789: 77,4 + 3743: -25,65 + 10247: 37,-26 + 15787: 77,4 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNw decals: - 10215: 32,-51 - 10216: 32,-49 - 18463: 17,-31 + 10213: 32,-51 + 10214: 32,-49 + 18461: 17,-31 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNw decals: - 11971: -29,-26 - 11972: -29,-26 - 11984: -31,-27 - 11985: -31,-27 - 12009: -42,-26 - 12010: -38,-26 - 12011: -38,-26 - 12029: -39,-27 - 12030: -35,-27 - 12039: -43,-27 - 12048: -34,-26 - 12057: -46,-25 - 12070: -48,-28 - 12072: -48,-31 - 12076: -47,-23 - 12126: -24,-44 - 12187: -30,-39 - 12192: -29,-38 - 12193: -24,-38 - 16175: -65,-46 - 19813: -9,-41 - 19828: -9,-40 + 11969: -29,-26 + 11970: -29,-26 + 11982: -31,-27 + 11983: -31,-27 + 12007: -42,-26 + 12008: -38,-26 + 12009: -38,-26 + 12027: -39,-27 + 12028: -35,-27 + 12037: -43,-27 + 12046: -34,-26 + 12055: -46,-25 + 12068: -48,-28 + 12070: -48,-31 + 12074: -47,-23 + 12124: -24,-44 + 12185: -30,-39 + 12190: -29,-38 + 12191: -24,-38 + 16173: -65,-46 + 19811: -9,-41 + 19826: -9,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNw decals: - 7842: 69,6 - 7843: 66,5 - 7852: 58,5 - 7853: 62,5 - 19341: 68,5 + 7840: 69,6 + 7841: 66,5 + 7850: 58,5 + 7851: 62,5 + 19339: 68,5 - node: color: '#DAA58BFF' id: BrickTileSteelInnerNw decals: - 4370: 7,31 - 4593: 13,36 + 4368: 7,31 + 4591: 13,36 - node: color: '#DABC8BFF' id: BrickTileSteelInnerNw decals: - 9624: 5,-32 + 9622: 5,-32 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNw decals: - 20335: -23,2 - 20383: 5,-80 - 20401: 5,-64 - 20408: 4,-66 - 20409: 4,-75 - 20438: 8,-75 - 20450: 7,-58 - 20452: 3,-60 - 20463: 8,-65 - 20464: 8,-65 - 20469: 5,-74 - 20482: 11,-30 - 20492: 13,-30 - 20503: 12,30 - 20504: 13,32 - 20513: 0,61 - 20573: 40,9 - 20575: 39,8 - 20629: 73,3 - 20655: 47,13 - 20668: 46,12 - 20678: 46,8 - 20735: 50,31 - 20743: 49,23 - 20768: 54,21 - 20769: 57,21 - 20774: 53,28 - 20775: 58,28 - 20823: 45,20 - 20837: 57,19 - 20841: 56,17 - 20856: 50,16 - 20857: 52,19 - 20867: 50,12 - 20869: 51,13 - 20910: 91,21 - 20918: 91,14 - 20940: 83,10 - 20943: 80,9 - 20953: 76,9 - 20981: 72,-1 - 21005: 71,13 - 21006: 72,13 - 21013: 72,18 - 21014: 73,19 - 21026: 75,23 - 21029: 75,25 - 21039: 91,21 - 21040: 92,23 - 21042: 72,6 - 21048: 72,1 - 21063: 69,-1 - 21074: 69,-3 - 21085: 47,-3 - 21109: 52,-3 - 21118: 46,0 - 21132: 40,1 - 21154: 34,4 - 21155: 36,6 - 21160: 39,4 - 21163: 39,6 - 21165: 36,9 - 21179: 53,9 - 21192: 50,8 - 21197: 50,4 - 21211: 73,-4 - 21224: 76,-4 - 21243: -20,-26 - 21262: 51,-7 - 21274: 46,-8 - 21284: 56,-3 - 21285: 46,5 - 21309: 58,1 - 21310: 62,1 - 21311: 66,1 - 21427: 21,22 + 20333: -23,2 + 20381: 5,-80 + 20399: 5,-64 + 20406: 4,-66 + 20407: 4,-75 + 20436: 8,-75 + 20448: 7,-58 + 20450: 3,-60 + 20461: 8,-65 + 20462: 8,-65 + 20467: 5,-74 + 20480: 11,-30 + 20490: 13,-30 + 20501: 12,30 + 20502: 13,32 + 20511: 0,61 + 20571: 40,9 + 20573: 39,8 + 20627: 73,3 + 20653: 47,13 + 20666: 46,12 + 20676: 46,8 + 20733: 50,31 + 20741: 49,23 + 20766: 54,21 + 20767: 57,21 + 20772: 53,28 + 20773: 58,28 + 20821: 45,20 + 20835: 57,19 + 20839: 56,17 + 20854: 50,16 + 20855: 52,19 + 20865: 50,12 + 20867: 51,13 + 20908: 91,21 + 20916: 91,14 + 20938: 83,10 + 20941: 80,9 + 20951: 76,9 + 20979: 72,-1 + 21003: 71,13 + 21004: 72,13 + 21011: 72,18 + 21012: 73,19 + 21024: 75,23 + 21027: 75,25 + 21037: 91,21 + 21038: 92,23 + 21040: 72,6 + 21046: 72,1 + 21061: 69,-1 + 21072: 69,-3 + 21083: 47,-3 + 21107: 52,-3 + 21116: 46,0 + 21130: 40,1 + 21152: 34,4 + 21153: 36,6 + 21158: 39,4 + 21161: 39,6 + 21163: 36,9 + 21177: 53,9 + 21190: 50,8 + 21195: 50,4 + 21209: 73,-4 + 21222: 76,-4 + 21241: -20,-26 + 21260: 51,-7 + 21272: 46,-8 + 21282: 56,-3 + 21283: 46,5 + 21307: 58,1 + 21308: 62,1 + 21309: 66,1 + 21425: 21,22 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 2223: -20,53 - 2240: -21,52 - 2241: -21,52 - 2255: -23,51 - 2258: -23,48 - 2276: -24,41 - 2277: -23,45 - 2324: -27,30 - 2733: -13,48 - 2766: -6,50 - 2767: -12,50 - 2795: -4,46 - 2803: -7,27 - 2823: -30,43 - 3078: -7,58 - 3318: -31,69 - 3372: -13,69 - 3464: -31,92 - 3465: -31,84 - 3466: -31,77 - 3473: -30,96 - 3478: -31,82 - 3493: -12,96 - 3509: -13,92 - 3510: -13,84 - 3511: -13,82 - 3516: -13,77 - 3552: 5,69 - 3563: -21,55 - 3640: 5,84 - 3656: 5,82 - 3659: 5,77 - 3774: 2,58 - 5121: 31,28 - 5372: 16,-8 - 5436: 16,-4 - 5480: -31,6 - 5489: -42,23 - 5565: -20,-15 - 5620: 10,-8 - 5655: 8,-8 - 5790: 12,-4 - 5813: -1,-8 - 5816: -10,-8 - 6083: -15,-17 - 6101: -13,-19 - 6270: -4,-14 - 6279: -4,-19 - 6308: 16,-19 - 6402: 12,-19 - 6409: 12,-16 - 6419: 8,-19 - 6448: -20,-20 - 6794: -36,6 - 6795: -26,6 - 6796: -26,6 - 6797: -20,12 - 6818: -44,18 - 6908: -36,16 - 6910: -37,15 - 6938: -26,15 - 6942: -25,15 - 6946: -28,15 - 6971: -21,-16 - 6972: -21,-16 - 7081: 22,10 - 7084: 22,6 - 7133: 22,-10 - 7167: 25,-8 - 7222: 29,6 - 7327: 28,11 - 8018: 79,-22 - 8177: 33,-12 - 8178: 33,-10 - 8179: 33,-10 - 8190: 33,-16 - 8356: 39,-19 - 8360: 41,-19 - 8383: 43,-21 - 8422: 46,-19 - 8436: 52,-19 - 8476: 55,-19 - 8479: 55,-21 - 8588: 55,-29 - 8589: 55,-11 - 8669: 58,-31 - 8842: -2,-25 - 8887: -2,-34 - 8952: -12,-28 - 8953: -4,-27 - 8959: -16,-23 - 8960: -16,-23 - 8967: -12,-23 - 8968: -12,-23 - 8969: -5,-23 - 8970: -5,-23 - 8984: -16,-27 - 9170: -2,-64 - 9217: -10,-64 - 9232: -11,-78 - 9233: -11,-78 - 9293: 0,-69 - 9294: 0,-75 - 9295: -5,-75 - 9318: -3,-60 - 9329: -2,-58 - 9643: -11,-66 - 10667: 43,-42 - 11263: -59,-34 - 11264: -59,-41 - 11265: -59,-41 - 11269: -60,-36 - 11273: -60,-43 - 11311: -78,-27 - 11401: -2,-48 - 11405: -2,-40 - 11411: -3,-35 - 11435: -13,-30 - 11870: -24,-50 - 11882: -26,-52 - 12756: -23,39 - 12880: -3,50 - 13375: -44,9 - 13420: -37,-60 - 14406: -44,15 - 14411: -45,14 - 14414: -45,12 - 14957: 14,24 - 14958: 7,24 - 14961: 4,24 - 14962: 0,24 - 14965: -9,24 - 14969: -20,24 - 15797: 78,2 - 15834: 76,1 - 16701: -58,-12 - 16788: -58,-6 - 16848: -53,2 - 16866: -55,-7 - 16867: -61,-7 - 17532: 6,85 - 18483: -14,-12 - 18484: -10,-12 - 18551: 8,-12 - 19558: -43,21 - 19924: -27,13 - 20045: -16,-1 - 20105: 61,25 - 20106: 54,32 - 20108: 62,26 - 20109: 64,26 - 20228: -20,6 - 20237: -20,-2 - 20317: -20,17 - 20318: -20,20 + 2221: -20,53 + 2238: -21,52 + 2239: -21,52 + 2253: -23,51 + 2256: -23,48 + 2274: -24,41 + 2275: -23,45 + 2322: -27,30 + 2731: -13,48 + 2764: -6,50 + 2765: -12,50 + 2793: -4,46 + 2801: -7,27 + 2821: -30,43 + 3076: -7,58 + 3316: -31,69 + 3370: -13,69 + 3462: -31,92 + 3463: -31,84 + 3464: -31,77 + 3471: -30,96 + 3476: -31,82 + 3491: -12,96 + 3507: -13,92 + 3508: -13,84 + 3509: -13,82 + 3514: -13,77 + 3550: 5,69 + 3561: -21,55 + 3638: 5,84 + 3654: 5,82 + 3657: 5,77 + 3772: 2,58 + 5119: 31,28 + 5370: 16,-8 + 5434: 16,-4 + 5478: -31,6 + 5487: -42,23 + 5563: -20,-15 + 5618: 10,-8 + 5653: 8,-8 + 5788: 12,-4 + 5811: -1,-8 + 5814: -10,-8 + 6081: -15,-17 + 6099: -13,-19 + 6268: -4,-14 + 6277: -4,-19 + 6306: 16,-19 + 6400: 12,-19 + 6407: 12,-16 + 6417: 8,-19 + 6446: -20,-20 + 6792: -36,6 + 6793: -26,6 + 6794: -26,6 + 6795: -20,12 + 6816: -44,18 + 6906: -36,16 + 6908: -37,15 + 6936: -26,15 + 6940: -25,15 + 6944: -28,15 + 6969: -21,-16 + 6970: -21,-16 + 7079: 22,10 + 7082: 22,6 + 7131: 22,-10 + 7165: 25,-8 + 7220: 29,6 + 7325: 28,11 + 8016: 79,-22 + 8175: 33,-12 + 8176: 33,-10 + 8177: 33,-10 + 8188: 33,-16 + 8354: 39,-19 + 8358: 41,-19 + 8381: 43,-21 + 8420: 46,-19 + 8434: 52,-19 + 8474: 55,-19 + 8477: 55,-21 + 8586: 55,-29 + 8587: 55,-11 + 8667: 58,-31 + 8840: -2,-25 + 8885: -2,-34 + 8950: -12,-28 + 8951: -4,-27 + 8957: -16,-23 + 8958: -16,-23 + 8965: -12,-23 + 8966: -12,-23 + 8967: -5,-23 + 8968: -5,-23 + 8982: -16,-27 + 9168: -2,-64 + 9215: -10,-64 + 9230: -11,-78 + 9231: -11,-78 + 9291: 0,-69 + 9292: 0,-75 + 9293: -5,-75 + 9316: -3,-60 + 9327: -2,-58 + 9641: -11,-66 + 10665: 43,-42 + 11261: -59,-34 + 11262: -59,-41 + 11263: -59,-41 + 11267: -60,-36 + 11271: -60,-43 + 11309: -78,-27 + 11399: -2,-48 + 11403: -2,-40 + 11409: -3,-35 + 11433: -13,-30 + 11868: -24,-50 + 11880: -26,-52 + 12754: -23,39 + 12878: -3,50 + 13373: -44,9 + 13418: -37,-60 + 14404: -44,15 + 14409: -45,14 + 14412: -45,12 + 14955: 14,24 + 14956: 7,24 + 14959: 4,24 + 14960: 0,24 + 14963: -9,24 + 14967: -20,24 + 15795: 78,2 + 15832: 76,1 + 16699: -58,-12 + 16786: -58,-6 + 16846: -53,2 + 16864: -55,-7 + 16865: -61,-7 + 17530: 6,85 + 18481: -14,-12 + 18482: -10,-12 + 18549: 8,-12 + 19556: -43,21 + 19922: -27,13 + 20043: -16,-1 + 20103: 61,25 + 20104: 54,32 + 20106: 62,26 + 20107: 64,26 + 20226: -20,6 + 20235: -20,-2 + 20315: -20,17 + 20316: -20,20 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 4108: -20,20 - 4111: -20,17 + 4106: -20,20 + 4109: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSe decals: - 8144: 25,-16 - 8145: 27,-16 - 8146: 29,-16 - 8153: 22,-15 - 8154: 22,-15 - 8162: 31,-16 + 8142: 25,-16 + 8143: 27,-16 + 8144: 29,-16 + 8151: 22,-15 + 8152: 22,-15 + 8160: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSe decals: - 3755: -26,65 - 3756: -26,63 - 3757: -26,61 - 3770: -28,60 - 10253: 37,-26 - 15787: 78,4 + 3753: -26,65 + 3754: -26,63 + 3755: -26,61 + 3768: -28,60 + 10251: 37,-26 + 15785: 78,4 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSe decals: - 9807: 21,-32 - 10056: 25,-26 - 10070: 28,-24 - 10082: 32,-23 - 10150: 22,-49 - 10160: 24,-45 - 10180: 24,-45 + 9805: 21,-32 + 10054: 25,-26 + 10068: 28,-24 + 10080: 32,-23 + 10148: 22,-49 + 10158: 24,-45 + 10178: 24,-45 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSe decals: - 11956: -29,-32 - 12020: -42,-30 - 12021: -38,-30 - 12022: -34,-30 - 12023: -37,-29 - 12024: -41,-29 - 12044: -33,-29 - 12054: -45,-29 - 12077: -46,-23 - 12184: -24,-42 - 12185: -29,-42 - 12378: -17,-40 - 19812: -6,-43 + 11954: -29,-32 + 12018: -42,-30 + 12019: -38,-30 + 12020: -34,-30 + 12021: -37,-29 + 12022: -41,-29 + 12042: -33,-29 + 12052: -45,-29 + 12075: -46,-23 + 12182: -24,-42 + 12183: -29,-42 + 12376: -17,-40 + 19810: -6,-43 - node: color: '#CEDA8BFF' id: BrickTileSteelInnerSe decals: - 10972: 32,-68 + 10970: 32,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSe decals: - 7808: 58,3 - 7809: 62,3 - 7810: 66,3 - 7811: 63,4 - 7812: 59,4 - 7821: 70,6 - 7822: 67,5 - 19300: 62,4 - 19301: 58,4 - 19302: 66,4 - 19322: 69,9 + 7806: 58,3 + 7807: 62,3 + 7808: 66,3 + 7809: 63,4 + 7810: 59,4 + 7819: 70,6 + 7820: 67,5 + 19298: 62,4 + 19299: 58,4 + 19300: 66,4 + 19320: 69,9 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSe decals: - 20340: -24,0 - 20350: -46,9 - 20351: -48,8 - 20357: 5,-62 - 20358: 5,-72 - 20359: 5,-78 - 20360: 4,-82 - 20396: 6,-77 - 20397: 6,-75 - 20398: 6,-65 - 20487: 12,-32 - 20489: 14,-31 - 20516: 3,64 - 20526: 2,60 - 20545: 40,3 - 20549: 40,11 - 20555: 40,11 - 20622: 93,21 - 20623: 93,17 - 20642: 74,9 - 20651: 48,12 - 20662: 44,12 - 20675: 48,8 - 20755: 59,25 - 20756: 57,21 - 20759: 52,21 - 20760: 51,28 - 20761: 50,31 - 20762: 52,32 - 20767: 54,28 - 20818: 47,15 - 20819: 48,16 - 20820: 54,17 - 20825: 47,22 - 20839: 57,19 - 20853: 51,15 - 20865: 60,12 - 20872: 53,11 - 20880: 48,4 - 20920: 93,13 - 20934: 83,12 - 20955: 78,9 - 20980: 73,5 - 20991: 70,1 - 21021: 73,21 - 21022: 76,22 - 21031: 75,25 - 21046: 74,1 - 21062: 69,-1 - 21078: 71,-4 - 21079: 65,-1 - 21080: 61,-1 - 21112: 52,-1 - 21113: 47,-1 - 21129: 44,0 - 21148: 35,4 - 21158: 37,6 - 21167: 36,8 - 21170: 36,11 - 21171: 44,8 - 21181: 55,4 - 21215: 74,-4 - 21245: -18,-24 - 21260: 51,-5 - 21281: 56,-1 + 20338: -24,0 + 20348: -46,9 + 20349: -48,8 + 20355: 5,-62 + 20356: 5,-72 + 20357: 5,-78 + 20358: 4,-82 + 20394: 6,-77 + 20395: 6,-75 + 20396: 6,-65 + 20485: 12,-32 + 20487: 14,-31 + 20514: 3,64 + 20524: 2,60 + 20543: 40,3 + 20547: 40,11 + 20553: 40,11 + 20620: 93,21 + 20621: 93,17 + 20640: 74,9 + 20649: 48,12 + 20660: 44,12 + 20673: 48,8 + 20753: 59,25 + 20754: 57,21 + 20757: 52,21 + 20758: 51,28 + 20759: 50,31 + 20760: 52,32 + 20765: 54,28 + 20816: 47,15 + 20817: 48,16 + 20818: 54,17 + 20823: 47,22 + 20837: 57,19 + 20851: 51,15 + 20863: 60,12 + 20870: 53,11 + 20878: 48,4 + 20918: 93,13 + 20932: 83,12 + 20953: 78,9 + 20978: 73,5 + 20989: 70,1 + 21019: 73,21 + 21020: 76,22 + 21029: 75,25 + 21044: 74,1 + 21060: 69,-1 + 21076: 71,-4 + 21077: 65,-1 + 21078: 61,-1 + 21110: 52,-1 + 21111: 47,-1 + 21127: 44,0 + 21146: 35,4 + 21156: 37,6 + 21165: 36,8 + 21168: 36,11 + 21169: 44,8 + 21179: 55,4 + 21213: 74,-4 + 21243: -18,-24 + 21258: 51,-5 + 21279: 56,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 2233: -18,55 - 2247: -15,48 - 2248: -15,50 - 2290: -15,36 - 2322: -25,30 - 2765: -3,51 - 2791: -4,48 - 2831: -30,41 - 2847: -32,44 - 3047: -17,56 - 3057: -1,56 - 3183: -17,67 - 3455: -25,67 - 3456: -30,67 - 3461: -29,84 - 3475: -29,88 - 3485: -29,79 - 3486: -29,77 - 3498: -11,77 - 3499: -11,84 - 3500: -11,88 - 3517: -11,79 - 3544: -3,67 - 3554: 8,68 - 3557: 6,67 - 3771: 2,56 - 3778: 3,57 - 5134: 31,30 - 5140: 35,30 - 5439: 18,-3 - 5462: -23,4 - 5471: -32,4 - 5486: -41,23 - 5545: -18,-1 - 5795: 14,-4 - 5807: 8,-6 - 5808: 11,-6 - 6090: -11,-17 - 6129: 18,-12 - 6274: -4,-16 - 6325: 18,-20 - 6383: 8,-17 - 6386: 10,-16 - 6903: -35,9 - 6904: -36,8 - 6917: -36,18 - 6957: -28,8 - 6958: -25,8 - 6962: -22,11 - 7035: 18,12 - 7038: 18,18 - 7039: 18,4 - 7070: 22,8 - 7140: 22,4 - 7162: 31,1 - 7197: 30,4 - 7227: 32,6 - 7330: 28,12 - 8016: 81,-19 - 8105: 25,-12 - 8266: 31,-10 - 8315: 41,-8 - 8345: 39,-16 - 8346: 39,-16 - 8380: 41,-19 - 8426: 48,-21 - 8427: 44,-21 - 8428: 52,-21 - 8445: 53,-19 - 8491: 56,-21 - 8668: 60,-10 - 8673: 63,-19 - 8674: 63,-22 - 8814: -13,-21 - 8815: -6,-21 - 8816: 0,-21 - 8817: 5,-21 - 8818: 12,-21 - 8844: 0,-26 - 8879: 0,-36 - 8880: 0,-36 - 8948: -15,-23 - 8949: -8,-23 - 8956: -8,-28 - 8957: -4,-28 - 8982: -16,-28 - 9181: 2,-67 - 9193: -8,-65 - 9194: -8,-65 - 9235: -11,-78 - 9296: -9,-71 - 9297: -9,-66 - 9307: 0,-62 - 9308: 0,-62 - 9462: -39,-16 - 9577: 1,-35 - 9639: 0,-39 - 9641: -3,-81 - 10365: 0,-44 - 10395: 0,-51 - 10581: 2,-76 - 10594: 1,-60 - 10655: 49,-42 - 10656: 47,-45 - 10657: 45,-45 - 10827: -4,-82 - 10828: -6,-82 - 10829: -6,-82 - 11308: -77,-31 - 11316: -77,-23 - 11433: -15,-32 - 11842: -39,-56 - 11866: -41,-53 - 13424: -37,-63 - 14473: -18,22 - 14955: 18,24 - 15830: 81,0 - 15831: 81,0 - 15832: 85,0 - 15833: 85,0 - 16732: -58,-10 - 16831: -58,-4 - 16841: -52,8 - 16862: -57,-7 - 16863: -57,-9 - 17540: 8,80 - 17545: 8,75 - 17548: 7,74 - 18441: -60,-43 - 18496: -18,-10 - 18514: -14,-10 - 18515: -10,-10 - 18544: 8,-10 - 19923: -24,10 - 20041: -16,4 - 20101: 70,26 - 20321: -18,4 - 20322: -18,-1 - 21379: 18,14 + 2231: -18,55 + 2245: -15,48 + 2246: -15,50 + 2288: -15,36 + 2320: -25,30 + 2763: -3,51 + 2789: -4,48 + 2829: -30,41 + 2845: -32,44 + 3045: -17,56 + 3055: -1,56 + 3181: -17,67 + 3453: -25,67 + 3454: -30,67 + 3459: -29,84 + 3473: -29,88 + 3483: -29,79 + 3484: -29,77 + 3496: -11,77 + 3497: -11,84 + 3498: -11,88 + 3515: -11,79 + 3542: -3,67 + 3552: 8,68 + 3555: 6,67 + 3769: 2,56 + 3776: 3,57 + 5132: 31,30 + 5138: 35,30 + 5437: 18,-3 + 5460: -23,4 + 5469: -32,4 + 5484: -41,23 + 5543: -18,-1 + 5793: 14,-4 + 5805: 8,-6 + 5806: 11,-6 + 6088: -11,-17 + 6127: 18,-12 + 6272: -4,-16 + 6323: 18,-20 + 6381: 8,-17 + 6384: 10,-16 + 6901: -35,9 + 6902: -36,8 + 6915: -36,18 + 6955: -28,8 + 6956: -25,8 + 6960: -22,11 + 7033: 18,12 + 7036: 18,18 + 7037: 18,4 + 7068: 22,8 + 7138: 22,4 + 7160: 31,1 + 7195: 30,4 + 7225: 32,6 + 7328: 28,12 + 8014: 81,-19 + 8103: 25,-12 + 8264: 31,-10 + 8313: 41,-8 + 8343: 39,-16 + 8344: 39,-16 + 8378: 41,-19 + 8424: 48,-21 + 8425: 44,-21 + 8426: 52,-21 + 8443: 53,-19 + 8489: 56,-21 + 8666: 60,-10 + 8671: 63,-19 + 8672: 63,-22 + 8812: -13,-21 + 8813: -6,-21 + 8814: 0,-21 + 8815: 5,-21 + 8816: 12,-21 + 8842: 0,-26 + 8877: 0,-36 + 8878: 0,-36 + 8946: -15,-23 + 8947: -8,-23 + 8954: -8,-28 + 8955: -4,-28 + 8980: -16,-28 + 9179: 2,-67 + 9191: -8,-65 + 9192: -8,-65 + 9233: -11,-78 + 9294: -9,-71 + 9295: -9,-66 + 9305: 0,-62 + 9306: 0,-62 + 9460: -39,-16 + 9575: 1,-35 + 9637: 0,-39 + 9639: -3,-81 + 10363: 0,-44 + 10393: 0,-51 + 10579: 2,-76 + 10592: 1,-60 + 10653: 49,-42 + 10654: 47,-45 + 10655: 45,-45 + 10825: -4,-82 + 10826: -6,-82 + 10827: -6,-82 + 11306: -77,-31 + 11314: -77,-23 + 11431: -15,-32 + 11840: -39,-56 + 11864: -41,-53 + 13422: -37,-63 + 14471: -18,22 + 14953: 18,24 + 15828: 81,0 + 15829: 81,0 + 15830: 85,0 + 15831: 85,0 + 16730: -58,-10 + 16829: -58,-4 + 16839: -52,8 + 16860: -57,-7 + 16861: -57,-9 + 17538: 8,80 + 17543: 8,75 + 17546: 7,74 + 18439: -60,-43 + 18494: -18,-10 + 18512: -14,-10 + 18513: -10,-10 + 18542: 8,-10 + 19921: -24,10 + 20039: -16,4 + 20099: 70,26 + 20319: -18,4 + 20320: -18,-1 + 21377: 18,14 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSw decals: - 8141: 27,-16 - 8142: 29,-16 - 8143: 31,-16 - 8155: 24,-15 - 8160: 25,-18 - 8161: 32,-11 + 8139: 27,-16 + 8140: 29,-16 + 8141: 31,-16 + 8153: 24,-15 + 8158: 25,-18 + 8159: 32,-11 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSw decals: - 3768: -26,60 - 10251: 37,-26 - 10252: 37,-26 - 15786: 78,4 - 15791: 77,6 + 3766: -26,60 + 10249: 37,-26 + 10250: 37,-26 + 15784: 78,4 + 15789: 77,6 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSw decals: - 9806: 21,-32 - 10055: 25,-26 - 10069: 32,-24 - 10149: 22,-49 - 10159: 20,-45 - 10179: 20,-45 - 10213: 32,-51 - 10214: 32,-49 + 9804: 21,-32 + 10053: 25,-26 + 10067: 32,-24 + 10147: 22,-49 + 10157: 20,-45 + 10177: 20,-45 + 10211: 32,-51 + 10212: 32,-49 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSw decals: - 11954: -29,-32 - 11955: -29,-32 - 11982: -31,-29 - 11983: -31,-29 - 12017: -42,-30 - 12018: -38,-30 - 12019: -34,-30 - 12025: -39,-29 - 12026: -35,-29 - 12038: -43,-29 - 12069: -48,-28 - 12071: -48,-25 - 12078: -46,-23 - 12183: -24,-42 - 12186: -29,-42 - 12188: -30,-39 - 16178: -66,-46 - 19811: -9,-43 + 11952: -29,-32 + 11953: -29,-32 + 11980: -31,-29 + 11981: -31,-29 + 12015: -42,-30 + 12016: -38,-30 + 12017: -34,-30 + 12023: -39,-29 + 12024: -35,-29 + 12036: -43,-29 + 12067: -48,-28 + 12069: -48,-25 + 12076: -46,-23 + 12181: -24,-42 + 12184: -29,-42 + 12186: -30,-39 + 16176: -66,-46 + 19809: -9,-43 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSw decals: - 7805: 58,3 - 7806: 62,3 - 7807: 66,3 - 7813: 65,4 - 7814: 57,4 - 7815: 61,4 - 19297: 62,4 - 19298: 58,4 - 19299: 66,4 - 19321: 69,9 + 7803: 58,3 + 7804: 62,3 + 7805: 66,3 + 7811: 65,4 + 7812: 57,4 + 7813: 61,4 + 19295: 62,4 + 19296: 58,4 + 19297: 66,4 + 19319: 69,9 - node: color: '#DA8BC9FF' id: BrickTileSteelInnerSw decals: - 3934: 19,62 + 3932: 19,62 - node: color: '#DAA58BFF' id: BrickTileSteelInnerSw decals: - 4604: 20,34 + 4602: 20,34 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSw decals: - 20353: -48,9 - 20354: 5,-72 - 20355: 5,-78 - 20356: 5,-62 - 20406: 4,-76 - 20407: 4,-67 - 20453: 3,-60 - 20462: 8,-65 - 20471: 8,-77 - 20472: 8,-77 - 20473: 12,-32 - 20514: 0,61 - 20525: 2,60 - 20544: 40,3 - 20548: 40,11 - 20554: 40,11 - 20576: 39,8 - 20666: 46,12 - 20667: 46,12 - 20679: 46,8 - 20702: 46,3 - 20703: 39,4 - 20744: 49,22 - 20757: 57,21 - 20758: 52,21 - 20763: 56,32 - 20764: 58,31 - 20765: 57,28 - 20766: 54,28 - 20817: 47,15 - 20824: 45,20 - 20840: 56,17 - 20851: 50,16 - 20852: 51,15 - 20868: 50,12 - 20871: 53,11 - 20909: 91,21 - 20935: 83,12 - 20956: 76,9 - 20974: 72,18 - 20975: 72,13 - 20976: 73,5 - 21020: 73,21 - 21030: 75,25 - 21038: 91,21 - 21043: 72,6 - 21047: 72,1 - 21061: 69,-1 - 21065: 69,1 - 21111: 52,-1 - 21114: 47,-1 - 21119: 46,0 - 21147: 35,4 - 21156: 34,6 - 21161: 39,6 - 21164: 36,8 - 21169: 36,11 - 21190: 50,4 - 21191: 50,8 - 21198: 61,-1 - 21199: 65,-1 - 21212: 73,-4 - 21244: -20,-26 - 21259: 51,-5 - 21275: 46,-8 - 21280: 56,-1 + 20351: -48,9 + 20352: 5,-72 + 20353: 5,-78 + 20354: 5,-62 + 20404: 4,-76 + 20405: 4,-67 + 20451: 3,-60 + 20460: 8,-65 + 20469: 8,-77 + 20470: 8,-77 + 20471: 12,-32 + 20512: 0,61 + 20523: 2,60 + 20542: 40,3 + 20546: 40,11 + 20552: 40,11 + 20574: 39,8 + 20664: 46,12 + 20665: 46,12 + 20677: 46,8 + 20700: 46,3 + 20701: 39,4 + 20742: 49,22 + 20755: 57,21 + 20756: 52,21 + 20761: 56,32 + 20762: 58,31 + 20763: 57,28 + 20764: 54,28 + 20815: 47,15 + 20822: 45,20 + 20838: 56,17 + 20849: 50,16 + 20850: 51,15 + 20866: 50,12 + 20869: 53,11 + 20907: 91,21 + 20933: 83,12 + 20954: 76,9 + 20972: 72,18 + 20973: 72,13 + 20974: 73,5 + 21018: 73,21 + 21028: 75,25 + 21036: 91,21 + 21041: 72,6 + 21045: 72,1 + 21059: 69,-1 + 21063: 69,1 + 21109: 52,-1 + 21112: 47,-1 + 21117: 46,0 + 21145: 35,4 + 21154: 34,6 + 21159: 39,6 + 21162: 36,8 + 21167: 36,11 + 21188: 50,4 + 21189: 50,8 + 21196: 61,-1 + 21197: 65,-1 + 21210: 73,-4 + 21242: -20,-26 + 21257: 51,-5 + 21273: 46,-8 + 21278: 56,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2257: -23,50 - 2261: -23,47 - 2262: -23,47 - 2264: -24,41 - 2298: -21,28 - 2300: -20,26 - 2311: -23,30 - 2312: -23,40 - 2323: -27,30 - 2326: -27,32 - 2353: -27,39 - 2480: -14,36 - 2732: -13,50 - 2792: -4,48 - 2797: -4,45 - 2802: -7,27 - 2840: -30,40 - 3048: -20,55 - 3055: -1,56 - 3058: 1,56 - 3182: -7,67 - 3434: -21,67 - 3454: -25,67 - 3457: -30,67 - 3467: -31,77 - 3468: -31,79 - 3469: -31,84 - 3470: -31,88 - 3487: -13,77 - 3488: -13,79 - 3489: -13,84 - 3490: -13,88 - 3556: 6,67 - 3639: 5,84 - 3657: 5,79 - 3660: 5,77 - 5133: 31,30 - 5139: 35,30 - 5437: 16,-4 - 5461: -23,4 - 5470: -33,4 - 5805: 10,-6 - 5806: 8,-6 - 6089: -13,-17 - 6276: -4,-17 - 6384: 8,-17 - 6407: 12,-16 - 6446: -20,-20 - 6447: -20,-20 - 6454: -20,-18 - 6798: -20,11 - 6816: -43,23 - 6817: -44,18 - 6902: -37,9 - 6905: -36,8 - 6916: -36,18 - 6955: -28,8 - 6959: -26,8 - 6973: -21,-17 - 7069: 22,8 - 7139: 22,4 - 7168: 25,-8 - 7196: 30,4 - 7328: 28,11 - 8015: 79,-19 - 8104: 25,-12 - 8173: 33,-12 - 8174: 33,-12 - 8175: 33,-10 - 8176: 33,-10 - 8344: 41,-16 - 8347: 39,-16 - 8348: 39,-16 - 8382: 43,-19 - 8423: 44,-21 - 8424: 48,-21 - 8425: 52,-21 - 8475: 55,-21 - 8477: 55,-19 - 8478: 55,-19 - 8587: 55,-29 - 8590: 55,-11 - 8591: 55,-11 - 8667: 58,-10 - 8809: 4,-21 - 8810: 11,-21 - 8811: -7,-21 - 8812: -2,-21 - 8813: -14,-21 - 8843: -2,-26 - 8878: -2,-36 - 8950: -12,-23 - 8955: -4,-28 - 8958: -12,-28 - 8961: -16,-23 - 8962: -16,-23 - 8971: -5,-23 - 8972: -5,-23 - 8983: -16,-28 - 9195: -1,-65 - 9234: -11,-78 - 9298: 0,-71 - 9299: 0,-66 - 9306: -2,-62 - 9319: -3,-60 - 9640: 1,-81 - 9642: -11,-67 - 10658: 43,-42 - 10659: 43,-42 - 10660: 45,-45 - 10661: 47,-45 - 10662: 47,-45 - 10824: 2,-82 - 10825: -4,-82 - 10826: -4,-82 - 10830: -6,-82 - 10831: -9,-78 - 11270: -60,-36 - 11271: -60,-36 - 11272: -60,-43 - 11312: -78,-27 - 11400: -2,-48 - 11404: -2,-41 - 11410: -3,-35 - 11432: -13,-32 - 11883: -26,-53 - 13374: -44,9 - 13423: -37,-63 - 14412: -45,14 - 14413: -45,12 - 14416: -44,11 - 15048: 16,22 - 15421: -43,8 - 15826: 76,1 - 15827: 81,0 - 15828: 85,0 - 15829: 89,0 - 16408: -60,-48 - 16731: -58,-10 - 16830: -58,-4 - 16840: -53,8 - 16868: -55,-7 - 16869: -55,-9 - 18473: -15,-12 - 18516: -14,-10 - 18517: -10,-10 - 18518: 16,-10 - 18543: 8,-10 - 19922: -27,10 - 20043: -16,4 - 20104: 61,25 - 20218: -20,17 - 20219: -20,11 - 20220: -20,4 - 20221: -20,-3 - 20316: -20,17 - 20319: -20,20 + 2255: -23,50 + 2259: -23,47 + 2260: -23,47 + 2262: -24,41 + 2296: -21,28 + 2298: -20,26 + 2309: -23,30 + 2310: -23,40 + 2321: -27,30 + 2324: -27,32 + 2351: -27,39 + 2478: -14,36 + 2730: -13,50 + 2790: -4,48 + 2795: -4,45 + 2800: -7,27 + 2838: -30,40 + 3046: -20,55 + 3053: -1,56 + 3056: 1,56 + 3180: -7,67 + 3432: -21,67 + 3452: -25,67 + 3455: -30,67 + 3465: -31,77 + 3466: -31,79 + 3467: -31,84 + 3468: -31,88 + 3485: -13,77 + 3486: -13,79 + 3487: -13,84 + 3488: -13,88 + 3554: 6,67 + 3637: 5,84 + 3655: 5,79 + 3658: 5,77 + 5131: 31,30 + 5137: 35,30 + 5435: 16,-4 + 5459: -23,4 + 5468: -33,4 + 5803: 10,-6 + 5804: 8,-6 + 6087: -13,-17 + 6274: -4,-17 + 6382: 8,-17 + 6405: 12,-16 + 6444: -20,-20 + 6445: -20,-20 + 6452: -20,-18 + 6796: -20,11 + 6814: -43,23 + 6815: -44,18 + 6900: -37,9 + 6903: -36,8 + 6914: -36,18 + 6953: -28,8 + 6957: -26,8 + 6971: -21,-17 + 7067: 22,8 + 7137: 22,4 + 7166: 25,-8 + 7194: 30,4 + 7326: 28,11 + 8013: 79,-19 + 8102: 25,-12 + 8171: 33,-12 + 8172: 33,-12 + 8173: 33,-10 + 8174: 33,-10 + 8342: 41,-16 + 8345: 39,-16 + 8346: 39,-16 + 8380: 43,-19 + 8421: 44,-21 + 8422: 48,-21 + 8423: 52,-21 + 8473: 55,-21 + 8475: 55,-19 + 8476: 55,-19 + 8585: 55,-29 + 8588: 55,-11 + 8589: 55,-11 + 8665: 58,-10 + 8807: 4,-21 + 8808: 11,-21 + 8809: -7,-21 + 8810: -2,-21 + 8811: -14,-21 + 8841: -2,-26 + 8876: -2,-36 + 8948: -12,-23 + 8953: -4,-28 + 8956: -12,-28 + 8959: -16,-23 + 8960: -16,-23 + 8969: -5,-23 + 8970: -5,-23 + 8981: -16,-28 + 9193: -1,-65 + 9232: -11,-78 + 9296: 0,-71 + 9297: 0,-66 + 9304: -2,-62 + 9317: -3,-60 + 9638: 1,-81 + 9640: -11,-67 + 10656: 43,-42 + 10657: 43,-42 + 10658: 45,-45 + 10659: 47,-45 + 10660: 47,-45 + 10822: 2,-82 + 10823: -4,-82 + 10824: -4,-82 + 10828: -6,-82 + 10829: -9,-78 + 11268: -60,-36 + 11269: -60,-36 + 11270: -60,-43 + 11310: -78,-27 + 11398: -2,-48 + 11402: -2,-41 + 11408: -3,-35 + 11430: -13,-32 + 11881: -26,-53 + 13372: -44,9 + 13421: -37,-63 + 14410: -45,14 + 14411: -45,12 + 14414: -44,11 + 15046: 16,22 + 15419: -43,8 + 15824: 76,1 + 15825: 81,0 + 15826: 85,0 + 15827: 89,0 + 16406: -60,-48 + 16729: -58,-10 + 16828: -58,-4 + 16838: -53,8 + 16866: -55,-7 + 16867: -55,-9 + 18471: -15,-12 + 18514: -14,-10 + 18515: -10,-10 + 18516: 16,-10 + 18541: 8,-10 + 19920: -27,10 + 20041: -16,4 + 20102: 61,25 + 20216: -20,17 + 20217: -20,11 + 20218: -20,4 + 20219: -20,-3 + 20314: -20,17 + 20317: -20,20 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 4109: -20,20 - 4110: -20,17 + 4107: -20,20 + 4108: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelLineE decals: - 8125: 25,-18 - 8126: 25,-17 - 8157: 23,-15 - 8163: 31,-15 + 8123: 25,-18 + 8124: 25,-17 + 8155: 23,-15 + 8161: 31,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineE decals: - 3748: -26,64 - 3749: -26,62 - 3750: -26,60 - 3761: -25,63 - 3762: -25,61 - 3763: -25,59 - 10256: 35,-26 - 15795: 79,5 + 3746: -26,64 + 3747: -26,62 + 3748: -26,60 + 3759: -25,63 + 3760: -25,61 + 3761: -25,59 + 10254: 35,-26 + 15793: 79,5 - node: color: '#334E6DFF' id: BrickTileSteelLineE decals: + 21318: -18,13 + 21319: -18,12 21320: -18,13 - 21321: -18,12 - 21322: -18,13 - 21323: -18,13 + 21321: -18,13 - node: color: '#8BC9DAFF' id: BrickTileSteelLineE decals: + 3684: 4,64 3686: 4,64 3688: 4,64 - 3690: 4,64 - 3926: 21,61 - 3955: 21,61 + 3924: 21,61 + 3953: 21,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineE decals: - 9954: 29,-44 - 10064: 31,-24 - 10065: 31,-24 - 10074: 32,-24 - 10161: 24,-47 - 10162: 24,-48 - 10210: 31,-49 - 10211: 31,-51 - 10212: 31,-51 - 10222: 34,-52 - 10223: 34,-51 - 10224: 34,-50 - 10225: 34,-49 - 10226: 34,-48 + 9952: 29,-44 + 10062: 31,-24 + 10063: 31,-24 + 10072: 32,-24 + 10159: 24,-47 + 10160: 24,-48 + 10208: 31,-49 + 10209: 31,-51 + 10210: 31,-51 + 10220: 34,-52 + 10221: 34,-51 + 10222: 34,-50 + 10223: 34,-49 + 10224: 34,-48 - node: color: '#96A4EBFF' id: BrickTileSteelLineE decals: - 21315: -18,13 + 21313: -18,13 - node: color: '#A9DA8BFF' id: BrickTileSteelLineE decals: - 2991: -39,49 + 2989: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineE decals: - 11563: -21,-34 - 11564: -21,-35 - 11565: -21,-36 - 11961: -26,-31 - 11962: -26,-31 - 11963: -26,-30 - 11964: -26,-30 - 11965: -26,-29 - 11966: -26,-28 - 11967: -26,-27 - 11975: -32,-27 - 11976: -32,-28 - 11977: -32,-29 - 12035: -44,-27 - 12036: -44,-28 - 12037: -44,-29 - 12052: -45,-26 - 12053: -45,-30 - 12068: -49,-28 - 12081: -48,-23 - 12118: -24,-46 - 12119: -24,-45 - 12120: -24,-44 - 12167: -28,-41 - 12168: -28,-40 - 12169: -28,-39 - 12170: -23,-41 - 12171: -23,-40 - 12172: -23,-39 - 12189: -31,-39 - 12346: -17,-43 - 12347: -17,-42 - 12348: -17,-41 - 12354: -17,-39 - 16169: -62,-47 - 19807: -10,-43 - 19808: -10,-42 - 19809: -10,-41 - 19810: -10,-41 - 19821: -10,-40 + 11561: -21,-34 + 11562: -21,-35 + 11563: -21,-36 + 11959: -26,-31 + 11960: -26,-31 + 11961: -26,-30 + 11962: -26,-30 + 11963: -26,-29 + 11964: -26,-28 + 11965: -26,-27 + 11973: -32,-27 + 11974: -32,-28 + 11975: -32,-29 + 12033: -44,-27 + 12034: -44,-28 + 12035: -44,-29 + 12050: -45,-26 + 12051: -45,-30 + 12066: -49,-28 + 12079: -48,-23 + 12116: -24,-46 + 12117: -24,-45 + 12118: -24,-44 + 12165: -28,-41 + 12166: -28,-40 + 12167: -28,-39 + 12168: -23,-41 + 12169: -23,-40 + 12170: -23,-39 + 12187: -31,-39 + 12344: -17,-43 + 12345: -17,-42 + 12346: -17,-41 + 12352: -17,-39 + 16167: -62,-47 + 19805: -10,-43 + 19806: -10,-42 + 19807: -10,-41 + 19808: -10,-41 + 19819: -10,-40 - node: color: '#CEDA8BFF' id: BrickTileSteelLineE decals: - 10969: 32,-69 - 10970: 32,-67 + 10967: 32,-69 + 10968: 32,-67 - node: color: '#DA8B8BFF' id: BrickTileSteelLineE decals: - 7816: 67,4 - 7823: 64,4 - 7824: 64,5 - 7829: 56,4 - 7830: 56,5 - 7831: 60,4 - 7832: 60,5 - 19286: 58,3 - 19293: 66,3 - 19294: 62,3 - 19319: 69,8 - 19324: 66,8 - 19325: 66,7 - 19330: 62,7 - 19331: 62,8 - 19332: 62,9 - 19338: 58,7 - 19339: 58,8 + 7814: 67,4 + 7821: 64,4 + 7822: 64,5 + 7827: 56,4 + 7828: 56,5 + 7829: 60,4 + 7830: 60,5 + 19284: 58,3 + 19291: 66,3 + 19292: 62,3 + 19317: 69,8 + 19322: 66,8 + 19323: 66,7 + 19328: 62,7 + 19329: 62,8 + 19330: 62,9 + 19336: 58,7 + 19337: 58,8 - node: color: '#DA8BC9FF' id: BrickTileSteelLineE decals: - 3824: 9,68 - 3933: 21,62 + 3822: 9,68 + 3931: 21,62 - node: color: '#DABC8BFF' id: BrickTileSteelLineE decals: - 3704: 9,75 - 3705: 9,76 - 3706: 9,80 - 3707: 9,81 + 3702: 9,75 + 3703: 9,76 + 3704: 9,80 + 3705: 9,81 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 20331: -22,1 - 20346: -49,9 - 20373: 4,-86 - 20374: 4,-85 - 20375: 4,-84 - 20386: 6,-81 - 20402: 3,-66 - 20403: 3,-67 - 20404: 3,-75 - 20405: 3,-76 - 20430: 7,-77 - 20431: 7,-75 - 20434: 6,-76 - 20439: 6,-71 - 20440: 6,-70 - 20441: 6,-69 - 20442: 6,-68 - 20443: 6,-67 - 20444: 6,-66 - 20445: 9,-65 - 20446: 8,-61 - 20447: 8,-60 - 20448: 8,-59 - 20454: 2,-60 - 20497: 11,30 - 20498: 13,31 - 20499: 13,32 - 20507: -1,61 - 20517: 3,63 - 20518: 3,62 - 20519: 3,61 - 20556: 41,12 - 20567: 41,6 - 20568: 41,7 - 20569: 41,8 - 20577: 38,8 - 20608: 74,10 - 20609: 74,11 - 20610: 74,12 - 20611: 74,13 - 20612: 74,14 - 20613: 74,15 - 20614: 74,16 - 20615: 74,17 - 20616: 74,18 - 20617: 93,14 - 20618: 93,19 - 20619: 93,19 - 20620: 93,20 - 20621: 93,18 - 20624: 93,16 - 20638: 75,9 - 20639: 79,9 - 20644: 48,2 - 20645: 48,3 - 20646: 48,5 - 20647: 48,6 - 20648: 48,6 - 20649: 48,7 - 20650: 48,11 - 20665: 45,12 - 20674: 48,9 - 20680: 45,8 - 20704: 38,4 - 20705: 38,6 - 20706: 48,17 - 20707: 48,18 - 20708: 54,18 - 20709: 59,22 - 20710: 59,23 - 20711: 59,24 - 20712: 59,27 - 20713: 59,28 - 20714: 59,29 - 20715: 59,30 - 20716: 59,26 - 20729: 48,23 - 20730: 48,22 - 20777: 49,16 - 20782: 49,12 - 20827: 47,21 - 20828: 47,20 - 20829: 57,18 - 20830: 57,17 - 20831: 57,16 - 20832: 57,16 - 20843: 54,16 - 20875: 49,8 - 20878: 49,4 - 20906: 93,22 - 20908: 90,21 - 20944: 79,9 - 20947: 75,9 - 20957: 74,8 - 20958: 74,7 - 20959: 74,6 - 20960: 74,6 - 20982: 71,-1 - 20987: 67,0 - 20990: 70,0 - 21000: 49,-1 - 21001: 49,0 - 21002: 49,1 - 21003: 71,6 - 21004: 71,13 - 21008: 71,13 - 21009: 71,18 - 21056: 68,1 - 21057: 68,-1 - 21058: 71,1 - 21059: 71,-1 - 21091: 48,-4 - 21092: 53,-4 - 21108: 58,-4 - 21120: 45,0 - 21136: 41,0 - 21137: 33,6 - 21138: 33,4 - 21139: 38,4 - 21140: 38,6 - 21150: 37,5 - 21183: 55,6 - 21184: 55,7 - 21185: 55,8 - 21200: 44,20 - 21201: 49,16 - 21202: 55,17 - 21210: 72,-4 - 21219: 75,-4 - 21222: 77,-3 - 21225: 75,-4 - 21227: 72,-4 - 21231: -21,-26 - 21235: -18,-25 - 21236: -18,-26 - 21237: -18,-26 - 21238: -18,-27 - 21263: 51,-7 - 21264: 51,-8 - 21272: 45,-8 - 21288: 74,2 - 21289: 74,0 + 20329: -22,1 + 20344: -49,9 + 20371: 4,-86 + 20372: 4,-85 + 20373: 4,-84 + 20384: 6,-81 + 20400: 3,-66 + 20401: 3,-67 + 20402: 3,-75 + 20403: 3,-76 + 20428: 7,-77 + 20429: 7,-75 + 20432: 6,-76 + 20437: 6,-71 + 20438: 6,-70 + 20439: 6,-69 + 20440: 6,-68 + 20441: 6,-67 + 20442: 6,-66 + 20443: 9,-65 + 20444: 8,-61 + 20445: 8,-60 + 20446: 8,-59 + 20452: 2,-60 + 20495: 11,30 + 20496: 13,31 + 20497: 13,32 + 20505: -1,61 + 20515: 3,63 + 20516: 3,62 + 20517: 3,61 + 20554: 41,12 + 20565: 41,6 + 20566: 41,7 + 20567: 41,8 + 20575: 38,8 + 20606: 74,10 + 20607: 74,11 + 20608: 74,12 + 20609: 74,13 + 20610: 74,14 + 20611: 74,15 + 20612: 74,16 + 20613: 74,17 + 20614: 74,18 + 20615: 93,14 + 20616: 93,19 + 20617: 93,19 + 20618: 93,20 + 20619: 93,18 + 20622: 93,16 + 20636: 75,9 + 20637: 79,9 + 20642: 48,2 + 20643: 48,3 + 20644: 48,5 + 20645: 48,6 + 20646: 48,6 + 20647: 48,7 + 20648: 48,11 + 20663: 45,12 + 20672: 48,9 + 20678: 45,8 + 20702: 38,4 + 20703: 38,6 + 20704: 48,17 + 20705: 48,18 + 20706: 54,18 + 20707: 59,22 + 20708: 59,23 + 20709: 59,24 + 20710: 59,27 + 20711: 59,28 + 20712: 59,29 + 20713: 59,30 + 20714: 59,26 + 20727: 48,23 + 20728: 48,22 + 20775: 49,16 + 20780: 49,12 + 20825: 47,21 + 20826: 47,20 + 20827: 57,18 + 20828: 57,17 + 20829: 57,16 + 20830: 57,16 + 20841: 54,16 + 20873: 49,8 + 20876: 49,4 + 20904: 93,22 + 20906: 90,21 + 20942: 79,9 + 20945: 75,9 + 20955: 74,8 + 20956: 74,7 + 20957: 74,6 + 20958: 74,6 + 20980: 71,-1 + 20985: 67,0 + 20988: 70,0 + 20998: 49,-1 + 20999: 49,0 + 21000: 49,1 + 21001: 71,6 + 21002: 71,13 + 21006: 71,13 + 21007: 71,18 + 21054: 68,1 + 21055: 68,-1 + 21056: 71,1 + 21057: 71,-1 + 21089: 48,-4 + 21090: 53,-4 + 21106: 58,-4 + 21118: 45,0 + 21134: 41,0 + 21135: 33,6 + 21136: 33,4 + 21137: 38,4 + 21138: 38,6 + 21148: 37,5 + 21181: 55,6 + 21182: 55,7 + 21183: 55,8 + 21198: 44,20 + 21199: 49,16 + 21200: 55,17 + 21208: 72,-4 + 21217: 75,-4 + 21220: 77,-3 + 21223: 75,-4 + 21225: 72,-4 + 21229: -21,-26 + 21233: -18,-25 + 21234: -18,-26 + 21235: -18,-26 + 21236: -18,-27 + 21261: 51,-7 + 21262: 51,-8 + 21270: 45,-8 + 21286: 74,2 + 21287: 74,0 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2243: -15,51 - 2244: -15,49 - 2249: -15,47 - 2275: -25,41 - 2289: -15,35 - 2301: -24,39 - 2302: -24,38 - 2303: -24,37 - 2304: -24,36 - 2305: -24,35 - 2306: -24,34 - 2307: -24,33 - 2308: -24,32 - 2309: -24,31 - 2310: -24,30 - 2328: -28,30 - 2344: -28,32 - 2345: -28,33 - 2346: -28,34 - 2347: -28,35 - 2348: -28,36 - 2349: -28,37 - 2350: -28,38 - 2734: -14,48 - 2735: -14,50 - 2756: -3,50 - 2757: -3,49 - 2783: -2,45 - 2804: -8,27 - 2806: -5,27 - 2818: -26,42 - 2839: -30,40 - 2860: -24,50 - 2861: -24,51 - 2862: -24,48 - 2863: -24,47 - 3163: -17,59 - 3164: -17,60 - 3165: -17,61 - 3166: -17,62 - 3167: -17,63 - 3168: -17,64 - 3169: -17,64 - 3170: -17,65 - 3171: -17,66 - 3336: -29,93 - 3337: -29,94 - 3338: -29,95 - 3339: -28,91 - 3340: -28,90 - 3341: -28,89 - 3342: -29,87 - 3343: -29,86 - 3344: -29,85 - 3345: -29,83 - 3346: -28,81 - 3347: -28,80 - 3348: -29,78 - 3349: -29,76 - 3350: -29,75 - 3351: -29,74 - 3352: -29,73 - 3353: -29,72 - 3354: -29,71 - 3355: -29,70 - 3393: -11,93 - 3394: -11,94 - 3395: -11,95 - 3396: -10,91 - 3397: -10,90 - 3398: -10,89 - 3399: -11,86 - 3400: -11,85 - 3401: -11,87 - 3402: -11,83 - 3403: -10,81 - 3404: -10,80 - 3405: -11,78 - 3406: -11,76 - 3407: -11,75 - 3408: -11,74 - 3409: -11,73 - 3410: -11,72 - 3411: -11,71 - 3412: -11,70 - 3443: -3,59 - 3444: -3,63 - 3445: -3,64 - 3446: -3,62 - 3447: -3,62 - 3448: -3,61 - 3451: -3,66 - 3502: -10,89 - 3503: -10,90 - 3504: -10,91 - 3568: -14,77 - 3570: -10,77 - 3572: -16,77 - 3578: -14,84 - 3579: -16,84 - 3580: -10,84 - 3591: -32,84 - 3592: -28,84 - 3594: -34,84 - 3599: -28,77 - 3600: -32,77 - 3601: -34,77 - 3609: 5,72 - 3610: 5,73 - 3611: 5,74 - 3612: 5,75 - 3634: 7,73 - 3635: 7,72 - 3636: 7,71 - 3638: 7,70 - 3662: 4,77 - 3663: 2,77 - 3664: 4,84 - 3666: 2,84 - 3726: -22,55 - 4169: -21,20 - 4311: 15,14 - 4312: 15,15 - 4342: 18,20 - 4343: 18,20 - 4344: 18,19 - 4345: 18,17 - 4346: 18,16 - 4347: 18,13 - 4348: 18,11 - 4349: 18,10 - 4350: 18,9 - 4351: 18,8 - 4352: 18,7 - 4353: 18,3 - 4354: 18,2 - 4355: 18,1 - 4356: 18,0 - 4357: 18,-1 - 4358: 18,-2 - 4359: 18,-4 - 4360: 18,-5 - 4361: 18,-6 - 4362: 18,-7 - 4363: 18,-8 - 4364: 18,-9 - 5110: 30,28 - 5111: 30,27 - 5112: 30,26 - 5117: 33,28 - 5118: 33,27 - 5119: 33,26 - 5124: 28,31 - 5143: 36,31 - 5226: 18,-6 - 5272: -29,82 - 5273: -29,81 - 5274: -29,81 - 5275: -29,79 - 5276: -29,80 - 5290: -29,92 - 5291: -29,91 - 5292: -29,90 - 5293: -29,90 - 5294: -29,89 - 5295: -29,89 - 5296: -29,88 - 5297: -29,88 - 5298: -11,79 - 5299: -11,80 - 5300: -11,81 - 5301: -11,82 - 5302: -11,82 - 5315: -11,92 - 5316: -11,91 - 5317: -11,91 - 5318: -11,90 - 5319: -11,90 - 5320: -11,89 - 5321: -11,88 - 5322: -11,87 - 5393: -18,-7 - 5483: -41,11 - 5484: -41,15 - 5485: -41,22 - 5619: 15,-8 - 5629: -17,-8 - 5632: -18,-11 - 5633: -18,-11 - 5634: -18,-12 - 5635: -18,-13 - 5636: -18,-13 - 5637: -18,-15 - 5638: -18,-14 - 5639: -18,-16 - 5640: -18,-16 - 5641: -18,-17 - 5642: -18,-18 - 5657: 15,-4 - 5796: 14,-5 - 6084: -9,-16 - 6085: -9,-15 - 6086: -9,-14 - 6087: -9,-13 - 6157: -17,-21 - 6158: -17,-20 - 6159: -17,-19 - 6173: -17,-19 - 6271: -4,-14 - 6272: -4,-15 - 6275: -4,-17 - 6284: -3,-21 - 6285: -3,-20 - 6286: -3,-19 - 6287: 1,-19 - 6288: 1,-20 - 6289: 1,-21 - 6302: 15,-21 - 6303: 15,-20 - 6304: 15,-19 - 6309: 18,-13 - 6310: 18,-14 - 6311: 18,-15 - 6312: 18,-16 - 6313: 18,-17 - 6314: 18,-18 - 6315: 18,-19 - 6316: 18,-21 - 6342: 4,-16 - 6343: 4,-15 - 6373: 10,-12 - 6374: 10,-13 - 6375: 10,-14 - 6376: 10,-15 - 6405: 14,-17 - 6406: 14,-16 - 6408: 11,-16 - 6411: 14,-15 - 6456: -21,-20 - 6646: -21,-3 - 6647: -21,-2 - 6799: -21,11 - 6800: -21,12 - 6801: -21,12 - 6892: -34,10 + 2241: -15,51 + 2242: -15,49 + 2247: -15,47 + 2273: -25,41 + 2287: -15,35 + 2299: -24,39 + 2300: -24,38 + 2301: -24,37 + 2302: -24,36 + 2303: -24,35 + 2304: -24,34 + 2305: -24,33 + 2306: -24,32 + 2307: -24,31 + 2308: -24,30 + 2326: -28,30 + 2342: -28,32 + 2343: -28,33 + 2344: -28,34 + 2345: -28,35 + 2346: -28,36 + 2347: -28,37 + 2348: -28,38 + 2732: -14,48 + 2733: -14,50 + 2754: -3,50 + 2755: -3,49 + 2781: -2,45 + 2802: -8,27 + 2804: -5,27 + 2816: -26,42 + 2837: -30,40 + 2858: -24,50 + 2859: -24,51 + 2860: -24,48 + 2861: -24,47 + 3161: -17,59 + 3162: -17,60 + 3163: -17,61 + 3164: -17,62 + 3165: -17,63 + 3166: -17,64 + 3167: -17,64 + 3168: -17,65 + 3169: -17,66 + 3334: -29,93 + 3335: -29,94 + 3336: -29,95 + 3337: -28,91 + 3338: -28,90 + 3339: -28,89 + 3340: -29,87 + 3341: -29,86 + 3342: -29,85 + 3343: -29,83 + 3344: -28,81 + 3345: -28,80 + 3346: -29,78 + 3347: -29,76 + 3348: -29,75 + 3349: -29,74 + 3350: -29,73 + 3351: -29,72 + 3352: -29,71 + 3353: -29,70 + 3391: -11,93 + 3392: -11,94 + 3393: -11,95 + 3394: -10,91 + 3395: -10,90 + 3396: -10,89 + 3397: -11,86 + 3398: -11,85 + 3399: -11,87 + 3400: -11,83 + 3401: -10,81 + 3402: -10,80 + 3403: -11,78 + 3404: -11,76 + 3405: -11,75 + 3406: -11,74 + 3407: -11,73 + 3408: -11,72 + 3409: -11,71 + 3410: -11,70 + 3441: -3,59 + 3442: -3,63 + 3443: -3,64 + 3444: -3,62 + 3445: -3,62 + 3446: -3,61 + 3449: -3,66 + 3500: -10,89 + 3501: -10,90 + 3502: -10,91 + 3566: -14,77 + 3568: -10,77 + 3570: -16,77 + 3576: -14,84 + 3577: -16,84 + 3578: -10,84 + 3589: -32,84 + 3590: -28,84 + 3592: -34,84 + 3597: -28,77 + 3598: -32,77 + 3599: -34,77 + 3607: 5,72 + 3608: 5,73 + 3609: 5,74 + 3610: 5,75 + 3632: 7,73 + 3633: 7,72 + 3634: 7,71 + 3636: 7,70 + 3660: 4,77 + 3661: 2,77 + 3662: 4,84 + 3664: 2,84 + 3724: -22,55 + 4167: -21,20 + 4309: 15,14 + 4310: 15,15 + 4340: 18,20 + 4341: 18,20 + 4342: 18,19 + 4343: 18,17 + 4344: 18,16 + 4345: 18,13 + 4346: 18,11 + 4347: 18,10 + 4348: 18,9 + 4349: 18,8 + 4350: 18,7 + 4351: 18,3 + 4352: 18,2 + 4353: 18,1 + 4354: 18,0 + 4355: 18,-1 + 4356: 18,-2 + 4357: 18,-4 + 4358: 18,-5 + 4359: 18,-6 + 4360: 18,-7 + 4361: 18,-8 + 4362: 18,-9 + 5108: 30,28 + 5109: 30,27 + 5110: 30,26 + 5115: 33,28 + 5116: 33,27 + 5117: 33,26 + 5122: 28,31 + 5141: 36,31 + 5224: 18,-6 + 5270: -29,82 + 5271: -29,81 + 5272: -29,81 + 5273: -29,79 + 5274: -29,80 + 5288: -29,92 + 5289: -29,91 + 5290: -29,90 + 5291: -29,90 + 5292: -29,89 + 5293: -29,89 + 5294: -29,88 + 5295: -29,88 + 5296: -11,79 + 5297: -11,80 + 5298: -11,81 + 5299: -11,82 + 5300: -11,82 + 5313: -11,92 + 5314: -11,91 + 5315: -11,91 + 5316: -11,90 + 5317: -11,90 + 5318: -11,89 + 5319: -11,88 + 5320: -11,87 + 5391: -18,-7 + 5481: -41,11 + 5482: -41,15 + 5483: -41,22 + 5617: 15,-8 + 5627: -17,-8 + 5630: -18,-11 + 5631: -18,-11 + 5632: -18,-12 + 5633: -18,-13 + 5634: -18,-13 + 5635: -18,-15 + 5636: -18,-14 + 5637: -18,-16 + 5638: -18,-16 + 5639: -18,-17 + 5640: -18,-18 + 5655: 15,-4 + 5794: 14,-5 + 6082: -9,-16 + 6083: -9,-15 + 6084: -9,-14 + 6085: -9,-13 + 6155: -17,-21 + 6156: -17,-20 + 6157: -17,-19 + 6171: -17,-19 + 6269: -4,-14 + 6270: -4,-15 + 6273: -4,-17 + 6282: -3,-21 + 6283: -3,-20 + 6284: -3,-19 + 6285: 1,-19 + 6286: 1,-20 + 6287: 1,-21 + 6300: 15,-21 + 6301: 15,-20 + 6302: 15,-19 + 6307: 18,-13 + 6308: 18,-14 + 6309: 18,-15 + 6310: 18,-16 + 6311: 18,-17 + 6312: 18,-18 + 6313: 18,-19 + 6314: 18,-21 + 6340: 4,-16 + 6341: 4,-15 + 6371: 10,-12 + 6372: 10,-13 + 6373: 10,-14 + 6374: 10,-15 + 6403: 14,-17 + 6404: 14,-16 + 6406: 11,-16 + 6409: 14,-15 + 6454: -21,-20 + 6644: -21,-3 + 6645: -21,-2 + 6797: -21,11 + 6798: -21,12 + 6799: -21,12 + 6890: -34,10 + 6891: -34,11 + 6892: -34,11 6893: -34,11 6894: -34,11 - 6895: -34,11 - 6896: -34,11 - 6897: -34,12 - 6898: -34,12 - 6899: -34,13 - 6900: -34,14 - 6901: -34,14 - 6930: -22,13 - 6931: -22,14 - 6932: -22,10 - 6933: -22,10 - 6934: -22,9 - 6968: -22,-16 - 6969: -22,-16 - 6970: -22,-17 - 7065: 19,4 - 7066: 19,5 - 7067: 19,6 - 7075: 24,9 - 7113: 19,-12 - 7114: 19,-11 - 7115: 19,-10 - 7116: 26,-12 - 7117: 26,-11 - 7118: 26,-10 - 7132: 31,-11 - 7178: 31,-5 - 7191: 24,-8 - 7192: 24,-2 - 7218: 26,4 - 7219: 26,5 - 7220: 26,6 + 6895: -34,12 + 6896: -34,12 + 6897: -34,13 + 6898: -34,14 + 6899: -34,14 + 6928: -22,13 + 6929: -22,14 + 6930: -22,10 + 6931: -22,10 + 6932: -22,9 + 6966: -22,-16 + 6967: -22,-16 + 6968: -22,-17 + 7063: 19,4 + 7064: 19,5 + 7065: 19,6 + 7073: 24,9 + 7111: 19,-12 + 7112: 19,-11 + 7113: 19,-10 + 7114: 26,-12 + 7115: 26,-11 + 7116: 26,-10 + 7130: 31,-11 + 7176: 31,-5 + 7189: 24,-8 + 7190: 24,-2 + 7216: 26,4 + 7217: 26,5 + 7218: 26,6 + 7222: 32,5 + 7223: 32,5 7224: 32,5 - 7225: 32,5 - 7226: 32,5 - 7312: 28,9 - 7313: 28,10 - 7314: 28,11 - 7381: 32,5 - 8003: 81,-21 - 8004: 81,-20 - 8009: 82,-19 - 8010: 82,-22 - 8011: 78,-22 - 8012: 76,-22 - 8013: 76,-19 - 8014: 78,-19 - 8028: 64,-19 - 8029: 64,-22 - 8171: 32,-10 - 8172: 32,-12 - 8184: 32,-16 - 8191: 32,-16 - 8229: 33,-7 - 8292: 41,-17 - 8293: 41,-16 - 8294: 41,-15 - 8295: 41,-14 - 8296: 41,-13 - 8297: 41,-11 - 8298: 41,-10 - 8299: 41,-9 - 8355: 39,-17 - 8379: 41,-20 - 8419: 42,-21 - 8420: 42,-19 - 8421: 42,-19 - 8443: 53,-20 - 8473: 54,-19 - 8474: 54,-21 - 8486: 56,-19 - 8487: 56,-19 - 8585: 54,-11 - 8586: 54,-29 - 8637: 63,-30 - 8638: 63,-30 - 8639: 63,-28 - 8640: 63,-28 - 8641: 63,-29 - 8642: 63,-26 - 8643: 63,-26 - 8644: 63,-27 - 8645: 63,-24 - 8646: 63,-25 - 8647: 63,-21 - 8648: 63,-18 - 8649: 63,-17 - 8650: 63,-16 - 8651: 63,-15 - 8652: 63,-15 - 8653: 63,-14 - 8654: 63,-13 - 8655: 63,-12 - 8656: 63,-11 - 8675: 63,-23 - 8676: 63,-23 - 8677: 63,-20 - 8830: 0,-23 - 8831: 0,-24 - 8832: 0,-27 - 8833: 0,-28 - 8840: -3,-25 - 8841: -3,-26 - 8857: 0,-30 - 8858: 0,-30 - 8859: 0,-31 - 8860: 0,-32 - 8861: 0,-33 - 8910: -13,-28 - 8918: -5,-28 - 8919: -5,-28 - 8920: -5,-27 - 8921: -5,-27 - 8936: -13,-23 - 8937: -6,-23 - 8938: -6,-23 - 8978: -5,-28 - 9177: 2,-65 - 9178: 2,-65 - 9254: 2,-82 - 9255: 2,-81 - 9256: 2,-80 - 9257: 2,-78 - 9258: 2,-79 - 9259: 2,-79 - 9260: 2,-74 - 9261: 2,-74 - 9262: 2,-73 - 9263: 2,-72 - 9264: 2,-71 - 9265: 2,-70 - 9266: 2,-69 - 9267: -9,-68 - 9268: -9,-67 - 9269: -9,-73 - 9270: -9,-74 - 9271: -9,-72 - 9283: -2,-71 - 9284: -2,-69 - 9285: -2,-70 - 9311: 1,-61 - 9312: 1,-59 - 9331: 0,-38 - 9332: 0,-40 - 9333: 0,-40 - 9334: 0,-41 - 9335: 0,-41 - 9336: 0,-42 - 9337: 0,-43 - 9338: 0,-45 - 9339: 0,-45 - 9340: 0,-48 - 9341: 0,-48 - 9342: 0,-49 - 9343: 0,-50 - 9344: 0,-52 - 9345: 0,-53 - 9346: 0,-54 - 9378: 0,-46 - 9379: 0,-46 - 9380: 0,-47 - 9381: 0,-55 - 9382: 0,-55 - 9383: 0,-56 - 9463: -39,-15 - 10425: 11,-52 - 10426: 11,-51 - 10427: 11,-50 - 10590: 4,-86 - 10591: 4,-86 - 10592: 4,-85 - 10593: 4,-84 - 10639: 49,-39 - 10640: 49,-40 - 10641: 49,-41 - 10642: 49,-43 - 10643: 49,-44 - 10666: 42,-42 - 11253: -58,-36 - 11254: -58,-36 - 11255: -58,-37 - 11256: -58,-37 - 11257: -58,-38 - 11274: -61,-43 - 11275: -58,-43 - 11276: -58,-43 - 11356: -6,-86 - 11357: -6,-86 - 11358: -6,-84 - 11359: -6,-85 - 11360: -6,-85 - 11361: -4,-86 - 11362: -4,-85 - 11363: -4,-85 - 11364: -4,-84 - 11365: 2,-86 - 11366: 2,-85 - 11367: 2,-84 - 11391: -12,-67 - 11392: -12,-66 - 11393: -12,-78 - 11399: -3,-48 - 11406: -3,-40 - 11407: -3,-41 - 11409: -4,-35 - 11420: -13,-30 - 11421: -13,-31 - 11422: -13,-32 - 11855: -37,-52 - 11863: -41,-55 - 11864: -41,-54 - 11865: -41,-54 - 11874: -23,-51 - 11875: -23,-51 - 11876: -23,-52 - 11877: -23,-53 - 12381: -4,-60 - 12758: -45,9 - 12760: -45,18 - 12874: -45,9 - 12876: -44,23 - 13425: -36,-62 - 14417: -46,14 - 14418: -46,12 - 14942: 6,22 - 14943: 6,23 - 14944: 6,24 - 14953: 18,23 - 14954: 18,22 - 14983: -8,22 - 14984: -8,23 - 14985: -8,24 - 15369: -8,-70 - 15418: -40,4 - 15419: -40,5 - 15420: -40,6 - 15425: -41,8 - 15426: -41,9 - 15427: -41,10 - 15428: -41,14 - 15429: -41,13 - 15430: -41,12 - 15431: -41,16 - 15432: -41,17 - 15433: -41,18 - 15434: -41,18 - 15435: -41,19 - 15436: -41,20 - 15437: -41,21 - 15814: 89,1 - 15815: 89,0 - 15825: 75,1 - 16722: -55,-13 - 16723: -55,-14 - 16724: -55,-14 - 16740: -62,-17 - 16741: -60,-17 - 16842: -52,4 - 16843: -52,5 - 16844: -52,6 - 16858: -56,-7 - 16859: -56,-9 - 17191: -46,12 - 17194: -46,14 - 17534: 7,84 - 17535: 7,83 - 17541: 8,79 - 17542: 8,78 - 17543: 8,77 - 17935: -44,23 - 18492: -17,-9 - 18493: -17,-10 - 18561: 15,-10 - 18562: 15,-9 - 18563: 15,-8 - 19900: -28,10 - 19901: -28,11 - 19902: -28,11 - 19903: -28,13 - 19904: -28,12 - 20024: -17,4 - 20025: -17,-1 - 20037: -16,0 - 20038: -16,1 - 20039: -16,2 - 20040: -16,3 - 20084: 70,25 - 20085: 70,24 - 20086: 70,23 - 20087: 70,22 - 20103: 60,25 - 20151: -21,-3 - 20152: -21,-2 - 20160: -21,4 - 20161: -21,5 - 20162: -21,6 - 20166: -18,5 - 20167: -18,3 - 20168: -18,2 - 20169: -18,2 - 20170: -18,1 - 20171: -18,0 - 20172: -18,-3 - 20173: -18,-2 - 20174: -18,-4 - 20175: -18,-4 - 20176: -18,-5 - 20177: -18,-6 - 20178: -18,-6 - 20185: -18,8 - 20186: -18,8 - 20187: -18,9 - 20188: -18,10 - 20189: -18,11 - 20190: -18,12 - 20191: -18,12 - 20192: -18,13 - 20193: -18,11 - 20194: -18,10 - 20195: -18,9 - 20196: -18,8 - 20197: -18,11 - 20198: -18,11 - 20199: -18,12 - 20200: -18,13 - 20201: -18,16 - 20202: -18,17 - 20203: -18,18 - 20204: -18,19 - 20205: -18,19 - 20206: -18,20 - 20222: -21,11 - 20223: -21,12 - 20224: -21,17 - 20225: -21,20 - 20226: -21,11 - 20227: -21,12 - 20229: -21,6 - 20230: -21,5 - 20231: -21,4 - 21382: 18,12 + 7310: 28,9 + 7311: 28,10 + 7312: 28,11 + 7379: 32,5 + 8001: 81,-21 + 8002: 81,-20 + 8007: 82,-19 + 8008: 82,-22 + 8009: 78,-22 + 8010: 76,-22 + 8011: 76,-19 + 8012: 78,-19 + 8026: 64,-19 + 8027: 64,-22 + 8169: 32,-10 + 8170: 32,-12 + 8182: 32,-16 + 8189: 32,-16 + 8227: 33,-7 + 8290: 41,-17 + 8291: 41,-16 + 8292: 41,-15 + 8293: 41,-14 + 8294: 41,-13 + 8295: 41,-11 + 8296: 41,-10 + 8297: 41,-9 + 8353: 39,-17 + 8377: 41,-20 + 8417: 42,-21 + 8418: 42,-19 + 8419: 42,-19 + 8441: 53,-20 + 8471: 54,-19 + 8472: 54,-21 + 8484: 56,-19 + 8485: 56,-19 + 8583: 54,-11 + 8584: 54,-29 + 8635: 63,-30 + 8636: 63,-30 + 8637: 63,-28 + 8638: 63,-28 + 8639: 63,-29 + 8640: 63,-26 + 8641: 63,-26 + 8642: 63,-27 + 8643: 63,-24 + 8644: 63,-25 + 8645: 63,-21 + 8646: 63,-18 + 8647: 63,-17 + 8648: 63,-16 + 8649: 63,-15 + 8650: 63,-15 + 8651: 63,-14 + 8652: 63,-13 + 8653: 63,-12 + 8654: 63,-11 + 8673: 63,-23 + 8674: 63,-23 + 8675: 63,-20 + 8828: 0,-23 + 8829: 0,-24 + 8830: 0,-27 + 8831: 0,-28 + 8838: -3,-25 + 8839: -3,-26 + 8855: 0,-30 + 8856: 0,-30 + 8857: 0,-31 + 8858: 0,-32 + 8859: 0,-33 + 8908: -13,-28 + 8916: -5,-28 + 8917: -5,-28 + 8918: -5,-27 + 8919: -5,-27 + 8934: -13,-23 + 8935: -6,-23 + 8936: -6,-23 + 8976: -5,-28 + 9175: 2,-65 + 9176: 2,-65 + 9252: 2,-82 + 9253: 2,-81 + 9254: 2,-80 + 9255: 2,-78 + 9256: 2,-79 + 9257: 2,-79 + 9258: 2,-74 + 9259: 2,-74 + 9260: 2,-73 + 9261: 2,-72 + 9262: 2,-71 + 9263: 2,-70 + 9264: 2,-69 + 9265: -9,-68 + 9266: -9,-67 + 9267: -9,-73 + 9268: -9,-74 + 9269: -9,-72 + 9281: -2,-71 + 9282: -2,-69 + 9283: -2,-70 + 9309: 1,-61 + 9310: 1,-59 + 9329: 0,-38 + 9330: 0,-40 + 9331: 0,-40 + 9332: 0,-41 + 9333: 0,-41 + 9334: 0,-42 + 9335: 0,-43 + 9336: 0,-45 + 9337: 0,-45 + 9338: 0,-48 + 9339: 0,-48 + 9340: 0,-49 + 9341: 0,-50 + 9342: 0,-52 + 9343: 0,-53 + 9344: 0,-54 + 9376: 0,-46 + 9377: 0,-46 + 9378: 0,-47 + 9379: 0,-55 + 9380: 0,-55 + 9381: 0,-56 + 9461: -39,-15 + 10423: 11,-52 + 10424: 11,-51 + 10425: 11,-50 + 10588: 4,-86 + 10589: 4,-86 + 10590: 4,-85 + 10591: 4,-84 + 10637: 49,-39 + 10638: 49,-40 + 10639: 49,-41 + 10640: 49,-43 + 10641: 49,-44 + 10664: 42,-42 + 11251: -58,-36 + 11252: -58,-36 + 11253: -58,-37 + 11254: -58,-37 + 11255: -58,-38 + 11272: -61,-43 + 11273: -58,-43 + 11274: -58,-43 + 11354: -6,-86 + 11355: -6,-86 + 11356: -6,-84 + 11357: -6,-85 + 11358: -6,-85 + 11359: -4,-86 + 11360: -4,-85 + 11361: -4,-85 + 11362: -4,-84 + 11363: 2,-86 + 11364: 2,-85 + 11365: 2,-84 + 11389: -12,-67 + 11390: -12,-66 + 11391: -12,-78 + 11397: -3,-48 + 11404: -3,-40 + 11405: -3,-41 + 11407: -4,-35 + 11418: -13,-30 + 11419: -13,-31 + 11420: -13,-32 + 11853: -37,-52 + 11861: -41,-55 + 11862: -41,-54 + 11863: -41,-54 + 11872: -23,-51 + 11873: -23,-51 + 11874: -23,-52 + 11875: -23,-53 + 12379: -4,-60 + 12756: -45,9 + 12758: -45,18 + 12872: -45,9 + 12874: -44,23 + 13423: -36,-62 + 14415: -46,14 + 14416: -46,12 + 14940: 6,22 + 14941: 6,23 + 14942: 6,24 + 14951: 18,23 + 14952: 18,22 + 14981: -8,22 + 14982: -8,23 + 14983: -8,24 + 15367: -8,-70 + 15416: -40,4 + 15417: -40,5 + 15418: -40,6 + 15423: -41,8 + 15424: -41,9 + 15425: -41,10 + 15426: -41,14 + 15427: -41,13 + 15428: -41,12 + 15429: -41,16 + 15430: -41,17 + 15431: -41,18 + 15432: -41,18 + 15433: -41,19 + 15434: -41,20 + 15435: -41,21 + 15812: 89,1 + 15813: 89,0 + 15823: 75,1 + 16720: -55,-13 + 16721: -55,-14 + 16722: -55,-14 + 16738: -62,-17 + 16739: -60,-17 + 16840: -52,4 + 16841: -52,5 + 16842: -52,6 + 16856: -56,-7 + 16857: -56,-9 + 17189: -46,12 + 17192: -46,14 + 17532: 7,84 + 17533: 7,83 + 17539: 8,79 + 17540: 8,78 + 17541: 8,77 + 17933: -44,23 + 18490: -17,-9 + 18491: -17,-10 + 18559: 15,-10 + 18560: 15,-9 + 18561: 15,-8 + 19898: -28,10 + 19899: -28,11 + 19900: -28,11 + 19901: -28,13 + 19902: -28,12 + 20022: -17,4 + 20023: -17,-1 + 20035: -16,0 + 20036: -16,1 + 20037: -16,2 + 20038: -16,3 + 20082: 70,25 + 20083: 70,24 + 20084: 70,23 + 20085: 70,22 + 20101: 60,25 + 20149: -21,-3 + 20150: -21,-2 + 20158: -21,4 + 20159: -21,5 + 20160: -21,6 + 20164: -18,5 + 20165: -18,3 + 20166: -18,2 + 20167: -18,2 + 20168: -18,1 + 20169: -18,0 + 20170: -18,-3 + 20171: -18,-2 + 20172: -18,-4 + 20173: -18,-4 + 20174: -18,-5 + 20175: -18,-6 + 20176: -18,-6 + 20183: -18,8 + 20184: -18,8 + 20185: -18,9 + 20186: -18,10 + 20187: -18,11 + 20188: -18,12 + 20189: -18,12 + 20190: -18,13 + 20191: -18,11 + 20192: -18,10 + 20193: -18,9 + 20194: -18,8 + 20195: -18,11 + 20196: -18,11 + 20197: -18,12 + 20198: -18,13 + 20199: -18,16 + 20200: -18,17 + 20201: -18,18 + 20202: -18,19 + 20203: -18,19 + 20204: -18,20 + 20220: -21,11 + 20221: -21,12 + 20222: -21,17 + 20223: -21,20 + 20224: -21,11 + 20225: -21,12 + 20227: -21,6 + 20228: -21,5 + 20229: -21,4 + 21380: 18,12 - node: cleanable: True color: '#FFFFFFFF' @@ -8489,850 +8484,850 @@ entities: 907: 28,0 919: 30,2 928: 28,-2 - 4055: -18,20 + 4053: -18,20 + 4054: -18,18 + 4055: -18,19 4056: -18,18 - 4057: -18,19 - 4058: -18,18 - 4059: -18,17 - 4060: -18,16 - 4061: -18,13 - 4062: -18,12 - 4063: -18,11 - 4064: -18,10 - 4065: -18,9 - 4066: -18,8 - 4079: -18,7 - 4080: -18,6 - 4081: -18,6 + 4057: -18,17 + 4058: -18,16 + 4059: -18,13 + 4060: -18,12 + 4061: -18,11 + 4062: -18,10 + 4063: -18,9 + 4064: -18,8 + 4077: -18,7 + 4078: -18,6 + 4079: -18,6 - node: color: '#00C9DAFF' id: BrickTileSteelLineN decals: - 8107: 26,-14 - 8108: 27,-14 - 8109: 29,-14 - 8110: 30,-14 - 8111: 28,-14 - 8112: 21,-14 - 8138: 27,-17 - 8139: 29,-17 - 8140: 31,-17 - 8159: 25,-19 + 8105: 26,-14 + 8106: 27,-14 + 8107: 29,-14 + 8108: 30,-14 + 8109: 28,-14 + 8110: 21,-14 + 8136: 27,-17 + 8137: 29,-17 + 8138: 31,-17 + 8157: 25,-19 - node: color: '#00FFFFFF' id: BrickTileSteelLineN decals: - 3743: -27,65 - 3744: -26,65 - 3769: -28,59 - 10247: 37,-27 - 10258: 36,-26 - 10259: 36,-26 - 10680: 70,-50 - 10681: 70,-50 - 15788: 78,3 - 15792: 77,6 - 15793: 78,6 + 3741: -27,65 + 3742: -26,65 + 3767: -28,59 + 10245: 37,-27 + 10256: 36,-26 + 10257: 36,-26 + 10678: 70,-50 + 10679: 70,-50 + 15786: 78,3 + 15790: 77,6 + 15791: 78,6 - node: color: '#8BC9DAFF' id: BrickTileSteelLineN decals: - 3924: 19,63 + 3922: 19,63 - node: color: '#8CB7E8FF' id: BrickTileSteelLineN decals: - 9808: 21,-33 - 9809: 21,-31 - 10041: 25,-27 - 10052: 25,-25 - 10062: 28,-25 - 10063: 32,-25 - 10068: 30,-23 + 9806: 21,-33 + 9807: 21,-31 + 10039: 25,-27 + 10050: 25,-25 + 10060: 28,-25 + 10061: 32,-25 + 10066: 30,-23 + 10074: 30,-22 + 10075: 29,-22 10076: 30,-22 - 10077: 29,-22 - 10078: 30,-22 - 10079: 31,-22 - 10097: 28,-25 - 10098: 32,-25 - 10148: 22,-50 - 10155: 21,-46 - 10156: 21,-46 - 10157: 22,-46 - 10158: 23,-46 - 10227: 33,-47 + 10077: 31,-22 + 10095: 28,-25 + 10096: 32,-25 + 10146: 22,-50 + 10153: 21,-46 + 10154: 21,-46 + 10155: 22,-46 + 10156: 23,-46 + 10225: 33,-47 - node: color: '#B18BDAFF' id: BrickTileSteelLineN decals: - 11953: -29,-33 - 11969: -27,-26 - 11970: -28,-26 - 11974: -30,-26 - 12001: -42,-31 - 12002: -42,-31 - 12003: -38,-31 - 12004: -34,-31 - 12005: -34,-31 - 12033: -40,-27 - 12041: -36,-27 - 12059: -48,-25 - 12060: -47,-25 - 12080: -46,-24 - 12082: -46,-22 - 12121: -28,-44 - 12122: -27,-44 - 12123: -26,-44 - 12124: -25,-44 - 12174: -25,-38 - 12196: -29,-43 - 12197: -24,-43 - 12351: -20,-38 - 12352: -19,-38 - 12353: -18,-38 - 16173: -64,-45 - 16174: -66,-46 - 19793: -9,-44 - 19794: -8,-44 - 19795: -8,-44 - 19796: -7,-44 - 19797: -6,-44 + 11951: -29,-33 + 11967: -27,-26 + 11968: -28,-26 + 11972: -30,-26 + 11999: -42,-31 + 12000: -42,-31 + 12001: -38,-31 + 12002: -34,-31 + 12003: -34,-31 + 12031: -40,-27 + 12039: -36,-27 + 12057: -48,-25 + 12058: -47,-25 + 12078: -46,-24 + 12080: -46,-22 + 12119: -28,-44 + 12120: -27,-44 + 12121: -26,-44 + 12122: -25,-44 + 12172: -25,-38 + 12194: -29,-43 + 12195: -24,-43 + 12349: -20,-38 + 12350: -19,-38 + 12351: -18,-38 + 16171: -64,-45 + 16172: -66,-46 + 19791: -9,-44 + 19792: -8,-44 + 19793: -8,-44 + 19794: -7,-44 + 19795: -6,-44 - node: color: '#CEDA8BFF' id: BrickTileSteelLineN decals: - 10958: 27,-66 - 10959: 28,-66 - 10960: 29,-66 - 10961: 30,-66 - 10962: 31,-66 + 10956: 27,-66 + 10957: 28,-66 + 10958: 29,-66 + 10959: 30,-66 + 10960: 31,-66 - node: color: '#DA8B8BFF' id: BrickTileSteelLineN decals: - 7802: 58,2 - 7803: 62,2 - 7804: 66,2 - 7835: 59,5 - 7836: 57,5 - 7837: 61,5 - 7838: 63,5 - 7839: 65,5 - 7840: 67,5 - 7846: 70,6 - 7856: 58,2 - 7857: 62,2 - 7858: 66,2 - 19318: 69,7 - 19323: 69,9 - 19328: 66,6 - 19329: 62,6 - 19340: 58,6 + 7800: 58,2 + 7801: 62,2 + 7802: 66,2 + 7833: 59,5 + 7834: 57,5 + 7835: 61,5 + 7836: 63,5 + 7837: 65,5 + 7838: 67,5 + 7844: 70,6 + 7854: 58,2 + 7855: 62,2 + 7856: 66,2 + 19316: 69,7 + 19321: 69,9 + 19326: 66,6 + 19327: 62,6 + 19338: 58,6 - node: color: '#DA8BC9FF' id: BrickTileSteelLineN decals: - 3931: 20,63 + 3929: 20,63 - node: color: '#DABC8BFF' id: BrickTileSteelLineN decals: - 3711: 12,73 - 3714: 10,83 - 3719: 10,89 - 3724: 5,91 + 3709: 12,73 + 3712: 10,83 + 3717: 10,89 + 3722: 5,91 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 20333: -24,-1 - 20345: -48,7 - 20347: -48,9 - 20348: -47,9 - 20349: -46,9 - 20362: 4,-83 - 20363: 5,-79 - 20364: 5,-73 - 20365: 5,-63 - 20376: 4,-87 - 20377: 4,-83 - 20428: 9,-77 - 20429: 8,-77 - 20437: 9,-74 - 20458: 4,-58 - 20459: 5,-58 - 20460: 6,-58 - 20474: 12,-33 - 20484: 12,-30 - 20488: 12,-33 - 20508: 2,59 - 20528: 1,65 - 20529: 2,65 - 20546: 40,2 - 20547: 40,10 - 20558: 40,13 - 20563: 42,5 - 20564: 43,5 - 20565: 44,5 - 20566: 45,5 - 20580: 36,10 - 20581: 36,12 - 20631: 73,4 - 20670: 46,10 - 20671: 47,10 - 20672: 47,10 - 20673: 48,10 - 20699: 50,1 - 20700: 51,1 - 20701: 51,1 - 20717: 52,32 - 20718: 51,32 - 20719: 53,32 - 20720: 54,32 - 20721: 55,32 - 20722: 56,32 - 20723: 57,32 - 20731: 52,20 - 20734: 57,20 - 20779: 51,14 - 20780: 47,14 - 20792: 52,13 - 20793: 53,13 - 20794: 54,13 - 20795: 55,13 - 20796: 56,13 - 20797: 57,13 - 20798: 57,13 - 20799: 58,13 - 20800: 59,13 - 20801: 51,19 - 20802: 53,19 - 20807: 46,24 - 20874: 53,10 - 20885: 51,9 - 20886: 52,9 - 20887: 54,9 - 20888: 81,10 - 20889: 84,10 - 20890: 85,10 - 20891: 82,14 - 20892: 83,14 - 20893: 85,14 - 20894: 86,14 - 20895: 88,14 - 20896: 89,14 - 20897: 90,14 - 20898: 87,14 - 20899: 84,14 - 20912: 91,15 - 20913: 92,15 - 20914: 93,15 - 20939: 82,10 - 20951: 77,10 - 21011: 73,20 - 21018: 73,23 - 21019: 74,23 - 21036: 75,24 - 21049: 69,1 - 21050: 70,1 - 21055: 65,-2 - 21069: 70,-3 - 21081: 52,-2 - 21082: 61,-2 - 21083: 47,-2 - 21089: 47,-2 - 21105: 51,-3 - 21143: 36,7 - 21144: 35,3 - 21151: 34,6 - 21152: 35,6 - 21153: 37,6 - 21233: -19,-24 - 21234: -18,-24 - 21248: 48,-7 - 21249: 49,-7 - 21250: 50,-7 - 21251: 46,-3 - 21258: 51,-6 - 21265: 47,-7 - 21277: 57,-3 - 21279: 56,-2 - 21290: 51,1 - 21291: 50,1 - 21292: 52,1 - 21293: 53,1 - 21294: 54,1 - 21295: 55,1 - 21296: 56,1 - 21297: 57,1 - 21298: 59,1 - 21299: 60,1 - 21300: 61,1 - 21301: 63,1 - 21302: 64,1 - 21303: 64,1 - 21304: 65,1 - 21305: 67,1 - 21429: 22,22 - 21430: 23,22 - 21431: 24,22 - 21432: 25,22 - 21433: 26,22 - 21434: 27,22 + 20331: -24,-1 + 20343: -48,7 + 20345: -48,9 + 20346: -47,9 + 20347: -46,9 + 20360: 4,-83 + 20361: 5,-79 + 20362: 5,-73 + 20363: 5,-63 + 20374: 4,-87 + 20375: 4,-83 + 20426: 9,-77 + 20427: 8,-77 + 20435: 9,-74 + 20456: 4,-58 + 20457: 5,-58 + 20458: 6,-58 + 20472: 12,-33 + 20482: 12,-30 + 20486: 12,-33 + 20506: 2,59 + 20526: 1,65 + 20527: 2,65 + 20544: 40,2 + 20545: 40,10 + 20556: 40,13 + 20561: 42,5 + 20562: 43,5 + 20563: 44,5 + 20564: 45,5 + 20578: 36,10 + 20579: 36,12 + 20629: 73,4 + 20668: 46,10 + 20669: 47,10 + 20670: 47,10 + 20671: 48,10 + 20697: 50,1 + 20698: 51,1 + 20699: 51,1 + 20715: 52,32 + 20716: 51,32 + 20717: 53,32 + 20718: 54,32 + 20719: 55,32 + 20720: 56,32 + 20721: 57,32 + 20729: 52,20 + 20732: 57,20 + 20777: 51,14 + 20778: 47,14 + 20790: 52,13 + 20791: 53,13 + 20792: 54,13 + 20793: 55,13 + 20794: 56,13 + 20795: 57,13 + 20796: 57,13 + 20797: 58,13 + 20798: 59,13 + 20799: 51,19 + 20800: 53,19 + 20805: 46,24 + 20872: 53,10 + 20883: 51,9 + 20884: 52,9 + 20885: 54,9 + 20886: 81,10 + 20887: 84,10 + 20888: 85,10 + 20889: 82,14 + 20890: 83,14 + 20891: 85,14 + 20892: 86,14 + 20893: 88,14 + 20894: 89,14 + 20895: 90,14 + 20896: 87,14 + 20897: 84,14 + 20910: 91,15 + 20911: 92,15 + 20912: 93,15 + 20937: 82,10 + 20949: 77,10 + 21009: 73,20 + 21016: 73,23 + 21017: 74,23 + 21034: 75,24 + 21047: 69,1 + 21048: 70,1 + 21053: 65,-2 + 21067: 70,-3 + 21079: 52,-2 + 21080: 61,-2 + 21081: 47,-2 + 21087: 47,-2 + 21103: 51,-3 + 21141: 36,7 + 21142: 35,3 + 21149: 34,6 + 21150: 35,6 + 21151: 37,6 + 21231: -19,-24 + 21232: -18,-24 + 21246: 48,-7 + 21247: 49,-7 + 21248: 50,-7 + 21249: 46,-3 + 21256: 51,-6 + 21263: 47,-7 + 21275: 57,-3 + 21277: 56,-2 + 21288: 51,1 + 21289: 50,1 + 21290: 52,1 + 21291: 53,1 + 21292: 54,1 + 21293: 55,1 + 21294: 56,1 + 21295: 57,1 + 21296: 59,1 + 21297: 60,1 + 21298: 61,1 + 21299: 63,1 + 21300: 64,1 + 21301: 64,1 + 21302: 65,1 + 21303: 67,1 + 21427: 22,22 + 21428: 23,22 + 21429: 24,22 + 21430: 25,22 + 21431: 26,22 + 21432: 27,22 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2230: -20,54 - 2231: -19,54 - 2232: -18,54 - 2237: -16,52 - 2238: -22,52 - 2239: -22,52 - 2313: -24,39 - 2314: -25,39 - 2315: -26,39 - 2316: -27,39 - 2379: -31,32 - 2397: -32,37 - 2736: -13,50 - 2737: -11,50 - 2738: -10,50 - 2739: -9,50 - 2740: -8,50 - 2741: -7,50 - 2742: -5,50 - 2743: -4,50 - 2758: -2,48 - 2789: -3,46 - 2793: -4,47 - 2807: -6,28 - 2820: -27,43 - 2821: -28,43 - 2822: -29,43 - 2834: -31,43 - 2841: -30,39 - 3049: -20,54 - 3050: -19,54 - 3051: -18,54 - 3052: 1,59 - 3056: -1,55 - 3059: 1,55 - 3060: 2,55 - 3061: 1,58 - 3062: 0,58 - 3063: -1,58 - 3069: -16,58 - 3070: -15,58 - 3071: -14,58 - 3072: -13,58 - 3073: -12,58 - 3074: -11,58 - 3075: -10,58 - 3076: -9,58 - 3077: -8,58 - 3356: -28,69 - 3357: -27,69 - 3358: -26,69 - 3359: -25,69 - 3360: -24,69 - 3361: -23,69 - 3362: -21,69 - 3363: -21,69 - 3364: -22,69 - 3365: -19,69 - 3366: -20,69 - 3367: -18,69 - 3368: -17,69 - 3369: -16,69 - 3370: -15,69 - 3371: -14,69 - 3414: -10,69 - 3415: -9,69 - 3416: -8,69 - 3417: -8,69 - 3418: -7,69 + 2228: -20,54 + 2229: -19,54 + 2230: -18,54 + 2235: -16,52 + 2236: -22,52 + 2237: -22,52 + 2311: -24,39 + 2312: -25,39 + 2313: -26,39 + 2314: -27,39 + 2377: -31,32 + 2395: -32,37 + 2734: -13,50 + 2735: -11,50 + 2736: -10,50 + 2737: -9,50 + 2738: -8,50 + 2739: -7,50 + 2740: -5,50 + 2741: -4,50 + 2756: -2,48 + 2787: -3,46 + 2791: -4,47 + 2805: -6,28 + 2818: -27,43 + 2819: -28,43 + 2820: -29,43 + 2832: -31,43 + 2839: -30,39 + 3047: -20,54 + 3048: -19,54 + 3049: -18,54 + 3050: 1,59 + 3054: -1,55 + 3057: 1,55 + 3058: 2,55 + 3059: 1,58 + 3060: 0,58 + 3061: -1,58 + 3067: -16,58 + 3068: -15,58 + 3069: -14,58 + 3070: -13,58 + 3071: -12,58 + 3072: -11,58 + 3073: -10,58 + 3074: -9,58 + 3075: -8,58 + 3354: -28,69 + 3355: -27,69 + 3356: -26,69 + 3357: -25,69 + 3358: -24,69 + 3359: -23,69 + 3360: -21,69 + 3361: -21,69 + 3362: -22,69 + 3363: -19,69 + 3364: -20,69 + 3365: -18,69 + 3366: -17,69 + 3367: -16,69 + 3368: -15,69 + 3369: -14,69 + 3412: -10,69 + 3413: -9,69 + 3414: -8,69 + 3415: -8,69 + 3416: -7,69 + 3417: -5,69 + 3418: -6,69 3419: -5,69 - 3420: -6,69 - 3421: -5,69 - 3422: -4,69 - 3423: -3,69 - 3441: -2,58 - 3453: 6,66 - 3545: -2,69 - 3546: -1,69 - 3547: 0,69 - 3548: 1,69 - 3549: 2,69 - 3550: 3,69 - 3551: 4,69 - 3574: -9,77 - 3576: -15,77 - 3586: -15,84 - 3587: -9,84 - 3596: -33,84 - 3597: -27,84 - 3607: -33,77 - 3608: -27,77 - 3613: 6,71 - 3668: 3,84 - 3671: 3,77 - 3684: 6,66 - 3728: -25,66 - 3734: -30,66 - 5123: 31,29 - 5126: 30,32 - 5127: 31,32 - 5128: 32,32 - 5129: 33,32 - 5130: 34,32 - 5138: 35,29 - 5374: 14,-8 - 5375: 13,-8 - 5376: 9,-8 - 5377: 7,-8 - 5378: 6,-8 - 5379: 2,-8 - 5380: 1,-8 - 5381: -2,-8 - 5382: -3,-8 - 5383: -3,-8 - 5384: -4,-8 - 5385: -5,-8 - 5386: -6,-8 - 5387: -11,-8 - 5388: -12,-8 - 5389: -14,-8 - 5390: -15,-8 - 5391: -16,-8 - 5392: -16,-8 - 5441: -29,6 - 5442: -28,6 - 5443: -28,6 - 5444: -27,6 - 5445: -27,6 - 5446: -24,6 - 5447: -24,6 - 5448: -23,6 - 5449: -23,6 - 5450: -22,6 - 5451: -22,6 - 5472: -39,6 - 5473: -38,6 - 5474: -37,6 - 5475: -35,6 - 5476: -34,6 - 5477: -34,6 - 5478: -33,6 - 5479: -32,6 - 5482: -30,6 - 5487: -41,23 - 5488: -43,23 - 5535: -20,7 - 5536: -19,7 - 5537: -18,7 - 5554: -20,-7 - 5555: -19,-7 - 5556: -18,-7 - 5622: 12,-8 - 5623: 5,-8 - 5624: 0,-8 - 5625: -7,-8 - 5626: -8,-8 - 5627: -9,-8 - 5628: -13,-8 - 5785: 9,-4 - 5786: 10,-4 - 5787: 11,-4 - 5792: 13,-4 - 5793: 14,-4 - 5804: 8,-4 - 5809: 10,-7 - 5810: 11,-7 - 5811: 8,-7 - 6095: -13,-18 - 6096: -12,-18 - 6097: -11,-18 - 6103: -10,-19 - 6104: -9,-19 - 6105: -7,-19 - 6106: -6,-19 - 6107: -5,-19 - 6108: -2,-19 - 6109: -1,-19 - 6110: 0,-19 - 6111: 2,-19 - 6112: 4,-19 - 6113: 5,-19 - 6114: 6,-19 - 6115: 3,-19 - 6116: 7,-19 - 6117: 9,-19 - 6118: 10,-19 - 6119: 11,-19 - 6135: 16,-7 - 6136: 17,-7 - 6137: 18,-7 - 6148: 16,7 - 6149: 17,7 - 6150: 18,7 - 6151: -14,-19 - 6152: -15,-19 - 6153: -16,-19 - 6264: -5,-14 - 6277: -4,-18 - 6345: 3,-14 - 6382: 8,-18 - 6399: 12,-18 - 6400: 13,-18 - 6401: 14,-18 - 6415: 13,-15 - 6416: 13,-15 - 6644: -33,3 - 6645: -32,3 - 6714: -23,3 - 6821: -42,2 - 6906: -36,7 - 6914: -36,17 - 6915: -36,17 - 6922: -36,19 - 6923: -36,19 - 6926: -26,7 - 6927: -25,7 - 6937: -23,15 - 7043: 20,6 - 7044: 21,6 - 7050: 23,6 - 7051: 24,6 - 7052: 25,6 - 7079: 21,10 - 7080: 23,10 - 7086: 22,7 - 7098: 20,-10 - 7099: 21,-10 - 7100: 23,-10 - 7101: 24,-10 - 7102: 25,-10 - 7127: 27,-10 - 7128: 28,-10 - 7129: 29,-10 - 7130: 31,-10 - 7131: 30,-10 - 7138: 22,3 - 7156: 26,2 - 7157: 27,2 - 7158: 28,2 - 7159: 29,2 - 7163: 25,-7 - 7164: 27,-7 - 7165: 26,-7 - 7175: 30,-7 - 7176: 29,-7 - 7195: 30,3 - 7203: 27,6 - 7204: 28,6 - 7205: 30,6 - 7206: 31,6 - 7207: 32,6 - 7321: 29,12 - 7322: 30,12 - 7323: 31,12 - 7324: 31,12 - 7325: 32,12 - 7997: 79,-19 - 7998: 81,-19 - 7999: 80,-19 - 8000: 80,-19 - 8001: 77,-19 - 8002: 77,-19 - 8007: 77,-22 - 8024: 65,-22 - 8026: 65,-19 - 8106: 25,-13 - 8304: 41,-8 - 8305: 41,-8 - 8306: 40,-8 - 8307: 39,-8 - 8308: 38,-8 - 8309: 34,-8 - 8310: 34,-8 - 8311: 35,-8 - 8312: 37,-8 - 8313: 36,-8 - 8352: 39,-18 - 8353: 41,-18 - 8361: 40,-19 - 8395: 43,-19 - 8396: 44,-19 - 8397: 45,-19 - 8398: 45,-19 - 8399: 48,-19 - 8400: 49,-19 - 8401: 49,-19 + 3420: -4,69 + 3421: -3,69 + 3439: -2,58 + 3451: 6,66 + 3543: -2,69 + 3544: -1,69 + 3545: 0,69 + 3546: 1,69 + 3547: 2,69 + 3548: 3,69 + 3549: 4,69 + 3572: -9,77 + 3574: -15,77 + 3584: -15,84 + 3585: -9,84 + 3594: -33,84 + 3595: -27,84 + 3605: -33,77 + 3606: -27,77 + 3611: 6,71 + 3666: 3,84 + 3669: 3,77 + 3682: 6,66 + 3726: -25,66 + 3732: -30,66 + 5121: 31,29 + 5124: 30,32 + 5125: 31,32 + 5126: 32,32 + 5127: 33,32 + 5128: 34,32 + 5136: 35,29 + 5372: 14,-8 + 5373: 13,-8 + 5374: 9,-8 + 5375: 7,-8 + 5376: 6,-8 + 5377: 2,-8 + 5378: 1,-8 + 5379: -2,-8 + 5380: -3,-8 + 5381: -3,-8 + 5382: -4,-8 + 5383: -5,-8 + 5384: -6,-8 + 5385: -11,-8 + 5386: -12,-8 + 5387: -14,-8 + 5388: -15,-8 + 5389: -16,-8 + 5390: -16,-8 + 5439: -29,6 + 5440: -28,6 + 5441: -28,6 + 5442: -27,6 + 5443: -27,6 + 5444: -24,6 + 5445: -24,6 + 5446: -23,6 + 5447: -23,6 + 5448: -22,6 + 5449: -22,6 + 5470: -39,6 + 5471: -38,6 + 5472: -37,6 + 5473: -35,6 + 5474: -34,6 + 5475: -34,6 + 5476: -33,6 + 5477: -32,6 + 5480: -30,6 + 5485: -41,23 + 5486: -43,23 + 5533: -20,7 + 5534: -19,7 + 5535: -18,7 + 5552: -20,-7 + 5553: -19,-7 + 5554: -18,-7 + 5620: 12,-8 + 5621: 5,-8 + 5622: 0,-8 + 5623: -7,-8 + 5624: -8,-8 + 5625: -9,-8 + 5626: -13,-8 + 5783: 9,-4 + 5784: 10,-4 + 5785: 11,-4 + 5790: 13,-4 + 5791: 14,-4 + 5802: 8,-4 + 5807: 10,-7 + 5808: 11,-7 + 5809: 8,-7 + 6093: -13,-18 + 6094: -12,-18 + 6095: -11,-18 + 6101: -10,-19 + 6102: -9,-19 + 6103: -7,-19 + 6104: -6,-19 + 6105: -5,-19 + 6106: -2,-19 + 6107: -1,-19 + 6108: 0,-19 + 6109: 2,-19 + 6110: 4,-19 + 6111: 5,-19 + 6112: 6,-19 + 6113: 3,-19 + 6114: 7,-19 + 6115: 9,-19 + 6116: 10,-19 + 6117: 11,-19 + 6133: 16,-7 + 6134: 17,-7 + 6135: 18,-7 + 6146: 16,7 + 6147: 17,7 + 6148: 18,7 + 6149: -14,-19 + 6150: -15,-19 + 6151: -16,-19 + 6262: -5,-14 + 6275: -4,-18 + 6343: 3,-14 + 6380: 8,-18 + 6397: 12,-18 + 6398: 13,-18 + 6399: 14,-18 + 6413: 13,-15 + 6414: 13,-15 + 6642: -33,3 + 6643: -32,3 + 6712: -23,3 + 6819: -42,2 + 6904: -36,7 + 6912: -36,17 + 6913: -36,17 + 6920: -36,19 + 6921: -36,19 + 6924: -26,7 + 6925: -25,7 + 6935: -23,15 + 7041: 20,6 + 7042: 21,6 + 7048: 23,6 + 7049: 24,6 + 7050: 25,6 + 7077: 21,10 + 7078: 23,10 + 7084: 22,7 + 7096: 20,-10 + 7097: 21,-10 + 7098: 23,-10 + 7099: 24,-10 + 7100: 25,-10 + 7125: 27,-10 + 7126: 28,-10 + 7127: 29,-10 + 7128: 31,-10 + 7129: 30,-10 + 7136: 22,3 + 7154: 26,2 + 7155: 27,2 + 7156: 28,2 + 7157: 29,2 + 7161: 25,-7 + 7162: 27,-7 + 7163: 26,-7 + 7173: 30,-7 + 7174: 29,-7 + 7193: 30,3 + 7201: 27,6 + 7202: 28,6 + 7203: 30,6 + 7204: 31,6 + 7205: 32,6 + 7319: 29,12 + 7320: 30,12 + 7321: 31,12 + 7322: 31,12 + 7323: 32,12 + 7995: 79,-19 + 7996: 81,-19 + 7997: 80,-19 + 7998: 80,-19 + 7999: 77,-19 + 8000: 77,-19 + 8005: 77,-22 + 8022: 65,-22 + 8024: 65,-19 + 8104: 25,-13 + 8302: 41,-8 + 8303: 41,-8 + 8304: 40,-8 + 8305: 39,-8 + 8306: 38,-8 + 8307: 34,-8 + 8308: 34,-8 + 8309: 35,-8 + 8310: 37,-8 + 8311: 36,-8 + 8350: 39,-18 + 8351: 41,-18 + 8359: 40,-19 + 8393: 43,-19 + 8394: 44,-19 + 8395: 45,-19 + 8396: 45,-19 + 8397: 48,-19 + 8398: 49,-19 + 8399: 49,-19 + 8400: 50,-19 + 8401: 50,-19 8402: 50,-19 8403: 50,-19 - 8404: 50,-19 - 8405: 50,-19 - 8406: 51,-19 - 8407: 51,-19 - 8408: 53,-19 - 8409: 53,-19 - 8429: 44,-22 - 8430: 44,-22 - 8431: 48,-22 - 8432: 48,-22 - 8433: 52,-22 - 8658: 62,-10 - 8659: 57,-10 - 8662: 58,-11 - 8663: 59,-11 - 8664: 60,-11 - 8665: 56,-10 - 8796: -14,-22 - 8797: -13,-22 - 8798: -7,-22 - 8799: -7,-22 - 8800: -6,-22 - 8801: -2,-22 - 8802: -2,-22 - 8803: -1,-22 - 8804: 0,-22 - 8805: 4,-22 - 8806: 5,-22 - 8807: 11,-22 - 8808: 12,-22 - 8827: -2,-29 - 8828: -1,-29 - 8829: 0,-29 - 8874: -2,-37 - 8875: -1,-37 - 8876: 0,-37 - 8877: 0,-37 - 8922: -12,-24 - 8923: -11,-24 - 8924: -11,-24 - 8925: -10,-24 - 8926: -10,-24 - 8927: -9,-24 - 8928: -8,-24 - 8929: -16,-24 - 8930: -15,-24 - 8931: -5,-24 - 8932: -4,-24 - 8974: -4,-24 - 9175: 1,-64 - 9176: 1,-64 - 9205: -8,-64 - 9206: -8,-64 - 9207: -7,-64 - 9208: -7,-64 - 9209: -6,-64 - 9210: -6,-64 - 9211: -5,-64 - 9212: -5,-64 - 9213: -4,-64 - 9214: -4,-64 - 9215: -3,-64 - 9216: -9,-64 - 9272: -8,-75 - 9273: -7,-75 - 9274: -6,-75 - 9275: -2,-75 - 9276: -1,-75 - 9277: -3,-75 - 9278: -8,-69 - 9279: -8,-69 - 9280: -1,-69 - 9302: -2,-63 - 9303: -1,-63 - 9304: 0,-63 - 9387: -2,-57 - 9388: -1,-57 - 9389: -1,-57 - 9390: 0,-57 - 9454: -40,-14 - 9455: -41,-14 - 9456: -41,-14 - 10397: 3,-50 - 10398: 4,-50 - 10399: 4,-50 - 10400: 8,-50 - 10401: 9,-50 - 10402: 9,-50 - 10403: 10,-50 - 10404: 11,-50 - 10585: 4,-87 - 10610: 55,-43 - 10634: 44,-38 - 10635: 45,-38 - 10636: 46,-38 - 10637: 47,-38 - 10638: 48,-38 - 10663: 45,-46 - 11317: -77,-23 - 11334: -11,-79 - 11335: -6,-83 - 11336: -4,-83 - 11338: 2,-83 - 11343: -6,-87 - 11344: -4,-87 - 11345: 2,-87 - 11346: 2,-87 - 11427: -14,-30 - 11430: -15,-33 - 11431: -13,-33 - 11659: -15,-33 - 11660: -13,-33 - 11843: -39,-57 - 11844: -41,-51 - 11845: -41,-51 - 11846: -40,-51 - 11847: -40,-51 - 11848: -38,-51 - 11849: -38,-51 - 11873: -25,-50 - 12794: 5,70 - 12795: 6,70 - 12796: 7,70 - 12797: -7,66 - 12798: -6,66 - 12799: -5,66 - 12800: -4,66 - 12801: -3,66 - 12829: -7,59 - 12830: -6,59 - 12831: -4,59 - 12832: -4,59 - 12833: -3,59 - 12834: -5,59 - 12835: -20,59 - 12836: -21,59 - 12837: -19,59 - 12838: -19,59 - 12839: -17,59 - 12840: -18,59 - 12860: -13,70 - 12861: -12,70 - 12862: -11,70 - 12863: -29,70 - 12864: -30,70 - 12865: -31,70 - 12866: -21,66 - 12867: -20,66 - 12868: -19,66 - 12869: -18,66 - 12870: -18,66 - 12871: -17,66 - 12872: -17,66 - 13422: -37,-64 - 14465: -17,24 - 14466: -16,24 - 14467: -15,24 - 14468: -14,24 - 14469: -13,24 - 14470: -12,24 - 14471: -11,24 - 14472: -10,24 - 14929: -7,24 - 14930: -6,24 - 14931: -5,24 - 14932: -4,24 - 14933: -3,24 - 14934: -2,24 - 14935: -1,24 - 14936: 1,24 - 14937: 2,24 - 14938: 3,24 - 14945: 9,24 - 14946: 10,24 - 14947: 11,24 - 14948: 12,24 - 14949: 12,24 - 14950: 13,24 - 14951: 17,24 - 14952: 18,24 - 14973: -20,21 - 14974: -19,21 - 14975: -18,21 - 15042: 16,21 - 15043: 17,21 - 15044: 18,21 - 15373: -5,-75 - 15374: -4,-75 - 15422: -43,7 - 15423: -42,7 - 15424: -41,7 - 15601: 77,2 - 15799: 79,2 - 15800: 80,2 - 15801: 81,2 - 15802: 82,2 - 15803: 83,2 - 15804: 87,2 - 15805: 88,2 - 15806: 89,2 - 15808: 81,-1 - 15809: 85,-1 - 15810: 89,-1 - 15811: 84,2 - 15812: 85,2 - 15813: 86,2 - 16407: -60,-48 - 16698: -60,-12 - 16699: -59,-12 - 16700: -57,-12 - 16726: -56,-12 - 16730: -58,-11 - 16733: -56,-19 - 16736: -56,-19 - 16737: -54,-19 - 16743: -61,-17 - 16787: -58,-5 - 16820: -53,3 - 16821: -52,3 - 16822: -53,7 - 16823: -52,7 - 16834: -53,3 - 16835: -52,3 - 16838: -53,7 - 16839: -52,7 - 16851: -50,-1 - 17937: -45,23 - 18440: -60,-44 - 18449: -60,-44 - 18478: -13,-12 - 18479: -13,-12 - 18480: -15,-12 - 18481: -11,-12 - 18482: -12,-12 - 18512: -14,-11 - 18513: -10,-11 - 18546: 8,-11 - 18548: 7,-12 - 18549: 9,-12 - 18809: 4,-8 - 18810: 3,-8 - 19916: -27,9 - 19917: -26,9 - 19918: -25,9 - 19919: -25,9 - 19920: -24,9 - 19921: -24,9 - 19926: -24,15 - 19927: -28,15 - 19928: -27,15 - 20042: -16,4 - 20082: 70,26 - 20083: 69,26 - 20110: 63,26 - 20111: 68,26 - 20179: -20,-7 - 20180: -19,-7 - 20181: -18,-7 - 20182: -20,7 - 20183: -19,7 - 20184: -18,7 - 21384: 22,10 + 8404: 51,-19 + 8405: 51,-19 + 8406: 53,-19 + 8407: 53,-19 + 8427: 44,-22 + 8428: 44,-22 + 8429: 48,-22 + 8430: 48,-22 + 8431: 52,-22 + 8656: 62,-10 + 8657: 57,-10 + 8660: 58,-11 + 8661: 59,-11 + 8662: 60,-11 + 8663: 56,-10 + 8794: -14,-22 + 8795: -13,-22 + 8796: -7,-22 + 8797: -7,-22 + 8798: -6,-22 + 8799: -2,-22 + 8800: -2,-22 + 8801: -1,-22 + 8802: 0,-22 + 8803: 4,-22 + 8804: 5,-22 + 8805: 11,-22 + 8806: 12,-22 + 8825: -2,-29 + 8826: -1,-29 + 8827: 0,-29 + 8872: -2,-37 + 8873: -1,-37 + 8874: 0,-37 + 8875: 0,-37 + 8920: -12,-24 + 8921: -11,-24 + 8922: -11,-24 + 8923: -10,-24 + 8924: -10,-24 + 8925: -9,-24 + 8926: -8,-24 + 8927: -16,-24 + 8928: -15,-24 + 8929: -5,-24 + 8930: -4,-24 + 8972: -4,-24 + 9173: 1,-64 + 9174: 1,-64 + 9203: -8,-64 + 9204: -8,-64 + 9205: -7,-64 + 9206: -7,-64 + 9207: -6,-64 + 9208: -6,-64 + 9209: -5,-64 + 9210: -5,-64 + 9211: -4,-64 + 9212: -4,-64 + 9213: -3,-64 + 9214: -9,-64 + 9270: -8,-75 + 9271: -7,-75 + 9272: -6,-75 + 9273: -2,-75 + 9274: -1,-75 + 9275: -3,-75 + 9276: -8,-69 + 9277: -8,-69 + 9278: -1,-69 + 9300: -2,-63 + 9301: -1,-63 + 9302: 0,-63 + 9385: -2,-57 + 9386: -1,-57 + 9387: -1,-57 + 9388: 0,-57 + 9452: -40,-14 + 9453: -41,-14 + 9454: -41,-14 + 10395: 3,-50 + 10396: 4,-50 + 10397: 4,-50 + 10398: 8,-50 + 10399: 9,-50 + 10400: 9,-50 + 10401: 10,-50 + 10402: 11,-50 + 10583: 4,-87 + 10608: 55,-43 + 10632: 44,-38 + 10633: 45,-38 + 10634: 46,-38 + 10635: 47,-38 + 10636: 48,-38 + 10661: 45,-46 + 11315: -77,-23 + 11332: -11,-79 + 11333: -6,-83 + 11334: -4,-83 + 11336: 2,-83 + 11341: -6,-87 + 11342: -4,-87 + 11343: 2,-87 + 11344: 2,-87 + 11425: -14,-30 + 11428: -15,-33 + 11429: -13,-33 + 11657: -15,-33 + 11658: -13,-33 + 11841: -39,-57 + 11842: -41,-51 + 11843: -41,-51 + 11844: -40,-51 + 11845: -40,-51 + 11846: -38,-51 + 11847: -38,-51 + 11871: -25,-50 + 12792: 5,70 + 12793: 6,70 + 12794: 7,70 + 12795: -7,66 + 12796: -6,66 + 12797: -5,66 + 12798: -4,66 + 12799: -3,66 + 12827: -7,59 + 12828: -6,59 + 12829: -4,59 + 12830: -4,59 + 12831: -3,59 + 12832: -5,59 + 12833: -20,59 + 12834: -21,59 + 12835: -19,59 + 12836: -19,59 + 12837: -17,59 + 12838: -18,59 + 12858: -13,70 + 12859: -12,70 + 12860: -11,70 + 12861: -29,70 + 12862: -30,70 + 12863: -31,70 + 12864: -21,66 + 12865: -20,66 + 12866: -19,66 + 12867: -18,66 + 12868: -18,66 + 12869: -17,66 + 12870: -17,66 + 13420: -37,-64 + 14463: -17,24 + 14464: -16,24 + 14465: -15,24 + 14466: -14,24 + 14467: -13,24 + 14468: -12,24 + 14469: -11,24 + 14470: -10,24 + 14927: -7,24 + 14928: -6,24 + 14929: -5,24 + 14930: -4,24 + 14931: -3,24 + 14932: -2,24 + 14933: -1,24 + 14934: 1,24 + 14935: 2,24 + 14936: 3,24 + 14943: 9,24 + 14944: 10,24 + 14945: 11,24 + 14946: 12,24 + 14947: 12,24 + 14948: 13,24 + 14949: 17,24 + 14950: 18,24 + 14971: -20,21 + 14972: -19,21 + 14973: -18,21 + 15040: 16,21 + 15041: 17,21 + 15042: 18,21 + 15371: -5,-75 + 15372: -4,-75 + 15420: -43,7 + 15421: -42,7 + 15422: -41,7 + 15599: 77,2 + 15797: 79,2 + 15798: 80,2 + 15799: 81,2 + 15800: 82,2 + 15801: 83,2 + 15802: 87,2 + 15803: 88,2 + 15804: 89,2 + 15806: 81,-1 + 15807: 85,-1 + 15808: 89,-1 + 15809: 84,2 + 15810: 85,2 + 15811: 86,2 + 16405: -60,-48 + 16696: -60,-12 + 16697: -59,-12 + 16698: -57,-12 + 16724: -56,-12 + 16728: -58,-11 + 16731: -56,-19 + 16734: -56,-19 + 16735: -54,-19 + 16741: -61,-17 + 16785: -58,-5 + 16818: -53,3 + 16819: -52,3 + 16820: -53,7 + 16821: -52,7 + 16832: -53,3 + 16833: -52,3 + 16836: -53,7 + 16837: -52,7 + 16849: -50,-1 + 17935: -45,23 + 18438: -60,-44 + 18447: -60,-44 + 18476: -13,-12 + 18477: -13,-12 + 18478: -15,-12 + 18479: -11,-12 + 18480: -12,-12 + 18510: -14,-11 + 18511: -10,-11 + 18544: 8,-11 + 18546: 7,-12 + 18547: 9,-12 + 18807: 4,-8 + 18808: 3,-8 + 19914: -27,9 + 19915: -26,9 + 19916: -25,9 + 19917: -25,9 + 19918: -24,9 + 19919: -24,9 + 19924: -24,15 + 19925: -28,15 + 19926: -27,15 + 20040: -16,4 + 20080: 70,26 + 20081: 69,26 + 20108: 63,26 + 20109: 68,26 + 20177: -20,-7 + 20178: -19,-7 + 20179: -18,-7 + 20180: -20,7 + 20181: -19,7 + 20182: -18,7 + 21382: 22,10 - node: cleanable: True color: '#FFFFFFFF' @@ -9342,870 +9337,870 @@ entities: 898: 26,-2 917: 29,1 926: 27,-2 - 4052: -20,25 - 4053: -19,25 - 4054: -18,25 - 4120: 4,25 - 4121: 5,25 - 4122: 7,25 - 4123: 8,25 + 4050: -20,25 + 4051: -19,25 + 4052: -18,25 + 4118: 4,25 + 4119: 5,25 + 4120: 7,25 + 4121: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineS decals: - 8120: 21,-16 - 8121: 26,-16 - 8122: 28,-16 - 8128: 25,-13 - 8130: 30,-16 - 8135: 27,-17 - 8136: 29,-17 - 8137: 31,-17 + 8118: 21,-16 + 8119: 26,-16 + 8120: 28,-16 + 8126: 25,-13 + 8128: 30,-16 + 8133: 27,-17 + 8134: 29,-17 + 8135: 31,-17 - node: color: '#00FFFFFF' id: BrickTileSteelLineS decals: - 3736: -25,65 - 3747: -25,66 - 3767: -27,60 - 10248: 37,-25 - 10257: 36,-26 - 10679: 70,-50 - 15784: 77,4 - 15785: 77,4 + 3734: -25,65 + 3745: -25,66 + 3765: -27,60 + 10246: 37,-25 + 10255: 36,-26 + 10677: 70,-50 + 15782: 77,4 + 15783: 77,4 - node: color: '#8BC9DAFF' id: BrickTileSteelLineS decals: - 3687: 6,66 - 3928: 20,61 + 3685: 6,66 + 3926: 20,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineS decals: - 10146: 21,-49 - 10147: 23,-49 - 10221: 33,-53 + 10144: 21,-49 + 10145: 23,-49 + 10219: 33,-53 - node: color: '#A9DA8BFF' id: BrickTileSteelLineS decals: - 2864: -25,47 + 2862: -25,47 - node: color: '#B18BDAFF' id: BrickTileSteelLineS decals: - 11957: -30,-32 - 11958: -28,-32 - 11959: -27,-32 - 12006: -42,-25 - 12007: -38,-25 - 12008: -34,-25 - 12027: -36,-29 - 12028: -40,-29 - 12056: -46,-24 - 12065: -48,-31 - 12066: -47,-31 - 12067: -46,-31 - 12079: -47,-23 - 12111: -28,-47 - 12112: -27,-47 - 12113: -26,-47 - 12114: -25,-47 - 12127: -29,-43 - 12128: -24,-43 - 12173: -25,-42 - 12190: -29,-37 - 12191: -24,-37 - 16166: -65,-48 - 16167: -64,-48 - 16168: -62,-48 - 19798: -9,-40 - 19799: -8,-40 - 19800: -7,-40 - 19801: -7,-40 - 19802: -6,-40 - 19823: -9,-39 - 19824: -8,-39 - 19825: -8,-39 - 19826: -7,-39 - 19827: -6,-39 - 19830: -9,-40 - 19831: -8,-40 - 19832: -7,-40 - 19833: -7,-40 - 19834: -6,-40 - 19836: -29,-25 + 11955: -30,-32 + 11956: -28,-32 + 11957: -27,-32 + 12004: -42,-25 + 12005: -38,-25 + 12006: -34,-25 + 12025: -36,-29 + 12026: -40,-29 + 12054: -46,-24 + 12063: -48,-31 + 12064: -47,-31 + 12065: -46,-31 + 12077: -47,-23 + 12109: -28,-47 + 12110: -27,-47 + 12111: -26,-47 + 12112: -25,-47 + 12125: -29,-43 + 12126: -24,-43 + 12171: -25,-42 + 12188: -29,-37 + 12189: -24,-37 + 16164: -65,-48 + 16165: -64,-48 + 16166: -62,-48 + 19796: -9,-40 + 19797: -8,-40 + 19798: -7,-40 + 19799: -7,-40 + 19800: -6,-40 + 19821: -9,-39 + 19822: -8,-39 + 19823: -8,-39 + 19824: -7,-39 + 19825: -6,-39 + 19828: -9,-40 + 19829: -8,-40 + 19830: -7,-40 + 19831: -7,-40 + 19832: -6,-40 + 19834: -29,-25 - node: color: '#CEDA8BFF' id: BrickTileSteelLineS decals: - 10963: 27,-70 - 10964: 28,-70 - 10965: 29,-70 - 10966: 30,-70 - 10967: 31,-70 + 10961: 27,-70 + 10962: 28,-70 + 10963: 29,-70 + 10964: 30,-70 + 10965: 31,-70 - node: color: '#DA8B8BFF' id: BrickTileSteelLineS decals: - 7817: 68,5 - 7818: 69,5 - 7819: 70,5 - 7848: 66,6 - 7849: 69,7 - 7850: 62,6 - 7851: 58,6 - 19287: 57,4 - 19288: 59,4 - 19289: 61,4 - 19290: 63,4 - 19291: 65,4 + 7815: 68,5 + 7816: 69,5 + 7817: 70,5 + 7846: 66,6 + 7847: 69,7 + 7848: 62,6 + 7849: 58,6 + 19285: 57,4 + 19286: 59,4 + 19287: 61,4 + 19288: 63,4 + 19289: 65,4 - node: color: '#DA8BC9FF' id: BrickTileSteelLineS decals: - 3932: 21,61 + 3930: 21,61 - node: color: '#DAA58BFF' id: BrickTileSteelLineS decals: - 4526: 10,38 - 4527: 5,38 + 4524: 10,38 + 4525: 5,38 - node: color: '#DABC8BFF' id: BrickTileSteelLineS decals: - 3654: 6,86 - 3713: 10,83 - 3717: 10,89 - 3722: 10,91 - 3723: 5,93 + 3652: 6,86 + 3711: 10,83 + 3715: 10,89 + 3720: 10,91 + 3721: 5,93 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 20334: -23,3 - 20341: -23,0 - 20342: -47,8 - 20361: 5,-82 - 20366: 7,-57 - 20367: 5,-63 - 20368: 5,-73 - 20369: 5,-79 - 20378: 4,-83 - 20385: 5,-79 - 20422: 4,-62 - 20423: 6,-62 - 20424: 7,-62 - 20425: 9,-75 - 20426: 8,-75 - 20427: 9,-78 - 20476: 13,-29 - 20481: 11,-29 - 20485: 11,-32 - 20486: 13,-32 - 20494: 11,-29 - 20495: 13,-29 - 20496: 13,33 - 20502: 12,30 - 20523: 3,60 - 20524: 1,60 - 20539: 41,3 - 20540: 42,3 - 20541: 43,3 - 20542: 44,3 - 20543: 45,3 - 20572: 40,10 - 20579: 36,10 - 20589: 37,8 - 20590: 36,4 - 20591: 37,4 - 20592: 48,-1 - 20593: 50,-1 - 20594: 51,-1 - 20595: 53,-1 - 20596: 54,-1 - 20597: 55,-1 - 20598: 58,-1 - 20599: 59,-1 - 20600: 60,-1 - 20601: 62,-1 - 20602: 63,-1 - 20603: 64,-1 - 20604: 66,-1 - 20605: 67,-1 - 20606: 72,-1 - 20607: 73,-1 - 20630: 73,4 - 20634: 74,21 - 20635: 75,21 - 20636: 76,21 - 20681: 46,10 - 20682: 47,10 - 20683: 48,10 - 20684: 80,9 - 20685: 82,9 - 20686: 82,9 - 20687: 83,9 - 20688: 84,9 - 20689: 81,9 - 20690: 85,9 - 20691: 86,9 - 20732: 52,20 - 20733: 57,20 - 20746: 51,21 - 20747: 50,21 + 20332: -23,3 + 20339: -23,0 + 20340: -47,8 + 20359: 5,-82 + 20364: 7,-57 + 20365: 5,-63 + 20366: 5,-73 + 20367: 5,-79 + 20376: 4,-83 + 20383: 5,-79 + 20420: 4,-62 + 20421: 6,-62 + 20422: 7,-62 + 20423: 9,-75 + 20424: 8,-75 + 20425: 9,-78 + 20474: 13,-29 + 20479: 11,-29 + 20483: 11,-32 + 20484: 13,-32 + 20492: 11,-29 + 20493: 13,-29 + 20494: 13,33 + 20500: 12,30 + 20521: 3,60 + 20522: 1,60 + 20537: 41,3 + 20538: 42,3 + 20539: 43,3 + 20540: 44,3 + 20541: 45,3 + 20570: 40,10 + 20577: 36,10 + 20587: 37,8 + 20588: 36,4 + 20589: 37,4 + 20590: 48,-1 + 20591: 50,-1 + 20592: 51,-1 + 20593: 53,-1 + 20594: 54,-1 + 20595: 55,-1 + 20596: 58,-1 + 20597: 59,-1 + 20598: 60,-1 + 20599: 62,-1 + 20600: 63,-1 + 20601: 64,-1 + 20602: 66,-1 + 20603: 67,-1 + 20604: 72,-1 + 20605: 73,-1 + 20628: 73,4 + 20632: 74,21 + 20633: 75,21 + 20634: 76,21 + 20679: 46,10 + 20680: 47,10 + 20681: 48,10 + 20682: 80,9 + 20683: 82,9 + 20684: 82,9 + 20685: 83,9 + 20686: 84,9 + 20687: 81,9 + 20688: 85,9 + 20689: 86,9 + 20730: 52,20 + 20731: 57,20 + 20744: 51,21 + 20745: 50,21 + 20746: 54,21 + 20747: 53,21 20748: 54,21 - 20749: 53,21 - 20750: 54,21 - 20751: 55,21 - 20752: 56,21 - 20753: 58,21 - 20778: 51,14 - 20781: 47,14 - 20784: 51,11 - 20785: 52,11 - 20786: 54,11 - 20787: 55,11 - 20788: 56,11 - 20789: 57,11 - 20790: 58,11 - 20791: 59,11 - 20816: 46,15 - 20854: 52,15 - 20855: 53,15 - 20859: 52,20 - 20860: 51,14 - 20873: 53,10 - 20915: 91,15 - 20916: 92,15 - 20917: 93,15 - 20922: 84,12 + 20749: 55,21 + 20750: 56,21 + 20751: 58,21 + 20776: 51,14 + 20779: 47,14 + 20782: 51,11 + 20783: 52,11 + 20784: 54,11 + 20785: 55,11 + 20786: 56,11 + 20787: 57,11 + 20788: 58,11 + 20789: 59,11 + 20814: 46,15 + 20852: 52,15 + 20853: 53,15 + 20857: 52,20 + 20858: 51,14 + 20871: 53,10 + 20913: 91,15 + 20914: 92,15 + 20915: 93,15 + 20920: 84,12 + 20921: 85,12 + 20922: 85,12 20923: 85,12 - 20924: 85,12 - 20925: 85,12 - 20926: 87,12 - 20927: 88,12 - 20928: 90,12 - 20929: 91,12 - 20930: 91,12 - 20931: 92,12 - 20932: 89,12 - 20933: 86,12 - 20936: 82,12 - 20941: 83,11 - 20952: 77,8 - 20984: 70,-1 - 20985: 69,-5 - 20986: 70,-5 - 20992: 66,2 - 20993: 62,2 - 20994: 58,2 + 20924: 87,12 + 20925: 88,12 + 20926: 90,12 + 20927: 91,12 + 20928: 91,12 + 20929: 92,12 + 20930: 89,12 + 20931: 86,12 + 20934: 82,12 + 20939: 83,11 + 20950: 77,8 + 20982: 70,-1 + 20983: 69,-5 + 20984: 70,-5 + 20990: 66,2 + 20991: 62,2 + 20992: 58,2 + 21008: 73,20 21010: 73,20 - 21012: 73,20 - 21034: 75,24 - 21035: 75,26 - 21075: 69,-2 - 21084: 47,-2 - 21090: 47,-2 - 21093: 52,-2 - 21094: 52,-5 - 21095: 56,-5 - 21096: 57,-5 - 21133: 40,2 - 21134: 40,-1 - 21145: 36,7 - 21146: 34,4 - 21186: 51,3 - 21187: 52,3 - 21188: 53,3 - 21189: 54,3 - 21203: 58,2 - 21204: 62,2 - 21205: 66,2 - 21220: 76,-4 - 21242: -19,-28 - 21252: 46,-5 - 21253: 47,-5 - 21261: 51,-6 - 21266: 47,-9 - 21267: 48,-9 - 21268: 49,-9 - 21269: 50,-9 - 21278: 56,-2 - 21282: 57,-1 - 21426: 21,23 - 21435: 21,21 - 21436: 22,21 - 21437: 23,21 - 21438: 24,21 - 21439: 25,21 - 21440: 26,21 - 21441: 26,21 - 21442: 27,21 + 21032: 75,24 + 21033: 75,26 + 21073: 69,-2 + 21082: 47,-2 + 21088: 47,-2 + 21091: 52,-2 + 21092: 52,-5 + 21093: 56,-5 + 21094: 57,-5 + 21131: 40,2 + 21132: 40,-1 + 21143: 36,7 + 21144: 34,4 + 21184: 51,3 + 21185: 52,3 + 21186: 53,3 + 21187: 54,3 + 21201: 58,2 + 21202: 62,2 + 21203: 66,2 + 21218: 76,-4 + 21240: -19,-28 + 21250: 46,-5 + 21251: 47,-5 + 21259: 51,-6 + 21264: 47,-9 + 21265: 48,-9 + 21266: 49,-9 + 21267: 50,-9 + 21276: 56,-2 + 21280: 57,-1 + 21424: 21,23 + 21433: 21,21 + 21434: 22,21 + 21435: 23,21 + 21436: 24,21 + 21437: 25,21 + 21438: 26,21 + 21439: 26,21 + 21440: 27,21 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2224: -20,54 + 2222: -20,54 + 2223: -19,54 + 2224: -19,54 2225: -19,54 - 2226: -19,54 - 2227: -19,54 - 2228: -18,54 - 2229: -18,54 - 2234: -21,55 - 2294: -22,28 - 2295: -22,28 - 2299: -21,26 - 2318: -24,30 - 2321: -26,29 - 2382: -31,38 - 2392: -32,33 - 2744: -13,48 - 2745: -12,48 - 2746: -11,48 - 2747: -10,48 - 2748: -9,48 - 2749: -8,48 - 2750: -7,48 - 2751: -6,48 - 2752: -5,48 - 2753: -3,48 - 2754: -2,48 - 2762: -12,51 - 2763: -6,51 - 2782: -3,44 - 2794: -4,47 - 2805: -6,26 - 2825: -30,44 - 2826: -29,41 - 2827: -28,41 - 2828: -27,41 - 2829: -26,41 - 2832: -31,40 - 2833: -32,40 - 2838: -30,44 - 3033: -16,56 - 3034: -15,56 - 3035: -14,56 - 3036: -13,56 - 3037: -12,56 - 3038: -11,56 - 3039: -10,56 - 3040: -9,56 - 3041: -8,56 - 3042: -7,56 - 3043: -6,56 - 3044: -5,56 - 3045: -4,56 - 3046: -3,56 - 3053: 0,56 - 3054: -2,56 - 3172: -16,67 - 3173: -15,67 - 3174: -14,67 - 3175: -13,67 - 3176: -12,67 - 3177: -11,67 - 3178: -10,67 - 3179: -9,67 - 3180: -8,67 - 3426: -31,67 - 3427: -29,67 - 3428: -28,67 - 3429: -27,67 - 3430: -26,67 - 3431: -24,67 - 3432: -23,67 - 3433: -22,67 - 3440: 2,59 - 3452: -2,67 - 3536: -1,67 - 3537: 1,67 - 3538: 0,67 - 3539: 2,67 - 3540: 3,67 - 3541: 4,67 - 3542: 5,67 - 3543: 7,67 - 3575: -15,77 - 3577: -9,77 - 3584: -15,84 - 3585: -9,84 - 3588: -12,97 - 3595: -27,84 - 3598: -33,84 - 3605: -33,77 - 3606: -27,77 - 3669: 3,84 - 3670: 3,77 - 4457: 14,25 - 4458: 15,25 - 4459: 16,25 - 5120: 31,29 - 5131: 30,30 - 5135: 32,30 - 5136: 33,30 - 5137: 34,30 - 5141: 36,30 - 5145: 35,33 - 5149: 35,29 - 5440: -24,4 - 5453: -31,4 - 5454: -30,4 - 5455: -30,4 - 5456: -29,4 - 5457: -28,4 - 5458: -26,4 - 5459: -25,4 - 5460: -27,4 - 5463: -22,4 - 5464: -35,4 - 5465: -36,4 - 5466: -38,4 - 5467: -39,4 - 5468: -37,4 - 5469: -34,4 - 5538: -20,7 - 5539: -19,7 - 5540: -18,7 - 5551: -20,-7 - 5552: -19,-7 - 5553: -18,-7 - 5651: 10,-7 - 5652: 11,-7 - 5653: 8,-7 - 5789: 12,-3 - 5798: 13,-6 - 5799: 12,-6 - 5800: 9,-6 - 5812: -1,-7 - 5818: -10,-7 - 6080: -15,-17 - 6081: -14,-17 - 6088: -10,-17 - 6098: -13,-18 - 6099: -12,-18 - 6100: -11,-18 - 6138: 16,-7 - 6139: 17,-7 - 6140: 18,-7 - 6145: 16,7 - 6146: 17,7 - 6147: 18,7 - 6160: -16,-21 - 6161: -15,-21 - 6162: -12,-21 - 6163: -11,-21 - 6164: -10,-21 - 6165: -9,-21 - 6166: -9,-21 - 6167: -8,-21 - 6168: -5,-21 - 6169: -4,-21 - 6268: -5,-17 - 6269: -4,-13 - 6278: -4,-18 - 6293: 2,-21 - 6294: 3,-21 - 6295: 6,-21 - 6296: 7,-21 - 6297: 8,-21 - 6298: 9,-21 - 6299: 10,-21 - 6300: 13,-21 - 6301: 14,-21 - 6321: 16,-21 - 6322: 17,-21 - 6346: 2,-13 - 6348: 3,-17 - 6349: 2,-17 - 6378: 9,-17 - 6379: 7,-17 - 6395: 12,-18 - 6396: 13,-18 - 6397: 13,-18 - 6398: 14,-18 - 6417: 8,-18 - 6442: -18,-21 - 6443: -19,-21 - 6444: -19,-21 - 6802: -26,7 - 6803: -25,7 - 6804: -31,7 - 6805: -36,7 - 6822: -37,8 - 6913: -36,17 - 6928: -24,8 - 6929: -23,8 - 6940: -26,16 - 6941: -26,16 - 6960: -27,8 - 6961: -27,8 - 7045: 20,4 - 7046: 21,4 - 7047: 23,4 - 7048: 24,4 - 7049: 25,4 - 7071: 21,8 - 7072: 23,8 - 7085: 22,7 - 7103: 20,-12 - 7104: 21,-12 + 2226: -18,54 + 2227: -18,54 + 2232: -21,55 + 2292: -22,28 + 2293: -22,28 + 2297: -21,26 + 2316: -24,30 + 2319: -26,29 + 2380: -31,38 + 2390: -32,33 + 2742: -13,48 + 2743: -12,48 + 2744: -11,48 + 2745: -10,48 + 2746: -9,48 + 2747: -8,48 + 2748: -7,48 + 2749: -6,48 + 2750: -5,48 + 2751: -3,48 + 2752: -2,48 + 2760: -12,51 + 2761: -6,51 + 2780: -3,44 + 2792: -4,47 + 2803: -6,26 + 2823: -30,44 + 2824: -29,41 + 2825: -28,41 + 2826: -27,41 + 2827: -26,41 + 2830: -31,40 + 2831: -32,40 + 2836: -30,44 + 3031: -16,56 + 3032: -15,56 + 3033: -14,56 + 3034: -13,56 + 3035: -12,56 + 3036: -11,56 + 3037: -10,56 + 3038: -9,56 + 3039: -8,56 + 3040: -7,56 + 3041: -6,56 + 3042: -5,56 + 3043: -4,56 + 3044: -3,56 + 3051: 0,56 + 3052: -2,56 + 3170: -16,67 + 3171: -15,67 + 3172: -14,67 + 3173: -13,67 + 3174: -12,67 + 3175: -11,67 + 3176: -10,67 + 3177: -9,67 + 3178: -8,67 + 3424: -31,67 + 3425: -29,67 + 3426: -28,67 + 3427: -27,67 + 3428: -26,67 + 3429: -24,67 + 3430: -23,67 + 3431: -22,67 + 3438: 2,59 + 3450: -2,67 + 3534: -1,67 + 3535: 1,67 + 3536: 0,67 + 3537: 2,67 + 3538: 3,67 + 3539: 4,67 + 3540: 5,67 + 3541: 7,67 + 3573: -15,77 + 3575: -9,77 + 3582: -15,84 + 3583: -9,84 + 3586: -12,97 + 3593: -27,84 + 3596: -33,84 + 3603: -33,77 + 3604: -27,77 + 3667: 3,84 + 3668: 3,77 + 4455: 14,25 + 4456: 15,25 + 4457: 16,25 + 5118: 31,29 + 5129: 30,30 + 5133: 32,30 + 5134: 33,30 + 5135: 34,30 + 5139: 36,30 + 5143: 35,33 + 5147: 35,29 + 5438: -24,4 + 5451: -31,4 + 5452: -30,4 + 5453: -30,4 + 5454: -29,4 + 5455: -28,4 + 5456: -26,4 + 5457: -25,4 + 5458: -27,4 + 5461: -22,4 + 5462: -35,4 + 5463: -36,4 + 5464: -38,4 + 5465: -39,4 + 5466: -37,4 + 5467: -34,4 + 5536: -20,7 + 5537: -19,7 + 5538: -18,7 + 5549: -20,-7 + 5550: -19,-7 + 5551: -18,-7 + 5649: 10,-7 + 5650: 11,-7 + 5651: 8,-7 + 5787: 12,-3 + 5796: 13,-6 + 5797: 12,-6 + 5798: 9,-6 + 5810: -1,-7 + 5816: -10,-7 + 6078: -15,-17 + 6079: -14,-17 + 6086: -10,-17 + 6096: -13,-18 + 6097: -12,-18 + 6098: -11,-18 + 6136: 16,-7 + 6137: 17,-7 + 6138: 18,-7 + 6143: 16,7 + 6144: 17,7 + 6145: 18,7 + 6158: -16,-21 + 6159: -15,-21 + 6160: -12,-21 + 6161: -11,-21 + 6162: -10,-21 + 6163: -9,-21 + 6164: -9,-21 + 6165: -8,-21 + 6166: -5,-21 + 6167: -4,-21 + 6266: -5,-17 + 6267: -4,-13 + 6276: -4,-18 + 6291: 2,-21 + 6292: 3,-21 + 6293: 6,-21 + 6294: 7,-21 + 6295: 8,-21 + 6296: 9,-21 + 6297: 10,-21 + 6298: 13,-21 + 6299: 14,-21 + 6319: 16,-21 + 6320: 17,-21 + 6344: 2,-13 + 6346: 3,-17 + 6347: 2,-17 + 6376: 9,-17 + 6377: 7,-17 + 6393: 12,-18 + 6394: 13,-18 + 6395: 13,-18 + 6396: 14,-18 + 6415: 8,-18 + 6440: -18,-21 + 6441: -19,-21 + 6442: -19,-21 + 6800: -26,7 + 6801: -25,7 + 6802: -31,7 + 6803: -36,7 + 6820: -37,8 + 6911: -36,17 + 6926: -24,8 + 6927: -23,8 + 6938: -26,16 + 6939: -26,16 + 6958: -27,8 + 6959: -27,8 + 7043: 20,4 + 7044: 21,4 + 7045: 23,4 + 7046: 24,4 + 7047: 25,4 + 7069: 21,8 + 7070: 23,8 + 7083: 22,7 + 7101: 20,-12 + 7102: 21,-12 + 7103: 23,-12 + 7104: 24,-12 7105: 23,-12 7106: 24,-12 - 7107: 23,-12 - 7108: 24,-12 - 7109: 22,-12 - 7122: 27,-12 - 7123: 28,-12 - 7124: 29,-12 - 7125: 30,-12 - 7126: 31,-12 - 7135: 22,-9 - 7169: 26,-8 - 7170: 25,-8 - 7171: 27,-8 - 7172: 29,-8 - 7173: 30,-8 - 7180: 30,-6 - 7181: 29,-6 - 7194: 30,3 - 7198: 29,4 - 7199: 28,4 - 7200: 27,4 - 7201: 31,4 - 7202: 32,4 - 7221: 22,7 - 7315: 29,12 - 7316: 30,12 - 7317: 30,12 - 7318: 31,12 - 7319: 32,12 - 7347: 29,7 - 7993: 77,-22 - 7994: 79,-22 - 7995: 80,-22 - 7996: 81,-22 - 8008: 77,-19 - 8023: 65,-22 - 8025: 65,-19 - 8185: 33,-16 - 8186: 34,-16 - 8187: 35,-16 - 8188: 36,-16 - 8189: 37,-16 - 8228: 33,-6 - 8289: 38,-16 - 8290: 40,-16 - 8351: 39,-18 - 8354: 41,-18 - 8376: 39,-21 - 8377: 40,-21 - 8378: 41,-21 - 8384: 43,-21 - 8385: 45,-21 - 8386: 46,-21 - 8387: 46,-21 - 8388: 47,-21 - 8389: 49,-21 - 8390: 50,-21 - 8391: 50,-21 - 8392: 51,-21 - 8393: 53,-21 - 8394: 53,-21 - 8413: 46,-18 - 8414: 46,-18 - 8415: 47,-18 - 8434: 52,-18 - 8435: 52,-18 - 8622: 56,-31 - 8623: 57,-31 - 8627: 58,-30 - 8628: 58,-30 - 8629: 59,-30 - 8630: 59,-30 - 8631: 60,-30 - 8632: 60,-30 - 8634: 62,-31 - 8819: -2,-22 - 8820: -1,-22 - 8821: 0,-22 - 8866: -2,-29 - 8867: -1,-29 - 8868: 0,-29 - 8869: -2,-37 - 8870: -2,-37 - 8871: -1,-37 - 8872: 0,-37 - 8873: 0,-37 - 8904: -12,-27 - 8905: -11,-27 - 8906: -10,-27 - 8907: -10,-27 - 8908: -9,-27 - 8909: -8,-27 - 8915: -16,-26 - 8916: -4,-26 - 8917: -4,-26 - 8981: -16,-26 - 9167: -2,-63 - 9168: -1,-63 - 9169: 0,-63 - 9184: -7,-65 - 9185: -7,-65 - 9186: -2,-65 - 9187: -6,-65 - 9188: -5,-65 - 9189: -4,-65 - 9190: -4,-65 - 9191: -3,-65 - 9192: -3,-65 - 9236: -10,-78 - 9242: -8,-82 - 9243: -7,-82 - 9244: -5,-82 - 9245: -3,-82 - 9246: -3,-82 - 9250: -2,-81 - 9251: -1,-81 - 9252: 0,-81 - 9253: 0,-81 - 9281: -8,-71 - 9282: -1,-71 - 9300: -5,-74 - 9301: -4,-74 - 9322: -2,-57 - 9323: -2,-57 - 9324: -1,-57 - 9325: -1,-57 - 9326: 0,-57 - 9327: 0,-57 - 9459: -41,-18 - 10405: 3,-52 - 10406: 4,-52 - 10407: 6,-52 - 10408: 6,-52 - 10409: 7,-52 - 10410: 7,-52 - 10411: 8,-52 - 10412: 8,-52 - 10413: 9,-52 - 10414: 9,-52 - 10415: 10,-52 - 10416: 10,-52 + 7107: 22,-12 + 7120: 27,-12 + 7121: 28,-12 + 7122: 29,-12 + 7123: 30,-12 + 7124: 31,-12 + 7133: 22,-9 + 7167: 26,-8 + 7168: 25,-8 + 7169: 27,-8 + 7170: 29,-8 + 7171: 30,-8 + 7178: 30,-6 + 7179: 29,-6 + 7192: 30,3 + 7196: 29,4 + 7197: 28,4 + 7198: 27,4 + 7199: 31,4 + 7200: 32,4 + 7219: 22,7 + 7313: 29,12 + 7314: 30,12 + 7315: 30,12 + 7316: 31,12 + 7317: 32,12 + 7345: 29,7 + 7991: 77,-22 + 7992: 79,-22 + 7993: 80,-22 + 7994: 81,-22 + 8006: 77,-19 + 8021: 65,-22 + 8023: 65,-19 + 8183: 33,-16 + 8184: 34,-16 + 8185: 35,-16 + 8186: 36,-16 + 8187: 37,-16 + 8226: 33,-6 + 8287: 38,-16 + 8288: 40,-16 + 8349: 39,-18 + 8352: 41,-18 + 8374: 39,-21 + 8375: 40,-21 + 8376: 41,-21 + 8382: 43,-21 + 8383: 45,-21 + 8384: 46,-21 + 8385: 46,-21 + 8386: 47,-21 + 8387: 49,-21 + 8388: 50,-21 + 8389: 50,-21 + 8390: 51,-21 + 8391: 53,-21 + 8392: 53,-21 + 8411: 46,-18 + 8412: 46,-18 + 8413: 47,-18 + 8432: 52,-18 + 8433: 52,-18 + 8620: 56,-31 + 8621: 57,-31 + 8625: 58,-30 + 8626: 58,-30 + 8627: 59,-30 + 8628: 59,-30 + 8629: 60,-30 + 8630: 60,-30 + 8632: 62,-31 + 8817: -2,-22 + 8818: -1,-22 + 8819: 0,-22 + 8864: -2,-29 + 8865: -1,-29 + 8866: 0,-29 + 8867: -2,-37 + 8868: -2,-37 + 8869: -1,-37 + 8870: 0,-37 + 8871: 0,-37 + 8902: -12,-27 + 8903: -11,-27 + 8904: -10,-27 + 8905: -10,-27 + 8906: -9,-27 + 8907: -8,-27 + 8913: -16,-26 + 8914: -4,-26 + 8915: -4,-26 + 8979: -16,-26 + 9165: -2,-63 + 9166: -1,-63 + 9167: 0,-63 + 9182: -7,-65 + 9183: -7,-65 + 9184: -2,-65 + 9185: -6,-65 + 9186: -5,-65 + 9187: -4,-65 + 9188: -4,-65 + 9189: -3,-65 + 9190: -3,-65 + 9234: -10,-78 + 9240: -8,-82 + 9241: -7,-82 + 9242: -5,-82 + 9243: -3,-82 + 9244: -3,-82 + 9248: -2,-81 + 9249: -1,-81 + 9250: 0,-81 + 9251: 0,-81 + 9279: -8,-71 + 9280: -1,-71 + 9298: -5,-74 + 9299: -4,-74 + 9320: -2,-57 + 9321: -2,-57 + 9322: -1,-57 + 9323: -1,-57 + 9324: 0,-57 + 9325: 0,-57 + 9457: -41,-18 + 10403: 3,-52 + 10404: 4,-52 + 10405: 6,-52 + 10406: 6,-52 + 10407: 7,-52 + 10408: 7,-52 + 10409: 8,-52 + 10410: 8,-52 + 10411: 9,-52 + 10412: 9,-52 + 10413: 10,-52 + 10414: 10,-52 + 10415: 11,-52 + 10416: 11,-52 10417: 11,-52 - 10418: 11,-52 - 10419: 11,-52 - 10420: 5,-52 - 10586: 4,-83 - 10612: 55,-44 - 10644: 46,-45 - 10645: 44,-45 - 10646: 44,-45 - 10647: 48,-45 - 11262: -59,-33 - 11268: -59,-40 - 11339: -6,-83 - 11340: -4,-83 - 11341: 2,-83 - 11342: 2,-83 - 11390: -10,-63 - 11426: -14,-32 - 11428: -15,-29 - 11429: -13,-29 - 11837: -38,-56 - 11838: -38,-56 - 11858: -37,-53 - 11859: -38,-53 - 11860: -39,-53 - 11861: -40,-53 - 11862: -40,-53 - 11879: -24,-54 - 11880: -25,-54 - 12159: -24,-49 - 12556: -21,-77 - 12791: 5,70 - 12792: 6,70 - 12793: 7,70 - 12802: -7,66 - 12803: -6,66 - 12804: -5,66 - 12805: -4,66 - 12806: -3,66 - 12807: -7,59 - 12824: -7,59 - 12825: -6,59 - 12826: -5,59 - 12827: -4,59 - 12828: -3,59 - 12841: -21,59 - 12842: -20,59 - 12843: -19,59 - 12844: -18,59 - 12845: -18,59 - 12846: -17,59 - 12847: -19,59 - 12848: -21,66 - 12849: -20,66 - 12850: -19,66 - 12851: -18,66 - 12852: -18,66 - 12853: -17,66 - 12854: -31,70 - 12855: -30,70 - 12856: -29,70 - 12857: -13,70 - 12858: -12,70 - 12859: -11,70 - 13419: -37,-59 - 14455: -17,22 - 14456: -16,22 - 14457: -15,22 - 14458: -15,22 - 14459: -14,22 - 14460: -12,22 - 14461: -11,22 - 14462: -13,22 - 14463: -10,22 - 14464: -9,22 - 14906: -7,22 - 14907: -6,22 - 14908: -5,22 - 14909: -4,22 - 14910: -2,22 - 14911: -2,22 - 14912: -3,22 - 14913: -1,22 - 14914: 0,22 - 14915: 1,22 - 14916: 2,22 - 14917: 3,22 - 14918: 4,22 - 14919: 5,22 - 14920: 7,22 - 14921: 8,22 - 14922: 9,22 - 14923: 10,22 - 14924: 11,22 - 14925: 12,22 - 14926: 13,22 - 14927: 14,22 - 14928: 15,22 - 14977: -20,25 - 14978: -19,25 - 14979: -18,25 - 14980: -20,21 - 14981: -19,21 - 14982: -18,21 - 15045: 16,21 - 15046: 17,21 - 15047: 18,21 - 15398: -43,4 - 15399: -42,4 - 15400: -41,4 - 15412: -43,7 - 15413: -42,7 - 15414: -41,7 - 15604: 77,0 - 15796: 78,3 - 15816: 86,0 - 15817: 87,0 - 15818: 88,0 - 15819: 84,0 - 15820: 83,0 - 15821: 82,0 - 15822: 80,0 - 15823: 79,0 - 15824: 78,0 - 16706: -58,-11 - 16707: -60,-15 - 16709: -59,-15 - 16710: -58,-15 - 16713: -60,-15 - 16714: -59,-15 - 16715: -57,-15 - 16716: -56,-15 - 16717: -58,-15 - 16718: -58,-15 - 16719: -57,-15 - 16720: -59,-15 + 10418: 5,-52 + 10584: 4,-83 + 10610: 55,-44 + 10642: 46,-45 + 10643: 44,-45 + 10644: 44,-45 + 10645: 48,-45 + 11260: -59,-33 + 11266: -59,-40 + 11337: -6,-83 + 11338: -4,-83 + 11339: 2,-83 + 11340: 2,-83 + 11388: -10,-63 + 11424: -14,-32 + 11426: -15,-29 + 11427: -13,-29 + 11835: -38,-56 + 11836: -38,-56 + 11856: -37,-53 + 11857: -38,-53 + 11858: -39,-53 + 11859: -40,-53 + 11860: -40,-53 + 11877: -24,-54 + 11878: -25,-54 + 12157: -24,-49 + 12554: -21,-77 + 12789: 5,70 + 12790: 6,70 + 12791: 7,70 + 12800: -7,66 + 12801: -6,66 + 12802: -5,66 + 12803: -4,66 + 12804: -3,66 + 12805: -7,59 + 12822: -7,59 + 12823: -6,59 + 12824: -5,59 + 12825: -4,59 + 12826: -3,59 + 12839: -21,59 + 12840: -20,59 + 12841: -19,59 + 12842: -18,59 + 12843: -18,59 + 12844: -17,59 + 12845: -19,59 + 12846: -21,66 + 12847: -20,66 + 12848: -19,66 + 12849: -18,66 + 12850: -18,66 + 12851: -17,66 + 12852: -31,70 + 12853: -30,70 + 12854: -29,70 + 12855: -13,70 + 12856: -12,70 + 12857: -11,70 + 13417: -37,-59 + 14453: -17,22 + 14454: -16,22 + 14455: -15,22 + 14456: -15,22 + 14457: -14,22 + 14458: -12,22 + 14459: -11,22 + 14460: -13,22 + 14461: -10,22 + 14462: -9,22 + 14904: -7,22 + 14905: -6,22 + 14906: -5,22 + 14907: -4,22 + 14908: -2,22 + 14909: -2,22 + 14910: -3,22 + 14911: -1,22 + 14912: 0,22 + 14913: 1,22 + 14914: 2,22 + 14915: 3,22 + 14916: 4,22 + 14917: 5,22 + 14918: 7,22 + 14919: 8,22 + 14920: 9,22 + 14921: 10,22 + 14922: 11,22 + 14923: 12,22 + 14924: 13,22 + 14925: 14,22 + 14926: 15,22 + 14975: -20,25 + 14976: -19,25 + 14977: -18,25 + 14978: -20,21 + 14979: -19,21 + 14980: -18,21 + 15043: 16,21 + 15044: 17,21 + 15045: 18,21 + 15396: -43,4 + 15397: -42,4 + 15398: -41,4 + 15410: -43,7 + 15411: -42,7 + 15412: -41,7 + 15602: 77,0 + 15794: 78,3 + 15814: 86,0 + 15815: 87,0 + 15816: 88,0 + 15817: 84,0 + 15818: 83,0 + 15819: 82,0 + 15820: 80,0 + 15821: 79,0 + 15822: 78,0 + 16704: -58,-11 + 16705: -60,-15 + 16707: -59,-15 + 16708: -58,-15 + 16711: -60,-15 + 16712: -59,-15 + 16713: -57,-15 + 16714: -56,-15 + 16715: -58,-15 + 16716: -58,-15 + 16717: -57,-15 + 16718: -59,-15 + 16725: -58,-11 16727: -58,-11 - 16729: -58,-11 - 16744: -61,-17 - 16784: -57,-4 - 16786: -58,-5 - 16828: -60,-4 - 16829: -59,-4 - 16832: -53,3 - 16833: -52,3 - 16836: -53,7 - 16837: -52,7 - 16854: -50,-4 - 17529: 6,86 - 17936: -45,23 - 18497: -15,-10 - 18498: -16,-10 - 18499: -13,-10 - 18500: -12,-10 - 18501: -11,-10 - 18502: -9,-10 - 18503: -8,-10 - 18504: -8,-10 - 18505: -7,-10 - 18506: -6,-10 - 18507: -5,-10 - 18510: -14,-11 - 18511: -10,-11 - 18522: 15,-10 - 18523: 14,-10 - 18524: 13,-10 - 18525: 12,-10 - 18526: 11,-10 - 18527: 10,-10 - 18528: 9,-10 - 18529: 5,-10 - 18530: 6,-10 - 18531: 7,-10 - 18532: 5,-10 - 18533: 4,-10 - 18534: 3,-10 - 18535: 2,-10 - 18536: 1,-10 - 18537: 0,-10 - 18538: -1,-10 - 18539: -2,-10 - 18540: -3,-10 - 18541: -4,-10 - 18542: -4,-10 - 18553: 8,-11 - 19905: -27,14 - 19906: -26,14 - 19907: -25,14 - 19908: -25,14 - 19909: -24,14 - 19910: -24,14 - 19929: -28,8 - 20088: 62,21 - 20089: 63,21 - 20090: 64,21 - 20091: 65,21 - 20092: 66,21 - 20093: 68,21 - 20094: 69,21 - 20095: 67,21 - 20121: 62,27 - 20122: 64,27 - 20123: 65,27 - 20124: 66,27 - 20125: 67,27 - 20163: -20,7 - 20164: -19,7 - 20165: -18,7 - 20207: -20,21 - 20208: -19,21 - 20209: -18,21 + 16742: -61,-17 + 16782: -57,-4 + 16784: -58,-5 + 16826: -60,-4 + 16827: -59,-4 + 16830: -53,3 + 16831: -52,3 + 16834: -53,7 + 16835: -52,7 + 16852: -50,-4 + 17527: 6,86 + 17934: -45,23 + 18495: -15,-10 + 18496: -16,-10 + 18497: -13,-10 + 18498: -12,-10 + 18499: -11,-10 + 18500: -9,-10 + 18501: -8,-10 + 18502: -8,-10 + 18503: -7,-10 + 18504: -6,-10 + 18505: -5,-10 + 18508: -14,-11 + 18509: -10,-11 + 18520: 15,-10 + 18521: 14,-10 + 18522: 13,-10 + 18523: 12,-10 + 18524: 11,-10 + 18525: 10,-10 + 18526: 9,-10 + 18527: 5,-10 + 18528: 6,-10 + 18529: 7,-10 + 18530: 5,-10 + 18531: 4,-10 + 18532: 3,-10 + 18533: 2,-10 + 18534: 1,-10 + 18535: 0,-10 + 18536: -1,-10 + 18537: -2,-10 + 18538: -3,-10 + 18539: -4,-10 + 18540: -4,-10 + 18551: 8,-11 + 19903: -27,14 + 19904: -26,14 + 19905: -25,14 + 19906: -25,14 + 19907: -24,14 + 19908: -24,14 + 19927: -28,8 + 20086: 62,21 + 20087: 63,21 + 20088: 64,21 + 20089: 65,21 + 20090: 66,21 + 20091: 68,21 + 20092: 69,21 + 20093: 67,21 + 20119: 62,27 + 20120: 64,27 + 20121: 65,27 + 20122: 66,27 + 20123: 67,27 + 20161: -20,7 + 20162: -19,7 + 20163: -18,7 + 20205: -20,21 + 20206: -19,21 + 20207: -18,21 - node: cleanable: True color: '#FFFFFFFF' @@ -10215,876 +10210,876 @@ entities: 900: 26,-2 921: 29,1 927: 27,-2 - 4049: -20,25 - 4050: -19,25 - 4051: -18,25 + 4047: -20,25 + 4048: -19,25 + 4049: -18,25 + 4100: 0,25 4102: 0,25 - 4104: 0,25 - 4105: 0,25 - 4106: -9,25 - 4107: -9,25 - 4116: 4,25 - 4117: 5,25 - 4118: 7,25 - 4119: 8,25 + 4103: 0,25 + 4104: -9,25 + 4105: -9,25 + 4114: 4,25 + 4115: 5,25 + 4116: 7,25 + 4117: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineW decals: - 8123: 24,-17 - 8124: 24,-16 - 8129: 32,-16 - 8149: 20,-15 - 8156: 23,-15 + 8121: 24,-17 + 8122: 24,-16 + 8127: 32,-16 + 8147: 20,-15 + 8154: 23,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineW decals: - 3737: -28,60 - 3738: -28,61 - 3739: -28,62 - 3740: -28,63 - 3741: -28,64 - 3758: -25,59 - 3759: -25,61 - 3760: -25,63 - 10255: 35,-26 - 10377: 13,-47 - 10678: 71,-50 - 15790: 77,5 + 3735: -28,60 + 3736: -28,61 + 3737: -28,62 + 3738: -28,63 + 3739: -28,64 + 3756: -25,59 + 3757: -25,61 + 3758: -25,63 + 10253: 35,-26 + 10375: 13,-47 + 10676: 71,-50 + 15788: 77,5 - node: color: '#8CB7E8FF' id: BrickTileSteelLineW decals: - 10061: 29,-24 - 10071: 28,-24 - 10072: 28,-23 - 10073: 28,-23 - 10083: 33,-23 - 10084: 33,-23 - 10151: 20,-48 - 10152: 20,-47 - 10207: 32,-52 - 10208: 32,-48 - 10209: 32,-50 + 10059: 29,-24 + 10069: 28,-24 + 10070: 28,-23 + 10071: 28,-23 + 10081: 33,-23 + 10082: 33,-23 + 10149: 20,-48 + 10150: 20,-47 + 10205: 32,-52 + 10206: 32,-48 + 10207: 32,-50 - node: color: '#A9DA8BFF' id: BrickTileSteelLineW decals: - 2865: -24,47 - 2866: -24,48 + 2863: -24,47 + 2864: -24,48 + 2865: -24,48 + 2866: -24,47 2867: -24,48 2868: -24,47 - 2869: -24,48 - 2870: -24,47 - 2992: -39,49 + 2990: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineW decals: - 11979: -31,-31 - 11980: -31,-30 - 11981: -31,-30 - 12045: -32,-29 - 12046: -32,-28 - 12047: -32,-27 - 12049: -44,-29 - 12050: -44,-28 - 12051: -44,-27 - 12061: -48,-27 - 12062: -48,-26 - 12063: -48,-30 - 12064: -48,-29 - 12115: -29,-46 - 12116: -29,-45 - 12117: -29,-44 - 12162: -30,-41 - 12163: -30,-40 - 12164: -26,-41 - 12165: -26,-40 - 12166: -26,-39 - 12341: -21,-43 - 12342: -21,-42 - 12343: -21,-41 - 12344: -21,-40 - 12345: -21,-39 - 12356: -16,-40 - 16164: -66,-47 - 16180: -61,-48 - 19803: -5,-43 - 19804: -5,-42 - 19805: -5,-42 - 19806: -5,-41 - 19822: -5,-40 + 11977: -31,-31 + 11978: -31,-30 + 11979: -31,-30 + 12043: -32,-29 + 12044: -32,-28 + 12045: -32,-27 + 12047: -44,-29 + 12048: -44,-28 + 12049: -44,-27 + 12059: -48,-27 + 12060: -48,-26 + 12061: -48,-30 + 12062: -48,-29 + 12113: -29,-46 + 12114: -29,-45 + 12115: -29,-44 + 12160: -30,-41 + 12161: -30,-40 + 12162: -26,-41 + 12163: -26,-40 + 12164: -26,-39 + 12339: -21,-43 + 12340: -21,-42 + 12341: -21,-41 + 12342: -21,-40 + 12343: -21,-39 + 12354: -16,-40 + 16162: -66,-47 + 16178: -61,-48 + 19801: -5,-43 + 19802: -5,-42 + 19803: -5,-42 + 19804: -5,-41 + 19820: -5,-40 - node: color: '#CEDA8BFF' id: BrickTileSteelLineW decals: - 10968: 26,-69 - 10971: 33,-68 + 10966: 26,-69 + 10969: 33,-68 - node: color: '#DA8B8BFF' id: BrickTileSteelLineW decals: - 7825: 64,4 - 7826: 64,5 - 7827: 60,4 - 7828: 60,5 - 7833: 60,4 - 7834: 60,5 - 7847: 71,6 - 19285: 58,3 - 19295: 62,3 - 19296: 66,3 - 19320: 69,8 - 19326: 66,8 - 19327: 66,7 - 19333: 62,7 - 19334: 62,8 - 19335: 62,9 - 19336: 58,7 - 19337: 58,8 + 7823: 64,4 + 7824: 64,5 + 7825: 60,4 + 7826: 60,5 + 7831: 60,4 + 7832: 60,5 + 7845: 71,6 + 19283: 58,3 + 19293: 62,3 + 19294: 66,3 + 19318: 69,8 + 19324: 66,8 + 19325: 66,7 + 19331: 62,7 + 19332: 62,8 + 19333: 62,9 + 19334: 58,7 + 19335: 58,8 - node: color: '#DAA58BFF' id: BrickTileSteelLineW decals: - 4524: 12,35 - 4525: 12,36 + 4522: 12,35 + 4523: 12,36 - node: color: '#DABC8BFF' id: BrickTileSteelLineW decals: - 3650: 9,75 - 3651: 9,76 - 3652: 9,80 - 3653: 9,81 - 3712: 13,78 - 3718: 12,87 - 15377: -49,9 + 3648: 9,75 + 3649: 9,76 + 3650: 9,80 + 3651: 9,81 + 3710: 13,78 + 3716: 12,87 + 15375: -49,9 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 20338: -24,1 - 20339: -24,0 - 20344: -45,9 - 20352: -48,8 - 20370: 4,-84 - 20371: 4,-85 - 20372: 4,-86 - 20379: 4,-82 - 20380: 4,-81 - 20432: 7,-77 - 20433: 7,-75 - 20435: 4,-77 - 20455: 3,-61 - 20456: 3,-59 - 20465: 4,-71 - 20466: 4,-70 - 20467: 4,-69 - 20468: 4,-68 - 20475: 15,-31 - 20491: 10,-31 - 20505: 12,31 - 20506: 4,64 - 20509: 4,60 - 20510: 0,63 - 20511: 0,62 - 20512: 0,64 - 20557: 39,12 - 20559: 39,5 - 20560: 46,7 - 20561: 46,6 - 20562: 46,9 - 20578: 38,8 - 20640: 79,9 - 20641: 75,9 - 20661: 43,12 - 20664: 45,12 - 20669: 46,11 - 20676: 49,8 - 20726: 60,25 - 20727: 48,23 - 20728: 48,22 - 20736: 49,30 - 20737: 49,29 - 20738: 49,28 - 20739: 49,27 - 20740: 49,26 - 20741: 49,24 - 20742: 49,25 - 20776: 49,16 - 20783: 49,12 - 20808: 45,23 - 20809: 45,22 - 20810: 45,21 - 20811: 45,19 - 20812: 45,18 - 20813: 45,18 - 20814: 45,17 - 20815: 45,16 - 20836: 58,19 - 20844: 56,18 - 20845: 56,16 - 20849: 50,17 - 20850: 50,18 - 20864: 61,12 - 20876: 49,8 - 20877: 49,4 - 20900: 91,16 - 20901: 91,17 - 20902: 91,18 - 20903: 91,19 - 20904: 91,20 - 20905: 91,22 - 20907: 94,21 - 20921: 94,13 - 20938: 81,13 - 20945: 79,9 - 20946: 75,9 - 20961: 72,7 - 20962: 72,8 - 20963: 72,8 - 20964: 72,9 - 20965: 72,10 - 20966: 72,11 - 20967: 72,12 - 20968: 72,14 - 20969: 72,14 - 20970: 72,15 - 20971: 72,16 - 20972: 72,16 - 20973: 72,17 - 20983: 71,-1 - 20988: 69,0 - 20989: 72,0 - 20995: 43,0 - 20996: 39,0 - 20997: 49,-1 - 20998: 49,0 - 20999: 49,1 - 21017: 72,22 - 21023: 77,22 - 21051: 68,1 - 21052: 68,-1 - 21053: 71,-1 - 21054: 71,1 - 21068: 72,-4 - 21071: 68,-4 - 21072: 72,-4 - 21100: 55,-4 - 21101: 50,-4 - 21116: 46,1 - 21117: 46,2 - 21128: 45,0 - 21141: 38,4 - 21142: 38,6 - 21149: 34,5 - 21162: 39,7 - 21173: 45,8 - 21174: 43,8 - 21193: 50,7 - 21194: 50,6 - 21195: 50,6 - 21196: 50,5 - 21218: 75,-4 - 21223: 76,-3 - 21226: 75,-4 - 21228: 72,-4 - 21229: -20,-25 - 21230: -20,-27 - 21232: -17,-24 - 21246: 4,-65 - 21256: 45,-4 - 21287: 72,2 + 20336: -24,1 + 20337: -24,0 + 20342: -45,9 + 20350: -48,8 + 20368: 4,-84 + 20369: 4,-85 + 20370: 4,-86 + 20377: 4,-82 + 20378: 4,-81 + 20430: 7,-77 + 20431: 7,-75 + 20433: 4,-77 + 20453: 3,-61 + 20454: 3,-59 + 20463: 4,-71 + 20464: 4,-70 + 20465: 4,-69 + 20466: 4,-68 + 20473: 15,-31 + 20489: 10,-31 + 20503: 12,31 + 20504: 4,64 + 20507: 4,60 + 20508: 0,63 + 20509: 0,62 + 20510: 0,64 + 20555: 39,12 + 20557: 39,5 + 20558: 46,7 + 20559: 46,6 + 20560: 46,9 + 20576: 38,8 + 20638: 79,9 + 20639: 75,9 + 20659: 43,12 + 20662: 45,12 + 20667: 46,11 + 20674: 49,8 + 20724: 60,25 + 20725: 48,23 + 20726: 48,22 + 20734: 49,30 + 20735: 49,29 + 20736: 49,28 + 20737: 49,27 + 20738: 49,26 + 20739: 49,24 + 20740: 49,25 + 20774: 49,16 + 20781: 49,12 + 20806: 45,23 + 20807: 45,22 + 20808: 45,21 + 20809: 45,19 + 20810: 45,18 + 20811: 45,18 + 20812: 45,17 + 20813: 45,16 + 20834: 58,19 + 20842: 56,18 + 20843: 56,16 + 20847: 50,17 + 20848: 50,18 + 20862: 61,12 + 20874: 49,8 + 20875: 49,4 + 20898: 91,16 + 20899: 91,17 + 20900: 91,18 + 20901: 91,19 + 20902: 91,20 + 20903: 91,22 + 20905: 94,21 + 20919: 94,13 + 20936: 81,13 + 20943: 79,9 + 20944: 75,9 + 20959: 72,7 + 20960: 72,8 + 20961: 72,8 + 20962: 72,9 + 20963: 72,10 + 20964: 72,11 + 20965: 72,12 + 20966: 72,14 + 20967: 72,14 + 20968: 72,15 + 20969: 72,16 + 20970: 72,16 + 20971: 72,17 + 20981: 71,-1 + 20986: 69,0 + 20987: 72,0 + 20993: 43,0 + 20994: 39,0 + 20995: 49,-1 + 20996: 49,0 + 20997: 49,1 + 21015: 72,22 + 21021: 77,22 + 21049: 68,1 + 21050: 68,-1 + 21051: 71,-1 + 21052: 71,1 + 21066: 72,-4 + 21069: 68,-4 + 21070: 72,-4 + 21098: 55,-4 + 21099: 50,-4 + 21114: 46,1 + 21115: 46,2 + 21126: 45,0 + 21139: 38,4 + 21140: 38,6 + 21147: 34,5 + 21160: 39,7 + 21171: 45,8 + 21172: 43,8 + 21191: 50,7 + 21192: 50,6 + 21193: 50,6 + 21194: 50,5 + 21216: 75,-4 + 21221: 76,-3 + 21224: 75,-4 + 21226: 72,-4 + 21227: -20,-25 + 21228: -20,-27 + 21230: -17,-24 + 21244: 4,-65 + 21254: 45,-4 + 21285: 72,2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 2253: -14,48 - 2254: -14,50 - 2256: -23,49 - 2260: -23,46 - 2268: -24,43 - 2269: -24,44 - 2273: -24,42 - 2278: -14,46 - 2279: -14,45 - 2280: -14,43 - 2281: -14,44 - 2282: -14,42 - 2283: -14,41 - 2284: -14,40 - 2285: -14,39 - 2286: -14,38 - 2287: -14,37 - 2288: -14,36 - 2293: -23,29 - 2296: -21,27 - 2297: -21,27 - 2325: -27,31 - 2383: -29,36 - 2384: -29,35 - 2385: -29,34 - 2398: -34,37 - 2399: -34,36 - 2400: -34,35 - 2401: -34,34 - 2402: -34,33 - 2415: -14,46 - 2417: -14,36 - 2473: -14,46 - 2585: -14,46 - 2586: -14,36 - 2731: -13,49 - 2764: -2,51 - 2769: -1,48 - 3079: -7,59 - 3157: -7,60 - 3158: -7,61 - 3159: -7,62 - 3160: -7,63 - 3161: -7,64 - 3162: -7,65 - 3181: -7,66 - 3184: -21,59 - 3185: -21,60 - 3186: -21,61 - 3187: -21,61 - 3188: -21,62 - 3189: -21,63 - 3190: -21,64 - 3191: -21,65 - 3192: -21,65 - 3193: -21,66 - 3317: -32,68 - 3319: -31,70 - 3320: -31,71 - 3321: -31,72 - 3322: -31,73 - 3323: -31,74 - 3324: -31,75 - 3325: -31,76 - 3326: -31,78 - 3327: -31,83 - 3328: -31,85 - 3329: -31,86 - 3330: -32,90 - 3331: -32,89 - 3332: -32,91 - 3333: -31,93 - 3334: -31,94 - 3335: -31,95 - 3373: -13,70 - 3374: -13,71 - 3375: -13,72 - 3376: -13,73 - 3377: -13,74 - 3378: -13,75 - 3379: -13,76 - 3380: -13,78 - 3381: -14,80 - 3382: -14,81 - 3383: -13,83 - 3384: -13,85 - 3385: -13,86 - 3386: -13,87 - 3387: -14,89 - 3388: -14,90 - 3389: -14,91 - 3390: -13,93 - 3391: -13,94 - 3392: -13,95 - 3481: -32,81 - 3482: -32,80 - 3507: -14,90 - 3560: -21,58 - 3561: -21,57 - 3562: -21,56 - 3569: -10,77 - 3571: -8,77 - 3573: -14,77 - 3581: -8,84 - 3582: -10,84 - 3583: -14,84 - 3589: -32,84 - 3590: -28,84 - 3593: -26,84 - 3602: -32,77 - 3603: -28,77 - 3604: -26,77 - 3622: 5,70 - 3623: 5,71 - 3624: 5,72 - 3625: 5,73 - 3626: 5,74 - 3627: 5,75 - 3628: 5,75 - 3629: 5,76 - 3630: 5,78 - 3631: 4,80 - 3632: 4,81 - 3633: 5,83 - 3661: 4,77 + 2251: -14,48 + 2252: -14,50 + 2254: -23,49 + 2258: -23,46 + 2266: -24,43 + 2267: -24,44 + 2271: -24,42 + 2276: -14,46 + 2277: -14,45 + 2278: -14,43 + 2279: -14,44 + 2280: -14,42 + 2281: -14,41 + 2282: -14,40 + 2283: -14,39 + 2284: -14,38 + 2285: -14,37 + 2286: -14,36 + 2291: -23,29 + 2294: -21,27 + 2295: -21,27 + 2323: -27,31 + 2381: -29,36 + 2382: -29,35 + 2383: -29,34 + 2396: -34,37 + 2397: -34,36 + 2398: -34,35 + 2399: -34,34 + 2400: -34,33 + 2413: -14,46 + 2415: -14,36 + 2471: -14,46 + 2583: -14,46 + 2584: -14,36 + 2729: -13,49 + 2762: -2,51 + 2767: -1,48 + 3077: -7,59 + 3155: -7,60 + 3156: -7,61 + 3157: -7,62 + 3158: -7,63 + 3159: -7,64 + 3160: -7,65 + 3179: -7,66 + 3182: -21,59 + 3183: -21,60 + 3184: -21,61 + 3185: -21,61 + 3186: -21,62 + 3187: -21,63 + 3188: -21,64 + 3189: -21,65 + 3190: -21,65 + 3191: -21,66 + 3315: -32,68 + 3317: -31,70 + 3318: -31,71 + 3319: -31,72 + 3320: -31,73 + 3321: -31,74 + 3322: -31,75 + 3323: -31,76 + 3324: -31,78 + 3325: -31,83 + 3326: -31,85 + 3327: -31,86 + 3328: -32,90 + 3329: -32,89 + 3330: -32,91 + 3331: -31,93 + 3332: -31,94 + 3333: -31,95 + 3371: -13,70 + 3372: -13,71 + 3373: -13,72 + 3374: -13,73 + 3375: -13,74 + 3376: -13,75 + 3377: -13,76 + 3378: -13,78 + 3379: -14,80 + 3380: -14,81 + 3381: -13,83 + 3382: -13,85 + 3383: -13,86 + 3384: -13,87 + 3385: -14,89 + 3386: -14,90 + 3387: -14,91 + 3388: -13,93 + 3389: -13,94 + 3390: -13,95 + 3479: -32,81 + 3480: -32,80 + 3505: -14,90 + 3558: -21,58 + 3559: -21,57 + 3560: -21,56 + 3567: -10,77 + 3569: -8,77 + 3571: -14,77 + 3579: -8,84 + 3580: -10,84 + 3581: -14,84 + 3587: -32,84 + 3588: -28,84 + 3591: -26,84 + 3600: -32,77 + 3601: -28,77 + 3602: -26,77 + 3620: 5,70 + 3621: 5,71 + 3622: 5,72 + 3623: 5,73 + 3624: 5,74 + 3625: 5,75 + 3626: 5,75 + 3627: 5,76 + 3628: 5,78 + 3629: 4,80 + 3630: 4,81 + 3631: 5,83 + 3659: 4,77 + 3663: 4,84 3665: 4,84 - 3667: 4,84 - 3776: 4,57 - 3823: 9,68 - 4172: -17,14 - 4173: -17,15 - 4313: 16,16 - 4314: 16,17 - 4315: 16,18 - 4316: 16,19 - 4317: 16,20 - 4325: 16,13 - 4326: 16,12 - 4327: 16,11 + 3774: 4,57 + 3821: 9,68 + 4170: -17,14 + 4171: -17,15 + 4311: 16,16 + 4312: 16,17 + 4313: 16,18 + 4314: 16,19 + 4315: 16,20 + 4323: 16,13 + 4324: 16,12 + 4325: 16,11 + 4326: 16,10 + 4327: 16,8 4328: 16,10 - 4329: 16,8 - 4330: 16,10 - 4331: 16,9 - 4332: 16,7 - 4333: 16,6 - 4334: 16,4 - 4335: 16,5 - 4336: 16,3 - 4337: 16,2 - 4338: 16,0 - 4339: 16,-1 - 4340: 16,1 - 4341: 16,-2 - 4674: 19,24 - 5113: 32,28 - 5114: 32,27 - 5115: 32,26 - 5116: 32,26 - 5142: 37,30 - 5147: 36,28 - 5148: 36,27 - 5227: 16,-6 - 5228: 16,-5 - 5229: 16,-3 - 5277: -31,79 - 5278: -31,80 - 5279: -31,81 - 5280: -31,81 - 5281: -31,82 - 5282: -31,82 - 5283: -31,88 - 5284: -31,89 - 5285: -31,89 - 5286: -31,90 - 5287: -31,91 - 5288: -31,92 - 5289: -31,92 - 5303: -13,79 - 5304: -13,80 - 5305: -13,81 - 5306: -13,81 - 5307: -13,82 - 5308: -13,82 - 5309: -13,88 - 5310: -13,88 - 5311: -13,89 - 5312: -13,90 - 5313: -13,91 - 5314: -13,91 - 5323: -13,92 - 5324: -13,92 - 5366: 5,79 - 5367: 5,80 + 4329: 16,9 + 4330: 16,7 + 4331: 16,6 + 4332: 16,4 + 4333: 16,5 + 4334: 16,3 + 4335: 16,2 + 4336: 16,0 + 4337: 16,-1 + 4338: 16,1 + 4339: 16,-2 + 4672: 19,24 + 5111: 32,28 + 5112: 32,27 + 5113: 32,26 + 5114: 32,26 + 5140: 37,30 + 5145: 36,28 + 5146: 36,27 + 5225: 16,-6 + 5226: 16,-5 + 5227: 16,-3 + 5275: -31,79 + 5276: -31,80 + 5277: -31,81 + 5278: -31,81 + 5279: -31,82 + 5280: -31,82 + 5281: -31,88 + 5282: -31,89 + 5283: -31,89 + 5284: -31,90 + 5285: -31,91 + 5286: -31,92 + 5287: -31,92 + 5301: -13,79 + 5302: -13,80 + 5303: -13,81 + 5304: -13,81 + 5305: -13,82 + 5306: -13,82 + 5307: -13,88 + 5308: -13,88 + 5309: -13,89 + 5310: -13,90 + 5311: -13,91 + 5312: -13,91 + 5321: -13,92 + 5322: -13,92 + 5364: 5,79 + 5365: 5,80 + 5366: 5,81 + 5367: 5,81 5368: 5,81 - 5369: 5,81 - 5370: 5,81 - 5371: 5,82 - 5373: 16,-7 - 5543: -17,4 - 5544: -17,-1 - 5557: -20,-8 - 5558: -20,-9 - 5559: -20,-10 - 5560: -20,-10 - 5561: -20,-11 - 5562: -20,-12 - 5563: -20,-13 - 5564: -20,-14 - 5630: -17,-8 - 5658: 15,-8 - 5794: 15,-4 - 5802: 7,-5 - 6120: 16,-18 - 6121: 16,-17 - 6122: 16,-16 - 6123: 16,-15 - 6124: 16,-14 - 6125: 16,-13 - 6126: 16,-12 - 6127: 16,-11 - 6154: -17,-19 - 6155: -17,-20 - 6156: -17,-21 - 6174: -17,-19 - 6265: -6,-15 - 6266: -6,-16 - 6281: -3,-19 - 6282: -3,-20 - 6283: -3,-21 - 6290: 1,-21 - 6291: 1,-20 - 6292: 1,-19 - 6305: 15,-21 - 6306: 15,-20 - 6307: 15,-19 - 6340: -3,-16 - 6367: 6,-12 - 6368: 6,-13 - 6369: 6,-14 - 6370: 6,-15 - 6371: 6,-15 - 6372: 6,-16 - 6387: 11,-16 - 6404: 12,-17 - 6410: 12,-15 + 5369: 5,82 + 5371: 16,-7 + 5541: -17,4 + 5542: -17,-1 + 5555: -20,-8 + 5556: -20,-9 + 5557: -20,-10 + 5558: -20,-10 + 5559: -20,-11 + 5560: -20,-12 + 5561: -20,-13 + 5562: -20,-14 + 5628: -17,-8 + 5656: 15,-8 + 5792: 15,-4 + 5800: 7,-5 + 6118: 16,-18 + 6119: 16,-17 + 6120: 16,-16 + 6121: 16,-15 + 6122: 16,-14 + 6123: 16,-13 + 6124: 16,-12 + 6125: 16,-11 + 6152: -17,-19 + 6153: -17,-20 + 6154: -17,-21 + 6172: -17,-19 + 6263: -6,-15 + 6264: -6,-16 + 6279: -3,-19 + 6280: -3,-20 + 6281: -3,-21 + 6288: 1,-21 + 6289: 1,-20 + 6290: 1,-19 + 6303: 15,-21 + 6304: 15,-20 + 6305: 15,-19 + 6338: -3,-16 + 6365: 6,-12 + 6366: 6,-13 + 6367: 6,-14 + 6368: 6,-15 + 6369: 6,-15 + 6370: 6,-16 + 6385: 11,-16 + 6402: 12,-17 + 6408: 12,-15 + 6447: -20,-19 + 6448: -20,-19 6449: -20,-19 6450: -20,-19 6451: -20,-19 - 6452: -20,-19 - 6453: -20,-19 - 6786: -17,-1 - 6808: -43,22 - 6809: -44,20 - 6810: -44,20 - 6811: -44,19 - 6812: -44,19 - 6813: -44,17 - 6814: -44,16 - 6885: -38,14 - 6886: -38,13 - 6887: -38,12 - 6888: -38,12 - 6889: -38,11 - 6890: -38,10 - 6891: -38,10 - 6924: -21,11 - 6925: -21,12 - 6947: -29,14 - 6948: -29,14 - 6949: -29,13 - 6950: -29,12 - 6951: -29,11 - 6952: -29,11 - 6953: -29,10 - 6954: -29,9 - 7057: 26,6 - 7058: 26,5 - 7059: 26,4 - 7062: 19,4 - 7063: 19,5 - 7064: 19,6 - 7076: 20,9 - 7110: 19,-12 - 7111: 19,-11 - 7112: 19,-10 - 7119: 26,-12 - 7120: 26,-11 - 7121: 26,-10 - 7137: 19,-3 - 7151: 25,-1 - 7152: 25,0 - 7153: 25,1 - 7154: 25,2 - 7182: 25,-3 - 7183: 25,-4 - 7184: 25,-5 - 7185: 25,-5 - 7186: 25,-6 - 7329: 28,10 - 7370: 33,4 - 7371: 33,6 - 8005: 79,-21 - 8006: 79,-20 - 8019: 78,-22 - 8020: 78,-19 - 8021: 82,-19 - 8022: 82,-22 - 8027: 66,-19 - 8030: 66,-22 - 8168: 32,-12 - 8169: 32,-10 - 8170: 32,-10 - 8180: 33,-11 - 8181: 33,-13 - 8182: 33,-13 - 8183: 33,-15 - 8192: 33,-9 - 8193: 33,-8 - 8227: 33,-7 - 8300: 42,-8 - 8301: 42,-8 - 8343: 41,-17 - 8349: 39,-17 - 8350: 39,-17 - 8363: 38,-20 - 8364: 38,-20 - 8417: 42,-19 - 8418: 42,-21 - 8439: 54,-21 - 8440: 54,-21 - 8441: 54,-19 - 8442: 54,-19 - 8480: 55,-20 - 8481: 55,-22 - 8482: 55,-23 - 8483: 55,-23 - 8484: 55,-24 - 8485: 55,-24 - 8488: 57,-20 - 8489: 57,-21 - 8592: 55,-28 - 8593: 55,-27 - 8594: 55,-27 - 8595: 55,-26 - 8596: 55,-25 - 8597: 55,-30 - 8598: 55,-17 - 8599: 55,-18 - 8600: 55,-16 - 8601: 55,-15 - 8602: 55,-15 - 8603: 55,-14 - 8604: 55,-13 - 8605: 55,-13 - 8606: 55,-12 - 8678: 64,-19 - 8679: 64,-22 - 8680: 64,-22 - 8822: -2,-23 - 8823: -2,-24 - 8824: -2,-24 - 8825: -2,-27 - 8826: -2,-28 - 8838: 1,-26 - 8839: 1,-25 - 8862: -2,-30 - 8863: -2,-31 - 8864: -2,-32 - 8865: -2,-33 - 8911: -7,-28 - 8912: -15,-28 - 8913: -15,-27 - 8914: -15,-27 - 8933: -14,-23 - 8934: -14,-23 - 8935: -7,-23 - 8977: -7,-28 - 9196: 0,-74 - 9197: 0,-73 - 9198: 0,-73 - 9199: 0,-72 - 9200: 0,-72 - 9201: 0,-68 - 9202: 0,-68 - 9203: 0,-67 - 9204: 0,-67 - 9219: -11,-65 - 9220: -11,-65 - 9221: -11,-68 - 9222: -11,-69 - 9223: -11,-70 - 9224: -11,-71 - 9225: -11,-72 - 9226: -11,-72 - 9227: -11,-73 - 9228: -11,-74 - 9229: -11,-75 - 9230: -11,-76 - 9231: -11,-77 - 9237: -9,-79 - 9238: -9,-80 - 9239: -9,-81 - 9240: -9,-81 - 9286: -7,-71 - 9287: -7,-70 - 9288: -7,-69 - 9289: -7,-69 - 9317: -3,-59 - 9320: -3,-61 - 9321: -3,-61 - 9347: -2,-53 - 9348: -2,-52 - 9349: -2,-52 - 9350: -2,-54 - 9351: -2,-54 - 9352: -2,-51 - 9353: -2,-50 - 9354: -2,-49 - 9355: -2,-49 - 9356: -2,-47 - 9357: -2,-47 - 9358: -2,-46 - 9359: -2,-46 - 9360: -2,-45 - 9361: -2,-45 - 9362: -2,-44 - 9363: -2,-44 - 9364: -2,-43 - 9365: -2,-42 - 9366: -2,-39 - 9367: -2,-38 - 9368: -2,-38 - 9369: 1,-45 - 9384: -2,-56 - 9385: -2,-55 - 9386: -2,-55 - 9457: -42,-15 - 9458: -42,-16 - 9576: 2,-35 - 9637: 1,-39 - 9644: -11,-65 - 10363: 1,-44 - 10394: 1,-51 - 10421: 3,-52 - 10422: 3,-52 - 10423: 3,-51 - 10424: 3,-50 - 10543: 2,-60 - 10544: 2,-60 - 10577: 3,-67 - 10578: 3,-66 - 10579: 3,-75 - 10580: 3,-76 - 10587: 4,-84 - 10588: 4,-85 - 10589: 4,-86 - 10596: 2,-60 - 10630: 43,-41 - 10631: 43,-41 - 10632: 43,-40 - 10633: 43,-39 - 10664: 50,-42 - 10665: 50,-42 - 11249: -60,-42 - 11250: -60,-37 - 11251: -60,-35 - 11252: -60,-35 - 11303: -78,-31 - 11304: -78,-20 - 11309: -78,-31 - 11347: -6,-86 - 11348: -6,-84 - 11349: -6,-85 - 11350: -4,-86 - 11351: -4,-85 - 11352: -4,-84 - 11353: 2,-86 - 11354: 2,-85 - 11355: 2,-84 - 11423: -15,-32 - 11424: -15,-31 - 11425: -15,-30 - 11840: -39,-56 - 11841: -39,-56 - 11850: -42,-53 - 11851: -42,-54 - 11852: -42,-55 - 11856: -36,-53 - 11881: -26,-51 - 12555: -18,-78 - 13376: -44,10 - 13426: -38,-62 - 13427: -38,-61 - 14408: -45,13 - 14939: 6,22 - 14940: 6,23 - 14941: 6,24 - 14966: -8,24 - 14967: -8,23 - 14968: -8,22 - 14970: -20,24 - 14971: -20,23 - 14972: -20,22 - 15240: 43,-20 - 15368: -1,-70 - 15402: -43,5 - 15403: -43,6 - 15415: -40,6 - 15416: -40,5 - 15417: -40,4 - 16406: -60,-49 - 16711: -61,-13 - 16712: -61,-14 - 16742: -60,-17 - 16825: -61,-2 - 16826: -61,-3 - 16845: -53,4 - 16846: -53,5 - 16847: -53,6 - 16860: -56,-9 - 16861: -56,-7 - 17525: 9,75 - 17526: 9,76 - 17527: 9,80 - 17528: 9,81 - 17938: -44,23 - 18494: -17,-10 - 18495: -17,-9 - 18558: 15,-10 - 18559: 15,-9 - 18560: 15,-8 - 19911: -23,13 - 19912: -23,12 - 19913: -23,12 - 19914: -23,11 - 19915: -23,10 - 20026: -15,4 - 20033: -16,0 - 20034: -16,1 - 20035: -16,2 - 20036: -16,3 - 20096: 61,22 - 20097: 61,23 - 20098: 61,24 - 20102: 71,26 - 20157: -21,4 - 20158: -21,5 - 20159: -21,6 - 20210: -20,19 - 20211: -20,18 - 20212: -20,16 - 20213: -20,15 - 20214: -20,15 - 20215: -20,14 - 20216: -20,14 - 20217: -20,13 - 20232: -20,2 - 20233: -20,2 - 20234: -20,1 - 20235: -20,0 - 20236: -20,-1 - 20238: -20,-4 - 20239: -20,-5 - 20240: -20,-6 - 20298: -20,3 - 20300: -17,-1 - 20301: -17,4 - 20302: -17,15 - 20303: -17,14 - 20304: -20,14 - 20305: -20,2 - 20306: -20,3 - 20307: -20,1 - 20308: -20,1 - 20309: -20,8 - 20310: -20,9 + 6784: -17,-1 + 6806: -43,22 + 6807: -44,20 + 6808: -44,20 + 6809: -44,19 + 6810: -44,19 + 6811: -44,17 + 6812: -44,16 + 6883: -38,14 + 6884: -38,13 + 6885: -38,12 + 6886: -38,12 + 6887: -38,11 + 6888: -38,10 + 6889: -38,10 + 6922: -21,11 + 6923: -21,12 + 6945: -29,14 + 6946: -29,14 + 6947: -29,13 + 6948: -29,12 + 6949: -29,11 + 6950: -29,11 + 6951: -29,10 + 6952: -29,9 + 7055: 26,6 + 7056: 26,5 + 7057: 26,4 + 7060: 19,4 + 7061: 19,5 + 7062: 19,6 + 7074: 20,9 + 7108: 19,-12 + 7109: 19,-11 + 7110: 19,-10 + 7117: 26,-12 + 7118: 26,-11 + 7119: 26,-10 + 7135: 19,-3 + 7149: 25,-1 + 7150: 25,0 + 7151: 25,1 + 7152: 25,2 + 7180: 25,-3 + 7181: 25,-4 + 7182: 25,-5 + 7183: 25,-5 + 7184: 25,-6 + 7327: 28,10 + 7368: 33,4 + 7369: 33,6 + 8003: 79,-21 + 8004: 79,-20 + 8017: 78,-22 + 8018: 78,-19 + 8019: 82,-19 + 8020: 82,-22 + 8025: 66,-19 + 8028: 66,-22 + 8166: 32,-12 + 8167: 32,-10 + 8168: 32,-10 + 8178: 33,-11 + 8179: 33,-13 + 8180: 33,-13 + 8181: 33,-15 + 8190: 33,-9 + 8191: 33,-8 + 8225: 33,-7 + 8298: 42,-8 + 8299: 42,-8 + 8341: 41,-17 + 8347: 39,-17 + 8348: 39,-17 + 8361: 38,-20 + 8362: 38,-20 + 8415: 42,-19 + 8416: 42,-21 + 8437: 54,-21 + 8438: 54,-21 + 8439: 54,-19 + 8440: 54,-19 + 8478: 55,-20 + 8479: 55,-22 + 8480: 55,-23 + 8481: 55,-23 + 8482: 55,-24 + 8483: 55,-24 + 8486: 57,-20 + 8487: 57,-21 + 8590: 55,-28 + 8591: 55,-27 + 8592: 55,-27 + 8593: 55,-26 + 8594: 55,-25 + 8595: 55,-30 + 8596: 55,-17 + 8597: 55,-18 + 8598: 55,-16 + 8599: 55,-15 + 8600: 55,-15 + 8601: 55,-14 + 8602: 55,-13 + 8603: 55,-13 + 8604: 55,-12 + 8676: 64,-19 + 8677: 64,-22 + 8678: 64,-22 + 8820: -2,-23 + 8821: -2,-24 + 8822: -2,-24 + 8823: -2,-27 + 8824: -2,-28 + 8836: 1,-26 + 8837: 1,-25 + 8860: -2,-30 + 8861: -2,-31 + 8862: -2,-32 + 8863: -2,-33 + 8909: -7,-28 + 8910: -15,-28 + 8911: -15,-27 + 8912: -15,-27 + 8931: -14,-23 + 8932: -14,-23 + 8933: -7,-23 + 8975: -7,-28 + 9194: 0,-74 + 9195: 0,-73 + 9196: 0,-73 + 9197: 0,-72 + 9198: 0,-72 + 9199: 0,-68 + 9200: 0,-68 + 9201: 0,-67 + 9202: 0,-67 + 9217: -11,-65 + 9218: -11,-65 + 9219: -11,-68 + 9220: -11,-69 + 9221: -11,-70 + 9222: -11,-71 + 9223: -11,-72 + 9224: -11,-72 + 9225: -11,-73 + 9226: -11,-74 + 9227: -11,-75 + 9228: -11,-76 + 9229: -11,-77 + 9235: -9,-79 + 9236: -9,-80 + 9237: -9,-81 + 9238: -9,-81 + 9284: -7,-71 + 9285: -7,-70 + 9286: -7,-69 + 9287: -7,-69 + 9315: -3,-59 + 9318: -3,-61 + 9319: -3,-61 + 9345: -2,-53 + 9346: -2,-52 + 9347: -2,-52 + 9348: -2,-54 + 9349: -2,-54 + 9350: -2,-51 + 9351: -2,-50 + 9352: -2,-49 + 9353: -2,-49 + 9354: -2,-47 + 9355: -2,-47 + 9356: -2,-46 + 9357: -2,-46 + 9358: -2,-45 + 9359: -2,-45 + 9360: -2,-44 + 9361: -2,-44 + 9362: -2,-43 + 9363: -2,-42 + 9364: -2,-39 + 9365: -2,-38 + 9366: -2,-38 + 9367: 1,-45 + 9382: -2,-56 + 9383: -2,-55 + 9384: -2,-55 + 9455: -42,-15 + 9456: -42,-16 + 9574: 2,-35 + 9635: 1,-39 + 9642: -11,-65 + 10361: 1,-44 + 10392: 1,-51 + 10419: 3,-52 + 10420: 3,-52 + 10421: 3,-51 + 10422: 3,-50 + 10541: 2,-60 + 10542: 2,-60 + 10575: 3,-67 + 10576: 3,-66 + 10577: 3,-75 + 10578: 3,-76 + 10585: 4,-84 + 10586: 4,-85 + 10587: 4,-86 + 10594: 2,-60 + 10628: 43,-41 + 10629: 43,-41 + 10630: 43,-40 + 10631: 43,-39 + 10662: 50,-42 + 10663: 50,-42 + 11247: -60,-42 + 11248: -60,-37 + 11249: -60,-35 + 11250: -60,-35 + 11301: -78,-31 + 11302: -78,-20 + 11307: -78,-31 + 11345: -6,-86 + 11346: -6,-84 + 11347: -6,-85 + 11348: -4,-86 + 11349: -4,-85 + 11350: -4,-84 + 11351: 2,-86 + 11352: 2,-85 + 11353: 2,-84 + 11421: -15,-32 + 11422: -15,-31 + 11423: -15,-30 + 11838: -39,-56 + 11839: -39,-56 + 11848: -42,-53 + 11849: -42,-54 + 11850: -42,-55 + 11854: -36,-53 + 11879: -26,-51 + 12553: -18,-78 + 13374: -44,10 + 13424: -38,-62 + 13425: -38,-61 + 14406: -45,13 + 14937: 6,22 + 14938: 6,23 + 14939: 6,24 + 14964: -8,24 + 14965: -8,23 + 14966: -8,22 + 14968: -20,24 + 14969: -20,23 + 14970: -20,22 + 15238: 43,-20 + 15366: -1,-70 + 15400: -43,5 + 15401: -43,6 + 15413: -40,6 + 15414: -40,5 + 15415: -40,4 + 16404: -60,-49 + 16709: -61,-13 + 16710: -61,-14 + 16740: -60,-17 + 16823: -61,-2 + 16824: -61,-3 + 16843: -53,4 + 16844: -53,5 + 16845: -53,6 + 16858: -56,-9 + 16859: -56,-7 + 17523: 9,75 + 17524: 9,76 + 17525: 9,80 + 17526: 9,81 + 17936: -44,23 + 18492: -17,-10 + 18493: -17,-9 + 18556: 15,-10 + 18557: 15,-9 + 18558: 15,-8 + 19909: -23,13 + 19910: -23,12 + 19911: -23,12 + 19912: -23,11 + 19913: -23,10 + 20024: -15,4 + 20031: -16,0 + 20032: -16,1 + 20033: -16,2 + 20034: -16,3 + 20094: 61,22 + 20095: 61,23 + 20096: 61,24 + 20100: 71,26 + 20155: -21,4 + 20156: -21,5 + 20157: -21,6 + 20208: -20,19 + 20209: -20,18 + 20210: -20,16 + 20211: -20,15 + 20212: -20,15 + 20213: -20,14 + 20214: -20,14 + 20215: -20,13 + 20230: -20,2 + 20231: -20,2 + 20232: -20,1 + 20233: -20,0 + 20234: -20,-1 + 20236: -20,-4 + 20237: -20,-5 + 20238: -20,-6 + 20296: -20,3 + 20298: -17,-1 + 20299: -17,4 + 20300: -17,15 + 20301: -17,14 + 20302: -20,14 + 20303: -20,2 + 20304: -20,3 + 20305: -20,1 + 20306: -20,1 + 20307: -20,8 + 20308: -20,9 + 20309: -20,9 + 20310: -20,10 20311: -20,9 - 20312: -20,10 - 20313: -20,9 - 20314: -20,8 - 20315: -20,8 - 21380: 19,14 - 21381: 19,15 - 21383: 28,11 + 20312: -20,8 + 20313: -20,8 + 21378: 19,14 + 21379: 19,15 + 21381: 28,11 - node: cleanable: True color: '#FFFFFFFF' @@ -11098,70 +11093,70 @@ entities: 914: 28,-1 915: 28,0 918: 30,2 - 4067: -20,19 - 4068: -20,18 - 4069: -20,16 - 4070: -20,15 - 4071: -20,14 - 4072: -20,14 - 4073: -20,13 - 4074: -20,10 - 4075: -20,9 - 4076: -20,8 - 4077: -20,8 - 4078: -20,7 + 4065: -20,19 + 4066: -20,18 + 4067: -20,16 + 4068: -20,15 + 4069: -20,14 + 4070: -20,14 + 4071: -20,13 + 4072: -20,10 + 4073: -20,9 + 4074: -20,8 + 4075: -20,8 + 4076: -20,7 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNe decals: - 3895: 27,67 - 9450: -37,2 - 17913: -54,34 - 17915: -54,37 - 17944: -47,42 - 18010: -44,45 - 18033: -58,54 - 18045: -58,58 - 18133: -53,24 + 3893: 27,67 + 9448: -37,2 + 17911: -54,34 + 17913: -54,37 + 17942: -47,42 + 18008: -44,45 + 18031: -58,54 + 18043: -58,58 + 18131: -53,24 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNe decals: - 9546: 38,-34 - 9554: 18,-24 - 9731: 14,-34 - 9941: 24,-38 - 9976: 38,-38 - 9977: 38,-44 - 10108: 14,-38 - 10132: 24,-46 - 10170: 24,-43 - 10194: 34,-47 - 10235: 31,-47 - 10333: 10,-43 - 10337: 6,-43 - 10379: 14,-43 - 19390: 7,65 - 19421: -5,-58 - 19771: 22,-25 - 19779: 26,-27 - 19785: 32,-29 + 9544: 38,-34 + 9552: 18,-24 + 9729: 14,-34 + 9939: 24,-38 + 9974: 38,-38 + 9975: 38,-44 + 10106: 14,-38 + 10130: 24,-46 + 10168: 24,-43 + 10192: 34,-47 + 10233: 31,-47 + 10331: 10,-43 + 10335: 6,-43 + 10377: 14,-43 + 19388: 7,65 + 19419: -5,-58 + 19769: 22,-25 + 19777: 26,-27 + 19783: 32,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNe decals: - 2910: -28,55 - 2994: -37,50 + 2908: -28,55 + 2992: -37,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNe decals: - 5154: 43,30 - 11695: -4,-30 - 11909: -33,-40 - 12090: -22,-24 - 12252: -13,-56 - 12282: -4,-46 + 5152: 43,30 + 11693: -4,-30 + 11907: -33,-40 + 12088: -22,-24 + 12250: -13,-56 + 12280: -4,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNe @@ -11171,68 +11166,68 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerNe decals: - 10832: 28,-55 - 10850: 36,-60 - 10878: 41,-60 - 10927: 42,-70 - 10945: 42,-73 + 10830: 28,-55 + 10848: 36,-60 + 10876: 41,-60 + 10925: 42,-70 + 10943: 42,-73 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNe decals: - 19255: 70,16 - 19269: 63,-3 - 19279: 66,-3 + 19253: 70,16 + 19267: 63,-3 + 19277: 66,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNe decals: - 2704: -9,54 - 2812: -5,34 - 3806: 12,70 + 2702: -9,54 + 2810: -5,34 + 3804: 12,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNe decals: - 4380: 10,31 - 4405: 11,37 - 4469: 17,32 - 4558: 11,40 - 4564: 11,46 - 4579: 21,39 - 4610: 22,38 - 4637: 27,32 - 4752: 29,38 - 4772: 15,35 - 4797: 29,44 - 4922: 13,54 - 5170: 43,30 + 4378: 10,31 + 4403: 11,37 + 4467: 17,32 + 4556: 11,40 + 4562: 11,46 + 4577: 21,39 + 4608: 22,38 + 4635: 27,32 + 4750: 29,38 + 4770: 15,35 + 4795: 29,44 + 4920: 13,54 + 5168: 43,30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 16927: -49,-1 - 16997: -63,2 - 17014: -57,-6 - 17050: -51,-6 - 17078: -55,-12 - 17114: -47,-13 - 17148: -47,15 - 17150: -61,15 - 17233: -68,16 - 17329: -57,19 - 17365: -45,-6 - 17386: -63,-6 - 17465: 11,88 - 17472: 7,90 - 17503: 12,82 - 17549: -62,10 - 17621: -66,2 - 17688: -70,12 - 17770: -76,1 - 17816: -67,-10 - 17851: -52,18 - 18196: -55,-1 + 16925: -49,-1 + 16995: -63,2 + 17012: -57,-6 + 17048: -51,-6 + 17076: -55,-12 + 17112: -47,-13 + 17146: -47,15 + 17148: -61,15 + 17231: -68,16 + 17327: -57,19 + 17363: -45,-6 + 17384: -63,-6 + 17463: 11,88 + 17470: 7,90 + 17501: 12,82 + 17547: -62,10 + 17619: -66,2 + 17686: -70,12 + 17768: -76,1 + 17814: -67,-10 + 17849: -52,18 + 18194: -55,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -11240,27 +11235,27 @@ entities: 856: 70,-41 971: 0,-15 1176: 49,-14 - 2063: -22,47 - 2144: -22,29 - 3847: 23,71 - 4155: -23,23 - 4156: -23,23 - 5581: -33,29 - 5583: -30,28 - 6725: -28,-11 - 6744: -28,-11 - 6979: -23,-15 - 8066: 57,-29 - 8067: 57,-16 - 8701: -6,-77 - 8706: -4,-80 - 9484: 74,-49 - 10990: 42,-67 - 10991: 41,-66 - 15359: -3,-69 - 15617: 95,-2 - 15702: 97,7 - 19736: 34,-15 + 2061: -22,47 + 2142: -22,29 + 3845: 23,71 + 4153: -23,23 + 4154: -23,23 + 5579: -33,29 + 5581: -30,28 + 6723: -28,-11 + 6742: -28,-11 + 6977: -23,-15 + 8064: 57,-29 + 8065: 57,-16 + 8699: -6,-77 + 8704: -4,-80 + 9482: 74,-49 + 10988: 42,-67 + 10989: 41,-66 + 15357: -3,-69 + 15615: 95,-2 + 15700: 97,7 + 19734: 34,-15 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerNw @@ -11270,60 +11265,60 @@ entities: color: '#334E6DFF' id: BrickTileWhiteCornerNw decals: - 21326: -16,16 + 21324: -16,16 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNw decals: - 3898: 25,67 - 17893: -50,23 - 17923: -57,37 - 17943: -50,42 - 17954: -51,38 - 17955: -60,54 - 17956: -47,55 - 18046: -60,58 + 3896: 25,67 + 17891: -50,23 + 17921: -57,37 + 17941: -50,42 + 17952: -51,38 + 17953: -60,54 + 17954: -47,55 + 18044: -60,58 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNw decals: - 9553: 16,-24 - 9942: 20,-38 - 9978: 30,-38 - 9979: 36,-44 - 10109: 8,-38 - 10133: 20,-46 - 10168: 20,-43 - 10169: 20,-43 - 10195: 32,-47 - 10236: 30,-47 - 10334: 2,-43 - 10349: 8,-43 - 10378: 12,-43 - 19389: 5,65 - 19422: -8,-58 - 19772: 20,-25 - 19778: 24,-27 + 9551: 16,-24 + 9940: 20,-38 + 9976: 30,-38 + 9977: 36,-44 + 10107: 8,-38 + 10131: 20,-46 + 10166: 20,-43 + 10167: 20,-43 + 10193: 32,-47 + 10234: 30,-47 + 10332: 2,-43 + 10347: 8,-43 + 10376: 12,-43 + 19387: 5,65 + 19420: -8,-58 + 19770: 20,-25 + 19776: 24,-27 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNw decals: - 2899: -35,50 - 2904: -34,54 - 2909: -29,55 - 18387: -38,50 + 2897: -35,50 + 2902: -34,54 + 2907: -29,55 + 18385: -38,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNw decals: - 11614: -31,-34 - 11685: -10,-30 - 11910: -34,-40 - 12089: -24,-24 - 12237: -17,-50 - 12251: -20,-56 - 12283: -11,-49 - 12284: -7,-46 + 11612: -31,-34 + 11683: -10,-30 + 11908: -34,-40 + 12087: -24,-24 + 12235: -17,-50 + 12249: -20,-56 + 12281: -11,-49 + 12282: -7,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNw @@ -11333,97 +11328,97 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerNw decals: - 10839: 26,-55 - 10849: 34,-60 - 10884: 38,-60 - 10944: 41,-73 + 10837: 26,-55 + 10847: 34,-60 + 10882: 38,-60 + 10942: 41,-73 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNw decals: - 19254: 68,16 - 19268: 60,-3 + 19252: 68,16 + 19266: 60,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNw decals: - 2708: -13,54 - 2811: -7,34 - 3807: 10,70 + 2706: -13,54 + 2809: -7,34 + 3805: 10,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNw decals: - 4372: 2,31 - 4401: 2,37 - 4543: 4,43 - 4557: 9,40 - 4565: 9,46 - 4580: 13,39 - 4620: 13,46 - 4636: 19,32 - 4743: 24,38 - 4773: 19,35 - 4798: 27,44 - 4921: 9,54 - 4946: 15,54 - 20060: 33,39 + 4370: 2,31 + 4399: 2,37 + 4541: 4,43 + 4555: 9,40 + 4563: 9,46 + 4578: 13,39 + 4618: 13,46 + 4634: 19,32 + 4741: 24,38 + 4771: 19,35 + 4796: 27,44 + 4919: 9,54 + 4944: 15,54 + 20058: 33,39 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerNw decals: - 4008: -40,54 - 9586: 2,-30 + 4006: -40,54 + 9584: 2,-30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 16929: -51,-1 - 16935: -61,-1 - 16945: -61,2 - 16987: -59,15 - 16996: -64,2 - 17013: -61,-6 - 17075: -61,-12 - 17243: -78,16 - 17328: -61,19 - 17361: -49,-6 - 17429: -77,-6 - 17464: 9,88 - 17555: -65,10 - 17622: -74,2 - 17685: -74,12 - 17736: -78,7 - 17774: -79,1 - 17813: -73,-10 - 17850: -55,18 + 16927: -51,-1 + 16933: -61,-1 + 16943: -61,2 + 16985: -59,15 + 16994: -64,2 + 17011: -61,-6 + 17073: -61,-12 + 17241: -78,16 + 17326: -61,19 + 17359: -49,-6 + 17427: -77,-6 + 17462: 9,88 + 17553: -65,10 + 17620: -74,2 + 17683: -74,12 + 17734: -78,7 + 17772: -79,1 + 17811: -73,-10 + 17848: -55,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 972: -1,-15 1173: 44,-14 - 2064: -16,47 - 2377: -31,32 - 2378: -30,33 - 4158: -25,23 - 5580: -34,29 - 6356: -2,-14 - 6724: -35,-11 - 6743: -35,-11 - 6978: -26,-15 - 8068: 61,-16 - 8069: 61,-29 - 8319: 40,-15 - 8702: -3,-77 - 8705: -5,-80 - 9483: 72,-49 - 10992: 39,-66 - 10993: 38,-67 - 13493: -41,-62 - 15361: -6,-69 - 15686: 91,-3 - 15704: 95,7 + 2062: -16,47 + 2375: -31,32 + 2376: -30,33 + 4156: -25,23 + 5578: -34,29 + 6354: -2,-14 + 6722: -35,-11 + 6741: -35,-11 + 6976: -26,-15 + 8066: 61,-16 + 8067: 61,-29 + 8317: 40,-15 + 8700: -3,-77 + 8703: -5,-80 + 9481: 72,-49 + 10990: 39,-66 + 10991: 38,-67 + 13491: -41,-62 + 15359: -6,-69 + 15684: 91,-3 + 15702: 95,7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -11434,56 +11429,56 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteCornerSe decals: - 3896: 27,65 - 9451: -37,0 - 17909: -54,32 - 17914: -54,36 - 17946: -47,36 - 18012: -44,44 - 18044: -58,56 + 3894: 27,65 + 9449: -37,0 + 17907: -54,32 + 17912: -54,36 + 17944: -47,36 + 18010: -44,44 + 18042: -58,56 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSe decals: - 9661: 38,-36 - 9730: 14,-36 - 9790: 28,-53 - 9910: 18,-47 - 9940: 24,-41 - 9982: 38,-45 - 9991: 38,-42 - 10092: 32,-27 - 10121: 14,-41 - 10135: 24,-49 - 10191: 34,-53 - 10345: 10,-47 - 10382: 14,-47 - 19392: 7,62 - 19424: -5,-62 - 19786: 32,-30 - 19787: 30,-32 + 9659: 38,-36 + 9728: 14,-36 + 9788: 28,-53 + 9908: 18,-47 + 9938: 24,-41 + 9980: 38,-45 + 9989: 38,-42 + 10090: 32,-27 + 10119: 14,-41 + 10133: 24,-49 + 10189: 34,-53 + 10343: 10,-47 + 10380: 14,-47 + 19390: 7,62 + 19422: -5,-62 + 19784: 32,-30 + 19785: 30,-32 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSe decals: - 2882: -27,46 - 3002: -37,47 + 2880: -27,46 + 3000: -37,47 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSe decals: - 5092: 27,26 - 5156: 43,28 - 11579: -12,-36 - 11580: -12,-36 - 11672: -5,-36 - 11696: -4,-32 - 11697: -4,-32 - 11907: -33,-46 - 11908: -33,-46 - 12235: -13,-54 - 12273: -13,-60 - 12286: -4,-53 + 5090: 27,26 + 5154: 43,28 + 11577: -12,-36 + 11578: -12,-36 + 11670: -5,-36 + 11694: -4,-32 + 11695: -4,-32 + 11905: -33,-46 + 11906: -33,-46 + 12233: -13,-54 + 12271: -13,-60 + 12284: -4,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSe @@ -11493,83 +11488,83 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerSe decals: - 10845: 28,-58 - 10858: 36,-72 - 10895: 41,-63 - 10896: 45,-63 - 10928: 42,-71 - 10940: 39,-74 - 10941: 39,-74 - 10942: 42,-74 - 10943: 42,-74 - 10985: 31,-69 + 10843: 28,-58 + 10856: 36,-72 + 10893: 41,-63 + 10894: 45,-63 + 10926: 42,-71 + 10938: 39,-74 + 10939: 39,-74 + 10940: 42,-74 + 10941: 42,-74 + 10983: 31,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSe decals: - 19258: 70,12 - 19273: 63,-6 - 19281: 66,-5 + 19256: 70,12 + 19271: 63,-6 + 19279: 66,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSe decals: - 2702: -9,52 - 2814: -5,32 - 3813: 12,66 + 2700: -9,52 + 2812: -5,32 + 3811: 12,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSe decals: - 4406: 11,34 - 4407: 10,33 - 4460: 10,26 - 4475: 17,26 - 4502: 15,28 - 4533: 7,39 - 4555: 11,39 - 4573: 11,42 - 4607: 22,34 - 4650: 22,26 - 4659: 27,26 - 4748: 29,34 - 4770: 15,37 - 4800: 29,40 - 4935: 13,48 - 5171: 43,28 - 5178: 36,34 + 4404: 11,34 + 4405: 10,33 + 4458: 10,26 + 4473: 17,26 + 4500: 15,28 + 4531: 7,39 + 4553: 11,39 + 4571: 11,42 + 4605: 22,34 + 4648: 22,26 + 4657: 27,26 + 4746: 29,34 + 4768: 15,37 + 4798: 29,40 + 4933: 13,48 + 5169: 43,28 + 5176: 36,34 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSe decals: - 4015: -37,52 + 4013: -37,52 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 16930: -49,-4 - 16965: -51,8 - 16999: -63,0 - 17016: -57,-10 - 17051: -51,-10 - 17059: -52,-18 - 17081: -55,-15 - 17110: -47,-17 - 17199: -47,11 - 17246: -76,13 - 17253: -68,14 - 17320: -57,17 - 17369: -45,-10 - 17387: -63,-8 - 17435: -75,-10 - 17475: 7,87 - 17485: 11,84 - 17554: -62,5 - 17690: -70,10 - 17835: -67,-13 - 18205: -55,-4 - 18259: -52,17 - 18339: -66,-4 + 16928: -49,-4 + 16963: -51,8 + 16997: -63,0 + 17014: -57,-10 + 17049: -51,-10 + 17057: -52,-18 + 17079: -55,-15 + 17108: -47,-17 + 17197: -47,11 + 17244: -76,13 + 17251: -68,14 + 17318: -57,17 + 17367: -45,-10 + 17385: -63,-8 + 17433: -75,-10 + 17473: 7,87 + 17483: 11,84 + 17552: -62,5 + 17688: -70,10 + 17833: -67,-13 + 18203: -55,-4 + 18257: -52,17 + 18337: -66,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe @@ -11577,25 +11572,25 @@ entities: 865: 75,-47 974: 0,-16 1182: 49,-17 - 2065: -22,51 - 2143: -22,34 - 3840: 23,69 - 4161: -23,21 - 5584: -30,27 - 5585: -31,26 - 6976: -23,-18 - 8064: 57,-12 - 8065: 57,-25 - 8316: 34,-9 - 8703: -6,-79 - 8708: -4,-76 - 9487: 74,-52 - 10995: 42,-68 - 13494: -40,-63 - 15360: -3,-71 - 15372: -4,-73 - 15610: 95,-5 - 15706: 97,6 + 2063: -22,51 + 2141: -22,34 + 3838: 23,69 + 4159: -23,21 + 5582: -30,27 + 5583: -31,26 + 6974: -23,-18 + 8062: 57,-12 + 8063: 57,-25 + 8314: 34,-9 + 8701: -6,-79 + 8706: -4,-76 + 9485: 74,-52 + 10993: 42,-68 + 13492: -40,-63 + 15358: -3,-71 + 15370: -4,-73 + 15608: 95,-5 + 15704: 97,6 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -11611,60 +11606,60 @@ entities: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 21329: -16,13 - 21330: -13,13 + 21327: -16,13 + 21328: -13,13 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerSw decals: - 9452: -39,0 - 17900: -49,18 - 17910: -56,32 - 17921: -57,35 - 17945: -51,36 - 18043: -60,56 - 18066: -60,44 + 9450: -39,0 + 17898: -49,18 + 17908: -56,32 + 17919: -57,35 + 17943: -51,36 + 18041: -60,56 + 18064: -60,44 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSw decals: - 9789: 26,-53 - 9911: 16,-47 - 9939: 20,-41 - 9980: 30,-42 - 9981: 36,-45 - 10093: 28,-27 - 10124: 8,-41 - 10134: 20,-49 - 10192: 32,-53 - 10193: 32,-53 - 10237: 30,-53 - 10361: 3,-47 - 10380: 12,-45 - 19391: 5,62 - 19423: -8,-62 - 19760: 20,-29 - 19761: 24,-30 - 19762: 26,-32 + 9787: 26,-53 + 9909: 16,-47 + 9937: 20,-41 + 9978: 30,-42 + 9979: 36,-45 + 10091: 28,-27 + 10122: 8,-41 + 10132: 20,-49 + 10190: 32,-53 + 10191: 32,-53 + 10235: 30,-53 + 10359: 3,-47 + 10378: 12,-45 + 19389: 5,62 + 19421: -8,-62 + 19758: 20,-29 + 19759: 24,-30 + 19760: 26,-32 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSw decals: - 2893: -34,46 - 2895: -35,48 + 2891: -34,46 + 2893: -35,48 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSw decals: - 5155: 38,28 - 11615: -31,-36 - 11666: -10,-36 - 11667: -10,-36 - 11906: -34,-46 - 12236: -17,-54 - 12254: -20,-59 - 12260: -19,-60 - 12285: -11,-53 + 5153: 38,28 + 11613: -31,-36 + 11664: -10,-36 + 11665: -10,-36 + 11904: -34,-46 + 12234: -17,-54 + 12252: -20,-59 + 12258: -19,-60 + 12283: -11,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSw @@ -11674,106 +11669,106 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteCornerSw decals: - 10844: 26,-58 - 10860: 34,-72 - 10893: 38,-63 - 10894: 43,-63 - 10930: 38,-71 - 10946: 41,-74 - 10947: 41,-74 - 10978: 27,-69 + 10842: 26,-58 + 10858: 34,-72 + 10891: 38,-63 + 10892: 43,-63 + 10928: 38,-71 + 10944: 41,-74 + 10945: 41,-74 + 10976: 27,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSw decals: - 19257: 68,12 - 19272: 60,-6 - 19280: 65,-5 + 19255: 68,12 + 19270: 60,-6 + 19278: 65,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSw decals: - 2710: -13,52 - 2813: -7,32 - 3811: 10,66 + 2708: -13,52 + 2811: -7,32 + 3809: 10,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSw decals: - 4376: 2,26 - 4397: 2,33 - 4462: 12,26 - 4538: 4,39 - 4556: 9,39 - 4569: 9,42 - 4648: 19,26 - 4651: 24,26 - 4742: 24,34 - 4771: 19,37 - 4799: 27,40 - 4930: 9,48 - 14438: -59,9 + 4374: 2,26 + 4395: 2,33 + 4460: 12,26 + 4536: 4,39 + 4554: 9,39 + 4567: 9,42 + 4646: 19,26 + 4649: 24,26 + 4740: 24,34 + 4769: 19,37 + 4797: 27,40 + 4928: 9,48 + 14436: -59,9 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSw decals: - 4012: -40,52 - 9588: 2,-32 - 9589: 3,-36 + 4010: -40,52 + 9586: 2,-32 + 9587: 3,-36 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 16938: -61,-4 - 16966: -54,8 - 16983: -59,9 - 16998: -64,0 - 17015: -61,-10 - 17064: -59,-18 - 17065: -61,-15 - 17106: -50,-18 - 17218: -66,14 - 17245: -78,13 - 17325: -61,17 - 17372: -49,-10 - 17433: -77,-10 - 17476: 5,87 - 17484: 9,84 - 17512: 10,74 - 17556: -65,5 - 17623: -74,-4 - 17689: -74,10 - 17740: -78,3 - 17778: -79,-1 - 17779: -78,-2 - 17834: -73,-13 - 18207: -51,-4 - 18258: -55,17 + 16936: -61,-4 + 16964: -54,8 + 16981: -59,9 + 16996: -64,0 + 17013: -61,-10 + 17062: -59,-18 + 17063: -61,-15 + 17104: -50,-18 + 17216: -66,14 + 17243: -78,13 + 17323: -61,17 + 17370: -49,-10 + 17431: -77,-10 + 17474: 5,87 + 17482: 9,84 + 17510: 10,74 + 17554: -65,5 + 17621: -74,-4 + 17687: -74,10 + 17738: -78,3 + 17776: -79,-1 + 17777: -78,-2 + 17832: -73,-13 + 18205: -51,-4 + 18256: -55,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 973: -1,-16 1179: 44,-17 - 2062: -16,51 - 2358: -29,38 - 3834: 17,69 - 4160: -25,21 - 6360: -2,-17 - 6737: -35,-16 - 6977: -26,-18 - 8062: 61,-12 - 8063: 61,-25 - 8317: 40,-9 - 8318: 40,-9 - 8704: -3,-79 - 8707: -5,-76 - 9488: 72,-52 - 10994: 38,-68 - 15370: -6,-71 - 15371: -5,-73 - 15609: 91,-5 - 15705: 95,6 + 2060: -16,51 + 2356: -29,38 + 3832: 17,69 + 4158: -25,21 + 6358: -2,-17 + 6735: -35,-16 + 6975: -26,-18 + 8060: 61,-12 + 8061: 61,-25 + 8315: 40,-9 + 8316: 40,-9 + 8702: -3,-79 + 8705: -5,-76 + 9486: 72,-52 + 10992: 38,-68 + 15368: -6,-71 + 15369: -5,-73 + 15607: 91,-5 + 15703: 95,6 - node: color: '#0A6AB6FF' id: BrickTileWhiteEndE @@ -11784,1500 +11779,1500 @@ entities: color: '#DA8B8BFF' id: BrickTileWhiteEndE decals: - 19242: 70,-4 + 19240: 70,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 8215: 41,-7 + 8213: 41,-7 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndN decals: - 15715: 97,-2 + 15713: 97,-2 - node: color: '#DAA58BFF' id: BrickTileWhiteEndN decals: - 4685: 21,28 - 4686: 25,28 + 4683: 21,28 + 4684: 25,28 - node: color: '#EFB341FF' id: BrickTileWhiteEndN decals: - 17111: -50,-12 + 17109: -50,-12 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 8037: 60,-13 - 8038: 58,-13 - 8039: 60,-26 - 8040: 58,-26 - 8621: 60,-26 - 15685: 95,-2 + 8035: 60,-13 + 8036: 58,-13 + 8037: 60,-26 + 8038: 58,-26 + 8619: 60,-26 + 15683: 95,-2 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndS decals: - 15714: 97,-4 + 15712: 97,-4 - node: color: '#A9DA8BFF' id: BrickTileWhiteEndS decals: - 2886: -31,45 + 2884: -31,45 - node: color: '#DAA58BFF' id: BrickTileWhiteEndS decals: - 4683: 21,30 - 4684: 25,30 + 4681: 21,30 + 4682: 25,30 - node: color: '#EFB341FF' id: BrickTileWhiteEndS decals: - 17107: -50,-18 + 17105: -50,-18 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 8057: 58,-15 - 8058: 60,-15 - 8059: 58,-28 - 8060: 60,-28 + 8055: 58,-15 + 8056: 60,-15 + 8057: 58,-28 + 8058: 60,-28 - node: color: '#B18BDAFF' id: BrickTileWhiteEndW decals: - 11922: -29,-28 - 11923: -29,-30 + 11920: -29,-28 + 11921: -29,-30 - node: color: '#DA8B8BFF' id: BrickTileWhiteEndW decals: - 19241: 69,-4 + 19239: 69,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 2355: -31,38 - 8214: 38,-7 + 2353: -31,38 + 8212: 38,-7 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNe decals: - 17904: -46,18 - 17926: -55,37 - 17933: -55,34 - 17963: -46,51 - 18004: -48,42 - 18005: -47,41 - 18014: -46,45 - 18055: -59,58 - 18056: -58,57 - 18057: -59,54 - 18082: -58,45 - 18150: -53,21 + 17902: -46,18 + 17924: -55,37 + 17931: -55,34 + 17961: -46,51 + 18002: -48,42 + 18003: -47,41 + 18012: -46,45 + 18053: -59,58 + 18054: -58,57 + 18055: -59,54 + 18080: -58,45 + 18148: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNe decals: - 9558: 18,-27 - 9573: 18,-34 - 9574: 21,-34 - 9719: 14,-35 - 9725: 12,-34 - 9799: 29,-34 - 9800: 36,-34 - 9931: 18,-39 - 9932: 18,-44 - 9935: 28,-44 - 9936: 28,-50 - 9952: 24,-39 - 9953: 28,-40 - 9969: 38,-35 - 10009: 37,-44 - 10029: 36,-40 - 10060: 29,-29 - 10123: 14,-39 - 10176: 24,-44 - 10370: 4,-43 - 10371: 9,-43 - 10374: 6,-45 - 10389: 14,-44 - 10618: 49,-33 - 12383: -7,-58 - 15327: 10,-25 - 15341: 17,-40 - 15346: 27,-47 - 15347: 27,-40 - 15351: 27,-35 - 15352: 36,-35 - 15357: 13,-35 - 18465: 17,-31 - 19398: 6,65 - 19425: -5,-60 - 19776: 22,-29 - 19792: 26,-29 + 9556: 18,-27 + 9571: 18,-34 + 9572: 21,-34 + 9717: 14,-35 + 9723: 12,-34 + 9797: 29,-34 + 9798: 36,-34 + 9929: 18,-39 + 9930: 18,-44 + 9933: 28,-44 + 9934: 28,-50 + 9950: 24,-39 + 9951: 28,-40 + 9967: 38,-35 + 10007: 37,-44 + 10027: 36,-40 + 10058: 29,-29 + 10121: 14,-39 + 10174: 24,-44 + 10368: 4,-43 + 10369: 9,-43 + 10372: 6,-45 + 10387: 14,-44 + 10616: 49,-33 + 12381: -7,-58 + 15325: 10,-25 + 15339: 17,-40 + 15344: 27,-47 + 15345: 27,-40 + 15349: 27,-35 + 15350: 36,-35 + 15355: 13,-35 + 18463: 17,-31 + 19396: 6,65 + 19423: -5,-60 + 19774: 22,-29 + 19790: 26,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNe decals: - 2877: -26,48 - 2913: -28,53 - 2916: -28,51 - 2972: -32,53 - 2973: -30,53 - 2974: -28,50 - 2997: -37,49 + 2875: -26,48 + 2911: -28,53 + 2914: -28,51 + 2970: -32,53 + 2971: -30,53 + 2972: -28,50 + 2995: -37,49 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNe decals: - 5098: 21,32 - 5103: 27,31 - 5181: 36,37 - 11531: -15,-34 - 11532: -13,-34 - 11608: -22,-34 - 11609: -22,-34 - 11651: -12,-35 - 11652: -12,-35 - 11676: -5,-35 - 11677: -6,-30 - 11678: -6,-30 - 11828: -13,-41 - 11919: -29,-34 - 11950: -28,-27 - 11951: -28,-31 - 11952: -29,-29 - 12104: -23,-24 - 12105: -22,-26 - 12106: -22,-31 - 12212: -24,-39 - 12248: -13,-50 - 12274: -16,-56 - 12277: -13,-59 - 12304: -10,-49 - 12311: -4,-48 - 12312: -6,-46 - 12338: -18,-40 - 12650: -7,-32 - 12751: -7,-32 - 12752: -7,-32 - 15275: -8,-25 - 15285: -24,-35 - 15288: -23,-26 - 15289: -14,-35 - 15294: -14,-47 - 15297: -14,-39 - 15298: -29,-39 - 20065: 34,39 + 5096: 21,32 + 5101: 27,31 + 5179: 36,37 + 11529: -15,-34 + 11530: -13,-34 + 11606: -22,-34 + 11607: -22,-34 + 11649: -12,-35 + 11650: -12,-35 + 11674: -5,-35 + 11675: -6,-30 + 11676: -6,-30 + 11826: -13,-41 + 11917: -29,-34 + 11948: -28,-27 + 11949: -28,-31 + 11950: -29,-29 + 12102: -23,-24 + 12103: -22,-26 + 12104: -22,-31 + 12210: -24,-39 + 12246: -13,-50 + 12272: -16,-56 + 12275: -13,-59 + 12302: -10,-49 + 12309: -4,-48 + 12310: -6,-46 + 12336: -18,-40 + 12648: -7,-32 + 12749: -7,-32 + 12750: -7,-32 + 15273: -8,-25 + 15283: -24,-35 + 15286: -23,-26 + 15287: -14,-35 + 15292: -14,-47 + 15295: -14,-39 + 15296: -29,-39 + 20063: 34,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerNe decals: - 10843: 28,-56 - 10880: 41,-62 - 10907: 36,-62 - 10912: 36,-70 - 10983: 28,-69 + 10841: 28,-56 + 10878: 41,-62 + 10905: 36,-62 + 10910: 36,-70 + 10981: 28,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNe decals: - 7633: 61,-3 - 7634: 65,-3 - 19260: 70,13 - 19270: 63,-4 + 7631: 61,-3 + 7632: 65,-3 + 19258: 70,13 + 19268: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNe decals: - 3817: 12,67 + 3815: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNe decals: - 4383: 10,30 - 4384: 10,28 - 4389: 9,31 - 4416: 10,37 - 4417: 11,36 - 4424: 4,31 - 4446: 8,29 - 4483: 15,32 - 4507: 16,31 - 4560: 10,40 - 4575: 11,43 - 4578: 11,45 - 4611: 21,38 - 4631: 22,36 - 4635: 21,32 - 4664: 27,31 - 4720: 20,30 - 4721: 26,30 - 4722: 26,29 - 4727: 22,29 - 4735: 21,29 - 4769: 27,37 - 4788: 18,37 - 4789: 19,36 - 4790: 28,38 - 4829: 9,35 - 4834: 5,37 - 4869: 32,49 - 4870: 38,49 - 4907: 25,41 - 4911: 25,52 - 4920: 10,54 - 4939: 13,50 - 4942: 13,53 - 4949: 17,54 - 5068: 17,45 - 5069: 17,43 - 5070: 17,41 - 5071: 22,41 - 5072: 22,43 - 5073: 22,45 - 5074: 22,47 - 5075: 22,49 - 5076: 22,51 - 7008: 8,29 - 19931: 25,29 - 19935: 24,30 + 4381: 10,30 + 4382: 10,28 + 4387: 9,31 + 4414: 10,37 + 4415: 11,36 + 4422: 4,31 + 4444: 8,29 + 4481: 15,32 + 4505: 16,31 + 4558: 10,40 + 4573: 11,43 + 4576: 11,45 + 4609: 21,38 + 4629: 22,36 + 4633: 21,32 + 4662: 27,31 + 4718: 20,30 + 4719: 26,30 + 4720: 26,29 + 4725: 22,29 + 4733: 21,29 + 4767: 27,37 + 4786: 18,37 + 4787: 19,36 + 4788: 28,38 + 4827: 9,35 + 4832: 5,37 + 4867: 32,49 + 4868: 38,49 + 4905: 25,41 + 4909: 25,52 + 4918: 10,54 + 4937: 13,50 + 4940: 13,53 + 4947: 17,54 + 5066: 17,45 + 5067: 17,43 + 5068: 17,41 + 5069: 22,41 + 5070: 22,43 + 5071: 22,45 + 5072: 22,47 + 5073: 22,49 + 5074: 22,51 + 7006: 8,29 + 19929: 25,29 + 19933: 24,30 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNe decals: - 4010: -39,54 - 9600: 8,-36 - 9603: 5,-30 - 9626: 6,-32 - 9635: 8,-34 + 4008: -39,54 + 9598: 8,-36 + 9601: 5,-30 + 9624: 6,-32 + 9633: 8,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNe decals: - 16921: -49,1 - 16922: -52,2 - 16995: -63,1 - 17022: -58,-6 - 17023: -57,-7 - 17024: -57,-9 - 17037: -58,-12 - 17090: -52,-15 - 17118: -50,-13 - 17149: -52,15 - 17195: -47,14 - 17198: -47,12 - 17202: -50,9 - 17207: -58,15 - 17229: -61,14 - 17232: -68,15 - 17342: -51,-7 - 17383: -52,-6 - 17384: -63,-7 - 17417: -71,-6 - 17418: -69,-6 - 17467: 10,88 - 17471: 5,90 - 17492: 11,87 - 17515: 10,82 - 17516: 12,78 - 17645: -73,2 - 17646: -66,1 - 17701: -72,12 - 17772: -77,1 - 17788: -76,0 - 17818: -69,-10 - 17853: -53,18 - 19940: -49,-3 + 16919: -49,1 + 16920: -52,2 + 16993: -63,1 + 17020: -58,-6 + 17021: -57,-7 + 17022: -57,-9 + 17035: -58,-12 + 17088: -52,-15 + 17116: -50,-13 + 17147: -52,15 + 17193: -47,14 + 17196: -47,12 + 17200: -50,9 + 17205: -58,15 + 17227: -61,14 + 17230: -68,15 + 17340: -51,-7 + 17381: -52,-6 + 17382: -63,-7 + 17415: -71,-6 + 17416: -69,-6 + 17465: 10,88 + 17469: 5,90 + 17490: 11,87 + 17513: 10,82 + 17514: 12,78 + 17643: -73,2 + 17644: -66,1 + 17699: -72,12 + 17770: -77,1 + 17786: -76,0 + 17816: -69,-10 + 17851: -53,18 + 19938: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2357: -30,38 - 2369: -29,30 - 5591: -33,28 - 5592: -33,28 - 5596: -31,28 - 6700: -32,1 - 6703: -32,-2 - 6718: -24,-2 - 6748: -32,-11 - 6770: -35,-16 - 6983: -23,-16 - 8094: 60,-12 - 8095: 60,-25 - 8096: 61,-26 - 8097: 61,-13 - 8333: 39,-10 - 8335: 39,-13 - 8336: 39,-13 - 8370: 46,-14 - 8724: -4,-77 - 8725: -1,-76 - 8726: -6,-76 - 8727: -6,-80 - 8728: -1,-80 - 8947: -4,-25 - 9108: 14,-25 - 9494: 73,-49 - 9500: 73,-42 - 10364: 0,-44 - 10693: 75,-45 - 11001: 41,-67 - 15035: -19,19 - 15036: -13,23 - 15037: -3,23 - 15038: 4,23 - 15039: 14,23 - 15040: 17,19 - 15053: -21,34 - 15054: -19,36 - 15055: -19,32 - 15056: -19,29 - 15064: -19,48 - 15065: -16,50 - 15066: -17,51 - 15067: -21,51 - 15068: -19,52 - 15071: -23,41 - 15072: -10,49 - 15073: -5,49 - 15110: -30,95 - 15111: -30,88 - 15120: -30,82 - 15121: -30,75 - 15152: -29,68 - 15153: -24,68 - 15154: -18,68 - 15155: -11,68 - 15156: -12,75 - 15157: -12,82 - 15158: -12,88 - 15159: -12,95 - 15160: -4,68 - 15161: 2,68 - 15162: -5,64 - 15163: 7,68 - 15164: 6,75 - 15165: 6,82 - 15167: -4,57 - 15168: 2,57 - 15169: -11,57 - 15170: -18,57 - 15171: -19,64 - 15181: 17,12 - 15182: 24,5 - 15183: 31,5 - 15194: 24,-11 - 15195: 30,-11 - 15198: 17,-12 - 15199: 13,-20 - 15200: 6,-20 - 15201: -5,-20 - 15202: -12,-20 - 15203: -19,-12 - 15204: -19,-2 - 15205: -19,5 - 15206: -23,5 - 15207: -19,12 - 15208: -31,5 - 15209: -36,5 - 15248: 47,-20 - 15249: 52,-20 - 15250: 17,5 - 15319: -1,-31 - 15320: -1,-24 - 15321: -1,-39 - 15322: -1,-44 - 15323: -1,-52 - 15326: -1,-59 - 15475: -42,17 - 15476: -42,22 - 15477: -42,11 - 15618: 95,-3 - 18845: 7,-9 - 18846: 13,-9 - 18852: -12,-9 - 18853: -6,-9 - 18860: 1,-9 - 19750: 40,-10 - 19755: 39,-9 - 20021: 17,-2 - 20285: -19,19 - 20286: -19,12 - 20287: -19,5 - 20288: -19,-2 + 2355: -30,38 + 2367: -29,30 + 5589: -33,28 + 5590: -33,28 + 5594: -31,28 + 6698: -32,1 + 6701: -32,-2 + 6716: -24,-2 + 6746: -32,-11 + 6768: -35,-16 + 6981: -23,-16 + 8092: 60,-12 + 8093: 60,-25 + 8094: 61,-26 + 8095: 61,-13 + 8331: 39,-10 + 8333: 39,-13 + 8334: 39,-13 + 8368: 46,-14 + 8722: -4,-77 + 8723: -1,-76 + 8724: -6,-76 + 8725: -6,-80 + 8726: -1,-80 + 8945: -4,-25 + 9106: 14,-25 + 9492: 73,-49 + 9498: 73,-42 + 10362: 0,-44 + 10691: 75,-45 + 10999: 41,-67 + 15033: -19,19 + 15034: -13,23 + 15035: -3,23 + 15036: 4,23 + 15037: 14,23 + 15038: 17,19 + 15051: -21,34 + 15052: -19,36 + 15053: -19,32 + 15054: -19,29 + 15062: -19,48 + 15063: -16,50 + 15064: -17,51 + 15065: -21,51 + 15066: -19,52 + 15069: -23,41 + 15070: -10,49 + 15071: -5,49 + 15108: -30,95 + 15109: -30,88 + 15118: -30,82 + 15119: -30,75 + 15150: -29,68 + 15151: -24,68 + 15152: -18,68 + 15153: -11,68 + 15154: -12,75 + 15155: -12,82 + 15156: -12,88 + 15157: -12,95 + 15158: -4,68 + 15159: 2,68 + 15160: -5,64 + 15161: 7,68 + 15162: 6,75 + 15163: 6,82 + 15165: -4,57 + 15166: 2,57 + 15167: -11,57 + 15168: -18,57 + 15169: -19,64 + 15179: 17,12 + 15180: 24,5 + 15181: 31,5 + 15192: 24,-11 + 15193: 30,-11 + 15196: 17,-12 + 15197: 13,-20 + 15198: 6,-20 + 15199: -5,-20 + 15200: -12,-20 + 15201: -19,-12 + 15202: -19,-2 + 15203: -19,5 + 15204: -23,5 + 15205: -19,12 + 15206: -31,5 + 15207: -36,5 + 15246: 47,-20 + 15247: 52,-20 + 15248: 17,5 + 15317: -1,-31 + 15318: -1,-24 + 15319: -1,-39 + 15320: -1,-44 + 15321: -1,-52 + 15324: -1,-59 + 15473: -42,17 + 15474: -42,22 + 15475: -42,11 + 15616: 95,-3 + 18843: 7,-9 + 18844: 13,-9 + 18850: -12,-9 + 18851: -6,-9 + 18858: 1,-9 + 19748: 40,-10 + 19753: 39,-9 + 20019: 17,-2 + 20283: -19,19 + 20284: -19,12 + 20285: -19,5 + 20286: -19,-2 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNw decals: - 15717: 97,-3 - 17897: -50,21 - 17925: -55,37 - 17969: -46,55 - 18001: -50,41 - 18003: -48,42 - 18007: -50,38 - 18050: -59,54 - 18051: -60,57 - 18054: -59,58 - 18064: -60,48 - 18065: -60,50 - 18083: -47,45 + 15715: 97,-3 + 17895: -50,21 + 17923: -55,37 + 17967: -46,55 + 17999: -50,41 + 18001: -48,42 + 18005: -50,38 + 18048: -59,54 + 18049: -60,57 + 18052: -59,58 + 18062: -60,48 + 18063: -60,50 + 18081: -47,45 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNw decals: - 9557: 16,-25 - 9575: 21,-34 - 9714: 16,-35 - 9722: 16,-31 - 9724: 12,-34 - 9737: 10,-36 - 9798: 29,-34 - 9801: 36,-34 - 9927: 16,-44 - 9928: 16,-39 - 9933: 26,-44 - 9937: 26,-39 - 9951: 20,-39 - 10008: 37,-44 - 10010: 30,-40 - 10028: 32,-40 - 10058: 29,-29 - 10059: 29,-29 - 10175: 20,-44 - 10204: 32,-51 - 10205: 32,-49 - 10244: 30,-50 - 10368: 4,-43 - 10369: 9,-43 - 10373: 8,-45 - 10375: 2,-44 - 10392: 14,-47 - 10629: 43,-33 - 12382: -7,-58 - 15328: 6,-25 - 15340: 17,-40 - 15345: 27,-47 - 15348: 27,-40 - 15349: 22,-35 - 15350: 31,-35 - 15356: 11,-35 - 18464: 17,-31 - 19396: 5,64 - 19397: 6,65 - 19774: 20,-27 - 19775: 24,-29 + 9555: 16,-25 + 9573: 21,-34 + 9712: 16,-35 + 9720: 16,-31 + 9722: 12,-34 + 9735: 10,-36 + 9796: 29,-34 + 9799: 36,-34 + 9925: 16,-44 + 9926: 16,-39 + 9931: 26,-44 + 9935: 26,-39 + 9949: 20,-39 + 10006: 37,-44 + 10008: 30,-40 + 10026: 32,-40 + 10056: 29,-29 + 10057: 29,-29 + 10173: 20,-44 + 10202: 32,-51 + 10203: 32,-49 + 10242: 30,-50 + 10366: 4,-43 + 10367: 9,-43 + 10371: 8,-45 + 10373: 2,-44 + 10390: 14,-47 + 10627: 43,-33 + 12380: -7,-58 + 15326: 6,-25 + 15338: 17,-40 + 15343: 27,-47 + 15346: 27,-40 + 15347: 22,-35 + 15348: 31,-35 + 15354: 11,-35 + 18462: 17,-31 + 19394: 5,64 + 19395: 6,65 + 19772: 20,-27 + 19773: 24,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNw decals: - 2898: -35,49 - 2900: -34,50 - 2911: -29,54 - 2919: -26,51 - 2969: -28,50 - 2970: -30,53 - 2971: -32,53 - 3008: -38,46 + 2896: -35,49 + 2898: -34,50 + 2909: -29,54 + 2917: -26,51 + 2967: -28,50 + 2968: -30,53 + 2969: -32,53 + 3006: -38,46 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNw decals: - 5096: 20,32 - 11529: -15,-34 - 11530: -13,-34 - 11607: -24,-34 - 11679: -6,-30 - 11680: -6,-30 - 11704: -10,-34 - 11705: -10,-35 - 11825: -15,-40 - 11918: -29,-34 - 11949: -30,-27 - 12103: -23,-24 - 12211: -25,-39 - 12246: -17,-51 - 12263: -20,-58 - 12275: -16,-56 - 12303: -10,-49 - 12307: -11,-50 - 12313: -6,-46 - 12337: -20,-40 - 12649: -8,-32 - 12750: -8,-32 - 15274: -12,-25 - 15283: -23,-26 - 15284: -29,-35 - 15290: -18,-35 - 15295: -14,-47 - 15296: -14,-39 - 15299: -29,-39 - 20064: 34,39 + 5094: 20,32 + 11527: -15,-34 + 11528: -13,-34 + 11605: -24,-34 + 11677: -6,-30 + 11678: -6,-30 + 11702: -10,-34 + 11703: -10,-35 + 11823: -15,-40 + 11916: -29,-34 + 11947: -30,-27 + 12101: -23,-24 + 12209: -25,-39 + 12244: -17,-51 + 12261: -20,-58 + 12273: -16,-56 + 12301: -10,-49 + 12305: -11,-50 + 12311: -6,-46 + 12335: -20,-40 + 12647: -8,-32 + 12748: -8,-32 + 15272: -12,-25 + 15281: -23,-26 + 15282: -29,-35 + 15288: -18,-35 + 15293: -14,-47 + 15294: -14,-39 + 15297: -29,-39 + 20062: 34,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerNw decals: - 10842: 26,-56 - 10882: 38,-62 - 10899: 43,-62 - 10911: 34,-61 - 10915: 34,-68 - 10988: 30,-69 + 10840: 26,-56 + 10880: 38,-62 + 10897: 43,-62 + 10909: 34,-61 + 10913: 34,-68 + 10986: 30,-69 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNw decals: - 7631: 61,-3 - 7632: 65,-3 - 19284: 65,-4 + 7629: 61,-3 + 7630: 65,-3 + 19282: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNw decals: - 3816: 10,68 + 3814: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNw decals: - 4371: 7,31 - 4382: 2,29 - 4415: 10,37 - 4423: 4,31 - 4447: 4,29 - 4467: 15,28 - 4505: 13,27 - 4506: 16,31 - 4540: 4,40 - 4551: 7,43 - 4559: 10,40 - 4596: 13,36 - 4623: 15,46 - 4624: 13,45 - 4625: 13,43 - 4634: 20,32 - 4718: 20,29 - 4719: 20,30 - 4723: 26,30 - 4728: 24,29 - 4733: 21,29 - 4734: 22,30 - 4739: 24,36 - 4768: 26,37 - 4786: 16,37 - 4787: 15,36 - 4791: 28,38 - 4828: 4,35 - 4833: 5,37 - 4874: 34,49 - 4919: 10,54 - 4948: 17,54 - 4953: 15,53 - 4961: 24,54 - 5059: 19,51 - 5060: 19,49 - 5061: 19,47 - 5062: 19,45 - 5063: 19,43 - 5064: 19,41 - 5065: 16,41 - 5066: 16,43 - 5067: 16,45 - 7007: 4,29 - 19930: 25,29 + 4369: 7,31 + 4380: 2,29 + 4413: 10,37 + 4421: 4,31 + 4445: 4,29 + 4465: 15,28 + 4503: 13,27 + 4504: 16,31 + 4538: 4,40 + 4549: 7,43 + 4557: 10,40 + 4594: 13,36 + 4621: 15,46 + 4622: 13,45 + 4623: 13,43 + 4632: 20,32 + 4716: 20,29 + 4717: 20,30 + 4721: 26,30 + 4726: 24,29 + 4731: 21,29 + 4732: 22,30 + 4737: 24,36 + 4766: 26,37 + 4784: 16,37 + 4785: 15,36 + 4789: 28,38 + 4826: 4,35 + 4831: 5,37 + 4872: 34,49 + 4917: 10,54 + 4946: 17,54 + 4951: 15,53 + 4959: 24,54 + 5057: 19,51 + 5058: 19,49 + 5059: 19,47 + 5060: 19,45 + 5061: 19,43 + 5062: 19,41 + 5063: 16,41 + 5064: 16,43 + 5065: 16,45 + 7005: 4,29 + 19928: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNw decals: - 4009: -39,54 - 9595: 3,-35 - 9602: 5,-30 - 9625: 5,-32 + 4007: -39,54 + 9593: 3,-35 + 9600: 5,-30 + 9623: 5,-32 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNw decals: - 16923: -53,2 - 16925: -49,2 - 16946: -61,1 - 16994: -64,1 - 17025: -58,-6 - 17028: -61,-7 - 17036: -58,-12 - 17087: -54,-12 - 17095: -50,-15 - 17102: -59,-17 - 17203: -55,15 - 17206: -58,15 - 17208: -59,14 - 17211: -59,10 - 17256: -78,14 - 17343: -49,-7 - 17382: -55,-9 - 17415: -71,-6 - 17416: -69,-6 - 17457: 5,90 - 17466: 10,88 - 17499: 10,81 - 17514: 10,76 - 17644: -73,2 - 17649: -74,0 - 17700: -72,12 - 17748: -77,7 - 17771: -77,1 - 17777: -79,0 - 17817: -71,-10 - 17852: -54,18 + 16921: -53,2 + 16923: -49,2 + 16944: -61,1 + 16992: -64,1 + 17023: -58,-6 + 17026: -61,-7 + 17034: -58,-12 + 17085: -54,-12 + 17093: -50,-15 + 17100: -59,-17 + 17201: -55,15 + 17204: -58,15 + 17206: -59,14 + 17209: -59,10 + 17254: -78,14 + 17341: -49,-7 + 17380: -55,-9 + 17413: -71,-6 + 17414: -69,-6 + 17455: 5,90 + 17464: 10,88 + 17497: 10,81 + 17512: 10,76 + 17642: -73,2 + 17647: -74,0 + 17698: -72,12 + 17746: -77,7 + 17769: -77,1 + 17775: -79,0 + 17815: -71,-10 + 17850: -54,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2356: -30,38 - 2810: -7,33 - 5593: -31,28 - 5594: -31,28 - 5595: -34,26 - 6357: -2,-16 - 6716: -24,-2 - 6717: -24,-2 - 6747: -33,-11 - 6769: -30,-16 - 8090: 58,-25 - 8091: 57,-26 - 8092: 57,-13 - 8093: 58,-12 - 8331: 35,-10 - 8332: 35,-10 - 8334: 35,-13 - 8371: 46,-14 - 8719: -8,-76 - 8720: -5,-77 - 8721: -3,-76 - 8722: -8,-80 - 8723: -3,-80 - 9111: 2,-25 - 9492: 72,-50 - 9493: 73,-49 - 9499: 73,-42 - 10685: 72,-50 - 10999: 39,-67 - 11000: 39,-67 - 15030: 11,23 - 15031: 1,23 - 15032: -6,23 - 15033: -16,23 - 15034: -19,19 - 15041: 17,19 - 15049: -21,34 - 15050: -19,36 - 15051: -19,32 - 15052: -19,29 - 15057: -22,33 - 15060: -22,50 - 15061: -21,51 - 15062: -19,52 - 15063: -17,51 - 15069: -19,48 - 15070: -23,41 - 15074: -11,49 - 15075: -6,49 - 15088: -20,57 - 15089: -13,57 - 15090: -6,57 - 15091: 0,57 - 15092: -5,64 - 15093: -6,68 - 15094: 0,68 - 15095: 5,68 - 15096: 6,75 - 15097: 6,82 - 15098: -13,68 - 15099: -12,75 - 15100: -12,82 - 15101: -12,88 - 15102: -12,95 - 15103: -26,68 - 15104: -20,68 - 15105: -31,68 - 15106: -30,75 - 15107: -30,82 - 15108: -30,88 - 15109: -30,95 - 15172: -19,64 - 15178: 17,12 - 15179: 21,5 - 15180: 28,5 - 15193: 21,-11 - 15196: 28,-11 - 15197: 17,-12 - 15210: -38,5 - 15211: -38,5 - 15212: -33,5 - 15213: -27,5 - 15224: -19,-12 - 15225: -19,-2 - 15226: -19,5 - 15236: 3,-20 - 15237: -8,-20 - 15238: -15,-20 - 15246: 44,-20 - 15247: 49,-20 - 15251: 17,5 - 15252: -10,14 - 15315: -1,-39 - 15316: -1,-44 - 15317: -1,-31 - 15318: -1,-24 - 15324: -1,-52 - 15325: -1,-59 - 15478: -42,11 - 15479: -42,17 - 15480: -42,22 - 15690: 95,-3 - 18841: -9,-9 - 18842: -3,-9 - 18843: 4,-9 - 18844: 10,-9 - 18851: -15,-9 - 19554: -19,12 - 19557: 10,-20 - 19748: 35,-9 - 19749: 34,-10 - 20020: 17,-2 - 20281: -19,-2 - 20282: -19,5 - 20283: -19,12 - 20284: -19,19 + 2354: -30,38 + 2808: -7,33 + 5591: -31,28 + 5592: -31,28 + 5593: -34,26 + 6355: -2,-16 + 6714: -24,-2 + 6715: -24,-2 + 6745: -33,-11 + 6767: -30,-16 + 8088: 58,-25 + 8089: 57,-26 + 8090: 57,-13 + 8091: 58,-12 + 8329: 35,-10 + 8330: 35,-10 + 8332: 35,-13 + 8369: 46,-14 + 8717: -8,-76 + 8718: -5,-77 + 8719: -3,-76 + 8720: -8,-80 + 8721: -3,-80 + 9109: 2,-25 + 9490: 72,-50 + 9491: 73,-49 + 9497: 73,-42 + 10683: 72,-50 + 10997: 39,-67 + 10998: 39,-67 + 15028: 11,23 + 15029: 1,23 + 15030: -6,23 + 15031: -16,23 + 15032: -19,19 + 15039: 17,19 + 15047: -21,34 + 15048: -19,36 + 15049: -19,32 + 15050: -19,29 + 15055: -22,33 + 15058: -22,50 + 15059: -21,51 + 15060: -19,52 + 15061: -17,51 + 15067: -19,48 + 15068: -23,41 + 15072: -11,49 + 15073: -6,49 + 15086: -20,57 + 15087: -13,57 + 15088: -6,57 + 15089: 0,57 + 15090: -5,64 + 15091: -6,68 + 15092: 0,68 + 15093: 5,68 + 15094: 6,75 + 15095: 6,82 + 15096: -13,68 + 15097: -12,75 + 15098: -12,82 + 15099: -12,88 + 15100: -12,95 + 15101: -26,68 + 15102: -20,68 + 15103: -31,68 + 15104: -30,75 + 15105: -30,82 + 15106: -30,88 + 15107: -30,95 + 15170: -19,64 + 15176: 17,12 + 15177: 21,5 + 15178: 28,5 + 15191: 21,-11 + 15194: 28,-11 + 15195: 17,-12 + 15208: -38,5 + 15209: -38,5 + 15210: -33,5 + 15211: -27,5 + 15222: -19,-12 + 15223: -19,-2 + 15224: -19,5 + 15234: 3,-20 + 15235: -8,-20 + 15236: -15,-20 + 15244: 44,-20 + 15245: 49,-20 + 15249: 17,5 + 15250: -10,14 + 15313: -1,-39 + 15314: -1,-44 + 15315: -1,-31 + 15316: -1,-24 + 15322: -1,-52 + 15323: -1,-59 + 15476: -42,11 + 15477: -42,17 + 15478: -42,22 + 15688: 95,-3 + 18839: -9,-9 + 18840: -3,-9 + 18841: 4,-9 + 18842: 10,-9 + 18849: -15,-9 + 19552: -19,12 + 19555: 10,-20 + 19746: 35,-9 + 19747: 34,-10 + 20018: 17,-2 + 20279: -19,-2 + 20280: -19,5 + 20281: -19,12 + 20282: -19,19 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSe decals: - 17887: -46,23 - 17931: -55,32 - 17932: -55,36 - 17964: -46,51 - 17999: -48,44 - 18006: -47,41 - 18049: -59,56 - 18053: -58,57 - 18076: -56,44 - 18077: -54,44 - 18148: -53,21 + 17885: -46,23 + 17929: -55,32 + 17930: -55,36 + 17962: -46,51 + 17997: -48,44 + 18004: -47,41 + 18047: -59,56 + 18051: -58,57 + 18074: -56,44 + 18075: -54,44 + 18146: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSe decals: - 9572: 18,-28 - 9705: 18,-36 - 9718: 14,-35 - 9792: 27,-53 - 9793: 28,-50 - 9794: 28,-44 - 9795: 28,-40 - 9796: 28,-36 - 9913: 17,-47 - 9920: 18,-40 - 9921: 18,-44 - 9950: 24,-40 - 9970: 38,-35 - 9971: 38,-35 - 10007: 37,-42 - 10031: 36,-40 - 10046: 30,-30 - 10096: 29,-27 - 10100: 29,-32 - 10122: 14,-40 - 10126: 24,-45 - 10144: 22,-49 - 10145: 25,-43 - 10174: 24,-44 - 10230: 31,-53 - 10359: 9,-41 - 10360: 4,-47 - 10390: 14,-44 - 10619: 49,-33 - 15330: 10,-26 - 15331: 13,-35 - 15332: 17,-34 - 15333: 27,-35 - 15334: 36,-35 - 15335: 27,-44 - 15336: 27,-51 - 15337: 17,-45 - 19426: -5,-60 + 9570: 18,-28 + 9703: 18,-36 + 9716: 14,-35 + 9790: 27,-53 + 9791: 28,-50 + 9792: 28,-44 + 9793: 28,-40 + 9794: 28,-36 + 9911: 17,-47 + 9918: 18,-40 + 9919: 18,-44 + 9948: 24,-40 + 9968: 38,-35 + 9969: 38,-35 + 10005: 37,-42 + 10029: 36,-40 + 10044: 30,-30 + 10094: 29,-27 + 10098: 29,-32 + 10120: 14,-40 + 10124: 24,-45 + 10142: 22,-49 + 10143: 25,-43 + 10172: 24,-44 + 10228: 31,-53 + 10357: 9,-41 + 10358: 4,-47 + 10388: 14,-44 + 10617: 49,-33 + 15328: 10,-26 + 15329: 13,-35 + 15330: 17,-34 + 15331: 27,-35 + 15332: 36,-35 + 15333: 27,-44 + 15334: 27,-51 + 15335: 17,-45 + 19424: -5,-60 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSe decals: - 2883: -27,47 - 2884: -31,46 - 2890: -32,46 - 2914: -28,53 - 2967: -30,47 - 2968: -28,47 - 2998: -37,49 - 3001: -38,47 + 2881: -27,47 + 2882: -31,46 + 2888: -32,46 + 2912: -28,53 + 2965: -30,47 + 2966: -28,47 + 2996: -37,49 + 2999: -38,47 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSe decals: - 5102: 27,31 - 5105: 22,27 - 5179: 35,34 - 5182: 36,37 - 11650: -12,-35 - 11675: -5,-35 - 11694: -5,-32 - 11699: -7,-36 - 11702: -12,-34 - 11803: -13,-36 - 11827: -13,-41 - 11913: -29,-36 - 11914: -24,-36 - 11944: -28,-31 - 11945: -29,-29 - 11946: -29,-29 - 11947: -28,-27 - 12107: -22,-31 - 12108: -22,-26 - 12210: -24,-41 - 12247: -13,-50 - 12250: -16,-54 - 12278: -13,-59 - 12310: -4,-48 - 12318: -6,-53 - 12340: -19,-44 - 12647: -7,-34 - 12748: -7,-34 - 12749: -7,-34 - 15277: -8,-26 - 15278: -14,-35 - 15279: -14,-43 - 15280: -14,-53 - 15281: -24,-35 - 15282: -23,-30 - 15301: -29,-41 - 20068: 36,39 + 5100: 27,31 + 5103: 22,27 + 5177: 35,34 + 5180: 36,37 + 11648: -12,-35 + 11673: -5,-35 + 11692: -5,-32 + 11697: -7,-36 + 11700: -12,-34 + 11801: -13,-36 + 11825: -13,-41 + 11911: -29,-36 + 11912: -24,-36 + 11942: -28,-31 + 11943: -29,-29 + 11944: -29,-29 + 11945: -28,-27 + 12105: -22,-31 + 12106: -22,-26 + 12208: -24,-41 + 12245: -13,-50 + 12248: -16,-54 + 12276: -13,-59 + 12308: -4,-48 + 12316: -6,-53 + 12338: -19,-44 + 12645: -7,-34 + 12746: -7,-34 + 12747: -7,-34 + 15275: -8,-26 + 15276: -14,-35 + 15277: -14,-43 + 15278: -14,-53 + 15279: -24,-35 + 15280: -23,-30 + 15299: -29,-41 + 20066: 36,39 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerSe decals: - 10841: 28,-56 - 10847: 27,-58 - 10879: 41,-62 - 10908: 36,-62 - 10913: 36,-70 - 10948: 41,-71 - 10949: 39,-71 - 10950: 39,-71 - 10987: 28,-67 + 10839: 28,-56 + 10845: 27,-58 + 10877: 41,-62 + 10906: 36,-62 + 10911: 36,-70 + 10946: 41,-71 + 10947: 39,-71 + 10948: 39,-71 + 10985: 28,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSe decals: - 19259: 70,13 - 19271: 63,-4 + 19257: 70,13 + 19269: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSe decals: - 3818: 12,67 + 3816: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSe decals: - 4385: 10,28 - 4386: 10,30 - 4410: 4,33 - 4411: 9,33 - 4418: 11,35 - 4426: 5,26 - 4427: 8,26 - 4445: 8,28 - 4477: 16,26 - 4503: 16,27 - 4532: 10,34 - 4535: 5,39 - 4554: 10,39 - 4571: 10,42 - 4574: 11,43 - 4577: 11,45 - 4589: 13,34 - 4590: 15,34 - 4606: 21,34 - 4630: 22,36 - 4654: 22,27 - 4655: 21,26 - 4665: 27,31 - 4700: 20,28 - 4701: 26,28 - 4702: 24,28 - 4724: 26,29 - 4725: 22,29 - 4731: 21,29 - 4767: 27,35 - 4784: 18,35 - 4785: 19,36 - 4793: 28,40 - 4826: 9,35 - 4838: 21,40 - 4871: 32,51 - 4875: 38,51 - 4898: 25,48 - 4936: 13,49 - 4941: 13,52 - 4962: 25,54 - 5039: 22,43 - 5051: 17,45 - 5052: 17,43 - 5053: 17,41 - 5054: 22,41 - 5055: 22,45 - 5056: 22,47 - 5057: 22,49 - 5058: 22,51 - 7005: 8,28 - 19934: 25,29 + 4383: 10,28 + 4384: 10,30 + 4408: 4,33 + 4409: 9,33 + 4416: 11,35 + 4424: 5,26 + 4425: 8,26 + 4443: 8,28 + 4475: 16,26 + 4501: 16,27 + 4530: 10,34 + 4533: 5,39 + 4552: 10,39 + 4569: 10,42 + 4572: 11,43 + 4575: 11,45 + 4587: 13,34 + 4588: 15,34 + 4604: 21,34 + 4628: 22,36 + 4652: 22,27 + 4653: 21,26 + 4663: 27,31 + 4698: 20,28 + 4699: 26,28 + 4700: 24,28 + 4722: 26,29 + 4723: 22,29 + 4729: 21,29 + 4765: 27,35 + 4782: 18,35 + 4783: 19,36 + 4791: 28,40 + 4824: 9,35 + 4836: 21,40 + 4869: 32,51 + 4873: 38,51 + 4896: 25,48 + 4934: 13,49 + 4939: 13,52 + 4960: 25,54 + 5037: 22,43 + 5049: 17,45 + 5050: 17,43 + 5051: 17,41 + 5052: 22,41 + 5053: 22,45 + 5054: 22,47 + 5055: 22,49 + 5056: 22,51 + 7003: 8,28 + 19932: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSe decals: - 9599: 5,-36 - 9601: 8,-34 - 9628: 6,-34 + 9597: 5,-36 + 9599: 8,-34 + 9626: 6,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSe decals: - 16920: -49,1 - 16943: -58,-4 - 16964: -52,8 - 16974: -51,9 - 16993: -63,1 - 17012: -63,-7 - 17020: -57,-9 - 17021: -57,-7 - 17034: -58,-10 - 17074: -52,-4 - 17088: -52,-10 - 17089: -52,-15 - 17097: -56,-18 - 17098: -54,-18 - 17119: -50,-17 - 17196: -47,14 - 17201: -50,11 - 17231: -68,15 - 17257: -76,14 - 17258: -77,13 - 17262: -72,14 - 17322: -58,17 - 17341: -51,-9 - 17411: -69,-8 - 17437: -75,-8 - 17481: 6,87 - 17482: 10,84 - 17491: 11,87 - 17517: 12,78 - 17647: -66,1 - 17652: -71,-4 - 17653: -69,-4 - 17696: -72,10 - 17742: -77,3 - 17783: -76,-2 - 17787: -76,0 - 19939: -49,-3 + 16918: -49,1 + 16941: -58,-4 + 16962: -52,8 + 16972: -51,9 + 16991: -63,1 + 17010: -63,-7 + 17018: -57,-9 + 17019: -57,-7 + 17032: -58,-10 + 17072: -52,-4 + 17086: -52,-10 + 17087: -52,-15 + 17095: -56,-18 + 17096: -54,-18 + 17117: -50,-17 + 17194: -47,14 + 17199: -50,11 + 17229: -68,15 + 17255: -76,14 + 17256: -77,13 + 17260: -72,14 + 17320: -58,17 + 17339: -51,-9 + 17409: -69,-8 + 17435: -75,-8 + 17479: 6,87 + 17480: 10,84 + 17489: 11,87 + 17515: 12,78 + 17645: -66,1 + 17650: -71,-4 + 17651: -69,-4 + 17694: -72,10 + 17740: -77,3 + 17781: -76,-2 + 17785: -76,0 + 19937: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 2366: -29,32 - 2367: -29,32 - 2370: -29,30 - 2373: -31,30 - 2699: -12,52 - 3836: 19,69 - 3839: 22,69 - 6681: -32,-3 - 6682: -32,-3 - 6699: -32,1 - 6704: -29,-3 - 6708: -24,-3 - 6709: -24,-3 - 6772: -35,-11 - 6982: -23,-17 - 6986: -24,-18 - 8086: 60,-16 - 8087: 61,-15 - 8088: 61,-28 - 8089: 60,-29 - 8340: 39,-11 - 8341: 39,-14 - 8342: 39,-14 - 8366: 47,-17 - 8729: -4,-79 - 8730: -1,-80 - 8731: -6,-80 - 8733: -6,-76 - 8734: -1,-76 - 8987: -15,-28 - 8988: -6,-28 - 9105: 11,-28 - 9481: -4,-71 - 9496: 73,-47 - 10692: 75,-45 - 13495: -41,-63 - 14893: -21,47 - 14894: -17,47 - 14895: -16,48 - 14896: -19,46 - 14897: -19,50 - 14898: -23,41 - 14899: -19,34 - 14900: -19,31 - 14901: -19,27 - 14902: -19,16 - 14903: -13,23 - 14904: -3,23 - 14905: 4,23 - 14990: 17,16 - 14991: 14,23 - 15058: -21,29 - 15078: -10,49 - 15079: -5,49 - 15080: -11,57 - 15081: -4,57 - 15082: 2,57 - 15083: -18,57 - 15116: -30,85 - 15117: -30,92 - 15118: -30,79 - 15123: -30,72 - 15124: -29,68 - 15125: -24,68 - 15126: -18,68 - 15127: -11,68 - 15128: -4,68 - 15129: -12,72 - 15130: -12,79 - 15131: -12,85 - 15132: -12,92 - 15148: 6,79 - 15149: 6,72 - 15150: 7,68 - 15151: 2,68 - 15166: -5,61 - 15173: -19,61 - 15175: 17,9 - 15176: 24,5 - 15177: 31,5 - 15186: 17,2 - 15187: 17,-5 - 15188: 17,-17 - 15189: 24,-11 - 15190: 30,-11 - 15214: -31,5 - 15215: -23,5 - 15216: -36,5 - 15223: -19,-17 - 15227: -19,2 - 15228: -19,-5 - 15229: -12,-20 - 15230: -5,-20 - 15234: 6,-20 - 15235: 13,-20 - 15244: 47,-20 - 15245: 52,-20 - 15302: -1,-35 - 15303: -1,-42 - 15304: -1,-50 - 15305: -1,-55 - 15306: -1,-61 - 15313: -1,-27 - 15481: -42,20 - 15482: -42,9 - 15483: -42,14 - 15616: 95,-3 - 15707: 96,6 - 18848: -6,-9 - 18849: -12,-9 - 18858: 7,-9 - 18859: 13,-9 - 18861: 1,-9 - 19556: -19,9 - 19752: 40,-14 - 19753: 39,-15 - 20293: -19,2 - 20294: -19,9 - 20295: -19,16 - 20296: -19,-5 + 2364: -29,32 + 2365: -29,32 + 2368: -29,30 + 2371: -31,30 + 2697: -12,52 + 3834: 19,69 + 3837: 22,69 + 6679: -32,-3 + 6680: -32,-3 + 6697: -32,1 + 6702: -29,-3 + 6706: -24,-3 + 6707: -24,-3 + 6770: -35,-11 + 6980: -23,-17 + 6984: -24,-18 + 8084: 60,-16 + 8085: 61,-15 + 8086: 61,-28 + 8087: 60,-29 + 8338: 39,-11 + 8339: 39,-14 + 8340: 39,-14 + 8364: 47,-17 + 8727: -4,-79 + 8728: -1,-80 + 8729: -6,-80 + 8731: -6,-76 + 8732: -1,-76 + 8985: -15,-28 + 8986: -6,-28 + 9103: 11,-28 + 9479: -4,-71 + 9494: 73,-47 + 10690: 75,-45 + 13493: -41,-63 + 14891: -21,47 + 14892: -17,47 + 14893: -16,48 + 14894: -19,46 + 14895: -19,50 + 14896: -23,41 + 14897: -19,34 + 14898: -19,31 + 14899: -19,27 + 14900: -19,16 + 14901: -13,23 + 14902: -3,23 + 14903: 4,23 + 14988: 17,16 + 14989: 14,23 + 15056: -21,29 + 15076: -10,49 + 15077: -5,49 + 15078: -11,57 + 15079: -4,57 + 15080: 2,57 + 15081: -18,57 + 15114: -30,85 + 15115: -30,92 + 15116: -30,79 + 15121: -30,72 + 15122: -29,68 + 15123: -24,68 + 15124: -18,68 + 15125: -11,68 + 15126: -4,68 + 15127: -12,72 + 15128: -12,79 + 15129: -12,85 + 15130: -12,92 + 15146: 6,79 + 15147: 6,72 + 15148: 7,68 + 15149: 2,68 + 15164: -5,61 + 15171: -19,61 + 15173: 17,9 + 15174: 24,5 + 15175: 31,5 + 15184: 17,2 + 15185: 17,-5 + 15186: 17,-17 + 15187: 24,-11 + 15188: 30,-11 + 15212: -31,5 + 15213: -23,5 + 15214: -36,5 + 15221: -19,-17 + 15225: -19,2 + 15226: -19,-5 + 15227: -12,-20 + 15228: -5,-20 + 15232: 6,-20 + 15233: 13,-20 + 15242: 47,-20 + 15243: 52,-20 + 15300: -1,-35 + 15301: -1,-42 + 15302: -1,-50 + 15303: -1,-55 + 15304: -1,-61 + 15311: -1,-27 + 15479: -42,20 + 15480: -42,9 + 15481: -42,14 + 15614: 95,-3 + 15705: 96,6 + 18846: -6,-9 + 18847: -12,-9 + 18856: 7,-9 + 18857: 13,-9 + 18859: 1,-9 + 19554: -19,9 + 19750: 40,-14 + 19751: 39,-15 + 20291: -19,2 + 20292: -19,9 + 20293: -19,16 + 20294: -19,-5 - node: color: '#334E6DFF' id: BrickTileWhiteInnerSw decals: - 21327: -16,14 - 21328: -16,14 + 21325: -16,14 + 21326: -16,14 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSw decals: - 15716: 97,-3 - 17908: -49,21 - 17929: -55,32 - 17930: -56,35 - 17998: -48,44 - 18000: -50,41 - 18048: -59,56 - 18052: -60,57 - 18060: -60,48 - 18063: -60,50 - 18075: -56,44 - 18078: -54,44 - 18149: -54,23 + 15714: 97,-3 + 17906: -49,21 + 17927: -55,32 + 17928: -56,35 + 17996: -48,44 + 17998: -50,41 + 18046: -59,56 + 18050: -60,57 + 18058: -60,48 + 18061: -60,50 + 18073: -56,44 + 18076: -54,44 + 18147: -54,23 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSw decals: - 9556: 16,-26 - 9713: 16,-35 - 9723: 16,-31 - 9736: 10,-34 - 9791: 27,-53 - 9797: 26,-36 - 9912: 17,-47 - 9922: 16,-44 - 9923: 16,-40 - 9934: 26,-44 - 9938: 26,-40 - 9949: 20,-40 - 10005: 37,-42 - 10006: 30,-40 - 10030: 32,-40 - 10045: 26,-30 - 10095: 29,-27 - 10099: 29,-32 - 10125: 20,-45 - 10143: 22,-49 - 10173: 20,-44 - 10203: 32,-51 - 10206: 32,-49 - 10229: 31,-53 - 10243: 30,-50 - 10357: 9,-41 - 10358: 4,-47 - 10367: 3,-44 - 10391: 14,-45 - 10628: 43,-33 - 15329: 6,-26 - 15342: 17,-45 - 15343: 27,-44 - 15344: 27,-51 - 15353: 22,-35 - 15354: 31,-35 - 15355: 11,-35 - 18466: 17,-34 - 19395: 5,64 - 19764: 20,-28 - 19765: 24,-29 + 9554: 16,-26 + 9711: 16,-35 + 9721: 16,-31 + 9734: 10,-34 + 9789: 27,-53 + 9795: 26,-36 + 9910: 17,-47 + 9920: 16,-44 + 9921: 16,-40 + 9932: 26,-44 + 9936: 26,-40 + 9947: 20,-40 + 10003: 37,-42 + 10004: 30,-40 + 10028: 32,-40 + 10043: 26,-30 + 10093: 29,-27 + 10097: 29,-32 + 10123: 20,-45 + 10141: 22,-49 + 10171: 20,-44 + 10201: 32,-51 + 10204: 32,-49 + 10227: 31,-53 + 10241: 30,-50 + 10355: 9,-41 + 10356: 4,-47 + 10365: 3,-44 + 10389: 14,-45 + 10626: 43,-33 + 15327: 6,-26 + 15340: 17,-45 + 15341: 27,-44 + 15342: 27,-51 + 15351: 22,-35 + 15352: 31,-35 + 15353: 11,-35 + 18464: 17,-34 + 19393: 5,64 + 19762: 20,-28 + 19763: 24,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSw decals: - 2885: -31,46 - 2891: -32,46 - 2896: -34,48 - 2897: -35,49 - 2964: -30,47 - 2965: -32,47 - 2966: -28,47 - 3007: -38,48 - 3009: -38,45 + 2883: -31,46 + 2889: -32,46 + 2894: -34,48 + 2895: -35,49 + 2962: -30,47 + 2963: -32,47 + 2964: -28,47 + 3005: -38,48 + 3007: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSw decals: - 5104: 24,27 - 5165: 38,30 - 5175: 38,30 - 11698: -7,-36 - 11700: -10,-35 - 11701: -10,-35 - 11703: -10,-34 - 11802: -15,-36 - 11824: -15,-40 - 11911: -29,-36 - 11912: -24,-36 - 11948: -30,-31 - 12209: -25,-41 - 12245: -17,-51 - 12249: -16,-54 - 12261: -19,-59 - 12262: -20,-58 - 12306: -11,-50 - 12317: -6,-53 - 12339: -19,-44 - 12648: -8,-34 - 12746: -8,-34 - 12747: -8,-34 - 15276: -12,-26 - 15286: -29,-35 - 15287: -23,-30 - 15291: -18,-35 - 15292: -14,-43 - 15293: -14,-53 - 15300: -29,-41 + 5102: 24,27 + 5163: 38,30 + 5173: 38,30 + 11696: -7,-36 + 11698: -10,-35 + 11699: -10,-35 + 11701: -10,-34 + 11800: -15,-36 + 11822: -15,-40 + 11909: -29,-36 + 11910: -24,-36 + 11946: -30,-31 + 12207: -25,-41 + 12243: -17,-51 + 12247: -16,-54 + 12259: -19,-59 + 12260: -20,-58 + 12304: -11,-50 + 12315: -6,-53 + 12337: -19,-44 + 12646: -8,-34 + 12744: -8,-34 + 12745: -8,-34 + 15274: -12,-26 + 15284: -29,-35 + 15285: -23,-30 + 15289: -18,-35 + 15290: -14,-43 + 15291: -14,-53 + 15298: -29,-41 - node: color: '#CEDA8BFF' id: BrickTileWhiteInnerSw decals: - 10840: 26,-56 - 10846: 27,-58 - 10881: 38,-62 - 10898: 43,-62 - 10910: 34,-61 - 10914: 34,-68 - 10923: 38,-70 - 10931: 39,-71 - 10951: 41,-71 - 10952: 41,-71 - 10989: 30,-67 + 10838: 26,-56 + 10844: 27,-58 + 10879: 38,-62 + 10896: 43,-62 + 10908: 34,-61 + 10912: 34,-68 + 10921: 38,-70 + 10929: 39,-71 + 10949: 41,-71 + 10950: 41,-71 + 10987: 30,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSw decals: - 19283: 65,-4 + 19281: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSw decals: - 3815: 10,68 + 3813: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSw decals: - 4381: 2,29 - 4409: 4,33 - 4412: 9,33 - 4428: 7,26 - 4429: 4,26 - 4444: 4,28 - 4464: 12,28 - 4476: 14,26 - 4504: 13,27 - 4536: 5,39 - 4539: 4,40 - 4553: 10,39 - 4570: 10,42 - 4591: 15,34 - 4597: 13,35 - 4605: 20,34 - 4626: 13,45 - 4627: 13,43 - 4653: 24,27 - 4656: 21,26 - 4698: 20,28 - 4699: 26,28 - 4703: 22,28 - 4717: 20,29 - 4726: 24,29 - 4732: 21,29 - 4738: 24,36 - 4766: 26,35 - 4782: 16,35 - 4783: 15,36 - 4792: 28,40 - 4827: 4,35 - 4839: 24,40 - 4873: 34,51 - 4952: 15,52 - 5040: 19,43 - 5041: 19,45 - 5042: 19,47 - 5043: 19,49 - 5044: 19,51 - 5047: 19,41 - 5048: 16,41 - 5049: 16,43 - 5050: 16,45 - 5169: 38,30 - 7006: 4,28 - 19933: 25,29 + 4379: 2,29 + 4407: 4,33 + 4410: 9,33 + 4426: 7,26 + 4427: 4,26 + 4442: 4,28 + 4462: 12,28 + 4474: 14,26 + 4502: 13,27 + 4534: 5,39 + 4537: 4,40 + 4551: 10,39 + 4568: 10,42 + 4589: 15,34 + 4595: 13,35 + 4603: 20,34 + 4624: 13,45 + 4625: 13,43 + 4651: 24,27 + 4654: 21,26 + 4696: 20,28 + 4697: 26,28 + 4701: 22,28 + 4715: 20,29 + 4724: 24,29 + 4730: 21,29 + 4736: 24,36 + 4764: 26,35 + 4780: 16,35 + 4781: 15,36 + 4790: 28,40 + 4825: 4,35 + 4837: 24,40 + 4871: 34,51 + 4950: 15,52 + 5038: 19,43 + 5039: 19,45 + 5040: 19,47 + 5041: 19,49 + 5042: 19,51 + 5045: 19,41 + 5046: 16,41 + 5047: 16,43 + 5048: 16,45 + 5167: 38,30 + 7004: 4,28 + 19931: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSw decals: - 9597: 3,-35 - 9598: 5,-36 - 9609: 3,-32 - 9627: 5,-34 + 9595: 3,-35 + 9596: 5,-36 + 9607: 3,-32 + 9625: 5,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSw decals: - 16942: -58,-4 - 16962: -59,1 - 16963: -53,8 - 16975: -54,9 - 16992: -64,1 - 17011: -61,-7 - 17033: -58,-10 - 17071: -59,-17 - 17072: -55,-7 - 17073: -54,-9 - 17094: -50,-15 - 17096: -54,-18 - 17101: -56,-18 - 17209: -59,14 - 17210: -59,10 - 17219: -66,15 - 17254: -72,14 - 17259: -77,13 - 17321: -58,17 - 17344: -49,-9 - 17410: -71,-8 - 17480: 6,87 - 17483: 10,84 - 17498: 10,80 - 17513: 10,75 - 17520: 12,74 - 17648: -74,0 - 17650: -71,-4 - 17651: -69,-4 - 17695: -72,10 - 17741: -77,3 - 17775: -79,0 - 17780: -78,-1 - 17782: -76,-2 - 18208: -54,-4 + 16940: -58,-4 + 16960: -59,1 + 16961: -53,8 + 16973: -54,9 + 16990: -64,1 + 17009: -61,-7 + 17031: -58,-10 + 17069: -59,-17 + 17070: -55,-7 + 17071: -54,-9 + 17092: -50,-15 + 17094: -54,-18 + 17099: -56,-18 + 17207: -59,14 + 17208: -59,10 + 17217: -66,15 + 17252: -72,14 + 17257: -77,13 + 17319: -58,17 + 17342: -49,-9 + 17408: -71,-8 + 17478: 6,87 + 17481: 10,84 + 17496: 10,80 + 17511: 10,75 + 17518: 12,74 + 17646: -74,0 + 17648: -71,-4 + 17649: -69,-4 + 17693: -72,10 + 17739: -77,3 + 17773: -79,0 + 17778: -78,-1 + 17780: -76,-2 + 18206: -54,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2359: -28,38 - 2374: -31,30 - 2711: -12,52 - 2809: -7,33 - 3833: 17,70 - 3835: 18,69 - 3838: 21,69 - 6358: -2,-16 - 6705: -29,-3 - 6706: -24,-3 - 6707: -24,-3 - 6749: -28,-16 - 6771: -30,-11 - 6985: -24,-18 - 8082: 58,-29 - 8083: 57,-28 - 8084: 57,-15 - 8085: 58,-16 - 8337: 35,-14 - 8338: 35,-14 - 8339: 35,-11 - 8365: 46,-17 - 8715: -8,-80 - 8716: -3,-80 - 8717: -8,-76 - 8718: -3,-76 - 8732: -5,-79 - 8986: -13,-28 - 8989: -6,-28 - 9103: 5,-28 - 9104: 13,-28 - 9112: -16,-24 - 9482: -5,-71 - 9491: 72,-50 - 9495: 73,-47 - 9497: 69,-41 - 10684: 72,-50 - 14870: 10,-20 - 14871: 17,-17 - 14872: 17,-5 - 14873: 17,2 - 14874: 17,9 - 14875: 17,16 - 14876: 11,23 - 14877: 1,23 - 14878: -6,23 - 14879: -16,23 - 14880: -19,16 - 14881: -19,27 - 14882: -21,29 - 14883: -22,30 - 14884: -19,31 - 14885: -19,34 - 14886: -23,41 - 14887: -19,46 - 14888: -21,47 - 14889: -17,47 - 14890: -19,50 - 15059: -22,48 - 15076: -11,49 - 15077: -6,49 - 15084: -20,57 - 15085: -13,57 - 15086: -6,57 - 15087: 0,57 - 15114: -30,85 - 15115: -30,92 - 15119: -30,79 - 15122: -30,72 - 15133: -12,92 - 15134: -12,85 - 15135: -12,79 - 15136: -12,72 - 15137: -13,68 - 15138: -20,68 - 15139: -26,68 - 15140: -31,68 - 15141: -19,61 - 15142: -5,61 - 15143: -6,68 - 15144: 0,68 - 15145: 5,68 - 15146: 6,72 - 15147: 6,79 - 15184: 21,5 - 15185: 28,5 - 15191: 28,-11 - 15192: 21,-11 - 15217: -38,5 - 15218: -33,5 - 15219: -27,5 - 15220: -19,2 - 15221: -19,-5 - 15222: -19,-17 - 15232: -8,-20 - 15233: 3,-20 - 15239: -15,-20 - 15242: 44,-20 - 15243: 49,-20 - 15307: -1,-61 - 15308: -1,-55 - 15309: -1,-50 - 15310: -1,-42 - 15311: -1,-35 - 15312: -1,-27 - 15472: -42,9 - 15473: -42,14 - 15474: -42,20 - 15708: 96,6 - 18850: -15,-9 - 18854: -9,-9 - 18855: -3,-9 - 18856: 4,-9 - 18857: 10,-9 - 19555: -19,9 - 19751: 34,-14 - 19754: 35,-15 - 20289: -19,-5 - 20290: -19,2 - 20291: -19,9 - 20292: -19,16 + 2357: -28,38 + 2372: -31,30 + 2709: -12,52 + 2807: -7,33 + 3831: 17,70 + 3833: 18,69 + 3836: 21,69 + 6356: -2,-16 + 6703: -29,-3 + 6704: -24,-3 + 6705: -24,-3 + 6747: -28,-16 + 6769: -30,-11 + 6983: -24,-18 + 8080: 58,-29 + 8081: 57,-28 + 8082: 57,-15 + 8083: 58,-16 + 8335: 35,-14 + 8336: 35,-14 + 8337: 35,-11 + 8363: 46,-17 + 8713: -8,-80 + 8714: -3,-80 + 8715: -8,-76 + 8716: -3,-76 + 8730: -5,-79 + 8984: -13,-28 + 8987: -6,-28 + 9101: 5,-28 + 9102: 13,-28 + 9110: -16,-24 + 9480: -5,-71 + 9489: 72,-50 + 9493: 73,-47 + 9495: 69,-41 + 10682: 72,-50 + 14868: 10,-20 + 14869: 17,-17 + 14870: 17,-5 + 14871: 17,2 + 14872: 17,9 + 14873: 17,16 + 14874: 11,23 + 14875: 1,23 + 14876: -6,23 + 14877: -16,23 + 14878: -19,16 + 14879: -19,27 + 14880: -21,29 + 14881: -22,30 + 14882: -19,31 + 14883: -19,34 + 14884: -23,41 + 14885: -19,46 + 14886: -21,47 + 14887: -17,47 + 14888: -19,50 + 15057: -22,48 + 15074: -11,49 + 15075: -6,49 + 15082: -20,57 + 15083: -13,57 + 15084: -6,57 + 15085: 0,57 + 15112: -30,85 + 15113: -30,92 + 15117: -30,79 + 15120: -30,72 + 15131: -12,92 + 15132: -12,85 + 15133: -12,79 + 15134: -12,72 + 15135: -13,68 + 15136: -20,68 + 15137: -26,68 + 15138: -31,68 + 15139: -19,61 + 15140: -5,61 + 15141: -6,68 + 15142: 0,68 + 15143: 5,68 + 15144: 6,72 + 15145: 6,79 + 15182: 21,5 + 15183: 28,5 + 15189: 28,-11 + 15190: 21,-11 + 15215: -38,5 + 15216: -33,5 + 15217: -27,5 + 15218: -19,2 + 15219: -19,-5 + 15220: -19,-17 + 15230: -8,-20 + 15231: 3,-20 + 15237: -15,-20 + 15240: 44,-20 + 15241: 49,-20 + 15305: -1,-61 + 15306: -1,-55 + 15307: -1,-50 + 15308: -1,-42 + 15309: -1,-35 + 15310: -1,-27 + 15470: -42,9 + 15471: -42,14 + 15472: -42,20 + 15706: 96,6 + 18848: -15,-9 + 18852: -9,-9 + 18853: -3,-9 + 18854: 4,-9 + 18855: 10,-9 + 19553: -19,9 + 19749: 34,-14 + 19752: 35,-15 + 20287: -19,-5 + 20288: -19,2 + 20289: -19,9 + 20290: -19,16 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineE @@ -13287,8 +13282,8 @@ entities: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 21324: -18,12 - 21325: -18,13 + 21322: -18,12 + 21323: -18,13 - node: color: '#80C71FFF' id: BrickTileWhiteLineE @@ -13299,329 +13294,329 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineE decals: - 3897: 27,66 - 3899: 24,66 - 15713: 97,-3 - 15718: 96,-3 - 17886: -46,22 - 17895: -51,21 - 17905: -46,19 - 17906: -46,20 - 17907: -46,21 - 17911: -54,33 - 17912: -54,34 - 17916: -55,38 - 17918: -55,35 - 17950: -47,37 - 17951: -47,38 - 17952: -47,39 - 17953: -47,40 - 17960: -45,51 - 17965: -46,52 - 17966: -46,53 - 17967: -46,54 - 17968: -46,55 - 17973: -46,57 - 17987: -46,50 - 17988: -46,49 - 17989: -46,48 - 17990: -46,47 - 17991: -46,47 - 17992: -46,46 - 17993: -46,43 - 17996: -51,41 - 18026: -58,46 - 18027: -58,47 - 18028: -58,48 - 18029: -58,49 - 18030: -58,50 - 18031: -58,51 - 18032: -58,52 - 18034: -58,53 - 18047: -61,57 - 18061: -61,48 - 18062: -61,50 - 18131: -53,22 - 18132: -53,23 - 18136: -56,24 - 18137: -56,23 - 18144: -53,20 + 3895: 27,66 + 3897: 24,66 + 15711: 97,-3 + 15716: 96,-3 + 17884: -46,22 + 17893: -51,21 + 17903: -46,19 + 17904: -46,20 + 17905: -46,21 + 17909: -54,33 + 17910: -54,34 + 17914: -55,38 + 17916: -55,35 + 17948: -47,37 + 17949: -47,38 + 17950: -47,39 + 17951: -47,40 + 17958: -45,51 + 17963: -46,52 + 17964: -46,53 + 17965: -46,54 + 17966: -46,55 + 17971: -46,57 + 17985: -46,50 + 17986: -46,49 + 17987: -46,48 + 17988: -46,47 + 17989: -46,47 + 17990: -46,46 + 17991: -46,43 + 17994: -51,41 + 18024: -58,46 + 18025: -58,47 + 18026: -58,48 + 18027: -58,49 + 18028: -58,50 + 18029: -58,51 + 18030: -58,52 + 18032: -58,53 + 18045: -61,57 + 18059: -61,48 + 18060: -61,50 + 18129: -53,22 + 18130: -53,23 + 18134: -56,24 + 18135: -56,23 + 18142: -53,20 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineE decals: - 9512: 5,-26 - 9513: 5,-26 - 9516: 5,-25 - 9517: 18,-25 - 9518: 18,-26 - 9519: 18,-29 - 9520: 18,-30 - 9521: 18,-31 - 9522: 18,-32 - 9523: 18,-33 - 9551: 15,-26 - 9552: 15,-25 - 9662: 28,-38 - 9663: 28,-39 - 9664: 28,-42 - 9665: 28,-43 - 9666: 28,-45 - 9667: 28,-46 - 9668: 28,-47 - 9669: 28,-48 - 9670: 28,-48 - 9671: 28,-49 - 9672: 28,-51 - 9673: 28,-52 - 9706: 19,-36 - 9707: 19,-35 - 9708: 19,-34 - 9716: 15,-35 - 9721: 15,-31 - 9738: 9,-36 - 9739: 9,-34 - 9741: 15,-35 - 9779: 25,-39 - 9780: 25,-40 - 9781: 19,-39 - 9782: 19,-40 - 9788: 25,-44 - 9850: 10,-35 - 9851: 21,-35 - 9852: 30,-35 - 9853: 26,-40 - 9854: 26,-41 - 9855: 26,-43 - 9856: 26,-44 - 9857: 26,-42 - 9858: 26,-47 - 9859: 26,-48 - 9860: 26,-49 - 9861: 26,-50 - 9862: 26,-50 - 9863: 26,-51 - 9864: 16,-40 - 9865: 16,-41 - 9866: 16,-43 - 9867: 16,-43 - 9868: 16,-45 - 9869: 16,-34 - 9870: 16,-34 - 9871: 16,-32 - 9872: 16,-32 - 9873: 16,-31 - 9874: 16,-31 - 9875: 16,-33 - 9914: 18,-46 - 9915: 18,-45 - 9916: 18,-43 - 9917: 18,-42 - 9918: 18,-41 - 9919: 18,-38 - 9924: 16,-44 - 9926: 15,-44 - 9929: 15,-39 - 9930: 15,-40 - 9973: 38,-41 - 9974: 38,-40 - 9975: 38,-39 - 10002: 29,-40 - 10022: 31,-40 - 10048: 23,-29 - 10050: 19,-28 - 10051: 19,-27 - 10090: 32,-26 - 10091: 32,-25 - 10105: 28,-41 - 10136: 24,-48 - 10137: 24,-47 - 10172: 19,-44 - 10177: 24,-45 - 10182: 34,-51 - 10183: 34,-51 - 10184: 34,-50 + 9510: 5,-26 + 9511: 5,-26 + 9514: 5,-25 + 9515: 18,-25 + 9516: 18,-26 + 9517: 18,-29 + 9518: 18,-30 + 9519: 18,-31 + 9520: 18,-32 + 9521: 18,-33 + 9549: 15,-26 + 9550: 15,-25 + 9660: 28,-38 + 9661: 28,-39 + 9662: 28,-42 + 9663: 28,-43 + 9664: 28,-45 + 9665: 28,-46 + 9666: 28,-47 + 9667: 28,-48 + 9668: 28,-48 + 9669: 28,-49 + 9670: 28,-51 + 9671: 28,-52 + 9704: 19,-36 + 9705: 19,-35 + 9706: 19,-34 + 9714: 15,-35 + 9719: 15,-31 + 9736: 9,-36 + 9737: 9,-34 + 9739: 15,-35 + 9777: 25,-39 + 9778: 25,-40 + 9779: 19,-39 + 9780: 19,-40 + 9786: 25,-44 + 9848: 10,-35 + 9849: 21,-35 + 9850: 30,-35 + 9851: 26,-40 + 9852: 26,-41 + 9853: 26,-43 + 9854: 26,-44 + 9855: 26,-42 + 9856: 26,-47 + 9857: 26,-48 + 9858: 26,-49 + 9859: 26,-50 + 9860: 26,-50 + 9861: 26,-51 + 9862: 16,-40 + 9863: 16,-41 + 9864: 16,-43 + 9865: 16,-43 + 9866: 16,-45 + 9867: 16,-34 + 9868: 16,-34 + 9869: 16,-32 + 9870: 16,-32 + 9871: 16,-31 + 9872: 16,-31 + 9873: 16,-33 + 9912: 18,-46 + 9913: 18,-45 + 9914: 18,-43 + 9915: 18,-42 + 9916: 18,-41 + 9917: 18,-38 + 9922: 16,-44 + 9924: 15,-44 + 9927: 15,-39 + 9928: 15,-40 + 9971: 38,-41 + 9972: 38,-40 + 9973: 38,-39 + 10000: 29,-40 + 10020: 31,-40 + 10046: 23,-29 + 10048: 19,-28 + 10049: 19,-27 + 10088: 32,-26 + 10089: 32,-25 + 10103: 28,-41 + 10134: 24,-48 + 10135: 24,-47 + 10170: 19,-44 + 10175: 24,-45 + 10180: 34,-51 + 10181: 34,-51 + 10182: 34,-50 + 10183: 34,-48 + 10184: 34,-48 10185: 34,-48 - 10186: 34,-48 - 10187: 34,-48 - 10188: 34,-49 - 10189: 34,-49 - 10190: 34,-52 - 10199: 31,-51 - 10200: 31,-49 - 10201: 31,-49 - 10231: 31,-53 - 10232: 31,-52 - 10233: 31,-50 - 10234: 31,-48 - 10242: 29,-50 - 10338: 6,-44 - 10346: 10,-46 - 10347: 10,-45 - 10348: 10,-44 - 10362: 1,-44 - 10381: 13,-47 - 10383: 14,-46 - 10384: 14,-45 - 10622: 49,-34 - 10623: 49,-35 - 10625: 42,-33 - 10626: 42,-33 - 15338: 16,-42 - 19394: 4,64 - 19401: 7,63 - 19402: 7,64 - 19768: 22,-28 - 19769: 22,-27 - 19770: 22,-26 - 19780: 26,-28 - 19790: 30,-31 + 10186: 34,-49 + 10187: 34,-49 + 10188: 34,-52 + 10197: 31,-51 + 10198: 31,-49 + 10199: 31,-49 + 10229: 31,-53 + 10230: 31,-52 + 10231: 31,-50 + 10232: 31,-48 + 10240: 29,-50 + 10336: 6,-44 + 10344: 10,-46 + 10345: 10,-45 + 10346: 10,-44 + 10360: 1,-44 + 10379: 13,-47 + 10381: 14,-46 + 10382: 14,-45 + 10620: 49,-34 + 10621: 49,-35 + 10623: 42,-33 + 10624: 42,-33 + 15336: 16,-42 + 19392: 4,64 + 19399: 7,63 + 19400: 7,64 + 19766: 22,-28 + 19767: 22,-27 + 19768: 22,-26 + 19778: 26,-28 + 19788: 30,-31 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineE decals: - 2875: -26,49 - 2876: -26,50 - 2889: -32,45 - 2912: -28,54 - 2915: -28,52 - 2918: -26,51 - 2925: -31,53 - 2926: -31,52 - 2927: -31,51 - 2928: -31,50 - 2929: -31,49 - 2930: -31,47 - 2931: -31,48 - 2932: -33,53 - 2933: -33,52 - 2934: -33,51 - 2935: -33,50 - 2936: -33,49 - 2937: -33,47 - 2938: -33,48 - 2957: -29,50 - 2958: -29,49 - 2959: -29,48 - 2960: -29,47 - 2995: -36,49 - 2999: -37,48 - 3000: -37,47 - 3003: -38,46 - 3004: -38,45 + 2873: -26,49 + 2874: -26,50 + 2887: -32,45 + 2910: -28,54 + 2913: -28,52 + 2916: -26,51 + 2923: -31,53 + 2924: -31,52 + 2925: -31,51 + 2926: -31,50 + 2927: -31,49 + 2928: -31,47 + 2929: -31,48 + 2930: -33,53 + 2931: -33,52 + 2932: -33,51 + 2933: -33,50 + 2934: -33,49 + 2935: -33,47 + 2936: -33,48 + 2955: -29,50 + 2956: -29,49 + 2957: -29,48 + 2958: -29,47 + 2993: -36,49 + 2997: -37,48 + 2998: -37,47 + 3001: -38,46 + 3002: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteLineE decals: - 5093: 27,28 - 5094: 27,30 - 5157: 43,29 - 5163: 37,30 - 5183: 36,35 - 11436: -24,-30 - 11437: -24,-30 - 11438: -24,-29 - 11439: -24,-29 - 11440: -24,-28 - 11441: -24,-27 - 11442: -24,-27 - 11443: -24,-26 - 11478: -30,-35 - 11479: -30,-35 - 11480: -19,-35 - 11483: -15,-53 - 11484: -15,-53 - 11485: -15,-52 - 11486: -15,-52 - 11487: -15,-51 - 11488: -15,-51 - 11489: -15,-50 - 11490: -15,-50 - 11491: -15,-49 - 11492: -15,-49 - 11493: -15,-48 - 11494: -15,-48 - 11495: -15,-47 - 11496: -15,-47 - 11497: -15,-43 - 11498: -15,-42 - 11499: -15,-41 - 11500: -15,-41 - 11501: -15,-40 - 11502: -15,-39 - 11503: -15,-39 - 11566: -21,-34 - 11567: -21,-35 - 11568: -21,-36 - 11647: -13,-26 - 11648: -13,-25 - 11649: -13,-25 - 11663: -11,-35 - 11664: -11,-35 - 11665: -11,-34 - 11691: -4,-31 - 11692: -5,-33 - 11693: -5,-34 - 11808: -13,-38 - 11809: -13,-38 - 11810: -13,-39 - 11811: -13,-40 - 11812: -13,-42 - 11813: -13,-43 - 11814: -13,-44 - 11826: -16,-40 - 11892: -33,-45 - 11893: -33,-44 - 11894: -33,-44 - 11895: -33,-43 - 11896: -33,-42 - 11897: -33,-41 - 11924: -31,-31 - 11925: -31,-30 - 11926: -31,-29 - 11927: -31,-29 - 11928: -31,-28 - 11929: -31,-28 - 11930: -31,-27 - 11931: -31,-27 - 12091: -22,-25 - 12092: -22,-27 - 12093: -22,-28 - 12094: -22,-29 - 12095: -22,-30 - 12096: -22,-32 - 12198: -26,-41 - 12199: -26,-40 - 12200: -26,-39 - 12213: -30,-41 - 12214: -30,-40 - 12215: -30,-39 - 12226: -13,-46 - 12227: -13,-47 - 12228: -13,-48 - 12229: -13,-49 - 12230: -13,-51 - 12231: -13,-52 - 12232: -13,-53 - 12244: -18,-51 - 12264: -21,-58 - 12271: -13,-57 - 12272: -13,-58 - 12292: -4,-52 - 12293: -4,-51 - 12294: -4,-50 - 12295: -4,-49 - 12296: -4,-47 - 12305: -12,-50 - 12329: -21,-44 - 12330: -21,-43 - 12331: -21,-42 - 12332: -21,-41 - 12333: -21,-40 - 12637: -9,-34 - 12638: -9,-33 - 12639: -9,-32 - 20062: 36,37 + 5091: 27,28 + 5092: 27,30 + 5155: 43,29 + 5161: 37,30 + 5181: 36,35 + 11434: -24,-30 + 11435: -24,-30 + 11436: -24,-29 + 11437: -24,-29 + 11438: -24,-28 + 11439: -24,-27 + 11440: -24,-27 + 11441: -24,-26 + 11476: -30,-35 + 11477: -30,-35 + 11478: -19,-35 + 11481: -15,-53 + 11482: -15,-53 + 11483: -15,-52 + 11484: -15,-52 + 11485: -15,-51 + 11486: -15,-51 + 11487: -15,-50 + 11488: -15,-50 + 11489: -15,-49 + 11490: -15,-49 + 11491: -15,-48 + 11492: -15,-48 + 11493: -15,-47 + 11494: -15,-47 + 11495: -15,-43 + 11496: -15,-42 + 11497: -15,-41 + 11498: -15,-41 + 11499: -15,-40 + 11500: -15,-39 + 11501: -15,-39 + 11564: -21,-34 + 11565: -21,-35 + 11566: -21,-36 + 11645: -13,-26 + 11646: -13,-25 + 11647: -13,-25 + 11661: -11,-35 + 11662: -11,-35 + 11663: -11,-34 + 11689: -4,-31 + 11690: -5,-33 + 11691: -5,-34 + 11806: -13,-38 + 11807: -13,-38 + 11808: -13,-39 + 11809: -13,-40 + 11810: -13,-42 + 11811: -13,-43 + 11812: -13,-44 + 11824: -16,-40 + 11890: -33,-45 + 11891: -33,-44 + 11892: -33,-44 + 11893: -33,-43 + 11894: -33,-42 + 11895: -33,-41 + 11922: -31,-31 + 11923: -31,-30 + 11924: -31,-29 + 11925: -31,-29 + 11926: -31,-28 + 11927: -31,-28 + 11928: -31,-27 + 11929: -31,-27 + 12089: -22,-25 + 12090: -22,-27 + 12091: -22,-28 + 12092: -22,-29 + 12093: -22,-30 + 12094: -22,-32 + 12196: -26,-41 + 12197: -26,-40 + 12198: -26,-39 + 12211: -30,-41 + 12212: -30,-40 + 12213: -30,-39 + 12224: -13,-46 + 12225: -13,-47 + 12226: -13,-48 + 12227: -13,-49 + 12228: -13,-51 + 12229: -13,-52 + 12230: -13,-53 + 12242: -18,-51 + 12262: -21,-58 + 12269: -13,-57 + 12270: -13,-58 + 12290: -4,-52 + 12291: -4,-51 + 12292: -4,-50 + 12293: -4,-49 + 12294: -4,-47 + 12303: -12,-50 + 12327: -21,-44 + 12328: -21,-43 + 12329: -21,-42 + 12330: -21,-41 + 12331: -21,-40 + 12635: -9,-34 + 12636: -9,-33 + 12637: -9,-32 + 20060: 36,37 - node: color: '#B240B4FF' id: BrickTileWhiteLineE @@ -13631,246 +13626,246 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineE decals: - 10834: 25,-56 - 10838: 28,-57 - 10852: 36,-61 - 10853: 36,-64 - 10854: 36,-66 - 10855: 36,-67 - 10856: 36,-68 - 10857: 36,-69 - 10892: 41,-63 - 10903: 42,-62 - 10905: 37,-62 - 10909: 33,-61 - 10922: 37,-70 - 10934: 39,-73 - 10935: 39,-74 - 10953: 33,-68 - 10979: 31,-68 - 10980: 28,-68 + 10832: 25,-56 + 10836: 28,-57 + 10850: 36,-61 + 10851: 36,-64 + 10852: 36,-66 + 10853: 36,-67 + 10854: 36,-68 + 10855: 36,-69 + 10890: 41,-63 + 10901: 42,-62 + 10903: 37,-62 + 10907: 33,-61 + 10920: 37,-70 + 10932: 39,-73 + 10933: 39,-74 + 10951: 33,-68 + 10977: 31,-68 + 10978: 28,-68 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineE decals: - 7629: 64,-4 - 19261: 70,14 - 19262: 70,15 - 19276: 63,-5 - 19282: 66,-4 + 7627: 64,-4 + 19259: 70,14 + 19260: 70,15 + 19274: 63,-5 + 19280: 66,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineE decals: - 3819: 12,68 - 3820: 12,69 - 3825: 9,68 + 3817: 12,68 + 3818: 12,69 + 3823: 9,68 - node: color: '#DAA58BFF' id: BrickTileWhiteLineE decals: - 4379: 10,29 - 4388: 1,29 - 4437: 3,29 - 4438: 3,28 - 4448: 11,28 - 4461: 10,27 - 4470: 17,31 - 4471: 17,30 - 4472: 17,29 - 4473: 17,28 - 4474: 17,27 - 4487: 12,27 - 4497: 15,31 - 4498: 15,30 - 4499: 15,29 - 4546: 7,43 - 4547: 7,42 - 4548: 7,42 - 4549: 7,41 - 4550: 7,40 - 4576: 11,44 - 4594: 12,36 - 4595: 12,35 - 4608: 22,35 - 4609: 22,37 - 4628: 12,43 - 4629: 12,45 - 4660: 27,27 - 4661: 27,28 - 4662: 27,29 - 4663: 27,30 - 4687: 19,28 - 4688: 19,29 - 4689: 19,30 - 4706: 20,29 - 4712: 24,29 - 4737: 23,36 - 4749: 29,35 - 4750: 29,36 - 4751: 29,37 - 4756: 25,36 - 4757: 25,37 - 4758: 25,35 - 4777: 14,36 - 4794: 29,41 - 4795: 29,42 - 4796: 29,43 - 4819: 3,35 - 4867: 32,50 - 4868: 38,50 - 4879: 33,49 - 4882: 33,51 - 4899: 25,47 - 4900: 25,46 - 4901: 25,45 - 4902: 25,45 - 4903: 25,44 - 4904: 25,44 - 4905: 25,43 - 4906: 25,42 - 4910: 25,53 - 4940: 13,51 - 4950: 14,53 - 4951: 14,52 - 4997: 18,51 - 4998: 18,49 - 4999: 18,47 - 5000: 18,45 - 5001: 15,45 - 5002: 15,43 - 5003: 15,41 - 5004: 18,41 - 5005: 18,43 - 5168: 37,30 - 5177: 36,36 - 11368: -11,-82 - 11369: -11,-81 - 11370: -11,-80 - 20059: 36,38 + 4377: 10,29 + 4386: 1,29 + 4435: 3,29 + 4436: 3,28 + 4446: 11,28 + 4459: 10,27 + 4468: 17,31 + 4469: 17,30 + 4470: 17,29 + 4471: 17,28 + 4472: 17,27 + 4485: 12,27 + 4495: 15,31 + 4496: 15,30 + 4497: 15,29 + 4544: 7,43 + 4545: 7,42 + 4546: 7,42 + 4547: 7,41 + 4548: 7,40 + 4574: 11,44 + 4592: 12,36 + 4593: 12,35 + 4606: 22,35 + 4607: 22,37 + 4626: 12,43 + 4627: 12,45 + 4658: 27,27 + 4659: 27,28 + 4660: 27,29 + 4661: 27,30 + 4685: 19,28 + 4686: 19,29 + 4687: 19,30 + 4704: 20,29 + 4710: 24,29 + 4735: 23,36 + 4747: 29,35 + 4748: 29,36 + 4749: 29,37 + 4754: 25,36 + 4755: 25,37 + 4756: 25,35 + 4775: 14,36 + 4792: 29,41 + 4793: 29,42 + 4794: 29,43 + 4817: 3,35 + 4865: 32,50 + 4866: 38,50 + 4877: 33,49 + 4880: 33,51 + 4897: 25,47 + 4898: 25,46 + 4899: 25,45 + 4900: 25,45 + 4901: 25,44 + 4902: 25,44 + 4903: 25,43 + 4904: 25,42 + 4908: 25,53 + 4938: 13,51 + 4948: 14,53 + 4949: 14,52 + 4995: 18,51 + 4996: 18,49 + 4997: 18,47 + 4998: 18,45 + 4999: 15,45 + 5000: 15,43 + 5001: 15,41 + 5002: 18,41 + 5003: 18,43 + 5166: 37,30 + 5175: 36,36 + 11366: -11,-82 + 11367: -11,-81 + 11368: -11,-80 + 20057: 36,38 - node: color: '#DABC8BFF' id: BrickTileWhiteLineE decals: - 4016: -37,53 - 9579: 8,-33 - 9580: 8,-32 - 9581: 8,-31 - 9594: 8,-35 - 9596: 2,-35 - 9610: 4,-32 - 9611: 4,-33 - 9612: 4,-34 + 4014: -37,53 + 9577: 8,-33 + 9578: 8,-32 + 9579: 8,-31 + 9592: 8,-35 + 9594: 2,-35 + 9608: 4,-32 + 9609: 4,-33 + 9610: 4,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 16902: -52,4 - 16903: -52,5 - 16904: -52,6 - 16924: -49,2 - 16926: -49,0 - 16949: -62,1 - 16991: -52,16 - 17001: -65,1 - 17002: -62,1 - 17004: -56,-7 - 17005: -56,-9 - 17009: -62,-7 - 17017: -56,-9 - 17019: -57,-8 - 17049: -52,-5 - 17052: -52,-11 - 17053: -52,-13 - 17054: -52,-13 - 17055: -52,-12 - 17056: -52,-14 - 17057: -52,-16 - 17058: -52,-17 - 17068: -62,-17 - 17069: -60,-17 - 17079: -55,-13 - 17080: -55,-14 - 17093: -51,-15 - 17115: -47,-14 - 17116: -47,-15 - 17117: -47,-16 - 17147: -51,-15 - 17197: -47,13 - 17200: -50,10 - 17212: -60,10 - 17220: -67,15 - 17255: -79,14 - 17330: -57,18 - 17366: -45,-7 - 17367: -45,-8 - 17368: -45,-9 - 17373: -50,-9 - 17374: -50,-8 - 17375: -50,-7 - 17380: -56,-7 - 17381: -56,-9 - 17421: -74,-8 - 17422: -74,-7 - 17423: -74,-6 - 17436: -75,-9 - 17441: -11,-80 - 17442: -11,-81 - 17443: -11,-82 - 17458: 5,92 - 17461: 10,90 - 17473: 7,89 - 17474: 7,88 - 17486: 11,85 - 17487: 11,86 - 17500: 9,80 - 17501: 9,81 - 17504: 12,81 - 17505: 12,80 - 17506: 12,79 - 17507: 12,77 - 17508: 12,76 - 17509: 12,75 - 17510: 12,74 - 17521: 9,75 - 17522: 9,76 - 17523: 9,80 - 17524: 9,81 - 17550: -62,9 - 17551: -62,8 - 17552: -62,7 - 17553: -62,6 - 17618: -60,10 - 17624: -66,-3 - 17625: -66,-2 - 17626: -66,-1 - 17627: -66,0 - 17658: -65,1 - 17659: -65,1 + 16900: -52,4 + 16901: -52,5 + 16902: -52,6 + 16922: -49,2 + 16924: -49,0 + 16947: -62,1 + 16989: -52,16 + 16999: -65,1 + 17000: -62,1 + 17002: -56,-7 + 17003: -56,-9 + 17007: -62,-7 + 17015: -56,-9 + 17017: -57,-8 + 17047: -52,-5 + 17050: -52,-11 + 17051: -52,-13 + 17052: -52,-13 + 17053: -52,-12 + 17054: -52,-14 + 17055: -52,-16 + 17056: -52,-17 + 17066: -62,-17 + 17067: -60,-17 + 17077: -55,-13 + 17078: -55,-14 + 17091: -51,-15 + 17113: -47,-14 + 17114: -47,-15 + 17115: -47,-16 + 17145: -51,-15 + 17195: -47,13 + 17198: -50,10 + 17210: -60,10 + 17218: -67,15 + 17253: -79,14 + 17328: -57,18 + 17364: -45,-7 + 17365: -45,-8 + 17366: -45,-9 + 17371: -50,-9 + 17372: -50,-8 + 17373: -50,-7 + 17378: -56,-7 + 17379: -56,-9 + 17419: -74,-8 + 17420: -74,-7 + 17421: -74,-6 + 17434: -75,-9 + 17439: -11,-80 + 17440: -11,-81 + 17441: -11,-82 + 17456: 5,92 + 17459: 10,90 + 17471: 7,89 + 17472: 7,88 + 17484: 11,85 + 17485: 11,86 + 17498: 9,80 + 17499: 9,81 + 17502: 12,81 + 17503: 12,80 + 17504: 12,79 + 17505: 12,77 + 17506: 12,76 + 17507: 12,75 + 17508: 12,74 + 17519: 9,75 + 17520: 9,76 + 17521: 9,80 + 17522: 9,81 + 17548: -62,9 + 17549: -62,8 + 17550: -62,7 + 17551: -62,6 + 17616: -60,10 + 17622: -66,-3 + 17623: -66,-2 + 17624: -66,-1 + 17625: -66,0 + 17656: -65,1 + 17657: -65,1 + 17659: -75,0 17661: -75,0 - 17663: -75,0 - 17693: -70,11 - 17694: -74,11 - 17702: -79,14 - 17706: -83,14 - 17743: -77,3 - 17744: -77,4 - 17745: -77,5 - 17746: -77,6 - 17747: -77,7 - 17760: -77,9 - 17761: -77,10 - 17762: -77,11 - 17776: -80,0 - 17785: -76,-2 - 17786: -76,-1 - 17790: -75,0 - 17830: -67,-11 - 17831: -67,-12 - 17848: -52,17 - 18197: -55,-2 - 18198: -55,-3 - 19941: -49,-2 + 17691: -70,11 + 17692: -74,11 + 17700: -79,14 + 17704: -83,14 + 17741: -77,3 + 17742: -77,4 + 17743: -77,5 + 17744: -77,6 + 17745: -77,7 + 17758: -77,9 + 17759: -77,10 + 17760: -77,11 + 17774: -80,0 + 17783: -76,-2 + 17784: -76,-1 + 17788: -75,0 + 17828: -67,-11 + 17829: -67,-12 + 17846: -52,17 + 18195: -55,-2 + 18196: -55,-3 + 19939: -49,-2 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -13879,301 +13874,301 @@ entities: 867: 75,-43 1183: 49,-16 1184: 49,-15 - 2051: -20,48 - 2052: -20,47 - 2053: -20,46 - 2054: -20,51 - 2055: -20,52 - 2056: -23,50 - 2057: -23,49 - 2058: -23,48 - 2084: -18,47 - 2085: -18,48 - 2086: -18,49 - 2087: -18,50 - 2088: -18,51 - 2111: -20,27 - 2112: -20,28 - 2113: -20,29 - 2114: -20,31 - 2115: -20,32 - 2116: -23,31 - 2117: -23,33 - 2118: -23,32 - 2119: -23,30 - 2120: -20,34 - 2121: -20,35 - 2122: -20,36 - 2265: -24,41 - 2368: -29,31 - 2703: -9,53 - 2774: -7,49 - 2775: -12,49 - 2808: -8,33 - 2817: -5,33 - 3019: -14,57 - 3024: -20,61 - 3025: -20,62 - 3026: -20,63 - 3089: -14,68 - 3090: -21,68 - 3091: -21,57 - 3092: -7,57 - 3093: -6,61 - 3094: -6,62 - 3095: -6,63 - 3096: -6,64 - 3112: -7,68 - 3232: -13,75 - 3233: -13,74 - 3234: -13,73 - 3235: -13,72 - 3247: -13,79 - 3248: -13,80 - 3249: -13,81 - 3250: -13,82 - 3251: -13,92 - 3252: -13,93 - 3253: -13,94 - 3254: -13,95 - 3258: -13,88 - 3259: -13,87 - 3260: -13,86 - 3261: -13,86 - 3262: -13,85 - 3268: -31,79 - 3269: -31,80 - 3270: -31,81 - 3271: -31,82 - 3272: -31,85 - 3273: -31,86 - 3274: -31,88 - 3275: -31,92 - 3276: -31,93 - 3277: -31,94 - 3278: -31,95 - 3279: -31,75 - 3280: -31,74 - 3281: -31,73 - 3282: -31,72 - 3313: -32,68 - 3526: -1,68 - 3527: 4,68 - 3615: 5,72 - 3616: 5,73 - 3617: 5,74 - 3618: 5,75 - 3677: 5,82 - 3678: 5,81 - 3679: 5,80 - 3680: 5,79 - 3784: -1,57 - 3831: 16,70 - 3832: 16,71 - 3841: 23,70 - 4153: -23,22 - 4154: -23,22 - 5185: 16,16 - 5186: 16,17 - 5187: 16,18 - 5188: 16,19 - 5198: 16,9 - 5199: 16,10 - 5200: 16,11 - 5201: 16,12 - 5206: 16,2 - 5207: 16,3 - 5208: 16,5 - 5209: 16,4 - 5210: 16,-2 - 5211: 16,-3 - 5212: 16,-4 - 5213: 16,-5 - 5237: -27,68 - 5520: -39,5 - 5521: -34,5 - 5522: -28,5 - 5599: -35,26 - 6234: -20,-17 - 6235: -20,-16 - 6236: -20,-15 - 6237: -20,-14 - 6238: -20,-13 - 6239: -20,-12 - 6334: 16,-17 - 6335: 16,-15 - 6336: 16,-14 - 6337: 16,-12 - 6338: 16,-13 - 6339: 16,-16 - 6359: -3,-16 - 6675: -32,-9 - 6676: -32,-8 - 6677: -32,-7 - 6678: -32,-6 - 6679: -32,-5 - 6680: -32,-4 - 6694: -32,-1 - 6695: -32,0 - 6696: -32,0 - 6697: -32,2 - 6726: -28,-12 - 6727: -28,-13 - 6728: -28,-14 - 6729: -28,-15 - 6730: -28,-16 - 6756: -35,-15 - 6757: -35,-14 - 6758: -35,-13 - 6759: -35,-12 - 7029: -16,-20 - 7030: -9,-20 - 7031: 2,-20 - 7032: 9,-20 - 7146: 20,5 - 7213: 27,5 - 8034: 56,-15 - 8035: 56,-14 - 8036: 56,-13 - 8041: 56,-28 - 8042: 56,-27 - 8043: 56,-26 - 8053: 58,-27 - 8054: 60,-27 - 8055: 60,-14 - 8056: 58,-14 - 8262: 27,-11 - 8268: 20,-11 - 8269: 33,-13 - 8270: 33,-12 - 8271: 33,-12 - 8272: 33,-11 - 8273: 33,-10 - 8460: 48,-20 - 8461: 48,-20 - 8711: -9,-76 - 8712: -9,-80 - 8713: -6,-78 - 8768: 5,-25 - 8769: 5,-26 - 8792: -13,-25 - 8793: -13,-25 - 8794: -13,-26 - 8795: -13,-26 - 8846: -2,-27 - 8847: -2,-26 - 8848: -2,-26 - 8849: -2,-24 - 8850: -2,-25 - 8889: -2,-31 - 8890: -2,-32 - 8891: -2,-33 - 8892: -2,-34 - 8893: -2,-35 - 8973: -4,-24 - 9093: 1,-26 - 9094: 1,-25 - 9106: 14,-24 - 9391: -2,-42 - 9392: -2,-41 - 9393: -2,-41 - 9394: -2,-40 - 9395: -2,-40 - 9396: -2,-39 - 9397: -2,-45 - 9398: -2,-45 - 9399: -2,-46 - 9400: -2,-47 - 9401: -2,-48 - 9402: -2,-49 - 9403: -2,-50 - 9404: -2,-44 - 9405: -2,-44 - 9406: -2,-52 - 9407: -2,-53 + 2049: -20,48 + 2050: -20,47 + 2051: -20,46 + 2052: -20,51 + 2053: -20,52 + 2054: -23,50 + 2055: -23,49 + 2056: -23,48 + 2082: -18,47 + 2083: -18,48 + 2084: -18,49 + 2085: -18,50 + 2086: -18,51 + 2109: -20,27 + 2110: -20,28 + 2111: -20,29 + 2112: -20,31 + 2113: -20,32 + 2114: -23,31 + 2115: -23,33 + 2116: -23,32 + 2117: -23,30 + 2118: -20,34 + 2119: -20,35 + 2120: -20,36 + 2263: -24,41 + 2366: -29,31 + 2701: -9,53 + 2772: -7,49 + 2773: -12,49 + 2806: -8,33 + 2815: -5,33 + 3017: -14,57 + 3022: -20,61 + 3023: -20,62 + 3024: -20,63 + 3087: -14,68 + 3088: -21,68 + 3089: -21,57 + 3090: -7,57 + 3091: -6,61 + 3092: -6,62 + 3093: -6,63 + 3094: -6,64 + 3110: -7,68 + 3230: -13,75 + 3231: -13,74 + 3232: -13,73 + 3233: -13,72 + 3245: -13,79 + 3246: -13,80 + 3247: -13,81 + 3248: -13,82 + 3249: -13,92 + 3250: -13,93 + 3251: -13,94 + 3252: -13,95 + 3256: -13,88 + 3257: -13,87 + 3258: -13,86 + 3259: -13,86 + 3260: -13,85 + 3266: -31,79 + 3267: -31,80 + 3268: -31,81 + 3269: -31,82 + 3270: -31,85 + 3271: -31,86 + 3272: -31,88 + 3273: -31,92 + 3274: -31,93 + 3275: -31,94 + 3276: -31,95 + 3277: -31,75 + 3278: -31,74 + 3279: -31,73 + 3280: -31,72 + 3311: -32,68 + 3524: -1,68 + 3525: 4,68 + 3613: 5,72 + 3614: 5,73 + 3615: 5,74 + 3616: 5,75 + 3675: 5,82 + 3676: 5,81 + 3677: 5,80 + 3678: 5,79 + 3782: -1,57 + 3829: 16,70 + 3830: 16,71 + 3839: 23,70 + 4151: -23,22 + 4152: -23,22 + 5183: 16,16 + 5184: 16,17 + 5185: 16,18 + 5186: 16,19 + 5196: 16,9 + 5197: 16,10 + 5198: 16,11 + 5199: 16,12 + 5204: 16,2 + 5205: 16,3 + 5206: 16,5 + 5207: 16,4 + 5208: 16,-2 + 5209: 16,-3 + 5210: 16,-4 + 5211: 16,-5 + 5235: -27,68 + 5518: -39,5 + 5519: -34,5 + 5520: -28,5 + 5597: -35,26 + 6232: -20,-17 + 6233: -20,-16 + 6234: -20,-15 + 6235: -20,-14 + 6236: -20,-13 + 6237: -20,-12 + 6332: 16,-17 + 6333: 16,-15 + 6334: 16,-14 + 6335: 16,-12 + 6336: 16,-13 + 6337: 16,-16 + 6357: -3,-16 + 6673: -32,-9 + 6674: -32,-8 + 6675: -32,-7 + 6676: -32,-6 + 6677: -32,-5 + 6678: -32,-4 + 6692: -32,-1 + 6693: -32,0 + 6694: -32,0 + 6695: -32,2 + 6724: -28,-12 + 6725: -28,-13 + 6726: -28,-14 + 6727: -28,-15 + 6728: -28,-16 + 6754: -35,-15 + 6755: -35,-14 + 6756: -35,-13 + 6757: -35,-12 + 7027: -16,-20 + 7028: -9,-20 + 7029: 2,-20 + 7030: 9,-20 + 7144: 20,5 + 7211: 27,5 + 8032: 56,-15 + 8033: 56,-14 + 8034: 56,-13 + 8039: 56,-28 + 8040: 56,-27 + 8041: 56,-26 + 8051: 58,-27 + 8052: 60,-27 + 8053: 60,-14 + 8054: 58,-14 + 8260: 27,-11 + 8266: 20,-11 + 8267: 33,-13 + 8268: 33,-12 + 8269: 33,-12 + 8270: 33,-11 + 8271: 33,-10 + 8458: 48,-20 + 8459: 48,-20 + 8709: -9,-76 + 8710: -9,-80 + 8711: -6,-78 + 8766: 5,-25 + 8767: 5,-26 + 8790: -13,-25 + 8791: -13,-25 + 8792: -13,-26 + 8793: -13,-26 + 8844: -2,-27 + 8845: -2,-26 + 8846: -2,-26 + 8847: -2,-24 + 8848: -2,-25 + 8887: -2,-31 + 8888: -2,-32 + 8889: -2,-33 + 8890: -2,-34 + 8891: -2,-35 + 8971: -4,-24 + 9091: 1,-26 + 9092: 1,-25 + 9104: 14,-24 + 9389: -2,-42 + 9390: -2,-41 + 9391: -2,-41 + 9392: -2,-40 + 9393: -2,-40 + 9394: -2,-39 + 9395: -2,-45 + 9396: -2,-45 + 9397: -2,-46 + 9398: -2,-47 + 9399: -2,-48 + 9400: -2,-49 + 9401: -2,-50 + 9402: -2,-44 + 9403: -2,-44 + 9404: -2,-52 + 9405: -2,-53 + 9406: -2,-54 + 9407: -2,-54 9408: -2,-54 - 9409: -2,-54 - 9410: -2,-54 - 9411: -2,-55 - 9437: -2,-61 - 9438: -2,-60 - 9439: -2,-59 - 9473: -7,-71 - 9474: -7,-70 - 9475: -7,-69 - 9476: -4,-73 - 9477: -4,-72 - 9485: 74,-50 - 9486: 74,-51 - 10682: 71,-50 - 10683: 71,-50 - 10690: 75,-44 - 10712: 68,-41 - 12753: -43,22 - 14891: -20,50 - 14986: -17,23 - 14987: -7,23 - 14988: 0,23 - 14989: 10,23 - 15113: -31,87 - 15174: -20,64 - 15241: 43,-20 - 15358: -3,-71 - 15362: -3,-70 - 15447: -43,9 - 15448: -43,10 - 15449: -43,11 - 15450: -43,14 - 15451: -43,15 - 15452: -43,15 - 15453: -43,16 - 15454: -43,17 - 15455: -43,20 - 15456: -43,21 - 15485: -9,-79 - 15486: -9,-78 - 15487: -9,-77 - 15615: 95,-4 - 18811: 3,-9 - 18812: 9,-9 - 18813: -4,-9 - 18814: -10,-9 - 18815: -16,-9 - 19732: 34,-11 - 19733: 34,-10 - 19734: 34,-13 - 19735: 34,-14 - 19737: 33,-14 - 20245: -20,9 - 20246: -20,10 - 20247: -20,11 - 20248: -20,12 - 20249: -20,16 - 20250: -20,17 - 20251: -20,18 - 20252: -20,19 - 20253: -20,5 - 20254: -20,4 - 20255: -20,4 - 20256: -20,2 - 20257: -20,-2 - 20258: -20,-3 - 20259: -20,-4 - 20260: -20,-5 - 20297: -20,3 + 9409: -2,-55 + 9435: -2,-61 + 9436: -2,-60 + 9437: -2,-59 + 9471: -7,-71 + 9472: -7,-70 + 9473: -7,-69 + 9474: -4,-73 + 9475: -4,-72 + 9483: 74,-50 + 9484: 74,-51 + 10680: 71,-50 + 10681: 71,-50 + 10688: 75,-44 + 10710: 68,-41 + 12751: -43,22 + 14889: -20,50 + 14984: -17,23 + 14985: -7,23 + 14986: 0,23 + 14987: 10,23 + 15111: -31,87 + 15172: -20,64 + 15239: 43,-20 + 15356: -3,-71 + 15360: -3,-70 + 15445: -43,9 + 15446: -43,10 + 15447: -43,11 + 15448: -43,14 + 15449: -43,15 + 15450: -43,15 + 15451: -43,16 + 15452: -43,17 + 15453: -43,20 + 15454: -43,21 + 15483: -9,-79 + 15484: -9,-78 + 15485: -9,-77 + 15613: 95,-4 + 18809: 3,-9 + 18810: 9,-9 + 18811: -4,-9 + 18812: -10,-9 + 18813: -16,-9 + 19730: 34,-11 + 19731: 34,-10 + 19732: 34,-13 + 19733: 34,-14 + 19735: 33,-14 + 20243: -20,9 + 20244: -20,10 + 20245: -20,11 + 20246: -20,12 + 20247: -20,16 + 20248: -20,17 + 20249: -20,18 + 20250: -20,19 + 20251: -20,5 + 20252: -20,4 + 20253: -20,4 + 20254: -20,2 + 20255: -20,-2 + 20256: -20,-3 + 20257: -20,-4 + 20258: -20,-5 + 20295: -20,3 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 4083: -20,16 - 4084: -20,17 - 4085: -20,18 - 4086: -20,19 - 4087: -20,12 - 4088: -20,11 - 4089: -20,10 - 4090: -20,9 + 4081: -20,16 + 4082: -20,17 + 4083: -20,18 + 4084: -20,19 + 4085: -20,12 + 4086: -20,11 + 4087: -20,10 + 4088: -20,9 - node: color: '#52E5FFFF' id: BrickTileWhiteLineN @@ -14183,252 +14178,252 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineN decals: - 17888: -46,23 - 17889: -47,23 - 17890: -47,23 - 17891: -48,23 - 17892: -49,23 - 17924: -56,37 - 17928: -55,31 - 17959: -44,51 - 17970: -46,56 - 17997: -48,43 - 18002: -49,42 - 18011: -45,45 - 18015: -48,45 - 18016: -49,45 - 18017: -49,45 - 18018: -50,45 - 18019: -51,45 - 18020: -52,45 - 18021: -53,45 - 18022: -54,45 - 18023: -55,45 - 18024: -57,45 - 18025: -56,45 - 18059: -59,55 - 18080: -56,43 - 18081: -54,43 - 18134: -55,24 - 18135: -54,24 - 18142: -54,19 - 18143: -53,19 - 18146: -52,21 + 17886: -46,23 + 17887: -47,23 + 17888: -47,23 + 17889: -48,23 + 17890: -49,23 + 17922: -56,37 + 17926: -55,31 + 17957: -44,51 + 17968: -46,56 + 17995: -48,43 + 18000: -49,42 + 18009: -45,45 + 18013: -48,45 + 18014: -49,45 + 18015: -49,45 + 18016: -50,45 + 18017: -51,45 + 18018: -52,45 + 18019: -53,45 + 18020: -54,45 + 18021: -55,45 + 18022: -57,45 + 18023: -56,45 + 18057: -59,55 + 18078: -56,43 + 18079: -54,43 + 18132: -55,24 + 18133: -54,24 + 18140: -54,19 + 18141: -53,19 + 18144: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineN decals: - 9501: 6,-27 - 9502: 7,-27 - 9503: 8,-27 - 9504: 9,-27 - 9505: 10,-27 - 9531: 20,-34 - 9532: 22,-34 - 9533: 23,-34 - 9534: 24,-34 - 9535: 25,-34 - 9536: 26,-34 - 9537: 27,-34 - 9538: 28,-34 - 9539: 30,-34 - 9540: 31,-34 - 9541: 32,-34 - 9542: 33,-34 - 9543: 34,-34 - 9544: 35,-34 - 9545: 37,-34 - 9555: 17,-24 - 9709: 16,-37 - 9710: 17,-37 - 9711: 18,-37 - 9732: 13,-34 - 9733: 11,-34 - 9734: 10,-34 - 9771: 26,-37 - 9772: 27,-37 - 9773: 28,-37 - 9774: 17,-48 - 9775: 27,-54 - 9810: 22,-36 - 9811: 23,-36 - 9812: 24,-36 - 9813: 25,-36 - 9814: 26,-36 - 9815: 27,-36 - 9816: 31,-36 - 9817: 32,-36 - 9818: 33,-36 - 9819: 34,-36 - 9820: 34,-36 - 9821: 35,-36 - 9822: 36,-36 - 9823: 27,-45 - 9824: 27,-52 - 9825: 17,-46 - 9826: 17,-35 - 9827: 11,-36 - 9828: 12,-36 - 9829: 13,-36 - 9943: 21,-38 - 9944: 22,-38 - 9945: 23,-38 - 9994: 31,-38 - 9995: 32,-38 - 9996: 33,-38 - 9997: 33,-38 - 9998: 34,-38 - 9999: 35,-38 - 10000: 36,-38 - 10001: 37,-38 - 10003: 37,-43 - 10017: 32,-41 - 10018: 33,-41 - 10019: 34,-41 - 10020: 35,-41 - 10021: 36,-41 - 10094: 29,-28 - 10110: 9,-38 - 10111: 10,-38 - 10112: 11,-38 - 10113: 12,-38 - 10114: 13,-38 - 10127: 20,-46 - 10128: 21,-46 - 10129: 22,-46 - 10130: 23,-46 - 10131: 24,-46 - 10142: 22,-50 - 10165: 21,-43 - 10166: 22,-43 - 10167: 23,-43 - 10228: 31,-47 - 10245: 31,-54 - 10335: 3,-43 - 10336: 5,-43 - 10339: 7,-45 - 10356: 9,-42 - 10372: 4,-48 - 10388: 13,-43 - 10613: 44,-31 - 10614: 47,-31 - 10615: 46,-31 - 10616: 48,-31 - 10617: 48,-31 - 19431: -6,-58 - 19781: 27,-29 - 19782: 28,-29 - 19783: 30,-29 - 19784: 31,-29 + 9499: 6,-27 + 9500: 7,-27 + 9501: 8,-27 + 9502: 9,-27 + 9503: 10,-27 + 9529: 20,-34 + 9530: 22,-34 + 9531: 23,-34 + 9532: 24,-34 + 9533: 25,-34 + 9534: 26,-34 + 9535: 27,-34 + 9536: 28,-34 + 9537: 30,-34 + 9538: 31,-34 + 9539: 32,-34 + 9540: 33,-34 + 9541: 34,-34 + 9542: 35,-34 + 9543: 37,-34 + 9553: 17,-24 + 9707: 16,-37 + 9708: 17,-37 + 9709: 18,-37 + 9730: 13,-34 + 9731: 11,-34 + 9732: 10,-34 + 9769: 26,-37 + 9770: 27,-37 + 9771: 28,-37 + 9772: 17,-48 + 9773: 27,-54 + 9808: 22,-36 + 9809: 23,-36 + 9810: 24,-36 + 9811: 25,-36 + 9812: 26,-36 + 9813: 27,-36 + 9814: 31,-36 + 9815: 32,-36 + 9816: 33,-36 + 9817: 34,-36 + 9818: 34,-36 + 9819: 35,-36 + 9820: 36,-36 + 9821: 27,-45 + 9822: 27,-52 + 9823: 17,-46 + 9824: 17,-35 + 9825: 11,-36 + 9826: 12,-36 + 9827: 13,-36 + 9941: 21,-38 + 9942: 22,-38 + 9943: 23,-38 + 9992: 31,-38 + 9993: 32,-38 + 9994: 33,-38 + 9995: 33,-38 + 9996: 34,-38 + 9997: 35,-38 + 9998: 36,-38 + 9999: 37,-38 + 10001: 37,-43 + 10015: 32,-41 + 10016: 33,-41 + 10017: 34,-41 + 10018: 35,-41 + 10019: 36,-41 + 10092: 29,-28 + 10108: 9,-38 + 10109: 10,-38 + 10110: 11,-38 + 10111: 12,-38 + 10112: 13,-38 + 10125: 20,-46 + 10126: 21,-46 + 10127: 22,-46 + 10128: 23,-46 + 10129: 24,-46 + 10140: 22,-50 + 10163: 21,-43 + 10164: 22,-43 + 10165: 23,-43 + 10226: 31,-47 + 10243: 31,-54 + 10333: 3,-43 + 10334: 5,-43 + 10337: 7,-45 + 10354: 9,-42 + 10370: 4,-48 + 10386: 13,-43 + 10611: 44,-31 + 10612: 47,-31 + 10613: 46,-31 + 10614: 48,-31 + 10615: 48,-31 + 19429: -6,-58 + 19779: 27,-29 + 19780: 28,-29 + 19781: 30,-29 + 19782: 31,-29 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineN decals: - 2874: -25,48 - 2887: -32,44 - 2905: -33,54 - 2906: -32,54 - 2907: -31,54 - 2908: -30,54 - 2917: -27,51 - 2961: -32,46 - 2962: -30,46 - 2963: -28,46 - 2993: -38,50 - 3011: -38,44 - 3012: -30,44 + 2872: -25,48 + 2885: -32,44 + 2903: -33,54 + 2904: -32,54 + 2905: -31,54 + 2906: -30,54 + 2915: -27,51 + 2959: -32,46 + 2960: -30,46 + 2961: -28,46 + 2991: -38,50 + 3009: -38,44 + 3010: -30,44 - node: color: '#B18BDAFF' id: BrickTileWhiteLineN decals: - 5097: 22,32 - 5099: 24,32 - 5100: 26,32 - 5150: 39,30 - 5151: 40,30 - 5152: 41,30 - 5153: 42,30 - 5162: 38,30 - 5180: 35,33 - 11451: -23,-31 - 11452: -18,-36 - 11453: -17,-36 - 11454: -17,-36 - 11455: -16,-36 - 11456: -15,-36 - 11457: -14,-36 - 11458: -29,-36 - 11459: -27,-36 - 11460: -28,-36 - 11461: -26,-36 - 11462: -26,-36 - 11463: -24,-36 - 11464: -25,-36 - 11524: -14,-54 - 11525: -14,-44 - 11533: -14,-34 - 11534: -16,-34 - 11535: -17,-34 - 11536: -17,-34 - 11537: -18,-34 - 11538: -19,-34 - 11539: -20,-34 - 11581: -12,-34 - 11582: -31,-34 - 11583: -30,-34 - 11584: -27,-34 - 11585: -27,-34 - 11586: -28,-34 - 11587: -26,-34 - 11588: -25,-34 - 11589: -25,-34 - 11631: -12,-27 - 11632: -11,-27 - 11633: -10,-27 - 11634: -9,-27 - 11635: -9,-27 - 11636: -8,-27 - 11681: -7,-30 - 11682: -8,-30 - 11683: -9,-30 - 11684: -5,-30 - 11795: -7,-37 - 11798: -15,-37 - 11799: -14,-37 - 11800: -13,-37 - 11801: -13,-37 - 11821: -15,-45 - 11822: -14,-45 - 11823: -13,-45 - 11915: -29,-37 - 11916: -24,-37 - 11917: -24,-37 - 11921: -28,-28 - 11940: -30,-32 - 11941: -29,-32 - 11942: -29,-32 - 11943: -28,-32 - 12097: -24,-33 - 12098: -23,-33 - 12099: -22,-33 - 12206: -25,-42 - 12207: -24,-42 - 12208: -29,-42 - 12242: -16,-55 - 12243: -16,-50 - 12266: -19,-56 - 12267: -18,-56 - 12268: -17,-56 - 12269: -15,-56 - 12270: -14,-56 - 12297: -9,-49 - 12298: -8,-49 - 12299: -5,-46 - 12316: -6,-54 - 12326: -19,-45 - 12645: -8,-35 - 12646: -7,-35 - 20069: 36,39 + 5095: 22,32 + 5097: 24,32 + 5098: 26,32 + 5148: 39,30 + 5149: 40,30 + 5150: 41,30 + 5151: 42,30 + 5160: 38,30 + 5178: 35,33 + 11449: -23,-31 + 11450: -18,-36 + 11451: -17,-36 + 11452: -17,-36 + 11453: -16,-36 + 11454: -15,-36 + 11455: -14,-36 + 11456: -29,-36 + 11457: -27,-36 + 11458: -28,-36 + 11459: -26,-36 + 11460: -26,-36 + 11461: -24,-36 + 11462: -25,-36 + 11522: -14,-54 + 11523: -14,-44 + 11531: -14,-34 + 11532: -16,-34 + 11533: -17,-34 + 11534: -17,-34 + 11535: -18,-34 + 11536: -19,-34 + 11537: -20,-34 + 11579: -12,-34 + 11580: -31,-34 + 11581: -30,-34 + 11582: -27,-34 + 11583: -27,-34 + 11584: -28,-34 + 11585: -26,-34 + 11586: -25,-34 + 11587: -25,-34 + 11629: -12,-27 + 11630: -11,-27 + 11631: -10,-27 + 11632: -9,-27 + 11633: -9,-27 + 11634: -8,-27 + 11679: -7,-30 + 11680: -8,-30 + 11681: -9,-30 + 11682: -5,-30 + 11793: -7,-37 + 11796: -15,-37 + 11797: -14,-37 + 11798: -13,-37 + 11799: -13,-37 + 11819: -15,-45 + 11820: -14,-45 + 11821: -13,-45 + 11913: -29,-37 + 11914: -24,-37 + 11915: -24,-37 + 11919: -28,-28 + 11938: -30,-32 + 11939: -29,-32 + 11940: -29,-32 + 11941: -28,-32 + 12095: -24,-33 + 12096: -23,-33 + 12097: -22,-33 + 12204: -25,-42 + 12205: -24,-42 + 12206: -29,-42 + 12240: -16,-55 + 12241: -16,-50 + 12264: -19,-56 + 12265: -18,-56 + 12266: -17,-56 + 12267: -15,-56 + 12268: -14,-56 + 12295: -9,-49 + 12296: -8,-49 + 12297: -5,-46 + 12314: -6,-54 + 12324: -19,-45 + 12643: -8,-35 + 12644: -7,-35 + 20067: 36,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineN @@ -14440,318 +14435,318 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineN decals: - 10836: 27,-59 - 10851: 35,-60 - 10868: 39,-60 - 10869: 40,-60 - 10924: 38,-70 - 10925: 39,-70 - 10926: 41,-70 - 10932: 39,-72 - 10974: 28,-67 - 10975: 28,-67 - 10976: 29,-67 - 10977: 30,-67 + 10834: 27,-59 + 10849: 35,-60 + 10866: 39,-60 + 10867: 40,-60 + 10922: 38,-70 + 10923: 39,-70 + 10924: 41,-70 + 10930: 39,-72 + 10972: 28,-67 + 10973: 28,-67 + 10974: 29,-67 + 10975: 30,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineN decals: - 19263: 69,16 - 19267: 62,-3 + 19261: 69,16 + 19265: 62,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineN decals: - 2706: -11,54 - 2712: -12,51 - 3805: 11,70 - 9449: -38,2 + 2704: -11,54 + 2710: -12,51 + 3803: 11,70 + 9447: -38,2 - node: color: '#DAA58BFF' id: BrickTileWhiteLineN decals: - 4365: 4,25 - 4366: 5,25 - 4367: 7,25 - 4368: 8,25 - 4369: 6,31 - 4396: 4,32 - 4402: 3,37 - 4403: 4,37 - 4404: 9,37 - 4414: 9,32 - 4421: 5,31 - 4422: 3,31 - 4439: 4,27 - 4440: 5,27 - 4441: 6,27 - 4442: 7,27 - 4443: 8,27 - 4449: 14,28 - 4465: 12,28 - 4466: 13,28 - 4478: 14,25 - 4479: 15,25 - 4480: 16,25 - 4482: 16,32 - 4488: 13,26 - 4489: 14,26 - 4490: 15,26 - 4491: 16,26 - 4508: 13,39 - 4509: 14,39 - 4510: 15,39 - 4511: 15,39 - 4512: 16,39 - 4513: 17,39 - 4514: 17,39 - 4515: 19,39 - 4516: 20,39 - 4517: 17,39 - 4518: 18,39 - 4537: 5,38 - 4544: 5,43 - 4545: 6,43 - 4552: 10,38 - 4562: 13,33 - 4572: 10,41 - 4592: 15,33 - 4612: 20,33 - 4613: 21,33 - 4621: 14,46 - 4638: 22,32 - 4639: 23,32 - 4640: 24,32 - 4641: 25,32 - 4642: 26,32 - 4675: 21,25 - 4679: 22,27 - 4680: 23,27 - 4681: 23,27 - 4682: 24,27 - 4696: 26,27 - 4697: 20,27 - 4708: 22,28 - 4709: 24,28 - 4715: 26,28 - 4716: 20,28 - 4730: 23,29 - 4753: 25,38 - 4754: 26,38 - 4755: 27,38 - 4759: 26,34 - 4760: 27,34 - 4779: 16,34 - 4780: 17,34 - 4781: 18,34 - 4804: 28,44 - 4806: 28,39 - 4820: 4,34 - 4821: 5,34 - 4822: 6,34 - 4823: 7,34 - 4824: 8,34 - 4825: 9,34 - 4830: 6,37 - 4831: 7,37 - 4832: 8,37 - 4840: 27,52 - 4841: 28,52 - 4842: 29,52 - 4843: 30,52 - 4844: 31,52 - 4845: 32,52 - 4846: 33,52 - 4847: 34,52 - 4848: 36,52 - 4849: 37,52 - 4850: 37,52 - 4851: 38,52 - 4908: 35,52 - 4909: 26,52 - 4923: 11,54 - 4924: 12,54 - 4947: 16,54 - 4954: 18,54 - 4955: 19,54 - 4956: 20,54 - 4957: 20,54 - 4958: 22,54 - 4959: 23,54 - 4960: 21,54 - 5009: 16,40 - 5010: 17,40 - 5011: 19,40 - 5012: 20,40 - 5013: 21,40 - 5014: 22,40 - 5015: 22,42 - 5016: 21,42 - 5017: 19,42 - 5018: 20,42 - 5019: 17,42 - 5020: 16,42 - 5021: 16,44 - 5022: 17,44 - 5023: 19,44 - 5024: 20,44 - 5025: 21,44 - 5026: 22,44 - 5027: 22,46 - 5028: 21,46 - 5029: 20,46 - 5030: 19,46 - 5031: 19,48 - 5032: 20,48 - 5033: 21,48 - 5034: 22,48 - 5035: 22,50 - 5036: 21,50 - 5037: 20,50 - 5046: 19,50 - 5166: 39,30 - 5167: 41,30 - 11372: -11,-83 - 20061: 35,39 + 4363: 4,25 + 4364: 5,25 + 4365: 7,25 + 4366: 8,25 + 4367: 6,31 + 4394: 4,32 + 4400: 3,37 + 4401: 4,37 + 4402: 9,37 + 4412: 9,32 + 4419: 5,31 + 4420: 3,31 + 4437: 4,27 + 4438: 5,27 + 4439: 6,27 + 4440: 7,27 + 4441: 8,27 + 4447: 14,28 + 4463: 12,28 + 4464: 13,28 + 4476: 14,25 + 4477: 15,25 + 4478: 16,25 + 4480: 16,32 + 4486: 13,26 + 4487: 14,26 + 4488: 15,26 + 4489: 16,26 + 4506: 13,39 + 4507: 14,39 + 4508: 15,39 + 4509: 15,39 + 4510: 16,39 + 4511: 17,39 + 4512: 17,39 + 4513: 19,39 + 4514: 20,39 + 4515: 17,39 + 4516: 18,39 + 4535: 5,38 + 4542: 5,43 + 4543: 6,43 + 4550: 10,38 + 4560: 13,33 + 4570: 10,41 + 4590: 15,33 + 4610: 20,33 + 4611: 21,33 + 4619: 14,46 + 4636: 22,32 + 4637: 23,32 + 4638: 24,32 + 4639: 25,32 + 4640: 26,32 + 4673: 21,25 + 4677: 22,27 + 4678: 23,27 + 4679: 23,27 + 4680: 24,27 + 4694: 26,27 + 4695: 20,27 + 4706: 22,28 + 4707: 24,28 + 4713: 26,28 + 4714: 20,28 + 4728: 23,29 + 4751: 25,38 + 4752: 26,38 + 4753: 27,38 + 4757: 26,34 + 4758: 27,34 + 4777: 16,34 + 4778: 17,34 + 4779: 18,34 + 4802: 28,44 + 4804: 28,39 + 4818: 4,34 + 4819: 5,34 + 4820: 6,34 + 4821: 7,34 + 4822: 8,34 + 4823: 9,34 + 4828: 6,37 + 4829: 7,37 + 4830: 8,37 + 4838: 27,52 + 4839: 28,52 + 4840: 29,52 + 4841: 30,52 + 4842: 31,52 + 4843: 32,52 + 4844: 33,52 + 4845: 34,52 + 4846: 36,52 + 4847: 37,52 + 4848: 37,52 + 4849: 38,52 + 4906: 35,52 + 4907: 26,52 + 4921: 11,54 + 4922: 12,54 + 4945: 16,54 + 4952: 18,54 + 4953: 19,54 + 4954: 20,54 + 4955: 20,54 + 4956: 22,54 + 4957: 23,54 + 4958: 21,54 + 5007: 16,40 + 5008: 17,40 + 5009: 19,40 + 5010: 20,40 + 5011: 21,40 + 5012: 22,40 + 5013: 22,42 + 5014: 21,42 + 5015: 19,42 + 5016: 20,42 + 5017: 17,42 + 5018: 16,42 + 5019: 16,44 + 5020: 17,44 + 5021: 19,44 + 5022: 20,44 + 5023: 21,44 + 5024: 22,44 + 5025: 22,46 + 5026: 21,46 + 5027: 20,46 + 5028: 19,46 + 5029: 19,48 + 5030: 20,48 + 5031: 21,48 + 5032: 22,48 + 5033: 22,50 + 5034: 21,50 + 5035: 20,50 + 5044: 19,50 + 5164: 39,30 + 5165: 41,30 + 11370: -11,-83 + 20059: 35,39 - node: color: '#DABC8BFF' id: BrickTileWhiteLineN decals: - 4007: -38,54 - 9582: 7,-30 - 9583: 6,-30 - 9584: 4,-30 - 9585: 3,-30 - 9613: 5,-35 - 9614: 6,-35 - 9632: 5,-37 + 4005: -38,54 + 9580: 7,-30 + 9581: 6,-30 + 9582: 4,-30 + 9583: 3,-30 + 9611: 5,-35 + 9612: 6,-35 + 9630: 5,-37 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 16894: -55,2 - 16895: -54,2 - 16896: -53,3 - 16897: -52,3 - 16898: -53,7 - 16899: -52,7 - 16910: -53,7 - 16911: -52,7 - 16912: -53,3 - 16913: -52,3 - 16916: -51,2 - 16917: -50,2 - 16928: -50,-1 - 16944: -58,-5 - 16950: -60,2 - 16951: -59,2 - 16952: -58,2 - 16953: -57,2 - 16954: -56,2 - 16970: -48,15 - 16971: -49,15 - 16972: -50,15 - 16973: -51,15 - 16988: -57,15 - 16989: -56,15 - 17007: -58,-11 - 17026: -60,-6 - 17027: -59,-6 - 17038: -60,-12 - 17039: -59,-12 - 17040: -57,-12 - 17041: -56,-12 - 17042: -55,-7 - 17066: -61,-17 - 17099: -56,-19 - 17100: -54,-19 - 17112: -49,-13 - 17113: -48,-13 - 17204: -58,16 - 17213: -62,15 - 17214: -63,15 - 17215: -64,15 - 17216: -65,15 - 17217: -66,15 - 17234: -77,16 - 17235: -76,16 - 17236: -75,16 - 17237: -74,16 - 17238: -73,16 - 17239: -71,16 - 17240: -70,16 - 17241: -69,16 - 17242: -72,16 - 17260: -77,12 - 17261: -72,13 - 17263: -77,12 - 17331: -60,19 - 17332: -59,19 - 17333: -58,19 - 17362: -48,-6 - 17363: -47,-6 - 17364: -46,-6 - 17395: -66,-6 - 17396: -65,-6 - 17397: -64,-6 - 17398: -72,-6 - 17399: -70,-6 - 17400: -68,-6 - 17401: -73,-6 - 17412: -71,-9 - 17413: -70,-9 - 17414: -69,-9 - 17427: -75,-6 - 17428: -76,-6 - 17438: -71,-9 - 17439: -70,-9 - 17440: -69,-9 - 17448: -11,-83 - 17453: 10,89 - 17454: 5,91 - 17456: 6,86 - 17469: 10,89 - 17470: 6,90 - 17502: 11,82 - 17519: 12,73 - 17561: -63,10 - 17562: -64,10 - 17628: -72,2 - 17629: -71,2 - 17630: -70,2 - 17631: -69,2 - 17632: -68,2 - 17633: -67,2 - 17634: -67,2 - 17654: -71,-5 - 17655: -69,-5 - 17686: -73,12 - 17687: -71,12 - 17697: -72,9 - 17699: -72,13 - 17703: -82,14 - 17704: -81,14 - 17705: -80,14 - 17719: -77,12 - 17750: -77,2 - 17767: -77,8 - 17768: -77,12 - 17769: -78,1 - 17784: -76,-3 - 17814: -72,-10 - 17815: -68,-10 - 17819: -71,-9 - 17820: -70,-9 - 17821: -69,-9 - 18191: -60,-1 - 18192: -59,-1 - 18193: -58,-1 - 18194: -57,-1 - 18195: -56,-1 - 18249: -55,15 - 18250: -54,15 - 18251: -53,15 - 18252: -52,15 + 16892: -55,2 + 16893: -54,2 + 16894: -53,3 + 16895: -52,3 + 16896: -53,7 + 16897: -52,7 + 16908: -53,7 + 16909: -52,7 + 16910: -53,3 + 16911: -52,3 + 16914: -51,2 + 16915: -50,2 + 16926: -50,-1 + 16942: -58,-5 + 16948: -60,2 + 16949: -59,2 + 16950: -58,2 + 16951: -57,2 + 16952: -56,2 + 16968: -48,15 + 16969: -49,15 + 16970: -50,15 + 16971: -51,15 + 16986: -57,15 + 16987: -56,15 + 17005: -58,-11 + 17024: -60,-6 + 17025: -59,-6 + 17036: -60,-12 + 17037: -59,-12 + 17038: -57,-12 + 17039: -56,-12 + 17040: -55,-7 + 17064: -61,-17 + 17097: -56,-19 + 17098: -54,-19 + 17110: -49,-13 + 17111: -48,-13 + 17202: -58,16 + 17211: -62,15 + 17212: -63,15 + 17213: -64,15 + 17214: -65,15 + 17215: -66,15 + 17232: -77,16 + 17233: -76,16 + 17234: -75,16 + 17235: -74,16 + 17236: -73,16 + 17237: -71,16 + 17238: -70,16 + 17239: -69,16 + 17240: -72,16 + 17258: -77,12 + 17259: -72,13 + 17261: -77,12 + 17329: -60,19 + 17330: -59,19 + 17331: -58,19 + 17360: -48,-6 + 17361: -47,-6 + 17362: -46,-6 + 17393: -66,-6 + 17394: -65,-6 + 17395: -64,-6 + 17396: -72,-6 + 17397: -70,-6 + 17398: -68,-6 + 17399: -73,-6 + 17410: -71,-9 + 17411: -70,-9 + 17412: -69,-9 + 17425: -75,-6 + 17426: -76,-6 + 17436: -71,-9 + 17437: -70,-9 + 17438: -69,-9 + 17446: -11,-83 + 17451: 10,89 + 17452: 5,91 + 17454: 6,86 + 17467: 10,89 + 17468: 6,90 + 17500: 11,82 + 17517: 12,73 + 17559: -63,10 + 17560: -64,10 + 17626: -72,2 + 17627: -71,2 + 17628: -70,2 + 17629: -69,2 + 17630: -68,2 + 17631: -67,2 + 17632: -67,2 + 17652: -71,-5 + 17653: -69,-5 + 17684: -73,12 + 17685: -71,12 + 17695: -72,9 + 17697: -72,13 + 17701: -82,14 + 17702: -81,14 + 17703: -80,14 + 17717: -77,12 + 17748: -77,2 + 17765: -77,8 + 17766: -77,12 + 17767: -78,1 + 17782: -76,-3 + 17812: -72,-10 + 17813: -68,-10 + 17817: -71,-9 + 17818: -70,-9 + 17819: -69,-9 + 18189: -60,-1 + 18190: -59,-1 + 18191: -58,-1 + 18192: -57,-1 + 18193: -56,-1 + 18247: -55,15 + 18248: -54,15 + 18249: -53,15 + 18250: -52,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -14761,604 +14756,604 @@ entities: 870: 71,-42 1174: 45,-14 1175: 48,-14 - 2072: -19,49 - 2073: -19,45 - 2082: -21,46 - 2083: -17,46 - 2140: -19,33 - 2141: -19,26 - 2145: -19,30 - 2213: -21,28 - 2266: -23,40 - 2391: -31,29 - 2698: -12,51 - 2705: -10,54 - 2707: -12,54 - 2770: -11,48 - 2771: -10,48 - 2772: -6,48 - 2773: -5,48 - 2816: -6,34 - 3016: -13,56 - 3017: -12,56 - 3018: -11,56 - 3032: -19,60 - 3065: -16,58 - 3066: -15,58 - 3067: -14,58 - 3068: -13,58 - 3080: -20,67 - 3081: -19,67 - 3082: -18,67 - 3083: -12,67 - 3084: -13,67 - 3085: -11,67 - 3098: -5,60 - 3104: -6,67 - 3105: -5,67 - 3106: -4,67 - 3117: -6,56 - 3118: -5,56 - 3119: -4,56 - 3120: -20,56 - 3121: -19,56 - 3122: -18,56 - 3230: -12,71 - 3236: -12,78 - 3255: -12,91 - 3256: -12,84 - 3303: -30,71 - 3304: -30,78 - 3305: -30,84 - 3306: -30,91 - 3310: -31,67 - 3311: -30,67 - 3312: -29,67 - 3519: 0,67 - 3520: 1,67 - 3521: 1,67 - 3522: 2,67 - 3523: 5,67 - 3524: 6,67 - 3525: 7,67 - 3614: 6,71 - 3682: 6,78 - 3780: 0,56 - 3781: 1,56 - 3782: 2,56 - 3842: 17,71 - 3843: 18,71 - 3844: 19,71 - 3845: 20,71 - 3846: 21,71 - 3848: 22,71 - 3865: 18,68 - 3866: 19,68 - 3867: 21,68 - 3868: 22,68 - 4157: -24,23 - 5202: 17,15 - 5203: 17,8 - 5223: -19,1 - 5224: 17,-6 - 5225: 17,1 - 5234: -26,67 - 5235: -25,67 - 5236: -24,67 - 5491: -38,4 - 5492: -38,4 - 5493: -37,4 - 5494: -36,4 - 5495: -33,4 - 5496: -32,4 - 5497: -31,4 - 5498: -27,4 - 5499: -26,4 - 5500: -25,4 - 5501: -23,4 - 5502: -24,4 - 5503: -24,4 - 5582: -32,28 - 6247: -19,-18 - 6327: 17,-18 - 6350: -2,-14 - 6351: -1,-14 - 6352: 0,-14 - 6353: 1,-14 - 6420: 3,-21 - 6421: 4,-21 - 6422: 5,-21 - 6423: 6,-21 - 6424: 10,-21 - 6425: 12,-21 - 6426: 11,-21 - 6427: 13,-21 - 6428: -5,-21 - 6429: -6,-21 - 6430: -6,-21 - 6431: -7,-21 - 6432: -7,-21 - 6433: -8,-21 - 6434: -8,-21 - 6435: -12,-21 - 6436: -12,-21 - 6437: -13,-21 - 6438: -14,-21 - 6439: -14,-21 - 6440: -15,-21 - 6441: -15,-21 - 6673: -33,-10 - 6674: -32,-10 - 6683: -31,-2 - 6684: -30,-2 - 6685: -29,-2 - 6686: -28,-2 - 6687: -27,-2 - 6688: -26,-2 - 6689: -26,-2 - 6690: -23,-2 - 6691: -22,-2 - 6692: -22,-2 - 6693: -25,-2 - 6720: -31,-11 - 6721: -30,-11 - 6722: -29,-11 - 6723: -34,-11 - 6751: -28,-17 - 6752: -34,-16 - 6753: -33,-16 - 6754: -32,-16 - 6755: -31,-16 - 6974: -25,-15 - 6975: -24,-15 - 6980: -25,-15 - 6981: -24,-15 - 6987: -24,-19 - 7141: 21,4 - 7142: 22,4 - 7143: 23,4 - 7144: 24,4 - 7208: 28,4 - 7209: 29,4 - 7210: 30,4 - 7211: 31,4 - 8076: 58,-17 - 8077: 59,-17 - 8078: 60,-17 - 8079: 58,-30 - 8080: 59,-30 - 8081: 60,-30 - 8219: 39,-7 - 8220: 40,-7 - 8250: 22,-12 - 8251: 23,-12 - 8252: 23,-12 - 8253: 24,-12 - 8254: 24,-12 - 8255: 21,-12 - 8256: 28,-12 - 8257: 28,-12 - 8258: 29,-12 - 8259: 29,-12 - 8260: 30,-12 - 8261: 30,-12 - 8280: 35,-16 - 8281: 36,-16 - 8282: 36,-16 - 8283: 37,-16 - 8284: 37,-16 - 8285: 39,-16 - 8286: 39,-16 - 8287: 38,-16 - 8288: 38,-16 - 8367: 46,-18 - 8368: 47,-18 - 8372: 48,-14 - 8373: 48,-14 - 8374: 47,-14 + 2070: -19,49 + 2071: -19,45 + 2080: -21,46 + 2081: -17,46 + 2138: -19,33 + 2139: -19,26 + 2143: -19,30 + 2211: -21,28 + 2264: -23,40 + 2389: -31,29 + 2696: -12,51 + 2703: -10,54 + 2705: -12,54 + 2768: -11,48 + 2769: -10,48 + 2770: -6,48 + 2771: -5,48 + 2814: -6,34 + 3014: -13,56 + 3015: -12,56 + 3016: -11,56 + 3030: -19,60 + 3063: -16,58 + 3064: -15,58 + 3065: -14,58 + 3066: -13,58 + 3078: -20,67 + 3079: -19,67 + 3080: -18,67 + 3081: -12,67 + 3082: -13,67 + 3083: -11,67 + 3096: -5,60 + 3102: -6,67 + 3103: -5,67 + 3104: -4,67 + 3115: -6,56 + 3116: -5,56 + 3117: -4,56 + 3118: -20,56 + 3119: -19,56 + 3120: -18,56 + 3228: -12,71 + 3234: -12,78 + 3253: -12,91 + 3254: -12,84 + 3301: -30,71 + 3302: -30,78 + 3303: -30,84 + 3304: -30,91 + 3308: -31,67 + 3309: -30,67 + 3310: -29,67 + 3517: 0,67 + 3518: 1,67 + 3519: 1,67 + 3520: 2,67 + 3521: 5,67 + 3522: 6,67 + 3523: 7,67 + 3612: 6,71 + 3680: 6,78 + 3778: 0,56 + 3779: 1,56 + 3780: 2,56 + 3840: 17,71 + 3841: 18,71 + 3842: 19,71 + 3843: 20,71 + 3844: 21,71 + 3846: 22,71 + 3863: 18,68 + 3864: 19,68 + 3865: 21,68 + 3866: 22,68 + 4155: -24,23 + 5200: 17,15 + 5201: 17,8 + 5221: -19,1 + 5222: 17,-6 + 5223: 17,1 + 5232: -26,67 + 5233: -25,67 + 5234: -24,67 + 5489: -38,4 + 5490: -38,4 + 5491: -37,4 + 5492: -36,4 + 5493: -33,4 + 5494: -32,4 + 5495: -31,4 + 5496: -27,4 + 5497: -26,4 + 5498: -25,4 + 5499: -23,4 + 5500: -24,4 + 5501: -24,4 + 5580: -32,28 + 6245: -19,-18 + 6325: 17,-18 + 6348: -2,-14 + 6349: -1,-14 + 6350: 0,-14 + 6351: 1,-14 + 6418: 3,-21 + 6419: 4,-21 + 6420: 5,-21 + 6421: 6,-21 + 6422: 10,-21 + 6423: 12,-21 + 6424: 11,-21 + 6425: 13,-21 + 6426: -5,-21 + 6427: -6,-21 + 6428: -6,-21 + 6429: -7,-21 + 6430: -7,-21 + 6431: -8,-21 + 6432: -8,-21 + 6433: -12,-21 + 6434: -12,-21 + 6435: -13,-21 + 6436: -14,-21 + 6437: -14,-21 + 6438: -15,-21 + 6439: -15,-21 + 6671: -33,-10 + 6672: -32,-10 + 6681: -31,-2 + 6682: -30,-2 + 6683: -29,-2 + 6684: -28,-2 + 6685: -27,-2 + 6686: -26,-2 + 6687: -26,-2 + 6688: -23,-2 + 6689: -22,-2 + 6690: -22,-2 + 6691: -25,-2 + 6718: -31,-11 + 6719: -30,-11 + 6720: -29,-11 + 6721: -34,-11 + 6749: -28,-17 + 6750: -34,-16 + 6751: -33,-16 + 6752: -32,-16 + 6753: -31,-16 + 6972: -25,-15 + 6973: -24,-15 + 6978: -25,-15 + 6979: -24,-15 + 6985: -24,-19 + 7139: 21,4 + 7140: 22,4 + 7141: 23,4 + 7142: 24,4 + 7206: 28,4 + 7207: 29,4 + 7208: 30,4 + 7209: 31,4 + 8074: 58,-17 + 8075: 59,-17 + 8076: 60,-17 + 8077: 58,-30 + 8078: 59,-30 + 8079: 60,-30 + 8217: 39,-7 + 8218: 40,-7 + 8248: 22,-12 + 8249: 23,-12 + 8250: 23,-12 + 8251: 24,-12 + 8252: 24,-12 + 8253: 21,-12 + 8254: 28,-12 + 8255: 28,-12 + 8256: 29,-12 + 8257: 29,-12 + 8258: 30,-12 + 8259: 30,-12 + 8278: 35,-16 + 8279: 36,-16 + 8280: 36,-16 + 8281: 37,-16 + 8282: 37,-16 + 8283: 39,-16 + 8284: 39,-16 + 8285: 38,-16 + 8286: 38,-16 + 8365: 46,-18 + 8366: 47,-18 + 8370: 48,-14 + 8371: 48,-14 + 8372: 47,-14 + 8444: 44,-21 + 8445: 44,-21 8446: 44,-21 - 8447: 44,-21 - 8448: 44,-21 - 8449: 45,-21 - 8450: 46,-21 - 8451: 46,-21 - 8452: 47,-21 - 8453: 49,-21 - 8454: 50,-21 + 8447: 45,-21 + 8448: 46,-21 + 8449: 46,-21 + 8450: 47,-21 + 8451: 49,-21 + 8452: 50,-21 + 8453: 51,-21 + 8454: 51,-21 8455: 51,-21 - 8456: 51,-21 - 8457: 51,-21 - 8458: 52,-21 - 8459: 52,-21 - 8681: -2,-77 - 8682: -1,-77 - 8683: -7,-77 - 8684: -8,-77 - 8685: -8,-81 - 8686: -7,-81 - 8687: -6,-81 - 8688: -3,-81 - 8689: -2,-81 - 8690: -1,-81 - 8772: 6,-27 - 8773: 6,-27 - 8774: 7,-27 - 8775: 9,-27 - 8776: 9,-27 - 8777: 10,-27 - 8778: 10,-27 - 8779: 8,-27 - 8780: -12,-27 - 8781: -11,-27 - 8782: -10,-27 - 8783: -9,-27 - 8784: -8,-27 - 8855: -1,-28 - 8895: -1,-36 - 9433: -1,-43 - 9434: -1,-51 - 9435: -1,-56 - 9436: -1,-62 - 9464: -5,-69 - 9465: -4,-69 - 9471: -5,-74 - 9472: -4,-74 - 9479: -6,-69 - 9480: -3,-69 - 9498: 69,-41 - 9565: 5,-29 - 9566: 11,-29 - 9567: 13,-29 - 10686: 73,-48 - 10687: 73,-48 - 10998: 40,-66 - 11413: -6,-29 - 11414: -13,-29 - 11415: -15,-29 - 11418: -15,-29 - 11419: -13,-29 - 13491: -41,-64 - 14996: 11,22 - 14997: 12,22 - 14998: 13,22 - 14999: 14,22 - 15000: 4,22 - 15001: 3,22 - 15002: 2,22 - 15003: 1,22 - 15004: -3,22 - 15005: -4,22 - 15006: -5,22 - 15007: -6,22 - 15008: -13,22 - 15009: -14,22 - 15010: -15,22 - 15011: -15,22 - 15012: -16,22 - 15457: -42,19 - 15458: -42,13 - 15459: -42,8 - 15605: 95,-2 - 15687: 92,-3 - 15688: 93,-3 - 15689: 94,-3 - 15703: 96,7 - 15709: 96,5 - 18764: -3,-10 - 18765: -2,-10 - 18766: -2,-10 - 18767: 0,-10 - 18768: 0,-10 - 18769: -1,-10 - 18770: 1,-10 - 18771: 4,-10 - 18772: 5,-10 - 18773: 6,-10 - 18774: 7,-10 - 18775: 10,-10 - 18776: 11,-10 - 18777: 12,-10 - 18778: 13,-10 - 18779: -9,-10 - 18780: -8,-10 - 18781: -7,-10 - 18782: -7,-10 - 18783: -6,-10 - 18784: -12,-10 - 18785: -13,-10 - 18786: -14,-10 - 18787: -15,-10 - 19722: 35,-15 - 19723: 36,-15 - 19724: 37,-15 - 19725: 38,-15 - 19726: 39,-15 - 19727: 35,-12 - 19728: 36,-12 - 19729: 37,-12 - 19730: 38,-12 - 19731: 39,-12 - 20241: -19,-6 - 20242: -19,1 - 20243: -19,8 - 20244: -19,15 + 8456: 52,-21 + 8457: 52,-21 + 8679: -2,-77 + 8680: -1,-77 + 8681: -7,-77 + 8682: -8,-77 + 8683: -8,-81 + 8684: -7,-81 + 8685: -6,-81 + 8686: -3,-81 + 8687: -2,-81 + 8688: -1,-81 + 8770: 6,-27 + 8771: 6,-27 + 8772: 7,-27 + 8773: 9,-27 + 8774: 9,-27 + 8775: 10,-27 + 8776: 10,-27 + 8777: 8,-27 + 8778: -12,-27 + 8779: -11,-27 + 8780: -10,-27 + 8781: -9,-27 + 8782: -8,-27 + 8853: -1,-28 + 8893: -1,-36 + 9431: -1,-43 + 9432: -1,-51 + 9433: -1,-56 + 9434: -1,-62 + 9462: -5,-69 + 9463: -4,-69 + 9469: -5,-74 + 9470: -4,-74 + 9477: -6,-69 + 9478: -3,-69 + 9496: 69,-41 + 9563: 5,-29 + 9564: 11,-29 + 9565: 13,-29 + 10684: 73,-48 + 10685: 73,-48 + 10996: 40,-66 + 11411: -6,-29 + 11412: -13,-29 + 11413: -15,-29 + 11416: -15,-29 + 11417: -13,-29 + 13489: -41,-64 + 14994: 11,22 + 14995: 12,22 + 14996: 13,22 + 14997: 14,22 + 14998: 4,22 + 14999: 3,22 + 15000: 2,22 + 15001: 1,22 + 15002: -3,22 + 15003: -4,22 + 15004: -5,22 + 15005: -6,22 + 15006: -13,22 + 15007: -14,22 + 15008: -15,22 + 15009: -15,22 + 15010: -16,22 + 15455: -42,19 + 15456: -42,13 + 15457: -42,8 + 15603: 95,-2 + 15685: 92,-3 + 15686: 93,-3 + 15687: 94,-3 + 15701: 96,7 + 15707: 96,5 + 18762: -3,-10 + 18763: -2,-10 + 18764: -2,-10 + 18765: 0,-10 + 18766: 0,-10 + 18767: -1,-10 + 18768: 1,-10 + 18769: 4,-10 + 18770: 5,-10 + 18771: 6,-10 + 18772: 7,-10 + 18773: 10,-10 + 18774: 11,-10 + 18775: 12,-10 + 18776: 13,-10 + 18777: -9,-10 + 18778: -8,-10 + 18779: -7,-10 + 18780: -7,-10 + 18781: -6,-10 + 18782: -12,-10 + 18783: -13,-10 + 18784: -14,-10 + 18785: -15,-10 + 19720: 35,-15 + 19721: 36,-15 + 19722: 37,-15 + 19723: 38,-15 + 19724: 39,-15 + 19725: 35,-12 + 19726: 36,-12 + 19727: 37,-12 + 19728: 38,-12 + 19729: 39,-12 + 20239: -19,-6 + 20240: -19,1 + 20241: -19,8 + 20242: -19,15 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 4082: -19,15 - 4091: -19,8 + 4080: -19,15 + 4089: -19,8 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 21331: -12,13 - 21332: -11,13 + 21329: -12,13 + 21330: -11,13 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineS decals: - 17894: -50,21 - 17901: -48,18 - 17902: -47,18 - 17903: -46,18 - 17927: -55,39 - 17947: -50,36 - 17948: -49,36 - 17949: -48,36 - 17957: -44,51 - 17958: -44,51 - 17971: -46,56 - 17972: -46,58 - 17995: -48,43 - 18008: -47,44 - 18009: -46,44 - 18013: -45,44 - 18058: -59,55 - 18067: -59,44 - 18068: -58,44 - 18069: -57,44 - 18070: -55,44 - 18071: -52,44 - 18072: -51,44 - 18073: -50,44 - 18074: -49,44 - 18079: -53,44 - 18138: -55,23 - 18145: -52,21 + 17892: -50,21 + 17899: -48,18 + 17900: -47,18 + 17901: -46,18 + 17925: -55,39 + 17945: -50,36 + 17946: -49,36 + 17947: -48,36 + 17955: -44,51 + 17956: -44,51 + 17969: -46,56 + 17970: -46,58 + 17993: -48,43 + 18006: -47,44 + 18007: -46,44 + 18011: -45,44 + 18056: -59,55 + 18065: -59,44 + 18066: -58,44 + 18067: -57,44 + 18068: -55,44 + 18069: -52,44 + 18070: -51,44 + 18071: -50,44 + 18072: -49,44 + 18077: -53,44 + 18136: -55,23 + 18143: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineS decals: - 9506: 6,-24 - 9507: 7,-24 - 9508: 8,-24 - 9509: 9,-24 - 9510: 9,-24 - 9511: 10,-24 - 9646: 20,-36 - 9647: 21,-36 - 9648: 22,-36 - 9649: 23,-36 - 9650: 24,-36 - 9651: 25,-36 - 9652: 29,-36 - 9653: 30,-36 - 9654: 31,-36 - 9655: 33,-36 - 9656: 32,-36 - 9657: 34,-36 - 9658: 35,-36 - 9659: 36,-36 - 9660: 37,-36 - 9720: 12,-33 - 9726: 10,-36 - 9727: 11,-36 - 9728: 12,-36 - 9729: 13,-36 - 9762: 29,-33 - 9763: 36,-33 - 9764: 21,-33 - 9765: 16,-37 - 9766: 17,-37 - 9767: 18,-37 - 9768: 26,-37 - 9769: 27,-37 - 9770: 28,-37 - 9830: 22,-34 - 9831: 23,-34 - 9832: 24,-34 - 9833: 26,-34 - 9834: 27,-34 - 9835: 25,-34 - 9836: 31,-34 - 9837: 33,-34 + 9504: 6,-24 + 9505: 7,-24 + 9506: 8,-24 + 9507: 9,-24 + 9508: 9,-24 + 9509: 10,-24 + 9644: 20,-36 + 9645: 21,-36 + 9646: 22,-36 + 9647: 23,-36 + 9648: 24,-36 + 9649: 25,-36 + 9650: 29,-36 + 9651: 30,-36 + 9652: 31,-36 + 9653: 33,-36 + 9654: 32,-36 + 9655: 34,-36 + 9656: 35,-36 + 9657: 36,-36 + 9658: 37,-36 + 9718: 12,-33 + 9724: 10,-36 + 9725: 11,-36 + 9726: 12,-36 + 9727: 13,-36 + 9760: 29,-33 + 9761: 36,-33 + 9762: 21,-33 + 9763: 16,-37 + 9764: 17,-37 + 9765: 18,-37 + 9766: 26,-37 + 9767: 27,-37 + 9768: 28,-37 + 9828: 22,-34 + 9829: 23,-34 + 9830: 24,-34 + 9831: 26,-34 + 9832: 27,-34 + 9833: 25,-34 + 9834: 31,-34 + 9835: 33,-34 + 9836: 34,-34 + 9837: 36,-34 9838: 34,-34 - 9839: 36,-34 - 9840: 34,-34 - 9841: 35,-34 - 9842: 32,-34 - 9843: 27,-39 - 9844: 17,-39 - 9845: 17,-30 - 9846: 11,-34 - 9847: 12,-34 - 9848: 12,-34 - 9849: 13,-34 - 9896: 27,-46 - 9946: 21,-41 - 9947: 22,-41 - 9948: 23,-41 - 9983: 37,-45 - 9984: 31,-42 - 9985: 32,-42 - 9986: 33,-42 - 9987: 33,-42 - 9988: 34,-42 - 9989: 35,-42 - 9990: 36,-42 - 10004: 37,-43 - 10011: 32,-39 - 10012: 33,-39 - 10013: 34,-39 - 10014: 35,-39 - 10015: 36,-39 - 10044: 25,-30 - 10047: 31,-30 - 10057: 29,-28 - 10087: 30,-27 - 10088: 30,-27 - 10089: 31,-27 - 10117: 10,-41 - 10118: 11,-41 - 10119: 12,-41 - 10120: 13,-41 - 10140: 21,-49 - 10141: 23,-49 - 10340: 5,-47 - 10341: 6,-47 - 10342: 7,-47 - 10343: 8,-47 - 10344: 9,-47 - 10351: 2,-44 - 10354: 4,-42 - 10355: 9,-42 - 10386: 13,-45 - 12384: -7,-62 - 19393: 6,66 - 19399: 6,62 - 19427: -6,-62 - 19766: 22,-29 - 19767: 21,-29 - 19788: 27,-32 - 19789: 28,-32 - 19791: 29,-28 + 9839: 35,-34 + 9840: 32,-34 + 9841: 27,-39 + 9842: 17,-39 + 9843: 17,-30 + 9844: 11,-34 + 9845: 12,-34 + 9846: 12,-34 + 9847: 13,-34 + 9894: 27,-46 + 9944: 21,-41 + 9945: 22,-41 + 9946: 23,-41 + 9981: 37,-45 + 9982: 31,-42 + 9983: 32,-42 + 9984: 33,-42 + 9985: 33,-42 + 9986: 34,-42 + 9987: 35,-42 + 9988: 36,-42 + 10002: 37,-43 + 10009: 32,-39 + 10010: 33,-39 + 10011: 34,-39 + 10012: 35,-39 + 10013: 36,-39 + 10042: 25,-30 + 10045: 31,-30 + 10055: 29,-28 + 10085: 30,-27 + 10086: 30,-27 + 10087: 31,-27 + 10115: 10,-41 + 10116: 11,-41 + 10117: 12,-41 + 10118: 13,-41 + 10138: 21,-49 + 10139: 23,-49 + 10338: 5,-47 + 10339: 6,-47 + 10340: 7,-47 + 10341: 8,-47 + 10342: 9,-47 + 10349: 2,-44 + 10352: 4,-42 + 10353: 9,-42 + 10384: 13,-45 + 12382: -7,-62 + 19391: 6,66 + 19397: 6,62 + 19425: -6,-62 + 19764: 22,-29 + 19765: 21,-29 + 19786: 27,-32 + 19787: 28,-32 + 19789: 29,-28 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineS decals: - 2873: -25,47 - 2878: -26,47 - 2879: -30,46 - 2880: -29,46 - 2881: -28,46 - 2892: -33,46 - 2922: -32,54 - 2923: -30,54 - 2924: -28,51 - 18390: -26,52 + 2871: -25,47 + 2876: -26,47 + 2877: -30,46 + 2878: -29,46 + 2879: -28,46 + 2890: -33,46 + 2920: -32,54 + 2921: -30,54 + 2922: -28,51 + 18388: -26,52 - node: color: '#B18BDAFF' id: BrickTileWhiteLineS decals: - 5089: 20,26 - 5090: 23,27 - 5091: 25,26 - 5095: 20,33 - 5158: 39,28 - 5159: 40,28 - 5160: 41,28 - 5161: 42,28 - 11465: -23,-25 - 11466: -29,-34 - 11467: -28,-34 - 11468: -27,-34 - 11469: -26,-34 - 11470: -25,-34 - 11471: -24,-34 - 11472: -18,-34 - 11473: -17,-34 - 11474: -16,-34 - 11475: -15,-34 - 11476: -14,-34 - 11504: -14,-38 - 11505: -14,-38 - 11522: -14,-46 - 11523: -14,-46 - 11526: -15,-33 - 11527: -13,-33 - 11528: -13,-33 - 11569: -20,-36 - 11570: -20,-36 - 11571: -19,-36 - 11572: -19,-36 - 11573: -18,-36 - 11574: -18,-36 - 11575: -17,-36 - 11576: -17,-36 - 11577: -16,-36 - 11578: -16,-36 - 11590: -31,-36 - 11591: -30,-36 - 11592: -28,-36 - 11593: -28,-36 - 11594: -27,-36 - 11595: -26,-36 - 11596: -26,-36 - 11597: -25,-36 - 11598: -25,-36 - 11599: -23,-36 - 11600: -22,-36 - 11601: -22,-36 - 11610: -24,-33 - 11611: -23,-33 - 11612: -22,-33 - 11613: -22,-33 - 11637: -12,-24 - 11638: -11,-24 - 11639: -11,-24 - 11640: -9,-24 - 11641: -9,-24 - 11642: -8,-24 - 11643: -10,-24 - 11657: -15,-33 - 11658: -13,-33 - 11668: -9,-36 - 11669: -9,-36 - 11670: -8,-36 - 11671: -6,-36 - 11674: -6,-29 - 11804: -15,-37 - 11805: -14,-37 - 11806: -14,-37 - 11807: -13,-37 - 11920: -29,-33 - 11932: -30,-26 - 11933: -29,-26 - 11934: -28,-26 - 11935: -28,-30 - 11936: -28,-30 - 12102: -23,-23 - 12201: -25,-38 - 12202: -24,-38 - 12216: -29,-38 - 12233: -15,-54 - 12234: -14,-54 - 12238: -15,-45 - 12239: -14,-45 - 12240: -13,-45 - 12255: -18,-60 - 12256: -17,-60 - 12257: -16,-60 - 12258: -15,-60 - 12259: -14,-60 - 12276: -16,-55 - 12287: -10,-53 - 12288: -9,-53 - 12289: -8,-53 - 12290: -7,-53 - 12291: -5,-53 - 12302: -10,-48 - 12314: -6,-45 - 12327: -20,-44 - 12328: -18,-44 - 12334: -20,-39 - 12335: -19,-39 - 12336: -18,-39 - 12640: -8,-31 - 12641: -7,-31 - 20066: 34,40 + 5087: 20,26 + 5088: 23,27 + 5089: 25,26 + 5093: 20,33 + 5156: 39,28 + 5157: 40,28 + 5158: 41,28 + 5159: 42,28 + 11463: -23,-25 + 11464: -29,-34 + 11465: -28,-34 + 11466: -27,-34 + 11467: -26,-34 + 11468: -25,-34 + 11469: -24,-34 + 11470: -18,-34 + 11471: -17,-34 + 11472: -16,-34 + 11473: -15,-34 + 11474: -14,-34 + 11502: -14,-38 + 11503: -14,-38 + 11520: -14,-46 + 11521: -14,-46 + 11524: -15,-33 + 11525: -13,-33 + 11526: -13,-33 + 11567: -20,-36 + 11568: -20,-36 + 11569: -19,-36 + 11570: -19,-36 + 11571: -18,-36 + 11572: -18,-36 + 11573: -17,-36 + 11574: -17,-36 + 11575: -16,-36 + 11576: -16,-36 + 11588: -31,-36 + 11589: -30,-36 + 11590: -28,-36 + 11591: -28,-36 + 11592: -27,-36 + 11593: -26,-36 + 11594: -26,-36 + 11595: -25,-36 + 11596: -25,-36 + 11597: -23,-36 + 11598: -22,-36 + 11599: -22,-36 + 11608: -24,-33 + 11609: -23,-33 + 11610: -22,-33 + 11611: -22,-33 + 11635: -12,-24 + 11636: -11,-24 + 11637: -11,-24 + 11638: -9,-24 + 11639: -9,-24 + 11640: -8,-24 + 11641: -10,-24 + 11655: -15,-33 + 11656: -13,-33 + 11666: -9,-36 + 11667: -9,-36 + 11668: -8,-36 + 11669: -6,-36 + 11672: -6,-29 + 11802: -15,-37 + 11803: -14,-37 + 11804: -14,-37 + 11805: -13,-37 + 11918: -29,-33 + 11930: -30,-26 + 11931: -29,-26 + 11932: -28,-26 + 11933: -28,-30 + 11934: -28,-30 + 12100: -23,-23 + 12199: -25,-38 + 12200: -24,-38 + 12214: -29,-38 + 12231: -15,-54 + 12232: -14,-54 + 12236: -15,-45 + 12237: -14,-45 + 12238: -13,-45 + 12253: -18,-60 + 12254: -17,-60 + 12255: -16,-60 + 12256: -15,-60 + 12257: -14,-60 + 12274: -16,-55 + 12285: -10,-53 + 12286: -9,-53 + 12287: -8,-53 + 12288: -7,-53 + 12289: -5,-53 + 12300: -10,-48 + 12312: -6,-45 + 12325: -20,-44 + 12326: -18,-44 + 12332: -20,-39 + 12333: -19,-39 + 12334: -18,-39 + 12638: -8,-31 + 12639: -7,-31 + 20064: 34,40 - node: color: '#B240B4FF' id: BrickTileWhiteLineS @@ -15370,297 +15365,297 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineS decals: - 10833: 27,-54 - 10859: 35,-72 - 10897: 44,-63 - 10902: 40,-63 - 10929: 38,-71 - 10933: 39,-72 - 10981: 28,-69 - 10982: 30,-69 - 10984: 29,-67 + 10831: 27,-54 + 10857: 35,-72 + 10895: 44,-63 + 10900: 40,-63 + 10927: 38,-71 + 10931: 39,-72 + 10979: 28,-69 + 10980: 30,-69 + 10982: 29,-67 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineS decals: - 7636: 61,-2 - 7637: 65,-2 - 19256: 69,12 - 19274: 61,-6 - 19275: 62,-6 + 7634: 61,-2 + 7635: 65,-2 + 19254: 69,12 + 19272: 61,-6 + 19273: 62,-6 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineS decals: - 2700: -11,52 - 3812: 11,66 + 2698: -11,52 + 3810: 11,66 - node: color: '#DAA58BFF' id: BrickTileWhiteLineS decals: - 4377: 3,26 - 4378: 9,26 - 4395: 4,32 - 4408: 3,33 - 4413: 9,32 - 4425: 6,26 - 4432: 4,30 - 4433: 6,30 - 4434: 5,30 - 4435: 7,30 - 4436: 8,30 - 4481: 13,26 - 4485: 15,33 - 4486: 16,32 - 4500: 13,28 - 4501: 14,28 - 4528: 5,38 - 4529: 10,38 - 4534: 6,39 - 4561: 10,41 - 4583: 16,34 - 4584: 17,34 - 4585: 18,34 - 4586: 19,34 - 4587: 14,34 - 4632: 20,33 - 4633: 21,33 - 4649: 20,26 - 4652: 23,27 - 4657: 25,26 - 4658: 26,26 - 4694: 20,31 - 4695: 26,31 - 4704: 22,31 - 4705: 23,31 - 4710: 22,30 - 4713: 20,30 - 4714: 26,30 - 4729: 23,29 - 4744: 25,34 - 4745: 26,34 - 4746: 27,34 - 4747: 28,34 - 4764: 26,38 - 4765: 27,38 - 4774: 16,38 - 4775: 17,38 - 4776: 18,38 - 4807: 28,39 - 4808: 5,33 - 4809: 6,33 - 4810: 7,33 - 4811: 8,33 - 4812: 5,36 - 4813: 6,36 - 4814: 7,36 - 4815: 8,36 - 4816: 4,36 - 4817: 9,36 - 4835: 5,38 - 4836: 22,40 - 4837: 23,40 - 4852: 26,48 + 4375: 3,26 + 4376: 9,26 + 4393: 4,32 + 4406: 3,33 + 4411: 9,32 + 4423: 6,26 + 4430: 4,30 + 4431: 6,30 + 4432: 5,30 + 4433: 7,30 + 4434: 8,30 + 4479: 13,26 + 4483: 15,33 + 4484: 16,32 + 4498: 13,28 + 4499: 14,28 + 4526: 5,38 + 4527: 10,38 + 4532: 6,39 + 4559: 10,41 + 4581: 16,34 + 4582: 17,34 + 4583: 18,34 + 4584: 19,34 + 4585: 14,34 + 4630: 20,33 + 4631: 21,33 + 4647: 20,26 + 4650: 23,27 + 4655: 25,26 + 4656: 26,26 + 4692: 20,31 + 4693: 26,31 + 4702: 22,31 + 4703: 23,31 + 4708: 22,30 + 4711: 20,30 + 4712: 26,30 + 4727: 23,29 + 4742: 25,34 + 4743: 26,34 + 4744: 27,34 + 4745: 28,34 + 4762: 26,38 + 4763: 27,38 + 4772: 16,38 + 4773: 17,38 + 4774: 18,38 + 4805: 28,39 + 4806: 5,33 + 4807: 6,33 + 4808: 7,33 + 4809: 8,33 + 4810: 5,36 + 4811: 6,36 + 4812: 7,36 + 4813: 8,36 + 4814: 4,36 + 4815: 9,36 + 4833: 5,38 + 4834: 22,40 + 4835: 23,40 + 4850: 26,48 + 4851: 28,48 + 4852: 27,48 4853: 28,48 - 4854: 27,48 - 4855: 28,48 - 4856: 29,48 - 4857: 30,48 - 4858: 31,48 - 4859: 32,48 - 4860: 33,48 - 4861: 34,48 - 4862: 35,48 - 4863: 36,48 - 4864: 37,48 - 4865: 39,48 - 4866: 38,48 - 4884: 34,48 - 4885: 35,48 - 4886: 36,48 - 4887: 37,48 - 4888: 38,48 - 4889: 33,48 - 4890: 32,48 - 4891: 31,48 - 4892: 30,48 - 4893: 29,48 - 4894: 28,48 - 4895: 27,48 - 4896: 27,48 - 4897: 26,48 - 4918: 10,55 - 4931: 10,48 - 4932: 11,48 - 4933: 11,48 - 4934: 12,48 - 4945: 17,55 - 4963: 19,52 - 4964: 20,52 - 4965: 21,52 - 4966: 22,52 - 4967: 20,50 - 4968: 21,50 - 4969: 22,50 - 4970: 19,48 - 4971: 20,48 - 4972: 21,48 - 4973: 22,48 - 4974: 19,46 - 4975: 20,46 - 4976: 21,46 - 4977: 22,46 - 4978: 16,46 - 4979: 17,46 - 4980: 16,44 - 4981: 17,44 - 4982: 16,42 - 4983: 17,42 - 4984: 19,42 - 4985: 20,42 - 4986: 21,42 - 4987: 22,42 - 4988: 22,44 - 4989: 21,44 - 4990: 19,44 - 4991: 20,44 - 5045: 19,50 - 5172: 41,28 - 5173: 39,28 - 11371: -11,-79 - 14439: -58,9 - 14440: -57,9 - 14441: -56,9 - 14442: -55,9 - 19932: 24,30 - 19936: 24,31 + 4854: 29,48 + 4855: 30,48 + 4856: 31,48 + 4857: 32,48 + 4858: 33,48 + 4859: 34,48 + 4860: 35,48 + 4861: 36,48 + 4862: 37,48 + 4863: 39,48 + 4864: 38,48 + 4882: 34,48 + 4883: 35,48 + 4884: 36,48 + 4885: 37,48 + 4886: 38,48 + 4887: 33,48 + 4888: 32,48 + 4889: 31,48 + 4890: 30,48 + 4891: 29,48 + 4892: 28,48 + 4893: 27,48 + 4894: 27,48 + 4895: 26,48 + 4916: 10,55 + 4929: 10,48 + 4930: 11,48 + 4931: 11,48 + 4932: 12,48 + 4943: 17,55 + 4961: 19,52 + 4962: 20,52 + 4963: 21,52 + 4964: 22,52 + 4965: 20,50 + 4966: 21,50 + 4967: 22,50 + 4968: 19,48 + 4969: 20,48 + 4970: 21,48 + 4971: 22,48 + 4972: 19,46 + 4973: 20,46 + 4974: 21,46 + 4975: 22,46 + 4976: 16,46 + 4977: 17,46 + 4978: 16,44 + 4979: 17,44 + 4980: 16,42 + 4981: 17,42 + 4982: 19,42 + 4983: 20,42 + 4984: 21,42 + 4985: 22,42 + 4986: 22,44 + 4987: 21,44 + 4988: 19,44 + 4989: 20,44 + 5043: 19,50 + 5170: 41,28 + 5171: 39,28 + 11369: -11,-79 + 14437: -58,9 + 14438: -57,9 + 14439: -56,9 + 14440: -55,9 + 19930: 24,30 + 19934: 24,31 - node: color: '#DABC8BFF' id: BrickTileWhiteLineS decals: - 4013: -39,52 - 4014: -38,52 - 4017: -39,55 - 9590: 4,-36 - 9591: 6,-36 - 9592: 7,-36 - 9593: 8,-36 - 9604: 5,-29 - 9605: 5,-31 - 9606: 6,-31 + 4011: -39,52 + 4012: -38,52 + 4015: -39,55 + 9588: 4,-36 + 9589: 6,-36 + 9590: 7,-36 + 9591: 8,-36 + 9602: 5,-29 + 9603: 5,-31 + 9604: 6,-31 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 16900: -53,3 - 16901: -52,3 - 16908: -53,7 - 16909: -52,7 - 16914: -53,3 - 16915: -52,3 - 16918: -49,3 - 16931: -50,-4 - 16932: -61,1 - 16933: -60,1 - 16939: -60,-4 - 16940: -59,-4 - 16941: -57,-4 - 16967: -50,9 - 16968: -49,11 - 16969: -48,11 + 16898: -53,3 + 16899: -52,3 + 16906: -53,7 + 16907: -52,7 + 16912: -53,3 + 16913: -52,3 + 16916: -49,3 + 16929: -50,-4 + 16930: -61,1 + 16931: -60,1 + 16937: -60,-4 + 16938: -59,-4 + 16939: -57,-4 + 16965: -50,9 + 16966: -49,11 + 16967: -48,11 + 16974: -56,9 + 16975: -56,9 16976: -56,9 - 16977: -56,9 - 16978: -56,9 - 16979: -57,9 - 16980: -58,9 - 16981: -58,9 - 16982: -59,9 - 17003: -58,-5 - 17006: -58,-11 - 17031: -60,-10 - 17032: -59,-10 - 17035: -58,-11 - 17044: -55,-9 - 17060: -53,-18 - 17061: -55,-18 - 17062: -57,-18 - 17063: -58,-18 - 17067: -61,-17 - 17082: -60,-15 - 17083: -59,-15 - 17084: -58,-15 - 17085: -57,-15 - 17086: -56,-15 - 17108: -49,-17 - 17109: -48,-17 - 17205: -58,16 - 17221: -65,14 - 17222: -64,14 - 17223: -63,14 + 16977: -57,9 + 16978: -58,9 + 16979: -58,9 + 16980: -59,9 + 17001: -58,-5 + 17004: -58,-11 + 17029: -60,-10 + 17030: -59,-10 + 17033: -58,-11 + 17042: -55,-9 + 17058: -53,-18 + 17059: -55,-18 + 17060: -57,-18 + 17061: -58,-18 + 17065: -61,-17 + 17080: -60,-15 + 17081: -59,-15 + 17082: -58,-15 + 17083: -57,-15 + 17084: -56,-15 + 17106: -49,-17 + 17107: -48,-17 + 17203: -58,16 + 17219: -65,14 + 17220: -64,14 + 17221: -63,14 + 17222: -62,14 + 17223: -62,14 17224: -62,14 - 17225: -62,14 - 17226: -62,14 - 17227: -61,14 - 17247: -75,14 - 17248: -74,14 - 17249: -73,14 - 17250: -71,14 - 17251: -70,14 - 17252: -69,14 - 17323: -59,17 - 17324: -60,17 - 17370: -48,-10 - 17371: -47,-10 - 17388: -64,-8 - 17389: -66,-8 - 17390: -67,-8 - 17391: -65,-8 - 17392: -68,-8 - 17393: -73,-8 - 17394: -72,-8 - 17419: -71,-5 - 17420: -69,-5 - 17434: -76,-10 - 17447: -11,-79 - 17451: 10,89 - 17452: 10,91 - 17455: 5,91 - 17468: 10,89 - 17511: 11,74 - 17563: -64,5 - 17564: -63,5 - 17635: -67,-4 - 17636: -68,-4 - 17637: -70,-4 - 17638: -72,-4 - 17639: -73,-4 - 17656: -71,-5 - 17657: -69,-5 - 17662: -73,3 - 17691: -73,10 - 17692: -71,10 - 17698: -72,13 - 17707: -82,14 - 17708: -81,14 - 17709: -80,14 - 17749: -77,8 - 17766: -77,12 - 17773: -77,2 - 17781: -77,-2 - 17822: -71,-9 - 17823: -70,-9 - 17824: -69,-9 - 17825: -72,-13 - 17826: -71,-13 - 17827: -70,-13 - 17828: -69,-13 - 17829: -68,-13 - 18206: -56,-4 - 18253: -55,17 - 18254: -54,17 - 18255: -54,17 - 18256: -52,17 - 18257: -53,17 + 17225: -61,14 + 17245: -75,14 + 17246: -74,14 + 17247: -73,14 + 17248: -71,14 + 17249: -70,14 + 17250: -69,14 + 17321: -59,17 + 17322: -60,17 + 17368: -48,-10 + 17369: -47,-10 + 17386: -64,-8 + 17387: -66,-8 + 17388: -67,-8 + 17389: -65,-8 + 17390: -68,-8 + 17391: -73,-8 + 17392: -72,-8 + 17417: -71,-5 + 17418: -69,-5 + 17432: -76,-10 + 17445: -11,-79 + 17449: 10,89 + 17450: 10,91 + 17453: 5,91 + 17466: 10,89 + 17509: 11,74 + 17561: -64,5 + 17562: -63,5 + 17633: -67,-4 + 17634: -68,-4 + 17635: -70,-4 + 17636: -72,-4 + 17637: -73,-4 + 17654: -71,-5 + 17655: -69,-5 + 17660: -73,3 + 17689: -73,10 + 17690: -71,10 + 17696: -72,13 + 17705: -82,14 + 17706: -81,14 + 17707: -80,14 + 17747: -77,8 + 17764: -77,12 + 17771: -77,2 + 17779: -77,-2 + 17820: -71,-9 + 17821: -70,-9 + 17822: -69,-9 + 17823: -72,-13 + 17824: -71,-13 + 17825: -70,-13 + 17826: -69,-13 + 17827: -68,-13 + 18204: -56,-4 + 18251: -55,17 + 18252: -54,17 + 18253: -54,17 + 18254: -52,17 + 18255: -53,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -15671,303 +15666,303 @@ entities: 864: 74,-47 1180: 45,-17 1181: 48,-17 - 2066: -21,52 - 2067: -17,52 - 2068: -19,53 - 2074: -19,49 - 2137: -19,33 - 2138: -19,30 - 2139: -19,37 - 2142: -21,35 - 2272: -23,42 - 2371: -29,30 - 2372: -30,30 - 2412: -30,39 - 2701: -10,52 - 2776: -11,50 - 2777: -10,50 - 2778: -6,50 - 2779: -5,50 - 2815: -6,32 - 3021: -13,58 - 3022: -12,58 - 3023: -11,58 - 3031: -19,65 - 3086: -13,69 - 3087: -12,69 - 3088: -11,69 - 3097: -5,65 - 3107: -6,69 - 3108: -6,69 - 3109: -4,69 - 3110: -5,69 - 3114: -6,58 - 3115: -5,58 - 3116: -4,58 - 3123: -20,58 - 3124: -19,58 - 3125: -18,58 - 3132: -20,69 - 3133: -19,69 - 3134: -18,69 - 3231: -12,76 - 3245: -12,96 - 3246: -12,83 - 3257: -12,89 - 3283: -30,76 - 3284: -30,83 - 3285: -30,89 - 3286: -30,96 - 3307: -31,69 - 3308: -30,69 - 3309: -29,69 - 3529: 0,69 - 3530: 1,69 - 3531: 2,69 - 3532: 5,69 - 3533: 6,69 - 3534: 7,69 - 3619: 6,76 - 3620: 6,76 - 3681: 6,83 - 3785: 0,58 - 3786: 1,58 - 3787: 2,58 - 3837: 20,69 - 5204: 17,13 - 5205: 17,20 - 5214: 17,-1 - 5215: 17,6 - 5230: -26,69 - 5231: -25,69 - 5232: -24,69 - 5504: -27,6 - 5505: -25,6 - 5506: -24,6 - 5507: -23,6 - 5508: -33,6 - 5509: -32,6 - 5510: -32,6 - 5511: -33,6 - 5512: -31,6 - 5513: -38,6 - 5514: -37,6 - 5515: -37,6 - 5516: -27,6 - 5517: -26,6 - 5518: -36,6 - 5519: -36,6 - 5586: -33,26 - 5587: -32,26 - 5588: -34,26 - 5597: -31,29 - 6240: -19,-11 - 6326: 17,-11 - 6361: -1,-17 - 6362: 0,-17 - 6363: 1,-17 - 6648: -31,-3 - 6649: -30,-3 - 6650: -28,-3 - 6651: -27,-3 - 6652: -26,-3 - 6653: -25,-3 - 6654: -23,-3 - 6655: -22,-3 - 6659: -33,3 - 6660: -32,3 - 6715: -24,-1 - 6731: -34,-16 - 6732: -33,-16 - 6733: -32,-16 - 6734: -31,-16 - 6735: -31,-16 - 6736: -30,-16 - 6745: -33,-10 - 6746: -32,-10 - 6750: -29,-16 - 6760: -34,-11 - 6761: -33,-11 - 6762: -32,-11 - 6763: -31,-11 - 6984: -25,-18 - 7009: -7,-19 - 7010: -6,-19 - 7011: -5,-19 - 7012: -12,-19 - 7013: -13,-19 - 7014: -13,-19 - 7015: -15,-19 - 7016: -14,-19 - 7017: 3,-19 - 7018: 4,-19 - 7019: 5,-19 - 7020: 5,-19 - 7021: 6,-19 - 7022: 10,-19 - 7023: 11,-19 - 7024: 12,-19 - 7025: 13,-19 - 7147: 21,6 - 7148: 23,6 - 7149: 24,6 - 7150: 22,6 - 7214: 28,6 - 7215: 29,6 - 7216: 30,6 - 7217: 31,6 - 8070: 58,-24 - 8071: 59,-24 - 8072: 60,-24 - 8073: 58,-11 - 8074: 59,-11 - 8075: 60,-11 - 8216: 39,-7 - 8217: 40,-7 - 8218: 40,-7 - 8241: 21,-10 - 8242: 22,-10 - 8243: 23,-10 - 8244: 24,-10 - 8245: 28,-10 - 8246: 29,-10 - 8247: 29,-10 - 8248: 30,-10 - 8249: 30,-10 - 8320: 36,-8 - 8321: 36,-8 - 8322: 37,-8 - 8323: 37,-8 - 8324: 38,-8 - 8325: 39,-8 - 8326: 39,-8 - 8327: 35,-8 - 8328: 35,-8 - 8411: 46,-13 - 8412: 46,-13 - 8462: 44,-19 - 8463: 45,-19 - 8464: 46,-19 - 8465: 47,-19 - 8466: 49,-19 - 8467: 50,-19 - 8468: 52,-19 - 8469: 51,-19 - 8691: -8,-75 - 8692: -7,-75 - 8693: -6,-75 - 8694: -3,-75 - 8695: -2,-75 - 8696: -1,-75 - 8697: -2,-79 - 8698: -1,-79 - 8699: -7,-79 - 8700: -8,-79 - 8763: 6,-24 - 8764: 7,-24 - 8765: 8,-24 - 8766: 9,-24 - 8767: 10,-24 - 8788: -11,-24 - 8789: -10,-24 - 8790: -9,-24 - 8791: -8,-24 - 8856: -1,-23 - 8894: -1,-30 - 8903: -12,-24 - 8939: -14,-28 - 8940: -14,-22 - 8941: -13,-22 - 8942: -7,-22 - 8943: -6,-22 - 8975: -7,-28 - 8976: -5,-28 - 9095: 4,-22 - 9096: 5,-22 - 9097: 11,-22 - 9098: 12,-22 - 9099: 12,-28 - 9100: 4,-28 - 9101: 3,-28 - 9429: -1,-51 - 9430: -1,-43 - 9431: -1,-38 - 9443: -1,-58 - 9444: -1,-58 - 9478: -3,-71 - 9489: 73,-52 - 10688: 73,-48 - 10689: 73,-41 - 10996: 41,-68 - 10997: 40,-68 - 12754: -42,23 - 15013: -16,24 - 15014: -15,24 - 15015: -14,24 - 15016: -14,24 - 15017: -13,24 - 15018: -6,24 - 15019: -5,24 - 15020: -4,24 - 15021: -3,24 - 15022: 1,24 - 15023: 2,24 - 15024: 3,24 - 15025: 4,24 - 15026: 11,24 - 15027: 12,24 - 15028: 13,24 - 15029: 14,24 - 15231: -8,-19 - 15460: -42,12 - 15461: -42,18 - 15462: -42,23 - 15611: 92,-5 - 15612: 93,-5 - 15613: 93,-5 - 15614: 94,-5 - 18788: -15,-8 - 18789: -14,-8 - 18790: -13,-8 - 18791: -12,-8 - 18792: -9,-8 - 18793: -8,-8 - 18794: -7,-8 - 18795: -6,-8 - 18796: -3,-8 - 18797: -2,-8 - 18798: -1,-8 - 18799: 1,-8 - 18800: 0,-8 - 18801: 4,-8 - 18802: 5,-8 - 18803: 6,-8 - 18804: 7,-8 - 18805: 10,-8 - 18806: 11,-8 - 18807: 12,-8 - 18808: 13,-8 - 19738: 35,-12 - 19739: 36,-12 - 19740: 37,-12 - 19741: 38,-12 - 19742: 39,-12 - 19743: 35,-9 - 19744: 36,-9 - 19745: 37,-9 - 19746: 38,-9 - 19747: 39,-9 - 20277: -19,20 - 20278: -19,13 - 20279: -19,6 - 20280: -19,-1 + 2064: -21,52 + 2065: -17,52 + 2066: -19,53 + 2072: -19,49 + 2135: -19,33 + 2136: -19,30 + 2137: -19,37 + 2140: -21,35 + 2270: -23,42 + 2369: -29,30 + 2370: -30,30 + 2410: -30,39 + 2699: -10,52 + 2774: -11,50 + 2775: -10,50 + 2776: -6,50 + 2777: -5,50 + 2813: -6,32 + 3019: -13,58 + 3020: -12,58 + 3021: -11,58 + 3029: -19,65 + 3084: -13,69 + 3085: -12,69 + 3086: -11,69 + 3095: -5,65 + 3105: -6,69 + 3106: -6,69 + 3107: -4,69 + 3108: -5,69 + 3112: -6,58 + 3113: -5,58 + 3114: -4,58 + 3121: -20,58 + 3122: -19,58 + 3123: -18,58 + 3130: -20,69 + 3131: -19,69 + 3132: -18,69 + 3229: -12,76 + 3243: -12,96 + 3244: -12,83 + 3255: -12,89 + 3281: -30,76 + 3282: -30,83 + 3283: -30,89 + 3284: -30,96 + 3305: -31,69 + 3306: -30,69 + 3307: -29,69 + 3527: 0,69 + 3528: 1,69 + 3529: 2,69 + 3530: 5,69 + 3531: 6,69 + 3532: 7,69 + 3617: 6,76 + 3618: 6,76 + 3679: 6,83 + 3783: 0,58 + 3784: 1,58 + 3785: 2,58 + 3835: 20,69 + 5202: 17,13 + 5203: 17,20 + 5212: 17,-1 + 5213: 17,6 + 5228: -26,69 + 5229: -25,69 + 5230: -24,69 + 5502: -27,6 + 5503: -25,6 + 5504: -24,6 + 5505: -23,6 + 5506: -33,6 + 5507: -32,6 + 5508: -32,6 + 5509: -33,6 + 5510: -31,6 + 5511: -38,6 + 5512: -37,6 + 5513: -37,6 + 5514: -27,6 + 5515: -26,6 + 5516: -36,6 + 5517: -36,6 + 5584: -33,26 + 5585: -32,26 + 5586: -34,26 + 5595: -31,29 + 6238: -19,-11 + 6324: 17,-11 + 6359: -1,-17 + 6360: 0,-17 + 6361: 1,-17 + 6646: -31,-3 + 6647: -30,-3 + 6648: -28,-3 + 6649: -27,-3 + 6650: -26,-3 + 6651: -25,-3 + 6652: -23,-3 + 6653: -22,-3 + 6657: -33,3 + 6658: -32,3 + 6713: -24,-1 + 6729: -34,-16 + 6730: -33,-16 + 6731: -32,-16 + 6732: -31,-16 + 6733: -31,-16 + 6734: -30,-16 + 6743: -33,-10 + 6744: -32,-10 + 6748: -29,-16 + 6758: -34,-11 + 6759: -33,-11 + 6760: -32,-11 + 6761: -31,-11 + 6982: -25,-18 + 7007: -7,-19 + 7008: -6,-19 + 7009: -5,-19 + 7010: -12,-19 + 7011: -13,-19 + 7012: -13,-19 + 7013: -15,-19 + 7014: -14,-19 + 7015: 3,-19 + 7016: 4,-19 + 7017: 5,-19 + 7018: 5,-19 + 7019: 6,-19 + 7020: 10,-19 + 7021: 11,-19 + 7022: 12,-19 + 7023: 13,-19 + 7145: 21,6 + 7146: 23,6 + 7147: 24,6 + 7148: 22,6 + 7212: 28,6 + 7213: 29,6 + 7214: 30,6 + 7215: 31,6 + 8068: 58,-24 + 8069: 59,-24 + 8070: 60,-24 + 8071: 58,-11 + 8072: 59,-11 + 8073: 60,-11 + 8214: 39,-7 + 8215: 40,-7 + 8216: 40,-7 + 8239: 21,-10 + 8240: 22,-10 + 8241: 23,-10 + 8242: 24,-10 + 8243: 28,-10 + 8244: 29,-10 + 8245: 29,-10 + 8246: 30,-10 + 8247: 30,-10 + 8318: 36,-8 + 8319: 36,-8 + 8320: 37,-8 + 8321: 37,-8 + 8322: 38,-8 + 8323: 39,-8 + 8324: 39,-8 + 8325: 35,-8 + 8326: 35,-8 + 8409: 46,-13 + 8410: 46,-13 + 8460: 44,-19 + 8461: 45,-19 + 8462: 46,-19 + 8463: 47,-19 + 8464: 49,-19 + 8465: 50,-19 + 8466: 52,-19 + 8467: 51,-19 + 8689: -8,-75 + 8690: -7,-75 + 8691: -6,-75 + 8692: -3,-75 + 8693: -2,-75 + 8694: -1,-75 + 8695: -2,-79 + 8696: -1,-79 + 8697: -7,-79 + 8698: -8,-79 + 8761: 6,-24 + 8762: 7,-24 + 8763: 8,-24 + 8764: 9,-24 + 8765: 10,-24 + 8786: -11,-24 + 8787: -10,-24 + 8788: -9,-24 + 8789: -8,-24 + 8854: -1,-23 + 8892: -1,-30 + 8901: -12,-24 + 8937: -14,-28 + 8938: -14,-22 + 8939: -13,-22 + 8940: -7,-22 + 8941: -6,-22 + 8973: -7,-28 + 8974: -5,-28 + 9093: 4,-22 + 9094: 5,-22 + 9095: 11,-22 + 9096: 12,-22 + 9097: 12,-28 + 9098: 4,-28 + 9099: 3,-28 + 9427: -1,-51 + 9428: -1,-43 + 9429: -1,-38 + 9441: -1,-58 + 9442: -1,-58 + 9476: -3,-71 + 9487: 73,-52 + 10686: 73,-48 + 10687: 73,-41 + 10994: 41,-68 + 10995: 40,-68 + 12752: -42,23 + 15011: -16,24 + 15012: -15,24 + 15013: -14,24 + 15014: -14,24 + 15015: -13,24 + 15016: -6,24 + 15017: -5,24 + 15018: -4,24 + 15019: -3,24 + 15020: 1,24 + 15021: 2,24 + 15022: 3,24 + 15023: 4,24 + 15024: 11,24 + 15025: 12,24 + 15026: 13,24 + 15027: 14,24 + 15229: -8,-19 + 15458: -42,12 + 15459: -42,18 + 15460: -42,23 + 15609: 92,-5 + 15610: 93,-5 + 15611: 93,-5 + 15612: 94,-5 + 18786: -15,-8 + 18787: -14,-8 + 18788: -13,-8 + 18789: -12,-8 + 18790: -9,-8 + 18791: -8,-8 + 18792: -7,-8 + 18793: -6,-8 + 18794: -3,-8 + 18795: -2,-8 + 18796: -1,-8 + 18797: 1,-8 + 18798: 0,-8 + 18799: 4,-8 + 18800: 5,-8 + 18801: 6,-8 + 18802: 7,-8 + 18803: 10,-8 + 18804: 11,-8 + 18805: 12,-8 + 18806: 13,-8 + 19736: 35,-12 + 19737: 36,-12 + 19738: 37,-12 + 19739: 38,-12 + 19740: 39,-12 + 19741: 35,-9 + 19742: 36,-9 + 19743: 37,-9 + 19744: 38,-9 + 19745: 39,-9 + 20275: -19,20 + 20276: -19,13 + 20277: -19,6 + 20278: -19,-1 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 4100: -19,13 - 4101: -19,20 + 4098: -19,13 + 4099: -19,20 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineW @@ -15977,328 +15972,328 @@ entities: color: '#8BC9DAFF' id: BrickTileWhiteLineW decals: - 17896: -50,22 - 17898: -49,20 - 17899: -49,19 - 17917: -55,38 - 17919: -56,33 - 17920: -56,34 - 17922: -57,36 - 17934: -45,23 - 17939: -45,23 - 17940: -51,37 - 17941: -50,39 - 17942: -50,40 - 17961: -43,51 - 17962: -45,51 - 17974: -46,57 - 17975: -47,54 - 17976: -47,53 - 17977: -47,52 - 17978: -47,51 - 17979: -47,51 - 17980: -47,50 - 17981: -47,49 - 17982: -47,49 - 17983: -47,47 - 17984: -47,47 - 17985: -47,48 - 17986: -47,46 - 17994: -46,41 - 18035: -60,47 - 18036: -60,46 - 18037: -60,46 - 18038: -60,45 - 18039: -60,49 - 18040: -60,51 - 18041: -60,52 - 18042: -60,53 - 18139: -54,22 - 18140: -54,21 - 18141: -54,20 - 18147: -51,21 + 17894: -50,22 + 17896: -49,20 + 17897: -49,19 + 17915: -55,38 + 17917: -56,33 + 17918: -56,34 + 17920: -57,36 + 17932: -45,23 + 17937: -45,23 + 17938: -51,37 + 17939: -50,39 + 17940: -50,40 + 17959: -43,51 + 17960: -45,51 + 17972: -46,57 + 17973: -47,54 + 17974: -47,53 + 17975: -47,52 + 17976: -47,51 + 17977: -47,51 + 17978: -47,50 + 17979: -47,49 + 17980: -47,49 + 17981: -47,47 + 17982: -47,47 + 17983: -47,48 + 17984: -47,46 + 17992: -46,41 + 18033: -60,47 + 18034: -60,46 + 18035: -60,46 + 18036: -60,45 + 18037: -60,49 + 18038: -60,51 + 18039: -60,52 + 18040: -60,53 + 18137: -54,22 + 18138: -54,21 + 18139: -54,20 + 18145: -51,21 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineW decals: - 18382: -38,48 - 18383: -38,48 + 18380: -38,48 + 18381: -38,48 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineW decals: - 9514: 11,-26 - 9515: 11,-25 - 9524: 16,-34 - 9525: 16,-33 - 9526: 16,-32 - 9527: 16,-30 - 9528: 16,-29 - 9529: 16,-28 - 9530: 16,-27 - 9570: 19,-27 - 9571: 19,-28 - 9674: 26,-52 - 9675: 26,-51 - 9676: 26,-50 - 9677: 26,-49 - 9678: 26,-48 - 9679: 26,-47 - 9680: 26,-46 - 9681: 26,-45 - 9682: 26,-43 - 9683: 26,-42 - 9684: 26,-41 - 9685: 26,-38 - 9702: 19,-36 - 9703: 19,-35 - 9704: 19,-34 - 9712: 16,-36 - 9717: 15,-35 - 9735: 10,-35 - 9740: 15,-35 - 9776: 29,-50 - 9777: 29,-44 - 9778: 29,-40 - 9783: 19,-40 - 9784: 19,-39 - 9785: 25,-39 - 9786: 25,-40 - 9787: 19,-44 - 9876: 18,-34 - 9877: 18,-33 - 9878: 18,-32 - 9879: 18,-32 - 9880: 18,-31 - 9881: 14,-35 - 9882: 28,-35 - 9883: 37,-35 - 9884: 28,-40 - 9885: 28,-42 - 9886: 28,-43 - 9887: 28,-43 - 9888: 28,-44 - 9889: 28,-47 - 9890: 28,-48 - 9891: 28,-49 - 9892: 28,-50 - 9893: 28,-50 - 9894: 28,-51 - 9895: 28,-51 - 9897: 18,-40 - 9898: 18,-41 - 9899: 18,-42 - 9900: 18,-43 - 9901: 18,-43 - 9902: 18,-44 - 9903: 18,-45 - 9904: 18,-45 - 9905: 16,-38 - 9906: 16,-41 - 9907: 16,-43 - 9908: 16,-45 - 9909: 16,-46 - 9968: 39,-35 - 9992: 30,-41 - 9993: 30,-39 - 10016: 37,-40 - 10049: 23,-29 - 10085: 28,-25 - 10086: 28,-26 - 10104: 28,-41 - 10106: 15,-39 - 10107: 15,-40 - 10115: 8,-39 - 10116: 8,-40 - 10138: 20,-48 - 10139: 20,-47 - 10171: 25,-44 - 10178: 20,-45 - 10196: 32,-48 - 10197: 32,-48 - 10198: 32,-50 - 10202: 32,-52 - 10238: 30,-52 - 10239: 30,-51 - 10240: 30,-49 - 10241: 30,-48 - 10350: 8,-44 - 10352: 3,-45 - 10353: 3,-46 - 10385: 14,-46 - 10387: 12,-44 - 10393: 15,-44 - 10620: 50,-33 - 10621: 50,-33 - 10624: 43,-34 - 10627: 43,-32 - 12385: -4,-60 - 15339: 16,-42 - 19400: 5,63 - 19428: -8,-61 - 19429: -8,-60 - 19430: -8,-59 - 19432: -4,-60 - 19763: 26,-31 - 19773: 20,-26 - 19777: 24,-28 + 9512: 11,-26 + 9513: 11,-25 + 9522: 16,-34 + 9523: 16,-33 + 9524: 16,-32 + 9525: 16,-30 + 9526: 16,-29 + 9527: 16,-28 + 9528: 16,-27 + 9568: 19,-27 + 9569: 19,-28 + 9672: 26,-52 + 9673: 26,-51 + 9674: 26,-50 + 9675: 26,-49 + 9676: 26,-48 + 9677: 26,-47 + 9678: 26,-46 + 9679: 26,-45 + 9680: 26,-43 + 9681: 26,-42 + 9682: 26,-41 + 9683: 26,-38 + 9700: 19,-36 + 9701: 19,-35 + 9702: 19,-34 + 9710: 16,-36 + 9715: 15,-35 + 9733: 10,-35 + 9738: 15,-35 + 9774: 29,-50 + 9775: 29,-44 + 9776: 29,-40 + 9781: 19,-40 + 9782: 19,-39 + 9783: 25,-39 + 9784: 25,-40 + 9785: 19,-44 + 9874: 18,-34 + 9875: 18,-33 + 9876: 18,-32 + 9877: 18,-32 + 9878: 18,-31 + 9879: 14,-35 + 9880: 28,-35 + 9881: 37,-35 + 9882: 28,-40 + 9883: 28,-42 + 9884: 28,-43 + 9885: 28,-43 + 9886: 28,-44 + 9887: 28,-47 + 9888: 28,-48 + 9889: 28,-49 + 9890: 28,-50 + 9891: 28,-50 + 9892: 28,-51 + 9893: 28,-51 + 9895: 18,-40 + 9896: 18,-41 + 9897: 18,-42 + 9898: 18,-43 + 9899: 18,-43 + 9900: 18,-44 + 9901: 18,-45 + 9902: 18,-45 + 9903: 16,-38 + 9904: 16,-41 + 9905: 16,-43 + 9906: 16,-45 + 9907: 16,-46 + 9966: 39,-35 + 9990: 30,-41 + 9991: 30,-39 + 10014: 37,-40 + 10047: 23,-29 + 10083: 28,-25 + 10084: 28,-26 + 10102: 28,-41 + 10104: 15,-39 + 10105: 15,-40 + 10113: 8,-39 + 10114: 8,-40 + 10136: 20,-48 + 10137: 20,-47 + 10169: 25,-44 + 10176: 20,-45 + 10194: 32,-48 + 10195: 32,-48 + 10196: 32,-50 + 10200: 32,-52 + 10236: 30,-52 + 10237: 30,-51 + 10238: 30,-49 + 10239: 30,-48 + 10348: 8,-44 + 10350: 3,-45 + 10351: 3,-46 + 10383: 14,-46 + 10385: 12,-44 + 10391: 15,-44 + 10618: 50,-33 + 10619: 50,-33 + 10622: 43,-34 + 10625: 43,-32 + 12383: -4,-60 + 15337: 16,-42 + 19398: 5,63 + 19426: -8,-61 + 19427: -8,-60 + 19428: -8,-59 + 19430: -4,-60 + 19761: 26,-31 + 19771: 20,-26 + 19775: 24,-28 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineW decals: - 2871: -24,48 - 2872: -24,47 - 2888: -32,45 - 2894: -34,47 - 2901: -34,51 - 2902: -34,52 - 2903: -34,53 - 2920: -24,50 - 2921: -24,51 - 2939: -31,47 - 2940: -31,48 - 2941: -31,49 - 2942: -31,50 - 2943: -31,51 - 2944: -31,52 - 2945: -31,53 - 2946: -29,53 - 2947: -29,52 - 2948: -29,51 - 2949: -29,50 - 2950: -29,49 - 2951: -29,47 - 2952: -29,48 - 2953: -27,47 - 2954: -27,48 - 2955: -27,49 - 2956: -27,50 - 2996: -36,49 - 3006: -38,47 - 18384: -38,48 - 18385: -38,49 - 18386: -38,50 - 18388: -38,45 - 18389: -38,46 - 18391: -27,53 + 2869: -24,48 + 2870: -24,47 + 2886: -32,45 + 2892: -34,47 + 2899: -34,51 + 2900: -34,52 + 2901: -34,53 + 2918: -24,50 + 2919: -24,51 + 2937: -31,47 + 2938: -31,48 + 2939: -31,49 + 2940: -31,50 + 2941: -31,51 + 2942: -31,52 + 2943: -31,53 + 2944: -29,53 + 2945: -29,52 + 2946: -29,51 + 2947: -29,50 + 2948: -29,49 + 2949: -29,47 + 2950: -29,48 + 2951: -27,47 + 2952: -27,48 + 2953: -27,49 + 2954: -27,50 + 2994: -36,49 + 3004: -38,47 + 18382: -38,48 + 18383: -38,49 + 18384: -38,50 + 18386: -38,45 + 18387: -38,46 + 18389: -27,53 - node: color: '#B18BDAFF' id: BrickTileWhiteLineW decals: - 5086: 19,31 - 5087: 19,29 - 5088: 19,27 - 5101: 28,31 - 5164: 38,29 - 11444: -22,-30 - 11445: -22,-29 - 11446: -22,-29 - 11447: -22,-28 - 11448: -22,-27 - 11449: -22,-27 - 11450: -22,-26 - 11477: -23,-35 - 11481: -13,-35 - 11482: -13,-35 - 11506: -13,-39 - 11507: -13,-40 - 11508: -13,-41 - 11509: -13,-42 - 11510: -13,-43 - 11511: -13,-47 - 11512: -13,-49 - 11513: -13,-49 - 11514: -13,-51 - 11515: -13,-52 - 11516: -13,-52 - 11517: -13,-53 - 11518: -13,-50 - 11519: -13,-50 - 11520: -13,-48 - 11521: -13,-48 - 11602: -21,-36 - 11603: -21,-35 - 11604: -21,-35 - 11605: -21,-34 - 11606: -21,-34 - 11616: -31,-35 - 11617: -24,-32 - 11618: -24,-31 - 11619: -24,-30 - 11620: -24,-30 - 11621: -24,-29 - 11622: -24,-28 - 11623: -24,-28 + 5084: 19,31 + 5085: 19,29 + 5086: 19,27 + 5099: 28,31 + 5162: 38,29 + 11442: -22,-30 + 11443: -22,-29 + 11444: -22,-29 + 11445: -22,-28 + 11446: -22,-27 + 11447: -22,-27 + 11448: -22,-26 + 11475: -23,-35 + 11479: -13,-35 + 11480: -13,-35 + 11504: -13,-39 + 11505: -13,-40 + 11506: -13,-41 + 11507: -13,-42 + 11508: -13,-43 + 11509: -13,-47 + 11510: -13,-49 + 11511: -13,-49 + 11512: -13,-51 + 11513: -13,-52 + 11514: -13,-52 + 11515: -13,-53 + 11516: -13,-50 + 11517: -13,-50 + 11518: -13,-48 + 11519: -13,-48 + 11600: -21,-36 + 11601: -21,-35 + 11602: -21,-35 + 11603: -21,-34 + 11604: -21,-34 + 11614: -31,-35 + 11615: -24,-32 + 11616: -24,-31 + 11617: -24,-30 + 11618: -24,-30 + 11619: -24,-29 + 11620: -24,-28 + 11621: -24,-28 + 11622: -24,-27 + 11623: -24,-27 11624: -24,-27 11625: -24,-27 - 11626: -24,-27 - 11627: -24,-27 - 11628: -24,-26 - 11629: -24,-25 - 11630: -24,-25 - 11644: -7,-26 - 11645: -7,-25 - 11646: -7,-25 - 11661: -11,-34 - 11662: -11,-35 - 11673: -4,-35 - 11686: -10,-31 - 11687: -10,-32 - 11688: -10,-32 - 11689: -10,-33 - 11690: -10,-33 - 11796: -12,-41 - 11797: -12,-41 - 11815: -15,-38 - 11816: -15,-39 - 11817: -15,-41 - 11818: -15,-42 - 11819: -15,-43 - 11820: -15,-44 - 11898: -34,-45 - 11899: -34,-44 - 11900: -34,-44 - 11901: -34,-43 - 11902: -34,-43 - 11903: -34,-42 - 11904: -34,-42 - 11905: -34,-41 - 11937: -27,-27 - 11938: -28,-29 - 11939: -27,-31 - 12083: -24,-24 - 12100: -21,-31 - 12101: -21,-26 - 12203: -23,-39 - 12204: -23,-40 - 12205: -23,-41 - 12217: -28,-39 - 12218: -28,-40 - 12219: -28,-41 - 12220: -15,-46 - 12221: -15,-47 - 12222: -15,-48 - 12223: -15,-49 - 12224: -17,-52 - 12225: -17,-53 - 12241: -12,-50 - 12253: -12,-59 - 12265: -20,-57 - 12300: -7,-48 - 12301: -7,-47 - 12308: -11,-51 - 12309: -11,-52 - 12315: -3,-48 - 12321: -17,-44 - 12322: -17,-43 - 12323: -17,-42 - 12324: -17,-41 - 12325: -17,-40 - 12642: -6,-32 - 12643: -6,-33 - 12644: -6,-34 - 20063: 33,38 - 20067: 37,39 + 11626: -24,-26 + 11627: -24,-25 + 11628: -24,-25 + 11642: -7,-26 + 11643: -7,-25 + 11644: -7,-25 + 11659: -11,-34 + 11660: -11,-35 + 11671: -4,-35 + 11684: -10,-31 + 11685: -10,-32 + 11686: -10,-32 + 11687: -10,-33 + 11688: -10,-33 + 11794: -12,-41 + 11795: -12,-41 + 11813: -15,-38 + 11814: -15,-39 + 11815: -15,-41 + 11816: -15,-42 + 11817: -15,-43 + 11818: -15,-44 + 11896: -34,-45 + 11897: -34,-44 + 11898: -34,-44 + 11899: -34,-43 + 11900: -34,-43 + 11901: -34,-42 + 11902: -34,-42 + 11903: -34,-41 + 11935: -27,-27 + 11936: -28,-29 + 11937: -27,-31 + 12081: -24,-24 + 12098: -21,-31 + 12099: -21,-26 + 12201: -23,-39 + 12202: -23,-40 + 12203: -23,-41 + 12215: -28,-39 + 12216: -28,-40 + 12217: -28,-41 + 12218: -15,-46 + 12219: -15,-47 + 12220: -15,-48 + 12221: -15,-49 + 12222: -17,-52 + 12223: -17,-53 + 12239: -12,-50 + 12251: -12,-59 + 12263: -20,-57 + 12298: -7,-48 + 12299: -7,-47 + 12306: -11,-51 + 12307: -11,-52 + 12313: -3,-48 + 12319: -17,-44 + 12320: -17,-43 + 12321: -17,-42 + 12322: -17,-41 + 12323: -17,-40 + 12640: -6,-32 + 12641: -6,-33 + 12642: -6,-34 + 20061: 33,38 + 20065: 37,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineW @@ -16308,252 +16303,252 @@ entities: color: '#CEDA8BFF' id: BrickTileWhiteLineW decals: - 10835: 29,-56 - 10837: 26,-57 - 10861: 34,-71 - 10862: 34,-70 - 10863: 34,-69 - 10864: 34,-67 - 10865: 34,-64 - 10866: 34,-63 - 10867: 34,-62 - 10883: 38,-61 - 10885: 38,-63 - 10904: 42,-62 - 10906: 37,-62 - 10921: 37,-70 - 10986: 30,-68 + 10833: 29,-56 + 10835: 26,-57 + 10859: 34,-71 + 10860: 34,-70 + 10861: 34,-69 + 10862: 34,-67 + 10863: 34,-64 + 10864: 34,-63 + 10865: 34,-62 + 10881: 38,-61 + 10883: 38,-63 + 10902: 42,-62 + 10904: 37,-62 + 10919: 37,-70 + 10984: 30,-68 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineW decals: - 7630: 64,-4 - 7635: 65,-3 - 7666: 71,13 - 19264: 68,15 - 19265: 68,14 - 19266: 68,13 - 19277: 60,-5 - 19278: 60,-4 - 21007: 71,13 + 7628: 64,-4 + 7633: 65,-3 + 7664: 71,13 + 19262: 68,15 + 19263: 68,14 + 19264: 68,13 + 19275: 60,-5 + 19276: 60,-4 + 21005: 71,13 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineW decals: - 3808: 10,69 - 3809: 10,67 - 3810: 10,66 - 3814: 13,67 - 3821: 13,67 - 3827: 13,67 + 3806: 10,69 + 3807: 10,67 + 3808: 10,66 + 3812: 13,67 + 3819: 13,67 + 3825: 13,67 - node: color: '#DAA58BFF' id: BrickTileWhiteLineW decals: - 4373: 2,30 - 4374: 2,28 - 4375: 2,27 - 4398: 2,34 - 4399: 2,35 - 4400: 2,36 - 4419: 11,30 - 4420: 11,28 - 4430: 9,28 - 4431: 9,29 - 4450: 15,29 - 4451: 15,30 - 4452: 15,31 - 4463: 12,27 - 4468: 15,32 - 4492: 17,27 - 4493: 17,28 - 4494: 17,29 - 4495: 17,30 - 4496: 17,31 - 4530: 12,36 - 4531: 12,35 - 4541: 4,41 - 4542: 4,42 - 4566: 9,45 - 4567: 9,44 - 4568: 9,43 - 4581: 13,38 - 4582: 13,37 - 4588: 13,34 - 4614: 12,43 - 4615: 12,45 - 4616: 13,40 - 4617: 13,41 - 4618: 13,42 - 4619: 13,44 - 4622: 15,47 - 4643: 19,31 - 4644: 19,30 - 4645: 19,29 - 4646: 19,28 - 4647: 19,27 - 4678: 28,31 - 4690: 27,29 - 4691: 27,29 - 4692: 27,30 - 4693: 27,28 - 4707: 26,29 - 4711: 22,29 - 4736: 23,36 - 4740: 24,37 - 4741: 24,35 - 4761: 28,35 - 4762: 28,36 - 4763: 28,37 - 4778: 20,36 - 4801: 27,41 - 4802: 27,42 - 4803: 27,43 - 4818: 10,35 - 4872: 34,50 - 4880: 33,49 - 4881: 33,51 - 4883: 39,51 - 4925: 9,53 - 4926: 9,52 - 4927: 9,51 - 4928: 9,50 - 4929: 9,49 - 4937: 14,49 - 4938: 14,50 - 4943: 14,53 - 4944: 14,52 - 4992: 23,43 - 4993: 23,45 - 4994: 23,47 - 4995: 23,49 - 4996: 23,51 - 5006: 18,41 - 5007: 18,43 - 5008: 18,45 - 5038: 23,41 - 5082: 39,49 - 5083: 39,51 - 5084: 39,48 - 5085: 39,52 - 5174: 38,29 - 5176: 33,37 - 11373: -11,-82 - 11374: -11,-81 - 11375: -11,-80 - 14427: -46,14 - 14428: -46,12 - 15378: -49,9 + 4371: 2,30 + 4372: 2,28 + 4373: 2,27 + 4396: 2,34 + 4397: 2,35 + 4398: 2,36 + 4417: 11,30 + 4418: 11,28 + 4428: 9,28 + 4429: 9,29 + 4448: 15,29 + 4449: 15,30 + 4450: 15,31 + 4461: 12,27 + 4466: 15,32 + 4490: 17,27 + 4491: 17,28 + 4492: 17,29 + 4493: 17,30 + 4494: 17,31 + 4528: 12,36 + 4529: 12,35 + 4539: 4,41 + 4540: 4,42 + 4564: 9,45 + 4565: 9,44 + 4566: 9,43 + 4579: 13,38 + 4580: 13,37 + 4586: 13,34 + 4612: 12,43 + 4613: 12,45 + 4614: 13,40 + 4615: 13,41 + 4616: 13,42 + 4617: 13,44 + 4620: 15,47 + 4641: 19,31 + 4642: 19,30 + 4643: 19,29 + 4644: 19,28 + 4645: 19,27 + 4676: 28,31 + 4688: 27,29 + 4689: 27,29 + 4690: 27,30 + 4691: 27,28 + 4705: 26,29 + 4709: 22,29 + 4734: 23,36 + 4738: 24,37 + 4739: 24,35 + 4759: 28,35 + 4760: 28,36 + 4761: 28,37 + 4776: 20,36 + 4799: 27,41 + 4800: 27,42 + 4801: 27,43 + 4816: 10,35 + 4870: 34,50 + 4878: 33,49 + 4879: 33,51 + 4881: 39,51 + 4923: 9,53 + 4924: 9,52 + 4925: 9,51 + 4926: 9,50 + 4927: 9,49 + 4935: 14,49 + 4936: 14,50 + 4941: 14,53 + 4942: 14,52 + 4990: 23,43 + 4991: 23,45 + 4992: 23,47 + 4993: 23,49 + 4994: 23,51 + 5004: 18,41 + 5005: 18,43 + 5006: 18,45 + 5036: 23,41 + 5080: 39,49 + 5081: 39,51 + 5082: 39,48 + 5083: 39,52 + 5172: 38,29 + 5174: 33,37 + 11371: -11,-82 + 11372: -11,-81 + 11373: -11,-80 + 14425: -46,14 + 14426: -46,12 + 15376: -49,9 - node: color: '#DABC8BFF' id: BrickTileWhiteLineW decals: - 4011: -40,53 - 9587: 2,-31 - 9607: 3,-34 - 9608: 3,-33 - 9615: 7,-34 - 9616: 7,-33 - 9617: 7,-32 - 9633: 9,-36 - 9634: 9,-34 + 4009: -40,53 + 9585: 2,-31 + 9605: 3,-34 + 9606: 3,-33 + 9613: 7,-34 + 9614: 7,-33 + 9615: 7,-32 + 9631: 9,-36 + 9632: 9,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 16905: -53,4 - 16906: -53,5 - 16907: -53,6 - 16919: -48,1 - 16934: -59,0 - 16936: -61,-2 - 16937: -61,-3 - 16984: -59,11 - 16985: -59,12 - 16986: -59,13 - 16990: -55,16 - 17000: -62,1 - 17010: -62,-7 - 17018: -56,-9 - 17029: -61,-8 - 17030: -61,-9 - 17043: -55,-8 - 17045: -54,-10 - 17046: -54,-11 - 17047: -54,-6 - 17048: -54,-5 - 17070: -60,-17 - 17076: -61,-13 - 17077: -61,-14 - 17092: -51,-15 - 17103: -59,-16 - 17104: -50,-16 - 17105: -50,-17 - 17120: -50,-14 - 17121: -50,-13 - 17192: -46,12 - 17193: -46,14 - 17228: -60,14 - 17230: -67,15 - 17244: -78,15 - 17326: -61,18 - 17327: -61,19 - 17338: -50,-9 - 17339: -50,-8 - 17340: -50,-7 - 17376: -50,-9 - 17377: -50,-8 - 17378: -50,-7 - 17379: -56,-7 - 17385: -62,-7 - 17424: -74,-6 - 17425: -74,-7 - 17426: -74,-8 - 17430: -77,-7 - 17431: -77,-8 - 17432: -77,-9 - 17444: -11,-82 - 17445: -11,-81 - 17446: -11,-80 - 17449: 13,78 - 17450: 12,87 - 17459: 5,92 - 17460: 10,90 - 17477: 5,88 - 17478: 5,89 - 17479: 5,90 - 17488: 9,85 - 17489: 9,86 - 17490: 9,87 - 17493: 12,87 - 17494: 10,82 - 17495: 10,79 - 17496: 10,78 - 17497: 10,77 - 17518: 13,78 - 17557: -65,6 - 17558: -65,7 - 17559: -65,8 - 17560: -65,9 - 17620: -65,1 - 17640: -74,-3 - 17641: -74,-2 - 17642: -74,-1 - 17643: -74,1 - 17660: -65,1 - 17737: -78,6 - 17738: -78,5 - 17739: -78,4 - 17763: -77,9 - 17764: -77,10 - 17765: -77,11 - 17789: -75,0 - 17832: -73,-11 - 17833: -73,-12 - 17849: -55,17 - 18209: -51,-3 - 18210: -51,-2 - 19938: -48,-3 + 16903: -53,4 + 16904: -53,5 + 16905: -53,6 + 16917: -48,1 + 16932: -59,0 + 16934: -61,-2 + 16935: -61,-3 + 16982: -59,11 + 16983: -59,12 + 16984: -59,13 + 16988: -55,16 + 16998: -62,1 + 17008: -62,-7 + 17016: -56,-9 + 17027: -61,-8 + 17028: -61,-9 + 17041: -55,-8 + 17043: -54,-10 + 17044: -54,-11 + 17045: -54,-6 + 17046: -54,-5 + 17068: -60,-17 + 17074: -61,-13 + 17075: -61,-14 + 17090: -51,-15 + 17101: -59,-16 + 17102: -50,-16 + 17103: -50,-17 + 17118: -50,-14 + 17119: -50,-13 + 17190: -46,12 + 17191: -46,14 + 17226: -60,14 + 17228: -67,15 + 17242: -78,15 + 17324: -61,18 + 17325: -61,19 + 17336: -50,-9 + 17337: -50,-8 + 17338: -50,-7 + 17374: -50,-9 + 17375: -50,-8 + 17376: -50,-7 + 17377: -56,-7 + 17383: -62,-7 + 17422: -74,-6 + 17423: -74,-7 + 17424: -74,-8 + 17428: -77,-7 + 17429: -77,-8 + 17430: -77,-9 + 17442: -11,-82 + 17443: -11,-81 + 17444: -11,-80 + 17447: 13,78 + 17448: 12,87 + 17457: 5,92 + 17458: 10,90 + 17475: 5,88 + 17476: 5,89 + 17477: 5,90 + 17486: 9,85 + 17487: 9,86 + 17488: 9,87 + 17491: 12,87 + 17492: 10,82 + 17493: 10,79 + 17494: 10,78 + 17495: 10,77 + 17516: 13,78 + 17555: -65,6 + 17556: -65,7 + 17557: -65,8 + 17558: -65,9 + 17618: -65,1 + 17638: -74,-3 + 17639: -74,-2 + 17640: -74,-1 + 17641: -74,1 + 17658: -65,1 + 17735: -78,6 + 17736: -78,5 + 17737: -78,4 + 17761: -77,9 + 17762: -77,10 + 17763: -77,11 + 17787: -75,0 + 17830: -73,-11 + 17831: -73,-12 + 17847: -55,17 + 18207: -51,-3 + 18208: -51,-2 + 19936: -48,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -16569,322 +16564,322 @@ entities: 978: 2,-14 1177: 44,-15 1178: 44,-16 - 2059: -15,50 - 2060: -15,49 - 2061: -15,48 - 2069: -18,52 - 2070: -18,51 - 2071: -18,50 - 2075: -18,48 - 2076: -18,47 - 2077: -18,46 - 2078: -20,47 - 2079: -20,48 - 2080: -20,49 - 2081: -20,51 - 2123: -18,36 - 2124: -18,35 - 2125: -18,34 - 2126: -18,32 - 2127: -18,31 - 2128: -18,29 - 2129: -18,28 - 2130: -18,27 - 2131: -20,29 - 2132: -20,30 - 2133: -20,31 - 2134: -20,32 - 2135: -20,33 - 2136: -20,34 - 2267: -22,41 - 2360: -28,37 - 2361: -28,36 - 2362: -28,34 - 2363: -28,35 - 2364: -28,33 - 2365: -28,32 - 2375: -31,30 - 2376: -31,31 - 2709: -13,53 - 2780: -9,49 - 2781: -4,49 - 3020: -10,57 - 3027: -18,61 - 3028: -18,62 - 3029: -18,63 - 3030: -18,64 - 3099: -4,61 - 3100: -4,62 - 3101: -4,63 - 3102: -4,64 - 3103: -3,57 - 3111: -3,68 - 3113: -10,68 - 3126: -17,57 - 3135: -17,68 - 3226: -11,72 - 3227: -11,73 - 3228: -11,74 - 3229: -11,75 - 3237: -11,79 - 3238: -11,80 - 3239: -11,81 - 3240: -11,82 - 3241: -11,92 - 3242: -11,93 - 3243: -11,94 - 3244: -11,95 - 3263: -11,88 - 3264: -11,88 - 3265: -11,87 - 3266: -11,86 - 3267: -11,85 - 3287: -29,95 - 3288: -29,94 - 3289: -29,93 - 3290: -29,92 - 3291: -29,88 - 3292: -29,87 - 3293: -29,86 - 3294: -29,85 - 3295: -29,82 - 3296: -29,81 - 3297: -29,80 - 3298: -29,79 - 3299: -29,75 - 3300: -29,74 - 3301: -29,73 - 3302: -29,72 - 3314: -28,68 - 3528: 3,68 - 3535: 8,68 - 3621: 7,75 - 3672: 7,72 - 3673: 7,73 - 3674: 7,79 - 3675: 7,80 - 3676: 7,81 - 3783: 3,57 - 3830: 17,69 - 4159: -25,22 - 5189: 18,16 - 5190: 18,17 - 5191: 18,18 - 5192: 18,19 - 5193: 18,12 - 5194: 18,12 - 5195: 18,11 - 5196: 18,10 - 5197: 18,9 - 5216: 18,3 - 5217: 18,4 - 5218: 18,2 - 5219: 18,-2 - 5220: 18,-3 - 5221: 18,-4 - 5222: 18,-5 - 5233: -23,68 - 5523: -35,5 - 5524: -30,5 - 5525: -22,5 - 5589: -34,27 - 5590: -34,28 - 6241: -18,-12 - 6242: -18,-13 - 6243: -18,-14 - 6244: -18,-15 - 6245: -18,-16 - 6246: -18,-17 - 6328: 18,-17 - 6329: 18,-16 - 6330: 18,-15 - 6331: 18,-14 - 6332: 18,-13 - 6333: 18,-12 - 6354: -2,-14 - 6355: -2,-15 - 6364: 2,-17 - 6656: -21,-3 - 6657: -21,-2 - 6658: -21,-2 - 6661: -33,2 - 6662: -33,1 - 6663: -33,0 - 6664: -33,-1 - 6665: -33,-2 - 6666: -33,-3 - 6667: -33,-4 - 6668: -33,-5 - 6669: -33,-6 - 6670: -33,-7 - 6671: -33,-8 - 6672: -33,-9 - 6701: -31,1 - 6738: -35,-15 - 6739: -35,-14 - 6740: -35,-14 - 6741: -35,-13 - 6742: -35,-12 - 6764: -30,-12 - 6765: -30,-13 - 6766: -30,-14 - 6767: -30,-14 - 6768: -30,-15 - 6988: -26,-17 - 6989: -26,-16 - 6990: -26,-16 - 6991: -22,-17 - 6992: -22,-17 - 6993: -22,-16 - 7026: 7,-20 - 7027: -4,-20 - 7028: -11,-20 - 7033: 14,-20 - 7034: 18,5 - 7145: 25,5 - 7212: 32,5 - 8044: 62,-15 - 8045: 62,-14 - 8046: 62,-13 - 8047: 58,-14 - 8048: 58,-27 - 8049: 60,-27 - 8050: 62,-28 - 8051: 62,-27 - 8052: 62,-26 - 8061: 60,-14 - 8263: 31,-11 - 8264: 25,-11 - 8265: 25,-11 - 8274: 41,-14 + 2057: -15,50 + 2058: -15,49 + 2059: -15,48 + 2067: -18,52 + 2068: -18,51 + 2069: -18,50 + 2073: -18,48 + 2074: -18,47 + 2075: -18,46 + 2076: -20,47 + 2077: -20,48 + 2078: -20,49 + 2079: -20,51 + 2121: -18,36 + 2122: -18,35 + 2123: -18,34 + 2124: -18,32 + 2125: -18,31 + 2126: -18,29 + 2127: -18,28 + 2128: -18,27 + 2129: -20,29 + 2130: -20,30 + 2131: -20,31 + 2132: -20,32 + 2133: -20,33 + 2134: -20,34 + 2265: -22,41 + 2358: -28,37 + 2359: -28,36 + 2360: -28,34 + 2361: -28,35 + 2362: -28,33 + 2363: -28,32 + 2373: -31,30 + 2374: -31,31 + 2707: -13,53 + 2778: -9,49 + 2779: -4,49 + 3018: -10,57 + 3025: -18,61 + 3026: -18,62 + 3027: -18,63 + 3028: -18,64 + 3097: -4,61 + 3098: -4,62 + 3099: -4,63 + 3100: -4,64 + 3101: -3,57 + 3109: -3,68 + 3111: -10,68 + 3124: -17,57 + 3133: -17,68 + 3224: -11,72 + 3225: -11,73 + 3226: -11,74 + 3227: -11,75 + 3235: -11,79 + 3236: -11,80 + 3237: -11,81 + 3238: -11,82 + 3239: -11,92 + 3240: -11,93 + 3241: -11,94 + 3242: -11,95 + 3261: -11,88 + 3262: -11,88 + 3263: -11,87 + 3264: -11,86 + 3265: -11,85 + 3285: -29,95 + 3286: -29,94 + 3287: -29,93 + 3288: -29,92 + 3289: -29,88 + 3290: -29,87 + 3291: -29,86 + 3292: -29,85 + 3293: -29,82 + 3294: -29,81 + 3295: -29,80 + 3296: -29,79 + 3297: -29,75 + 3298: -29,74 + 3299: -29,73 + 3300: -29,72 + 3312: -28,68 + 3526: 3,68 + 3533: 8,68 + 3619: 7,75 + 3670: 7,72 + 3671: 7,73 + 3672: 7,79 + 3673: 7,80 + 3674: 7,81 + 3781: 3,57 + 3828: 17,69 + 4157: -25,22 + 5187: 18,16 + 5188: 18,17 + 5189: 18,18 + 5190: 18,19 + 5191: 18,12 + 5192: 18,12 + 5193: 18,11 + 5194: 18,10 + 5195: 18,9 + 5214: 18,3 + 5215: 18,4 + 5216: 18,2 + 5217: 18,-2 + 5218: 18,-3 + 5219: 18,-4 + 5220: 18,-5 + 5231: -23,68 + 5521: -35,5 + 5522: -30,5 + 5523: -22,5 + 5587: -34,27 + 5588: -34,28 + 6239: -18,-12 + 6240: -18,-13 + 6241: -18,-14 + 6242: -18,-15 + 6243: -18,-16 + 6244: -18,-17 + 6326: 18,-17 + 6327: 18,-16 + 6328: 18,-15 + 6329: 18,-14 + 6330: 18,-13 + 6331: 18,-12 + 6352: -2,-14 + 6353: -2,-15 + 6362: 2,-17 + 6654: -21,-3 + 6655: -21,-2 + 6656: -21,-2 + 6659: -33,2 + 6660: -33,1 + 6661: -33,0 + 6662: -33,-1 + 6663: -33,-2 + 6664: -33,-3 + 6665: -33,-4 + 6666: -33,-5 + 6667: -33,-6 + 6668: -33,-7 + 6669: -33,-8 + 6670: -33,-9 + 6699: -31,1 + 6736: -35,-15 + 6737: -35,-14 + 6738: -35,-14 + 6739: -35,-13 + 6740: -35,-12 + 6762: -30,-12 + 6763: -30,-13 + 6764: -30,-14 + 6765: -30,-14 + 6766: -30,-15 + 6986: -26,-17 + 6987: -26,-16 + 6988: -26,-16 + 6989: -22,-17 + 6990: -22,-17 + 6991: -22,-16 + 7024: 7,-20 + 7025: -4,-20 + 7026: -11,-20 + 7031: 14,-20 + 7032: 18,5 + 7143: 25,5 + 7210: 32,5 + 8042: 62,-15 + 8043: 62,-14 + 8044: 62,-13 + 8045: 58,-14 + 8046: 58,-27 + 8047: 60,-27 + 8048: 62,-28 + 8049: 62,-27 + 8050: 62,-26 + 8059: 60,-14 + 8261: 31,-11 + 8262: 25,-11 + 8263: 25,-11 + 8272: 41,-14 + 8273: 41,-12 + 8274: 41,-12 8275: 41,-12 - 8276: 41,-12 - 8277: 41,-12 - 8278: 41,-10 - 8279: 41,-11 - 8329: 41,-13 - 8330: 41,-13 - 8470: 48,-20 - 8471: 53,-20 - 8472: 53,-20 - 8709: 0,-76 - 8710: 0,-80 - 8714: -3,-78 - 8770: 11,-25 - 8771: 11,-26 - 8785: -7,-26 - 8786: -7,-25 - 8787: -7,-25 - 8851: 0,-27 - 8852: 0,-26 - 8853: 0,-25 - 8854: 0,-24 - 8896: 0,-35 - 8897: 0,-34 - 8898: 0,-34 - 8899: 0,-33 - 8900: 0,-32 - 8901: 0,-31 - 8902: 0,-31 - 8944: -3,-25 - 8945: -3,-25 - 8946: -3,-26 - 8979: -16,-26 - 8980: -16,-25 - 9109: 2,-24 - 9412: 0,-50 - 9413: 0,-49 - 9414: 0,-49 - 9415: 0,-45 - 9416: 0,-46 - 9417: 0,-48 - 9418: 0,-48 - 9419: 0,-47 - 9420: 0,-42 - 9421: 0,-41 - 9422: 0,-40 - 9423: 0,-40 - 9424: 0,-39 - 9425: 0,-52 - 9426: 0,-53 - 9427: 0,-54 - 9428: 0,-55 - 9432: 0,-44 - 9440: 0,-61 - 9441: 0,-60 - 9442: 0,-59 - 9466: -5,-73 - 9467: -5,-72 - 9468: -2,-69 - 9469: -2,-70 - 9470: -2,-71 - 9490: 72,-51 - 9549: 15,-26 - 9550: 15,-25 - 10691: 76,-45 - 12755: -41,22 - 13492: -41,-63 - 14892: -20,50 - 14992: -12,23 - 14993: -2,23 - 14994: 5,23 - 14995: 15,23 - 15363: -6,-70 - 15438: -41,21 - 15439: -41,20 - 15440: -41,17 - 15441: -41,16 - 15442: -41,15 - 15443: -41,14 - 15444: -41,11 - 15445: -41,10 - 15446: -41,9 - 15488: 0,-79 - 15489: 0,-78 - 15490: 0,-77 - 15607: 91,-4 - 15608: 91,-3 - 15619: 96,-3 - 17538: 7,82 - 17546: 7,74 - 18816: -11,-9 - 18817: -5,-9 - 18818: 2,-9 - 18819: 8,-9 - 18847: 14,-9 - 19756: 40,-10 - 19757: 40,-11 - 19758: 40,-13 - 19759: 40,-14 - 20261: -18,-5 - 20262: -18,-4 - 20263: -18,-3 - 20264: -18,-2 - 20265: -18,2 - 20266: -18,3 - 20267: -18,4 - 20268: -18,5 - 20269: -18,9 - 20270: -18,10 - 20271: -18,11 - 20272: -18,12 - 20273: -18,16 - 20274: -18,17 - 20275: -18,18 - 20276: -18,19 + 8276: 41,-10 + 8277: 41,-11 + 8327: 41,-13 + 8328: 41,-13 + 8468: 48,-20 + 8469: 53,-20 + 8470: 53,-20 + 8707: 0,-76 + 8708: 0,-80 + 8712: -3,-78 + 8768: 11,-25 + 8769: 11,-26 + 8783: -7,-26 + 8784: -7,-25 + 8785: -7,-25 + 8849: 0,-27 + 8850: 0,-26 + 8851: 0,-25 + 8852: 0,-24 + 8894: 0,-35 + 8895: 0,-34 + 8896: 0,-34 + 8897: 0,-33 + 8898: 0,-32 + 8899: 0,-31 + 8900: 0,-31 + 8942: -3,-25 + 8943: -3,-25 + 8944: -3,-26 + 8977: -16,-26 + 8978: -16,-25 + 9107: 2,-24 + 9410: 0,-50 + 9411: 0,-49 + 9412: 0,-49 + 9413: 0,-45 + 9414: 0,-46 + 9415: 0,-48 + 9416: 0,-48 + 9417: 0,-47 + 9418: 0,-42 + 9419: 0,-41 + 9420: 0,-40 + 9421: 0,-40 + 9422: 0,-39 + 9423: 0,-52 + 9424: 0,-53 + 9425: 0,-54 + 9426: 0,-55 + 9430: 0,-44 + 9438: 0,-61 + 9439: 0,-60 + 9440: 0,-59 + 9464: -5,-73 + 9465: -5,-72 + 9466: -2,-69 + 9467: -2,-70 + 9468: -2,-71 + 9488: 72,-51 + 9547: 15,-26 + 9548: 15,-25 + 10689: 76,-45 + 12753: -41,22 + 13490: -41,-63 + 14890: -20,50 + 14990: -12,23 + 14991: -2,23 + 14992: 5,23 + 14993: 15,23 + 15361: -6,-70 + 15436: -41,21 + 15437: -41,20 + 15438: -41,17 + 15439: -41,16 + 15440: -41,15 + 15441: -41,14 + 15442: -41,11 + 15443: -41,10 + 15444: -41,9 + 15486: 0,-79 + 15487: 0,-78 + 15488: 0,-77 + 15605: 91,-4 + 15606: 91,-3 + 15617: 96,-3 + 17536: 7,82 + 17544: 7,74 + 18814: -11,-9 + 18815: -5,-9 + 18816: 2,-9 + 18817: 8,-9 + 18845: 14,-9 + 19754: 40,-10 + 19755: 40,-11 + 19756: 40,-13 + 19757: 40,-14 + 20259: -18,-5 + 20260: -18,-4 + 20261: -18,-3 + 20262: -18,-2 + 20263: -18,2 + 20264: -18,3 + 20265: -18,4 + 20266: -18,5 + 20267: -18,9 + 20268: -18,10 + 20269: -18,11 + 20270: -18,12 + 20271: -18,16 + 20272: -18,17 + 20273: -18,18 + 20274: -18,19 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 4092: -18,19 - 4093: -18,18 - 4094: -18,17 - 4095: -18,16 - 4096: -18,11 - 4097: -18,10 - 4098: -18,9 - 4099: -18,12 + 4090: -18,19 + 4091: -18,18 + 4092: -18,17 + 4093: -18,16 + 4094: -18,11 + 4095: -18,10 + 4096: -18,9 + 4097: -18,12 - node: color: '#FFFFFFFF' id: BushAThree @@ -16895,7 +16890,7 @@ entities: color: '#FFFFFFFF' id: BushCThree decals: - 2848: -33,41 + 2846: -33,41 - node: color: '#FFFFFFFF' id: Busha1 @@ -16921,7 +16916,7 @@ entities: color: '#FFFFFFFF' id: Bushb2 decals: - 15537: 73,-20 + 15535: 73,-20 - node: color: '#FFFFFFFF' id: Bushb3 @@ -16977,7 +16972,7 @@ entities: id: Caution decals: 846: 92,26 - 13299: -58,22 + 13297: -58,22 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -16991,51 +16986,51 @@ entities: color: '#FFFFFFFF' id: Caution decals: + 13294: -58,25 + 13295: -58,25 13296: -58,25 - 13297: -58,25 - 13298: -58,25 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 19363: 54.897575,4.5646844 + 19361: 54.897575,4.5646844 - node: color: '#3EB38896' id: CheckerNESW decals: - 14009: -68,56 - 14010: -67,56 - 14011: -68,55 - 14012: -68,54 - 14013: -67,54 - 14014: -67,55 - 14015: -66,56 - 14016: -66,55 - 14017: -66,54 - 14018: -65,54 - 14019: -65,55 - 14020: -65,56 - 14021: -64,54 - 14022: -64,55 - 14023: -64,56 - 14024: -63,56 - 14025: -63,55 - 14026: -63,54 - 14027: -62,54 - 14028: -62,55 - 14029: -62,56 - 14030: -62,57 - 14031: -63,57 - 14032: -63,58 - 14033: -62,58 - 14034: -62,59 - 14035: -63,59 - 14036: -63,60 - 14037: -62,60 - 14038: -62,61 - 14039: -63,61 - 14040: -70,55 + 14007: -68,56 + 14008: -67,56 + 14009: -68,55 + 14010: -68,54 + 14011: -67,54 + 14012: -67,55 + 14013: -66,56 + 14014: -66,55 + 14015: -66,54 + 14016: -65,54 + 14017: -65,55 + 14018: -65,56 + 14019: -64,54 + 14020: -64,55 + 14021: -64,56 + 14022: -63,56 + 14023: -63,55 + 14024: -63,54 + 14025: -62,54 + 14026: -62,55 + 14027: -62,56 + 14028: -62,57 + 14029: -63,57 + 14030: -63,58 + 14031: -62,58 + 14032: -62,59 + 14033: -63,59 + 14034: -63,60 + 14035: -62,60 + 14036: -62,61 + 14037: -63,61 + 14038: -70,55 - node: color: '#808080FF' id: CheckerNESW @@ -17052,499 +17047,499 @@ entities: color: '#9D9D97FF' id: CheckerNWSE decals: - 2640: 2,52 - 2641: 2,50 - 2642: 2,51 - 2643: 2,51 - 2644: 1,51 - 2645: 1,50 - 2646: 0,50 - 2647: -1,50 - 2648: -1,51 - 2649: 0,51 - 2650: 0,52 - 2651: -1,54 - 2652: 0,53 - 2653: -1,53 - 2654: 0,54 - 2655: 1,53 - 2656: 2,53 - 2657: 3,54 - 2658: 3,50 - 2659: 3,51 - 2660: 3,52 - 2661: 3,53 - 2662: 1,52 - 2663: -1,52 + 2638: 2,52 + 2639: 2,50 + 2640: 2,51 + 2641: 2,51 + 2642: 1,51 + 2643: 1,50 + 2644: 0,50 + 2645: -1,50 + 2646: -1,51 + 2647: 0,51 + 2648: 0,52 + 2649: -1,54 + 2650: 0,53 + 2651: -1,53 + 2652: 0,54 + 2653: 1,53 + 2654: 2,53 + 2655: 3,54 + 2656: 3,50 + 2657: 3,51 + 2658: 3,52 + 2659: 3,53 + 2660: 1,52 + 2661: -1,52 - node: color: '#DA8BC9FF' id: CheckerNWSE decals: - 16146: -67,-46 - 16147: -66,-46 - 16148: -66,-47 - 16149: -66,-48 - 16150: -65,-47 - 16151: -65,-48 - 16152: -64,-48 - 16153: -64,-47 - 16154: -64,-46 - 16155: -65,-46 - 16156: -63,-46 - 16157: -62,-46 - 16158: -62,-47 - 16159: -62,-48 - 16160: -63,-45 - 16161: -64,-45 - 16162: -65,-45 + 16144: -67,-46 + 16145: -66,-46 + 16146: -66,-47 + 16147: -66,-48 + 16148: -65,-47 + 16149: -65,-48 + 16150: -64,-48 + 16151: -64,-47 + 16152: -64,-46 + 16153: -65,-46 + 16154: -63,-46 + 16155: -62,-46 + 16156: -62,-47 + 16157: -62,-48 + 16158: -63,-45 + 16159: -64,-45 + 16160: -65,-45 - node: color: '#FFFF00D8' id: ConcreteTrimCornerNe decals: - 14041: -62,61 + 14039: -62,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNe decals: - 14054: -62,61 + 14052: -62,61 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 2093: -21,39 - 2189: -20,40 - 7865: 75,-16 - 7911: 68,-24 - 12691: -40,34 - 12704: -38,33 - 15701: 97,7 + 2091: -21,39 + 2187: -20,40 + 7863: 75,-16 + 7909: 68,-24 + 12689: -40,34 + 12702: -38,33 + 15699: 97,7 - node: color: '#FFFF00D9' id: ConcreteTrimCornerNw decals: - 14042: -63,61 + 14040: -63,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNw decals: - 14055: -63,61 - 14068: -68,56 + 14053: -63,61 + 14066: -68,56 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 2092: -17,39 - 2188: -18,40 - 7910: 74,-24 - 7917: 67,-16 + 2090: -17,39 + 2186: -18,40 + 7908: 74,-24 + 7915: 67,-16 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSe decals: - 14057: -62,54 + 14055: -62,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 2094: -21,43 - 2187: -20,42 - 7946: 68,-17 - 7971: 75,-25 + 2092: -21,43 + 2185: -20,42 + 7944: 68,-17 + 7969: 75,-25 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSw decals: - 14064: -68,54 + 14062: -68,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 2095: -17,43 - 2191: -18,42 - 7945: 74,-17 - 7972: 67,-25 - 12695: -38,32 + 2093: -17,43 + 2189: -18,42 + 7943: 74,-17 + 7970: 67,-25 + 12693: -38,32 - node: color: '#FFFFFFFF' id: ConcreteTrimEndE decals: - 2176: -18,41 + 2174: -18,41 - node: color: '#FFFFFFFF' id: ConcreteTrimEndN decals: - 2174: -19,42 + 2172: -19,42 - node: color: '#FFFFFFFF' id: ConcreteTrimEndS decals: - 2175: -19,40 - 12692: -40,32 + 2173: -19,40 + 12690: -40,32 - node: color: '#FFFF00FF' id: ConcreteTrimEndW decals: - 14066: -70,55 + 14064: -70,55 - node: color: '#FFFFFFFF' id: ConcreteTrimEndW decals: - 2173: -20,41 + 2171: -20,41 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNe decals: - 14070: -67,56 + 14068: -67,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 2100: -21,38 - 2102: -22,39 - 2177: -19,41 - 2195: -21,40 - 2196: -20,39 - 2209: -18,43 - 2210: -17,42 - 2855: -33,43 - 5965: -3,9 - 6010: -1,-5 - 6023: -1,7 - 6024: -1,3 - 6025: -1,-1 - 7927: 67,-24 - 7928: 68,-25 - 7929: 67,-22 - 7930: 67,-19 - 7991: 75,-22 - 7992: 75,-19 - 12702: -40,33 - 12703: -38,32 + 2098: -21,38 + 2100: -22,39 + 2175: -19,41 + 2193: -21,40 + 2194: -20,39 + 2207: -18,43 + 2208: -17,42 + 2853: -33,43 + 5963: -3,9 + 6008: -1,-5 + 6021: -1,7 + 6022: -1,3 + 6023: -1,-1 + 7925: 67,-24 + 7926: 68,-25 + 7927: 67,-22 + 7928: 67,-19 + 7989: 75,-22 + 7990: 75,-19 + 12700: -40,33 + 12701: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNw decals: - 14067: -68,55 - 14069: -67,56 - 14075: -63,56 + 14065: -68,55 + 14067: -67,56 + 14073: -63,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 2099: -16,39 - 2101: -17,38 - 2178: -19,41 - 2206: -21,42 - 2207: -21,42 - 2208: -20,43 - 2211: -17,40 - 2212: -18,39 - 5966: 1,9 - 6011: -1,-5 - 6020: -1,-1 - 6021: -1,3 - 6022: -1,7 - 7948: 74,-25 - 7949: 75,-24 - 7950: 75,-22 - 7951: 75,-19 - 7952: 67,-22 - 7953: 67,-19 + 2097: -16,39 + 2099: -17,38 + 2176: -19,41 + 2204: -21,42 + 2205: -21,42 + 2206: -20,43 + 2209: -17,40 + 2210: -18,39 + 5964: 1,9 + 6009: -1,-5 + 6018: -1,-1 + 6019: -1,3 + 6020: -1,7 + 7946: 74,-25 + 7947: 75,-24 + 7948: 75,-22 + 7949: 75,-19 + 7950: 67,-22 + 7951: 67,-19 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSe decals: - 14058: -63,54 + 14056: -63,54 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 2103: -21,44 - 2179: -19,41 - 2197: -21,42 - 2198: -20,43 - 2199: -17,40 - 2200: -17,40 - 2201: -18,39 - 2270: -22,43 - 2854: -33,40 - 5963: -3,-6 - 6013: -1,-5 - 6014: -1,-1 - 6015: -1,3 - 6016: -1,7 - 7932: 67,-22 - 7933: 67,-19 - 7934: 67,-17 - 7935: 68,-16 - 7989: 75,-19 - 7990: 75,-22 - 12701: -40,33 + 2101: -21,44 + 2177: -19,41 + 2195: -21,42 + 2196: -20,43 + 2197: -17,40 + 2198: -17,40 + 2199: -18,39 + 2268: -22,43 + 2852: -33,40 + 5961: -3,-6 + 6011: -1,-5 + 6012: -1,-1 + 6013: -1,3 + 6014: -1,7 + 7930: 67,-22 + 7931: 67,-19 + 7932: 67,-17 + 7933: 68,-16 + 7987: 75,-19 + 7988: 75,-22 + 12699: -40,33 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSw decals: - 14059: -63,54 - 14065: -68,55 + 14057: -63,54 + 14063: -68,55 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 2104: -17,44 - 2105: -16,43 - 2180: -19,41 - 2202: -17,42 - 2203: -18,43 - 2204: -20,39 - 2205: -21,40 - 2846: -32,44 - 5964: 1,-6 - 6012: -1,-5 - 6017: -1,7 - 6018: -1,3 - 6019: -1,-1 - 7924: 75,-22 - 7925: 75,-19 - 7926: 75,-17 - 7987: 67,-22 - 7988: 67,-19 - 12699: -40,34 - 12700: -38,33 + 2102: -17,44 + 2103: -16,43 + 2178: -19,41 + 2200: -17,42 + 2201: -18,43 + 2202: -20,39 + 2203: -21,40 + 2844: -32,44 + 5962: 1,-6 + 6010: -1,-5 + 6015: -1,7 + 6016: -1,3 + 6017: -1,-1 + 7922: 75,-22 + 7923: 75,-19 + 7924: 75,-17 + 7985: 67,-22 + 7986: 67,-19 + 12697: -40,34 + 12698: -38,33 - node: color: '#FFFF00D9' id: ConcreteTrimLineE decals: - 14043: -62,60 - 14044: -62,59 - 14045: -62,59 - 14046: -62,58 - 14047: -62,57 - 14048: -62,56 + 14041: -62,60 + 14042: -62,59 + 14043: -62,59 + 14044: -62,58 + 14045: -62,57 + 14046: -62,56 - node: color: '#FFFF00FF' id: ConcreteTrimLineE decals: - 14049: -62,56 - 14050: -62,57 - 14051: -62,58 - 14052: -62,59 - 14053: -62,60 - 14056: -62,55 + 14047: -62,56 + 14048: -62,57 + 14049: -62,58 + 14050: -62,59 + 14051: -62,60 + 14054: -62,55 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 2106: -22,40 - 2107: -22,41 - 2192: -21,41 - 2271: -22,42 - 5394: 0,-6 - 5395: 0,-6 - 5396: 0,-5 - 5397: 0,-4 - 5398: 0,-3 - 5399: 0,-2 - 5400: 0,-1 - 5401: 0,0 - 5402: 0,1 - 5403: 0,1 - 5404: 0,2 - 5405: 0,2 - 5406: 0,3 - 5407: 0,3 - 5408: 0,4 - 5409: 0,5 - 5410: 0,5 - 5411: 0,6 - 5412: 0,7 - 5413: 0,8 - 5414: 0,8 - 5415: 0,9 - 6006: 0,7 - 6007: 0,3 - 6008: 0,-1 - 6009: 0,-5 - 7897: 67,-21 - 7898: 67,-20 - 7899: 67,-23 - 7947: 67,-18 - 7954: 75,-17 - 7955: 75,-18 - 7956: 75,-20 - 7957: 75,-21 - 7958: 75,-23 - 7959: 75,-24 - 7983: 66,-22 - 7984: 66,-19 + 2104: -22,40 + 2105: -22,41 + 2190: -21,41 + 2269: -22,42 + 5392: 0,-6 + 5393: 0,-6 + 5394: 0,-5 + 5395: 0,-4 + 5396: 0,-3 + 5397: 0,-2 + 5398: 0,-1 + 5399: 0,0 + 5400: 0,1 + 5401: 0,1 + 5402: 0,2 + 5403: 0,2 + 5404: 0,3 + 5405: 0,3 + 5406: 0,4 + 5407: 0,5 + 5408: 0,5 + 5409: 0,6 + 5410: 0,7 + 5411: 0,8 + 5412: 0,8 + 5413: 0,9 + 6004: 0,7 + 6005: 0,3 + 6006: 0,-1 + 6007: 0,-5 + 7895: 67,-21 + 7896: 67,-20 + 7897: 67,-23 + 7945: 67,-18 + 7952: 75,-17 + 7953: 75,-18 + 7954: 75,-20 + 7955: 75,-21 + 7956: 75,-23 + 7957: 75,-24 + 7981: 66,-22 + 7982: 66,-19 - node: color: '#FFFF00FF' id: ConcreteTrimLineN decals: - 14071: -66,56 - 14072: -65,56 - 14073: -65,56 - 14074: -64,56 + 14069: -66,56 + 14070: -65,56 + 14071: -65,56 + 14072: -64,56 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 2089: -20,38 - 2090: -19,38 - 2091: -18,38 - 2194: -19,39 - 7866: 74,-16 - 7867: 73,-16 - 7868: 72,-16 - 7869: 71,-16 - 7870: 70,-16 - 7871: 69,-16 - 7872: 68,-16 - 7873: 68,-19 - 7874: 69,-19 - 7875: 70,-19 - 7876: 71,-19 - 7877: 72,-19 - 7878: 73,-19 - 7879: 74,-19 - 7880: 68,-22 - 7881: 70,-22 - 7882: 71,-22 - 7883: 72,-22 + 2087: -20,38 + 2088: -19,38 + 2089: -18,38 + 2192: -19,39 + 7864: 74,-16 + 7865: 73,-16 + 7866: 72,-16 + 7867: 71,-16 + 7868: 70,-16 + 7869: 69,-16 + 7870: 68,-16 + 7871: 68,-19 + 7872: 69,-19 + 7873: 70,-19 + 7874: 71,-19 + 7875: 72,-19 + 7876: 73,-19 + 7877: 74,-19 + 7878: 68,-22 + 7879: 70,-22 + 7880: 71,-22 + 7881: 72,-22 + 7882: 73,-22 + 7883: 69,-22 7884: 73,-22 - 7885: 69,-22 - 7886: 73,-22 - 7887: 74,-22 - 7912: 69,-25 - 7913: 70,-25 - 7914: 71,-25 - 7915: 72,-25 - 7916: 73,-25 - 12690: -41,34 - 12696: -39,33 - 12697: -38,33 + 7885: 74,-22 + 7910: 69,-25 + 7911: 70,-25 + 7912: 71,-25 + 7913: 72,-25 + 7914: 73,-25 + 12688: -41,34 + 12694: -39,33 + 12695: -38,33 - node: color: '#FFFF00FF' id: ConcreteTrimLineS decals: - 14060: -64,54 - 14061: -65,54 - 14062: -66,54 - 14063: -67,54 + 14058: -64,54 + 14059: -65,54 + 14060: -66,54 + 14061: -67,54 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 2108: -20,44 - 2109: -19,44 - 2110: -18,44 - 2190: -19,43 - 7890: 68,-19 - 7891: 69,-19 - 7892: 70,-19 - 7893: 71,-19 - 7894: 72,-19 - 7895: 73,-19 - 7896: 74,-19 - 7900: 68,-22 - 7901: 69,-22 - 7902: 70,-22 - 7903: 71,-22 - 7904: 73,-22 - 7905: 73,-22 - 7906: 72,-22 - 7907: 74,-22 - 7908: 73,-22 - 7936: 69,-16 - 7937: 70,-16 - 7938: 71,-16 - 7939: 71,-16 + 2106: -20,44 + 2107: -19,44 + 2108: -18,44 + 2188: -19,43 + 7888: 68,-19 + 7889: 69,-19 + 7890: 70,-19 + 7891: 71,-19 + 7892: 72,-19 + 7893: 73,-19 + 7894: 74,-19 + 7898: 68,-22 + 7899: 69,-22 + 7900: 70,-22 + 7901: 71,-22 + 7902: 73,-22 + 7903: 73,-22 + 7904: 72,-22 + 7905: 74,-22 + 7906: 73,-22 + 7934: 69,-16 + 7935: 70,-16 + 7936: 71,-16 + 7937: 71,-16 + 7938: 72,-16 + 7939: 72,-16 7940: 72,-16 7941: 72,-16 - 7942: 72,-16 - 7943: 72,-16 - 7944: 73,-16 + 7942: 73,-16 + 7958: 68,-25 + 7959: 68,-25 7960: 68,-25 - 7961: 68,-25 - 7962: 68,-25 - 7963: 69,-25 - 7964: 70,-25 - 7965: 71,-25 - 7966: 71,-25 - 7967: 72,-25 - 7968: 72,-25 - 7969: 74,-25 - 7970: 74,-25 - 12689: -41,34 - 12693: -39,33 - 12694: -38,32 + 7961: 69,-25 + 7962: 70,-25 + 7963: 71,-25 + 7964: 71,-25 + 7965: 72,-25 + 7966: 72,-25 + 7967: 74,-25 + 7968: 74,-25 + 12687: -41,34 + 12691: -39,33 + 12692: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimLineW decals: - 14076: -63,57 - 14077: -63,58 - 14078: -63,59 - 14079: -63,59 - 14080: -63,60 + 14074: -63,57 + 14075: -63,58 + 14076: -63,59 + 14077: -63,59 + 14078: -63,60 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 2096: -16,42 - 2097: -16,41 - 2098: -16,40 - 2193: -17,41 - 2842: -32,40 - 2843: -32,41 - 2844: -32,42 - 2845: -32,43 - 5416: -2,8 - 5417: -2,7 - 5418: -2,6 - 5419: -2,5 - 5420: -2,5 - 5421: -2,4 - 5422: -2,3 - 5423: -2,2 - 5424: -2,1 - 5425: -2,1 - 5426: -2,0 - 5427: -2,-1 - 5428: -2,-2 - 5429: -2,-2 - 5430: -2,-3 - 5431: -2,-4 - 5432: -2,-4 - 5433: -2,-5 - 5434: -2,-5 - 5435: -2,-6 - 6002: -2,-5 - 6003: -2,-1 - 6004: -2,3 - 6005: -2,7 - 7888: 75,-21 - 7889: 75,-20 - 7909: 75,-23 - 7918: 67,-17 - 7919: 67,-18 - 7920: 67,-20 - 7921: 67,-21 - 7922: 67,-23 - 7923: 67,-24 - 7931: 75,-18 - 7985: 76,-19 - 7986: 76,-22 - 12698: -40,33 - 18713: -2,9 + 2094: -16,42 + 2095: -16,41 + 2096: -16,40 + 2191: -17,41 + 2840: -32,40 + 2841: -32,41 + 2842: -32,42 + 2843: -32,43 + 5414: -2,8 + 5415: -2,7 + 5416: -2,6 + 5417: -2,5 + 5418: -2,5 + 5419: -2,4 + 5420: -2,3 + 5421: -2,2 + 5422: -2,1 + 5423: -2,1 + 5424: -2,0 + 5425: -2,-1 + 5426: -2,-2 + 5427: -2,-2 + 5428: -2,-3 + 5429: -2,-4 + 5430: -2,-4 + 5431: -2,-5 + 5432: -2,-5 + 5433: -2,-6 + 6000: -2,-5 + 6001: -2,-1 + 6002: -2,3 + 6003: -2,7 + 7886: 75,-21 + 7887: 75,-20 + 7907: 75,-23 + 7916: 67,-17 + 7917: 67,-18 + 7918: 67,-20 + 7919: 67,-21 + 7920: 67,-23 + 7921: 67,-24 + 7929: 75,-18 + 7983: 76,-19 + 7984: 76,-22 + 12696: -40,33 + 18711: -2,9 - node: color: '#FFFFFF25' id: Damaged decals: - 18714: 63,-40 - 18715: 64,-40 - 18716: 59,-42 - 18717: 60,-42 - 18718: 58,-42 + 18712: 63,-40 + 18713: 64,-40 + 18714: 59,-42 + 18715: 60,-42 + 18716: 58,-42 - node: color: '#FFFFFFFF' id: Delivery @@ -17594,79 +17589,79 @@ entities: 1216: 61,6 1217: 63,6 1244: 63,3 - 3127: -2,64 - 3128: -2,63 - 3129: -2,62 - 3130: -2,61 - 3221: -2,64 - 3222: -2,63 - 3223: -2,62 - 3224: -2,61 - 6026: -8,-16 - 6027: -8,-17 - 6028: -8,-13 - 6029: -8,-12 - 6036: -16,-16 - 6037: -16,-15 - 6038: -16,-14 - 6039: -16,-13 - 6040: -14,-16 - 6041: -14,-15 - 6042: -14,-14 - 6043: -14,-13 - 6044: -12,-13 - 6045: -12,-14 - 6046: -12,-15 - 6047: -12,-16 - 6048: -10,-16 - 6049: -10,-15 - 6050: -10,-14 - 6051: -10,-13 - 6052: -10,-13 - 6227: -13,-18 - 6228: -12,-18 - 6229: -11,-18 - 17345: -46,-9 - 17346: -46,-10 - 17347: -45,-10 - 17348: -45,-9 - 17349: -45,-6 - 17350: -47,-6 - 17351: -46,-6 - 17352: -45,-7 - 17353: -46,-7 - 17354: -48,-6 - 17355: -49,-6 - 17356: -49,-10 - 17357: -48,-10 - 17358: -47,-10 - 17359: -47,-9 - 17360: -47,-7 - 17791: -67,-13 - 17792: -68,-13 - 17793: -68,-12 - 17794: -67,-12 - 17795: -67,-11 - 17796: -68,-11 - 17797: -68,-10 - 17798: -67,-10 - 17799: -69,-13 - 17800: -69,-12 - 17801: -70,-12 - 17802: -70,-13 - 17803: -71,-13 - 17804: -71,-12 - 17805: -72,-12 - 17806: -72,-13 - 17807: -73,-13 - 17808: -73,-11 - 17809: -72,-11 - 17810: -72,-10 - 17811: -73,-10 - 17812: -73,-12 - 19368: 70,1 - 19369: 70,0 - 19370: 70,-1 + 3125: -2,64 + 3126: -2,63 + 3127: -2,62 + 3128: -2,61 + 3219: -2,64 + 3220: -2,63 + 3221: -2,62 + 3222: -2,61 + 6024: -8,-16 + 6025: -8,-17 + 6026: -8,-13 + 6027: -8,-12 + 6034: -16,-16 + 6035: -16,-15 + 6036: -16,-14 + 6037: -16,-13 + 6038: -14,-16 + 6039: -14,-15 + 6040: -14,-14 + 6041: -14,-13 + 6042: -12,-13 + 6043: -12,-14 + 6044: -12,-15 + 6045: -12,-16 + 6046: -10,-16 + 6047: -10,-15 + 6048: -10,-14 + 6049: -10,-13 + 6050: -10,-13 + 6225: -13,-18 + 6226: -12,-18 + 6227: -11,-18 + 17343: -46,-9 + 17344: -46,-10 + 17345: -45,-10 + 17346: -45,-9 + 17347: -45,-6 + 17348: -47,-6 + 17349: -46,-6 + 17350: -45,-7 + 17351: -46,-7 + 17352: -48,-6 + 17353: -49,-6 + 17354: -49,-10 + 17355: -48,-10 + 17356: -47,-10 + 17357: -47,-9 + 17358: -47,-7 + 17789: -67,-13 + 17790: -68,-13 + 17791: -68,-12 + 17792: -67,-12 + 17793: -67,-11 + 17794: -68,-11 + 17795: -68,-10 + 17796: -67,-10 + 17797: -69,-13 + 17798: -69,-12 + 17799: -70,-12 + 17800: -70,-13 + 17801: -71,-13 + 17802: -71,-12 + 17803: -72,-12 + 17804: -72,-13 + 17805: -73,-13 + 17806: -73,-11 + 17807: -72,-11 + 17808: -72,-10 + 17809: -73,-10 + 17810: -73,-12 + 19366: 70,1 + 19367: 70,0 + 19368: 70,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -17736,16 +17731,16 @@ entities: color: '#DA8B8BFF' id: DiagonalCheckerAOverlay decals: - 15645: 78,1 - 15646: 82,1 - 15647: 83,1 - 15648: 81,1 - 15649: 84,1 - 15650: 86,1 - 15651: 88,1 - 15652: 87,1 - 15653: 77,1 - 15654: 79,1 + 15643: 78,1 + 15644: 82,1 + 15645: 83,1 + 15646: 81,1 + 15647: 84,1 + 15648: 86,1 + 15649: 88,1 + 15650: 87,1 + 15651: 77,1 + 15652: 79,1 - node: color: '#9FED5896' id: DiagonalCheckerBOverlay @@ -17758,902 +17753,902 @@ entities: color: '#B18BDAFF' id: DiagonalCheckerBOverlay decals: - 12739: -8,-34 - 12740: -7,-34 - 12741: -7,-33 - 12742: -8,-33 - 12743: -8,-32 - 12744: -7,-32 - 12745: -7,-32 + 12737: -8,-34 + 12738: -7,-34 + 12739: -7,-33 + 12740: -8,-33 + 12741: -8,-32 + 12742: -7,-32 + 12743: -7,-32 - node: color: '#DABC8BFF' id: DiagonalCheckerBOverlay decals: - 9618: 5,-32 - 9619: 5,-33 - 9620: 5,-34 - 9621: 6,-34 - 9622: 6,-33 - 9623: 6,-32 + 9616: 5,-32 + 9617: 5,-33 + 9618: 5,-34 + 9619: 6,-34 + 9620: 6,-33 + 9621: 6,-32 - node: color: '#FFFFFF02' id: DiagonalOverlay decals: - 14494: -16,23 - 14495: -15,23 - 14496: -14,23 - 14497: -13,23 - 14498: -6,23 - 14499: -5,23 - 14500: -4,23 - 14501: -3,23 - 14502: -19,16 - 14503: -19,17 - 14504: -19,18 - 14505: -19,19 - 14506: -19,9 - 14507: -19,10 - 14508: -19,11 - 14509: -19,12 - 14510: -22,30 - 14511: -22,31 - 14512: -22,32 - 14513: -22,33 - 14514: -21,34 - 14515: -21,33 - 14516: -21,32 - 14517: -21,30 - 14518: -21,29 - 14519: -21,31 - 14520: -19,27 - 14521: -19,28 - 14522: -19,29 - 14523: -19,32 - 14524: -19,31 - 14525: -19,36 - 14526: -19,35 - 14527: -19,34 - 14528: -23,41 - 14529: -19,48 - 14530: -19,47 - 14531: -19,46 - 14532: -17,47 - 14533: -17,48 - 14534: -16,48 - 14535: -16,49 - 14536: -17,49 - 14537: -17,50 - 14538: -16,50 - 14539: -17,51 - 14540: -19,52 - 14541: -19,51 - 14542: -19,50 - 14543: -22,49 - 14544: -22,50 - 14545: -21,50 - 14546: -21,51 - 14547: -21,49 - 14548: -22,48 - 14549: -21,47 - 14550: -21,48 - 14551: -18,57 - 14552: -19,57 - 14553: -20,57 - 14554: -11,57 - 14555: -12,57 - 14556: -13,57 - 14557: -4,57 - 14558: -5,57 - 14559: -6,57 - 14560: 2,57 - 14561: 1,57 - 14562: 0,57 - 14563: -5,64 - 14564: -5,63 - 14565: -5,62 - 14566: -5,61 - 14567: -6,68 - 14568: -5,68 - 14569: -4,68 - 14570: -13,68 - 14571: -11,68 - 14572: -12,68 - 14573: -20,68 - 14574: -19,68 - 14575: -18,68 - 14576: -25,68 - 14577: -26,68 - 14578: -24,68 - 14579: -29,68 - 14580: -30,68 - 14581: -31,68 - 14582: -30,75 - 14583: -30,74 - 14584: -30,73 - 14585: -30,72 - 14586: -30,82 - 14587: -30,81 - 14588: -30,80 - 14589: -30,79 - 14590: -30,86 - 14591: -30,85 - 14592: -30,88 - 14593: -30,95 - 14594: -30,94 - 14595: -30,92 - 14596: -30,93 - 14597: -12,94 - 14598: -12,93 - 14599: -12,92 - 14600: -12,95 - 14601: -12,85 - 14602: -12,86 - 14603: -12,87 - 14604: -12,88 - 14605: -12,79 - 14606: -12,80 - 14607: -12,81 - 14608: -12,82 - 14609: -12,72 - 14610: -12,73 - 14611: -12,74 - 14612: -12,75 - 14613: 2,68 - 14614: 1,68 - 14615: 0,68 - 14616: 7,68 - 14617: 6,68 - 14618: 5,68 - 14619: 6,74 - 14620: 6,72 - 14621: 6,73 - 14622: 6,75 - 14623: 6,81 - 14624: 6,82 - 14625: 6,80 - 14626: 6,79 - 14627: -11,49 - 14628: -10,49 - 14629: -6,49 - 14630: -5,49 - 14631: -19,2 - 14632: -19,4 - 14633: -19,5 - 14634: -12,14 - 14635: -12,15 - 14636: -6,14 - 14637: -7,14 - 14638: -8,14 - 14639: -9,14 - 14640: -10,14 - 14641: 1,16 - 14642: 0,16 - 14643: -2,16 - 14644: -3,16 - 14645: -1,16 - 14646: 8,14 - 14647: 7,14 - 14648: 6,14 - 14649: 4,14 - 14650: 5,14 - 14651: 10,15 - 14652: 10,14 - 14653: 17,18 - 14654: 17,19 - 14655: 17,17 - 14656: 17,16 - 14657: 14,23 - 14658: 13,23 - 14659: 12,23 - 14660: 11,23 - 14661: 1,23 - 14662: 2,23 - 14663: 3,23 - 14664: 4,23 - 14665: 17,9 - 14666: 17,10 - 14667: 17,11 - 14668: 17,12 - 14669: 17,3 - 14670: 17,2 - 14671: 17,4 - 14672: 17,5 - 14673: 24,5 - 14674: 23,5 - 14675: 22,5 - 14676: 21,5 - 14677: 31,5 - 14678: 30,5 - 14679: 29,5 - 14680: 28,5 - 14681: 17,-5 - 14682: 17,-4 - 14683: 17,-3 - 14684: 17,-2 - 14685: 17,-17 - 14686: 17,-16 - 14687: 17,-15 - 14688: 17,-14 - 14689: 17,-13 - 14690: 17,-12 - 14691: 21,-11 - 14692: 22,-11 - 14693: 23,-11 - 14694: 24,-11 - 14695: 28,-11 - 14696: 29,-11 - 14697: 30,-11 - 14698: 47,-20 - 14699: 46,-20 - 14700: 45,-20 - 14701: 44,-20 - 14702: 49,-20 - 14703: 50,-20 - 14704: 51,-20 - 14705: 52,-20 - 14706: 10,-20 - 14707: 11,-20 - 14708: 12,-20 - 14709: 13,-20 - 14710: 3,-20 - 14711: 4,-20 - 14712: 5,-20 - 14713: 6,-20 - 14714: -8,-20 - 14715: -7,-20 - 14716: -6,-20 - 14717: -5,-20 - 14718: -14,-20 - 14719: -13,-20 - 14720: -12,-20 - 14721: -15,-20 - 14722: -12,-26 - 14723: -12,-25 - 14724: -11,-25 - 14725: -11,-26 - 14726: -10,-26 - 14727: -10,-25 - 14728: -9,-25 - 14729: -9,-26 - 14730: -8,-26 - 14731: -8,-25 - 14732: 6,-25 - 14733: 7,-25 - 14734: 8,-25 - 14735: 9,-25 - 14736: 10,-25 - 14737: 10,-26 - 14738: 9,-26 - 14739: 8,-26 - 14740: 7,-26 - 14741: 6,-26 - 14742: -1,-27 - 14743: -1,-24 - 14744: -1,-25 - 14745: -1,-26 - 14746: -1,-34 - 14747: -1,-33 - 14748: -1,-32 - 14749: -1,-31 - 14750: -1,-35 - 14751: -1,-42 - 14752: -1,-40 - 14753: -1,-39 - 14754: -1,-50 - 14755: -1,-49 - 14756: -1,-48 - 14757: -1,-47 - 14758: -1,-46 - 14759: -1,-45 - 14760: -1,-44 - 14761: -1,-55 - 14762: -1,-54 - 14763: -1,-53 - 14764: -1,-52 - 14765: -1,-59 - 14766: -1,-60 - 14767: -1,-61 - 14768: -19,-12 - 14769: -19,-13 - 14770: -19,-14 - 14771: -19,-15 - 14772: -19,-16 - 14773: -19,-17 - 14774: -19,-2 - 14775: -19,-3 - 14776: -19,-4 - 14777: -19,-5 - 14778: -27,5 - 14779: -26,5 - 14780: -25,5 - 14781: -24,5 - 14782: -23,5 - 14783: -31,5 - 14784: -32,5 - 14785: -33,5 - 14786: -38,5 - 14787: -37,5 - 14788: -36,5 - 14789: -19,61 - 14790: -19,62 - 14791: -19,63 - 14792: -19,64 - 14793: 17,-40 - 14794: 17,-41 - 14795: 17,-42 - 14796: 17,-43 - 14797: 17,-45 - 14798: 17,-44 - 14799: 11,-35 - 14800: 12,-35 - 14801: 13,-35 - 14802: 17,-31 - 14803: 17,-32 - 14804: 17,-34 - 14805: 17,-33 - 14806: 27,-35 - 14807: 26,-35 - 14808: 25,-35 - 14809: 23,-35 - 14810: 22,-35 - 14811: 24,-35 - 14812: 32,-35 - 14813: 36,-35 - 14814: 35,-35 - 14815: 34,-35 - 14816: 33,-35 - 14817: 31,-35 - 14818: 27,-43 - 14819: 27,-44 - 14820: 27,-42 - 14821: 27,-41 - 14822: 27,-40 - 14823: 27,-51 - 14824: 27,-50 - 14825: 27,-49 - 14826: 27,-48 - 14827: 27,-47 - 14828: -18,-35 - 14829: -14,-35 - 14830: -15,-35 - 14831: -16,-35 - 14832: -17,-35 - 14833: -29,-35 - 14834: -28,-35 - 14835: -27,-35 - 14836: -26,-35 - 14837: -25,-35 - 14838: -24,-35 - 14839: -23,-26 - 14840: -23,-27 - 14841: -23,-28 - 14842: -23,-29 - 14843: -23,-30 - 14844: -29,-41 - 14845: -29,-40 - 14846: -29,-39 - 14847: -14,-43 - 14848: -14,-42 - 14849: -14,-41 - 14850: -14,-40 - 14851: -14,-39 - 14852: -14,-53 - 14853: -14,-52 - 14854: -14,-51 - 14855: -14,-50 - 14856: -14,-49 - 14857: -14,-48 - 14858: -14,-47 - 14859: 29,-49 - 14860: 29,-48 - 14861: 29,-47 - 14862: 29,-51 - 14863: 29,-52 - 14864: 29,-53 - 14865: 30,-46 - 14866: 31,-46 - 14867: 32,-46 - 14868: 33,-46 - 14869: 34,-46 - 15112: -30,87 - 15314: -1,-41 - 15463: -42,14 - 15464: -42,16 - 15465: -42,17 - 15466: -42,20 - 15467: -42,21 - 15468: -42,22 - 15469: -42,11 - 15470: -42,10 - 15471: -42,9 - 15484: -42,15 - 18820: -15,-9 - 18821: -14,-9 - 18822: -13,-9 - 18823: -12,-9 - 18824: -9,-9 - 18825: -8,-9 - 18826: -7,-9 - 18827: -6,-9 - 18828: -3,-9 - 18829: -2,-9 - 18830: -1,-9 - 18831: 0,-9 - 18832: 1,-9 - 18833: 4,-9 - 18834: 5,-9 - 18835: 6,-9 - 18836: 7,-9 - 18837: 10,-9 - 18838: 11,-9 - 18839: 12,-9 - 18840: 13,-9 - 19433: -14,28 - 19434: -14,27 - 19435: -14,26 - 19436: -13,26 - 19437: -12,26 - 19438: -11,27 - 19439: -11,28 - 19440: -11,29 - 19441: -11,30 - 19442: -12,30 - 19443: -11,31 - 19444: -11,32 - 19445: -11,33 - 19446: -12,34 - 19447: -13,34 - 19448: -14,34 - 19449: -14,33 - 19450: -14,32 - 19451: -14,31 - 19452: -15,31 - 19453: -15,30 - 19454: -15,29 - 19455: -10,30 - 19456: -9,30 - 19457: -9,34 - 19458: -10,34 - 19459: -9,26 - 19460: -10,26 - 19523: -14,29 - 19697: 34,-14 - 19698: 34,-13 - 19699: 34,-12 - 19700: 34,-11 - 19701: 34,-10 - 19702: 35,-9 - 19703: 36,-9 - 19704: 37,-9 - 19705: 39,-9 - 19706: 38,-9 - 19707: 40,-10 - 19708: 40,-11 - 19709: 40,-12 - 19710: 39,-12 - 19711: 38,-12 - 19712: 36,-12 - 19713: 35,-12 - 19714: 37,-12 - 19715: 35,-15 - 19716: 36,-15 - 19717: 37,-15 - 19718: 38,-15 - 19719: 39,-15 - 19720: 40,-14 - 19721: 40,-13 - 20299: -19,3 + 14492: -16,23 + 14493: -15,23 + 14494: -14,23 + 14495: -13,23 + 14496: -6,23 + 14497: -5,23 + 14498: -4,23 + 14499: -3,23 + 14500: -19,16 + 14501: -19,17 + 14502: -19,18 + 14503: -19,19 + 14504: -19,9 + 14505: -19,10 + 14506: -19,11 + 14507: -19,12 + 14508: -22,30 + 14509: -22,31 + 14510: -22,32 + 14511: -22,33 + 14512: -21,34 + 14513: -21,33 + 14514: -21,32 + 14515: -21,30 + 14516: -21,29 + 14517: -21,31 + 14518: -19,27 + 14519: -19,28 + 14520: -19,29 + 14521: -19,32 + 14522: -19,31 + 14523: -19,36 + 14524: -19,35 + 14525: -19,34 + 14526: -23,41 + 14527: -19,48 + 14528: -19,47 + 14529: -19,46 + 14530: -17,47 + 14531: -17,48 + 14532: -16,48 + 14533: -16,49 + 14534: -17,49 + 14535: -17,50 + 14536: -16,50 + 14537: -17,51 + 14538: -19,52 + 14539: -19,51 + 14540: -19,50 + 14541: -22,49 + 14542: -22,50 + 14543: -21,50 + 14544: -21,51 + 14545: -21,49 + 14546: -22,48 + 14547: -21,47 + 14548: -21,48 + 14549: -18,57 + 14550: -19,57 + 14551: -20,57 + 14552: -11,57 + 14553: -12,57 + 14554: -13,57 + 14555: -4,57 + 14556: -5,57 + 14557: -6,57 + 14558: 2,57 + 14559: 1,57 + 14560: 0,57 + 14561: -5,64 + 14562: -5,63 + 14563: -5,62 + 14564: -5,61 + 14565: -6,68 + 14566: -5,68 + 14567: -4,68 + 14568: -13,68 + 14569: -11,68 + 14570: -12,68 + 14571: -20,68 + 14572: -19,68 + 14573: -18,68 + 14574: -25,68 + 14575: -26,68 + 14576: -24,68 + 14577: -29,68 + 14578: -30,68 + 14579: -31,68 + 14580: -30,75 + 14581: -30,74 + 14582: -30,73 + 14583: -30,72 + 14584: -30,82 + 14585: -30,81 + 14586: -30,80 + 14587: -30,79 + 14588: -30,86 + 14589: -30,85 + 14590: -30,88 + 14591: -30,95 + 14592: -30,94 + 14593: -30,92 + 14594: -30,93 + 14595: -12,94 + 14596: -12,93 + 14597: -12,92 + 14598: -12,95 + 14599: -12,85 + 14600: -12,86 + 14601: -12,87 + 14602: -12,88 + 14603: -12,79 + 14604: -12,80 + 14605: -12,81 + 14606: -12,82 + 14607: -12,72 + 14608: -12,73 + 14609: -12,74 + 14610: -12,75 + 14611: 2,68 + 14612: 1,68 + 14613: 0,68 + 14614: 7,68 + 14615: 6,68 + 14616: 5,68 + 14617: 6,74 + 14618: 6,72 + 14619: 6,73 + 14620: 6,75 + 14621: 6,81 + 14622: 6,82 + 14623: 6,80 + 14624: 6,79 + 14625: -11,49 + 14626: -10,49 + 14627: -6,49 + 14628: -5,49 + 14629: -19,2 + 14630: -19,4 + 14631: -19,5 + 14632: -12,14 + 14633: -12,15 + 14634: -6,14 + 14635: -7,14 + 14636: -8,14 + 14637: -9,14 + 14638: -10,14 + 14639: 1,16 + 14640: 0,16 + 14641: -2,16 + 14642: -3,16 + 14643: -1,16 + 14644: 8,14 + 14645: 7,14 + 14646: 6,14 + 14647: 4,14 + 14648: 5,14 + 14649: 10,15 + 14650: 10,14 + 14651: 17,18 + 14652: 17,19 + 14653: 17,17 + 14654: 17,16 + 14655: 14,23 + 14656: 13,23 + 14657: 12,23 + 14658: 11,23 + 14659: 1,23 + 14660: 2,23 + 14661: 3,23 + 14662: 4,23 + 14663: 17,9 + 14664: 17,10 + 14665: 17,11 + 14666: 17,12 + 14667: 17,3 + 14668: 17,2 + 14669: 17,4 + 14670: 17,5 + 14671: 24,5 + 14672: 23,5 + 14673: 22,5 + 14674: 21,5 + 14675: 31,5 + 14676: 30,5 + 14677: 29,5 + 14678: 28,5 + 14679: 17,-5 + 14680: 17,-4 + 14681: 17,-3 + 14682: 17,-2 + 14683: 17,-17 + 14684: 17,-16 + 14685: 17,-15 + 14686: 17,-14 + 14687: 17,-13 + 14688: 17,-12 + 14689: 21,-11 + 14690: 22,-11 + 14691: 23,-11 + 14692: 24,-11 + 14693: 28,-11 + 14694: 29,-11 + 14695: 30,-11 + 14696: 47,-20 + 14697: 46,-20 + 14698: 45,-20 + 14699: 44,-20 + 14700: 49,-20 + 14701: 50,-20 + 14702: 51,-20 + 14703: 52,-20 + 14704: 10,-20 + 14705: 11,-20 + 14706: 12,-20 + 14707: 13,-20 + 14708: 3,-20 + 14709: 4,-20 + 14710: 5,-20 + 14711: 6,-20 + 14712: -8,-20 + 14713: -7,-20 + 14714: -6,-20 + 14715: -5,-20 + 14716: -14,-20 + 14717: -13,-20 + 14718: -12,-20 + 14719: -15,-20 + 14720: -12,-26 + 14721: -12,-25 + 14722: -11,-25 + 14723: -11,-26 + 14724: -10,-26 + 14725: -10,-25 + 14726: -9,-25 + 14727: -9,-26 + 14728: -8,-26 + 14729: -8,-25 + 14730: 6,-25 + 14731: 7,-25 + 14732: 8,-25 + 14733: 9,-25 + 14734: 10,-25 + 14735: 10,-26 + 14736: 9,-26 + 14737: 8,-26 + 14738: 7,-26 + 14739: 6,-26 + 14740: -1,-27 + 14741: -1,-24 + 14742: -1,-25 + 14743: -1,-26 + 14744: -1,-34 + 14745: -1,-33 + 14746: -1,-32 + 14747: -1,-31 + 14748: -1,-35 + 14749: -1,-42 + 14750: -1,-40 + 14751: -1,-39 + 14752: -1,-50 + 14753: -1,-49 + 14754: -1,-48 + 14755: -1,-47 + 14756: -1,-46 + 14757: -1,-45 + 14758: -1,-44 + 14759: -1,-55 + 14760: -1,-54 + 14761: -1,-53 + 14762: -1,-52 + 14763: -1,-59 + 14764: -1,-60 + 14765: -1,-61 + 14766: -19,-12 + 14767: -19,-13 + 14768: -19,-14 + 14769: -19,-15 + 14770: -19,-16 + 14771: -19,-17 + 14772: -19,-2 + 14773: -19,-3 + 14774: -19,-4 + 14775: -19,-5 + 14776: -27,5 + 14777: -26,5 + 14778: -25,5 + 14779: -24,5 + 14780: -23,5 + 14781: -31,5 + 14782: -32,5 + 14783: -33,5 + 14784: -38,5 + 14785: -37,5 + 14786: -36,5 + 14787: -19,61 + 14788: -19,62 + 14789: -19,63 + 14790: -19,64 + 14791: 17,-40 + 14792: 17,-41 + 14793: 17,-42 + 14794: 17,-43 + 14795: 17,-45 + 14796: 17,-44 + 14797: 11,-35 + 14798: 12,-35 + 14799: 13,-35 + 14800: 17,-31 + 14801: 17,-32 + 14802: 17,-34 + 14803: 17,-33 + 14804: 27,-35 + 14805: 26,-35 + 14806: 25,-35 + 14807: 23,-35 + 14808: 22,-35 + 14809: 24,-35 + 14810: 32,-35 + 14811: 36,-35 + 14812: 35,-35 + 14813: 34,-35 + 14814: 33,-35 + 14815: 31,-35 + 14816: 27,-43 + 14817: 27,-44 + 14818: 27,-42 + 14819: 27,-41 + 14820: 27,-40 + 14821: 27,-51 + 14822: 27,-50 + 14823: 27,-49 + 14824: 27,-48 + 14825: 27,-47 + 14826: -18,-35 + 14827: -14,-35 + 14828: -15,-35 + 14829: -16,-35 + 14830: -17,-35 + 14831: -29,-35 + 14832: -28,-35 + 14833: -27,-35 + 14834: -26,-35 + 14835: -25,-35 + 14836: -24,-35 + 14837: -23,-26 + 14838: -23,-27 + 14839: -23,-28 + 14840: -23,-29 + 14841: -23,-30 + 14842: -29,-41 + 14843: -29,-40 + 14844: -29,-39 + 14845: -14,-43 + 14846: -14,-42 + 14847: -14,-41 + 14848: -14,-40 + 14849: -14,-39 + 14850: -14,-53 + 14851: -14,-52 + 14852: -14,-51 + 14853: -14,-50 + 14854: -14,-49 + 14855: -14,-48 + 14856: -14,-47 + 14857: 29,-49 + 14858: 29,-48 + 14859: 29,-47 + 14860: 29,-51 + 14861: 29,-52 + 14862: 29,-53 + 14863: 30,-46 + 14864: 31,-46 + 14865: 32,-46 + 14866: 33,-46 + 14867: 34,-46 + 15110: -30,87 + 15312: -1,-41 + 15461: -42,14 + 15462: -42,16 + 15463: -42,17 + 15464: -42,20 + 15465: -42,21 + 15466: -42,22 + 15467: -42,11 + 15468: -42,10 + 15469: -42,9 + 15482: -42,15 + 18818: -15,-9 + 18819: -14,-9 + 18820: -13,-9 + 18821: -12,-9 + 18822: -9,-9 + 18823: -8,-9 + 18824: -7,-9 + 18825: -6,-9 + 18826: -3,-9 + 18827: -2,-9 + 18828: -1,-9 + 18829: 0,-9 + 18830: 1,-9 + 18831: 4,-9 + 18832: 5,-9 + 18833: 6,-9 + 18834: 7,-9 + 18835: 10,-9 + 18836: 11,-9 + 18837: 12,-9 + 18838: 13,-9 + 19431: -14,28 + 19432: -14,27 + 19433: -14,26 + 19434: -13,26 + 19435: -12,26 + 19436: -11,27 + 19437: -11,28 + 19438: -11,29 + 19439: -11,30 + 19440: -12,30 + 19441: -11,31 + 19442: -11,32 + 19443: -11,33 + 19444: -12,34 + 19445: -13,34 + 19446: -14,34 + 19447: -14,33 + 19448: -14,32 + 19449: -14,31 + 19450: -15,31 + 19451: -15,30 + 19452: -15,29 + 19453: -10,30 + 19454: -9,30 + 19455: -9,34 + 19456: -10,34 + 19457: -9,26 + 19458: -10,26 + 19521: -14,29 + 19695: 34,-14 + 19696: 34,-13 + 19697: 34,-12 + 19698: 34,-11 + 19699: 34,-10 + 19700: 35,-9 + 19701: 36,-9 + 19702: 37,-9 + 19703: 39,-9 + 19704: 38,-9 + 19705: 40,-10 + 19706: 40,-11 + 19707: 40,-12 + 19708: 39,-12 + 19709: 38,-12 + 19710: 36,-12 + 19711: 35,-12 + 19712: 37,-12 + 19713: 35,-15 + 19714: 36,-15 + 19715: 37,-15 + 19716: 38,-15 + 19717: 39,-15 + 19718: 40,-14 + 19719: 40,-13 + 20297: -19,3 - node: angle: 3.141592653589793 rad color: '#4A0000C0' id: Dirt decals: - 13744: -34,-79 - 13745: -35,-79 - 13746: -35,-78 - 13747: -35,-77 - 13748: -34,-77 - 13749: -33,-77 - 13750: -32,-77 - 13751: -31,-77 - 13752: -31,-78 - 13753: -31,-79 - 13754: -32,-80 - 13755: -30,-79 - 13756: -36,-79 - 13757: -36,-78 - 13758: -33,-76 - 13759: -34,-76 - 13760: -35,-76 - 13761: -32,-76 - 13762: -33,-79 - 13763: -34,-80 - 13764: -35,-80 - 13765: -37,-80 - 13766: -37,-77 - 13767: -37,-76 - 13768: -37,-73 - 13769: -29,-73 - 13770: -29,-74 - 13771: -29,-75 - 13772: -33,-73 - 13773: -32,-73 - 13774: -30,-75 + 13742: -34,-79 + 13743: -35,-79 + 13744: -35,-78 + 13745: -35,-77 + 13746: -34,-77 + 13747: -33,-77 + 13748: -32,-77 + 13749: -31,-77 + 13750: -31,-78 + 13751: -31,-79 + 13752: -32,-80 + 13753: -30,-79 + 13754: -36,-79 + 13755: -36,-78 + 13756: -33,-76 + 13757: -34,-76 + 13758: -35,-76 + 13759: -32,-76 + 13760: -33,-79 + 13761: -34,-80 + 13762: -35,-80 + 13763: -37,-80 + 13764: -37,-77 + 13765: -37,-76 + 13766: -37,-73 + 13767: -29,-73 + 13768: -29,-74 + 13769: -29,-75 + 13770: -33,-73 + 13771: -32,-73 + 13772: -30,-75 - node: angle: 3.141592653589793 rad color: '#4A0000FF' id: Dirt decals: - 13741: -34,-78 - 13742: -32,-78 - 13743: -32,-79 + 13739: -34,-78 + 13740: -32,-78 + 13741: -32,-79 - node: color: '#DABC8B7F' id: Dirt decals: - 13512: -40,-68 - 13513: -38,-66 - 13514: -39,-66 - 13515: -41,-66 - 13516: -41,-67 - 13517: -40,-66 - 13518: -41,-65 - 13519: -41,-63 + 13510: -40,-68 + 13511: -38,-66 + 13512: -39,-66 + 13513: -41,-66 + 13514: -41,-67 + 13515: -40,-66 + 13516: -41,-65 + 13517: -41,-63 - node: color: '#DABC8B95' id: Dirt decals: - 13510: -37,-66 - 13511: -37,-67 + 13508: -37,-66 + 13509: -37,-67 - node: color: '#DABC8BA7' id: Dirt decals: - 13520: -39,-65 - 13521: -40,-65 - 13522: -37,-65 - 13523: -38,-65 - 13524: -38,-67 - 13525: -34,-66 - 13526: -34,-65 - 13527: -33,-66 - 13528: -34,-67 - 13529: -34,-68 - 13530: -30,-66 - 13531: -31,-66 - 13532: -30,-65 - 13533: -31,-65 - 13534: -32,-66 - 13535: -32,-66 - 13536: -32,-65 - 13537: -33,-68 - 13538: -33,-67 - 13539: -32,-67 - 13540: -32,-68 - 13541: -31,-68 - 13542: -31,-67 + 13518: -39,-65 + 13519: -40,-65 + 13520: -37,-65 + 13521: -38,-65 + 13522: -38,-67 + 13523: -34,-66 + 13524: -34,-65 + 13525: -33,-66 + 13526: -34,-67 + 13527: -34,-68 + 13528: -30,-66 + 13529: -31,-66 + 13530: -30,-65 + 13531: -31,-65 + 13532: -32,-66 + 13533: -32,-66 + 13534: -32,-65 + 13535: -33,-68 + 13536: -33,-67 + 13537: -32,-67 + 13538: -32,-68 + 13539: -31,-68 + 13540: -31,-67 - node: color: '#DABC8BAE' id: Dirt decals: - 13509: -37,-65 + 13507: -37,-65 - node: color: '#DABC8BD0' id: Dirt decals: - 13505: -37,-68 - 13506: -36,-67 - 13507: -36,-68 - 13508: -36,-66 + 13503: -37,-68 + 13504: -36,-67 + 13505: -36,-68 + 13506: -36,-66 - node: color: '#DC5F31FF' id: Dirt decals: - 18734: 60,-40 - 18735: 59,-40 - 18736: 59,-41 - 18737: 58,-41 - 18738: 60,-41 - 18739: 61,-41 - 18740: 62,-40 - 18741: 62,-41 - 18742: 58,-42 - 18743: 59,-42 - 18744: 60,-42 - 18745: 63,-40 - 18746: 25,-66 - 18747: 26,-67 - 18748: 25,-69 - 18749: 27,-68 - 18750: 27,-67 - 18751: -44,-66 - 18752: -43,-65 - 18753: -44,-64 - 18754: -45,-64 - 18755: -45,-63 - 18756: -46,-63 - 18757: -44,-66 - 18758: -46,-68 - 18759: -46,-69 - 18760: -45,-68 - 18761: -46,-67 - 18762: -44,-65 + 18732: 60,-40 + 18733: 59,-40 + 18734: 59,-41 + 18735: 58,-41 + 18736: 60,-41 + 18737: 61,-41 + 18738: 62,-40 + 18739: 62,-41 + 18740: 58,-42 + 18741: 59,-42 + 18742: 60,-42 + 18743: 63,-40 + 18744: 25,-66 + 18745: 26,-67 + 18746: 25,-69 + 18747: 27,-68 + 18748: 27,-67 + 18749: -44,-66 + 18750: -43,-65 + 18751: -44,-64 + 18752: -45,-64 + 18753: -45,-63 + 18754: -46,-63 + 18755: -44,-66 + 18756: -46,-68 + 18757: -46,-69 + 18758: -45,-68 + 18759: -46,-67 + 18760: -44,-65 - node: color: '#FFFFFF2B' id: Dirt decals: - 16340: -67,-40 - 16341: -68,-40 - 16342: -68,-41 - 16343: -69,-40 - 16344: -66,-40 - 16345: -65,-40 - 16346: -65,-41 - 16347: -64,-41 - 16348: -63,-41 - 16349: -63,-41 - 16350: -63,-42 - 16351: -63,-44 - 16352: -64,-44 - 16353: -65,-44 - 16354: -66,-44 - 16355: -67,-44 - 16356: -68,-46 - 16357: -69,-44 + 16338: -67,-40 + 16339: -68,-40 + 16340: -68,-41 + 16341: -69,-40 + 16342: -66,-40 + 16343: -65,-40 + 16344: -65,-41 + 16345: -64,-41 + 16346: -63,-41 + 16347: -63,-41 + 16348: -63,-42 + 16349: -63,-44 + 16350: -64,-44 + 16351: -65,-44 + 16352: -66,-44 + 16353: -67,-44 + 16354: -68,-46 + 16355: -69,-44 - node: color: '#FFFFFF4D' id: Dirt decals: - 18453: -59,-46 - 18454: -60,-46 - 18455: -60,-45 - 18456: -60,-44 - 18457: -59,-44 - 18458: -59,-45 - 18459: -58,-45 - 18460: -58,-44 - 18461: -60,-43 - 18462: -60,-43 + 18451: -59,-46 + 18452: -60,-46 + 18453: -60,-45 + 18454: -60,-44 + 18455: -59,-44 + 18456: -59,-45 + 18457: -58,-45 + 18458: -58,-44 + 18459: -60,-43 + 18460: -60,-43 - node: color: '#FFFFFF50' id: Dirt decals: - 16055: 91,-1 - 16056: 92,-1 - 16057: 93,-1 - 16058: 92,0 - 16059: 91,7 - 16060: 91,6 - 16061: 92,7 - 16062: 96,5 - 16063: 97,5 - 16064: 97,4 - 16065: 97,3 - 16066: 96,4 - 16113: 83,4 - 16114: 84,4 - 16115: 85,5 - 16116: 85,4 - 16117: 86,4 - 16118: 86,5 - 16119: 87,6 - 16120: 87,5 - 16121: 89,9 - 16122: 90,9 + 16053: 91,-1 + 16054: 92,-1 + 16055: 93,-1 + 16056: 92,0 + 16057: 91,7 + 16058: 91,6 + 16059: 92,7 + 16060: 96,5 + 16061: 97,5 + 16062: 97,4 + 16063: 97,3 + 16064: 96,4 + 16111: 83,4 + 16112: 84,4 + 16113: 85,5 + 16114: 85,4 + 16115: 86,4 + 16116: 86,5 + 16117: 87,6 + 16118: 87,5 + 16119: 89,9 + 16120: 90,9 + 16121: 91,9 + 16122: 92,10 16123: 91,9 - 16124: 92,10 - 16125: 91,9 - node: color: '#FFFFFF60' id: Dirt decals: - 16686: -41,-11 - 16687: -40,-11 - 16688: -39,-10 - 16689: -39,-10 - 16690: -40,-10 - 16691: -40,-9 - 16692: -41,-9 - 16693: -41,-10 - 16694: -39,-9 - 16695: -39,-11 - 16696: -38,-11 + 16684: -41,-11 + 16685: -40,-11 + 16686: -39,-10 + 16687: -39,-10 + 16688: -40,-10 + 16689: -40,-9 + 16690: -41,-9 + 16691: -41,-10 + 16692: -39,-9 + 16693: -39,-11 + 16694: -38,-11 - node: color: '#FFFFFF66' id: Dirt decals: - 16205: -62,-43 - 16206: -62,-42 - 16207: -62,-44 - 16208: -63,-43 - 16209: -72,-42 - 16210: -71,-42 - 16211: -70,-42 - 16212: -71,-41 - 16213: -72,-41 - 16214: -72,-40 - 16215: -71,-40 - 16216: -70,-40 - 16217: -70,-43 - 16218: -70,-44 - 16219: -70,-45 - 16220: -69,-45 - 16221: -68,-45 - 16222: -68,-46 - 16223: -69,-46 - 16224: -66,-42 - 16225: -66,-43 - 16226: -65,-43 - 16227: -66,-41 - 16228: -65,-42 - 16229: -68,-43 - 16230: -67,-43 - 16231: -68,-42 - 16232: -67,-41 - 16233: -68,-44 - 16234: -64,-42 - 16235: -64,-43 - 16236: -63,-43 + 16203: -62,-43 + 16204: -62,-42 + 16205: -62,-44 + 16206: -63,-43 + 16207: -72,-42 + 16208: -71,-42 + 16209: -70,-42 + 16210: -71,-41 + 16211: -72,-41 + 16212: -72,-40 + 16213: -71,-40 + 16214: -70,-40 + 16215: -70,-43 + 16216: -70,-44 + 16217: -70,-45 + 16218: -69,-45 + 16219: -68,-45 + 16220: -68,-46 + 16221: -69,-46 + 16222: -66,-42 + 16223: -66,-43 + 16224: -65,-43 + 16225: -66,-41 + 16226: -65,-42 + 16227: -68,-43 + 16228: -67,-43 + 16229: -68,-42 + 16230: -67,-41 + 16231: -68,-44 + 16232: -64,-42 + 16233: -64,-43 + 16234: -63,-43 - node: color: '#FFFFFF6C' id: Dirt decals: - 18872: 39,-53 - 18873: 40,-53 - 18874: 39,-52 - 18875: 40,-52 - 18876: 40,-52 - 18877: 40,-51 - 18878: 39,-51 - 18879: 39,-50 - 18880: 41,-50 - 18881: 42,-50 - 18882: 42,-51 - 18883: 41,-51 - 18884: 41,-52 - 18885: 41,-53 - 18886: 42,-53 - 18887: 42,-54 - 18888: 42,-54 - 18889: 41,-55 - 18890: 41,-56 - 18891: 42,-56 - 18892: 39,-55 - 18893: 39,-54 - 18894: 41,-54 - 18895: 41,-54 - 18896: 44,-50 - 18897: 45,-50 - 18898: 45,-51 - 18899: 44,-51 - 18900: 44,-53 - 18901: 45,-54 - 18902: 45,-55 - 18903: 45,-55 - 18904: 44,-54 - 18905: 44,-53 - 18906: 45,-53 - 18907: 43,-50 - 18908: 43,-51 - 18909: 43,-52 - 18910: 43,-54 - 18911: 43,-54 - 18912: 43,-56 - 18913: 46,-55 - 18914: 46,-56 - 18915: 46,-52 - 18916: 50,-50 - 18917: 50,-51 - 18918: 50,-52 - 18919: 49,-53 - 18920: 49,-53 - 18921: 51,-53 - 18922: 51,-52 - 18923: 50,-53 - 18924: 50,-55 - 18925: 49,-55 - 18926: 49,-56 - 18927: 50,-56 - 18928: 51,-56 - 18929: 51,-54 - 18930: 49,-54 - 18931: 52,-56 - 18932: 52,-55 - 18933: 52,-54 - 18934: 52,-53 - 18935: 52,-52 - 18936: 52,-51 - 18937: 52,-51 - 18938: 52,-50 - 18939: 53,-51 - 18940: 53,-53 - 18941: 53,-54 - 18942: 53,-55 - 18943: 53,-56 + 18870: 39,-53 + 18871: 40,-53 + 18872: 39,-52 + 18873: 40,-52 + 18874: 40,-52 + 18875: 40,-51 + 18876: 39,-51 + 18877: 39,-50 + 18878: 41,-50 + 18879: 42,-50 + 18880: 42,-51 + 18881: 41,-51 + 18882: 41,-52 + 18883: 41,-53 + 18884: 42,-53 + 18885: 42,-54 + 18886: 42,-54 + 18887: 41,-55 + 18888: 41,-56 + 18889: 42,-56 + 18890: 39,-55 + 18891: 39,-54 + 18892: 41,-54 + 18893: 41,-54 + 18894: 44,-50 + 18895: 45,-50 + 18896: 45,-51 + 18897: 44,-51 + 18898: 44,-53 + 18899: 45,-54 + 18900: 45,-55 + 18901: 45,-55 + 18902: 44,-54 + 18903: 44,-53 + 18904: 45,-53 + 18905: 43,-50 + 18906: 43,-51 + 18907: 43,-52 + 18908: 43,-54 + 18909: 43,-54 + 18910: 43,-56 + 18911: 46,-55 + 18912: 46,-56 + 18913: 46,-52 + 18914: 50,-50 + 18915: 50,-51 + 18916: 50,-52 + 18917: 49,-53 + 18918: 49,-53 + 18919: 51,-53 + 18920: 51,-52 + 18921: 50,-53 + 18922: 50,-55 + 18923: 49,-55 + 18924: 49,-56 + 18925: 50,-56 + 18926: 51,-56 + 18927: 51,-54 + 18928: 49,-54 + 18929: 52,-56 + 18930: 52,-55 + 18931: 52,-54 + 18932: 52,-53 + 18933: 52,-52 + 18934: 52,-51 + 18935: 52,-51 + 18936: 52,-50 + 18937: 53,-51 + 18938: 53,-53 + 18939: 53,-54 + 18940: 53,-55 + 18941: 53,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: Dirt decals: - 13837: -34,-63 - 13838: -32,-63 - 13839: -33,-62 - 13840: -33,-61 - 13841: -33,-60 - 13842: -34,-61 - 13843: -31,-61 - 13844: -31,-60 + 13835: -34,-63 + 13836: -32,-63 + 13837: -33,-62 + 13838: -33,-61 + 13839: -33,-60 + 13840: -34,-61 + 13841: -31,-61 + 13842: -31,-60 - node: color: '#FFFFFFFF' id: Dirt decals: 649: 38,-21 880: -32,49 - 3920: 18,70 - 3921: 23,66 - 3961: 15,60 - 3964: 20,61 - 3991: -34,59 - 3992: -35,59 - 3993: -34,60 - 3994: -38,60 - 3995: -38,59 - 4020: -32,62 - 4023: -24,65 - 11136: 32,-68 - 11137: 41,-67 - 11138: 40,-67 - 11139: 43,-64 - 11140: 45,-62 - 11141: 41,-60 - 11142: 41,-61 - 11143: 42,-75 - 11144: 35,-71 - 11145: 36,-71 - 11146: 35,-70 - 11147: 34,-65 - 11148: 31,-61 - 11149: 32,-61 - 11150: 32,-61 - 11172: 27,-55 - 13145: 43,-33 - 13203: 39,-53 - 13312: 52,-37 - 13321: 52,-37 - 13356: 56,-36 - 13446: -33,-65 - 13543: -37,-64 - 13546: -41,-64 - 19870: -30,-23 - 19871: -29,-23 - 19872: -28,-23 - 19873: -29,-24 - 19874: -30,-24 - 20008: -71,-38 - 20009: -72,-37 - 20010: -72,-35 - 20011: -72,-34 - 20012: -71,-34 - 20013: -67,-34 - 20014: -65,-34 - 20015: -68,-34 - 20016: -62,-37 - 20017: -68,-38 - 20018: -69,-38 - 20076: 33,39 - 20077: 34,39 - 20078: 34,38 - 20079: 36,39 - 21546: -60,-25 - 21547: -60,-25 - 21548: -63,-23 - 21549: -64,-23 - 21550: -64,-23 - 21551: -63,-23 - 21552: -62,-27 - 21553: -62,-27 - 21554: -62,-27 - 21555: -62,-30 + 3918: 18,70 + 3919: 23,66 + 3959: 15,60 + 3962: 20,61 + 3989: -34,59 + 3990: -35,59 + 3991: -34,60 + 3992: -38,60 + 3993: -38,59 + 4018: -32,62 + 4021: -24,65 + 11134: 32,-68 + 11135: 41,-67 + 11136: 40,-67 + 11137: 43,-64 + 11138: 45,-62 + 11139: 41,-60 + 11140: 41,-61 + 11141: 42,-75 + 11142: 35,-71 + 11143: 36,-71 + 11144: 35,-70 + 11145: 34,-65 + 11146: 31,-61 + 11147: 32,-61 + 11148: 32,-61 + 11170: 27,-55 + 13143: 43,-33 + 13201: 39,-53 + 13310: 52,-37 + 13319: 52,-37 + 13354: 56,-36 + 13444: -33,-65 + 13541: -37,-64 + 13544: -41,-64 + 19868: -30,-23 + 19869: -29,-23 + 19870: -28,-23 + 19871: -29,-24 + 19872: -30,-24 + 20006: -71,-38 + 20007: -72,-37 + 20008: -72,-35 + 20009: -72,-34 + 20010: -71,-34 + 20011: -67,-34 + 20012: -65,-34 + 20013: -68,-34 + 20014: -62,-37 + 20015: -68,-38 + 20016: -69,-38 + 20074: 33,39 + 20075: 34,39 + 20076: 34,38 + 20077: 36,39 + 21515: -60,-25 + 21516: -60,-25 + 21517: -63,-23 + 21518: -64,-23 + 21519: -64,-23 + 21520: -63,-23 + 21521: -62,-27 + 21522: -62,-27 + 21523: -62,-27 + 21524: -62,-30 - node: cleanable: True color: '#FFFFFFFF' @@ -18694,703 +18689,703 @@ entities: 1658: -58,-42 1659: -58,-41 1660: -60,-42 - 1841: -72,-28 - 1842: -69,-25 - 1843: -70,-28 - 1844: -70,-29 - 1845: -70,-25 - 1846: -69,-23 - 1847: -69,-24 - 1933: 34,-20 - 1934: 33,-20 - 1935: 33,-19 - 1936: 36,-21 - 1937: 35,-23 - 1938: 37,-23 - 1939: 37,-24 - 1940: 41,-24 - 1941: 40,-24 - 1942: 40,-27 - 1943: 41,-28 - 1944: 43,-29 - 1945: 26,-20 - 1946: 24,-21 + 1839: -72,-28 + 1840: -69,-25 + 1841: -70,-28 + 1842: -70,-29 + 1843: -70,-25 + 1844: -69,-23 + 1845: -69,-24 + 1931: 34,-20 + 1932: 33,-20 + 1933: 33,-19 + 1934: 36,-21 + 1935: 35,-23 + 1936: 37,-23 + 1937: 37,-24 + 1938: 41,-24 + 1939: 40,-24 + 1940: 40,-27 + 1941: 41,-28 + 1942: 43,-29 + 1943: 26,-20 + 1944: 24,-21 + 1945: 23,-23 + 1946: 24,-23 1947: 23,-23 - 1948: 24,-23 - 1949: 23,-23 - 1950: 22,-21 - 1951: 21,-22 - 1952: 20,-21 - 1953: 21,-21 - 1954: 22,-18 - 1955: 52,-29 - 1956: 52,-29 - 1957: 52,-31 - 1958: 52,-34 - 1959: 51,-39 - 1960: 52,-42 - 1961: 52,-45 - 1962: 51,-48 - 1963: 51,-48 - 1964: 47,-48 - 1965: 44,-48 - 1966: 41,-48 - 1967: 37,-47 - 1968: 36,-49 - 1969: 37,-56 - 1970: 34,-56 - 1971: 32,-55 - 1972: 30,-55 - 4040: 11,79 - 16380: -71,-35 - 16381: -67,-36 - 16382: -71,-37 - 16383: -66,-35 - 16384: -63,-37 - 16385: -63,-34 - 16386: -63,-34 - 16387: -69,-37 - 16388: -69,-35 - 16389: -70,-36 - 16390: -66,-37 - 16391: -65,-37 - 16392: -65,-36 - 16393: -65,-35 - 16394: -69,-36 - 16395: -69,-36 - 16397: -63,-36 - 16403: -68,-35 - 16404: -65,-37 - 16405: -63,-36 + 1948: 22,-21 + 1949: 21,-22 + 1950: 20,-21 + 1951: 21,-21 + 1952: 22,-18 + 1953: 52,-29 + 1954: 52,-29 + 1955: 52,-31 + 1956: 52,-34 + 1957: 51,-39 + 1958: 52,-42 + 1959: 52,-45 + 1960: 51,-48 + 1961: 51,-48 + 1962: 47,-48 + 1963: 44,-48 + 1964: 41,-48 + 1965: 37,-47 + 1966: 36,-49 + 1967: 37,-56 + 1968: 34,-56 + 1969: 32,-55 + 1970: 30,-55 + 4038: 11,79 + 16378: -71,-35 + 16379: -67,-36 + 16380: -71,-37 + 16381: -66,-35 + 16382: -63,-37 + 16383: -63,-34 + 16384: -63,-34 + 16385: -69,-37 + 16386: -69,-35 + 16387: -70,-36 + 16388: -66,-37 + 16389: -65,-37 + 16390: -65,-36 + 16391: -65,-35 + 16392: -69,-36 + 16393: -69,-36 + 16395: -63,-36 + 16401: -68,-35 + 16402: -65,-37 + 16403: -63,-36 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Dirt decals: - 13696: -33,-72 - 13834: -30,-61 + 13694: -33,-72 + 13832: -30,-61 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavy decals: - 13845: -32,-60 - 13846: -32,-61 - 13847: -34,-60 - 13848: -32,-62 - 13849: -31,-62 - 13875: -39,-56 - 13876: -39,-55 - 13878: -38,-56 - 13879: -38,-55 - 13880: -38,-55 - 13882: -37,-55 - 13883: -37,-56 + 13843: -32,-60 + 13844: -32,-61 + 13845: -34,-60 + 13846: -32,-62 + 13847: -31,-62 + 13873: -39,-56 + 13874: -39,-55 + 13876: -38,-56 + 13877: -38,-55 + 13878: -38,-55 + 13880: -37,-55 + 13881: -37,-56 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 3869: 23,71 - 3871: 17,69 - 3901: 18,67 - 3902: 20,66 - 3903: 19,66 - 3904: 23,67 - 3915: 23,67 - 3916: 22,67 - 3956: 21,61 - 3957: 19,63 - 3962: 12,59 - 3963: 18,62 - 3996: -38,62 - 3997: -39,62 - 3998: -42,61 - 4002: -37,60 - 4003: -36,59 - 4004: -36,60 - 4021: -30,62 - 4022: -28,60 - 4024: -24,63 - 11002: 35,-61 - 11003: 34,-60 - 11004: 31,-68 - 11005: 30,-70 - 11006: 29,-70 - 11007: 27,-67 - 11008: 27,-66 - 11009: 29,-66 - 11010: 33,-66 - 11011: 33,-66 - 11012: 40,-71 - 11013: 40,-71 - 11014: 38,-72 - 11015: 38,-71 - 11016: 39,-70 - 11017: 40,-70 - 11018: 41,-73 - 11019: 41,-68 - 11020: 41,-68 - 11021: 41,-66 - 11022: 39,-66 - 11023: 38,-67 - 11024: 35,-72 - 11025: 34,-71 - 11026: 35,-67 - 11027: 37,-66 - 11028: 35,-65 - 11029: 34,-63 - 11030: 35,-61 - 11031: 38,-62 - 11032: 40,-63 - 11033: 40,-61 - 11034: 40,-60 - 11035: 42,-62 - 11036: 43,-63 - 11170: 27,-56 - 11171: 27,-56 - 11176: 26,-55 - 11177: 26,-55 - 11178: 28,-55 - 11179: 28,-58 - 11180: 40,-68 - 11181: 38,-68 - 11277: -60,-39 - 11278: -60,-42 - 11279: -60,-41 - 11280: -60,-41 - 12881: -46,-23 - 12882: -47,-23 - 12883: -47,-22 - 12884: -46,-22 - 12885: -45,-22 - 12886: -45,-23 - 12963: -47,-25 - 12964: -46,-25 - 12965: -45,-26 - 12966: -45,-27 - 12967: -46,-29 - 12968: -45,-29 - 12969: -46,-30 - 12970: -46,-30 - 12971: -45,-31 - 12972: -46,-31 - 12973: -46,-28 - 12974: -46,-28 - 12975: -42,-29 - 12976: -42,-29 - 12977: -41,-27 - 12978: -41,-27 - 12979: -40,-28 - 12980: -41,-29 - 12981: -42,-27 - 12982: -42,-26 - 12983: -41,-28 - 12984: -41,-29 - 12985: -40,-27 - 12986: -39,-27 - 12987: -38,-26 - 12988: -37,-27 - 12989: -37,-28 - 12990: -39,-29 - 12991: -39,-29 - 12992: -36,-29 - 12993: -36,-28 - 12994: -37,-27 - 12995: -38,-27 - 12996: -35,-29 - 12997: -34,-29 - 12998: -35,-27 - 12999: -35,-27 - 13027: -40,-24 - 13028: -39,-23 - 13029: -39,-22 - 13030: -38,-23 - 13031: -38,-24 - 13032: -37,-23 - 13033: -37,-22 - 13034: -34,-22 - 13035: -34,-24 - 13036: -33,-24 - 13037: -33,-23 - 13038: -43,-23 - 13039: -43,-22 - 13040: -42,-22 - 13041: -41,-23 - 13042: -43,-27 - 13043: -42,-28 - 13044: -42,-29 - 13045: -43,-28 - 13046: -40,-27 - 13047: -39,-29 - 13048: -37,-29 - 13049: -36,-27 - 13050: -35,-28 - 13051: -38,-30 - 13052: -38,-30 - 13053: -34,-28 - 13054: -34,-28 - 13055: -34,-30 - 13056: -35,-29 - 13057: -37,-27 - 13058: -38,-26 - 13059: -40,-29 - 13060: -42,-30 - 13061: -42,-31 - 13062: -42,-32 - 13063: -43,-33 - 13064: -40,-33 - 13065: -42,-34 - 13066: -37,-32 - 13067: -37,-32 - 13068: -39,-34 - 13069: -39,-32 - 13070: -38,-34 - 13071: -37,-34 - 13072: -34,-33 - 13073: -34,-32 - 13074: -33,-33 - 13075: -35,-34 - 13076: -33,-34 - 13077: -35,-32 - 13078: -34,-33 - 13102: -29,-27 - 13103: -30,-27 - 13104: -30,-26 - 13105: -27,-26 - 13106: -27,-27 - 13107: -27,-30 - 13108: -26,-31 - 13109: -28,-31 - 13110: -30,-31 - 13111: -30,-29 - 13112: -31,-28 - 13113: -31,-29 - 13114: -31,-31 - 13115: -28,-31 - 13116: -27,-31 - 13117: -27,-32 - 13118: -30,-32 - 13119: -30,-32 - 13120: -30,-31 - 13121: -29,-31 - 13122: -29,-31 - 13123: -30,-30 - 13124: -30,-29 - 13125: -30,-27 - 13146: 43,-34 - 13147: 44,-33 - 13148: 42,-31 - 13149: 44,-32 - 13150: 44,-31 - 13151: 45,-32 - 13152: 45,-33 - 13153: 46,-32 - 13154: 47,-31 + 3867: 23,71 + 3869: 17,69 + 3899: 18,67 + 3900: 20,66 + 3901: 19,66 + 3902: 23,67 + 3913: 23,67 + 3914: 22,67 + 3954: 21,61 + 3955: 19,63 + 3960: 12,59 + 3961: 18,62 + 3994: -38,62 + 3995: -39,62 + 3996: -42,61 + 4000: -37,60 + 4001: -36,59 + 4002: -36,60 + 4019: -30,62 + 4020: -28,60 + 4022: -24,63 + 11000: 35,-61 + 11001: 34,-60 + 11002: 31,-68 + 11003: 30,-70 + 11004: 29,-70 + 11005: 27,-67 + 11006: 27,-66 + 11007: 29,-66 + 11008: 33,-66 + 11009: 33,-66 + 11010: 40,-71 + 11011: 40,-71 + 11012: 38,-72 + 11013: 38,-71 + 11014: 39,-70 + 11015: 40,-70 + 11016: 41,-73 + 11017: 41,-68 + 11018: 41,-68 + 11019: 41,-66 + 11020: 39,-66 + 11021: 38,-67 + 11022: 35,-72 + 11023: 34,-71 + 11024: 35,-67 + 11025: 37,-66 + 11026: 35,-65 + 11027: 34,-63 + 11028: 35,-61 + 11029: 38,-62 + 11030: 40,-63 + 11031: 40,-61 + 11032: 40,-60 + 11033: 42,-62 + 11034: 43,-63 + 11168: 27,-56 + 11169: 27,-56 + 11174: 26,-55 + 11175: 26,-55 + 11176: 28,-55 + 11177: 28,-58 + 11178: 40,-68 + 11179: 38,-68 + 11275: -60,-39 + 11276: -60,-42 + 11277: -60,-41 + 11278: -60,-41 + 12879: -46,-23 + 12880: -47,-23 + 12881: -47,-22 + 12882: -46,-22 + 12883: -45,-22 + 12884: -45,-23 + 12961: -47,-25 + 12962: -46,-25 + 12963: -45,-26 + 12964: -45,-27 + 12965: -46,-29 + 12966: -45,-29 + 12967: -46,-30 + 12968: -46,-30 + 12969: -45,-31 + 12970: -46,-31 + 12971: -46,-28 + 12972: -46,-28 + 12973: -42,-29 + 12974: -42,-29 + 12975: -41,-27 + 12976: -41,-27 + 12977: -40,-28 + 12978: -41,-29 + 12979: -42,-27 + 12980: -42,-26 + 12981: -41,-28 + 12982: -41,-29 + 12983: -40,-27 + 12984: -39,-27 + 12985: -38,-26 + 12986: -37,-27 + 12987: -37,-28 + 12988: -39,-29 + 12989: -39,-29 + 12990: -36,-29 + 12991: -36,-28 + 12992: -37,-27 + 12993: -38,-27 + 12994: -35,-29 + 12995: -34,-29 + 12996: -35,-27 + 12997: -35,-27 + 13025: -40,-24 + 13026: -39,-23 + 13027: -39,-22 + 13028: -38,-23 + 13029: -38,-24 + 13030: -37,-23 + 13031: -37,-22 + 13032: -34,-22 + 13033: -34,-24 + 13034: -33,-24 + 13035: -33,-23 + 13036: -43,-23 + 13037: -43,-22 + 13038: -42,-22 + 13039: -41,-23 + 13040: -43,-27 + 13041: -42,-28 + 13042: -42,-29 + 13043: -43,-28 + 13044: -40,-27 + 13045: -39,-29 + 13046: -37,-29 + 13047: -36,-27 + 13048: -35,-28 + 13049: -38,-30 + 13050: -38,-30 + 13051: -34,-28 + 13052: -34,-28 + 13053: -34,-30 + 13054: -35,-29 + 13055: -37,-27 + 13056: -38,-26 + 13057: -40,-29 + 13058: -42,-30 + 13059: -42,-31 + 13060: -42,-32 + 13061: -43,-33 + 13062: -40,-33 + 13063: -42,-34 + 13064: -37,-32 + 13065: -37,-32 + 13066: -39,-34 + 13067: -39,-32 + 13068: -38,-34 + 13069: -37,-34 + 13070: -34,-33 + 13071: -34,-32 + 13072: -33,-33 + 13073: -35,-34 + 13074: -33,-34 + 13075: -35,-32 + 13076: -34,-33 + 13100: -29,-27 + 13101: -30,-27 + 13102: -30,-26 + 13103: -27,-26 + 13104: -27,-27 + 13105: -27,-30 + 13106: -26,-31 + 13107: -28,-31 + 13108: -30,-31 + 13109: -30,-29 + 13110: -31,-28 + 13111: -31,-29 + 13112: -31,-31 + 13113: -28,-31 + 13114: -27,-31 + 13115: -27,-32 + 13116: -30,-32 + 13117: -30,-32 + 13118: -30,-31 + 13119: -29,-31 + 13120: -29,-31 + 13121: -30,-30 + 13122: -30,-29 + 13123: -30,-27 + 13144: 43,-34 + 13145: 44,-33 + 13146: 42,-31 + 13147: 44,-32 + 13148: 44,-31 + 13149: 45,-32 + 13150: 45,-33 + 13151: 46,-32 + 13152: 47,-31 + 13153: 48,-32 + 13154: 48,-33 13155: 48,-32 - 13156: 48,-33 - 13157: 48,-32 - 13158: 47,-34 - 13159: 46,-35 - 13160: 46,-35 - 13161: 48,-35 - 13162: 48,-36 - 13163: 48,-36 - 13164: 47,-36 - 13165: 47,-36 - 13166: 44,-35 - 13167: 45,-33 - 13168: 46,-33 - 13169: 48,-33 - 13170: 48,-34 + 13156: 47,-34 + 13157: 46,-35 + 13158: 46,-35 + 13159: 48,-35 + 13160: 48,-36 + 13161: 48,-36 + 13162: 47,-36 + 13163: 47,-36 + 13164: 44,-35 + 13165: 45,-33 + 13166: 46,-33 + 13167: 48,-33 + 13168: 48,-34 + 13169: 49,-34 + 13170: 49,-33 13171: 49,-34 - 13172: 49,-33 - 13173: 49,-34 - 13174: 49,-35 - 13175: 47,-33 - 13176: 47,-32 - 13202: 48,-31 - 13276: 39,-51 - 13277: 41,-52 - 13278: 41,-53 - 13279: 46,-53 - 13280: 47,-53 - 13281: 46,-54 - 13282: 46,-51 - 13283: 46,-52 - 13311: 52,-37 - 13322: 52,-37 - 13323: 53,-36 - 13325: 55,-39 - 13326: 56,-39 - 13327: 55,-38 - 13328: 56,-36 - 13329: 53,-35 - 13344: 55,-36 - 13345: 54,-36 - 13346: 53,-37 - 13347: 53,-38 - 13348: 54,-38 - 13349: 54,-37 - 13350: 54,-35 - 13447: -37,-63 - 13448: -36,-62 - 13465: -38,-63 - 13466: -38,-63 - 13467: -37,-63 - 13468: -38,-62 - 13469: -38,-62 - 13470: -38,-61 - 13471: -37,-60 - 13472: -36,-60 - 13473: -38,-60 - 13474: -38,-61 - 13475: -37,-62 - 13476: -37,-62 - 13477: -36,-61 - 13478: -36,-63 - 13479: -36,-63 - 13480: -37,-61 - 13496: -41,-62 - 13497: -40,-63 - 13544: -37,-64 - 13545: -41,-64 - 13550: -37,-59 - 16067: 76,0 - 16068: 77,0 - 16069: 78,0 - 16082: 99,-2 - 16083: 99,-3 - 16084: 99,-4 - 16085: 100,-4 - 16086: 100,-4 - 16087: 100,-2 - 16100: 91,-3 - 16101: 84,2 - 16106: 83,-3 - 16107: 83,-4 - 16108: 84,-4 - 16109: 88,-3 - 16110: 87,-4 - 16126: 89,9 - 16127: 89,10 - 16128: 91,10 - 16129: 93,10 - 16130: 93,9 - 16131: 92,9 - 16135: 76,4 - 16136: 76,6 - 16137: 93,6 - 16143: 95,7 - 16144: 97,7 - 16145: 97,6 - 16248: -71,-40 - 16249: -70,-40 - 16250: -70,-41 - 16251: -69,-41 - 16252: -69,-42 + 13172: 49,-35 + 13173: 47,-33 + 13174: 47,-32 + 13200: 48,-31 + 13274: 39,-51 + 13275: 41,-52 + 13276: 41,-53 + 13277: 46,-53 + 13278: 47,-53 + 13279: 46,-54 + 13280: 46,-51 + 13281: 46,-52 + 13309: 52,-37 + 13320: 52,-37 + 13321: 53,-36 + 13323: 55,-39 + 13324: 56,-39 + 13325: 55,-38 + 13326: 56,-36 + 13327: 53,-35 + 13342: 55,-36 + 13343: 54,-36 + 13344: 53,-37 + 13345: 53,-38 + 13346: 54,-38 + 13347: 54,-37 + 13348: 54,-35 + 13445: -37,-63 + 13446: -36,-62 + 13463: -38,-63 + 13464: -38,-63 + 13465: -37,-63 + 13466: -38,-62 + 13467: -38,-62 + 13468: -38,-61 + 13469: -37,-60 + 13470: -36,-60 + 13471: -38,-60 + 13472: -38,-61 + 13473: -37,-62 + 13474: -37,-62 + 13475: -36,-61 + 13476: -36,-63 + 13477: -36,-63 + 13478: -37,-61 + 13494: -41,-62 + 13495: -40,-63 + 13542: -37,-64 + 13543: -41,-64 + 13548: -37,-59 + 16065: 76,0 + 16066: 77,0 + 16067: 78,0 + 16080: 99,-2 + 16081: 99,-3 + 16082: 99,-4 + 16083: 100,-4 + 16084: 100,-4 + 16085: 100,-2 + 16098: 91,-3 + 16099: 84,2 + 16104: 83,-3 + 16105: 83,-4 + 16106: 84,-4 + 16107: 88,-3 + 16108: 87,-4 + 16124: 89,9 + 16125: 89,10 + 16126: 91,10 + 16127: 93,10 + 16128: 93,9 + 16129: 92,9 + 16133: 76,4 + 16134: 76,6 + 16135: 93,6 + 16141: 95,7 + 16142: 97,7 + 16143: 97,6 + 16246: -71,-40 + 16247: -70,-40 + 16248: -70,-41 + 16249: -69,-41 + 16250: -69,-42 + 16251: -70,-43 + 16252: -70,-43 16253: -70,-43 - 16254: -70,-43 - 16255: -70,-43 - 16256: -66,-41 - 16257: -64,-40 - 16258: -62,-40 - 16259: -62,-41 - 16260: -63,-43 - 16261: -65,-43 - 16262: -66,-43 - 16263: -68,-45 - 16264: -69,-46 - 16265: -70,-46 - 16280: -67,-46 - 16281: -66,-46 - 16282: -66,-47 - 16283: -65,-48 - 16284: -65,-47 - 16285: -64,-46 - 16286: -63,-47 - 16287: -62,-47 - 16288: -62,-48 - 16409: -60,-49 - 16410: -60,-48 - 16411: -59,-50 - 16421: 10,69 - 16422: 10,70 - 16423: 11,70 - 16424: 11,69 - 16425: 10,67 - 16426: 11,66 - 16427: 12,66 - 16428: 12,68 - 16465: -39,-7 - 16466: -39,-6 - 16467: -40,-6 - 16468: -40,-7 - 16479: -39,1 - 16480: -39,1 - 16481: -38,0 - 16482: -38,0 - 16483: -37,2 - 16484: -37,2 - 16485: -39,0 - 16486: -37,1 - 16487: -37,2 - 16494: -43,-12 - 16495: -43,-11 - 16496: -43,-10 - 16497: -43,-10 - 16498: -44,-12 - 16499: -44,-12 - 16500: -43,-10 - 16501: -42,-9 - 16502: -42,-10 - 16503: -43,-12 - 16504: -44,-13 - 16505: -44,-13 - 16506: -44,-14 - 16507: -44,-16 - 16508: -44,-17 - 16509: -44,-18 - 16510: -44,-20 - 16511: -42,-20 - 16512: -42,-20 - 16513: -39,-20 - 16514: -37,-20 - 16515: -36,-20 - 16516: -36,-20 - 16517: -38,-20 - 16518: -38,-20 - 16519: -41,-20 - 16520: -42,-20 - 16521: -43,-20 - 16522: -44,-20 - 16523: -36,-20 - 16524: -31,-20 - 16525: -30,-20 - 16526: -30,-20 - 16527: -32,-20 - 16528: -32,-20 - 16529: -32,-18 - 16530: -31,-18 - 16531: -30,-18 - 16532: -29,-18 - 16533: -28,-18 - 16534: -28,-19 - 16535: -28,-20 - 16536: -29,-20 - 16537: -24,-22 - 16538: -24,-22 - 16539: -25,-22 - 16540: -25,-22 - 16541: -24,-21 - 16542: -23,-21 - 16543: -23,-22 - 16544: -22,-22 - 16545: -22,-21 - 16546: -23,-21 - 16547: -25,-21 - 16548: -25,-20 - 16549: -22,-20 - 16550: -22,-20 - 16551: -29,-18 - 17274: -2,32 - 17275: -1,32 - 17276: -1,32 - 17277: -2,27 - 17278: -2,27 + 16254: -66,-41 + 16255: -64,-40 + 16256: -62,-40 + 16257: -62,-41 + 16258: -63,-43 + 16259: -65,-43 + 16260: -66,-43 + 16261: -68,-45 + 16262: -69,-46 + 16263: -70,-46 + 16278: -67,-46 + 16279: -66,-46 + 16280: -66,-47 + 16281: -65,-48 + 16282: -65,-47 + 16283: -64,-46 + 16284: -63,-47 + 16285: -62,-47 + 16286: -62,-48 + 16407: -60,-49 + 16408: -60,-48 + 16409: -59,-50 + 16419: 10,69 + 16420: 10,70 + 16421: 11,70 + 16422: 11,69 + 16423: 10,67 + 16424: 11,66 + 16425: 12,66 + 16426: 12,68 + 16463: -39,-7 + 16464: -39,-6 + 16465: -40,-6 + 16466: -40,-7 + 16477: -39,1 + 16478: -39,1 + 16479: -38,0 + 16480: -38,0 + 16481: -37,2 + 16482: -37,2 + 16483: -39,0 + 16484: -37,1 + 16485: -37,2 + 16492: -43,-12 + 16493: -43,-11 + 16494: -43,-10 + 16495: -43,-10 + 16496: -44,-12 + 16497: -44,-12 + 16498: -43,-10 + 16499: -42,-9 + 16500: -42,-10 + 16501: -43,-12 + 16502: -44,-13 + 16503: -44,-13 + 16504: -44,-14 + 16505: -44,-16 + 16506: -44,-17 + 16507: -44,-18 + 16508: -44,-20 + 16509: -42,-20 + 16510: -42,-20 + 16511: -39,-20 + 16512: -37,-20 + 16513: -36,-20 + 16514: -36,-20 + 16515: -38,-20 + 16516: -38,-20 + 16517: -41,-20 + 16518: -42,-20 + 16519: -43,-20 + 16520: -44,-20 + 16521: -36,-20 + 16522: -31,-20 + 16523: -30,-20 + 16524: -30,-20 + 16525: -32,-20 + 16526: -32,-20 + 16527: -32,-18 + 16528: -31,-18 + 16529: -30,-18 + 16530: -29,-18 + 16531: -28,-18 + 16532: -28,-19 + 16533: -28,-20 + 16534: -29,-20 + 16535: -24,-22 + 16536: -24,-22 + 16537: -25,-22 + 16538: -25,-22 + 16539: -24,-21 + 16540: -23,-21 + 16541: -23,-22 + 16542: -22,-22 + 16543: -22,-21 + 16544: -23,-21 + 16545: -25,-21 + 16546: -25,-20 + 16547: -22,-20 + 16548: -22,-20 + 16549: -29,-18 + 17272: -2,32 + 17273: -1,32 + 17274: -1,32 + 17275: -2,27 + 17276: -2,27 + 17277: -1,27 + 17278: 0,27 17279: -1,27 - 17280: 0,27 - 17281: -1,27 - 17282: -2,27 - 17292: 0,39 - 17293: 0,40 - 17294: 0,40 - 17295: 2,40 - 17296: 2,40 - 17297: 0,38 - 17298: -1,36 - 17299: -1,35 - 17300: 0,34 - 17301: 0,34 - 17302: 0,42 - 17303: 1,42 - 17304: 1,42 - 17305: 0,42 + 17280: -2,27 + 17290: 0,39 + 17291: 0,40 + 17292: 0,40 + 17293: 2,40 + 17294: 2,40 + 17295: 0,38 + 17296: -1,36 + 17297: -1,35 + 17298: 0,34 + 17299: 0,34 + 17300: 0,42 + 17301: 1,42 + 17302: 1,42 + 17303: 0,42 + 17304: 0,48 + 17305: 0,48 17306: 0,48 - 17307: 0,48 - 17308: 0,48 - 17309: 0,47 - 17317: 6,52 - 17318: 7,52 - 17319: 6,50 - 18409: -53,-38 - 18410: -53,-37 - 18411: -52,-36 - 18412: -51,-36 - 18413: -52,-38 - 18414: -51,-38 - 18415: -51,-37 - 18416: -50,-37 - 18417: -50,-38 - 18418: -52,-37 - 18419: -52,-37 - 18420: -51,-37 - 18421: -50,-38 - 18422: -49,-38 - 18423: -48,-38 - 18424: -50,-37 - 18433: -52,-40 - 18434: -50,-40 - 18435: -51,-41 - 18451: -58,-46 - 18719: 61,-41 - 18720: 60,-41 - 18721: 59,-41 - 18722: 60,-40 + 17307: 0,47 + 17315: 6,52 + 17316: 7,52 + 17317: 6,50 + 18407: -53,-38 + 18408: -53,-37 + 18409: -52,-36 + 18410: -51,-36 + 18411: -52,-38 + 18412: -51,-38 + 18413: -51,-37 + 18414: -50,-37 + 18415: -50,-38 + 18416: -52,-37 + 18417: -52,-37 + 18418: -51,-37 + 18419: -50,-38 + 18420: -49,-38 + 18421: -48,-38 + 18422: -50,-37 + 18431: -52,-40 + 18432: -50,-40 + 18433: -51,-41 + 18449: -58,-46 + 18717: 61,-41 + 18718: 60,-41 + 18719: 59,-41 + 18720: 60,-40 + 18721: 59,-40 + 18722: 59,-40 18723: 59,-40 18724: 59,-40 - 18725: 59,-40 - 18726: 59,-40 - 18727: 60,-40 - 18728: 62,-40 - 18729: 61,-41 - 18730: 61,-41 - 18944: 43,-42 - 18945: 43,-41 - 18946: 43,-39 - 18947: 43,-38 - 18948: 45,-38 - 18949: 47,-38 - 18950: 49,-38 - 18951: 49,-39 - 18952: 48,-41 - 18953: 48,-43 - 18954: 46,-43 - 18955: 45,-43 - 18956: 44,-41 - 18957: 46,-40 - 18958: 47,-40 - 18984: 44,-48 - 18985: 45,-48 - 18986: 46,-48 - 18987: 43,-52 - 18988: 43,-53 - 18989: 43,-53 - 18990: 56,-41 - 19852: -31,-22 - 19853: -27,-23 + 18725: 60,-40 + 18726: 62,-40 + 18727: 61,-41 + 18728: 61,-41 + 18942: 43,-42 + 18943: 43,-41 + 18944: 43,-39 + 18945: 43,-38 + 18946: 45,-38 + 18947: 47,-38 + 18948: 49,-38 + 18949: 49,-39 + 18950: 48,-41 + 18951: 48,-43 + 18952: 46,-43 + 18953: 45,-43 + 18954: 44,-41 + 18955: 46,-40 + 18956: 47,-40 + 18982: 44,-48 + 18983: 45,-48 + 18984: 46,-48 + 18985: 43,-52 + 18986: 43,-53 + 18987: 43,-53 + 18988: 56,-41 + 19850: -31,-22 + 19851: -27,-23 + 19942: -72,-34 + 19943: -71,-34 19944: -72,-34 - 19945: -71,-34 - 19946: -72,-34 - 19947: -72,-36 - 19948: -72,-36 - 19949: -72,-37 - 19950: -72,-38 - 19951: -66,-38 - 19952: -66,-38 - 19953: -64,-38 - 19954: -64,-38 - 19955: -66,-38 - 19956: -67,-38 - 19957: -69,-38 - 19958: -71,-38 - 19959: -70,-38 - 19960: -68,-38 - 19961: -68,-38 - 19962: -65,-38 - 19963: -65,-38 - 19964: -64,-38 - 19965: -63,-38 - 19966: -62,-38 - 19967: -62,-36 - 19968: -62,-36 - 19969: -62,-38 - 19970: -62,-37 - 19971: -65,-34 - 19972: -66,-34 - 19973: -67,-34 - 19974: -69,-34 + 19945: -72,-36 + 19946: -72,-36 + 19947: -72,-37 + 19948: -72,-38 + 19949: -66,-38 + 19950: -66,-38 + 19951: -64,-38 + 19952: -64,-38 + 19953: -66,-38 + 19954: -67,-38 + 19955: -69,-38 + 19956: -71,-38 + 19957: -70,-38 + 19958: -68,-38 + 19959: -68,-38 + 19960: -65,-38 + 19961: -65,-38 + 19962: -64,-38 + 19963: -63,-38 + 19964: -62,-38 + 19965: -62,-36 + 19966: -62,-36 + 19967: -62,-38 + 19968: -62,-37 + 19969: -65,-34 + 19970: -66,-34 + 19971: -67,-34 + 19972: -69,-34 + 19973: -69,-34 + 19974: -67,-34 19975: -69,-34 - 19976: -67,-34 - 19977: -69,-34 - 19978: -69,-34 - 19979: -67,-34 - 19980: -67,-34 - 19981: -66,-34 - 19982: -65,-34 - 19983: -69,-34 - 19984: -66,-34 - 19985: -65,-34 - 19986: -63,-37 - 19987: -65,-38 - 19988: -67,-38 - 19989: -69,-38 - 19990: -70,-38 - 19991: -72,-38 - 19992: -72,-37 - 19993: -72,-36 - 19994: -72,-35 - 19995: -72,-35 + 19976: -69,-34 + 19977: -67,-34 + 19978: -67,-34 + 19979: -66,-34 + 19980: -65,-34 + 19981: -69,-34 + 19982: -66,-34 + 19983: -65,-34 + 19984: -63,-37 + 19985: -65,-38 + 19986: -67,-38 + 19987: -69,-38 + 19988: -70,-38 + 19989: -72,-38 + 19990: -72,-37 + 19991: -72,-36 + 19992: -72,-35 + 19993: -72,-35 + 19994: -70,-35 + 19995: -70,-35 19996: -70,-35 - 19997: -70,-35 - 19998: -70,-35 - 19999: -68,-35 - 20000: -67,-35 - 20001: -67,-36 - 20002: -64,-37 - 20003: -63,-37 - 20004: -62,-37 - 20005: -62,-37 - 20006: -62,-38 - 20007: -62,-36 - 20070: 35,39 - 20071: 34,39 - 20072: 34,38 - 20073: 33,39 - 20074: 36,39 - 20075: 35,37 - 21483: -71,-29 - 21484: -72,-26 - 21485: -70,-27 - 21486: -70,-26 - 21487: -69,-26 - 21488: -69,-27 - 21489: -68,-26 - 21490: -68,-26 - 21491: -67,-25 - 21492: -67,-26 - 21493: -68,-27 - 21494: -68,-27 - 21495: -67,-27 - 21496: -68,-25 - 21497: -67,-24 - 21520: -62,-29 - 21521: -63,-29 - 21522: -63,-30 - 21523: -62,-29 - 21543: -60,-29 - 21544: -60,-29 - 21545: -59,-30 - 21556: -63,-27 - 21557: -64,-27 - 21558: -64,-26 - 21559: -65,-25 - 21560: -66,-24 - 21561: -65,-23 - 21562: -63,-23 - 21563: -62,-23 - 21564: -60,-23 - 21565: -59,-23 - 21566: -61,-25 - 21567: -59,-24 - 21568: -59,-25 - 21569: -59,-26 - 21598: -64,-26 - 21599: -64,-25 - 21600: -63,-24 - 21601: -62,-24 - 21602: -62,-25 - 21603: -60,-26 - 21604: -60,-24 + 19997: -68,-35 + 19998: -67,-35 + 19999: -67,-36 + 20000: -64,-37 + 20001: -63,-37 + 20002: -62,-37 + 20003: -62,-37 + 20004: -62,-38 + 20005: -62,-36 + 20068: 35,39 + 20069: 34,39 + 20070: 34,38 + 20071: 33,39 + 20072: 36,39 + 20073: 35,37 + 21452: -71,-29 + 21453: -72,-26 + 21454: -70,-27 + 21455: -70,-26 + 21456: -69,-26 + 21457: -69,-27 + 21458: -68,-26 + 21459: -68,-26 + 21460: -67,-25 + 21461: -67,-26 + 21462: -68,-27 + 21463: -68,-27 + 21464: -67,-27 + 21465: -68,-25 + 21466: -67,-24 + 21489: -62,-29 + 21490: -63,-29 + 21491: -63,-30 + 21492: -62,-29 + 21512: -60,-29 + 21513: -60,-29 + 21514: -59,-30 + 21525: -63,-27 + 21526: -64,-27 + 21527: -64,-26 + 21528: -65,-25 + 21529: -66,-24 + 21530: -65,-23 + 21531: -63,-23 + 21532: -62,-23 + 21533: -60,-23 + 21534: -59,-23 + 21535: -61,-25 + 21536: -59,-24 + 21537: -59,-25 + 21538: -59,-26 + 21567: -64,-26 + 21568: -64,-25 + 21569: -63,-24 + 21570: -62,-24 + 21571: -62,-25 + 21572: -60,-26 + 21573: -60,-24 - node: cleanable: True color: '#FFFFFFFF' @@ -19712,846 +19707,846 @@ entities: 1777: -47,-48 1778: -46,-47 1779: -58,-23 - 1781: -66,-23 - 1807: -70,-29 - 1808: -70,-28 - 1809: -71,-28 - 1810: -72,-29 - 1811: -72,-28 - 1812: -71,-27 - 1813: -70,-27 - 1814: -70,-24 - 1815: -71,-25 - 1816: -72,-23 - 1817: -70,-23 - 1818: -68,-23 - 1819: -70,-26 - 1820: -69,-27 - 1821: -69,-29 - 1822: -68,-23 - 1823: -69,-23 - 1848: -55,-31 - 1849: -55,-23 - 1850: -52,-21 - 1851: -51,-21 - 1852: -64,-21 - 1853: -69,-20 - 1854: -75,-22 - 1855: -77,-20 - 1856: -77,-19 - 1857: -78,-20 - 1858: -78,-21 - 1859: -78,-24 - 1860: -78,-27 - 1861: -78,-28 - 1862: -78,-28 - 1863: -78,-26 - 1864: -77,-31 - 1865: -77,-32 - 1866: -78,-32 - 1867: -59,-32 - 1868: 41,-48 - 1869: 41,-48 - 1870: 37,-48 - 1871: 36,-47 - 1872: 36,-48 - 1873: 47,-48 - 1874: 45,-48 - 1875: 41,-45 - 1876: 41,-45 - 1877: 41,-39 - 1878: 41,-38 - 1879: 40,-37 - 1880: 40,-36 - 1881: 41,-33 - 1882: 42,-28 - 1883: 43,-28 - 1884: 51,-28 - 1885: 52,-28 - 1886: 52,-29 - 1887: 51,-30 - 1888: 52,-31 - 1889: 52,-32 - 1890: 51,-34 - 1891: 51,-35 - 1892: 51,-37 - 1893: 51,-39 - 1894: 52,-38 - 1895: 52,-43 - 1896: 52,-45 - 1897: 49,-42 - 1898: 49,-44 - 1899: 47,-45 - 1900: 45,-45 - 1901: 43,-41 - 1902: 46,-45 - 1903: 45,-44 - 1904: 45,-41 - 1905: 48,-42 - 1906: 49,-40 - 1907: 47,-40 - 1908: 45,-39 - 1909: 48,-38 - 1910: 47,-38 - 1911: 45,-38 - 1912: 44,-38 - 1913: 52,-47 - 1914: 55,-43 - 1915: 55,-44 - 1916: 55,-44 - 1917: 35,-55 - 1918: 34,-56 - 1919: 32,-55 - 1920: 30,-55 - 1921: 41,-42 - 1922: 43,-28 - 1923: 39,-23 - 1924: 38,-23 - 1925: 36,-23 - 1926: 36,-22 - 1927: 35,-21 - 1928: 36,-20 - 1929: 34,-21 - 1930: 35,-22 - 1931: 35,-23 - 1932: 34,-20 - 4026: -22,45 - 4033: -21,64 - 4041: 11,81 - 16358: -70,-36 - 16359: -67,-37 - 16360: -64,-36 - 16361: -63,-35 - 16362: -63,-35 - 16370: -69,-37 - 16371: -63,-34 - 16372: -63,-37 + 1780: -66,-23 + 1805: -70,-29 + 1806: -70,-28 + 1807: -71,-28 + 1808: -72,-29 + 1809: -72,-28 + 1810: -71,-27 + 1811: -70,-27 + 1812: -70,-24 + 1813: -71,-25 + 1814: -72,-23 + 1815: -70,-23 + 1816: -68,-23 + 1817: -70,-26 + 1818: -69,-27 + 1819: -69,-29 + 1820: -68,-23 + 1821: -69,-23 + 1846: -55,-31 + 1847: -55,-23 + 1848: -52,-21 + 1849: -51,-21 + 1850: -64,-21 + 1851: -69,-20 + 1852: -75,-22 + 1853: -77,-20 + 1854: -77,-19 + 1855: -78,-20 + 1856: -78,-21 + 1857: -78,-24 + 1858: -78,-27 + 1859: -78,-28 + 1860: -78,-28 + 1861: -78,-26 + 1862: -77,-31 + 1863: -77,-32 + 1864: -78,-32 + 1865: -59,-32 + 1866: 41,-48 + 1867: 41,-48 + 1868: 37,-48 + 1869: 36,-47 + 1870: 36,-48 + 1871: 47,-48 + 1872: 45,-48 + 1873: 41,-45 + 1874: 41,-45 + 1875: 41,-39 + 1876: 41,-38 + 1877: 40,-37 + 1878: 40,-36 + 1879: 41,-33 + 1880: 42,-28 + 1881: 43,-28 + 1882: 51,-28 + 1883: 52,-28 + 1884: 52,-29 + 1885: 51,-30 + 1886: 52,-31 + 1887: 52,-32 + 1888: 51,-34 + 1889: 51,-35 + 1890: 51,-37 + 1891: 51,-39 + 1892: 52,-38 + 1893: 52,-43 + 1894: 52,-45 + 1895: 49,-42 + 1896: 49,-44 + 1897: 47,-45 + 1898: 45,-45 + 1899: 43,-41 + 1900: 46,-45 + 1901: 45,-44 + 1902: 45,-41 + 1903: 48,-42 + 1904: 49,-40 + 1905: 47,-40 + 1906: 45,-39 + 1907: 48,-38 + 1908: 47,-38 + 1909: 45,-38 + 1910: 44,-38 + 1911: 52,-47 + 1912: 55,-43 + 1913: 55,-44 + 1914: 55,-44 + 1915: 35,-55 + 1916: 34,-56 + 1917: 32,-55 + 1918: 30,-55 + 1919: 41,-42 + 1920: 43,-28 + 1921: 39,-23 + 1922: 38,-23 + 1923: 36,-23 + 1924: 36,-22 + 1925: 35,-21 + 1926: 36,-20 + 1927: 34,-21 + 1928: 35,-22 + 1929: 35,-23 + 1930: 34,-20 + 4024: -22,45 + 4031: -21,64 + 4039: 11,81 + 16356: -70,-36 + 16357: -67,-37 + 16358: -64,-36 + 16359: -63,-35 + 16360: -63,-35 + 16368: -69,-37 + 16369: -63,-34 + 16370: -63,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 13631: -36,-75 - 13632: -37,-73 - 13633: -36,-73 - 13634: -35,-73 - 13635: -34,-73 + 13629: -36,-75 + 13630: -37,-73 + 13631: -36,-73 + 13632: -35,-73 + 13633: -34,-73 + 13634: -33,-73 + 13635: -33,-73 13636: -33,-73 - 13637: -33,-73 - 13638: -33,-73 - 13639: -32,-73 - 13640: -33,-72 - 13641: -33,-72 - 13642: -31,-74 - 13643: -30,-73 - 13644: -30,-74 - 13645: -30,-75 - 13646: -31,-74 - 13647: -29,-75 - 13648: -29,-75 - 13649: -29,-76 - 13650: -29,-77 - 13651: -29,-78 - 13652: -29,-79 - 13653: -29,-80 - 13654: -30,-80 - 13655: -30,-79 - 13656: -30,-78 - 13657: -30,-77 - 13658: -30,-76 - 13659: -30,-75 - 13660: -32,-78 - 13661: -32,-79 - 13662: -33,-78 - 13663: -34,-78 - 13664: -34,-79 - 13665: -33,-80 - 13666: -35,-80 - 13667: -35,-79 - 13668: -35,-78 - 13669: -34,-77 - 13670: -33,-77 - 13671: -32,-78 - 13672: -31,-79 - 13673: -32,-80 - 13674: -37,-80 - 13675: -37,-79 - 13676: -37,-79 - 13677: -36,-78 - 13678: -37,-78 - 13679: -37,-77 - 13680: -36,-77 - 13681: -37,-76 - 13682: -37,-76 - 13683: -36,-76 - 13684: -36,-75 - 13685: -37,-74 - 13686: -36,-73 - 13687: -36,-74 - 13688: -36,-75 - 13689: -35,-74 - 13690: -35,-74 - 13691: -35,-75 - 13692: -35,-76 - 13693: -33,-76 - 13694: -33,-76 - 13695: -33,-75 - 13697: -37,-73 - 13698: -37,-74 - 13699: -36,-75 - 13700: -37,-76 - 13701: -37,-77 - 13702: -36,-78 + 13637: -32,-73 + 13638: -33,-72 + 13639: -33,-72 + 13640: -31,-74 + 13641: -30,-73 + 13642: -30,-74 + 13643: -30,-75 + 13644: -31,-74 + 13645: -29,-75 + 13646: -29,-75 + 13647: -29,-76 + 13648: -29,-77 + 13649: -29,-78 + 13650: -29,-79 + 13651: -29,-80 + 13652: -30,-80 + 13653: -30,-79 + 13654: -30,-78 + 13655: -30,-77 + 13656: -30,-76 + 13657: -30,-75 + 13658: -32,-78 + 13659: -32,-79 + 13660: -33,-78 + 13661: -34,-78 + 13662: -34,-79 + 13663: -33,-80 + 13664: -35,-80 + 13665: -35,-79 + 13666: -35,-78 + 13667: -34,-77 + 13668: -33,-77 + 13669: -32,-78 + 13670: -31,-79 + 13671: -32,-80 + 13672: -37,-80 + 13673: -37,-79 + 13674: -37,-79 + 13675: -36,-78 + 13676: -37,-78 + 13677: -37,-77 + 13678: -36,-77 + 13679: -37,-76 + 13680: -37,-76 + 13681: -36,-76 + 13682: -36,-75 + 13683: -37,-74 + 13684: -36,-73 + 13685: -36,-74 + 13686: -36,-75 + 13687: -35,-74 + 13688: -35,-74 + 13689: -35,-75 + 13690: -35,-76 + 13691: -33,-76 + 13692: -33,-76 + 13693: -33,-75 + 13695: -37,-73 + 13696: -37,-74 + 13697: -36,-75 + 13698: -37,-76 + 13699: -37,-77 + 13700: -36,-78 + 13701: -37,-79 + 13702: -37,-79 13703: -37,-79 - 13704: -37,-79 - 13705: -37,-79 - 13706: -36,-77 - 13707: -35,-76 - 13708: -32,-76 - 13709: -31,-76 - 13710: -30,-76 - 13711: -30,-77 - 13712: -30,-78 - 13713: -29,-78 - 13714: -29,-77 - 13715: -33,-75 - 13716: -33,-75 - 13717: -32,-75 - 13718: -29,-74 - 13719: -29,-73 - 13720: -29,-73 - 13721: -32,-74 + 13704: -36,-77 + 13705: -35,-76 + 13706: -32,-76 + 13707: -31,-76 + 13708: -30,-76 + 13709: -30,-77 + 13710: -30,-78 + 13711: -29,-78 + 13712: -29,-77 + 13713: -33,-75 + 13714: -33,-75 + 13715: -32,-75 + 13716: -29,-74 + 13717: -29,-73 + 13718: -29,-73 + 13719: -32,-74 + 13720: -33,-74 + 13721: -31,-73 13722: -33,-74 - 13723: -31,-73 - 13724: -33,-74 - 13725: -34,-75 - 13726: -34,-74 - 13739: -31,-75 - 13740: -36,-74 - 13775: -39,-74 - 13776: -39,-71 - 13777: -36,-71 - 13778: -35,-71 - 13779: -34,-71 - 13780: -33,-71 - 13781: -32,-71 - 13782: -31,-71 - 13799: -27,-75 - 13800: -27,-74 - 13801: -27,-73 - 13802: -27,-73 - 13803: -27,-68 - 13804: -27,-67 - 13805: -27,-67 - 13806: -27,-69 - 13807: -28,-66 - 13808: -28,-65 - 13809: -28,-62 - 13810: -28,-63 - 13811: -28,-65 - 13824: -34,-60 - 13825: -34,-62 - 13826: -32,-60 - 13827: -32,-61 - 13828: -32,-62 - 13829: -31,-62 - 13830: -31,-63 - 13831: -33,-63 - 13832: -30,-61 - 13835: -34,-63 - 13836: -31,-60 - 13931: -15,-62 - 13932: -10,-62 - 13933: -9,-57 - 13934: -10,-57 - 13935: -7,-56 - 13936: -7,-56 - 13937: -6,-55 - 13938: -5,-55 - 13939: -5,-56 - 13940: -6,-55 - 13941: -6,-56 + 13723: -34,-75 + 13724: -34,-74 + 13737: -31,-75 + 13738: -36,-74 + 13773: -39,-74 + 13774: -39,-71 + 13775: -36,-71 + 13776: -35,-71 + 13777: -34,-71 + 13778: -33,-71 + 13779: -32,-71 + 13780: -31,-71 + 13797: -27,-75 + 13798: -27,-74 + 13799: -27,-73 + 13800: -27,-73 + 13801: -27,-68 + 13802: -27,-67 + 13803: -27,-67 + 13804: -27,-69 + 13805: -28,-66 + 13806: -28,-65 + 13807: -28,-62 + 13808: -28,-63 + 13809: -28,-65 + 13822: -34,-60 + 13823: -34,-62 + 13824: -32,-60 + 13825: -32,-61 + 13826: -32,-62 + 13827: -31,-62 + 13828: -31,-63 + 13829: -33,-63 + 13830: -30,-61 + 13833: -34,-63 + 13834: -31,-60 + 13929: -15,-62 + 13930: -10,-62 + 13931: -9,-57 + 13932: -10,-57 + 13933: -7,-56 + 13934: -7,-56 + 13935: -6,-55 + 13936: -5,-55 + 13937: -5,-56 + 13938: -6,-55 + 13939: -6,-56 + 14244: -69,-21 + 14245: -70,-21 14246: -69,-21 - 14247: -70,-21 - 14248: -69,-21 - 14249: -68,-21 - 14250: -67,-21 - 14251: -63,-21 - 14252: -63,-21 - 14253: -61,-21 - 14254: -60,-21 - 14255: -59,-21 - 14256: -58,-21 - 14257: -58,-21 - 14258: -75,-21 - 14259: -75,-23 - 14260: -75,-24 - 14261: -75,-25 - 14262: -75,-26 - 14263: -75,-27 - 14264: -75,-28 - 14265: -75,-26 - 14266: -75,-25 - 14267: -75,-22 - 14268: -75,-21 - 14269: -75,-21 - 14270: -74,-32 - 14271: -75,-31 - 14272: -73,-32 - 14273: -77,-26 - 14274: -78,-26 - 14275: -78,-27 - 14276: -78,-28 - 14277: -78,-23 - 14278: -77,-23 - 14279: -77,-24 - 14280: -78,-24 - 14281: -77,-19 - 14282: -78,-19 - 14283: -78,-19 - 14284: -78,-21 + 14247: -68,-21 + 14248: -67,-21 + 14249: -63,-21 + 14250: -63,-21 + 14251: -61,-21 + 14252: -60,-21 + 14253: -59,-21 + 14254: -58,-21 + 14255: -58,-21 + 14256: -75,-21 + 14257: -75,-23 + 14258: -75,-24 + 14259: -75,-25 + 14260: -75,-26 + 14261: -75,-27 + 14262: -75,-28 + 14263: -75,-26 + 14264: -75,-25 + 14265: -75,-22 + 14266: -75,-21 + 14267: -75,-21 + 14268: -74,-32 + 14269: -75,-31 + 14270: -73,-32 + 14271: -77,-26 + 14272: -78,-26 + 14273: -78,-27 + 14274: -78,-28 + 14275: -78,-23 + 14276: -77,-23 + 14277: -77,-24 + 14278: -78,-24 + 14279: -77,-19 + 14280: -78,-19 + 14281: -78,-19 + 14282: -78,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavyMonotile decals: - 13850: -32,-60 - 13851: -32,-61 - 13852: -31,-62 - 13853: -31,-62 - 13854: -32,-62 - 13855: -33,-63 - 13856: -34,-62 - 13857: -31,-63 - 13858: -30,-61 + 13848: -32,-60 + 13849: -32,-61 + 13850: -31,-62 + 13851: -31,-62 + 13852: -32,-62 + 13853: -33,-63 + 13854: -34,-62 + 13855: -31,-63 + 13856: -30,-61 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: 1042: -12,-50 - 3870: 23,72 - 3878: 18,69 - 3905: 20,67 - 3906: 26,66 - 3907: 27,67 - 3917: 21,68 - 3918: 18,66 - 3919: 17,65 - 3922: 22,66 - 3958: 18,63 - 3959: 21,60 - 3960: 21,58 - 3965: 20,60 - 3966: 18,60 - 3990: -35,61 - 3999: -42,59 - 4005: -36,62 - 4018: -36,55 - 4019: -32,60 - 11037: 34,-64 - 11038: 34,-64 - 11039: 35,-64 - 11040: 35,-62 - 11041: 35,-62 - 11042: 36,-61 - 11043: 36,-60 - 11044: 35,-60 - 11045: 34,-62 - 11046: 29,-69 - 11047: 31,-68 - 11048: 31,-67 - 11049: 27,-69 - 11050: 27,-70 - 11051: 29,-70 - 11052: 31,-70 - 11053: 32,-69 - 11054: 32,-68 - 11055: 31,-67 - 11056: 30,-66 - 11057: 29,-67 - 11058: 28,-68 - 11059: 26,-69 - 11060: 34,-60 - 11061: 41,-70 - 11062: 41,-71 - 11063: 39,-71 - 11064: 39,-71 - 11065: 42,-73 - 11066: 41,-75 - 11067: 38,-74 - 11068: 42,-74 - 11069: 42,-74 - 11070: 36,-68 - 11071: 35,-68 - 11072: 34,-68 - 11073: 39,-67 - 11074: 39,-67 - 11075: 40,-66 - 11076: 40,-66 - 11077: 41,-66 - 11078: 41,-68 - 11079: 45,-63 - 11080: 44,-63 - 11081: 43,-63 - 11082: 44,-62 - 11083: 45,-61 - 11084: 45,-61 - 11085: 39,-62 - 11086: 40,-62 - 11087: 40,-62 - 11088: 41,-62 - 11089: 41,-62 - 11173: 26,-57 - 11174: 26,-57 - 11175: 26,-58 - 11182: 38,-68 - 11183: 41,-68 - 11184: 40,-68 - 11281: -65,-37 - 11282: -59,-37 - 11283: -59,-37 - 11284: -59,-38 - 11285: -58,-38 - 11286: -58,-38 - 11287: -59,-42 - 11288: -60,-41 - 11289: -60,-41 + 3868: 23,72 + 3876: 18,69 + 3903: 20,67 + 3904: 26,66 + 3905: 27,67 + 3915: 21,68 + 3916: 18,66 + 3917: 17,65 + 3920: 22,66 + 3956: 18,63 + 3957: 21,60 + 3958: 21,58 + 3963: 20,60 + 3964: 18,60 + 3988: -35,61 + 3997: -42,59 + 4003: -36,62 + 4016: -36,55 + 4017: -32,60 + 11035: 34,-64 + 11036: 34,-64 + 11037: 35,-64 + 11038: 35,-62 + 11039: 35,-62 + 11040: 36,-61 + 11041: 36,-60 + 11042: 35,-60 + 11043: 34,-62 + 11044: 29,-69 + 11045: 31,-68 + 11046: 31,-67 + 11047: 27,-69 + 11048: 27,-70 + 11049: 29,-70 + 11050: 31,-70 + 11051: 32,-69 + 11052: 32,-68 + 11053: 31,-67 + 11054: 30,-66 + 11055: 29,-67 + 11056: 28,-68 + 11057: 26,-69 + 11058: 34,-60 + 11059: 41,-70 + 11060: 41,-71 + 11061: 39,-71 + 11062: 39,-71 + 11063: 42,-73 + 11064: 41,-75 + 11065: 38,-74 + 11066: 42,-74 + 11067: 42,-74 + 11068: 36,-68 + 11069: 35,-68 + 11070: 34,-68 + 11071: 39,-67 + 11072: 39,-67 + 11073: 40,-66 + 11074: 40,-66 + 11075: 41,-66 + 11076: 41,-68 + 11077: 45,-63 + 11078: 44,-63 + 11079: 43,-63 + 11080: 44,-62 + 11081: 45,-61 + 11082: 45,-61 + 11083: 39,-62 + 11084: 40,-62 + 11085: 40,-62 + 11086: 41,-62 + 11087: 41,-62 + 11171: 26,-57 + 11172: 26,-57 + 11173: 26,-58 + 11180: 38,-68 + 11181: 41,-68 + 11182: 40,-68 + 11279: -65,-37 + 11280: -59,-37 + 11281: -59,-37 + 11282: -59,-38 + 11283: -58,-38 + 11284: -58,-38 + 11285: -59,-42 + 11286: -60,-41 + 11287: -60,-41 + 11288: -59,-41 + 11289: -59,-40 11290: -59,-41 - 11291: -59,-40 - 11292: -59,-41 - 11293: -58,-41 - 11294: -58,-41 + 11291: -58,-41 + 11292: -58,-41 + 11293: -65,-41 + 11294: -65,-41 11295: -65,-41 - 11296: -65,-41 - 11297: -65,-41 - 12887: -45,-23 - 12888: -47,-22 - 12889: -46,-23 - 12893: -53,-28 - 12894: -53,-26 - 12895: -52,-25 - 12896: -51,-25 - 12897: -51,-26 - 12898: -51,-27 - 12899: -51,-27 - 12900: -51,-28 - 12901: -50,-28 - 12902: -50,-29 - 12903: -51,-29 - 12904: -51,-31 - 12905: -53,-31 - 12906: -53,-30 - 12907: -52,-28 - 12908: -52,-30 - 12909: -52,-27 - 13001: -53,-28 - 13002: -52,-29 - 13003: -43,-29 - 13004: -42,-30 - 13005: -42,-33 - 13006: -43,-32 - 13007: -43,-34 - 13008: -42,-34 - 13009: -41,-33 - 13010: -42,-32 - 13011: -43,-23 - 13012: -43,-24 - 13013: -43,-22 - 13014: -41,-23 - 13015: -42,-24 - 13016: -39,-24 - 13017: -39,-23 - 13018: -37,-22 - 13019: -37,-23 - 13020: -38,-24 - 13021: -35,-23 - 13022: -35,-22 - 13023: -34,-23 - 13024: -34,-24 - 13025: -34,-24 - 13026: -33,-24 - 13079: -35,-33 - 13080: -34,-33 - 13081: -34,-34 - 13082: -33,-32 - 13083: -34,-29 - 13084: -31,-27 - 13085: -31,-29 - 13086: -30,-28 - 13087: -30,-27 - 13088: -28,-27 - 13089: -28,-26 - 13090: -26,-27 - 13091: -29,-28 - 13092: -29,-29 - 13093: -28,-31 - 13094: -27,-31 - 13095: -30,-31 - 13096: -30,-30 - 13097: -28,-29 - 13098: -26,-31 - 13099: -26,-32 - 13100: -26,-30 - 13101: -29,-22 - 13143: 28,-57 - 13144: 48,-31 - 13177: 46,-32 - 13178: 47,-33 - 13179: 47,-32 - 13180: 48,-31 - 13181: 48,-32 - 13182: 47,-34 - 13183: 49,-34 - 13184: 49,-34 - 13185: 49,-35 - 13186: 47,-35 - 13187: 47,-35 - 13188: 46,-34 - 13189: 44,-34 - 13190: 44,-34 - 13191: 43,-33 - 13192: 45,-33 - 13193: 45,-32 - 13194: 47,-32 - 13195: 46,-34 - 13196: 46,-35 - 13197: 47,-33 - 13198: 48,-33 - 13199: 49,-33 - 13200: 49,-33 - 13201: 48,-32 - 13204: 39,-52 - 13205: 40,-51 - 13206: 40,-52 - 13207: 40,-53 - 13208: 40,-53 - 13209: 39,-54 - 13210: 39,-55 - 13211: 40,-55 - 13212: 41,-52 - 13213: 41,-54 - 13214: 41,-55 - 13215: 42,-53 - 13216: 42,-53 - 13217: 41,-56 - 13218: 42,-56 - 13219: 42,-50 - 13220: 44,-50 - 13221: 44,-50 - 13222: 45,-50 - 13223: 45,-52 - 13224: 44,-52 - 13225: 44,-51 - 13226: 45,-52 - 13227: 44,-54 - 13228: 44,-55 - 13229: 46,-55 - 13230: 45,-54 - 13231: 45,-55 - 13232: 46,-55 - 13233: 46,-52 - 13234: 47,-52 - 13310: 52,-37 - 13324: 54,-35 - 13330: 54,-39 - 13351: 54,-36 - 13352: 55,-35 - 13353: 53,-36 - 13354: 53,-38 - 13355: 54,-37 - 13449: -37,-63 - 13450: -37,-62 - 13451: -38,-62 - 13452: -38,-61 + 12885: -45,-23 + 12886: -47,-22 + 12887: -46,-23 + 12891: -53,-28 + 12892: -53,-26 + 12893: -52,-25 + 12894: -51,-25 + 12895: -51,-26 + 12896: -51,-27 + 12897: -51,-27 + 12898: -51,-28 + 12899: -50,-28 + 12900: -50,-29 + 12901: -51,-29 + 12902: -51,-31 + 12903: -53,-31 + 12904: -53,-30 + 12905: -52,-28 + 12906: -52,-30 + 12907: -52,-27 + 12999: -53,-28 + 13000: -52,-29 + 13001: -43,-29 + 13002: -42,-30 + 13003: -42,-33 + 13004: -43,-32 + 13005: -43,-34 + 13006: -42,-34 + 13007: -41,-33 + 13008: -42,-32 + 13009: -43,-23 + 13010: -43,-24 + 13011: -43,-22 + 13012: -41,-23 + 13013: -42,-24 + 13014: -39,-24 + 13015: -39,-23 + 13016: -37,-22 + 13017: -37,-23 + 13018: -38,-24 + 13019: -35,-23 + 13020: -35,-22 + 13021: -34,-23 + 13022: -34,-24 + 13023: -34,-24 + 13024: -33,-24 + 13077: -35,-33 + 13078: -34,-33 + 13079: -34,-34 + 13080: -33,-32 + 13081: -34,-29 + 13082: -31,-27 + 13083: -31,-29 + 13084: -30,-28 + 13085: -30,-27 + 13086: -28,-27 + 13087: -28,-26 + 13088: -26,-27 + 13089: -29,-28 + 13090: -29,-29 + 13091: -28,-31 + 13092: -27,-31 + 13093: -30,-31 + 13094: -30,-30 + 13095: -28,-29 + 13096: -26,-31 + 13097: -26,-32 + 13098: -26,-30 + 13099: -29,-22 + 13141: 28,-57 + 13142: 48,-31 + 13175: 46,-32 + 13176: 47,-33 + 13177: 47,-32 + 13178: 48,-31 + 13179: 48,-32 + 13180: 47,-34 + 13181: 49,-34 + 13182: 49,-34 + 13183: 49,-35 + 13184: 47,-35 + 13185: 47,-35 + 13186: 46,-34 + 13187: 44,-34 + 13188: 44,-34 + 13189: 43,-33 + 13190: 45,-33 + 13191: 45,-32 + 13192: 47,-32 + 13193: 46,-34 + 13194: 46,-35 + 13195: 47,-33 + 13196: 48,-33 + 13197: 49,-33 + 13198: 49,-33 + 13199: 48,-32 + 13202: 39,-52 + 13203: 40,-51 + 13204: 40,-52 + 13205: 40,-53 + 13206: 40,-53 + 13207: 39,-54 + 13208: 39,-55 + 13209: 40,-55 + 13210: 41,-52 + 13211: 41,-54 + 13212: 41,-55 + 13213: 42,-53 + 13214: 42,-53 + 13215: 41,-56 + 13216: 42,-56 + 13217: 42,-50 + 13218: 44,-50 + 13219: 44,-50 + 13220: 45,-50 + 13221: 45,-52 + 13222: 44,-52 + 13223: 44,-51 + 13224: 45,-52 + 13225: 44,-54 + 13226: 44,-55 + 13227: 46,-55 + 13228: 45,-54 + 13229: 45,-55 + 13230: 46,-55 + 13231: 46,-52 + 13232: 47,-52 + 13308: 52,-37 + 13322: 54,-35 + 13328: 54,-39 + 13349: 54,-36 + 13350: 55,-35 + 13351: 53,-36 + 13352: 53,-38 + 13353: 54,-37 + 13447: -37,-63 + 13448: -37,-62 + 13449: -38,-62 + 13450: -38,-61 + 13451: -38,-60 + 13452: -36,-60 13453: -38,-60 - 13454: -36,-60 - 13455: -38,-60 - 13456: -37,-59 - 13457: -37,-61 - 13458: -36,-62 - 13459: -36,-61 - 13460: -37,-61 - 13461: -38,-63 - 13462: -36,-63 - 13463: -36,-63 - 13464: -36,-62 - 13498: -41,-63 - 13499: -41,-62 - 13500: -40,-63 - 13547: -41,-64 - 13548: -37,-64 - 13549: -37,-59 - 16070: 76,1 - 16071: 76,0 - 16072: 77,0 - 16073: 78,0 - 16074: 79,4 - 16075: 79,5 - 16076: 78,4 - 16088: 99,-2 - 16089: 99,-3 - 16090: 99,-4 - 16091: 100,-4 - 16092: 100,-2 - 16102: 85,2 - 16103: 86,2 - 16104: 79,-3 - 16105: 79,-4 - 16132: 92,9 - 16133: 76,6 - 16134: 76,4 - 16138: 93,6 - 16139: 96,6 - 16140: 95,6 - 16141: 96,7 - 16142: 97,7 - 16237: -72,-40 - 16238: -72,-41 - 16239: -71,-41 - 16240: -71,-42 - 16241: -72,-42 - 16242: -71,-40 - 16243: -70,-40 - 16244: -70,-41 - 16245: -69,-41 - 16246: -69,-41 - 16247: -69,-43 - 16289: -65,-47 - 16290: -65,-47 - 16291: -64,-47 - 16292: -64,-47 - 16293: -63,-46 - 16294: -62,-47 - 16295: -62,-48 - 16296: -63,-48 - 16297: -66,-48 - 16312: -65,-46 - 16313: -64,-46 - 16314: -64,-45 - 16315: -63,-45 - 16316: -63,-46 - 16317: -63,-47 - 16318: -65,-47 - 16319: -66,-48 - 16320: -66,-48 - 16321: -63,-48 - 16322: -63,-47 - 16323: -62,-47 - 16324: -62,-41 - 16325: -62,-40 - 16326: -64,-40 - 16327: -70,-43 - 16328: -69,-43 - 16329: -68,-45 - 16330: -69,-46 - 16331: -70,-46 - 16332: -72,-42 - 16412: -59,-50 - 16413: -60,-49 - 16414: -60,-48 - 16429: 10,68 - 16430: 10,68 - 16431: 11,69 - 16432: 11,69 - 16433: 12,69 - 16434: 12,68 - 16435: 12,67 - 16436: 12,66 - 16437: 10,66 - 16438: 11,66 - 16439: 11,67 - 16440: 11,67 - 16441: 12,67 - 16442: 11,69 - 16443: 12,70 - 16444: 13,67 - 16445: 13,67 - 16446: 11,68 - 16447: 12,69 - 16448: 11,70 - 16469: -40,-6 - 16470: -40,-7 - 16471: -39,-7 - 16472: -39,-6 - 16473: -38,2 - 16474: -37,2 - 16475: -37,1 - 16476: -37,0 - 16477: -39,0 - 16478: -38,2 - 16552: -32,-20 - 16553: -30,-20 - 16554: -30,-20 - 16555: -30,-19 - 16556: -32,-18 - 16557: -34,-18 - 16558: -35,-18 - 16559: -31,-18 - 16560: -29,-18 - 16561: -29,-18 - 16562: -28,-20 - 16563: -28,-19 - 16564: -29,-20 - 16565: -24,-21 - 16566: -24,-22 - 16567: -22,-22 - 16568: -22,-21 - 16569: -35,-20 - 16570: -36,-20 - 16571: -39,-20 - 16572: -41,-20 - 16573: -43,-20 - 16574: -44,-20 - 16575: -48,-20 - 16576: -49,-22 - 16577: -49,-23 - 16578: -49,-23 - 16579: -50,-22 - 16580: -49,-22 - 16581: -49,-22 - 16582: -50,-23 - 16583: -53,-23 - 16584: -54,-23 - 16585: -53,-21 - 16586: -53,-20 + 13454: -37,-59 + 13455: -37,-61 + 13456: -36,-62 + 13457: -36,-61 + 13458: -37,-61 + 13459: -38,-63 + 13460: -36,-63 + 13461: -36,-63 + 13462: -36,-62 + 13496: -41,-63 + 13497: -41,-62 + 13498: -40,-63 + 13545: -41,-64 + 13546: -37,-64 + 13547: -37,-59 + 16068: 76,1 + 16069: 76,0 + 16070: 77,0 + 16071: 78,0 + 16072: 79,4 + 16073: 79,5 + 16074: 78,4 + 16086: 99,-2 + 16087: 99,-3 + 16088: 99,-4 + 16089: 100,-4 + 16090: 100,-2 + 16100: 85,2 + 16101: 86,2 + 16102: 79,-3 + 16103: 79,-4 + 16130: 92,9 + 16131: 76,6 + 16132: 76,4 + 16136: 93,6 + 16137: 96,6 + 16138: 95,6 + 16139: 96,7 + 16140: 97,7 + 16235: -72,-40 + 16236: -72,-41 + 16237: -71,-41 + 16238: -71,-42 + 16239: -72,-42 + 16240: -71,-40 + 16241: -70,-40 + 16242: -70,-41 + 16243: -69,-41 + 16244: -69,-41 + 16245: -69,-43 + 16287: -65,-47 + 16288: -65,-47 + 16289: -64,-47 + 16290: -64,-47 + 16291: -63,-46 + 16292: -62,-47 + 16293: -62,-48 + 16294: -63,-48 + 16295: -66,-48 + 16310: -65,-46 + 16311: -64,-46 + 16312: -64,-45 + 16313: -63,-45 + 16314: -63,-46 + 16315: -63,-47 + 16316: -65,-47 + 16317: -66,-48 + 16318: -66,-48 + 16319: -63,-48 + 16320: -63,-47 + 16321: -62,-47 + 16322: -62,-41 + 16323: -62,-40 + 16324: -64,-40 + 16325: -70,-43 + 16326: -69,-43 + 16327: -68,-45 + 16328: -69,-46 + 16329: -70,-46 + 16330: -72,-42 + 16410: -59,-50 + 16411: -60,-49 + 16412: -60,-48 + 16427: 10,68 + 16428: 10,68 + 16429: 11,69 + 16430: 11,69 + 16431: 12,69 + 16432: 12,68 + 16433: 12,67 + 16434: 12,66 + 16435: 10,66 + 16436: 11,66 + 16437: 11,67 + 16438: 11,67 + 16439: 12,67 + 16440: 11,69 + 16441: 12,70 + 16442: 13,67 + 16443: 13,67 + 16444: 11,68 + 16445: 12,69 + 16446: 11,70 + 16467: -40,-6 + 16468: -40,-7 + 16469: -39,-7 + 16470: -39,-6 + 16471: -38,2 + 16472: -37,2 + 16473: -37,1 + 16474: -37,0 + 16475: -39,0 + 16476: -38,2 + 16550: -32,-20 + 16551: -30,-20 + 16552: -30,-20 + 16553: -30,-19 + 16554: -32,-18 + 16555: -34,-18 + 16556: -35,-18 + 16557: -31,-18 + 16558: -29,-18 + 16559: -29,-18 + 16560: -28,-20 + 16561: -28,-19 + 16562: -29,-20 + 16563: -24,-21 + 16564: -24,-22 + 16565: -22,-22 + 16566: -22,-21 + 16567: -35,-20 + 16568: -36,-20 + 16569: -39,-20 + 16570: -41,-20 + 16571: -43,-20 + 16572: -44,-20 + 16573: -48,-20 + 16574: -49,-22 + 16575: -49,-23 + 16576: -49,-23 + 16577: -50,-22 + 16578: -49,-22 + 16579: -49,-22 + 16580: -50,-23 + 16581: -53,-23 + 16582: -54,-23 + 16583: -53,-21 + 16584: -53,-20 + 16585: -53,-20 + 16586: -52,-20 16587: -53,-20 - 16588: -52,-20 - 16589: -53,-20 - 16590: -55,-20 - 16591: -56,-20 - 16592: -56,-21 - 16593: -55,-22 - 16594: -56,-23 - 16595: -56,-26 - 16596: -56,-25 - 16597: -56,-27 - 16598: -55,-29 - 16599: -55,-30 - 16600: -60,-32 - 17270: -2,32 - 17271: -1,32 - 17272: -1,32 - 17273: -2,32 - 17283: -2,27 - 17284: 0,27 - 17285: 0,40 - 17286: 1,40 - 17287: 1,40 - 17288: 2,40 - 17289: 0,36 - 17290: 0,35 - 17291: 0,34 - 17310: 0,48 - 17311: 0,47 - 17312: 0,41 - 17313: 1,42 - 17314: 6,50 - 17315: 6,52 - 17316: 7,52 - 18425: -50,-36 - 18426: -50,-37 - 18427: -51,-38 - 18428: -53,-37 - 18429: -53,-36 - 18430: -48,-38 - 18431: -52,-40 - 18432: -51,-41 - 18450: -58,-46 - 18731: 59,-40 - 18732: 60,-40 - 18733: 60,-41 - 18959: 44,-42 - 18960: 44,-44 - 18961: 46,-44 - 18962: 44,-42 - 18963: 46,-40 - 18964: 47,-39 - 18965: 48,-39 - 18966: 48,-38 - 18967: 49,-38 - 18968: 49,-41 - 18969: 49,-42 - 18970: 49,-42 - 18971: 49,-41 - 18972: 49,-44 - 18973: 49,-45 - 18974: 48,-45 - 18975: 46,-45 - 18976: 44,-45 - 18977: 43,-45 - 18978: 43,-44 - 18979: 43,-42 - 18980: 52,-47 - 18981: 46,-48 - 18982: 45,-48 - 18983: 44,-48 - 18991: 56,-43 - 18992: 56,-43 - 18993: 55,-44 - 18994: 55,-43 - 18995: 56,-41 - 19854: -31,-23 - 19855: -31,-24 - 19856: -30,-22 - 19857: -27,-23 - 19868: -28,-24 - 19869: -27,-24 - 19875: -29,-24 - 19876: -29,-24 - 19877: -30,-23 + 16588: -55,-20 + 16589: -56,-20 + 16590: -56,-21 + 16591: -55,-22 + 16592: -56,-23 + 16593: -56,-26 + 16594: -56,-25 + 16595: -56,-27 + 16596: -55,-29 + 16597: -55,-30 + 16598: -60,-32 + 17268: -2,32 + 17269: -1,32 + 17270: -1,32 + 17271: -2,32 + 17281: -2,27 + 17282: 0,27 + 17283: 0,40 + 17284: 1,40 + 17285: 1,40 + 17286: 2,40 + 17287: 0,36 + 17288: 0,35 + 17289: 0,34 + 17308: 0,48 + 17309: 0,47 + 17310: 0,41 + 17311: 1,42 + 17312: 6,50 + 17313: 6,52 + 17314: 7,52 + 18423: -50,-36 + 18424: -50,-37 + 18425: -51,-38 + 18426: -53,-37 + 18427: -53,-36 + 18428: -48,-38 + 18429: -52,-40 + 18430: -51,-41 + 18448: -58,-46 + 18729: 59,-40 + 18730: 60,-40 + 18731: 60,-41 + 18957: 44,-42 + 18958: 44,-44 + 18959: 46,-44 + 18960: 44,-42 + 18961: 46,-40 + 18962: 47,-39 + 18963: 48,-39 + 18964: 48,-38 + 18965: 49,-38 + 18966: 49,-41 + 18967: 49,-42 + 18968: 49,-42 + 18969: 49,-41 + 18970: 49,-44 + 18971: 49,-45 + 18972: 48,-45 + 18973: 46,-45 + 18974: 44,-45 + 18975: 43,-45 + 18976: 43,-44 + 18977: 43,-42 + 18978: 52,-47 + 18979: 46,-48 + 18980: 45,-48 + 18981: 44,-48 + 18989: 56,-43 + 18990: 56,-43 + 18991: 55,-44 + 18992: 55,-43 + 18993: 56,-41 + 19852: -31,-23 + 19853: -31,-24 + 19854: -30,-22 + 19855: -27,-23 + 19866: -28,-24 + 19867: -27,-24 + 19873: -29,-24 + 19874: -29,-24 + 19875: -30,-23 + 19876: -29,-23 + 19877: -28,-23 19878: -29,-23 - 19879: -28,-23 - 19880: -29,-23 - 21498: -67,-29 - 21499: -67,-29 - 21500: -67,-28 - 21501: -67,-28 - 21502: -68,-26 - 21503: -67,-26 - 21504: -68,-25 - 21505: -67,-24 - 21506: -69,-23 - 21507: -69,-23 - 21508: -70,-24 - 21509: -72,-24 - 21510: -72,-25 - 21511: -70,-23 - 21512: -71,-23 - 21513: -72,-25 - 21514: -72,-27 - 21515: -72,-26 - 21524: -61,-29 - 21525: -63,-29 - 21526: -63,-30 - 21527: -61,-29 - 21570: -60,-27 - 21571: -61,-27 - 21572: -60,-27 - 21573: -59,-26 - 21574: -59,-25 - 21575: -60,-25 - 21576: -61,-25 - 21577: -60,-23 - 21578: -60,-23 - 21579: -63,-23 - 21580: -64,-23 - 21581: -60,-23 - 21582: -62,-23 - 21583: -61,-23 - 21584: -65,-24 - 21585: -65,-25 - 21586: -65,-25 - 21587: -60,-25 - 21588: -60,-25 - 21589: -61,-27 - 21590: -62,-27 - 21591: -64,-27 - 21592: -62,-26 - 21593: -63,-26 - 21594: -63,-24 - 21595: -62,-24 - 21596: -61,-24 - 21597: -62,-25 + 21467: -67,-29 + 21468: -67,-29 + 21469: -67,-28 + 21470: -67,-28 + 21471: -68,-26 + 21472: -67,-26 + 21473: -68,-25 + 21474: -67,-24 + 21475: -69,-23 + 21476: -69,-23 + 21477: -70,-24 + 21478: -72,-24 + 21479: -72,-25 + 21480: -70,-23 + 21481: -71,-23 + 21482: -72,-25 + 21483: -72,-27 + 21484: -72,-26 + 21493: -61,-29 + 21494: -63,-29 + 21495: -63,-30 + 21496: -61,-29 + 21539: -60,-27 + 21540: -61,-27 + 21541: -60,-27 + 21542: -59,-26 + 21543: -59,-25 + 21544: -60,-25 + 21545: -61,-25 + 21546: -60,-23 + 21547: -60,-23 + 21548: -63,-23 + 21549: -64,-23 + 21550: -60,-23 + 21551: -62,-23 + 21552: -61,-23 + 21553: -65,-24 + 21554: -65,-25 + 21555: -65,-25 + 21556: -60,-25 + 21557: -60,-25 + 21558: -61,-27 + 21559: -62,-27 + 21560: -64,-27 + 21561: -62,-26 + 21562: -63,-26 + 21563: -63,-24 + 21564: -62,-24 + 21565: -61,-24 + 21566: -62,-25 - node: cleanable: True color: '#FFFFFFFF' @@ -20728,320 +20723,320 @@ entities: 1675: -39,-1 1676: -37,0 1677: -37,0 - 1783: -57,-26 - 1784: -57,-26 - 1824: -70,-24 - 1825: -70,-24 - 1826: -71,-25 - 1827: -70,-25 - 1828: -70,-26 - 1829: -71,-25 - 1830: -72,-24 - 1831: -72,-23 - 1832: -70,-27 - 1833: -71,-26 - 1834: -71,-27 - 1835: -72,-28 - 1836: -70,-29 - 1837: -69,-29 - 1838: -69,-28 - 1839: -69,-26 - 1840: -69,-24 - 4027: -22,37 - 4030: -17,45 - 4034: -14,68 - 4042: -27,69 - 4043: -2,26 - 16363: -71,-35 - 16364: -70,-36 - 16365: -67,-35 - 16366: -66,-36 - 16376: -71,-36 - 16377: -68,-37 + 1781: -57,-26 + 1782: -57,-26 + 1822: -70,-24 + 1823: -70,-24 + 1824: -71,-25 + 1825: -70,-25 + 1826: -70,-26 + 1827: -71,-25 + 1828: -72,-24 + 1829: -72,-23 + 1830: -70,-27 + 1831: -71,-26 + 1832: -71,-27 + 1833: -72,-28 + 1834: -70,-29 + 1835: -69,-29 + 1836: -69,-28 + 1837: -69,-26 + 1838: -69,-24 + 4025: -22,37 + 4028: -17,45 + 4032: -14,68 + 4040: -27,69 + 4041: -2,26 + 16361: -71,-35 + 16362: -70,-36 + 16363: -67,-35 + 16364: -66,-36 + 16374: -71,-36 + 16375: -68,-37 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 13727: -34,-75 - 13728: -34,-74 - 13729: -36,-73 - 13730: -37,-76 - 13731: -37,-78 - 13732: -37,-78 - 13733: -37,-79 - 13734: -29,-78 - 13735: -30,-76 - 13736: -30,-75 - 13737: -31,-75 - 13738: -31,-75 - 13783: -36,-71 - 13784: -36,-71 - 13785: -34,-71 - 13786: -33,-71 - 13787: -31,-71 - 13788: -30,-71 - 13789: -39,-71 - 13790: -39,-74 - 13791: -28,-70 - 13792: -27,-73 - 13793: -27,-73 - 13794: -26,-74 - 13795: -27,-74 - 13796: -26,-75 - 13797: -27,-73 - 13798: -27,-75 - 13812: -27,-65 - 13813: -28,-66 - 13814: -28,-63 - 13815: -27,-62 - 13816: -27,-62 - 13817: -27,-65 - 13818: -27,-67 - 13819: -27,-68 - 13820: -27,-69 - 13833: -30,-61 - 13884: -38,-56 - 13885: -39,-56 - 13886: -38,-55 - 13887: -37,-55 - 13888: -37,-56 - 13889: -40,-58 - 13890: -39,-58 - 13891: -38,-58 - 13892: -36,-58 - 13893: -34,-58 - 13894: -35,-57 - 13895: -34,-56 - 13896: -34,-57 - 13897: -34,-58 - 13898: -32,-58 - 13899: -31,-58 - 13900: -29,-58 - 13901: -28,-59 - 13902: -28,-59 - 13903: -28,-60 - 13904: -29,-61 - 13905: -29,-61 - 13906: -27,-62 - 13907: -27,-62 - 13908: -27,-61 - 13909: -25,-62 - 13910: -24,-62 - 13911: -23,-62 - 13912: -26,-62 - 13913: -26,-62 - 13914: -23,-62 - 13915: -21,-62 - 13916: -20,-62 - 13917: -18,-62 - 13918: -16,-62 - 13919: -16,-62 - 13920: -20,-62 - 13921: -17,-63 - 13922: -16,-63 - 13923: -16,-62 - 13924: -15,-62 - 13925: -19,-62 - 13926: -17,-63 - 13927: -14,-62 - 13928: -12,-62 - 13929: -11,-62 - 13930: -10,-62 - 13942: -27,-61 - 13943: -28,-58 - 13963: -58,-34 - 13964: -58,-36 - 13965: -58,-37 - 13966: -59,-39 - 13967: -58,-39 - 13968: -60,-39 - 13969: -60,-37 - 13970: -60,-36 - 13971: -60,-35 - 13972: -59,-34 - 13973: -60,-42 - 14093: -35,-49 - 14094: -35,-50 - 14095: -33,-50 - 14096: -33,-49 - 14097: -40,-49 - 14098: -43,-47 - 14099: -44,-47 - 14100: -44,-44 - 14101: -44,-45 - 14102: -44,-47 - 14103: -44,-49 - 14104: -44,-49 - 14105: -43,-41 - 14106: -44,-41 - 14107: -46,-41 - 14108: -47,-41 - 14109: -49,-41 - 14110: -50,-40 - 14111: -51,-41 - 14112: -51,-41 - 14113: -51,-40 - 14114: -50,-40 - 14115: -50,-40 - 14116: -51,-40 - 14117: -53,-40 - 14118: -53,-40 - 14119: -55,-40 - 14120: -55,-40 - 14121: -56,-39 - 14122: -56,-39 - 14123: -55,-38 - 14124: -55,-39 - 14125: -56,-37 - 14126: -55,-34 - 14127: -55,-35 - 14128: -56,-34 - 14129: -56,-33 - 14130: -55,-35 - 14131: -55,-35 - 14132: -61,-32 - 14133: -61,-32 - 14134: -62,-31 - 14135: -61,-31 - 14136: -60,-32 - 14230: -70,-21 - 14231: -69,-21 - 14232: -69,-21 - 14233: -68,-21 - 14234: -62,-21 - 14235: -63,-21 - 14236: -59,-21 - 14237: -62,-21 - 14238: -62,-21 - 14239: -59,-21 - 14240: -58,-20 - 14241: -57,-20 - 14242: -58,-21 - 14243: -59,-21 - 14244: -59,-21 - 14245: -61,-21 - 14285: -78,-20 - 14286: -78,-20 - 14287: -78,-19 - 14288: -77,-20 - 14289: -77,-23 - 14290: -78,-23 - 14291: -77,-24 - 14292: -78,-27 - 14293: -77,-27 - 14294: -77,-28 - 14295: -78,-31 - 14296: -77,-30 - 14297: -77,-31 - 14298: -77,-32 - 14299: -78,-30 - 14300: -77,-30 - 14301: -71,-32 - 14302: -71,-32 - 14303: -70,-31 - 14304: -68,-31 - 14305: -69,-32 + 13725: -34,-75 + 13726: -34,-74 + 13727: -36,-73 + 13728: -37,-76 + 13729: -37,-78 + 13730: -37,-78 + 13731: -37,-79 + 13732: -29,-78 + 13733: -30,-76 + 13734: -30,-75 + 13735: -31,-75 + 13736: -31,-75 + 13781: -36,-71 + 13782: -36,-71 + 13783: -34,-71 + 13784: -33,-71 + 13785: -31,-71 + 13786: -30,-71 + 13787: -39,-71 + 13788: -39,-74 + 13789: -28,-70 + 13790: -27,-73 + 13791: -27,-73 + 13792: -26,-74 + 13793: -27,-74 + 13794: -26,-75 + 13795: -27,-73 + 13796: -27,-75 + 13810: -27,-65 + 13811: -28,-66 + 13812: -28,-63 + 13813: -27,-62 + 13814: -27,-62 + 13815: -27,-65 + 13816: -27,-67 + 13817: -27,-68 + 13818: -27,-69 + 13831: -30,-61 + 13882: -38,-56 + 13883: -39,-56 + 13884: -38,-55 + 13885: -37,-55 + 13886: -37,-56 + 13887: -40,-58 + 13888: -39,-58 + 13889: -38,-58 + 13890: -36,-58 + 13891: -34,-58 + 13892: -35,-57 + 13893: -34,-56 + 13894: -34,-57 + 13895: -34,-58 + 13896: -32,-58 + 13897: -31,-58 + 13898: -29,-58 + 13899: -28,-59 + 13900: -28,-59 + 13901: -28,-60 + 13902: -29,-61 + 13903: -29,-61 + 13904: -27,-62 + 13905: -27,-62 + 13906: -27,-61 + 13907: -25,-62 + 13908: -24,-62 + 13909: -23,-62 + 13910: -26,-62 + 13911: -26,-62 + 13912: -23,-62 + 13913: -21,-62 + 13914: -20,-62 + 13915: -18,-62 + 13916: -16,-62 + 13917: -16,-62 + 13918: -20,-62 + 13919: -17,-63 + 13920: -16,-63 + 13921: -16,-62 + 13922: -15,-62 + 13923: -19,-62 + 13924: -17,-63 + 13925: -14,-62 + 13926: -12,-62 + 13927: -11,-62 + 13928: -10,-62 + 13940: -27,-61 + 13941: -28,-58 + 13961: -58,-34 + 13962: -58,-36 + 13963: -58,-37 + 13964: -59,-39 + 13965: -58,-39 + 13966: -60,-39 + 13967: -60,-37 + 13968: -60,-36 + 13969: -60,-35 + 13970: -59,-34 + 13971: -60,-42 + 14091: -35,-49 + 14092: -35,-50 + 14093: -33,-50 + 14094: -33,-49 + 14095: -40,-49 + 14096: -43,-47 + 14097: -44,-47 + 14098: -44,-44 + 14099: -44,-45 + 14100: -44,-47 + 14101: -44,-49 + 14102: -44,-49 + 14103: -43,-41 + 14104: -44,-41 + 14105: -46,-41 + 14106: -47,-41 + 14107: -49,-41 + 14108: -50,-40 + 14109: -51,-41 + 14110: -51,-41 + 14111: -51,-40 + 14112: -50,-40 + 14113: -50,-40 + 14114: -51,-40 + 14115: -53,-40 + 14116: -53,-40 + 14117: -55,-40 + 14118: -55,-40 + 14119: -56,-39 + 14120: -56,-39 + 14121: -55,-38 + 14122: -55,-39 + 14123: -56,-37 + 14124: -55,-34 + 14125: -55,-35 + 14126: -56,-34 + 14127: -56,-33 + 14128: -55,-35 + 14129: -55,-35 + 14130: -61,-32 + 14131: -61,-32 + 14132: -62,-31 + 14133: -61,-31 + 14134: -60,-32 + 14228: -70,-21 + 14229: -69,-21 + 14230: -69,-21 + 14231: -68,-21 + 14232: -62,-21 + 14233: -63,-21 + 14234: -59,-21 + 14235: -62,-21 + 14236: -62,-21 + 14237: -59,-21 + 14238: -58,-20 + 14239: -57,-20 + 14240: -58,-21 + 14241: -59,-21 + 14242: -59,-21 + 14243: -61,-21 + 14283: -78,-20 + 14284: -78,-20 + 14285: -78,-19 + 14286: -77,-20 + 14287: -77,-23 + 14288: -78,-23 + 14289: -77,-24 + 14290: -78,-27 + 14291: -77,-27 + 14292: -77,-28 + 14293: -78,-31 + 14294: -77,-30 + 14295: -77,-31 + 14296: -77,-32 + 14297: -78,-30 + 14298: -77,-30 + 14299: -71,-32 + 14300: -71,-32 + 14301: -70,-31 + 14302: -68,-31 + 14303: -69,-32 + 14304: -72,-32 + 14305: -74,-32 14306: -72,-32 - 14307: -74,-32 - 14308: -72,-32 - 14309: -69,-31 - 14310: -74,-32 - 14311: -62,-31 - 14312: -62,-32 - 14313: -61,-32 - 14314: -59,-31 - 14315: -58,-32 - 14316: -59,-32 - 14317: -61,-32 - 14318: -58,-32 - 14319: -58,-32 - 14320: -62,-31 - 14321: -63,-31 - 14322: -64,-31 - 14323: -61,-31 - 14324: -65,-31 - 14325: -68,-31 - 14326: -69,-32 - 14327: -71,-32 - 14328: -58,-31 - 14329: -60,-31 - 14330: -56,-31 - 14331: -55,-29 - 14332: -56,-29 - 14333: -55,-31 - 14334: -56,-32 - 14335: -55,-32 - 14336: -56,-31 - 14337: -55,-30 - 14338: -55,-30 - 14339: -55,-29 - 14340: -56,-26 - 14341: -56,-25 - 14342: -55,-26 - 14343: -55,-27 - 14344: -56,-26 - 14345: -56,-24 - 14346: -55,-24 - 14347: -56,-23 - 14348: -55,-22 - 14349: -56,-21 - 14350: -56,-20 - 14351: -55,-20 - 14352: -55,-21 - 14353: -55,-21 - 14354: -52,-20 - 14355: -52,-21 - 14356: -55,-20 - 14357: -54,-20 - 14358: -52,-21 - 14359: -51,-22 - 14360: -52,-23 - 14361: -54,-23 + 14307: -69,-31 + 14308: -74,-32 + 14309: -62,-31 + 14310: -62,-32 + 14311: -61,-32 + 14312: -59,-31 + 14313: -58,-32 + 14314: -59,-32 + 14315: -61,-32 + 14316: -58,-32 + 14317: -58,-32 + 14318: -62,-31 + 14319: -63,-31 + 14320: -64,-31 + 14321: -61,-31 + 14322: -65,-31 + 14323: -68,-31 + 14324: -69,-32 + 14325: -71,-32 + 14326: -58,-31 + 14327: -60,-31 + 14328: -56,-31 + 14329: -55,-29 + 14330: -56,-29 + 14331: -55,-31 + 14332: -56,-32 + 14333: -55,-32 + 14334: -56,-31 + 14335: -55,-30 + 14336: -55,-30 + 14337: -55,-29 + 14338: -56,-26 + 14339: -56,-25 + 14340: -55,-26 + 14341: -55,-27 + 14342: -56,-26 + 14343: -56,-24 + 14344: -55,-24 + 14345: -56,-23 + 14346: -55,-22 + 14347: -56,-21 + 14348: -56,-20 + 14349: -55,-20 + 14350: -55,-21 + 14351: -55,-21 + 14352: -52,-20 + 14353: -52,-21 + 14354: -55,-20 + 14355: -54,-20 + 14356: -52,-21 + 14357: -51,-22 + 14358: -52,-23 + 14359: -54,-23 + 14360: -36,-19 + 14361: -36,-18 14362: -36,-19 - 14363: -36,-18 - 14364: -36,-19 - 14365: -37,-16 - 14366: -37,-15 - 14367: -37,-14 - 14368: -37,-13 - 14369: -37,-11 - 14370: -39,-14 - 14371: -40,-14 - 14372: -39,-15 - 14373: -39,-16 - 14374: -40,-17 - 14375: -42,-16 - 14376: -41,-14 - 14377: -40,-16 - 14378: -41,-16 - 14379: -41,-16 - 14380: -41,-13 - 14381: -44,-11 - 14382: -39,-9 - 14383: -43,-8 - 14384: -40,-1 - 14385: -38,-1 - 14386: -38,-2 + 14363: -37,-16 + 14364: -37,-15 + 14365: -37,-14 + 14366: -37,-13 + 14367: -37,-11 + 14368: -39,-14 + 14369: -40,-14 + 14370: -39,-15 + 14371: -39,-16 + 14372: -40,-17 + 14373: -42,-16 + 14374: -41,-14 + 14375: -40,-16 + 14376: -41,-16 + 14377: -41,-16 + 14378: -41,-13 + 14379: -44,-11 + 14380: -39,-9 + 14381: -43,-8 + 14382: -40,-1 + 14383: -38,-1 + 14384: -38,-2 + 14385: -38,-3 + 14386: -38,1 14387: -38,-3 - 14388: -38,1 - 14389: -38,-3 - 14390: -37,-5 - 14391: -37,-7 - 14392: -37,-9 - 14393: -37,-12 - 14394: -37,-15 - 14395: -37,-15 - 14396: -37,-17 - 14397: -35,-19 - 14398: -32,-19 + 14388: -37,-5 + 14389: -37,-7 + 14390: -37,-9 + 14391: -37,-12 + 14392: -37,-15 + 14393: -37,-15 + 14394: -37,-17 + 14395: -35,-19 + 14396: -32,-19 + 14397: -32,-19 + 14398: -29,-20 14399: -32,-19 - 14400: -29,-20 - 14401: -32,-19 - 14402: -27,-19 - 14403: -23,-21 - 14404: -24,-22 - 14405: -25,-21 + 14400: -27,-19 + 14401: -23,-21 + 14402: -24,-22 + 14403: -25,-21 - node: color: '#FFFFFFFF' id: DirtLight @@ -21057,171 +21052,171 @@ entities: 1039: -29,-53 1040: -24,-49 1046: -12,-46 - 3874: 22,70 - 3908: 25,67 - 3909: 27,66 - 3910: 20,66 - 3911: 21,67 - 4000: -36,59 - 4001: -36,60 - 4025: -27,65 - 11090: 44,-63 - 11091: 44,-63 - 11092: 43,-62 - 11093: 45,-61 - 11094: 45,-61 - 11095: 45,-62 - 11096: 45,-62 - 11097: 36,-62 - 11098: 36,-62 - 11099: 34,-61 - 11100: 32,-61 - 11101: 32,-61 - 11102: 34,-66 - 11103: 34,-66 - 11104: 34,-67 - 11105: 34,-69 - 11106: 30,-68 - 11107: 30,-68 - 11108: 32,-67 - 11109: 30,-69 - 11110: 29,-70 - 11111: 28,-70 - 11112: 26,-69 - 11113: 28,-68 - 11114: 28,-68 - 11115: 27,-66 - 11116: 39,-71 - 11117: 41,-71 - 11118: 41,-71 - 11119: 41,-73 - 11120: 41,-73 - 11121: 42,-73 - 11122: 42,-75 - 11123: 39,-74 - 11124: 39,-74 - 11125: 37,-73 - 11126: 39,-73 - 11127: 35,-71 - 11128: 36,-70 - 11129: 36,-70 - 11130: 35,-68 - 11131: 36,-67 - 11132: 36,-66 - 11133: 35,-64 - 11134: 36,-64 - 11135: 35,-60 - 12890: -47,-23 - 12891: -47,-25 - 12892: -46,-26 - 12942: -46,-31 - 12943: -48,-30 - 12944: -48,-31 - 12945: -49,-31 - 12946: -47,-30 - 12947: -47,-29 - 12948: -48,-26 - 12949: -48,-25 - 12950: -47,-26 - 12951: -47,-27 - 12952: -46,-27 - 12953: -45,-26 - 12954: -45,-26 - 12955: -45,-27 - 12956: -46,-26 - 12957: -45,-25 - 12958: -45,-25 - 12959: -45,-27 - 12960: -44,-28 - 12961: -43,-28 - 12962: -42,-27 - 13339: 54,-37 - 13340: 53,-38 - 13341: 54,-38 - 13342: 55,-36 - 13343: 55,-35 - 16266: -66,-47 - 16267: -66,-48 - 16268: -66,-46 - 16269: -67,-46 - 16270: -64,-46 - 16271: -63,-46 - 16272: -63,-46 - 16273: -65,-47 - 16274: -63,-47 - 16275: -62,-46 - 16276: -62,-48 - 16277: -62,-48 - 16278: -63,-47 - 16279: -63,-48 - 16298: -64,-47 - 16299: -63,-47 - 16300: -63,-46 - 16301: -62,-46 - 16302: -62,-48 - 16303: -62,-48 - 16304: -63,-48 - 16305: -64,-48 - 16306: -63,-47 - 16307: -65,-46 - 16308: -65,-45 - 16309: -64,-45 - 16310: -63,-45 - 16311: -63,-46 - 16449: 10,70 - 16450: 10,69 - 16451: 11,70 - 16452: 12,70 - 16453: 12,68 - 16454: 11,67 - 16455: 10,67 - 16456: 12,69 - 16457: 12,67 - 16458: 10,68 - 16459: 9,68 - 16637: -43,0 - 16638: -43,-1 - 16639: -43,-3 - 16640: -43,-4 - 16641: -42,1 - 16642: -41,1 - 16643: -41,0 - 16644: -41,-2 - 16645: -42,-5 - 16646: -43,-8 - 16647: -40,-10 - 16648: -38,-10 - 16649: -38,-11 - 16650: -37,-20 - 16651: -34,-18 - 16652: -33,-18 - 16653: -33,-18 - 16654: -33,-20 - 16655: -34,-20 - 16656: -34,-20 - 16657: -34,-19 - 16658: -36,-19 - 16659: -40,-14 - 16660: -40,-15 - 16661: -40,-15 - 16662: -39,-15 - 16663: -39,-16 - 16664: -42,-16 - 16665: -42,-15 - 16666: -41,-15 - 16667: -41,-16 - 16668: -42,-17 - 16669: -40,-18 - 16670: -39,-18 - 16671: -39,-17 - 18436: -52,-40 - 18437: -55,-34 - 18438: -56,-34 - 18439: -52,-34 - 18452: -58,-46 - 21528: -63,-30 - 21529: -63,-29 - 21530: -62,-29 + 3872: 22,70 + 3906: 25,67 + 3907: 27,66 + 3908: 20,66 + 3909: 21,67 + 3998: -36,59 + 3999: -36,60 + 4023: -27,65 + 11088: 44,-63 + 11089: 44,-63 + 11090: 43,-62 + 11091: 45,-61 + 11092: 45,-61 + 11093: 45,-62 + 11094: 45,-62 + 11095: 36,-62 + 11096: 36,-62 + 11097: 34,-61 + 11098: 32,-61 + 11099: 32,-61 + 11100: 34,-66 + 11101: 34,-66 + 11102: 34,-67 + 11103: 34,-69 + 11104: 30,-68 + 11105: 30,-68 + 11106: 32,-67 + 11107: 30,-69 + 11108: 29,-70 + 11109: 28,-70 + 11110: 26,-69 + 11111: 28,-68 + 11112: 28,-68 + 11113: 27,-66 + 11114: 39,-71 + 11115: 41,-71 + 11116: 41,-71 + 11117: 41,-73 + 11118: 41,-73 + 11119: 42,-73 + 11120: 42,-75 + 11121: 39,-74 + 11122: 39,-74 + 11123: 37,-73 + 11124: 39,-73 + 11125: 35,-71 + 11126: 36,-70 + 11127: 36,-70 + 11128: 35,-68 + 11129: 36,-67 + 11130: 36,-66 + 11131: 35,-64 + 11132: 36,-64 + 11133: 35,-60 + 12888: -47,-23 + 12889: -47,-25 + 12890: -46,-26 + 12940: -46,-31 + 12941: -48,-30 + 12942: -48,-31 + 12943: -49,-31 + 12944: -47,-30 + 12945: -47,-29 + 12946: -48,-26 + 12947: -48,-25 + 12948: -47,-26 + 12949: -47,-27 + 12950: -46,-27 + 12951: -45,-26 + 12952: -45,-26 + 12953: -45,-27 + 12954: -46,-26 + 12955: -45,-25 + 12956: -45,-25 + 12957: -45,-27 + 12958: -44,-28 + 12959: -43,-28 + 12960: -42,-27 + 13337: 54,-37 + 13338: 53,-38 + 13339: 54,-38 + 13340: 55,-36 + 13341: 55,-35 + 16264: -66,-47 + 16265: -66,-48 + 16266: -66,-46 + 16267: -67,-46 + 16268: -64,-46 + 16269: -63,-46 + 16270: -63,-46 + 16271: -65,-47 + 16272: -63,-47 + 16273: -62,-46 + 16274: -62,-48 + 16275: -62,-48 + 16276: -63,-47 + 16277: -63,-48 + 16296: -64,-47 + 16297: -63,-47 + 16298: -63,-46 + 16299: -62,-46 + 16300: -62,-48 + 16301: -62,-48 + 16302: -63,-48 + 16303: -64,-48 + 16304: -63,-47 + 16305: -65,-46 + 16306: -65,-45 + 16307: -64,-45 + 16308: -63,-45 + 16309: -63,-46 + 16447: 10,70 + 16448: 10,69 + 16449: 11,70 + 16450: 12,70 + 16451: 12,68 + 16452: 11,67 + 16453: 10,67 + 16454: 12,69 + 16455: 12,67 + 16456: 10,68 + 16457: 9,68 + 16635: -43,0 + 16636: -43,-1 + 16637: -43,-3 + 16638: -43,-4 + 16639: -42,1 + 16640: -41,1 + 16641: -41,0 + 16642: -41,-2 + 16643: -42,-5 + 16644: -43,-8 + 16645: -40,-10 + 16646: -38,-10 + 16647: -38,-11 + 16648: -37,-20 + 16649: -34,-18 + 16650: -33,-18 + 16651: -33,-18 + 16652: -33,-20 + 16653: -34,-20 + 16654: -34,-20 + 16655: -34,-19 + 16656: -36,-19 + 16657: -40,-14 + 16658: -40,-15 + 16659: -40,-15 + 16660: -39,-15 + 16661: -39,-16 + 16662: -42,-16 + 16663: -42,-15 + 16664: -41,-15 + 16665: -41,-16 + 16666: -42,-17 + 16667: -40,-18 + 16668: -39,-18 + 16669: -39,-17 + 18434: -52,-40 + 18435: -55,-34 + 18436: -56,-34 + 18437: -52,-34 + 18450: -58,-46 + 21497: -63,-30 + 21498: -63,-29 + 21499: -62,-29 - node: cleanable: True color: '#FFFFFFFF' @@ -21339,17 +21334,17 @@ entities: 1636: -58,-41 1637: -58,-41 1638: -58,-43 - 1785: -57,-26 - 4029: -23,35 - 4031: -20,52 - 4032: -16,57 - 4036: -11,84 - 4037: -13,91 - 4038: -9,68 - 4039: 4,68 + 1783: -57,-26 + 4027: -23,35 + 4029: -20,52 + 4030: -16,57 + 4034: -11,84 + 4035: -13,91 + 4036: -9,68 + 4037: 4,68 + 16365: -66,-35 + 16366: -66,-35 16367: -66,-35 - 16368: -66,-35 - 16369: -66,-35 - node: cleanable: True angle: 1.5707963267948966 rad @@ -21385,236 +21380,236 @@ entities: 1043: -21,-29 1044: -12,-51 1045: -12,-49 - 3872: 18,71 - 3873: 17,71 - 3875: 19,71 - 3876: 20,71 - 3877: 21,69 - 3912: 21,65 - 3913: 22,65 - 3914: 23,65 - 4006: -38,63 - 11151: 35,-61 - 11152: 41,-62 - 11153: 39,-62 - 11154: 39,-62 - 11155: 36,-68 - 11156: 35,-67 - 11157: 35,-67 - 11158: 29,-68 - 11159: 29,-68 - 11160: 28,-66 - 11161: 26,-69 - 11162: 26,-70 - 11163: 27,-69 - 11164: 41,-67 - 11165: 28,-69 - 11166: 27,-60 - 11167: 27,-58 - 11168: 28,-56 - 11169: 28,-56 - 12910: -53,-27 - 12911: -53,-26 - 12912: -52,-25 - 12913: -51,-26 - 12914: -52,-28 - 12915: -52,-28 + 3870: 18,71 + 3871: 17,71 + 3873: 19,71 + 3874: 20,71 + 3875: 21,69 + 3910: 21,65 + 3911: 22,65 + 3912: 23,65 + 4004: -38,63 + 11149: 35,-61 + 11150: 41,-62 + 11151: 39,-62 + 11152: 39,-62 + 11153: 36,-68 + 11154: 35,-67 + 11155: 35,-67 + 11156: 29,-68 + 11157: 29,-68 + 11158: 28,-66 + 11159: 26,-69 + 11160: 26,-70 + 11161: 27,-69 + 11162: 41,-67 + 11163: 28,-69 + 11164: 27,-60 + 11165: 27,-58 + 11166: 28,-56 + 11167: 28,-56 + 12908: -53,-27 + 12909: -53,-26 + 12910: -52,-25 + 12911: -51,-26 + 12912: -52,-28 + 12913: -52,-28 + 12914: -50,-28 + 12915: -51,-29 12916: -50,-28 - 12917: -51,-29 - 12918: -50,-28 - 12919: -50,-27 - 12920: -51,-29 - 12921: -52,-30 - 12922: -52,-31 - 12923: -52,-31 - 12924: -52,-29 - 12925: -51,-30 - 12926: -51,-30 - 12927: -51,-31 - 12928: -53,-27 - 12929: -52,-26 - 12930: -52,-27 - 12931: -53,-25 - 12932: -51,-25 - 12933: -45,-27 - 12934: -45,-28 - 12935: -46,-29 - 12936: -47,-29 - 12937: -48,-31 - 12938: -46,-31 - 12939: -45,-31 - 12940: -46,-29 - 12941: -45,-28 - 13126: -30,-30 - 13127: -30,-29 - 13128: -30,-28 - 13129: -29,-28 - 13130: -28,-27 - 13131: -26,-27 - 13132: -26,-29 - 13133: -27,-30 - 13134: -29,-30 - 13135: -27,-29 - 13136: -27,-28 - 13137: -28,-28 - 13138: -28,-29 - 13139: -27,-28 - 13140: -29,-28 - 13141: 27,-57 - 13142: 28,-57 - 13235: 45,-52 - 13236: 44,-51 - 13237: 45,-50 - 13238: 45,-52 - 13239: 45,-53 - 13240: 46,-52 + 12917: -50,-27 + 12918: -51,-29 + 12919: -52,-30 + 12920: -52,-31 + 12921: -52,-31 + 12922: -52,-29 + 12923: -51,-30 + 12924: -51,-30 + 12925: -51,-31 + 12926: -53,-27 + 12927: -52,-26 + 12928: -52,-27 + 12929: -53,-25 + 12930: -51,-25 + 12931: -45,-27 + 12932: -45,-28 + 12933: -46,-29 + 12934: -47,-29 + 12935: -48,-31 + 12936: -46,-31 + 12937: -45,-31 + 12938: -46,-29 + 12939: -45,-28 + 13124: -30,-30 + 13125: -30,-29 + 13126: -30,-28 + 13127: -29,-28 + 13128: -28,-27 + 13129: -26,-27 + 13130: -26,-29 + 13131: -27,-30 + 13132: -29,-30 + 13133: -27,-29 + 13134: -27,-28 + 13135: -28,-28 + 13136: -28,-29 + 13137: -27,-28 + 13138: -29,-28 + 13139: 27,-57 + 13140: 28,-57 + 13233: 45,-52 + 13234: 44,-51 + 13235: 45,-50 + 13236: 45,-52 + 13237: 45,-53 + 13238: 46,-52 + 13239: 45,-55 + 13240: 46,-55 13241: 45,-55 - 13242: 46,-55 - 13243: 45,-55 - 13244: 45,-54 - 13245: 45,-52 - 13246: 45,-51 - 13247: 41,-54 - 13248: 41,-55 - 13249: 41,-55 - 13250: 40,-54 - 13251: 40,-53 - 13252: 40,-52 - 13253: 40,-51 - 13254: 40,-51 - 13255: 40,-53 - 13256: 41,-53 - 13257: 40,-54 - 13258: 39,-55 - 13259: 39,-55 - 13260: 40,-53 - 13261: 41,-52 + 13242: 45,-54 + 13243: 45,-52 + 13244: 45,-51 + 13245: 41,-54 + 13246: 41,-55 + 13247: 41,-55 + 13248: 40,-54 + 13249: 40,-53 + 13250: 40,-52 + 13251: 40,-51 + 13252: 40,-51 + 13253: 40,-53 + 13254: 41,-53 + 13255: 40,-54 + 13256: 39,-55 + 13257: 39,-55 + 13258: 40,-53 + 13259: 41,-52 + 13260: 41,-51 + 13261: 41,-50 13262: 41,-51 - 13263: 41,-50 - 13264: 41,-51 - 13265: 42,-52 - 13266: 40,-55 - 13267: 40,-56 - 13268: 39,-56 - 13269: 39,-56 - 13270: 42,-55 - 13271: 39,-51 - 13272: 46,-50 - 13273: 46,-51 - 13274: 47,-52 - 13275: 46,-54 - 13313: 52,-37 - 13331: 54,-39 - 13332: 55,-39 - 13333: 56,-39 - 13334: 55,-38 - 13335: 56,-36 - 13336: 53,-35 - 13337: 55,-37 - 13338: 55,-35 - 13481: -37,-63 - 13482: -37,-62 - 13483: -36,-62 - 13484: -37,-61 - 13485: -38,-60 - 13501: -41,-62 + 13263: 42,-52 + 13264: 40,-55 + 13265: 40,-56 + 13266: 39,-56 + 13267: 39,-56 + 13268: 42,-55 + 13269: 39,-51 + 13270: 46,-50 + 13271: 46,-51 + 13272: 47,-52 + 13273: 46,-54 + 13311: 52,-37 + 13329: 54,-39 + 13330: 55,-39 + 13331: 56,-39 + 13332: 55,-38 + 13333: 56,-36 + 13334: 53,-35 + 13335: 55,-37 + 13336: 55,-35 + 13479: -37,-63 + 13480: -37,-62 + 13481: -36,-62 + 13482: -37,-61 + 13483: -38,-60 + 13499: -41,-62 + 13500: -41,-63 + 13501: -40,-63 13502: -41,-63 - 13503: -40,-63 - 13504: -41,-63 - 16077: 78,4 - 16078: 79,4 - 16079: 79,5 - 16080: 78,5 - 16081: 92,6 - 16093: 99,-4 - 16094: 100,-4 - 16095: 100,-3 - 16096: 99,-3 - 16097: 99,-2 - 16098: 100,-2 - 16099: 93,-4 - 16333: -69,-43 - 16334: -69,-42 - 16335: -69,-41 - 16336: -66,-41 - 16337: -66,-43 - 16338: -65,-43 - 16339: -64,-40 + 16075: 78,4 + 16076: 79,4 + 16077: 79,5 + 16078: 78,5 + 16079: 92,6 + 16091: 99,-4 + 16092: 100,-4 + 16093: 100,-3 + 16094: 99,-3 + 16095: 99,-2 + 16096: 100,-2 + 16097: 93,-4 + 16331: -69,-43 + 16332: -69,-42 + 16333: -69,-41 + 16334: -66,-41 + 16335: -66,-43 + 16336: -65,-43 + 16337: -64,-40 + 16599: -43,-11 + 16600: -43,-12 16601: -43,-11 - 16602: -43,-12 - 16603: -43,-11 - 16604: -38,-10 - 16605: -37,-9 - 16606: -38,-9 - 16607: -38,-10 - 16608: -38,-10 - 16609: -38,-9 - 16610: -38,-11 - 16611: -43,-4 - 16612: -43,-3 + 16602: -38,-10 + 16603: -37,-9 + 16604: -38,-9 + 16605: -38,-10 + 16606: -38,-10 + 16607: -38,-9 + 16608: -38,-11 + 16609: -43,-4 + 16610: -43,-3 + 16611: -43,-2 + 16612: -43,-1 16613: -43,-2 - 16614: -43,-1 - 16615: -43,-2 - 16616: -43,-5 - 16617: -43,-6 - 16618: -43,-7 - 16619: -43,-7 - 16620: -43,-4 - 16621: -43,-2 - 16622: -43,0 - 16623: -43,1 - 16624: -42,1 - 16625: -42,0 - 16626: -43,0 - 16627: -42,1 - 16628: -41,1 - 16629: -42,-1 - 16630: -41,-2 - 16631: -41,-1 - 16632: -41,0 - 16633: -41,-2 - 16634: -41,-2 - 16635: -41,-1 - 16636: -41,0 - 16672: -41,-15 - 16673: -42,-16 - 16674: -42,-17 - 16675: -40,-18 - 16676: -39,-18 - 16677: -39,-17 - 16678: -40,-17 - 16679: -41,-17 - 16680: -40,-16 - 16681: -43,-15 - 16682: -42,-15 - 16683: -42,-14 - 16684: -41,-14 - 16685: -40,-14 - 19858: -28,-24 - 19859: -27,-23 - 19860: -27,-22 - 19861: -30,-24 - 19862: -30,-25 - 19863: -28,-25 - 19864: -29,-25 - 19865: -28,-22 - 19866: -27,-22 - 19867: -29,-22 - 19881: -30,-23 - 19882: -29,-23 - 19883: -28,-23 - 21531: -63,-29 - 21532: -63,-30 - 21533: -61,-29 - 21534: -62,-30 - 21535: -64,-30 - 21536: -65,-30 - 21537: -65,-30 - 21538: -60,-29 - 21539: -59,-29 - 21540: -59,-30 - 21541: -59,-30 - 21542: -59,-29 + 16614: -43,-5 + 16615: -43,-6 + 16616: -43,-7 + 16617: -43,-7 + 16618: -43,-4 + 16619: -43,-2 + 16620: -43,0 + 16621: -43,1 + 16622: -42,1 + 16623: -42,0 + 16624: -43,0 + 16625: -42,1 + 16626: -41,1 + 16627: -42,-1 + 16628: -41,-2 + 16629: -41,-1 + 16630: -41,0 + 16631: -41,-2 + 16632: -41,-2 + 16633: -41,-1 + 16634: -41,0 + 16670: -41,-15 + 16671: -42,-16 + 16672: -42,-17 + 16673: -40,-18 + 16674: -39,-18 + 16675: -39,-17 + 16676: -40,-17 + 16677: -41,-17 + 16678: -40,-16 + 16679: -43,-15 + 16680: -42,-15 + 16681: -42,-14 + 16682: -41,-14 + 16683: -40,-14 + 19856: -28,-24 + 19857: -27,-23 + 19858: -27,-22 + 19859: -30,-24 + 19860: -30,-25 + 19861: -28,-25 + 19862: -29,-25 + 19863: -28,-22 + 19864: -27,-22 + 19865: -29,-22 + 19879: -30,-23 + 19880: -29,-23 + 19881: -28,-23 + 21500: -63,-29 + 21501: -63,-30 + 21502: -61,-29 + 21503: -62,-30 + 21504: -64,-30 + 21505: -65,-30 + 21506: -65,-30 + 21507: -60,-29 + 21508: -59,-29 + 21509: -59,-30 + 21510: -59,-30 + 21511: -59,-29 - node: cleanable: True color: '#FFFFFFFF' @@ -21652,14 +21647,14 @@ entities: 1646: -60,-50 1647: -60,-48 1648: -58,-49 - 4028: -16,38 - 4035: -13,74 - 16373: -69,-35 - 16374: -69,-35 - 16375: -66,-36 - 16378: -69,-36 - 16379: -63,-33 - 16396: -70,-37 + 4026: -16,38 + 4033: -13,74 + 16371: -69,-35 + 16372: -69,-35 + 16373: -66,-36 + 16376: -69,-36 + 16377: -63,-33 + 16394: -70,-37 - node: cleanable: True angle: 1.5707963267948966 rad @@ -21679,23 +21674,23 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 13821: -28,-65 - 13822: -28,-64 - 13823: -28,-63 - 13974: -59,-35 - 13975: -59,-34 - 14081: -46,-41 + 13819: -28,-65 + 13820: -28,-64 + 13821: -28,-63 + 13972: -59,-35 + 13973: -59,-34 + 14079: -46,-41 + 14080: -47,-41 + 14081: -48,-41 14082: -47,-41 - 14083: -48,-41 - 14084: -47,-41 - 14085: -43,-41 - 14086: -40,-49 - 14087: -43,-47 - 14088: -35,-49 - 14089: -35,-50 - 14090: -33,-49 - 14091: -33,-49 - 14092: -33,-50 + 14083: -43,-41 + 14084: -40,-49 + 14085: -43,-47 + 14086: -35,-49 + 14087: -35,-50 + 14088: -33,-49 + 14089: -33,-49 + 14090: -33,-50 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -21712,8 +21707,8 @@ entities: decals: 1131: 1,-6 1171: 70,-18 - 15840: 81,3 - 21370: -16.774988,18.928102 + 15838: 81,3 + 21368: -16.774988,18.928102 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -21722,7 +21717,7 @@ entities: 540: -1,-84 541: 0,-84 1126: -6,-4 - 21369: -16.884361,19.974977 + 21367: -16.884361,19.974977 - node: color: '#FFFFFFFF' id: Flowersbr2 @@ -21749,19 +21744,22 @@ entities: 543: -1,-84 544: 0,-84 1132: -5,-5 + 21667: 14.879294,19.98756 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 504: -6.064717,-73.98025 1134: -4,4 + 21669: 14.941794,19.05006 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 1133: 3,1 1172: 72,-18 - 15562: 68,-21 + 15560: 68,-21 + 21668: 15.051168,17.92506 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -21842,26 +21840,26 @@ entities: color: '#FFFFFFFF' id: Grassa3 decals: - 2168: -18,43 + 2166: -18,43 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 15563: 69,-21 - 18700: 3,-3 + 15561: 69,-21 + 18698: 3,-3 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 15839: 89,3 + 15837: 89,3 - node: color: '#FFFFFFFF' id: Grassb1 decals: 1137: 4,4 1252: -34,40 - 2184: -20,42 - 2853: -34,41 + 2182: -20,42 + 2851: -34,41 - node: color: '#FFFFFFFF' id: Grassb2 @@ -21880,7 +21878,7 @@ entities: 1135: -3,4 1169: 70,-24 1573: -39,32 - 2171: -18,39 + 2169: -18,39 - node: color: '#FFFFFFFF' id: Grassb5 @@ -21888,9 +21886,9 @@ entities: 1136: 1,-4 1170: 68,-20 1574: -40,35 - 2172: -21,41 - 2852: -33,42 - 18701: 2,2 + 2170: -21,41 + 2850: -33,42 + 18699: 2,2 - node: color: '#FFFFFFFF' id: Grassc1 @@ -21906,9 +21904,8 @@ entities: 1107: 2,8 1163: 69,-18 1250: -34,42 - 2167: -20,39 - 21367: 14.954241,19.381239 - 21368: -16.861458,19.162476 + 2165: -20,39 + 21366: -16.861458,19.162476 - node: cleanable: True color: '#FFFFFFFF' @@ -21947,9 +21944,9 @@ entities: 1165: 70,-23 1167: 71,-21 1575: -39,31 - 2183: -20,40 - 2851: -33,40 - 18702: 4,-4 + 2181: -20,40 + 2849: -33,40 + 18700: 4,-4 - node: color: '#FFFFFFFF' id: Grassc4 @@ -21961,10 +21958,10 @@ entities: 1121: -3,7 1166: 72,-24 1568: -41,33 - 2166: -21,42 - 2170: -17,42 - 15560: 68,-23 - 15561: 69,-23 + 2164: -21,42 + 2168: -17,42 + 15558: 68,-23 + 15559: 69,-23 - node: color: '#FFFFFFFF' id: Grassd1 @@ -21980,24 +21977,29 @@ entities: 1150: 73,-24 1569: -40,31 1576: -41,32 - 2150: -19,43 - 2158: -18,42 - 2159: -18,42 - 2160: -18,43 - 15538: 71,-24 - 15539: 72,-23 - 15540: 69,-23 - 15541: 70,-23 - 15542: 73,-23 - 15546: 72,-20 - 15547: 71,-20 - 15548: 69,-21 - 15549: 70,-17 - 15550: 71,-17 - 15551: 68,-18 - 15552: 72,-18 - 15553: 74,-18 - 15554: 72,-17 + 2148: -19,43 + 2156: -18,42 + 2157: -18,42 + 2158: -18,43 + 15536: 71,-24 + 15537: 72,-23 + 15538: 69,-23 + 15539: 70,-23 + 15540: 73,-23 + 15544: 72,-20 + 15545: 71,-20 + 15546: 69,-21 + 15547: 70,-17 + 15548: 71,-17 + 15549: 68,-18 + 15550: 72,-18 + 15551: 74,-18 + 15552: 72,-17 + 21661: 14.848043,17.971935 + 21662: 14.910544,18.565685 + 21663: 14.879294,19.440685 + 21664: 14.457419,19.596935 + 21665: 14.785545,20.45631 - node: color: '#FFFFFFFF' id: Grassd2 @@ -22013,57 +22015,56 @@ entities: 1152: 72,-17 1153: 69,-23 1578: -39,35 - 2149: -17,41 - 2161: -18,39 - 2181: -20,40 - 2185: -20,42 - 2186: -20,42 - 15555: 73,-17 - 15556: 71,-18 - 15557: 71,-18 - 15558: 69,-17 - 15559: 71,-17 - 15835: 82,3 - 18597: -6,0 - 18598: -6,1 - 18599: -6,-1 - 18600: -3,-1 - 18601: -3,0 - 18602: -5,-1 - 18603: -3,-3 - 18604: -4,-2 - 18605: -3,4 - 18606: -3,4 - 18607: -3,3 - 18608: -3,5 - 18609: -3,6 - 18610: -3,7 - 18611: -4,7 - 18612: -4,8 - 18613: -3,9 - 18614: -3,8 + 2147: -17,41 + 2159: -18,39 + 2179: -20,40 + 2183: -20,42 + 2184: -20,42 + 15553: 73,-17 + 15554: 71,-18 + 15555: 71,-18 + 15556: 69,-17 + 15557: 71,-17 + 15833: 82,3 + 18595: -6,0 + 18596: -6,1 + 18597: -6,-1 + 18598: -3,-1 + 18599: -3,0 + 18600: -5,-1 + 18601: -3,-3 + 18602: -4,-2 + 18603: -3,4 + 18604: -3,4 + 18605: -3,3 + 18606: -3,5 + 18607: -3,6 + 18608: -3,7 + 18609: -4,7 + 18610: -4,8 + 18611: -3,9 + 18612: -3,8 + 18613: -4,8 + 18614: -4,9 18615: -4,8 - 18616: -4,9 + 18616: -4,7 18617: -4,8 - 18618: -4,7 - 18619: -4,8 - 18620: -3,9 - 18621: -3,8 - 18622: -4,5 - 18623: -4,6 - 18624: -3,5 - 18625: -4,4 - 18626: -5,4 - 18627: -4,3 - 18628: -3,2 - 18657: 2,-2 - 18658: 3,-1 - 18659: 2,-4 - 18660: 1,-5 - 18661: 3,-6 - 18662: 4,-6 - 18663: 4,-6 - 21372: 14.885454,17.936722 + 18618: -3,9 + 18619: -3,8 + 18620: -4,5 + 18621: -4,6 + 18622: -3,5 + 18623: -4,4 + 18624: -5,4 + 18625: -4,3 + 18626: -3,2 + 18655: 2,-2 + 18656: 3,-1 + 18657: 2,-4 + 18658: 1,-5 + 18659: 3,-6 + 18660: 4,-6 + 18661: 4,-6 - node: color: '#FFFFFFFF' id: Grassd3 @@ -22077,15 +22078,16 @@ entities: 1155: 74,-20 1156: 69,-17 1570: -39,32 - 2148: -17,42 - 2162: -19,39 - 2163: -20,43 - 2182: -20,42 - 2849: -33,42 - 2850: -34,41 - 15838: 89,3 - 21364: -16.892008,19.490566 - 21373: -16.71812,17.842958 + 2146: -17,42 + 2160: -19,39 + 2161: -20,43 + 2180: -20,42 + 2847: -33,42 + 2848: -34,41 + 15836: 89,3 + 21362: -16.892008,19.490566 + 21371: -16.71812,17.842958 + 21666: 15.035544,19.95631 - node: color: '#FFFFFFFF' id: Grasse1 @@ -22099,31 +22101,30 @@ entities: 1158: 69,-20 1572: -38,34 1577: -39,34 - 2154: -21,41 - 2155: -21,41 - 15837: 88,3 - 18629: -4,-2 - 18630: -3,-2 - 18631: -3,-4 - 18632: -3,-4 - 18633: -3,-6 + 2152: -21,41 + 2153: -21,41 + 15835: 88,3 + 18627: -4,-2 + 18628: -3,-2 + 18629: -3,-4 + 18630: -3,-4 + 18631: -3,-6 + 18632: -4,-6 + 18633: -5,-6 18634: -4,-6 - 18635: -5,-6 - 18636: -4,-6 - 18637: -4,-5 - 18638: -5,-5 - 18639: -3,-5 - 18640: -3,-4 - 18641: -5,-3 - 18642: -6,-2 - 18643: -5,-1 - 18644: -6,0 - 18645: 3,1 - 18646: 2,1 + 18635: -4,-5 + 18636: -5,-5 + 18637: -3,-5 + 18638: -3,-4 + 18639: -5,-3 + 18640: -6,-2 + 18641: -5,-1 + 18642: -6,0 + 18643: 3,1 + 18644: 2,1 + 18645: 2,3 + 18646: 1,2 18647: 2,3 - 18648: 1,2 - 18649: 2,3 - 21363: 14.992542,20.099949 - node: color: '#FFFFFFFF' id: Grasse2 @@ -22137,18 +22138,18 @@ entities: 1160: 70,-21 1251: -33,43 1571: -41,35 - 2147: -17,40 - 2151: -20,43 - 2152: -20,39 - 2169: -19,43 - 15836: 81,3 - 18695: 4,-4 - 18696: 4,-3 - 18697: 4,-3 - 18698: 3,-5 - 18699: 3,-1 - 21366: -17.048258,19.490566 - 21375: -16.921246,18.874208 + 2145: -17,40 + 2149: -20,43 + 2150: -20,39 + 2167: -19,43 + 15834: 81,3 + 18693: 4,-4 + 18694: 4,-3 + 18695: 4,-3 + 18696: 3,-5 + 18697: 3,-1 + 21364: -17.048258,19.490566 + 21373: -16.921246,18.874208 - node: color: '#FFFFFFFF' id: Grasse3 @@ -22159,64 +22160,62 @@ entities: 1161: 73,-18 1162: 74,-23 1249: -33,40 - 2146: -21,42 - 2153: -21,40 - 2156: -18,40 - 2157: -18,40 - 2164: -21,40 - 2165: -17,42 - 15543: 73,-21 - 15544: 74,-21 - 15545: 72,-20 - 18650: 1,3 - 18651: 1,4 - 18652: 1,5 - 18653: 1,6 - 18654: 1,7 - 18655: 1,8 - 18656: 1,8 - 18664: 1,-6 - 18665: 1,-3 - 18666: 4,-2 - 18667: 4,-2 - 18668: 3,-2 - 18669: 3,2 - 18670: 3,2 - 18671: 3,3 - 18672: 3,3 - 18673: 3,4 - 18674: 4,4 - 18675: 4,2 - 18676: 3,0 + 2144: -21,42 + 2151: -21,40 + 2154: -18,40 + 2155: -18,40 + 2162: -21,40 + 2163: -17,42 + 15541: 73,-21 + 15542: 74,-21 + 15543: 72,-20 + 18648: 1,3 + 18649: 1,4 + 18650: 1,5 + 18651: 1,6 + 18652: 1,7 + 18653: 1,8 + 18654: 1,8 + 18662: 1,-6 + 18663: 1,-3 + 18664: 4,-2 + 18665: 4,-2 + 18666: 3,-2 + 18667: 3,2 + 18668: 3,2 + 18669: 3,3 + 18670: 3,3 + 18671: 3,4 + 18672: 4,4 + 18673: 4,2 + 18674: 3,0 + 18675: 3,-1 + 18676: 3,-1 18677: 3,-1 - 18678: 3,-1 - 18679: 3,-1 - 18680: 3,0 + 18678: 3,0 + 18679: 4,0 + 18680: 4,0 18681: 4,0 - 18682: 4,0 - 18683: 4,0 - 18684: 1,0 - 18685: 2,-2 - 18686: 3,-2 + 18682: 1,0 + 18683: 2,-2 + 18684: 3,-2 + 18685: 3,-3 + 18686: 2,-3 18687: 3,-3 - 18688: 2,-3 - 18689: 3,-3 - 18690: 3,-3 - 18691: 4,-4 - 18692: 2,-5 - 18693: 2,-5 - 18694: 3,-4 - 21362: 14.976916,19.162449 - 21365: -16.985758,20.224941 - 21371: 14.71358,18.577347 - 21374: -16.952496,18.202333 + 18688: 3,-3 + 18689: 4,-4 + 18690: 2,-5 + 18691: 2,-5 + 18692: 3,-4 + 21363: -16.985758,20.224941 + 21372: -16.952496,18.202333 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale decals: - 1787: -71,-23 - 1788: -70,-23 - 1789: -69,-23 + 1785: -71,-23 + 1786: -70,-23 + 1787: -69,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -22245,9 +22244,9 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale decals: - 15693: 96,7 - 15694: 97,7 - 15700: 95,7 + 15691: 96,7 + 15692: 97,7 + 15698: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -22272,9 +22271,9 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale decals: - 3793: 10,70 - 3794: 11,70 - 3795: 12,70 + 3791: 10,70 + 3792: 11,70 + 3793: 12,70 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -22299,8 +22298,8 @@ entities: color: '#169C9C93' id: HalfTileOverlayGreyscale180 decals: - 1795: -70,-29 - 1796: -69,-29 + 1793: -70,-29 + 1794: -69,-29 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -22337,8 +22336,8 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale180 decals: - 15691: 95,6 - 15692: 97,6 + 15689: 95,6 + 15690: 97,6 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -22350,9 +22349,9 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale180 decals: - 3802: 10,66 - 3803: 11,66 - 3804: 12,66 + 3800: 10,66 + 3801: 11,66 + 3802: 12,66 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -22363,10 +22362,10 @@ entities: color: '#169C9C93' id: HalfTileOverlayGreyscale270 decals: - 1790: -72,-24 - 1791: -72,-25 - 1792: -72,-27 - 1793: -72,-28 + 1788: -72,-24 + 1789: -72,-25 + 1790: -72,-27 + 1791: -72,-28 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -22404,8 +22403,8 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale270 decals: - 15695: 95,6 - 15699: 95,7 + 15693: 95,6 + 15697: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -22421,11 +22420,11 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale270 decals: - 3788: 10,67 - 3789: 10,66 - 3790: 10,68 - 3791: 10,69 - 3792: 10,70 + 3786: 10,67 + 3787: 10,66 + 3788: 10,68 + 3789: 10,69 + 3790: 10,70 - node: cleanable: True color: '#EFB34196' @@ -22477,8 +22476,8 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale90 decals: - 15696: 97,6 - 15697: 97,7 + 15694: 97,6 + 15695: 97,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -22494,12 +22493,12 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale90 decals: - 3796: 12,70 - 3797: 12,69 - 3798: 12,68 - 3799: 12,68 - 3800: 12,67 - 3801: 12,66 + 3794: 12,70 + 3795: 12,69 + 3796: 12,68 + 3797: 12,68 + 3798: 12,67 + 3799: 12,66 - node: cleanable: True color: '#EFB34196' @@ -22546,170 +22545,170 @@ entities: 25: 24,52 985: -35,-40 1055: -35,-45 - 3131: -2,60 + 3129: -2,60 - node: angle: 3.141592653589793 rad color: '#8BDA8EFF' id: LoadingAreaGreyscale decals: - 15698: 96,6 + 15696: 96,6 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNe decals: - 15953: 78,10 - 15973: 86,10 - 16001: 93,23 + 15951: 78,10 + 15971: 86,10 + 15999: 93,23 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNw decals: - 15951: 76,10 - 15954: 80,10 - 16002: 91,23 - 16011: 81,14 + 15949: 76,10 + 15952: 80,10 + 16000: 91,23 + 16009: 81,14 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSe decals: - 15956: 78,8 - 15972: 86,9 - 15994: 93,12 + 15954: 78,8 + 15970: 86,9 + 15992: 93,12 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSw decals: - 15955: 76,8 - 16009: 81,12 + 15953: 76,8 + 16007: 81,12 - node: color: '#DA8B8BFF' id: MiniTileDarkEndW decals: - 16044: 91,15 + 16042: 91,15 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNe decals: - 15964: 78,9 - 15981: 83,10 - 16022: 93,13 - 16026: 93,17 - 16030: 93,21 - 16035: 92,23 + 15962: 78,9 + 15979: 83,10 + 16020: 93,13 + 16024: 93,17 + 16028: 93,21 + 16033: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNw decals: - 15958: 76,9 - 15965: 80,9 - 15980: 83,10 - 16021: 91,14 - 16032: 91,21 - 16036: 92,23 + 15956: 76,9 + 15963: 80,9 + 15978: 83,10 + 16019: 91,14 + 16030: 91,21 + 16034: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSe decals: - 15962: 78,9 - 16023: 93,13 - 16027: 93,17 - 16028: 93,20 - 16029: 93,21 + 15960: 78,9 + 16021: 93,13 + 16025: 93,17 + 16026: 93,20 + 16027: 93,21 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSw decals: - 15963: 76,9 - 16033: 91,21 + 15961: 76,9 + 16031: 91,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineE decals: - 15959: 75,9 - 15960: 79,9 - 15995: 93,14 - 15996: 93,16 - 15997: 93,18 - 15998: 93,19 - 15999: 93,20 - 16000: 93,22 - 16034: 90,21 + 15957: 75,9 + 15958: 79,9 + 15993: 93,14 + 15994: 93,16 + 15995: 93,18 + 15996: 93,19 + 15997: 93,20 + 15998: 93,22 + 16032: 90,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineN decals: - 15948: 83,11 - 15952: 77,10 - 15974: 85,10 - 15975: 84,10 - 15976: 81,10 - 15977: 82,10 - 15978: 83,11 - 16012: 82,14 - 16013: 84,14 - 16014: 83,14 - 16015: 85,14 - 16016: 86,14 - 16017: 87,14 - 16018: 89,14 - 16019: 88,14 - 16020: 90,14 - 16043: 92,15 - 16048: 91,15 - 16049: 93,15 + 15946: 83,11 + 15950: 77,10 + 15972: 85,10 + 15973: 84,10 + 15974: 81,10 + 15975: 82,10 + 15976: 83,11 + 16010: 82,14 + 16011: 84,14 + 16012: 83,14 + 16013: 85,14 + 16014: 86,14 + 16015: 87,14 + 16016: 89,14 + 16017: 88,14 + 16018: 90,14 + 16041: 92,15 + 16046: 91,15 + 16047: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineS decals: - 15949: 83,11 - 15957: 77,8 - 15966: 80,9 - 15967: 81,9 - 15968: 82,9 - 15969: 83,9 - 15970: 84,9 - 15971: 85,9 - 15979: 83,11 - 15982: 82,12 - 15983: 84,12 - 15984: 85,12 - 15985: 86,12 - 15986: 87,12 - 15987: 89,12 - 15988: 88,12 - 15989: 90,12 - 15990: 91,12 - 15991: 92,12 - 15992: 93,12 - 16037: 92,24 - 16042: 92,15 - 16046: 91,15 - 16047: 93,15 + 15947: 83,11 + 15955: 77,8 + 15964: 80,9 + 15965: 81,9 + 15966: 82,9 + 15967: 83,9 + 15968: 84,9 + 15969: 85,9 + 15977: 83,11 + 15980: 82,12 + 15981: 84,12 + 15982: 85,12 + 15983: 86,12 + 15984: 87,12 + 15985: 89,12 + 15986: 88,12 + 15987: 90,12 + 15988: 91,12 + 15989: 92,12 + 15990: 93,12 + 16035: 92,24 + 16040: 92,15 + 16044: 91,15 + 16045: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineW decals: - 15961: 79,9 - 15993: 94,13 - 16003: 91,22 - 16004: 91,20 - 16005: 91,19 - 16006: 91,18 - 16007: 91,17 - 16008: 91,16 - 16010: 81,13 - 16024: 94,13 - 16025: 94,17 - 16031: 94,21 + 15959: 79,9 + 15991: 94,13 + 16001: 91,22 + 16002: 91,20 + 16003: 91,19 + 16004: 91,18 + 16005: 91,17 + 16006: 91,16 + 16008: 81,13 + 16022: 94,13 + 16023: 94,17 + 16029: 94,21 - node: color: '#8CB7E8FF' id: MiniTileDiagonalCheckerBOverlay decals: - 10023: 32,-40 - 10024: 33,-40 - 10025: 34,-40 - 10026: 35,-40 - 10027: 36,-40 + 10021: 32,-40 + 10022: 33,-40 + 10023: 34,-40 + 10024: 35,-40 + 10025: 36,-40 - node: color: '#1D1D214C' id: MiniTileDiagonalOverlay @@ -22732,34 +22731,34 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 15566: 7,-15 + 15564: 7,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 15567: 9,-15 + 15565: 9,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 15565: 7,-13 + 15563: 7,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 15564: 9,-13 + 15562: 9,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 15578: 9,-14 - 18556: 8,-13 + 15576: 9,-14 + 18554: 8,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 15577: 7,-14 - 18555: 8,-13 + 15575: 7,-14 + 18553: 8,-13 - node: cleanable: True color: '#FFFFFFFF' @@ -22771,8 +22770,8 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 15573: 8,-16 - 15574: 9,-14 + 15571: 8,-16 + 15572: 9,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -22783,8 +22782,8 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 15575: 8,-16 - 15576: 7,-14 + 15573: 8,-16 + 15574: 7,-14 - node: cleanable: True color: '#FFFFFFFF' @@ -22795,29 +22794,29 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 15570: 7,-16 - 15571: 6,-14 + 15568: 7,-16 + 15569: 6,-14 - node: color: '#DA8B8BFF' id: MiniTileSteelLineN decals: - 15950: 83,11 + 15948: 83,11 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 15568: 8,-17 + 15566: 8,-17 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 18554: 8,-12 + 18552: 8,-12 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 15569: 9,-16 - 15572: 10,-14 + 15567: 9,-16 + 15570: 10,-14 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw @@ -22842,12 +22841,12 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw decals: - 13316: 53,-37 + 13314: 53,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw decals: - 13315: 53,-37 + 13313: 53,-37 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE @@ -22862,14 +22861,14 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 13314: 52,-37 + 13312: 52,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 5702: 13,3 - 13319: 54,-35 - 13320: 55,-35 + 5700: 13,3 + 13317: 54,-35 + 13318: 55,-35 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW @@ -22884,75 +22883,75 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 13317: 53,-36 - 13318: 53,-38 + 13315: 53,-36 + 13316: 53,-38 - node: color: '#630000FF' id: Omni decals: - 13630: -32.978848,-78.98036 + 13628: -32.978848,-78.98036 - node: color: '#00000019' id: OriginStationSign4 decals: - 13859: -68,61 - 13860: -68,60 - 13861: -68,59 - 13862: -68,58 - 13863: -67,58 - 13864: -67,57 - 13865: -66,58 - 13866: -66,59 - 13867: -67,59 - 13868: -67,60 - 13869: -66,60 - 13870: -66,61 - 13871: -67,61 - 13872: -65,62 - 13873: -65,61 - 13874: -65,60 - 13877: -65,59 - 13881: -65,58 - 13944: -68,62 - 13945: -67,62 - 13946: -66,62 + 13857: -68,61 + 13858: -68,60 + 13859: -68,59 + 13860: -68,58 + 13861: -67,58 + 13862: -67,57 + 13863: -66,58 + 13864: -66,59 + 13865: -67,59 + 13866: -67,60 + 13867: -66,60 + 13868: -66,61 + 13869: -67,61 + 13870: -65,62 + 13871: -65,61 + 13872: -65,60 + 13875: -65,59 + 13879: -65,58 + 13942: -68,62 + 13943: -67,62 + 13944: -66,62 - node: color: '#00000028' id: OriginStationSign4 decals: - 13976: -72,57 - 13977: -72,58 - 13978: -71,58 - 13979: -71,57 - 13980: -70,57 - 13981: -70,58 - 13982: -72,58 - 13983: -72,57 - 13984: -71,57 - 13985: -71,58 - 13986: -70,58 - 13987: -70,57 - 13988: -72,56 - 13989: -71,56 - 13990: -70,56 - 13991: -72,57 - 13992: -72,58 - 13993: -71,58 - 13994: -71,57 - 13995: -70,57 - 13996: -70,58 - 13997: -72,58 - 13998: -71,58 - 13999: -70,58 - 14000: -71,57 - 14001: -71,58 - 14002: -70,58 - 14003: -72,58 - 14004: -71,56 - 14005: -72,56 - 14006: -71,58 - 14007: -70,58 - 14008: -70,57 + 13974: -72,57 + 13975: -72,58 + 13976: -71,58 + 13977: -71,57 + 13978: -70,57 + 13979: -70,58 + 13980: -72,58 + 13981: -72,57 + 13982: -71,57 + 13983: -71,58 + 13984: -70,58 + 13985: -70,57 + 13986: -72,56 + 13987: -71,56 + 13988: -70,56 + 13989: -72,57 + 13990: -72,58 + 13991: -71,58 + 13992: -71,57 + 13993: -70,57 + 13994: -70,58 + 13995: -72,58 + 13996: -71,58 + 13997: -70,58 + 13998: -71,57 + 13999: -71,58 + 14000: -70,58 + 14001: -72,58 + 14002: -71,56 + 14003: -72,56 + 14004: -71,58 + 14005: -70,58 + 14006: -70,57 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -22999,9 +22998,9 @@ entities: id: Remains decals: 260: 37,-56 - 13629: -33.82276,-75.75149 - 16054: 99.21471,-3.5288568 - 18763: -42.945545,-64.87067 + 13627: -33.82276,-75.75149 + 16052: 99.21471,-3.5288568 + 18761: -42.945545,-64.87067 - node: cleanable: True color: '#FFFFFFFF' @@ -23012,72 +23011,72 @@ entities: color: '#FFFFFFFF' id: Rock01 decals: - 18703: -4,-5 - 18709: 1,4 + 18701: -4,-5 + 18707: 1,4 - node: color: '#FFFFFFFF' id: Rock02 decals: 885: -36,48 - 18704: 3,-1 + 18702: 3,-1 - node: color: '#FFFFFFFF' id: Rock03 decals: - 18706: -6,0 - 18710: -4,8 + 18704: -6,0 + 18708: -4,8 - node: color: '#FFFFFFFF' id: Rock04 decals: 886: -36,50 - 18705: 3,4 - 18711: 2,2 + 18703: 3,4 + 18709: 2,2 - node: color: '#FFFFFFFF' id: Rock05 decals: - 18707: -6,-6 - 18712: -3,-2 + 18705: -6,-6 + 18710: -3,-2 - node: color: '#FFFFFFFF' id: Rock06 decals: 477: 0,0 - 15841: 82,3 - 18708: 3,-3 + 15839: 82,3 + 18706: 3,-3 - node: color: '#000000FF' id: Rust decals: + 2585: -19,41 + 2586: -19,41 2587: -19,41 2588: -19,41 - 2589: -19,41 - 2590: -19,41 + 2589: -19,40 + 2590: -19,40 2591: -19,40 - 2592: -19,40 - 2593: -19,40 - 2594: -18,41 - 2595: -18,41 - 2596: -19,42 - 2597: -19,42 + 2592: -18,41 + 2593: -18,41 + 2594: -19,42 + 2595: -19,42 + 2596: -20,41 + 2597: -20,41 2598: -20,41 2599: -20,41 - 2600: -20,41 - 2601: -20,41 - 2602: -19,42 - 2603: -18,41 - 2604: -19,40 + 2600: -19,42 + 2601: -18,41 + 2602: -19,40 - node: cleanable: True color: '#FFFFFF5D' id: Rust decals: - 16398: -71,-36 - 16399: -67,-35 - 16400: -63,-35 - 16401: -65,-37 - 16402: -65,-37 + 16396: -71,-36 + 16397: -67,-35 + 16398: -63,-35 + 16399: -65,-37 + 16400: -65,-37 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -23107,7 +23106,7 @@ entities: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale decals: - 1786: -72,-23 + 1784: -72,-23 - node: color: '#B240B4FF' id: ThreeQuarterTileOverlayGreyscale @@ -23145,7 +23144,7 @@ entities: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1794: -72,-29 + 1792: -72,-29 - node: color: '#C3E6A5FF' id: ThreeQuarterTileOverlayGreyscale270 @@ -23183,8 +23182,8 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 13294: -58,23 - 13295: -58,24 + 13292: -58,23 + 13293: -58,24 - node: color: '#FFFFFFFF' id: WarnCorner @@ -23235,9 +23234,9 @@ entities: 680: -27,-50 687: -9,-46 692: -27,-54 - 1799: -71,-27 - 1804: -71,-23 - 13303: -52,29 + 1797: -71,-27 + 1802: -71,-23 + 13301: -52,29 - node: cleanable: True color: '#FFFFFFFF' @@ -23251,9 +23250,9 @@ entities: 681: -31,-50 688: -11,-46 691: -30,-54 - 1798: -72,-27 - 1803: -72,-23 - 13304: -54,29 + 1796: -72,-27 + 1801: -72,-23 + 13302: -54,29 - node: cleanable: True color: '#FFFFFFFF' @@ -23267,8 +23266,8 @@ entities: decals: 689: -9,-48 694: -27,-55 - 1802: -71,-25 - 13302: -52,27 + 1800: -71,-25 + 13300: -52,27 - node: cleanable: True color: '#FFFFFFFF' @@ -23281,9 +23280,9 @@ entities: decals: 686: -11,-48 693: -30,-55 - 1797: -72,-29 - 1805: -72,-25 - 13301: -54,27 + 1795: -72,-29 + 1803: -72,-25 + 13299: -54,27 - node: cleanable: True color: '#FFFFFFFF' @@ -23294,51 +23293,51 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 6220: -14,-19 - 13290: -63,21 - 18212: -52,-5 - 18227: -56,-12 - 18237: -51,-10 - 18325: -74,-4 - 18331: -73,-3 - 18332: -71,-3 - 18333: -69,-3 + 6218: -14,-19 + 13288: -63,21 + 18210: -52,-5 + 18225: -56,-12 + 18235: -51,-10 + 18323: -74,-4 + 18329: -73,-3 + 18330: -71,-3 + 18331: -69,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6221: -10,-19 - 18228: -54,-16 - 18238: -49,-10 - 18326: -66,-4 - 18329: -67,-3 - 18330: -71,-3 + 6219: -10,-19 + 18226: -54,-16 + 18236: -49,-10 + 18324: -66,-4 + 18327: -67,-3 + 18328: -71,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 6225: -14,-17 - 13289: -63,27 - 18213: -52,0 - 18215: -56,-4 - 18236: -51,-6 - 18247: -55,9 - 18324: -74,2 - 18334: -73,1 - 18335: -71,1 - 18336: -69,1 + 6223: -14,-17 + 13287: -63,27 + 18211: -52,0 + 18213: -56,-4 + 18234: -51,-6 + 18245: -55,9 + 18322: -74,2 + 18332: -73,1 + 18333: -71,1 + 18334: -69,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 6226: -10,-17 - 18214: -54,0 - 18235: -49,-6 - 18248: -50,9 - 18327: -66,2 - 18328: -67,1 - 18337: -71,1 - 18338: -69,1 + 6224: -10,-17 + 18212: -54,0 + 18233: -49,-6 + 18246: -50,9 + 18325: -66,2 + 18326: -67,1 + 18335: -71,1 + 18336: -69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23394,47 +23393,47 @@ entities: id: WarnLineE decals: 685: -27,-51 - 1800: -71,-28 - 6190: -13,-16 - 6191: -13,-15 - 6192: -13,-14 - 6193: -13,-13 - 6203: -15,-16 - 6204: -15,-15 - 6205: -15,-14 - 6206: -15,-13 - 6207: -15,-13 - 6208: -11,-16 - 6209: -11,-15 - 6210: -11,-14 - 6211: -11,-13 - 13284: -63,22 - 13285: -63,23 - 13286: -63,24 - 13287: -63,25 - 13288: -63,26 - 13305: -52,28 - 18186: -52,-1 - 18187: -52,-2 - 18188: -52,-2 - 18189: -52,-4 - 18190: -52,-3 - 18229: -51,-9 - 18230: -51,-8 - 18231: -51,-7 - 18298: -74,-3 - 18299: -74,-2 - 18300: -74,-1 - 18301: -74,0 - 18302: -74,1 - 18315: -73,0 - 18316: -73,-1 - 18317: -73,-2 - 19361: 55,4 - 19362: 55,5 - 19367: 69,0 - 19371: 69,-1 - 19372: 69,1 + 1798: -71,-28 + 6188: -13,-16 + 6189: -13,-15 + 6190: -13,-14 + 6191: -13,-13 + 6201: -15,-16 + 6202: -15,-15 + 6203: -15,-14 + 6204: -15,-13 + 6205: -15,-13 + 6206: -11,-16 + 6207: -11,-15 + 6208: -11,-14 + 6209: -11,-13 + 13282: -63,22 + 13283: -63,23 + 13284: -63,24 + 13285: -63,25 + 13286: -63,26 + 13303: -52,28 + 18184: -52,-1 + 18185: -52,-2 + 18186: -52,-2 + 18187: -52,-4 + 18188: -52,-3 + 18227: -51,-9 + 18228: -51,-8 + 18229: -51,-7 + 18296: -74,-3 + 18297: -74,-2 + 18298: -74,-1 + 18299: -74,0 + 18300: -74,1 + 18313: -73,0 + 18314: -73,-1 + 18315: -73,-2 + 19359: 55,4 + 19360: 55,5 + 19365: 69,0 + 19369: 69,-1 + 19370: 69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23455,8 +23454,8 @@ entities: color: '#8CB7E8FF' id: WarnLineGreyscaleE decals: - 21352: -18,14 - 21353: -18,15 + 21350: -18,14 + 21351: -18,15 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -23471,8 +23470,8 @@ entities: color: '#8CB7E8FF' id: WarnLineGreyscaleW decals: - 21354: 16,14 - 21355: 16,15 + 21352: 16,14 + 21353: 16,15 - node: color: '#FFFFFFFF' id: WarnLineN @@ -23482,41 +23481,41 @@ entities: 695: -29,-55 696: -28,-55 744: 66,12 - 5184: 33,37 - 6222: -13,-17 - 6223: -12,-17 - 6224: -11,-17 - 13291: -62,27 - 13292: -61,27 - 13293: -60,27 - 13300: -59,27 - 13306: -53,27 - 18177: -59,0 - 18178: -58,0 - 18179: -57,0 - 18180: -57,0 - 18181: -55,0 - 18182: -56,0 - 18183: -51,0 - 18184: -50,0 - 18185: -49,0 - 18216: -55,-4 - 18239: -54,9 - 18240: -53,9 - 18241: -52,9 - 18242: -51,9 - 18291: -73,2 - 18292: -72,2 - 18293: -71,2 - 18294: -70,2 - 18295: -69,2 - 18296: -68,2 - 18297: -67,2 - 18321: -72,1 - 18322: -70,1 - 18323: -68,1 - 21518: -71,1 - 21519: -69,1 + 5182: 33,37 + 6220: -13,-17 + 6221: -12,-17 + 6222: -11,-17 + 13289: -62,27 + 13290: -61,27 + 13291: -60,27 + 13298: -59,27 + 13304: -53,27 + 18175: -59,0 + 18176: -58,0 + 18177: -57,0 + 18178: -57,0 + 18179: -55,0 + 18180: -56,0 + 18181: -51,0 + 18182: -50,0 + 18183: -49,0 + 18214: -55,-4 + 18237: -54,9 + 18238: -53,9 + 18239: -52,9 + 18240: -51,9 + 18289: -73,2 + 18290: -72,2 + 18291: -71,2 + 18292: -70,2 + 18293: -69,2 + 18294: -68,2 + 18295: -67,2 + 18319: -72,1 + 18320: -70,1 + 18321: -68,1 + 21487: -71,1 + 21488: -69,1 - node: cleanable: True color: '#FFFFFFFF' @@ -23537,51 +23536,51 @@ entities: id: WarnLineS decals: 679: -31,-51 - 1801: -72,-28 - 1806: -72,-24 - 6194: -11,-16 - 6195: -11,-15 - 6196: -11,-14 - 6197: -11,-14 - 6198: -11,-13 - 6199: -13,-16 - 6200: -13,-15 - 6201: -13,-14 - 6202: -13,-13 - 6212: -9,-16 - 6213: -9,-15 - 6214: -9,-14 - 6215: -9,-14 - 6216: -9,-13 - 6230: -15,-16 - 6231: -15,-15 - 6232: -15,-14 - 6233: -15,-13 - 13307: -54,28 - 18173: -54,-4 - 18174: -54,-3 - 18175: -54,-2 - 18176: -54,-1 - 18211: -54,-4 - 18222: -54,-15 - 18223: -54,-14 - 18224: -54,-13 - 18225: -54,-12 - 18232: -49,-9 - 18233: -49,-8 - 18234: -49,-7 - 18303: -66,1 - 18304: -66,0 - 18305: -66,-1 - 18306: -66,-2 - 18307: -66,-3 - 18308: -67,0 - 18309: -67,-1 - 18310: -67,-2 - 18311: -67,-2 + 1799: -72,-28 + 1804: -72,-24 + 6192: -11,-16 + 6193: -11,-15 + 6194: -11,-14 + 6195: -11,-14 + 6196: -11,-13 + 6197: -13,-16 + 6198: -13,-15 + 6199: -13,-14 + 6200: -13,-13 + 6210: -9,-16 + 6211: -9,-15 + 6212: -9,-14 + 6213: -9,-14 + 6214: -9,-13 + 6228: -15,-16 + 6229: -15,-15 + 6230: -15,-14 + 6231: -15,-13 + 13305: -54,28 + 18171: -54,-4 + 18172: -54,-3 + 18173: -54,-2 + 18174: -54,-1 + 18209: -54,-4 + 18220: -54,-15 + 18221: -54,-14 + 18222: -54,-13 + 18223: -54,-12 + 18230: -49,-9 + 18231: -49,-8 + 18232: -49,-7 + 18301: -66,1 + 18302: -66,0 + 18303: -66,-1 + 18304: -66,-2 + 18305: -66,-3 + 18306: -67,0 + 18307: -67,-1 + 18308: -67,-2 + 18309: -67,-2 + 18310: -67,-1 + 18311: -67,0 18312: -67,-1 - 18313: -67,0 - 18314: -67,-1 - node: cleanable: True color: '#FFFFFFFF' @@ -23619,37 +23618,37 @@ entities: 743: 66,12 751: 78,22 752: 77,22 - 6217: -13,-19 - 6218: -12,-19 - 6219: -11,-19 - 13308: -53,29 - 18217: -59,-16 - 18218: -58,-16 - 18219: -57,-16 - 18220: -56,-16 - 18221: -55,-16 - 18226: -55,-12 - 18243: -55,17 - 18244: -54,17 - 18245: -53,17 - 18246: -52,17 - 18260: -55,17 - 18261: -52,17 - 18284: -73,-4 - 18285: -72,-4 - 18286: -71,-4 - 18287: -70,-4 - 18288: -69,-4 - 18289: -68,-4 - 18290: -67,-4 - 18318: -72,-3 - 18319: -70,-3 - 18320: -68,-3 - 21306: 58,1 - 21307: 62,1 - 21308: 66,1 - 21516: -71,-3 - 21517: -69,-3 + 6215: -13,-19 + 6216: -12,-19 + 6217: -11,-19 + 13306: -53,29 + 18215: -59,-16 + 18216: -58,-16 + 18217: -57,-16 + 18218: -56,-16 + 18219: -55,-16 + 18224: -55,-12 + 18241: -55,17 + 18242: -54,17 + 18243: -53,17 + 18244: -52,17 + 18258: -55,17 + 18259: -52,17 + 18282: -73,-4 + 18283: -72,-4 + 18284: -71,-4 + 18285: -70,-4 + 18286: -69,-4 + 18287: -68,-4 + 18288: -67,-4 + 18316: -72,-3 + 18317: -70,-3 + 18318: -68,-3 + 21304: 58,1 + 21305: 62,1 + 21306: 66,1 + 21485: -71,-3 + 21486: -69,-3 - node: cleanable: True color: '#FFFFFFFF' @@ -23739,78 +23738,78 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerNe decals: - 2575: -10,46 - 2630: -2,42 - 2724: -3,54 - 3977: -34,63 - 4129: -26,23 - 5694: 14,11 - 5703: 14,2 - 5743: 11,7 - 5758: 11,3 - 5844: -15,-4 - 5858: -9,-3 - 5888: -9,5 - 5898: -9,0 - 5928: -8,11 - 5953: 1,14 - 6474: -22,-4 - 6495: -34,2 - 6530: -26,2 - 6545: -22,-11 - 6600: -22,-5 - 6601: -22,-5 - 6774: -31,-12 - 7266: 37,2 - 7296: 36,1 - 7355: 33,11 - 7747: 43,22 - 7748: 43,23 - 7755: 36,22 - 7777: 36,21 - 8547: 53,-23 - 8561: 49,-23 - 8574: 45,-23 - 10273: 37,-29 - 10274: 38,-28 - 10315: 24,-51 - 10515: 18,-49 - 10725: 74,-37 - 10736: 42,-50 - 10750: 51,-54 - 10818: 45,-51 - 11186: -49,-43 - 11218: -46,-43 - 11233: -46,-47 - 12361: -17,-46 - 12498: -15,-74 - 12540: -13,-79 - 12547: -21,-80 - 13392: -38,-66 - 13406: -36,-65 - 13431: -30,-65 - 13603: -31,-77 - 13950: -65,62 - 15494: -6,-77 - 15506: -1,-77 - 15735: 97,5 - 15765: 96,3 - 15851: 89,7 - 15928: 98,13 - 15935: 98,14 - 18154: -63,18 - 18172: -57,7 - 18442: -58,-44 - 18592: 1,-11 - 18593: 2,-12 - 18863: -112,33 - 19547: -14,29 - 19559: 53,27 - 19562: 56,27 - 19680: 57,30 - 19692: 55,31 - 19884: -24,13 - 19898: -25,12 + 2573: -10,46 + 2628: -2,42 + 2722: -3,54 + 3975: -34,63 + 4127: -26,23 + 5692: 14,11 + 5701: 14,2 + 5741: 11,7 + 5756: 11,3 + 5842: -15,-4 + 5856: -9,-3 + 5886: -9,5 + 5896: -9,0 + 5926: -8,11 + 5951: 1,14 + 6472: -22,-4 + 6493: -34,2 + 6528: -26,2 + 6543: -22,-11 + 6598: -22,-5 + 6599: -22,-5 + 6772: -31,-12 + 7264: 37,2 + 7294: 36,1 + 7353: 33,11 + 7745: 43,22 + 7746: 43,23 + 7753: 36,22 + 7775: 36,21 + 8545: 53,-23 + 8559: 49,-23 + 8572: 45,-23 + 10271: 37,-29 + 10272: 38,-28 + 10313: 24,-51 + 10513: 18,-49 + 10723: 74,-37 + 10734: 42,-50 + 10748: 51,-54 + 10816: 45,-51 + 11184: -49,-43 + 11216: -46,-43 + 11231: -46,-47 + 12359: -17,-46 + 12496: -15,-74 + 12538: -13,-79 + 12545: -21,-80 + 13390: -38,-66 + 13404: -36,-65 + 13429: -30,-65 + 13601: -31,-77 + 13948: -65,62 + 15492: -6,-77 + 15504: -1,-77 + 15733: 97,5 + 15763: 96,3 + 15849: 89,7 + 15926: 98,13 + 15933: 98,14 + 18152: -63,18 + 18170: -57,7 + 18440: -58,-44 + 18590: 1,-11 + 18591: 2,-12 + 18861: -112,33 + 19545: -14,29 + 19557: 53,27 + 19560: 56,27 + 19678: 57,30 + 19690: 55,31 + 19882: -24,13 + 19896: -25,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -23820,77 +23819,77 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerNw decals: - 2631: -4,42 - 3976: -39,63 - 4128: -27,23 - 4133: -29,21 - 5672: 6,11 - 5707: 12,2 - 5742: 7,7 - 5757: 7,3 - 5843: -16,-4 - 5861: -13,-3 - 5876: -14,5 - 5921: -16,11 - 5952: -3,14 - 6457: -30,2 - 6458: -35,2 - 6459: -31,-4 - 6512: -35,2 - 6528: -35,2 - 6529: -30,2 - 6544: -26,-11 - 6598: -26,-5 - 6599: -26,-5 - 6614: -26,-5 - 6773: -34,-12 - 7265: 33,2 - 7295: 34,1 - 7348: 29,11 - 7749: 39,23 - 7750: 39,22 - 7751: 38,22 - 7752: 34,22 - 7778: 34,21 - 8546: 51,-23 - 8567: 47,-23 - 8573: 43,-23 - 10271: 34,-28 - 10272: 35,-29 - 10514: 14,-49 - 10724: 72,-37 - 10749: 49,-54 - 10817: 44,-51 - 11185: -56,-43 - 12496: -16,-79 - 12497: -19,-74 - 12546: -23,-80 - 12675: -4,40 - 12720: -41,29 - 12730: -39,26 - 13400: -41,-66 - 13430: -34,-65 - 13604: -35,-77 - 13947: -68,62 - 15492: -8,-77 - 15493: -3,-77 - 15725: 91,5 - 15762: 93,3 - 15843: 81,7 - 15932: 95,14 - 16187: -72,-40 - 16488: -41,-9 - 18151: -66,18 - 18171: -58,7 - 18587: -3,-11 - 18594: -4,-12 - 18862: -115,33 - 19560: 52,27 - 19561: 55,27 - 19676: 51,30 - 19691: 53,31 - 19885: -27,13 - 19897: -26,12 + 2629: -4,42 + 3974: -39,63 + 4126: -27,23 + 4131: -29,21 + 5670: 6,11 + 5705: 12,2 + 5740: 7,7 + 5755: 7,3 + 5841: -16,-4 + 5859: -13,-3 + 5874: -14,5 + 5919: -16,11 + 5950: -3,14 + 6455: -30,2 + 6456: -35,2 + 6457: -31,-4 + 6510: -35,2 + 6526: -35,2 + 6527: -30,2 + 6542: -26,-11 + 6596: -26,-5 + 6597: -26,-5 + 6612: -26,-5 + 6771: -34,-12 + 7263: 33,2 + 7293: 34,1 + 7346: 29,11 + 7747: 39,23 + 7748: 39,22 + 7749: 38,22 + 7750: 34,22 + 7776: 34,21 + 8544: 51,-23 + 8565: 47,-23 + 8571: 43,-23 + 10269: 34,-28 + 10270: 35,-29 + 10512: 14,-49 + 10722: 72,-37 + 10747: 49,-54 + 10815: 44,-51 + 11183: -56,-43 + 12494: -16,-79 + 12495: -19,-74 + 12544: -23,-80 + 12673: -4,40 + 12718: -41,29 + 12728: -39,26 + 13398: -41,-66 + 13428: -34,-65 + 13602: -35,-77 + 13945: -68,62 + 15490: -8,-77 + 15491: -3,-77 + 15723: 91,5 + 15760: 93,3 + 15841: 81,7 + 15930: 95,14 + 16185: -72,-40 + 16486: -41,-9 + 18149: -66,18 + 18169: -58,7 + 18585: -3,-11 + 18592: -4,-12 + 18860: -115,33 + 19558: 52,27 + 19559: 55,27 + 19674: 51,30 + 19689: 53,31 + 19883: -27,13 + 19895: -26,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -23907,84 +23906,84 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerSe decals: - 2576: -10,36 - 2725: -3,53 - 3981: -34,59 - 4125: -22,19 - 5675: 14,7 - 5711: 14,0 - 5748: 11,5 - 5760: 11,0 - 5847: -15,-6 - 5855: -9,-6 - 5889: -9,3 - 5890: -9,-1 - 5893: -11,-2 - 5918: -9,7 - 5919: -8,8 - 5957: 1,12 - 6484: -27,-9 - 6511: -34,-9 - 6531: -26,0 - 6547: -22,-13 - 6597: -22,-9 - 6775: -31,-15 - 7267: 37,-2 - 7301: 36,-1 - 7354: 33,8 - 7757: 43,18 - 7765: 36,18 - 7766: 36,19 - 7767: 36,19 - 7771: 43,17 - 8548: 53,-26 - 8563: 49,-26 - 8583: 45,-26 - 10275: 38,-32 - 10276: 37,-31 - 10316: 24,-53 - 10517: 18,-53 - 10727: 74,-40 - 10738: 42,-56 - 10751: 51,-56 - 10752: 51,-56 - 10760: 52,-56 - 10820: 45,-55 - 11187: -49,-47 - 11227: -46,-45 - 11234: -46,-49 - 12373: -17,-48 - 12499: -15,-76 - 12544: -13,-82 - 12545: -21,-82 - 12676: -2,36 - 12738: -38,25 - 13394: -38,-68 - 13416: -36,-68 - 13435: -30,-68 - 13613: -31,-80 - 13954: -65,58 - 15496: -6,-79 - 15502: -1,-79 - 15733: 94,-2 - 15734: 95,-1 - 15742: 97,0 - 15766: 96,1 - 15852: 89,4 - 15927: 98,12 - 15940: 96,12 - 15947: 98,12 - 18158: -63,16 - 18168: -57,5 - 18864: -112,31 - 19548: -14,31 - 19568: 53,22 - 19571: 56,22 - 19674: 52,29 + 2574: -10,36 + 2723: -3,53 + 3979: -34,59 + 4123: -22,19 + 5673: 14,7 + 5709: 14,0 + 5746: 11,5 + 5758: 11,0 + 5845: -15,-6 + 5853: -9,-6 + 5887: -9,3 + 5888: -9,-1 + 5891: -11,-2 + 5916: -9,7 + 5917: -8,8 + 5955: 1,12 + 6482: -27,-9 + 6509: -34,-9 + 6529: -26,0 + 6545: -22,-13 + 6595: -22,-9 + 6773: -31,-15 + 7265: 37,-2 + 7299: 36,-1 + 7352: 33,8 + 7755: 43,18 + 7763: 36,18 + 7764: 36,19 + 7765: 36,19 + 7769: 43,17 + 8546: 53,-26 + 8561: 49,-26 + 8581: 45,-26 + 10273: 38,-32 + 10274: 37,-31 + 10314: 24,-53 + 10515: 18,-53 + 10725: 74,-40 + 10736: 42,-56 + 10749: 51,-56 + 10750: 51,-56 + 10758: 52,-56 + 10818: 45,-55 + 11185: -49,-47 + 11225: -46,-45 + 11232: -46,-49 + 12371: -17,-48 + 12497: -15,-76 + 12542: -13,-82 + 12543: -21,-82 + 12674: -2,36 + 12736: -38,25 + 13392: -38,-68 + 13414: -36,-68 + 13433: -30,-68 + 13611: -31,-80 + 13952: -65,58 + 15494: -6,-79 + 15500: -1,-79 + 15731: 94,-2 + 15732: 95,-1 + 15740: 97,0 + 15764: 96,1 + 15850: 89,4 + 15925: 98,12 + 15938: 96,12 + 15945: 98,12 + 18156: -63,16 + 18166: -57,5 + 18862: -112,31 + 19546: -14,31 + 19566: 53,22 + 19569: 56,22 + 19672: 52,29 + 19673: 57,29 19675: 57,29 - 19677: 57,29 - 19895: -24,10 - 19896: -25,11 + 19893: -24,10 + 19894: -25,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -24000,74 +23999,74 @@ entities: color: '#DABC8BFF' id: WoodTrimThinCornerSw decals: - 2726: -4,53 - 4135: -29,19 - 5674: 6,8 - 5676: 13,7 - 5709: 12,0 - 5745: 7,5 - 5753: 7,0 - 5846: -16,-6 - 5854: -13,-6 - 5877: -14,-1 - 5892: -13,-2 - 5920: -16,7 - 5956: -3,12 - 6483: -31,-9 - 6513: -35,-9 - 6532: -30,0 - 6546: -26,-13 - 6595: -26,-9 - 6596: -26,-9 - 6776: -34,-15 - 7268: 33,-2 - 7300: 34,-1 - 7758: 39,18 - 7763: 34,18 - 7764: 34,19 - 7772: 39,17 - 7773: 38,18 - 8549: 51,-26 - 8562: 47,-26 - 8571: 47,-26 - 8572: 43,-26 - 10277: 34,-32 - 10278: 35,-31 - 10516: 14,-53 - 10726: 72,-40 - 10753: 49,-56 - 10819: 44,-55 - 11197: -56,-47 - 11198: -56,-47 - 11235: -54,-49 - 12500: -19,-76 - 12543: -16,-82 - 12548: -23,-82 - 12677: -4,36 - 12729: -39,25 - 13397: -41,-68 - 13436: -34,-68 - 13602: -32,-80 - 13611: -35,-80 - 13955: -68,58 - 15497: -8,-79 - 15501: -3,-79 - 15732: 91,-2 - 15767: 93,1 - 15853: 81,4 - 15929: 97,12 - 15939: 95,12 - 16493: -41,-11 - 18157: -66,16 - 18169: -58,5 - 18446: -60,-46 - 18865: -115,31 - 19569: 55,22 - 19570: 52,22 - 19678: 51,29 - 19679: 56,29 - 19892: -27,10 - 19899: -26,11 + 2724: -4,53 + 4133: -29,19 + 5672: 6,8 + 5674: 13,7 + 5707: 12,0 + 5743: 7,5 + 5751: 7,0 + 5844: -16,-6 + 5852: -13,-6 + 5875: -14,-1 + 5890: -13,-2 + 5918: -16,7 + 5954: -3,12 + 6481: -31,-9 + 6511: -35,-9 + 6530: -30,0 + 6544: -26,-13 + 6593: -26,-9 + 6594: -26,-9 + 6774: -34,-15 + 7266: 33,-2 + 7298: 34,-1 + 7756: 39,18 + 7761: 34,18 + 7762: 34,19 + 7770: 39,17 + 7771: 38,18 + 8547: 51,-26 + 8560: 47,-26 + 8569: 47,-26 + 8570: 43,-26 + 10275: 34,-32 + 10276: 35,-31 + 10514: 14,-53 + 10724: 72,-40 + 10751: 49,-56 + 10817: 44,-55 + 11195: -56,-47 + 11196: -56,-47 + 11233: -54,-49 + 12498: -19,-76 + 12541: -16,-82 + 12546: -23,-82 + 12675: -4,36 + 12727: -39,25 + 13395: -41,-68 + 13434: -34,-68 + 13600: -32,-80 + 13609: -35,-80 + 13953: -68,58 + 15495: -8,-79 + 15499: -3,-79 + 15730: 91,-2 + 15765: 93,1 + 15851: 81,4 + 15927: 97,12 + 15937: 95,12 + 16491: -41,-11 + 18155: -66,16 + 18167: -58,5 + 18444: -60,-46 + 18863: -115,31 + 19567: 55,22 + 19568: 52,22 + 19676: 51,29 + 19677: 56,29 + 19890: -27,10 + 19897: -26,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -24077,268 +24076,268 @@ entities: color: '#DABC8BFF' id: WoodTrimThinEndE decals: - 15945: 98,14 + 15943: 98,14 - node: color: '#DABC8BFF' id: WoodTrimThinEndN decals: - 10309: 20,-51 - 12363: -21,-46 - 12726: -38,29 + 10307: 20,-51 + 12361: -21,-46 + 12724: -38,29 - node: color: '#DABC8BFF' id: WoodTrimThinEndS decals: - 10310: 20,-53 - 12362: -21,-48 - 13962: -67,57 + 10308: 20,-53 + 12360: -21,-48 + 13960: -67,57 - node: color: '#DABC8BFF' id: WoodTrimThinEndW decals: - 19505: -12,30 + 19503: -12,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNe decals: - 1989: -12,29 - 1997: -12,33 - 1999: -9,33 - 2482: -11,44 - 2483: -11,42 - 2484: -11,40 - 2485: -11,36 - 2506: -13,40 - 2509: -12,41 - 2580: -10,45 - 2581: -10,43 - 2609: -11,38 - 4148: -24,20 - 4149: -26,20 - 5688: 8,11 - 5706: 13,2 - 5770: 11,1 - 5774: 8,3 - 5849: -15,-5 - 5875: -10,-3 - 5901: -10,0 - 5905: -11,5 - 5932: -10,11 - 6489: -29,-4 - 6490: -24,-4 - 6556: -24,-11 - 6640: -24,-7 - 7275: 35,2 - 7783: 43,20 - 7787: 36,20 - 8555: 52,-23 - 8559: 48,-23 - 8560: 48,-23 - 8577: 44,-23 - 10297: 37,-28 - 10317: 22,-51 - 10318: 22,-51 - 10532: 17,-49 - 10767: 50,-50 - 11228: -47,-43 - 11231: -47,-47 - 12368: -19,-46 - 12376: -19,-46 - 12528: -17,-74 - 12682: -3,40 - 12733: -38,27 - 13408: -36,-66 - 13409: -37,-65 - 13413: -41,-65 - 13615: -31,-79 - 15772: 95,3 - 16198: -62,-43 - 16202: -68,-46 - 18596: 1,-12 - 19498: -9,27 - 19499: -9,30 - 19695: 55,30 - 19943: 96,2 + 1987: -12,29 + 1995: -12,33 + 1997: -9,33 + 2480: -11,44 + 2481: -11,42 + 2482: -11,40 + 2483: -11,36 + 2504: -13,40 + 2507: -12,41 + 2578: -10,45 + 2579: -10,43 + 2607: -11,38 + 4146: -24,20 + 4147: -26,20 + 5686: 8,11 + 5704: 13,2 + 5768: 11,1 + 5772: 8,3 + 5847: -15,-5 + 5873: -10,-3 + 5899: -10,0 + 5903: -11,5 + 5930: -10,11 + 6487: -29,-4 + 6488: -24,-4 + 6554: -24,-11 + 6638: -24,-7 + 7273: 35,2 + 7781: 43,20 + 7785: 36,20 + 8553: 52,-23 + 8557: 48,-23 + 8558: 48,-23 + 8575: 44,-23 + 10295: 37,-28 + 10315: 22,-51 + 10316: 22,-51 + 10530: 17,-49 + 10765: 50,-50 + 11226: -47,-43 + 11229: -47,-47 + 12366: -19,-46 + 12374: -19,-46 + 12526: -17,-74 + 12680: -3,40 + 12731: -38,27 + 13406: -36,-66 + 13407: -37,-65 + 13411: -41,-65 + 13613: -31,-79 + 15770: 95,3 + 16196: -62,-43 + 16200: -68,-46 + 18594: 1,-12 + 19496: -9,27 + 19497: -9,30 + 19693: 55,30 + 19941: 96,2 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNw decals: - 1988: -13,33 - 1998: -10,33 - 2010: -10,29 - 2486: -13,36 - 2487: -13,38 - 2488: -13,40 - 2489: -13,42 - 2490: -13,44 - 2491: -13,44 - 2510: -12,41 - 2511: -11,40 - 2512: -11,40 - 4131: -27,21 - 4150: -24,20 - 5687: 8,11 - 5705: 13,2 - 5773: 8,3 - 5853: -13,-5 - 5874: -10,-3 - 5883: -14,4 - 5904: -11,5 - 5931: -10,11 - 6488: -29,-4 - 6491: -24,-4 - 6541: -30,1 - 6555: -24,-11 - 6612: -26,-6 - 6613: -26,-6 - 6642: -24,-7 - 7276: 35,2 - 7279: 33,1 - 7781: 38,20 - 8556: 52,-23 - 8568: 48,-23 - 8576: 44,-23 - 10298: 37,-28 - 10319: 22,-51 - 10533: 17,-49 - 10747: 39,-53 - 10768: 50,-50 - 11230: -47,-47 - 12369: -19,-46 - 12375: -19,-46 - 12529: -17,-74 - 12679: -4,37 - 12681: -3,40 - 12723: -41,28 - 12724: -41,28 - 12737: -38,26 - 13410: -37,-65 - 13443: -34,-66 - 13610: -35,-79 - 15774: 94,3 - 15775: 93,2 - 15936: 95,13 - 18595: -3,-12 - 19552: -14,30 - 19694: 53,30 + 1986: -13,33 + 1996: -10,33 + 2008: -10,29 + 2484: -13,36 + 2485: -13,38 + 2486: -13,40 + 2487: -13,42 + 2488: -13,44 + 2489: -13,44 + 2508: -12,41 + 2509: -11,40 + 2510: -11,40 + 4129: -27,21 + 4148: -24,20 + 5685: 8,11 + 5703: 13,2 + 5771: 8,3 + 5851: -13,-5 + 5872: -10,-3 + 5881: -14,4 + 5902: -11,5 + 5929: -10,11 + 6486: -29,-4 + 6489: -24,-4 + 6539: -30,1 + 6553: -24,-11 + 6610: -26,-6 + 6611: -26,-6 + 6640: -24,-7 + 7274: 35,2 + 7277: 33,1 + 7779: 38,20 + 8554: 52,-23 + 8566: 48,-23 + 8574: 44,-23 + 10296: 37,-28 + 10317: 22,-51 + 10531: 17,-49 + 10745: 39,-53 + 10766: 50,-50 + 11228: -47,-47 + 12367: -19,-46 + 12373: -19,-46 + 12527: -17,-74 + 12677: -4,37 + 12679: -3,40 + 12721: -41,28 + 12722: -41,28 + 12735: -38,26 + 13408: -37,-65 + 13441: -34,-66 + 13608: -35,-79 + 15772: 94,3 + 15773: 93,2 + 15934: 95,13 + 18593: -3,-12 + 19550: -14,30 + 19692: 53,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerSe decals: - 1990: -12,31 - 2002: -9,33 - 2498: -11,40 - 2499: -11,42 - 2500: -11,44 - 2501: -11,46 - 2505: -12,41 - 2507: -13,42 - 2577: -10,39 - 2578: -10,39 - 2579: -10,45 - 2610: -11,38 - 4142: -25,19 - 5699: 8,8 - 5700: 10,8 - 5766: 8,5 - 5769: 11,1 - 5780: 10,0 - 5848: -15,-5 - 5867: -10,-6 - 5895: -12,-2 - 5896: -10,-1 - 5902: -10,3 - 5910: -11,-1 - 5939: -11,7 - 6255: -4,-12 - 6493: -24,-4 - 6616: -24,-9 - 6618: -27,-4 - 6619: -27,-6 - 6620: -27,-6 - 6643: -24,-7 - 7282: 36,-2 - 7362: 29,8 - 7782: 43,20 - 7786: 36,20 - 10296: 36,-32 - 10535: 17,-53 - 10536: 7,-57 - 10735: 73,-40 - 11229: -47,-45 - 12537: -17,-67 - 12688: -2,40 - 12732: -38,27 - 13407: -36,-66 - 13612: -34,-79 - 13616: -31,-79 - 13960: -67,58 - 15740: 94,-1 - 15741: 95,0 - 15773: 95,1 - 15780: 96,2 - 15942: 96,14 - 15944: 97,14 - 16199: -62,-43 - 16203: -68,-44 - 19497: -9,27 - 19500: -9,30 - 19690: 52,30 + 1988: -12,31 + 2000: -9,33 + 2496: -11,40 + 2497: -11,42 + 2498: -11,44 + 2499: -11,46 + 2503: -12,41 + 2505: -13,42 + 2575: -10,39 + 2576: -10,39 + 2577: -10,45 + 2608: -11,38 + 4140: -25,19 + 5697: 8,8 + 5698: 10,8 + 5764: 8,5 + 5767: 11,1 + 5778: 10,0 + 5846: -15,-5 + 5865: -10,-6 + 5893: -12,-2 + 5894: -10,-1 + 5900: -10,3 + 5908: -11,-1 + 5937: -11,7 + 6253: -4,-12 + 6491: -24,-4 + 6614: -24,-9 + 6616: -27,-4 + 6617: -27,-6 + 6618: -27,-6 + 6641: -24,-7 + 7280: 36,-2 + 7360: 29,8 + 7780: 43,20 + 7784: 36,20 + 10294: 36,-32 + 10533: 17,-53 + 10534: 7,-57 + 10733: 73,-40 + 11227: -47,-45 + 12535: -17,-67 + 12686: -2,40 + 12730: -38,27 + 13405: -36,-66 + 13610: -34,-79 + 13614: -31,-79 + 13958: -67,58 + 15738: 94,-1 + 15739: 95,0 + 15771: 95,1 + 15778: 96,2 + 15940: 96,14 + 15942: 97,14 + 16197: -62,-43 + 16201: -68,-44 + 19495: -9,27 + 19498: -9,30 + 19688: 52,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerSw decals: - 2006: -10,27 - 2011: -10,31 - 2492: -13,46 - 2493: -13,44 - 2494: -13,44 - 2495: -13,42 - 2496: -13,40 - 2497: -13,38 - 2504: -12,41 - 2508: -11,42 - 4141: -25,19 - 5697: 8,8 - 5698: 10,8 - 5765: 8,5 - 5779: 10,0 - 5852: -13,-5 - 5866: -10,-6 - 5884: -14,4 - 5891: -13,-1 - 5894: -12,-2 - 5909: -10,-1 - 5938: -11,7 - 6256: 2,-12 - 6492: -24,-4 - 6540: -30,1 - 6611: -26,-6 - 6615: -24,-9 - 6641: -24,-7 - 7280: 33,1 - 7281: 36,-2 - 7780: 38,20 - 10295: 36,-32 - 10534: 17,-53 - 10734: 73,-40 - 10748: 39,-53 - 10773: 44,-50 - 12536: -17,-67 - 12678: -4,37 - 12722: -41,28 - 12731: -39,27 - 13444: -34,-66 - 13609: -35,-79 - 13961: -67,58 - 15778: 93,2 - 15779: 94,1 - 15937: 95,13 - 15943: 97,14 - 16204: -70,-42 - 19550: -13,27 - 19551: -14,30 - 19689: 56,30 + 2004: -10,27 + 2009: -10,31 + 2490: -13,46 + 2491: -13,44 + 2492: -13,44 + 2493: -13,42 + 2494: -13,40 + 2495: -13,38 + 2502: -12,41 + 2506: -11,42 + 4139: -25,19 + 5695: 8,8 + 5696: 10,8 + 5763: 8,5 + 5777: 10,0 + 5850: -13,-5 + 5864: -10,-6 + 5882: -14,4 + 5889: -13,-1 + 5892: -12,-2 + 5907: -10,-1 + 5936: -11,7 + 6254: 2,-12 + 6490: -24,-4 + 6538: -30,1 + 6609: -26,-6 + 6613: -24,-9 + 6639: -24,-7 + 7278: 33,1 + 7279: 36,-2 + 7778: 38,20 + 10293: 36,-32 + 10532: 17,-53 + 10732: 73,-40 + 10746: 39,-53 + 10771: 44,-50 + 12534: -17,-67 + 12676: -4,37 + 12720: -41,28 + 12729: -39,27 + 13442: -34,-66 + 13607: -35,-79 + 13959: -67,58 + 15776: 93,2 + 15777: 94,1 + 15935: 95,13 + 15941: 97,14 + 16202: -70,-42 + 19548: -13,27 + 19549: -14,30 + 19687: 56,30 - node: cleanable: True color: '#151C2553' @@ -24360,200 +24359,200 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineE decals: - 2000: -9,32 - 2001: -9,31 - 2003: -9,29 - 2004: -9,28 - 2456: -14,44 - 2457: -14,42 - 2458: -14,40 - 2459: -14,38 - 2460: -14,36 - 2463: -14,46 - 2502: -13,41 - 2571: -10,44 - 2572: -10,38 - 2573: -10,37 - 2633: -2,41 - 3978: -34,62 - 3979: -34,61 - 3980: -34,60 - 4143: -26,22 - 4144: -26,21 - 5677: 14,8 - 5678: 14,9 - 5679: 14,10 - 5712: 14,1 - 5747: 11,6 - 5759: 11,2 - 5851: -14,-5 - 5856: -9,-5 - 5857: -9,-4 - 5882: -15,4 - 5899: -10,1 - 5900: -10,2 - 5903: -9,4 - 5907: -10,-2 - 5929: -8,10 - 5930: -8,9 - 5961: 1,13 - 6248: 2,-12 - 6479: -27,-5 - 6480: -27,-7 - 6481: -27,-8 - 6482: -27,-9 - 6496: -34,1 - 6497: -34,0 - 6498: -34,-1 - 6499: -34,-1 - 6500: -34,-2 - 6501: -34,-2 - 6502: -34,-3 - 6503: -34,-4 - 6504: -34,-4 - 6505: -34,-5 - 6506: -34,-6 - 6507: -34,-6 - 6508: -34,-7 - 6509: -34,-7 - 6510: -34,-8 - 6536: -26,1 - 6551: -22,-12 - 6605: -22,-6 - 6606: -22,-7 - 6607: -22,-8 - 6623: -27,-6 - 6636: -25,-7 - 6702: -31,1 - 6781: -31,-14 - 6782: -31,-13 - 7278: 32,1 - 7283: 37,-1 - 7284: 37,0 - 7285: 37,1 - 7297: 36,0 - 7352: 33,10 - 7353: 33,9 - 7574: 60,25 - 7575: 60,25 - 7745: 43,18 - 7746: 43,19 - 7756: 43,21 - 7776: 36,21 - 7779: 37,20 - 8551: 53,-25 - 8552: 53,-24 - 8566: 49,-25 - 8578: 45,-24 - 8579: 45,-25 - 10281: 38,-31 - 10282: 38,-30 - 10283: 38,-29 - 10291: 37,-30 - 10303: 20,-52 - 10304: 24,-52 - 10523: 18,-52 - 10524: 18,-51 - 10525: 18,-50 - 10728: 74,-39 - 10729: 74,-38 - 10739: 42,-54 - 10740: 42,-53 - 10756: 51,-55 - 10757: 51,-55 - 10759: 52,-56 - 10761: 52,-55 - 10762: 52,-55 - 10763: 52,-54 - 10764: 52,-53 - 10765: 52,-52 - 10772: 43,-50 - 10813: 43,-50 - 10814: 45,-52 - 10815: 45,-53 - 10816: 45,-54 - 11207: -49,-44 - 11208: -49,-46 - 11209: -49,-45 - 11225: -46,-44 - 11226: -46,-45 - 11237: -46,-48 - 12364: -21,-47 - 12374: -17,-47 - 12484: -17,-68 - 12485: -17,-69 - 12486: -17,-69 - 12487: -17,-70 - 12488: -17,-70 - 12489: -17,-71 - 12490: -17,-71 - 12491: -17,-72 - 12492: -17,-72 - 12493: -17,-73 - 12494: -13,-80 - 12495: -13,-81 - 12520: -22,-67 - 12521: -22,-66 - 12524: -15,-75 - 12551: -21,-81 - 12672: -5,37 - 12685: -2,39 - 12686: -2,38 - 12687: -2,37 - 12721: -42,28 - 12727: -38,28 - 12728: -38,26 - 13393: -38,-67 - 13415: -36,-67 - 13438: -30,-67 - 13439: -30,-66 - 13445: -35,-66 - 13614: -31,-78 - 13951: -65,61 - 13952: -65,60 - 13953: -65,59 - 15495: -6,-78 - 15505: -1,-78 - 15743: 97,1 - 15744: 97,2 - 15745: 97,3 - 15746: 97,4 - 15770: 92,2 - 15861: 89,5 - 15862: 89,6 - 15938: 94,13 - 15941: 96,13 - 16197: -62,-42 - 16490: -39,-10 - 18159: -63,17 - 18167: -57,6 - 18448: -58,-45 - 18868: -112,32 - 19506: -11,31 - 19507: -11,32 - 19508: -11,33 - 19515: -11,27 - 19516: -11,28 - 19517: -11,29 - 19518: -14,27 - 19519: -14,28 - 19520: -14,31 - 19521: -14,32 - 19522: -14,33 - 19549: -15,30 - 19563: 53,26 - 19564: 53,25 - 19565: 53,24 - 19566: 53,23 - 19567: 53,22 - 19572: 56,23 - 19573: 56,24 - 19574: 56,25 - 19575: 56,25 - 19576: 56,26 - 19886: -24,12 - 19887: -24,11 - 21453: 49,-24 + 1998: -9,32 + 1999: -9,31 + 2001: -9,29 + 2002: -9,28 + 2454: -14,44 + 2455: -14,42 + 2456: -14,40 + 2457: -14,38 + 2458: -14,36 + 2461: -14,46 + 2500: -13,41 + 2569: -10,44 + 2570: -10,38 + 2571: -10,37 + 2631: -2,41 + 3976: -34,62 + 3977: -34,61 + 3978: -34,60 + 4141: -26,22 + 4142: -26,21 + 5675: 14,8 + 5676: 14,9 + 5677: 14,10 + 5710: 14,1 + 5745: 11,6 + 5757: 11,2 + 5849: -14,-5 + 5854: -9,-5 + 5855: -9,-4 + 5880: -15,4 + 5897: -10,1 + 5898: -10,2 + 5901: -9,4 + 5905: -10,-2 + 5927: -8,10 + 5928: -8,9 + 5959: 1,13 + 6246: 2,-12 + 6477: -27,-5 + 6478: -27,-7 + 6479: -27,-8 + 6480: -27,-9 + 6494: -34,1 + 6495: -34,0 + 6496: -34,-1 + 6497: -34,-1 + 6498: -34,-2 + 6499: -34,-2 + 6500: -34,-3 + 6501: -34,-4 + 6502: -34,-4 + 6503: -34,-5 + 6504: -34,-6 + 6505: -34,-6 + 6506: -34,-7 + 6507: -34,-7 + 6508: -34,-8 + 6534: -26,1 + 6549: -22,-12 + 6603: -22,-6 + 6604: -22,-7 + 6605: -22,-8 + 6621: -27,-6 + 6634: -25,-7 + 6700: -31,1 + 6779: -31,-14 + 6780: -31,-13 + 7276: 32,1 + 7281: 37,-1 + 7282: 37,0 + 7283: 37,1 + 7295: 36,0 + 7350: 33,10 + 7351: 33,9 + 7572: 60,25 + 7573: 60,25 + 7743: 43,18 + 7744: 43,19 + 7754: 43,21 + 7774: 36,21 + 7777: 37,20 + 8549: 53,-25 + 8550: 53,-24 + 8564: 49,-25 + 8576: 45,-24 + 8577: 45,-25 + 10279: 38,-31 + 10280: 38,-30 + 10281: 38,-29 + 10289: 37,-30 + 10301: 20,-52 + 10302: 24,-52 + 10521: 18,-52 + 10522: 18,-51 + 10523: 18,-50 + 10726: 74,-39 + 10727: 74,-38 + 10737: 42,-54 + 10738: 42,-53 + 10754: 51,-55 + 10755: 51,-55 + 10757: 52,-56 + 10759: 52,-55 + 10760: 52,-55 + 10761: 52,-54 + 10762: 52,-53 + 10763: 52,-52 + 10770: 43,-50 + 10811: 43,-50 + 10812: 45,-52 + 10813: 45,-53 + 10814: 45,-54 + 11205: -49,-44 + 11206: -49,-46 + 11207: -49,-45 + 11223: -46,-44 + 11224: -46,-45 + 11235: -46,-48 + 12362: -21,-47 + 12372: -17,-47 + 12482: -17,-68 + 12483: -17,-69 + 12484: -17,-69 + 12485: -17,-70 + 12486: -17,-70 + 12487: -17,-71 + 12488: -17,-71 + 12489: -17,-72 + 12490: -17,-72 + 12491: -17,-73 + 12492: -13,-80 + 12493: -13,-81 + 12518: -22,-67 + 12519: -22,-66 + 12522: -15,-75 + 12549: -21,-81 + 12670: -5,37 + 12683: -2,39 + 12684: -2,38 + 12685: -2,37 + 12719: -42,28 + 12725: -38,28 + 12726: -38,26 + 13391: -38,-67 + 13413: -36,-67 + 13436: -30,-67 + 13437: -30,-66 + 13443: -35,-66 + 13612: -31,-78 + 13949: -65,61 + 13950: -65,60 + 13951: -65,59 + 15493: -6,-78 + 15503: -1,-78 + 15741: 97,1 + 15742: 97,2 + 15743: 97,3 + 15744: 97,4 + 15768: 92,2 + 15859: 89,5 + 15860: 89,6 + 15936: 94,13 + 15939: 96,13 + 16195: -62,-42 + 16488: -39,-10 + 18157: -63,17 + 18165: -57,6 + 18446: -58,-45 + 18866: -112,32 + 19504: -11,31 + 19505: -11,32 + 19506: -11,33 + 19513: -11,27 + 19514: -11,28 + 19515: -11,29 + 19516: -14,27 + 19517: -14,28 + 19518: -14,31 + 19519: -14,32 + 19520: -14,33 + 19547: -15,30 + 19561: 53,26 + 19562: 53,25 + 19563: 53,24 + 19564: 53,23 + 19565: 53,22 + 19570: 56,23 + 19571: 56,24 + 19572: 56,25 + 19573: 56,25 + 19574: 56,26 + 19884: -24,12 + 19885: -24,11 + 21451: 49,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -24581,273 +24580,273 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 2005: -9,25 - 2427: -13,45 - 2428: -12,45 - 2429: -11,45 - 2430: -13,43 - 2431: -12,43 - 2432: -11,43 - 2433: -13,41 - 2434: -11,41 - 2435: -13,39 - 2436: -12,39 - 2437: -11,39 - 2438: -13,37 - 2439: -12,37 - 2440: -11,37 - 2560: -13,46 - 2561: -12,46 - 2562: -11,46 - 2563: -11,46 - 2584: -14,46 - 2632: -3,42 - 2727: -4,54 - 3972: -38,63 - 3973: -36,63 - 3974: -37,63 - 3975: -35,63 - 4126: -22,20 - 4132: -28,21 - 4145: -25,20 - 4146: -23,20 - 4147: -23,20 - 4168: -25,18 - 5686: 7,11 - 5689: 10,11 - 5690: 9,11 - 5691: 11,11 - 5692: 12,11 - 5693: 13,11 - 5695: 10,7 - 5696: 8,7 - 5744: 9,7 - 5767: 8,4 - 5771: 9,3 - 5772: 10,3 - 5775: 10,-1 - 5859: -13,-3 - 5860: -12,-3 - 5865: -10,-7 - 5873: -11,-3 - 5885: -13,5 - 5886: -12,5 - 5887: -10,5 - 5897: -10,-2 - 5922: -15,11 - 5923: -14,11 - 5924: -13,11 - 5925: -12,11 - 5926: -11,11 - 5927: -9,11 - 5937: -11,6 - 5954: 0,14 - 5955: -1,14 - 6261: 2,-13 - 6262: -4,-13 - 6460: -30,-4 - 6461: -28,-4 - 6462: -27,-4 - 6463: -26,-4 - 6464: -26,-4 - 6465: -25,-4 - 6466: -23,-4 - 6467: -22,-4 - 6494: -24,-5 - 6537: -29,2 - 6538: -28,2 - 6539: -27,2 - 6553: -25,-11 - 6554: -23,-11 - 6602: -23,-5 - 6603: -25,-5 - 6604: -25,-5 - 6617: -24,-10 - 6637: -24,-8 - 6779: -33,-12 - 6780: -32,-12 - 7273: 34,2 - 7274: 36,2 - 7286: 36,-3 - 7298: 35,1 - 7349: 30,11 - 7350: 32,11 - 7351: 31,11 - 7363: 29,7 - 7730: 40,23 - 7731: 40,23 - 7732: 41,23 - 7733: 41,23 - 7734: 42,23 - 7735: 42,23 - 7736: 40,22 - 7737: 41,22 - 7738: 42,22 - 7753: 35,22 - 7754: 35,21 - 10284: 35,-28 - 10285: 36,-28 - 10292: 36,-29 - 10294: 36,-33 - 10313: 21,-51 - 10314: 23,-51 - 10529: 15,-49 - 10530: 16,-49 - 10531: 17,-54 - 10730: 73,-37 - 10733: 73,-41 - 10754: 50,-54 - 10769: 52,-50 - 10770: 44,-50 - 10771: 45,-50 - 11202: -55,-43 - 11203: -54,-43 - 11204: -54,-43 - 11205: -51,-43 - 11206: -50,-43 - 11217: -47,-46 - 11232: -48,-47 - 12366: -18,-46 - 12377: -20,-46 - 12510: -21,-66 - 12511: -20,-66 - 12512: -19,-66 - 12513: -18,-66 - 12514: -17,-66 - 12515: -16,-66 - 12516: -15,-66 - 12517: -14,-66 - 12518: -14,-66 - 12519: -13,-66 - 12526: -18,-74 - 12527: -16,-74 - 12538: -15,-79 - 12539: -14,-79 - 12550: -22,-80 - 12680: -2,40 - 12725: -40,29 - 13401: -40,-66 - 13402: -39,-66 - 13403: -40,-65 - 13404: -39,-65 - 13405: -38,-65 - 13440: -33,-65 - 13441: -32,-65 - 13442: -31,-65 - 13605: -34,-77 - 13606: -33,-77 - 13607: -32,-77 - 13948: -67,62 - 13949: -66,62 - 15491: -7,-77 - 15504: -2,-77 - 15736: 93,5 - 15737: 94,5 - 15738: 95,5 - 15768: 94,0 - 15769: 95,0 - 15844: 82,7 - 15845: 83,7 - 15846: 84,7 - 15847: 85,7 - 15848: 86,7 - 15849: 87,7 - 15850: 88,7 - 15933: 96,14 - 15934: 97,14 - 15946: 97,13 - 16181: -69,-40 - 16182: -68,-40 - 16183: -67,-40 - 16184: -66,-40 - 16185: -65,-40 - 16186: -63,-40 - 16489: -40,-9 - 18152: -65,18 - 18153: -64,18 - 18443: -59,-44 - 18588: -2,-11 - 18589: -1,-11 - 18590: 0,-11 - 18591: 1,-11 - 18869: -114,33 - 18870: -113,33 - 19488: -11,33 - 19493: -13,26 - 19494: -12,26 - 19495: -10,26 - 19496: -9,26 - 19501: -9,30 - 19502: -10,30 - 19681: 56,30 - 19682: 56,30 - 19683: 52,30 - 19684: 52,30 - 19685: 56,30 - 19693: 54,31 - 19888: -26,13 - 19889: -25,13 + 2003: -9,25 + 2425: -13,45 + 2426: -12,45 + 2427: -11,45 + 2428: -13,43 + 2429: -12,43 + 2430: -11,43 + 2431: -13,41 + 2432: -11,41 + 2433: -13,39 + 2434: -12,39 + 2435: -11,39 + 2436: -13,37 + 2437: -12,37 + 2438: -11,37 + 2558: -13,46 + 2559: -12,46 + 2560: -11,46 + 2561: -11,46 + 2582: -14,46 + 2630: -3,42 + 2725: -4,54 + 3970: -38,63 + 3971: -36,63 + 3972: -37,63 + 3973: -35,63 + 4124: -22,20 + 4130: -28,21 + 4143: -25,20 + 4144: -23,20 + 4145: -23,20 + 4166: -25,18 + 5684: 7,11 + 5687: 10,11 + 5688: 9,11 + 5689: 11,11 + 5690: 12,11 + 5691: 13,11 + 5693: 10,7 + 5694: 8,7 + 5742: 9,7 + 5765: 8,4 + 5769: 9,3 + 5770: 10,3 + 5773: 10,-1 + 5857: -13,-3 + 5858: -12,-3 + 5863: -10,-7 + 5871: -11,-3 + 5883: -13,5 + 5884: -12,5 + 5885: -10,5 + 5895: -10,-2 + 5920: -15,11 + 5921: -14,11 + 5922: -13,11 + 5923: -12,11 + 5924: -11,11 + 5925: -9,11 + 5935: -11,6 + 5952: 0,14 + 5953: -1,14 + 6259: 2,-13 + 6260: -4,-13 + 6458: -30,-4 + 6459: -28,-4 + 6460: -27,-4 + 6461: -26,-4 + 6462: -26,-4 + 6463: -25,-4 + 6464: -23,-4 + 6465: -22,-4 + 6492: -24,-5 + 6535: -29,2 + 6536: -28,2 + 6537: -27,2 + 6551: -25,-11 + 6552: -23,-11 + 6600: -23,-5 + 6601: -25,-5 + 6602: -25,-5 + 6615: -24,-10 + 6635: -24,-8 + 6777: -33,-12 + 6778: -32,-12 + 7271: 34,2 + 7272: 36,2 + 7284: 36,-3 + 7296: 35,1 + 7347: 30,11 + 7348: 32,11 + 7349: 31,11 + 7361: 29,7 + 7728: 40,23 + 7729: 40,23 + 7730: 41,23 + 7731: 41,23 + 7732: 42,23 + 7733: 42,23 + 7734: 40,22 + 7735: 41,22 + 7736: 42,22 + 7751: 35,22 + 7752: 35,21 + 10282: 35,-28 + 10283: 36,-28 + 10290: 36,-29 + 10292: 36,-33 + 10311: 21,-51 + 10312: 23,-51 + 10527: 15,-49 + 10528: 16,-49 + 10529: 17,-54 + 10728: 73,-37 + 10731: 73,-41 + 10752: 50,-54 + 10767: 52,-50 + 10768: 44,-50 + 10769: 45,-50 + 11200: -55,-43 + 11201: -54,-43 + 11202: -54,-43 + 11203: -51,-43 + 11204: -50,-43 + 11215: -47,-46 + 11230: -48,-47 + 12364: -18,-46 + 12375: -20,-46 + 12508: -21,-66 + 12509: -20,-66 + 12510: -19,-66 + 12511: -18,-66 + 12512: -17,-66 + 12513: -16,-66 + 12514: -15,-66 + 12515: -14,-66 + 12516: -14,-66 + 12517: -13,-66 + 12524: -18,-74 + 12525: -16,-74 + 12536: -15,-79 + 12537: -14,-79 + 12548: -22,-80 + 12678: -2,40 + 12723: -40,29 + 13399: -40,-66 + 13400: -39,-66 + 13401: -40,-65 + 13402: -39,-65 + 13403: -38,-65 + 13438: -33,-65 + 13439: -32,-65 + 13440: -31,-65 + 13603: -34,-77 + 13604: -33,-77 + 13605: -32,-77 + 13946: -67,62 + 13947: -66,62 + 15489: -7,-77 + 15502: -2,-77 + 15734: 93,5 + 15735: 94,5 + 15736: 95,5 + 15766: 94,0 + 15767: 95,0 + 15842: 82,7 + 15843: 83,7 + 15844: 84,7 + 15845: 85,7 + 15846: 86,7 + 15847: 87,7 + 15848: 88,7 + 15931: 96,14 + 15932: 97,14 + 15944: 97,13 + 16179: -69,-40 + 16180: -68,-40 + 16181: -67,-40 + 16182: -66,-40 + 16183: -65,-40 + 16184: -63,-40 + 16487: -40,-9 + 18150: -65,18 + 18151: -64,18 + 18441: -59,-44 + 18586: -2,-11 + 18587: -1,-11 + 18588: 0,-11 + 18589: 1,-11 + 18867: -114,33 + 18868: -113,33 + 19486: -11,33 + 19491: -13,26 + 19492: -12,26 + 19493: -10,26 + 19494: -9,26 + 19499: -9,30 + 19500: -10,30 + 19679: 56,30 + 19680: 56,30 + 19681: 52,30 + 19682: 52,30 + 19683: 56,30 + 19691: 54,31 + 19886: -26,13 + 19887: -25,13 - node: angle: 1.9198621771937625 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13490: -35.813877,-65.105484 - 16415: -64.29358,-40.983166 + 13488: -35.813877,-65.105484 + 16413: -64.29358,-40.983166 - node: angle: 2.0943951023931953 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13488: -29.784193,-66.29185 + 13486: -29.784193,-66.29185 - node: angle: 2.443460952792061 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16418: -62.793587,-43.12379 + 16416: -62.793587,-43.12379 - node: angle: 2.6179938779914944 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16417: -69.402954,-44.592537 + 16415: -69.402954,-44.592537 - node: angle: 3.490658503988659 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13487: -40.693886,-64.73856 + 13485: -40.693886,-64.73856 - node: angle: 3.6651914291880923 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13489: -33.77137,-66.21846 + 13487: -33.77137,-66.21846 - node: angle: 3.839724354387525 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16416: -69.85608,-41.076912 + 16414: -69.85608,-41.076912 - node: angle: 4.363323129985824 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16419: -67.26233,-43.09254 + 16417: -67.26233,-43.09254 - node: angle: 5.235987755982989 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13486: -37.183704,-67.03792 + 13484: -37.183704,-67.03792 - node: angle: 6.981317007977318 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16420: -67.51233,-46.24879 + 16418: -67.51233,-46.24879 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -24912,216 +24911,216 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineS decals: - 2441: -13,37 - 2442: -12,37 - 2443: -12,37 - 2444: -11,37 - 2445: -11,39 - 2446: -12,39 - 2447: -13,39 - 2448: -13,41 - 2449: -11,41 - 2450: -11,43 - 2451: -12,43 - 2452: -13,43 - 2453: -13,45 - 2454: -12,45 - 2455: -11,45 - 2564: -13,36 - 2565: -12,36 - 2566: -11,36 - 2574: -14,36 - 2636: -4,41 - 2637: -2,41 - 3982: -35,59 - 4136: -28,19 - 4137: -27,19 - 4138: -26,19 - 4139: -24,19 - 4140: -23,19 - 4151: -24,21 - 5673: 8,12 - 5680: 12,8 - 5681: 11,8 - 5682: 9,8 - 5683: 7,8 - 5704: 13,3 - 5710: 13,0 - 5749: 10,5 - 5750: 9,5 - 5751: 8,0 - 5752: 9,0 - 5764: 8,4 - 5863: -12,-6 - 5864: -11,-6 - 5872: -10,-2 - 5906: -11,6 - 5912: -10,-2 - 5913: -12,7 - 5914: -13,7 - 5915: -14,7 - 5916: -15,7 - 5917: -10,7 - 5933: -10,12 - 5958: -2,12 - 5959: -1,12 - 5960: 0,12 - 6249: -3,-12 - 6250: -2,-12 - 6251: -1,-12 - 6252: 0,-12 - 6253: 1,-12 - 6475: -22,-4 - 6476: -23,-4 - 6477: -25,-4 - 6478: -26,-4 - 6485: -30,-9 - 6486: -29,-9 - 6487: -28,-9 - 6533: -29,0 - 6534: -28,0 - 6535: -27,0 - 6542: -29,-3 - 6543: -24,-3 - 6548: -25,-13 - 6549: -24,-13 - 6550: -23,-13 - 6592: -24,-10 - 6593: -23,-9 - 6594: -25,-9 - 6624: -24,-4 - 6639: -24,-6 - 6777: -33,-15 - 6778: -32,-15 - 7269: 34,-2 - 7270: 35,-2 - 7277: 35,3 - 7299: 35,-1 - 7359: 30,8 - 7360: 31,8 - 7361: 32,8 - 7739: 40,18 - 7740: 41,18 - 7741: 42,18 - 7742: 40,17 - 7743: 41,17 - 7744: 42,17 - 7768: 35,18 - 7769: 35,18 - 7770: 35,19 - 8550: 52,-26 - 8557: 52,-22 - 8558: 48,-22 - 8564: 48,-26 - 8565: 48,-26 - 8575: 44,-22 - 8582: 44,-26 - 10279: 35,-32 - 10280: 37,-32 - 10290: 36,-31 - 10293: 37,-27 - 10305: 22,-50 - 10306: 22,-53 - 10307: 22,-53 - 10308: 23,-53 - 10312: 21,-53 - 10518: 15,-53 - 10519: 15,-53 - 10520: 16,-53 - 10521: 16,-53 - 10522: 17,-48 - 10737: 41,-56 - 10755: 50,-56 - 10774: 44,-50 - 10775: 44,-50 - 10776: 45,-50 - 11188: -50,-47 - 11189: -51,-47 - 11190: -52,-47 - 11191: -52,-47 - 11192: -53,-47 - 11193: -53,-47 - 11194: -54,-47 - 11195: -54,-47 - 11196: -55,-47 - 11215: -47,-42 - 11216: -47,-46 - 11238: -53,-49 - 11239: -52,-49 - 11240: -51,-49 - 11241: -51,-49 - 11242: -50,-49 - 11243: -49,-49 - 11244: -48,-49 - 11245: -47,-49 - 12367: -19,-45 - 12370: -20,-48 - 12371: -19,-48 - 12372: -18,-48 - 12480: -21,-67 - 12481: -20,-67 - 12482: -19,-67 - 12483: -18,-67 - 12501: -18,-76 - 12502: -17,-76 - 12503: -16,-76 - 12504: -15,-82 - 12505: -14,-82 - 12506: -16,-67 - 12507: -15,-67 - 12508: -14,-67 - 12509: -13,-67 - 12549: -22,-82 - 12671: -3,36 - 12674: -3,41 - 12718: -40,27 - 12719: -40,27 - 13395: -39,-68 - 13396: -40,-68 - 13411: -37,-64 - 13412: -41,-64 - 13417: -37,-68 - 13432: -33,-68 - 13433: -32,-68 - 13434: -31,-68 - 13601: -33,-79 - 13959: -66,58 - 15499: -7,-79 - 15503: -2,-79 - 15739: 96,0 - 15763: 94,4 - 15764: 95,4 - 15854: 82,4 - 15855: 84,4 - 15856: 83,4 - 15857: 85,4 - 15858: 87,4 - 15859: 86,4 - 15860: 88,4 - 16191: -71,-42 - 16192: -67,-44 - 16193: -66,-44 - 16194: -65,-44 - 16195: -64,-44 - 16196: -63,-44 - 16201: -68,-46 - 16491: -40,-11 - 18155: -65,16 - 18156: -64,16 - 18447: -59,-46 - 18866: -114,31 - 18867: -113,31 - 19489: -10,34 - 19490: -9,34 - 19491: -13,34 - 19492: -12,34 - 19503: -10,30 - 19504: -9,30 - 19686: 53,30 - 19687: 54,30 - 19688: 55,30 - 19890: -26,10 - 19891: -25,10 + 2439: -13,37 + 2440: -12,37 + 2441: -12,37 + 2442: -11,37 + 2443: -11,39 + 2444: -12,39 + 2445: -13,39 + 2446: -13,41 + 2447: -11,41 + 2448: -11,43 + 2449: -12,43 + 2450: -13,43 + 2451: -13,45 + 2452: -12,45 + 2453: -11,45 + 2562: -13,36 + 2563: -12,36 + 2564: -11,36 + 2572: -14,36 + 2634: -4,41 + 2635: -2,41 + 3980: -35,59 + 4134: -28,19 + 4135: -27,19 + 4136: -26,19 + 4137: -24,19 + 4138: -23,19 + 4149: -24,21 + 5671: 8,12 + 5678: 12,8 + 5679: 11,8 + 5680: 9,8 + 5681: 7,8 + 5702: 13,3 + 5708: 13,0 + 5747: 10,5 + 5748: 9,5 + 5749: 8,0 + 5750: 9,0 + 5762: 8,4 + 5861: -12,-6 + 5862: -11,-6 + 5870: -10,-2 + 5904: -11,6 + 5910: -10,-2 + 5911: -12,7 + 5912: -13,7 + 5913: -14,7 + 5914: -15,7 + 5915: -10,7 + 5931: -10,12 + 5956: -2,12 + 5957: -1,12 + 5958: 0,12 + 6247: -3,-12 + 6248: -2,-12 + 6249: -1,-12 + 6250: 0,-12 + 6251: 1,-12 + 6473: -22,-4 + 6474: -23,-4 + 6475: -25,-4 + 6476: -26,-4 + 6483: -30,-9 + 6484: -29,-9 + 6485: -28,-9 + 6531: -29,0 + 6532: -28,0 + 6533: -27,0 + 6540: -29,-3 + 6541: -24,-3 + 6546: -25,-13 + 6547: -24,-13 + 6548: -23,-13 + 6590: -24,-10 + 6591: -23,-9 + 6592: -25,-9 + 6622: -24,-4 + 6637: -24,-6 + 6775: -33,-15 + 6776: -32,-15 + 7267: 34,-2 + 7268: 35,-2 + 7275: 35,3 + 7297: 35,-1 + 7357: 30,8 + 7358: 31,8 + 7359: 32,8 + 7737: 40,18 + 7738: 41,18 + 7739: 42,18 + 7740: 40,17 + 7741: 41,17 + 7742: 42,17 + 7766: 35,18 + 7767: 35,18 + 7768: 35,19 + 8548: 52,-26 + 8555: 52,-22 + 8556: 48,-22 + 8562: 48,-26 + 8563: 48,-26 + 8573: 44,-22 + 8580: 44,-26 + 10277: 35,-32 + 10278: 37,-32 + 10288: 36,-31 + 10291: 37,-27 + 10303: 22,-50 + 10304: 22,-53 + 10305: 22,-53 + 10306: 23,-53 + 10310: 21,-53 + 10516: 15,-53 + 10517: 15,-53 + 10518: 16,-53 + 10519: 16,-53 + 10520: 17,-48 + 10735: 41,-56 + 10753: 50,-56 + 10772: 44,-50 + 10773: 44,-50 + 10774: 45,-50 + 11186: -50,-47 + 11187: -51,-47 + 11188: -52,-47 + 11189: -52,-47 + 11190: -53,-47 + 11191: -53,-47 + 11192: -54,-47 + 11193: -54,-47 + 11194: -55,-47 + 11213: -47,-42 + 11214: -47,-46 + 11236: -53,-49 + 11237: -52,-49 + 11238: -51,-49 + 11239: -51,-49 + 11240: -50,-49 + 11241: -49,-49 + 11242: -48,-49 + 11243: -47,-49 + 12365: -19,-45 + 12368: -20,-48 + 12369: -19,-48 + 12370: -18,-48 + 12478: -21,-67 + 12479: -20,-67 + 12480: -19,-67 + 12481: -18,-67 + 12499: -18,-76 + 12500: -17,-76 + 12501: -16,-76 + 12502: -15,-82 + 12503: -14,-82 + 12504: -16,-67 + 12505: -15,-67 + 12506: -14,-67 + 12507: -13,-67 + 12547: -22,-82 + 12669: -3,36 + 12672: -3,41 + 12716: -40,27 + 12717: -40,27 + 13393: -39,-68 + 13394: -40,-68 + 13409: -37,-64 + 13410: -41,-64 + 13415: -37,-68 + 13430: -33,-68 + 13431: -32,-68 + 13432: -31,-68 + 13599: -33,-79 + 13957: -66,58 + 15497: -7,-79 + 15501: -2,-79 + 15737: 96,0 + 15761: 94,4 + 15762: 95,4 + 15852: 82,4 + 15853: 84,4 + 15854: 83,4 + 15855: 85,4 + 15856: 87,4 + 15857: 86,4 + 15858: 88,4 + 16189: -71,-42 + 16190: -67,-44 + 16191: -66,-44 + 16192: -65,-44 + 16193: -64,-44 + 16194: -63,-44 + 16199: -68,-46 + 16489: -40,-11 + 18153: -65,16 + 18154: -64,16 + 18445: -59,-46 + 18864: -114,31 + 18865: -113,31 + 19487: -10,34 + 19488: -9,34 + 19489: -13,34 + 19490: -12,34 + 19501: -10,30 + 19502: -9,30 + 19684: 53,30 + 19685: 54,30 + 19686: 55,30 + 19888: -26,10 + 19889: -25,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -25156,202 +25155,202 @@ entities: color: '#DABC8BFF' id: WoodTrimThinLineW decals: - 1991: -8,27 - 1992: -8,33 - 2007: -8,27 - 2008: -8,30 - 2009: -8,33 - 2461: -10,36 - 2462: -10,46 - 2464: -10,42 - 2465: -10,40 - 2466: -10,38 - 2467: -10,44 - 2503: -11,41 - 2567: -9,39 - 2568: -9,41 - 2569: -9,42 - 2570: -9,43 - 2582: -9,40 - 2583: -9,40 - 2634: -4,41 - 2635: -4,41 - 3015: -9,45 - 3989: -39,60 - 4127: -21,20 - 4130: -27,22 - 4134: -29,20 - 4167: -21,20 - 5684: 6,9 - 5685: 6,10 - 5708: 12,1 - 5746: 7,6 - 5754: 7,1 - 5755: 7,2 - 5756: 7,3 - 5768: 12,1 - 5776: 12,1 - 5845: -16,-5 - 5850: -14,-5 - 5862: -13,-4 - 5878: -14,0 - 5879: -14,1 - 5880: -14,2 - 5881: -14,3 - 5908: -10,-2 - 5934: -16,8 - 5935: -16,9 - 5936: -16,10 - 5962: -3,13 - 6254: -4,-12 - 6468: -31,-5 - 6469: -31,-6 - 6470: -31,-7 - 6471: -31,-7 - 6472: -31,-8 - 6473: -31,-9 - 6514: -35,-8 - 6515: -35,-7 - 6516: -35,-6 - 6517: -35,-5 - 6518: -35,-4 - 6519: -35,-3 - 6520: -35,-3 - 6521: -35,-2 - 6522: -35,-1 - 6523: -35,-1 - 6524: -35,0 - 6525: -35,0 - 6526: -35,1 - 6527: -35,2 - 6552: -26,-12 - 6608: -26,-8 - 6609: -26,-7 - 6610: -26,-7 - 6638: -23,-7 - 6783: -34,-14 - 6784: -34,-13 - 7271: 33,-1 - 7272: 33,0 - 7302: 34,0 - 7356: 29,8 - 7357: 29,9 - 7358: 29,10 - 7759: 39,19 - 7760: 39,20 - 7761: 39,21 - 7762: 34,20 - 7774: 38,19 - 7775: 38,21 - 7784: 44,20 - 7785: 37,20 - 8553: 51,-25 - 8554: 51,-24 - 8569: 47,-24 - 8570: 47,-25 - 8580: 43,-25 - 8581: 43,-24 - 10286: 34,-31 - 10287: 34,-30 - 10288: 34,-29 - 10289: 35,-30 - 10311: 20,-52 - 10526: 14,-52 - 10527: 14,-51 - 10528: 14,-50 - 10731: 72,-39 - 10732: 72,-38 - 10741: 39,-55 - 10742: 39,-55 - 10743: 39,-54 - 10744: 39,-54 - 10745: 39,-52 - 10746: 39,-52 - 10758: 49,-55 - 10766: 49,-53 - 10777: 46,-52 - 10778: 46,-55 - 10779: 46,-55 - 10821: 44,-54 - 10822: 44,-53 - 10823: 44,-52 - 11199: -56,-46 - 11200: -56,-45 - 11201: -56,-44 - 11219: -47,-43 - 11220: -47,-43 - 11221: -47,-44 - 11222: -47,-44 - 11223: -47,-45 - 11224: -47,-45 - 11236: -54,-48 - 11247: -61,-43 - 12365: -21,-47 - 12522: -12,-66 - 12523: -12,-67 - 12525: -19,-75 - 12530: -17,-73 - 12531: -17,-72 - 12532: -17,-71 - 12533: -17,-70 - 12534: -17,-69 - 12535: -17,-68 - 12541: -16,-80 - 12542: -16,-81 - 12552: -23,-81 - 12673: -1,40 - 12683: -4,38 - 12684: -4,39 - 12734: -37,27 - 12735: -38,27 - 12736: -38,28 - 13398: -41,-67 - 13399: -41,-66 - 13414: -41,-65 - 13418: -35,-66 - 13437: -34,-67 - 13608: -35,-78 - 13956: -68,59 - 13957: -68,60 - 13958: -68,61 - 15498: -8,-78 - 15500: -3,-78 - 15726: 91,4 - 15727: 91,3 - 15728: 91,2 - 15729: 91,1 - 15730: 91,0 - 15731: 91,-1 - 15771: 97,2 - 15863: 81,5 - 15864: 81,6 - 15930: 97,13 - 16188: -72,-41 - 16189: -70,-44 - 16190: -70,-45 - 16200: -61,-43 - 16492: -41,-10 - 18160: -66,17 - 18170: -58,6 - 18444: -60,-44 - 18445: -60,-45 - 18871: -115,32 - 19509: -11,31 - 19510: -11,32 - 19511: -11,33 - 19512: -11,29 - 19513: -11,28 - 19514: -11,27 - 19577: 55,23 - 19578: 55,24 - 19579: 55,25 - 19580: 55,26 - 19581: 52,23 - 19582: 52,24 - 19583: 52,25 - 19584: 52,26 - 19893: -27,11 - 19894: -27,12 + 1989: -8,27 + 1990: -8,33 + 2005: -8,27 + 2006: -8,30 + 2007: -8,33 + 2459: -10,36 + 2460: -10,46 + 2462: -10,42 + 2463: -10,40 + 2464: -10,38 + 2465: -10,44 + 2501: -11,41 + 2565: -9,39 + 2566: -9,41 + 2567: -9,42 + 2568: -9,43 + 2580: -9,40 + 2581: -9,40 + 2632: -4,41 + 2633: -4,41 + 3013: -9,45 + 3987: -39,60 + 4125: -21,20 + 4128: -27,22 + 4132: -29,20 + 4165: -21,20 + 5682: 6,9 + 5683: 6,10 + 5706: 12,1 + 5744: 7,6 + 5752: 7,1 + 5753: 7,2 + 5754: 7,3 + 5766: 12,1 + 5774: 12,1 + 5843: -16,-5 + 5848: -14,-5 + 5860: -13,-4 + 5876: -14,0 + 5877: -14,1 + 5878: -14,2 + 5879: -14,3 + 5906: -10,-2 + 5932: -16,8 + 5933: -16,9 + 5934: -16,10 + 5960: -3,13 + 6252: -4,-12 + 6466: -31,-5 + 6467: -31,-6 + 6468: -31,-7 + 6469: -31,-7 + 6470: -31,-8 + 6471: -31,-9 + 6512: -35,-8 + 6513: -35,-7 + 6514: -35,-6 + 6515: -35,-5 + 6516: -35,-4 + 6517: -35,-3 + 6518: -35,-3 + 6519: -35,-2 + 6520: -35,-1 + 6521: -35,-1 + 6522: -35,0 + 6523: -35,0 + 6524: -35,1 + 6525: -35,2 + 6550: -26,-12 + 6606: -26,-8 + 6607: -26,-7 + 6608: -26,-7 + 6636: -23,-7 + 6781: -34,-14 + 6782: -34,-13 + 7269: 33,-1 + 7270: 33,0 + 7300: 34,0 + 7354: 29,8 + 7355: 29,9 + 7356: 29,10 + 7757: 39,19 + 7758: 39,20 + 7759: 39,21 + 7760: 34,20 + 7772: 38,19 + 7773: 38,21 + 7782: 44,20 + 7783: 37,20 + 8551: 51,-25 + 8552: 51,-24 + 8567: 47,-24 + 8568: 47,-25 + 8578: 43,-25 + 8579: 43,-24 + 10284: 34,-31 + 10285: 34,-30 + 10286: 34,-29 + 10287: 35,-30 + 10309: 20,-52 + 10524: 14,-52 + 10525: 14,-51 + 10526: 14,-50 + 10729: 72,-39 + 10730: 72,-38 + 10739: 39,-55 + 10740: 39,-55 + 10741: 39,-54 + 10742: 39,-54 + 10743: 39,-52 + 10744: 39,-52 + 10756: 49,-55 + 10764: 49,-53 + 10775: 46,-52 + 10776: 46,-55 + 10777: 46,-55 + 10819: 44,-54 + 10820: 44,-53 + 10821: 44,-52 + 11197: -56,-46 + 11198: -56,-45 + 11199: -56,-44 + 11217: -47,-43 + 11218: -47,-43 + 11219: -47,-44 + 11220: -47,-44 + 11221: -47,-45 + 11222: -47,-45 + 11234: -54,-48 + 11245: -61,-43 + 12363: -21,-47 + 12520: -12,-66 + 12521: -12,-67 + 12523: -19,-75 + 12528: -17,-73 + 12529: -17,-72 + 12530: -17,-71 + 12531: -17,-70 + 12532: -17,-69 + 12533: -17,-68 + 12539: -16,-80 + 12540: -16,-81 + 12550: -23,-81 + 12671: -1,40 + 12681: -4,38 + 12682: -4,39 + 12732: -37,27 + 12733: -38,27 + 12734: -38,28 + 13396: -41,-67 + 13397: -41,-66 + 13412: -41,-65 + 13416: -35,-66 + 13435: -34,-67 + 13606: -35,-78 + 13954: -68,59 + 13955: -68,60 + 13956: -68,61 + 15496: -8,-78 + 15498: -3,-78 + 15724: 91,4 + 15725: 91,3 + 15726: 91,2 + 15727: 91,1 + 15728: 91,0 + 15729: 91,-1 + 15769: 97,2 + 15861: 81,5 + 15862: 81,6 + 15928: 97,13 + 16186: -72,-41 + 16187: -70,-44 + 16188: -70,-45 + 16198: -61,-43 + 16490: -41,-10 + 18158: -66,17 + 18168: -58,6 + 18442: -60,-44 + 18443: -60,-45 + 18869: -115,32 + 19507: -11,31 + 19508: -11,32 + 19509: -11,33 + 19510: -11,29 + 19511: -11,28 + 19512: -11,27 + 19575: 55,23 + 19576: 55,24 + 19577: 55,25 + 19578: 55,26 + 19579: 52,23 + 19580: 52,24 + 19581: 52,25 + 19582: 52,26 + 19891: -27,11 + 19892: -27,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -25387,31 +25386,31 @@ entities: color: '#FFFFFF42' id: clown decals: - 13372: 55.22766,-37.04212 + 13370: 55.22766,-37.04212 - node: angle: 1.5707963267948966 rad color: '#FFFFFF42' id: corgi decals: - 13373: 53.258907,-37.95879 + 13371: 53.258907,-37.95879 - node: color: '#FFFFFF42' id: disk decals: - 13371: 54.696407,-34.97962 + 13369: 54.696407,-34.97962 - node: color: '#FFFFFF42' id: face decals: - 13370: 54.258907,-35.719204 + 13368: 54.258907,-35.719204 - node: cleanable: True angle: -0.7853981633974483 rad color: '#95171085' id: footprint decals: - 15387: -45.887077,-23.10373 - 15388: -45.527702,-22.869354 + 15385: -45.887077,-23.10373 + 15386: -45.527702,-22.869354 - node: color: '#D381C996' id: ghost @@ -25429,7 +25428,7 @@ entities: color: '#FFFFFFFF' id: grasssnow01 decals: - 14229: -71.98031,53.856472 + 14227: -71.98031,53.856472 - node: cleanable: True color: '#53960057' @@ -25474,7 +25473,7 @@ entities: color: '#FFFFFFFF' id: grasssnow05 decals: - 14225: -71.26156,54.153347 + 14223: -71.26156,54.153347 - node: cleanable: True color: '#53960057' @@ -25529,7 +25528,7 @@ entities: color: '#FFFFFFFF' id: grasssnow07 decals: - 14226: -70.73031,54.825222 + 14224: -70.73031,54.825222 - node: cleanable: True color: '#53960057' @@ -25555,7 +25554,7 @@ entities: color: '#FFFFFFFF' id: grasssnow08 decals: - 14227: -70.04281,53.918972 + 14225: -70.04281,53.918972 - node: cleanable: True color: '#53960057' @@ -25593,7 +25592,7 @@ entities: color: '#FFFFFFFF' id: grasssnow10 decals: - 14224: -71.855316,54.965847 + 14222: -71.855316,54.965847 - node: cleanable: True color: '#53960057' @@ -25640,83 +25639,83 @@ entities: color: '#FFFFFFFF' id: grasssnowa1 decals: - 14223: -70.57406,54.043972 + 14221: -70.57406,54.043972 - node: color: '#FFFFFFFF' id: grasssnowb1 decals: - 14222: -71.94906,54.028347 + 14220: -71.94906,54.028347 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: - 14228: -72.02719,55.09085 + 14226: -72.02719,55.09085 - node: angle: 1.5707963267948966 rad color: '#640000FF' id: pawprint decals: - 13367: 52.706825,-37.17754 + 13365: 52.706825,-37.17754 - node: angle: 3.141592653589793 rad color: '#640000FF' id: pawprint decals: - 13360: 52.727657,-35.10462 - 13361: 52.988075,-35.38587 - 13362: 52.696407,-35.60462 - 13363: 52.95682,-35.91712 - 13364: 52.71724,-36.125458 - 13365: 52.96724,-36.45879 - 13366: 52.67557,-36.656708 - 13368: 52.95682,-36.92754 - 13369: 52.946407,-34.79212 + 13358: 52.727657,-35.10462 + 13359: 52.988075,-35.38587 + 13360: 52.696407,-35.60462 + 13361: 52.95682,-35.91712 + 13362: 52.71724,-36.125458 + 13363: 52.96724,-36.45879 + 13364: 52.67557,-36.656708 + 13366: 52.95682,-36.92754 + 13367: 52.946407,-34.79212 - node: color: '#630000FF' id: rune2 decals: - 13625: -29.676588,-77.64111 + 13623: -29.676588,-77.64111 - node: color: '#630000FF' id: rune4 decals: - 13623: -36.02427,-73.86186 + 13621: -36.02427,-73.86186 - node: color: '#630000FF' id: rune5 decals: - 13624: -32.153282,-75.98998 + 13622: -32.153282,-75.98998 - node: color: '#630000FF' id: rune6 decals: - 13626: -35.987576,-80.062775 + 13624: -35.987576,-80.062775 - node: color: '#15FFFF22' id: splatter decals: - 21675: -62.94583,-29.13605 - 21676: -63.35208,-29.2298 - 21677: -63.38333,-29.292301 - 21678: -63.16458,-29.401674 - 21679: -62.992706,-29.44855 - 21680: -63.242702,-29.776674 - 21681: -63.055202,-29.7923 - 21682: -62.805202,-29.589174 - 21683: -62.53958,-29.38605 - 21684: -62.430206,-29.26105 - 21685: -62.492706,-29.151674 - 21686: -62.805206,-28.94855 - 21687: -62.97708,-28.901674 + 21644: -62.94583,-29.13605 + 21645: -63.35208,-29.2298 + 21646: -63.38333,-29.292301 + 21647: -63.16458,-29.401674 + 21648: -62.992706,-29.44855 + 21649: -63.242702,-29.776674 + 21650: -63.055202,-29.7923 + 21651: -62.805202,-29.589174 + 21652: -62.53958,-29.38605 + 21653: -62.430206,-29.26105 + 21654: -62.492706,-29.151674 + 21655: -62.805206,-28.94855 + 21656: -62.97708,-28.901674 - node: color: '#15FFFF68' id: splatter decals: - 21670: -63.180206,-29.32355 - 21671: -63.180206,-29.32355 - 21672: -62.88333,-29.214174 - 21673: -62.711456,-29.182924 - 21674: -62.648956,-29.151674 + 21639: -63.180206,-29.32355 + 21640: -63.180206,-29.32355 + 21641: -62.88333,-29.214174 + 21642: -62.711456,-29.182924 + 21643: -62.648956,-29.151674 - node: cleanable: True color: '#52B4E93B' @@ -25754,103 +25753,103 @@ entities: color: '#630000FF' id: splatter decals: - 13618: -29.986324,-80.05321 - 13619: -29.949633,-80.47516 - 13620: -28.824398,-73.46101 - 13621: -28.98951,-73.22252 - 13622: -28.695976,-73.13079 - 13627: -33.67599,-75.01765 - 13628: -33.565918,-74.7608 + 13616: -29.986324,-80.05321 + 13617: -29.949633,-80.47516 + 13618: -28.824398,-73.46101 + 13619: -28.98951,-73.22252 + 13620: -28.695976,-73.13079 + 13625: -33.67599,-75.01765 + 13626: -33.565918,-74.7608 - node: color: '#640000FF' id: splatter decals: - 13357: 55.854828,-38.332344 - 13358: 55.42427,-38.3879 - 13359: 52.66038,-34.5129 + 13355: 55.854828,-38.332344 + 13356: 55.42427,-38.3879 + 13357: 52.66038,-34.5129 - node: cleanable: True color: '#6CDBD006' id: splatter decals: - 14429: -65.29756,58.074463 - 14430: -65.51631,62.043217 - 14431: -65.34444,61.793213 - 14432: -67.65694,58.027588 - 14433: -67.54756,58.465088 - 14434: -67.23506,61.699463 - 14435: -66.76631,61.652588 - 14436: -67.12569,61.715088 + 14427: -65.29756,58.074463 + 14428: -65.51631,62.043217 + 14429: -65.34444,61.793213 + 14430: -67.65694,58.027588 + 14431: -67.54756,58.465088 + 14432: -67.23506,61.699463 + 14433: -66.76631,61.652588 + 14434: -67.12569,61.715088 - node: cleanable: True color: '#6CDBD012' id: splatter decals: - 14437: -67.01631,61.777588 + 14435: -67.01631,61.777588 - node: cleanable: True color: '#6CDBD015' id: splatter decals: - 14168: -71.167816,57.481472 - 14169: -70.58969,57.543972 - 14170: -70.667816,58.090847 - 14171: -70.667816,57.715847 - 14172: -70.96469,57.497097 - 14173: -71.136566,57.387722 - 14174: -71.21469,57.059597 - 14175: -71.167816,56.903347 - 14176: -71.136566,57.153347 - 14177: -70.824066,57.512722 - 14178: -70.58969,57.684597 - 14179: -70.43344,57.997097 - 14180: -70.43343,58.262722 - 14181: -70.43344,58.122097 - 14182: -70.511566,57.715847 - 14183: -70.667816,57.434597 - 14184: -71.02719,57.278347 - 14185: -72.12094,57.6221 - 14186: -72.12094,57.6221 - 14187: -71.90219,57.700222 - 14188: -71.667816,57.840847 - 14189: -71.52719,58.043972 - 14190: -71.511566,58.200222 - 14191: -71.511566,58.200222 - 14192: -71.605316,57.997097 - 14193: -71.761566,57.778347 - 14194: -71.90219,57.575222 - 14195: -72.05844,57.497097 - 14196: -72.167816,57.450226 - 14197: -72.230316,57.418976 - 14198: -72.02719,57.481472 - 14199: -71.74594,57.684597 - 14200: -71.542816,57.934597 - 14201: -71.48031,58.247097 - 14202: -71.48031,58.372097 - 14203: -71.49594,58.200222 - 14204: -71.77719,57.747097 - 14205: -72.15219,57.418976 - 14206: -72.386566,57.27835 - 14207: -71.136566,56.715847 - 14208: -71.08969,56.715847 - 14209: -70.949066,56.622097 - 14210: -70.80844,56.559597 - 14211: -70.62094,56.543972 - 14212: -70.37094,56.512722 - 14213: -70.15219,56.512722 - 14214: -69.917816,56.512722 - 14215: -69.792816,56.512726 + 14166: -71.167816,57.481472 + 14167: -70.58969,57.543972 + 14168: -70.667816,58.090847 + 14169: -70.667816,57.715847 + 14170: -70.96469,57.497097 + 14171: -71.136566,57.387722 + 14172: -71.21469,57.059597 + 14173: -71.167816,56.903347 + 14174: -71.136566,57.153347 + 14175: -70.824066,57.512722 + 14176: -70.58969,57.684597 + 14177: -70.43344,57.997097 + 14178: -70.43343,58.262722 + 14179: -70.43344,58.122097 + 14180: -70.511566,57.715847 + 14181: -70.667816,57.434597 + 14182: -71.02719,57.278347 + 14183: -72.12094,57.6221 + 14184: -72.12094,57.6221 + 14185: -71.90219,57.700222 + 14186: -71.667816,57.840847 + 14187: -71.52719,58.043972 + 14188: -71.511566,58.200222 + 14189: -71.511566,58.200222 + 14190: -71.605316,57.997097 + 14191: -71.761566,57.778347 + 14192: -71.90219,57.575222 + 14193: -72.05844,57.497097 + 14194: -72.167816,57.450226 + 14195: -72.230316,57.418976 + 14196: -72.02719,57.481472 + 14197: -71.74594,57.684597 + 14198: -71.542816,57.934597 + 14199: -71.48031,58.247097 + 14200: -71.48031,58.372097 + 14201: -71.49594,58.200222 + 14202: -71.77719,57.747097 + 14203: -72.15219,57.418976 + 14204: -72.386566,57.27835 + 14205: -71.136566,56.715847 + 14206: -71.08969,56.715847 + 14207: -70.949066,56.622097 + 14208: -70.80844,56.559597 + 14209: -70.62094,56.543972 + 14210: -70.37094,56.512722 + 14211: -70.15219,56.512722 + 14212: -69.917816,56.512722 + 14213: -69.792816,56.512726 - node: cleanable: True color: '#6CDBD034' id: splatter decals: - 14216: -70.917816,56.653347 - 14217: -70.71469,56.653347 - 14218: -70.49594,56.653347 - 14219: -70.136566,56.622097 - 14220: -69.90219,56.6221 - 14221: -69.87094,56.6221 + 14214: -70.917816,56.653347 + 14215: -70.71469,56.653347 + 14216: -70.49594,56.653347 + 14217: -70.136566,56.622097 + 14218: -69.90219,56.6221 + 14219: -69.87094,56.6221 - node: cleanable: True color: '#703C065D' @@ -25879,75 +25878,75 @@ entities: color: '#95000068' id: splatter decals: - 21611: -64.85194,-25.289093 - 21612: -65.03944,-25.289093 - 21613: -65.35194,-25.195345 - 21614: -65.11756,-24.773468 - 21615: -64.94569,-24.585968 - 21616: -64.71131,-24.695343 - 21617: -64.75819,-25.132843 - 21618: -64.82069,-25.226593 - 21619: -65.22694,-25.27347 - 21620: -65.43006,-25.164095 - 21621: -65.50819,-25.039095 - 21622: -65.25819,-25.101595 - 21623: -64.49256,-27.11722 - 21624: -64.49256,-27.257845 - 21625: -64.25819,-27.476595 - 21626: -63.99256,-27.507845 - 21627: -63.93006,-27.55472 - 21628: -64.27381,-27.61722 - 21629: -64.49256,-27.382845 - 21630: -58.945686,-27.39847 - 21631: -59.570686,-27.351593 - 21632: -59.64881,-27.351595 - 21633: -59.21131,-27.117218 - 21634: -59.476936,-27.164093 - 21635: -59.695686,-27.49222 - 21636: -59.86756,-27.601595 - 21637: -63.789436,-22.445345 - 21638: -64.18006,-22.507845 - 21639: -64.38319,-22.64847 - 21640: -64.64881,-23.007843 - 21641: -64.64881,-23.007843 - 21642: -64.36756,-22.58597 - 21643: -64.11756,-22.414095 - 21644: -59.055065,-25.320345 - 21645: -59.22694,-25.023468 - 21646: -58.867565,-24.757845 - 21647: -58.57069,-24.58597 - 21648: -58.69569,-24.507845 - 21649: -58.94569,-25.132845 - 21650: -58.773815,-25.101595 - 21651: -63.070805,-30.339186 - 21652: -63.336452,-30.19855 - 21653: -63.570827,-29.886051 - 21654: -63.38333,-29.401676 - 21655: -63.47708,-29.167301 - 21656: -63.53958,-28.917301 - 21657: -63.336456,-28.964174 - 21658: -63.539577,-29.495426 - 21659: -63.430202,-29.964176 - 21660: -63.242702,-30.07355 - 21661: -63.086452,-30.19855 - 21662: -61.617706,-29.229801 - 21663: -61.336456,-29.151674 - 21664: -61.242706,-28.9173 - 21665: -61.055206,-28.745424 - 21666: -60.836456,-28.7298 - 21667: -60.742706,-28.7298 - 21668: -60.836456,-28.870424 - 21669: -60.85208,-29.120424 + 21580: -64.85194,-25.289093 + 21581: -65.03944,-25.289093 + 21582: -65.35194,-25.195345 + 21583: -65.11756,-24.773468 + 21584: -64.94569,-24.585968 + 21585: -64.71131,-24.695343 + 21586: -64.75819,-25.132843 + 21587: -64.82069,-25.226593 + 21588: -65.22694,-25.27347 + 21589: -65.43006,-25.164095 + 21590: -65.50819,-25.039095 + 21591: -65.25819,-25.101595 + 21592: -64.49256,-27.11722 + 21593: -64.49256,-27.257845 + 21594: -64.25819,-27.476595 + 21595: -63.99256,-27.507845 + 21596: -63.93006,-27.55472 + 21597: -64.27381,-27.61722 + 21598: -64.49256,-27.382845 + 21599: -58.945686,-27.39847 + 21600: -59.570686,-27.351593 + 21601: -59.64881,-27.351595 + 21602: -59.21131,-27.117218 + 21603: -59.476936,-27.164093 + 21604: -59.695686,-27.49222 + 21605: -59.86756,-27.601595 + 21606: -63.789436,-22.445345 + 21607: -64.18006,-22.507845 + 21608: -64.38319,-22.64847 + 21609: -64.64881,-23.007843 + 21610: -64.64881,-23.007843 + 21611: -64.36756,-22.58597 + 21612: -64.11756,-22.414095 + 21613: -59.055065,-25.320345 + 21614: -59.22694,-25.023468 + 21615: -58.867565,-24.757845 + 21616: -58.57069,-24.58597 + 21617: -58.69569,-24.507845 + 21618: -58.94569,-25.132845 + 21619: -58.773815,-25.101595 + 21620: -63.070805,-30.339186 + 21621: -63.336452,-30.19855 + 21622: -63.570827,-29.886051 + 21623: -63.38333,-29.401676 + 21624: -63.47708,-29.167301 + 21625: -63.53958,-28.917301 + 21626: -63.336456,-28.964174 + 21627: -63.539577,-29.495426 + 21628: -63.430202,-29.964176 + 21629: -63.242702,-30.07355 + 21630: -63.086452,-30.19855 + 21631: -61.617706,-29.229801 + 21632: -61.336456,-29.151674 + 21633: -61.242706,-28.9173 + 21634: -61.055206,-28.745424 + 21635: -60.836456,-28.7298 + 21636: -60.742706,-28.7298 + 21637: -60.836456,-28.870424 + 21638: -60.85208,-29.120424 - node: cleanable: True color: '#95171085' id: splatter decals: - 15382: -45.01208,-21.634981 - 15383: -44.66833,-21.947481 - 15384: -45.13708,-21.775606 - 15385: -44.82458,-21.947481 - 15386: -45.012077,-22.541231 + 15380: -45.01208,-21.634981 + 15381: -44.66833,-21.947481 + 15382: -45.13708,-21.775606 + 15383: -44.82458,-21.947481 + 15384: -45.012077,-22.541231 - node: cleanable: True color: '#951710FF' @@ -25960,57 +25959,57 @@ entities: color: '#D9DBD0CC' id: splatter decals: - 14157: -70.230316,55.856472 - 14158: -69.87094,55.84085 - 14159: -70.71469,55.918972 - 14160: -70.105316,55.684597 - 14161: -69.824066,55.7471 - 14162: -70.80844,55.918972 - 14163: -71.199066,55.903347 - 14164: -71.52719,55.950222 - 14165: -72.042816,56.0596 - 14166: -72.33969,56.09085 - 14167: -71.77719,55.965847 + 14155: -70.230316,55.856472 + 14156: -69.87094,55.84085 + 14157: -70.71469,55.918972 + 14158: -70.105316,55.684597 + 14159: -69.824066,55.7471 + 14160: -70.80844,55.918972 + 14161: -71.199066,55.903347 + 14162: -71.52719,55.950222 + 14163: -72.042816,56.0596 + 14164: -72.33969,56.09085 + 14165: -71.77719,55.965847 - node: color: '#FF002268' id: splatter decals: - 21605: -64.99256,-25.179718 - 21606: -65.21131,-24.976593 - 21607: -64.78944,-24.710968 - 21608: -64.61756,-24.89847 - 21609: -64.64881,-25.351593 - 21610: -64.91444,-25.367218 + 21574: -64.99256,-25.179718 + 21575: -65.21131,-24.976593 + 21576: -64.78944,-24.710968 + 21577: -64.61756,-24.89847 + 21578: -64.64881,-25.351593 + 21579: -64.91444,-25.367218 - node: cleanable: True color: '#FFFFFFCD' id: splatter decals: - 14137: -70.58968,54.450222 - 14138: -70.30843,54.309597 - 14139: -69.88656,54.2471 - 14140: -70.43343,54.512722 - 14141: -70.730316,54.950222 - 14142: -70.58969,55.262722 - 14143: -70.62094,55.184597 - 14144: -70.74594,54.856472 - 14145: -70.62093,54.653347 - 14146: -70.54281,54.465847 - 14147: -70.58969,55.325222 - 14148: -69.74593,54.325226 - 14149: -70.52719,54.887722 - 14150: -70.18343,54.700222 - 14151: -72.199066,55.481476 - 14152: -71.761566,55.450222 - 14153: -71.355316,55.434597 - 14154: -71.08969,55.403347 - 14155: -70.58969,55.497097 - 14156: -70.65219,55.559597 + 14135: -70.58968,54.450222 + 14136: -70.30843,54.309597 + 14137: -69.88656,54.2471 + 14138: -70.43343,54.512722 + 14139: -70.730316,54.950222 + 14140: -70.58969,55.262722 + 14141: -70.62094,55.184597 + 14142: -70.74594,54.856472 + 14143: -70.62093,54.653347 + 14144: -70.54281,54.465847 + 14145: -70.58969,55.325222 + 14146: -69.74593,54.325226 + 14147: -70.52719,54.887722 + 14148: -70.18343,54.700222 + 14149: -72.199066,55.481476 + 14150: -71.761566,55.450222 + 14151: -71.355316,55.434597 + 14152: -71.08969,55.403347 + 14153: -70.58969,55.497097 + 14154: -70.65219,55.559597 - node: color: '#A40000FF' id: star decals: - 13617: -33.071037,-77.06283 + 13615: -33.071037,-77.06283 - node: cleanable: True color: '#DDC3A1FF' @@ -27957,7 +27956,8 @@ entities: -10,10: 0: 61190 -10,11: - 0: 52964 + 0: 52452 + 10: 512 -10,12: 0: 3822 -9,9: @@ -29931,7 +29931,7 @@ entities: - type: Joint joints: docking93271: !type:WeldJoint - bodyB: 38484 + bodyB: 38311 bodyA: 2 id: docking93271 localAnchorB: 5,0.49999997 @@ -30004,7 +30004,7 @@ entities: - type: ContainedSolution containerName: food container: 9 - - uid: 38484 + - uid: 38311 components: - type: MetaData name: SFD Стервятник DS-753 @@ -30105,7 +30105,7 @@ entities: - type: Joint joints: docking93271: !type:WeldJoint - bodyB: 38484 + bodyB: 38311 bodyA: 2 id: docking93271 localAnchorB: 5,0.49999997 @@ -30113,7 +30113,7 @@ entities: referenceAngle: -3.173097E-05 damping: 467.63986 stiffness: 4197.526 - - uid: 38584 + - uid: 38411 components: - type: MetaData name: Каторга "Злой Каблук" @@ -34071,11 +34071,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22442 - - 22605 - - 22443 - - 22448 - - 22622 + - 22365 + - 22528 + - 22366 + - 22371 + - 22545 - uid: 34 components: - type: Transform @@ -34084,18 +34084,18 @@ entities: parent: 2 - type: DeviceList devices: - - 795 - - 863 - - 22722 - - 22723 - - 22728 - - 22560 - - 22726 - - 22724 - - 22725 - - 18405 - - 18427 - - 18428 + - 791 + - 859 + - 22645 + - 22646 + - 22651 + - 22483 + - 22649 + - 22647 + - 22648 + - 18386 + - 18408 + - 18409 - uid: 35 components: - type: Transform @@ -34110,11 +34110,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18218 - - 18215 - - 18351 - - 18325 - - 752 + - 18199 + - 18196 + - 18332 + - 18306 + - 748 - uid: 37 components: - type: Transform @@ -34123,18 +34123,18 @@ entities: parent: 2 - type: DeviceList devices: - - 18332 - - 18346 + - 18313 + - 18327 + - 18217 + - 18299 + - 18278 + - 18339 + - 18303 + - 18188 - 18236 - - 18318 - - 18297 - - 18358 - - 18322 - - 18207 - - 18255 - - 780 - - 22600 - - 824 + - 776 + - 22523 + - 820 - uid: 38 components: - type: Transform @@ -34143,21 +34143,21 @@ entities: parent: 2 - type: DeviceList devices: - - 22677 - - 22545 - - 22440 - - 22436 - - 843 - - 22685 - - 22439 - - 22441 - - 22678 - - 18304 - - 18320 - - 18202 - - 18228 - - 18229 - - 18227 + - 22600 + - 22468 + - 22363 + - 22359 + - 839 + - 22608 + - 22362 + - 22364 + - 22601 + - 18285 + - 18301 + - 18183 + - 18209 + - 18210 + - 18208 - uid: 39 components: - type: Transform @@ -34166,14 +34166,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18351 - - 18325 - - 18228 - - 18229 - - 18227 - - 22686 - - 22687 - - 22438 + - 18332 + - 18306 + - 18209 + - 18210 + - 18208 + - 22609 + - 22610 + - 22361 - uid: 40 components: - type: Transform @@ -34182,19 +34182,19 @@ entities: parent: 2 - type: DeviceList devices: - - 22684 - - 22437 - - 22683 - - 22434 - - 752 - - 22682 - - 845 - - 22435 - - 18324 - - 18212 - - 18350 - - 18215 - - 18218 + - 22607 + - 22360 + - 22606 + - 22357 + - 748 + - 22605 + - 841 + - 22358 + - 18305 + - 18193 + - 18331 + - 18196 + - 18199 - uid: 41 components: - type: Transform @@ -34209,16 +34209,16 @@ entities: parent: 2 - type: DeviceList devices: - - 22529 - - 22530 - - 22577 - - 22531 - - 22532 - - 777 - - 22578 - - 22579 - - 22533 - - 22580 + - 22452 + - 22453 + - 22500 + - 22454 + - 22455 + - 773 + - 22501 + - 22502 + - 22456 + - 22503 - uid: 43 components: - type: Transform @@ -34226,9 +34226,9 @@ entities: parent: 2 - type: DeviceList devices: - - 762 - - 18383 - - 18382 + - 758 + - 18364 + - 18363 - uid: 44 components: - type: Transform @@ -34237,10 +34237,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22717 - - 22548 - - 768 - - 18384 + - 22640 + - 22471 + - 764 + - 18365 - uid: 45 components: - type: Transform @@ -34249,10 +34249,10 @@ entities: parent: 2 - type: DeviceList devices: - - 769 - - 22714 - - 22550 - - 18385 + - 765 + - 22637 + - 22473 + - 18366 - uid: 46 components: - type: Transform @@ -34261,15 +34261,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22555 - - 22719 - - 763 - - 18387 - - 18386 - - 18385 - - 18382 - - 18383 - - 18384 + - 22478 + - 22642 + - 759 + - 18368 + - 18367 + - 18366 + - 18363 + - 18364 + - 18365 - uid: 47 components: - type: Transform @@ -34278,17 +34278,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22720 - - 22554 - - 764 - - 18393 - - 18392 - - 18390 - - 18391 - - 18388 - - 18389 - - 18387 - - 18386 + - 22643 + - 22477 + - 760 + - 18374 + - 18373 + - 18371 + - 18372 + - 18369 + - 18370 + - 18368 + - 18367 - uid: 48 components: - type: Transform @@ -34297,11 +34297,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22551 - - 766 - - 22716 - - 18390 - - 18391 + - 22474 + - 762 + - 22639 + - 18371 + - 18372 - uid: 49 components: - type: Transform @@ -34310,11 +34310,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22549 - - 767 - - 22715 - - 18388 - - 18389 + - 22472 + - 763 + - 22638 + - 18369 + - 18370 - uid: 50 components: - type: Transform @@ -34323,11 +34323,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18392 - - 18393 - - 22718 - - 765 - - 22552 + - 18373 + - 18374 + - 22641 + - 761 + - 22475 - uid: 51 components: - type: Transform @@ -34335,11 +34335,11 @@ entities: parent: 2 - type: DeviceList devices: - - 771 - - 18115 - - 18114 - - 18054 - - 18053 + - 767 + - 18096 + - 18095 + - 18035 + - 18034 - uid: 52 components: - type: Transform @@ -34348,10 +34348,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22464 - - 22557 - - 22573 - - 22570 + - 22387 + - 22480 + - 22496 + - 22493 - uid: 53 components: - type: Transform @@ -34359,26 +34359,26 @@ entities: parent: 2 - type: DeviceList devices: - - 18288 - - 18235 - - 18247 - - 22594 - - 822 - - 22523 + - 18269 + - 18216 + - 18228 + - 22517 + - 818 + - 22446 + - 18205 + - 18204 + - 18274 + - 22447 - 18224 - - 18223 - - 18293 - - 22524 - - 18243 - - 18296 - - 18246 - - 18282 - - 18234 - - 18356 - - 18222 - - 754 - - 22599 + - 18277 + - 18227 + - 18263 + - 18215 + - 18337 + - 18203 + - 750 - 22522 + - 22445 - uid: 54 components: - type: Transform @@ -34387,28 +34387,28 @@ entities: parent: 2 - type: DeviceList devices: - - 800 - - 22641 - - 857 - - 22505 - - 18331 - - 18209 - - 18308 - - 18273 + - 796 + - 22564 + - 853 + - 22428 + - 18312 - 18190 - - 18104 - - 18097 - - 18110 - - 18094 - - 18099 + - 18289 + - 18254 + - 18171 + - 18085 + - 18078 - 18091 - - 18069 - - 18066 - - 18109 - - 18065 - - 18082 - - 22506 - - 22644 + - 18075 + - 18080 + - 18072 + - 18050 + - 18047 + - 18090 + - 18046 + - 18063 + - 22429 + - 22567 - uid: 55 components: - type: Transform @@ -34422,23 +34422,23 @@ entities: parent: 2 - type: DeviceList devices: - - 22393 - - 820 - - 18406 - - 18407 - - 22392 - - 814 - - 18412 - - 18413 - - 18408 - - 18411 - - 18414 - - 22391 - - 815 - - 18410 - - 18409 - - 18160 - - 18164 + - 22316 + - 816 + - 18387 + - 18388 + - 22315 + - 810 + - 18393 + - 18394 + - 18389 + - 18392 + - 18395 + - 22314 + - 811 + - 18391 + - 18390 + - 18141 + - 18145 - uid: 57 components: - type: Transform @@ -34452,10 +34452,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18417 - - 18416 - - 749 - - 22381 + - 18398 + - 18397 + - 745 + - 22304 - uid: 59 components: - type: Transform @@ -34464,14 +34464,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18290 - - 18419 - - 18420 - - 821 - - 813 - - 18159 - - 18418 - - 18130 + - 18271 + - 18400 + - 18401 + - 817 + - 809 + - 18140 + - 18399 + - 18111 - uid: 60 components: - type: Transform @@ -34480,13 +34480,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22592 - - 22527 - - 22526 - - 22591 - - 22528 - - 22576 - - 22394 + - 22515 + - 22450 + - 22449 + - 22514 + - 22451 + - 22499 + - 22317 - uid: 61 components: - type: Transform @@ -34495,12 +34495,12 @@ entities: parent: 2 - type: DeviceList devices: - - 22539 - - 22572 - - 22582 - - 22538 - - 22581 - - 22540 + - 22462 + - 22495 + - 22505 + - 22461 + - 22504 + - 22463 - uid: 62 components: - type: Transform @@ -34509,8 +34509,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22529 - - 22530 + - 22452 + - 22453 - uid: 63 components: - type: Transform @@ -34519,17 +34519,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22587 - - 22537 - - 22583 - - 22534 - - 22568 - - 22536 - - 22586 - - 22535 - - 22584 - - 778 - - 22585 + - 22510 + - 22460 + - 22506 + - 22457 + - 22491 + - 22459 + - 22509 + - 22458 + - 22507 + - 774 + - 22508 - uid: 64 components: - type: Transform @@ -34537,21 +34537,21 @@ entities: parent: 2 - type: DeviceList devices: - - 18044 - - 18045 - - 18036 - - 18043 - - 18047 - - 18048 - - 823 - - 22463 - - 22595 - - 22462 - - 753 - - 22596 - - 22461 - - 22598 - - 22597 + - 18025 + - 18026 + - 18018 + - 18024 + - 18028 + - 18029 + - 819 + - 22386 + - 22518 + - 22385 + - 749 + - 22519 + - 22384 + - 22521 + - 22520 - uid: 65 components: - type: Transform @@ -34559,26 +34559,26 @@ entities: parent: 2 - type: DeviceList devices: - - 781 - - 18062 - - 18059 - - 18117 - - 782 - - 22604 - - 22447 - - 18063 - - 18064 - - 18116 - - 18302 - - 18184 - - 18429 - - 18217 - - 18187 - - 18120 - - 22449 - - 22450 - - 22452 - - 22451 + - 777 + - 18043 + - 18040 + - 18098 + - 778 + - 22527 + - 22370 + - 18044 + - 18045 + - 18097 + - 18283 + - 18165 + - 18410 + - 18198 + - 18168 + - 18101 + - 22372 + - 22373 + - 22375 + - 22374 - uid: 66 components: - type: Transform @@ -34587,11 +34587,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22624 - - 22459 - - 22571 - - 22458 - - 22457 + - 22547 + - 22382 + - 22494 + - 22381 + - 22380 - uid: 67 components: - type: Transform @@ -34600,11 +34600,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22625 - - 22466 - - 22465 - - 22626 - - 22627 + - 22548 + - 22389 + - 22388 + - 22549 + - 22550 - uid: 68 components: - type: Transform @@ -34613,8 +34613,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22603 - - 22453 + - 22526 + - 22376 - uid: 69 components: - type: Transform @@ -34622,23 +34622,23 @@ entities: parent: 2 - type: DeviceList devices: - - 22394 - - 22398 - - 22575 - - 22397 - - 22590 - - 22589 - - 18206 - - 18421 - - 18422 - - 18349 - - 22588 - - 22593 - - 22525 - - 812 - - 18426 - - 18425 - - 18424 + - 22317 + - 22321 + - 22498 + - 22320 + - 22513 + - 22512 + - 18187 + - 18402 + - 18403 + - 18330 + - 22511 + - 22516 + - 22448 + - 808 + - 18407 + - 18406 + - 18405 - uid: 70 components: - type: Transform @@ -34646,13 +34646,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18129 - - 18136 - - 18140 - - 22664 - - 22563 - - 22482 - - 22674 + - 18110 + - 18117 + - 18121 + - 22587 + - 22486 + - 22405 + - 22597 - uid: 71 components: - type: Transform @@ -34661,33 +34661,33 @@ entities: parent: 2 - type: DeviceList devices: - - 18081 - - 18080 - - 18087 - - 18083 - - 18096 - - 18070 + - 18062 + - 18061 - 18068 + - 18064 + - 18077 + - 18051 + - 18049 + - 18069 + - 18071 + - 18079 - 18088 - - 18090 - - 18098 - - 18107 - - 18093 - - 855 - - 775 - - 22640 - - 22503 - - 18095 - - 18089 - - 18092 - - 18078 - - 18075 + - 18074 + - 851 + - 771 + - 22563 + - 22426 - 18076 - - 18102 - - 18079 - - 18084 - - 18086 - - 18085 + - 18070 + - 18073 + - 18059 + - 18056 + - 18057 + - 18083 + - 18060 + - 18065 + - 18067 + - 18066 - uid: 72 components: - type: Transform @@ -34695,17 +34695,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18067 - - 18106 - - 18105 - - 18108 - - 18101 - - 18073 - - 856 - - 22639 - - 22395 - - 22638 - - 22504 + - 18048 + - 18087 + - 18086 + - 18089 + - 18082 + - 18054 + - 852 + - 22562 + - 22318 + - 22561 + - 22427 - uid: 73 components: - type: Transform @@ -34714,10 +34714,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22642 - - 22507 - - 22508 - - 22643 + - 22565 + - 22430 + - 22431 + - 22566 - uid: 74 components: - type: Transform @@ -34726,30 +34726,30 @@ entities: parent: 2 - type: DeviceList devices: - - 18225 + - 18206 + - 18207 + - 18266 + - 18293 - 18226 - - 18285 - - 18312 - - 18245 - - 22511 - - 862 - - 22656 - - 18244 - - 18239 - - 18311 - - 18364 - - 18295 - - 22657 - - 776 - - 22517 - - 810 - - 18240 - - 18238 - - 18249 - - 22516 - - 803 - - 22655 - - 22658 + - 22434 + - 858 + - 22579 + - 18225 + - 18220 + - 18292 + - 18345 + - 18276 + - 22580 + - 772 + - 22440 + - 806 + - 18221 + - 18219 + - 18230 + - 22439 + - 799 + - 22578 + - 22581 - uid: 75 components: - type: Transform @@ -34758,19 +34758,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18271 - - 18269 - - 18268 - - 859 - - 22721 - - 22389 - - 860 - - 22567 - - 22390 - - 858 - - 18355 - - 18208 - - 18354 + - 18252 + - 18250 + - 18249 + - 855 + - 22644 + - 22312 + - 856 + - 22490 + - 22313 + - 854 + - 18336 + - 18189 + - 18335 - uid: 76 components: - type: Transform @@ -34779,17 +34779,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22515 - - 22649 - - 861 - - 22512 - - 22513 - - 22519 - - 22650 - - 805 - - 18292 - - 18193 - - 18185 + - 22438 + - 22572 + - 857 + - 22435 + - 22436 + - 22442 + - 22573 + - 801 + - 18273 + - 18174 + - 18166 - uid: 77 components: - type: Transform @@ -34797,15 +34797,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22646 - - 22509 - - 18287 - - 18286 - - 811 - - 22566 - - 22645 - - 22648 - - 22514 + - 22569 + - 22432 + - 18268 + - 18267 + - 807 + - 22489 + - 22568 + - 22571 + - 22437 - uid: 78 components: - type: Transform @@ -34814,14 +34814,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22521 - - 806 - - 22520 - - 807 - - 22653 - - 22652 - - 18056 - - 18055 + - 22444 + - 802 + - 22443 + - 803 + - 22576 + - 22575 + - 18037 + - 18036 - uid: 79 components: - type: Transform @@ -34829,28 +34829,28 @@ entities: parent: 2 - type: DeviceList devices: - - 18176 - - 18265 - - 18266 - - 18342 - - 22489 - - 757 - - 22628 - - 18161 - - 22629 - - 797 - - 22491 - - 18309 - - 18303 - - 18139 - - 18138 - - 18153 - - 22490 - - 796 - - 18362 - - 854 - - 22630 - - 22636 + - 18157 + - 18246 + - 18247 + - 18323 + - 22412 + - 753 + - 22551 + - 18142 + - 22552 + - 793 + - 22414 + - 18290 + - 18284 + - 18120 + - 18119 + - 18134 + - 22413 + - 792 + - 18343 + - 850 + - 22553 + - 22559 - uid: 80 components: - type: Transform @@ -34870,8 +34870,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22496 - - 22497 + - 22419 + - 22420 - uid: 83 components: - type: Transform @@ -34880,11 +34880,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22541 - - 22632 - - 22493 - - 22494 - - 22495 + - 22464 + - 22555 + - 22416 + - 22417 + - 22418 - uid: 84 components: - type: Transform @@ -34893,11 +34893,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22445 - - 22612 - - 22611 - - 22444 - - 22659 + - 22368 + - 22535 + - 22534 + - 22367 + - 22582 - uid: 85 components: - type: Transform @@ -34905,18 +34905,18 @@ entities: parent: 2 - type: DeviceList devices: - - 22471 - - 829 - - 18278 - - 18361 - - 18173 - - 18360 - - 18261 - - 18310 - - 18111 - - 18060 - - 18061 - - 22472 + - 22394 + - 825 + - 18259 + - 18342 + - 18154 + - 18341 + - 18242 + - 18291 + - 18092 + - 18041 + - 18042 + - 22395 - uid: 86 components: - type: Transform @@ -34925,28 +34925,28 @@ entities: parent: 2 - type: DeviceList devices: - - 831 - - 22661 - - 789 - - 22475 - - 22666 - - 22669 - - 22668 - - 22667 - - 22474 - - 22473 - - 18353 - - 18352 - - 18132 - - 18165 - - 18125 - - 791 - - 18129 - - 18136 - - 18140 - - 22663 - - 22662 - - 22660 + - 827 + - 22584 + - 785 + - 22398 + - 22589 + - 22592 + - 22591 + - 22590 + - 22397 + - 22396 + - 18334 + - 18333 + - 18113 + - 18146 + - 18106 + - 787 + - 18110 + - 18117 + - 18121 + - 22586 + - 22585 + - 22583 - uid: 87 components: - type: Transform @@ -34955,22 +34955,22 @@ entities: parent: 2 - type: DeviceList devices: - - 18248 - - 18326 - - 18241 - - 18283 - - 18231 - - 18253 - - 18252 - - 18279 - - 18205 - - 18201 - - 22702 - - 18179 - - 18306 - - 18203 - - 22413 - - 835 + - 18229 + - 18307 + - 18222 + - 18264 + - 18212 + - 18234 + - 18233 + - 18260 + - 18186 + - 18182 + - 22625 + - 18160 + - 18287 + - 18184 + - 22336 + - 831 - uid: 88 components: - type: Transform @@ -34979,13 +34979,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22476 - - 22670 - - 790 - - 18051 - - 18052 - - 22673 - - 22396 + - 22399 + - 22593 + - 786 + - 18032 + - 18033 + - 22596 + - 22319 - uid: 89 components: - type: Transform @@ -34994,14 +34994,14 @@ entities: parent: 2 - type: DeviceList devices: - - 792 - - 22477 - - 793 - - 22478 - - 18314 - - 18398 - - 18363 - - 18259 + - 788 + - 22400 + - 789 + - 22401 + - 18295 + - 18379 + - 18344 + - 18240 - uid: 90 components: - type: Transform @@ -35010,11 +35010,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18363 - - 18381 - - 18275 - - 22479 - - 22671 + - 18344 + - 18362 + - 18256 + - 22402 + - 22594 - uid: 91 components: - type: Transform @@ -35023,15 +35023,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22672 - - 794 - - 22480 - - 22481 + - 22595 + - 790 + - 22403 + - 22404 + - 18360 + - 18256 + - 18362 + - 18295 - 18379 - - 18275 - - 18381 - - 18314 - - 18398 - uid: 92 components: - type: Transform @@ -35040,23 +35040,23 @@ entities: parent: 2 - type: DeviceList devices: - - 22631 - - 22492 - - 22637 - - 750 - - 22498 - - 22499 - - 22633 - - 22634 - - 22501 - - 22635 - - 799 - - 22500 - - 18260 - - 18149 - - 18276 - - 18277 - - 18262 + - 22554 + - 22415 + - 22560 + - 746 + - 22421 + - 22422 + - 22556 + - 22557 + - 22424 + - 22558 + - 795 + - 22423 + - 18241 + - 18130 + - 18257 + - 18258 + - 18243 - uid: 93 components: - type: Transform @@ -35070,11 +35070,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22675 - - 22486 - - 22565 - - 22485 - - 18395 + - 22598 + - 22409 + - 22488 + - 22408 + - 18376 - uid: 95 components: - type: Transform @@ -35083,28 +35083,28 @@ entities: parent: 2 - type: DeviceList devices: - - 18342 - - 18266 - - 18265 - - 18176 - - 22488 - - 18343 - - 18339 - - 18171 - - 827 - - 826 - - 22608 - - 18237 - - 18334 + - 18323 + - 18247 + - 18246 + - 18157 + - 22411 + - 18324 + - 18320 + - 18152 + - 823 + - 822 + - 22531 + - 18218 + - 18315 + - 18169 + - 22425 + - 821 + - 18303 - 18188 - - 22502 - - 825 - - 18322 - - 18207 - - 18255 - - 18208 - - 18354 - - 18355 + - 18236 + - 18189 + - 18335 + - 18336 - uid: 96 components: - type: Transform @@ -35113,11 +35113,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18405 - - 18427 - - 18428 - - 22561 - - 22727 + - 18386 + - 18408 + - 18409 + - 22484 + - 22650 - uid: 97 components: - type: Transform @@ -35126,16 +35126,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18394 - - 22483 - - 772 - - 22484 - - 773 - - 22399 - - 18181 - - 18196 - - 18396 - - 774 + - 18375 + - 22406 + - 768 + - 22407 + - 769 + - 22322 + - 18162 + - 18177 + - 18377 + - 770 - uid: 98 components: - type: Transform @@ -35144,15 +35144,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18291 - - 18317 - - 18281 - - 837 - - 18367 - - 18347 - - 18232 - - 838 - - 22613 + - 18272 + - 18298 + - 18262 + - 833 + - 18348 + - 18328 + - 18213 + - 834 + - 22536 - uid: 99 components: - type: Transform @@ -35161,9 +35161,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22467 - - 784 - - 22614 + - 22390 + - 780 + - 22537 - uid: 100 components: - type: Transform @@ -35172,13 +35172,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22615 - - 22616 - - 22617 - - 22618 - - 22619 - - 22468 - - 785 + - 22538 + - 22539 + - 22540 + - 22541 + - 22542 + - 22391 + - 781 - uid: 101 components: - type: Transform @@ -35187,16 +35187,16 @@ entities: parent: 2 - type: DeviceList devices: - - 787 - - 22470 - - 22469 - - 22621 - - 22620 - - 18336 - - 18345 - - 18328 - - 18337 - - 788 + - 783 + - 22393 + - 22392 + - 22544 + - 22543 + - 18317 + - 18326 + - 18309 + - 18318 + - 784 - uid: 102 components: - type: Transform @@ -35205,17 +35205,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22414 - - 755 - - 22688 - - 18327 - - 18333 - - 18210 - - 18219 - - 18283 - - 18231 - - 22415 - - 22690 + - 22337 + - 751 + - 22611 + - 18308 + - 18314 + - 18191 + - 18200 + - 18264 + - 18212 + - 22338 + - 22613 - uid: 103 components: - type: Transform @@ -35224,7 +35224,7 @@ entities: parent: 2 - type: DeviceList devices: - - 865 + - 861 - uid: 104 components: - type: Transform @@ -35233,7 +35233,7 @@ entities: parent: 2 - type: DeviceList devices: - - 746 + - 742 - uid: 105 components: - type: Transform @@ -35242,14 +35242,14 @@ entities: parent: 2 - type: DeviceList devices: - - 850 - - 22423 - - 22700 - - 22569 - - 22425 - - 852 - - 847 - - 22697 + - 846 + - 22346 + - 22623 + - 22492 + - 22348 + - 848 + - 843 + - 22620 - uid: 106 components: - type: Transform @@ -35258,13 +35258,13 @@ entities: parent: 2 - type: DeviceList devices: - - 851 - - 22424 - - 22699 - - 18264 - - 18335 - - 18307 - - 18313 + - 847 + - 22347 + - 22622 + - 18245 + - 18316 + - 18288 + - 18294 - uid: 107 components: - type: Transform @@ -35273,14 +35273,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22698 - - 848 - - 18157 - - 18127 - - 18128 - - 18233 - - 18143 - - 22689 + - 22621 + - 844 + - 18138 + - 18108 + - 18109 + - 18214 + - 18124 + - 22612 - uid: 108 components: - type: Transform @@ -35289,20 +35289,20 @@ entities: parent: 2 - type: DeviceList devices: - - 22420 - - 22419 - - 22696 - - 22421 - - 846 - - 18403 - - 18402 - - 18123 - - 18256 - - 18251 - - 18182 - - 18230 - - 18316 - - 18365 + - 22343 + - 22342 + - 22619 + - 22344 + - 842 + - 18384 + - 18383 + - 18104 + - 18237 + - 18232 + - 18163 + - 18211 + - 18297 + - 18346 - uid: 109 components: - type: Transform @@ -35311,11 +35311,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22691 - - 22542 - - 22416 - - 759 - - 761 + - 22614 + - 22465 + - 22339 + - 755 + - 757 - uid: 110 components: - type: Transform @@ -35324,16 +35324,16 @@ entities: parent: 2 - type: DeviceList devices: - - 22693 - - 22417 - - 18256 - - 18251 - - 18182 - - 22695 - - 22546 - - 22694 - - 758 - - 22418 + - 22616 + - 22340 + - 18237 + - 18232 + - 18163 + - 22618 + - 22469 + - 22617 + - 754 + - 22341 - uid: 111 components: - type: Transform @@ -35342,9 +35342,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22426 - - 22701 - - 853 + - 22349 + - 22624 + - 849 - uid: 112 components: - type: Transform @@ -35353,19 +35353,19 @@ entities: parent: 2 - type: DeviceList devices: - - 22610 - - 832 - - 18310 - - 18261 - - 18360 - - 18340 - - 18258 - - 18172 - - 22487 + - 22533 - 828 - - 18183 + - 18291 + - 18242 + - 18341 + - 18321 + - 18239 + - 18153 + - 22410 + - 824 + - 18164 + - 18151 - 18170 - - 18189 - uid: 113 components: - type: Transform @@ -35374,19 +35374,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18179 - - 18306 - - 18203 - - 22412 - - 819 - - 18299 - - 18174 - - 18319 - - 22411 - - 816 - - 22703 - - 22704 - - 22405 + - 18160 + - 18287 + - 18184 + - 22335 + - 815 + - 18280 + - 18155 + - 18300 + - 22334 + - 812 + - 22626 + - 22627 + - 22328 - uid: 114 components: - type: Transform @@ -35395,34 +35395,34 @@ entities: parent: 2 - type: DeviceList devices: - - 22705 - - 22710 - - 22400 - - 22709 - - 818 - - 22708 - - 22401 - - 22402 - - 839 - - 22403 - - 22706 - - 22404 - - 22707 - - 840 - - 18267 - - 18270 - - 18272 - - 18371 - - 18372 - - 18373 - - 18374 - - 18369 - - 18378 - - 18375 - - 18377 - - 18376 - - 18158 - - 18141 + - 22628 + - 22633 + - 22323 + - 22632 + - 814 + - 22631 + - 22324 + - 22325 + - 835 + - 22326 + - 22629 + - 22327 + - 22630 + - 836 + - 18248 + - 18251 + - 18253 + - 18352 + - 18353 + - 18354 + - 18355 + - 18350 + - 18359 + - 18356 + - 18358 + - 18357 + - 18139 + - 18122 - uid: 115 components: - type: Transform @@ -35430,13 +35430,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22713 - - 22711 - - 22406 - - 22407 - - 22712 - - 18141 - - 18158 + - 22636 + - 22634 + - 22329 + - 22330 + - 22635 + - 18122 + - 18139 - uid: 116 components: - type: Transform @@ -35445,8 +35445,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22410 - - 22409 + - 22333 + - 22332 - uid: 117 components: - type: Transform @@ -35454,26 +35454,26 @@ entities: parent: 2 - type: DeviceList devices: - - 22427 - - 817 - - 22676 - - 841 - - 22574 - - 22429 - - 842 - - 18198 - - 18289 - - 18348 - - 18204 - - 18380 - - 18180 - - 18280 + - 22350 + - 813 + - 22599 + - 837 + - 22497 + - 22352 + - 838 + - 18179 + - 18270 + - 18329 + - 18185 + - 18361 + - 18161 + - 18261 + - 18159 + - 18304 - 18178 - - 18323 - - 18197 - - 18177 - - 18253 - - 18252 + - 18158 + - 18234 + - 18233 - uid: 118 components: - type: Transform @@ -35482,20 +35482,20 @@ entities: parent: 2 - type: DeviceList devices: - - 18366 - - 18315 - - 18284 - - 18281 - - 18317 - - 18291 - - 833 - - 22446 - - 18344 - - 18341 - - 18338 - - 18302 - - 18184 - - 18429 + - 18347 + - 18296 + - 18265 + - 18262 + - 18298 + - 18272 + - 829 + - 22369 + - 18325 + - 18322 + - 18319 + - 18283 + - 18165 + - 18410 - uid: 119 components: - type: Transform @@ -35510,11 +35510,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22431 - - 22680 - - 22679 - - 22430 - - 22433 + - 22354 + - 22603 + - 22602 + - 22353 + - 22356 - uid: 121 components: - type: Transform @@ -35522,8 +35522,8 @@ entities: parent: 2 - type: DeviceList devices: - - 22432 - - 22681 + - 22355 + - 22604 - uid: 122 components: - type: Transform @@ -35531,18 +35531,18 @@ entities: parent: 2 - type: DeviceList devices: - - 18167 - - 18145 - - 18131 - - 18177 - - 18197 - - 834 - - 22606 - - 18323 + - 18148 + - 18126 + - 18112 + - 18158 - 18178 - - 18284 - - 18315 - - 18366 + - 830 + - 22529 + - 18304 + - 18159 + - 18265 + - 18296 + - 18347 - uid: 123 components: - type: Transform @@ -35550,18 +35550,18 @@ entities: parent: 2 - type: DeviceList devices: - - 747 - - 22454 - - 18250 - - 18220 + - 743 + - 22377 + - 18231 + - 18201 + - 18181 + - 18135 + - 18143 + - 18149 + - 18308 + - 18314 + - 18191 - 18200 - - 18154 - - 18162 - - 18168 - - 18327 - - 18333 - - 18210 - - 18219 - uid: 124 components: - type: Transform @@ -35570,20 +35570,20 @@ entities: parent: 2 - type: DeviceList devices: + - 18198 + - 18168 + - 18101 - 18217 - - 18187 - - 18120 - - 18236 - - 18346 - - 18332 - - 22456 - - 22601 - - 836 - - 18250 - - 18220 - - 18200 - - 22602 - - 22455 + - 18327 + - 18313 + - 22379 + - 22524 + - 832 + - 18231 + - 18201 + - 18181 + - 22525 + - 22378 - uid: 125 components: - type: Transform @@ -35592,14 +35592,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22510 - - 801 - - 22647 - - 18225 + - 22433 + - 797 + - 22570 + - 18206 + - 18207 + - 18266 + - 18293 - 18226 - - 18285 - - 18312 - - 18245 - uid: 126 components: - type: Transform @@ -35608,43 +35608,43 @@ entities: parent: 2 - type: DeviceList devices: + - 800 + - 22441 - 804 - - 22518 - - 808 - - 22654 - - 809 - - 18034 - - 18029 - - 18031 - - uid: 38585 + - 22577 + - 805 + - 18016 + - 18011 + - 18013 + - uid: 38412 components: - type: Transform pos: -3.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39207 - - 39206 - - 39397 - - 39403 - - 38611 - - 39203 - - 39200 - - uid: 38586 + - 39034 + - 39033 + - 39224 + - 39230 + - 38438 + - 39030 + - 39027 + - uid: 38413 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,4.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 38611 - - 38612 - - 39400 - - 39405 - - 39199 - - 39202 - - 39201 + - 38438 + - 38439 + - 39227 + - 39232 + - 39026 + - 39029 + - 39028 - proto: AirAlarmElectronics entities: - uid: 127 @@ -35931,21 +35931,21 @@ entities: rot: 1.5707963267948966 rad pos: 78.5,3.5 parent: 2 - - uid: 38587 + - uid: 38414 components: - type: Transform pos: -12.5,11.5 - parent: 38584 - - uid: 38588 + parent: 38411 + - uid: 38415 components: - type: Transform pos: -10.5,2.5 - parent: 38584 - - uid: 38589 + parent: 38411 + - uid: 38416 components: - type: Transform pos: -10.5,9.5 - parent: 38584 + parent: 38411 - proto: AirlockArmoryGlassLocked entities: - uid: 176 @@ -36092,28 +36092,28 @@ entities: parent: 2 - proto: AirlockAtmosphericsLocked entities: - - uid: 199 + - uid: 198 components: - type: MetaData name: вход в атмосферную - type: Transform pos: -53.5,19.5 parent: 2 - - uid: 200 + - uid: 199 components: - type: MetaData name: вход в атмосферную - type: Transform pos: -52.5,19.5 parent: 2 - - uid: 201 + - uid: 200 components: - type: MetaData name: комната тестов атмосферы - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 202 + - uid: 201 components: - type: MetaData name: баня @@ -36121,83 +36121,83 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,57.5 parent: 2 - - uid: 203 + - uid: 202 components: - type: Transform pos: -44.5,51.5 parent: 2 - - uid: 204 + - uid: 203 components: - type: Transform pos: -42.5,51.5 parent: 2 - proto: AirlockBarLocked entities: - - uid: 205 + - uid: 204 components: - type: Transform pos: -8.5,45.5 parent: 2 - - uid: 206 + - uid: 205 components: - type: Transform pos: -4.5,37.5 parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 207 + - uid: 206 components: - type: Transform pos: 38.5,6.5 parent: 2 - - uid: 208 + - uid: 207 components: - type: Transform pos: 38.5,4.5 parent: 2 - proto: AirlockBrigLocked entities: - - uid: 209 + - uid: 208 components: - type: Transform pos: 52.5,-1.5 parent: 2 - - uid: 210 + - uid: 209 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-1.5 parent: 2 - - uid: 211 + - uid: 210 components: - type: Transform pos: 56.5,-1.5 parent: 2 - - uid: 212 + - uid: 211 components: - type: Transform pos: 51.5,-5.5 parent: 2 - - uid: 213 + - uid: 212 components: - type: Transform pos: 21.5,23.5 parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 214 + - uid: 213 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,4.5 parent: 2 - - uid: 215 + - uid: 214 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,12.5 parent: 2 - - uid: 216 + - uid: 215 components: - type: Transform rot: -1.5707963267948966 rad @@ -36205,141 +36205,141 @@ entities: parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 217 + - uid: 216 components: - type: Transform pos: 11.5,28.5 parent: 2 - - uid: 218 + - uid: 217 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,33.5 parent: 2 - - uid: 219 + - uid: 218 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 220 + - uid: 219 components: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 221 + - uid: 220 components: - type: Transform pos: 5.5,38.5 parent: 2 - - uid: 222 + - uid: 221 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,45.5 parent: 2 - - uid: 223 + - uid: 222 components: - type: Transform pos: 10.5,38.5 parent: 2 - proto: AirlockCargoLocked entities: - - uid: 224 + - uid: 223 components: - type: Transform pos: 12.5,36.5 parent: 2 - - uid: 225 + - uid: 224 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,52.5 parent: 2 - - uid: 226 + - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,53.5 parent: 2 - - uid: 227 + - uid: 226 components: - type: Transform pos: 12.5,35.5 parent: 2 - proto: AirlockChapelLocked entities: - - uid: 228 + - uid: 227 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-76.5 parent: 2 - - uid: 229 + - uid: 228 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-70.5 parent: 2 - - uid: 230 + - uid: 229 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-66.5 parent: 2 - - uid: 231 + - uid: 230 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-80.5 parent: 2 - - uid: 232 + - uid: 231 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-65.5 parent: 2 - - uid: 233 + - uid: 232 components: - type: Transform pos: -32.5,-71.5 parent: 2 - proto: AirlockChemistryLocked entities: - - uid: 234 + - uid: 233 components: - type: Transform pos: 9.5,-35.5 parent: 2 - proto: AirlockChiefEngineerLocked entities: - - uid: 235 + - uid: 234 components: - type: Transform pos: -120.5,40.5 parent: 2 - - uid: 236 + - uid: 235 components: - type: Transform pos: -120.5,39.5 parent: 2 - - uid: 237 + - uid: 236 components: - type: MetaData name: офис старшего инженера - type: Transform pos: -59.5,10.5 parent: 2 - - uid: 238 + - uid: 237 components: - type: Transform pos: -116.5,39.5 parent: 2 - - uid: 239 + - uid: 238 components: - type: Transform pos: -120.5,23.5 parent: 2 - - uid: 240 + - uid: 239 components: - type: MetaData desc: 'ОСТОРОЖНО: КРОВАТЬ' @@ -36347,135 +36347,135 @@ entities: - type: Transform pos: -59.5,6.5 parent: 2 - - uid: 241 + - uid: 240 components: - type: Transform pos: -119.5,20.5 parent: 2 - - uid: 242 + - uid: 241 components: - type: Transform pos: -117.5,20.5 parent: 2 - - uid: 243 + - uid: 242 components: - type: Transform pos: -116.5,40.5 parent: 2 - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 244 + - uid: 243 components: - type: Transform pos: 25.5,-43.5 parent: 2 - - uid: 245 + - uid: 244 components: - type: Transform pos: 19.5,-43.5 parent: 2 - - uid: 246 + - uid: 245 components: - type: Transform pos: 22.5,-49.5 parent: 2 - proto: AirlockCommandGlassLocked entities: - - uid: 247 + - uid: 246 components: - type: Transform pos: -13.5,14.5 parent: 2 - - uid: 248 + - uid: 247 components: - type: Transform pos: -16.5,15.5 parent: 2 - - uid: 249 + - uid: 248 components: - type: Transform pos: 12.5,15.5 parent: 2 - - uid: 250 + - uid: 249 components: - type: Transform pos: -13.5,15.5 parent: 2 - - uid: 251 + - uid: 250 components: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 252 + - uid: 251 components: - type: Transform pos: -16.5,14.5 parent: 2 - - uid: 253 + - uid: 252 components: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 254 + - uid: 253 components: - type: Transform pos: 15.5,15.5 parent: 2 - - uid: 255 + - uid: 254 components: - type: Transform pos: 15.5,14.5 parent: 2 - proto: AirlockCommandLocked entities: - - uid: 256 + - uid: 255 components: - type: MetaData name: питание мостика - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 257 + - uid: 256 components: - type: Transform pos: -72.5,3.5 parent: 2 - - uid: 258 + - uid: 257 components: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 259 + - uid: 258 components: - type: MetaData name: генератор гравитации - type: Transform pos: -71.5,9.5 parent: 2 - - uid: 260 + - uid: 259 components: - type: MetaData name: комната генератора гравитации - type: Transform pos: -71.5,13.5 parent: 2 - - uid: 261 + - uid: 260 components: - type: Transform pos: -35.5,17.5 parent: 2 - - uid: 262 + - uid: 261 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 - - uid: 263 + - uid: 262 components: - type: Transform pos: -9.5,12.5 parent: 2 - - uid: 264 + - uid: 263 components: - type: Transform rot: 3.141592653589793 rad @@ -36483,71 +36483,71 @@ entities: parent: 2 - proto: AirlockDetectiveGlassLocked entities: - - uid: 265 + - uid: 264 components: - type: Transform pos: 29.5,7.5 parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 266 + - uid: 265 components: - type: Transform pos: -61.5,1.5 parent: 2 - - uid: 267 + - uid: 266 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 268 + - uid: 267 components: - type: Transform pos: -58.5,55.5 parent: 2 - - uid: 269 + - uid: 268 components: - type: MetaData name: хранилище скафандров - type: Transform pos: -76.5,8.5 parent: 2 - - uid: 270 + - uid: 269 components: - type: MetaData name: комната дополнительного инженерного снаряжения - type: Transform pos: -57.5,16.5 parent: 2 - - uid: 271 + - uid: 270 components: - type: MetaData name: комната отдыха инженерии - type: Transform pos: -59.5,14.5 parent: 2 - - uid: 272 + - uid: 271 components: - type: MetaData name: комната ускорителя частиц - type: Transform pos: -55.5,-6.5 parent: 2 - - uid: 273 + - uid: 272 components: - type: MetaData name: комната ускорителем частиц - type: Transform pos: -57.5,-4.5 parent: 2 - - uid: 274 + - uid: 273 components: - type: MetaData name: комната ускорителя частиц - type: Transform pos: -57.5,-10.5 parent: 2 - - uid: 275 + - uid: 274 components: - type: MetaData desc: Where the yellow gloves and tool belts live. @@ -36555,45 +36555,45 @@ entities: - type: Transform pos: -50.5,-14.5 parent: 2 - - uid: 276 + - uid: 275 components: - type: MetaData name: комната ускорителя частиц - type: Transform pos: -55.5,-8.5 parent: 2 - - uid: 277 + - uid: 276 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,86.5 parent: 2 - - uid: 278 + - uid: 277 components: - type: MetaData name: комната СМЭС - type: Transform pos: -47.5,1.5 parent: 2 - - uid: 279 + - uid: 278 components: - type: MetaData name: северо-западные солнечные панели - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 280 + - uid: 279 components: - type: Transform pos: -10.5,-78.5 parent: 2 - - uid: 281 + - uid: 280 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,12.5 parent: 2 - - uid: 282 + - uid: 281 components: - type: Transform rot: -1.5707963267948966 rad @@ -36601,207 +36601,207 @@ entities: parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 283 + - uid: 282 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-30.5 parent: 2 - - uid: 285 + - uid: 283 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-15.5 parent: 2 - - uid: 287 + - uid: 284 components: - type: Transform pos: -64.5,1.5 parent: 2 - - uid: 288 + - uid: 285 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-46.5 parent: 2 - - uid: 289 + - uid: 286 components: - type: MetaData name: питание центрального коридора - type: Transform pos: 24.5,24.5 parent: 2 - - uid: 290 + - uid: 287 components: - type: MetaData name: инженерная - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 291 + - uid: 288 components: - type: MetaData name: питание верхней части северо-запада - type: Transform pos: -36.5,39.5 parent: 2 - - uid: 292 + - uid: 289 components: - type: MetaData name: юго-западное питание - type: Transform pos: -25.5,-77.5 parent: 2 - - uid: 293 + - uid: 290 components: - type: MetaData name: юго-западные солнечные панели - type: Transform pos: -40.5,-74.5 parent: 2 - - uid: 294 + - uid: 291 components: - type: Transform pos: -74.5,0.5 parent: 2 - - uid: 295 + - uid: 292 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 296 + - uid: 293 components: - type: MetaData name: хранилище скафандров - type: Transform pos: -76.5,12.5 parent: 2 - - uid: 297 + - uid: 294 components: - type: MetaData name: западное питание сервиса - type: Transform pos: -2.5,33.5 parent: 2 - - uid: 298 + - uid: 295 components: - type: Transform pos: 25.5,-22.5 parent: 2 - - uid: 299 + - uid: 296 components: - type: MetaData name: инженерная - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 300 + - uid: 297 components: - type: MetaData name: инженерная - type: Transform pos: -51.5,7.5 parent: 2 - - uid: 301 + - uid: 298 components: - type: Transform pos: -70.5,-4.5 parent: 2 - - uid: 302 + - uid: 299 components: - type: MetaData name: питание нижней части северо-запада - type: Transform pos: -42.5,39.5 parent: 2 - - uid: 303 + - uid: 300 components: - type: Transform pos: -68.5,-4.5 parent: 2 - - uid: 304 + - uid: 301 components: - type: MetaData name: инженерная - type: Transform pos: -51.5,3.5 parent: 2 - - uid: 305 + - uid: 302 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 306 + - uid: 303 components: - type: MetaData name: питание суда - type: Transform pos: 53.5,-9.5 parent: 2 - - uid: 307 + - uid: 304 components: - type: Transform pos: -26.5,26.5 parent: 2 - - uid: 308 + - uid: 305 components: - type: MetaData name: питание крыла дормиториев - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 309 + - uid: 306 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,87.5 parent: 2 - - uid: 310 + - uid: 307 components: - type: MetaData name: питание запада - type: Transform pos: -39.5,-2.5 parent: 2 - - uid: 311 + - uid: 308 components: - type: MetaData name: коридор к генератору гравитации - type: Transform pos: -66.5,15.5 parent: 2 - - uid: 312 + - uid: 309 components: - type: Transform pos: -76.5,2.5 parent: 2 - - uid: 313 + - uid: 310 components: - type: Transform pos: -35.5,7.5 parent: 2 - - uid: 314 + - uid: 311 components: - type: Transform pos: 9.5,76.5 parent: 2 - - uid: 315 + - uid: 312 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,75.5 parent: 2 - - uid: 316 + - uid: 313 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 317 + - uid: 314 components: - type: Transform pos: 7.5,58.5 parent: 2 - - uid: 318 + - uid: 315 components: - type: Transform rot: 3.141592653589793 rad @@ -36809,25 +36809,25 @@ entities: parent: 2 - proto: AirlockEVALocked entities: - - uid: 319 + - uid: 316 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 320 + - uid: 317 components: - type: Transform pos: -13.5,-10.5 parent: 2 - proto: AirlockExternalAtmosphericsLocked entities: - - uid: 321 + - uid: 318 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,25.5 parent: 2 - - uid: 322 + - uid: 319 components: - type: Transform rot: 1.5707963267948966 rad @@ -36835,13 +36835,13 @@ entities: parent: 2 - proto: AirlockExternalCargoLocked entities: - - uid: 323 + - uid: 320 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,41.5 parent: 2 - - uid: 324 + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad @@ -36849,7 +36849,7 @@ entities: parent: 2 - proto: AirlockExternalEngineeringLocked entities: - - uid: 325 + - uid: 322 components: - type: Transform rot: -1.5707963267948966 rad @@ -36857,141 +36857,141 @@ entities: parent: 2 - proto: AirlockExternalGlass entities: - - uid: 326 + - uid: 323 components: - type: Transform pos: -11.5,97.5 parent: 2 - - uid: 327 + - uid: 324 components: - type: Transform pos: -31.5,84.5 parent: 2 - - uid: 328 + - uid: 325 components: - type: Transform pos: -31.5,77.5 parent: 2 - - uid: 329 + - uid: 326 components: - type: Transform pos: -29.5,97.5 parent: 2 - - uid: 330 + - uid: 327 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,77.5 parent: 2 - - uid: 331 + - uid: 328 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,77.5 parent: 2 - - uid: 332 + - uid: 329 components: - type: Transform pos: -27.5,77.5 parent: 2 - - uid: 333 + - uid: 330 components: - type: Transform pos: -27.5,84.5 parent: 2 - - uid: 334 + - uid: 331 components: - type: Transform pos: 55.5,-40.5 parent: 2 - - uid: 335 + - uid: 332 components: - type: Transform pos: 53.5,-40.5 parent: 2 - - uid: 336 + - uid: 333 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-40.5 parent: 2 - - uid: 337 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,84.5 parent: 2 - - uid: 338 + - uid: 335 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,84.5 parent: 2 - - uid: 339 + - uid: 336 components: - type: Transform pos: 4.5,84.5 parent: 2 - - uid: 340 + - uid: 337 components: - type: Transform pos: 4.5,77.5 parent: 2 - - uid: 341 + - uid: 338 components: - type: Transform pos: 68.5,-40.5 parent: 2 - - uid: 342 + - uid: 339 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-82.5 parent: 2 - - uid: 343 + - uid: 340 components: - type: Transform pos: 2.5,-82.5 parent: 2 - - uid: 344 + - uid: 341 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 345 + - uid: 342 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 38590 + - uid: 38417 components: - type: Transform pos: 0.5,5.5 - parent: 38584 - - uid: 38591 + parent: 38411 + - uid: 38418 components: - type: Transform pos: -1.5,5.5 - parent: 38584 - - uid: 38592 + parent: 38411 + - uid: 38419 components: - type: Transform pos: 0.5,9.5 - parent: 38584 - - uid: 38593 + parent: 38411 + - uid: 38420 components: - type: Transform pos: -1.5,9.5 - parent: 38584 + parent: 38411 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 346 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,49.5 parent: 2 - - uid: 347 + - uid: 344 components: - type: Transform rot: -1.5707963267948966 rad @@ -36999,34 +36999,34 @@ entities: parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 348 + - uid: 345 components: - type: Transform pos: -45.5,56.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 350: + 347: - DoorStatus: DoorBolt - - uid: 349 + - uid: 346 components: - type: Transform pos: -58.5,65.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 351: + 348: - DoorStatus: DoorBolt - - uid: 350 + - uid: 347 components: - type: Transform pos: -45.5,58.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 348: + 345: - DoorStatus: DoorBolt - - uid: 351 + - uid: 348 components: - type: Transform rot: -1.5707963267948966 rad @@ -37034,9 +37034,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 349: + 346: - DoorStatus: DoorBolt - - uid: 352 + - uid: 349 components: - type: Transform rot: 1.5707963267948966 rad @@ -37044,44 +37044,44 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 353 + - uid: 350 components: - type: Transform pos: -53.5,54.5 parent: 2 - proto: AirlockExternalGlassLocked entities: - - uid: 354 + - uid: 351 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,91.5 parent: 2 - - uid: 355 + - uid: 352 components: - type: Transform pos: 92.5,27.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 357: + 354: - DoorStatus: DoorBolt - - uid: 356 + - uid: 353 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,91.5 parent: 2 - - uid: 357 + - uid: 354 components: - type: Transform pos: 92.5,24.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 355: + 352: - DoorStatus: DoorBolt - - uid: 358 + - uid: 355 components: - type: Transform rot: 1.5707963267948966 rad @@ -37089,49 +37089,49 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 359 + - uid: 356 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,84.5 parent: 2 - - uid: 360 + - uid: 357 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,77.5 parent: 2 - - uid: 361 + - uid: 358 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,77.5 parent: 2 - - uid: 362 + - uid: 359 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,77.5 parent: 2 - - uid: 363 + - uid: 360 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,84.5 parent: 2 - - uid: 364 + - uid: 361 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,77.5 parent: 2 - - uid: 365 + - uid: 362 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,84.5 parent: 2 - - uid: 366 + - uid: 363 components: - type: Transform rot: 1.5707963267948966 rad @@ -37139,47 +37139,47 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 367 + - uid: 364 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 368 + - uid: 365 components: - type: Transform pos: 2.5,-86.5 parent: 2 - - uid: 369 + - uid: 366 components: - type: Transform pos: -5.5,-86.5 parent: 2 - - uid: 370 + - uid: 367 components: - type: Transform pos: 4.5,-86.5 parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 371 + - uid: 368 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,21.5 parent: 2 - - uid: 372 + - uid: 369 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,17.5 parent: 2 - - uid: 373 + - uid: 370 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,99.5 parent: 2 - - uid: 374 + - uid: 371 components: - type: Transform rot: 3.141592653589793 rad @@ -37187,19 +37187,19 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 375 + - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,84.5 parent: 2 - - uid: 376 + - uid: 373 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,77.5 parent: 2 - - uid: 377 + - uid: 374 components: - type: Transform rot: -1.5707963267948966 rad @@ -37207,222 +37207,222 @@ entities: parent: 2 - type: Docking dockJointId: docking93271 - dockedWith: 38486 + dockedWith: 38313 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - - uid: 38485 + - uid: 38312 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 - parent: 38484 - - uid: 38486 + parent: 38311 + - uid: 38313 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 - parent: 38484 + parent: 38311 - type: Docking dockJointId: docking93271 - dockedWith: 377 + dockedWith: 374 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - proto: AirlockExternalLocked entities: - - uid: 378 + - uid: 375 components: - type: Transform pos: 13.5,78.5 parent: 2 - - uid: 379 + - uid: 376 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,89.5 parent: 2 - - uid: 380 + - uid: 377 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 381 + - uid: 378 components: - type: Transform pos: -75.5,-26.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 386: + 383: - DoorStatus: DoorBolt - - uid: 382 + - uid: 379 components: - type: Transform pos: -59.5,-16.5 parent: 2 - - uid: 383 + - uid: 380 components: - type: Transform pos: 18.5,87.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 392: + 389: - DoorStatus: DoorBolt - - uid: 384 + - uid: 381 components: - type: Transform pos: 57.5,-46.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 388: + 385: - DoorStatus: DoorBolt - - uid: 385 + - uid: 382 components: - type: Transform pos: -10.5,-82.5 parent: 2 - - uid: 386 + - uid: 383 components: - type: Transform pos: -78.5,-26.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 381: + 378: - DoorStatus: DoorBolt - - uid: 387 + - uid: 384 components: - type: Transform pos: -46.5,-74.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 389: + 386: - DoorStatus: DoorBolt - - uid: 388 + - uid: 385 components: - type: Transform pos: 59.5,-46.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 384: + 381: - DoorStatus: DoorBolt - - uid: 389 + - uid: 386 components: - type: Transform pos: -44.5,-74.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 387: + 384: - DoorStatus: DoorBolt - - uid: 390 + - uid: 387 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,59.5 parent: 2 - - uid: 391 + - uid: 388 components: - type: Transform pos: -42.5,-57.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 395: + 392: - DoorStatus: DoorBolt - - uid: 392 + - uid: 389 components: - type: Transform pos: 16.5,87.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 383: + 380: - DoorStatus: DoorBolt - - uid: 393 + - uid: 390 components: - type: Transform pos: -78.5,-10.5 parent: 2 - - uid: 394 + - uid: 391 components: - type: Transform pos: -81.5,-13.5 parent: 2 - - uid: 395 + - uid: 392 components: - type: Transform pos: -40.5,-57.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 391: + 388: - DoorStatus: DoorBolt - - uid: 396 + - uid: 393 components: - type: Transform pos: -81.5,-12.5 parent: 2 - - uid: 397 + - uid: 394 components: - type: Transform pos: -79.5,-10.5 parent: 2 - - uid: 398 + - uid: 395 components: - type: Transform pos: -79.5,-4.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 399: + 396: - DoorStatus: DoorBolt - - uid: 399 + - uid: 396 components: - type: Transform pos: -81.5,-2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 398: + 395: - DoorStatus: DoorBolt - - uid: 400 + - uid: 397 components: - type: Transform pos: -109.5,23.5 parent: 2 - - uid: 401 + - uid: 398 components: - type: Transform pos: -112.5,23.5 parent: 2 - - uid: 402 + - uid: 399 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,0.5 parent: 2 - - uid: 403 + - uid: 400 components: - type: Transform pos: 94.5,10.5 parent: 2 - proto: AirlockExternalShuttleLocked entities: - - uid: 404 + - uid: 401 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,78.5 parent: 2 - - uid: 405 + - uid: 402 components: - type: Transform rot: 1.5707963267948966 rad @@ -37430,20 +37430,20 @@ entities: parent: 2 - proto: AirlockExternalShuttleSyndicateLocked entities: - - uid: 38594 + - uid: 38421 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,19.5 - parent: 38584 + parent: 38411 - proto: AirlockFreezer entities: - - uid: 406 + - uid: 403 components: - type: Transform pos: 24.5,66.5 parent: 2 - - uid: 407 + - uid: 404 components: - type: Transform rot: -1.5707963267948966 rad @@ -37451,13 +37451,13 @@ entities: parent: 2 - proto: AirlockFreezerLocked entities: - - uid: 408 + - uid: 405 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,29.5 parent: 2 - - uid: 507 + - uid: 406 components: - type: Transform rot: 3.141592653589793 rad @@ -37465,381 +37465,381 @@ entities: parent: 2 - proto: AirlockGlass entities: - - uid: 409 + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 - - uid: 410 + - uid: 408 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-18.5 parent: 2 - - uid: 411 + - uid: 409 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-21.5 parent: 2 - - uid: 412 + - uid: 410 components: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 413 + - uid: 411 components: - type: Transform pos: 46.5,-17.5 parent: 2 - - uid: 414 + - uid: 412 components: - type: Transform pos: 73.5,-40.5 parent: 2 - - uid: 415 + - uid: 413 components: - type: Transform pos: -20.5,12.5 parent: 2 - - uid: 416 + - uid: 414 components: - type: Transform pos: 73.5,-47.5 parent: 2 - - uid: 417 + - uid: 415 components: - type: MetaData name: приемная Зоотехника - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 418 + - uid: 416 components: - type: Transform pos: -3.5,-12.5 parent: 2 - - uid: 419 + - uid: 417 components: - type: Transform pos: 24.5,-1.5 parent: 2 - - uid: 420 + - uid: 418 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 421 + - uid: 419 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,25.5 parent: 2 - - uid: 422 + - uid: 420 components: - type: Transform pos: -24.5,7.5 parent: 2 - - uid: 423 + - uid: 421 components: - type: Transform pos: -25.5,7.5 parent: 2 - - uid: 424 + - uid: 422 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 425 + - uid: 423 components: - type: Transform pos: -20.5,4.5 parent: 2 - - uid: 426 + - uid: 424 components: - type: Transform pos: -20.5,6.5 parent: 2 - - uid: 427 + - uid: 425 components: - type: Transform pos: -17.5,54.5 parent: 2 - - uid: 428 + - uid: 426 components: - type: Transform pos: -19.5,54.5 parent: 2 - - uid: 429 + - uid: 427 components: - type: Transform pos: 22.5,7.5 parent: 2 - - uid: 430 + - uid: 428 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 431 + - uid: 429 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,25.5 parent: 2 - - uid: 436 + - uid: 430 components: - type: Transform pos: -20.5,11.5 parent: 2 - - uid: 437 + - uid: 431 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 - - uid: 438 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-56.5 parent: 2 - - uid: 439 + - uid: 433 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-62.5 parent: 2 - - uid: 440 + - uid: 434 components: - type: Transform pos: 7.5,25.5 parent: 2 - - uid: 441 + - uid: 435 components: - type: Transform pos: 5.5,25.5 parent: 2 - - uid: 442 + - uid: 436 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-62.5 parent: 2 - - uid: 443 + - uid: 437 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-62.5 parent: 2 - - uid: 444 + - uid: 438 components: - type: Transform pos: 8.5,25.5 parent: 2 - - uid: 445 + - uid: 439 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-21.5 parent: 2 - - uid: 446 + - uid: 440 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-18.5 parent: 2 - - uid: 447 + - uid: 441 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-9.5 parent: 2 - - uid: 448 + - uid: 442 components: - type: Transform pos: 76.5,-18.5 parent: 2 - - uid: 449 + - uid: 443 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-2.5 parent: 2 - - uid: 450 + - uid: 444 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-21.5 parent: 2 - - uid: 451 + - uid: 445 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 452 + - uid: 446 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-21.5 parent: 2 - - uid: 453 + - uid: 447 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-1.5 parent: 2 - - uid: 454 + - uid: 448 components: - type: Transform pos: -13.5,50.5 parent: 2 - - uid: 455 + - uid: 449 components: - type: Transform pos: -31.5,3.5 parent: 2 - - uid: 456 + - uid: 450 components: - type: Transform pos: -13.5,48.5 parent: 2 - - uid: 457 + - uid: 451 components: - type: Transform pos: 4.5,25.5 parent: 2 - - uid: 458 + - uid: 452 components: - type: Transform pos: -17.5,25.5 parent: 2 - - uid: 459 + - uid: 453 components: - type: Transform pos: -32.5,3.5 parent: 2 - - uid: 460 + - uid: 454 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-56.5 parent: 2 - - uid: 461 + - uid: 455 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-42.5 parent: 2 - - uid: 462 + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,54.5 parent: 2 - - uid: 463 + - uid: 457 components: - type: Transform pos: -31.5,-9.5 parent: 2 - - uid: 464 + - uid: 458 components: - type: Transform pos: 15.5,-7.5 parent: 2 - - uid: 465 + - uid: 459 components: - type: Transform pos: 15.5,-8.5 parent: 2 - - uid: 466 + - uid: 460 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 467 + - uid: 461 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-39.5 parent: 2 - - uid: 468 + - uid: 462 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-7.5 parent: 2 - - uid: 469 + - uid: 463 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 2 - - uid: 470 + - uid: 464 components: - type: Transform pos: 15.5,-9.5 parent: 2 - - uid: 471 + - uid: 465 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-9.5 parent: 2 - - uid: 934 + - uid: 466 components: - type: Transform pos: 82.5,-18.5 parent: 2 - - uid: 1587 + - uid: 467 components: - type: Transform pos: 82.5,-21.5 parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 472 + - uid: 468 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,49.5 parent: 2 - - uid: 473 + - uid: 469 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,51.5 parent: 2 - - uid: 38595 + - uid: 38422 components: - type: Transform pos: -1.5,-11.5 - parent: 38584 - - uid: 38596 + parent: 38411 + - uid: 38423 components: - type: Transform pos: 0.5,-11.5 - parent: 38584 + parent: 38411 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 474 + - uid: 470 components: - type: Transform pos: -10.5,6.5 parent: 2 - - uid: 475 + - uid: 471 components: - type: Transform pos: -13.5,-4.5 parent: 2 - - uid: 476 + - uid: 472 components: - type: Transform pos: -9.5,-6.5 parent: 2 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 477 + - uid: 473 components: - type: Transform rot: 3.141592653589793 rad @@ -37847,26 +37847,26 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 478 + - uid: 474 components: - type: Transform pos: 37.5,20.5 parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 479 + - uid: 475 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,44.5 parent: 2 - - uid: 480 + - uid: 476 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,48.5 parent: 2 - - uid: 481 + - uid: 477 components: - type: Transform rot: -1.5707963267948966 rad @@ -37874,7 +37874,7 @@ entities: parent: 2 - proto: AirlockHydroponicsLocked entities: - - uid: 482 + - uid: 478 components: - type: Transform rot: 1.5707963267948966 rad @@ -37882,27 +37882,27 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 483 + - uid: 479 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,55.5 parent: 2 - - uid: 484 + - uid: 480 components: - type: Transform pos: -1.5,51.5 parent: 2 - proto: AirlockKitchenGlassLocked entities: - - uid: 485 + - uid: 481 components: - type: Transform pos: -29.5,39.5 parent: 2 - proto: AirlockKitchenLocked entities: - - uid: 486 + - uid: 482 components: - type: Transform rot: 3.141592653589793 rad @@ -37910,19 +37910,19 @@ entities: parent: 2 - proto: AirlockLawyerLocked entities: - - uid: 487 + - uid: 483 components: - type: Transform pos: 32.5,1.5 parent: 2 - - uid: 488 + - uid: 484 components: - type: Transform pos: 35.5,3.5 parent: 2 - proto: AirlockMaintAtmoLocked entities: - - uid: 489 + - uid: 485 components: - type: MetaData name: атмосферная @@ -37931,27 +37931,27 @@ entities: parent: 2 - proto: AirlockMaintBarLocked entities: - - uid: 490 + - uid: 486 components: - type: Transform pos: -0.5,40.5 parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 491 + - uid: 487 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,55.5 parent: 2 - - uid: 492 + - uid: 488 components: - type: MetaData name: служебное помещение - type: Transform pos: 3.5,40.5 parent: 2 - - uid: 493 + - uid: 489 components: - type: Transform rot: -1.5707963267948966 rad @@ -37959,19 +37959,19 @@ entities: parent: 2 - proto: AirlockMaintChapelLocked entities: - - uid: 494 + - uid: 490 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-62.5 parent: 2 - - uid: 495 + - uid: 491 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-63.5 parent: 2 - - uid: 496 + - uid: 492 components: - type: Transform rot: 3.141592653589793 rad @@ -37979,7 +37979,7 @@ entities: parent: 2 - proto: AirlockMaintChemLocked entities: - - uid: 497 + - uid: 493 components: - type: Transform rot: 1.5707963267948966 rad @@ -37987,7 +37987,7 @@ entities: parent: 2 - proto: AirlockMaintCommandLocked entities: - - uid: 498 + - uid: 494 components: - type: Transform rot: -1.5707963267948966 rad @@ -37995,30 +37995,30 @@ entities: parent: 2 - proto: AirlockMaintCommonLocked entities: - - uid: 499 + - uid: 495 components: - type: Transform pos: -35.5,58.5 parent: 2 - - uid: 500 + - uid: 496 components: - type: Transform pos: -37.5,58.5 parent: 2 - proto: AirlockMaintEngiLocked entities: - - uid: 501 + - uid: 497 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,73.5 parent: 2 - - uid: 502 + - uid: 498 components: - type: Transform pos: 76.5,-44.5 parent: 2 - - uid: 503 + - uid: 499 components: - type: MetaData name: инженерная @@ -38027,21 +38027,21 @@ entities: parent: 2 - proto: AirlockMaintGlass entities: - - uid: 504 + - uid: 500 components: - type: Transform pos: -48.5,3.5 parent: 2 - proto: AirlockMaintHydroLocked entities: - - uid: 505 + - uid: 501 components: - type: Transform pos: -37.5,44.5 parent: 2 - proto: AirlockMaintJanitorLocked entities: - - uid: 506 + - uid: 502 components: - type: Transform rot: 3.141592653589793 rad @@ -38049,126 +38049,126 @@ entities: parent: 2 - proto: AirlockMaintLawyerLocked entities: - - uid: 508 + - uid: 503 components: - type: Transform pos: 36.5,-2.5 parent: 2 - proto: AirlockMaintLocked entities: - - uid: 509 + - uid: 504 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-32.5 parent: 2 - - uid: 510 + - uid: 505 components: - type: Transform pos: -27.5,59.5 parent: 2 - - uid: 511 + - uid: 506 components: - type: Transform pos: 29.5,-55.5 parent: 2 - - uid: 512 + - uid: 507 components: - type: Transform pos: -30.5,7.5 parent: 2 - - uid: 513 + - uid: 508 components: - type: Transform pos: -25.5,16.5 parent: 2 - - uid: 514 + - uid: 509 components: - type: Transform pos: 54.5,-28.5 parent: 2 - - uid: 515 + - uid: 510 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,68.5 parent: 2 - - uid: 516 + - uid: 511 components: - type: Transform pos: 1.5,29.5 parent: 2 - - uid: 517 + - uid: 512 components: - type: Transform pos: 25.5,-55.5 parent: 2 - - uid: 518 + - uid: 513 components: - type: Transform pos: -27.5,-16.5 parent: 2 - - uid: 519 + - uid: 514 components: - type: Transform pos: -41.5,2.5 parent: 2 - - uid: 520 + - uid: 515 components: - type: Transform pos: -42.5,-41.5 parent: 2 - - uid: 521 + - uid: 516 components: - type: Transform pos: -41.5,28.5 parent: 2 - - uid: 522 + - uid: 517 components: - type: Transform pos: -44.5,-34.5 parent: 2 - - uid: 523 + - uid: 518 components: - type: Transform pos: 1.5,41.5 parent: 2 - - uid: 524 + - uid: 519 components: - type: Transform pos: -39.5,23.5 parent: 2 - - uid: 525 + - uid: 520 components: - type: Transform pos: -36.5,56.5 parent: 2 - - uid: 526 + - uid: 521 components: - type: MetaData name: сад технических помещений - type: Transform pos: -41.5,34.5 parent: 2 - - uid: 527 + - uid: 522 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,71.5 parent: 2 - - uid: 528 + - uid: 523 components: - type: MetaData name: отходы - type: Transform pos: 22.5,56.5 parent: 2 - - uid: 529 + - uid: 524 components: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 530 + - uid: 525 components: - type: MetaData desc: 'Табличка на двери гласит: «Гостевой офис», и именно такой она была до того, как к ней добрались ассистенты.' @@ -38176,76 +38176,76 @@ entities: - type: Transform pos: 11.5,61.5 parent: 2 - - uid: 531 + - uid: 526 components: - type: MetaData name: вспомогательная хирургия - type: Transform pos: 50.5,-32.5 parent: 2 - - uid: 532 + - uid: 527 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - uid: 533 + - uid: 528 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-41.5 parent: 2 - - uid: 534 + - uid: 529 components: - type: MetaData name: южно-восточная строй площадка - type: Transform pos: 47.5,-45.5 parent: 2 - - uid: 535 + - uid: 530 components: - type: Transform pos: 42.5,-41.5 parent: 2 - - uid: 536 + - uid: 531 components: - type: Transform pos: 0.5,33.5 parent: 2 - - uid: 537 + - uid: 532 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,66.5 parent: 2 - - uid: 538 + - uid: 533 components: - type: MetaData name: свободный офис - type: Transform pos: -36.5,27.5 parent: 2 - - uid: 539 + - uid: 534 components: - type: MetaData name: сад технических помещений - type: Transform pos: -36.5,32.5 parent: 2 - - uid: 540 + - uid: 535 components: - type: MetaData name: западный кабинет уборщика - type: Transform pos: -75.5,-30.5 parent: 2 - - uid: 541 + - uid: 536 components: - type: MetaData name: южно-восточная строй площадка - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 542 + - uid: 537 components: - type: MetaData desc: 'Табличка на двери гласит: «Гостевой офис», и именно такой она была до того, как к ней добрались ассистенты.' @@ -38253,219 +38253,219 @@ entities: - type: Transform pos: 17.5,57.5 parent: 2 - - uid: 543 + - uid: 538 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 544 + - uid: 539 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 545 + - uid: 540 components: - type: Transform pos: 25.5,-18.5 parent: 2 - - uid: 546 + - uid: 541 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 547 + - uid: 542 components: - type: Transform pos: -21.5,26.5 parent: 2 - - uid: 548 + - uid: 543 components: - type: Transform pos: -25.5,-19.5 parent: 2 - - uid: 549 + - uid: 544 components: - type: Transform pos: -21.5,55.5 parent: 2 - - uid: 550 + - uid: 545 components: - type: MetaData name: незавершенный офисный театральный модуль - type: Transform pos: 50.5,-48.5 parent: 2 - - uid: 551 + - uid: 546 components: - type: MetaData name: вспомогательная хирургия - type: Transform pos: 42.5,-32.5 parent: 2 - - uid: 552 + - uid: 547 components: - type: MetaData name: библиотека - type: Transform pos: -35.5,-3.5 parent: 2 - - uid: 553 + - uid: 548 components: - type: Transform pos: 4.5,47.5 parent: 2 - - uid: 554 + - uid: 549 components: - type: Transform pos: -0.5,48.5 parent: 2 - - uid: 555 + - uid: 550 components: - type: MetaData name: незавершенный театральный модуль - type: Transform pos: 38.5,-52.5 parent: 2 - - uid: 556 + - uid: 551 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,25.5 parent: 2 - - uid: 557 + - uid: 552 components: - type: Transform pos: -75.5,-19.5 parent: 2 - - uid: 558 + - uid: 553 components: - type: Transform pos: -41.5,24.5 parent: 2 - - uid: 559 + - uid: 554 components: - type: Transform pos: 6.5,51.5 parent: 2 - - uid: 560 + - uid: 555 components: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 561 + - uid: 556 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-62.5 parent: 2 - - uid: 562 + - uid: 557 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 563 + - uid: 558 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 564 + - uid: 559 components: - type: Transform pos: 12.5,-55.5 parent: 2 - - uid: 565 + - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,24.5 parent: 2 - - uid: 566 + - uid: 561 components: - type: Transform pos: -20.5,17.5 parent: 2 - - uid: 567 + - uid: 562 components: - type: Transform pos: 2.5,-54.5 parent: 2 - - uid: 568 + - uid: 563 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-50.5 parent: 2 - - uid: 569 + - uid: 564 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-55.5 parent: 2 - - uid: 570 + - uid: 565 components: - type: Transform pos: -30.5,59.5 parent: 2 - - uid: 571 + - uid: 566 components: - type: Transform pos: 42.5,-7.5 parent: 2 - - uid: 572 + - uid: 567 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,67.5 parent: 2 - - uid: 573 + - uid: 568 components: - type: Transform pos: 46.5,-12.5 parent: 2 - - uid: 574 + - uid: 569 components: - type: Transform pos: 33.5,-5.5 parent: 2 - - uid: 575 + - uid: 570 components: - type: Transform pos: 54.5,-10.5 parent: 2 - - uid: 576 + - uid: 571 components: - type: Transform pos: -46.5,-41.5 parent: 2 - - uid: 577 + - uid: 572 components: - type: Transform pos: 4.5,57.5 parent: 2 - - uid: 578 + - uid: 573 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,70.5 parent: 2 - - uid: 579 + - uid: 574 components: - type: Transform pos: -29.5,-60.5 parent: 2 - - uid: 580 + - uid: 575 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-58.5 parent: 2 - - uid: 581 + - uid: 576 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-5.5 parent: 2 - - uid: 41042 + - uid: 577 components: - type: Transform rot: -1.5707963267948966 rad @@ -38473,77 +38473,77 @@ entities: parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 582 + - uid: 578 components: - type: Transform pos: 17.5,-53.5 parent: 2 - - uid: 583 + - uid: 579 components: - type: Transform pos: 31.5,-53.5 parent: 2 - - uid: 584 + - uid: 580 components: - type: Transform pos: 39.5,-34.5 parent: 2 - - uid: 585 + - uid: 581 components: - type: Transform pos: 33.5,-22.5 parent: 2 - proto: AirlockMaintRnDLocked entities: - - uid: 586 + - uid: 582 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-58.5 parent: 2 - - uid: 587 + - uid: 583 components: - type: Transform pos: -47.5,-22.5 parent: 2 - - uid: 588 + - uid: 584 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 - - uid: 589 + - uid: 585 components: - type: Transform pos: -22.5,-22.5 parent: 2 - proto: AirlockMaintRnDMedLocked entities: - - uid: 590 + - uid: 586 components: - type: Transform pos: 37.5,-24.5 parent: 2 - - uid: 591 + - uid: 587 components: - type: Transform pos: 4.5,-41.5 parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 592 + - uid: 588 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,60.5 parent: 2 - - uid: 593 + - uid: 589 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-56.5 parent: 2 - - uid: 594 + - uid: 590 components: - type: Transform rot: 3.141592653589793 rad @@ -38551,13 +38551,13 @@ entities: parent: 2 - proto: AirlockMaintTheatreLocked entities: - - uid: 595 + - uid: 591 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,30.5 parent: 2 - - uid: 596 + - uid: 592 components: - type: Transform rot: 3.141592653589793 rad @@ -38565,166 +38565,166 @@ entities: parent: 2 - proto: AirlockMedicalGlass entities: - - uid: 597 + - uid: 593 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-25.5 parent: 2 - - uid: 598 + - uid: 594 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-24.5 parent: 2 - - uid: 38597 + - uid: 38424 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-0.5 - parent: 38584 + parent: 38411 - proto: AirlockMedicalGlassLocked entities: - - uid: 599 + - uid: 595 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 600 + - uid: 596 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,66.5 parent: 2 - - uid: 601 + - uid: 597 components: - type: Transform pos: 15.5,-34.5 parent: 2 - - uid: 602 + - uid: 598 components: - type: Transform pos: 23.5,-28.5 parent: 2 - - uid: 603 + - uid: 599 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 - - uid: 604 + - uid: 600 components: - type: Transform pos: 29.5,-27.5 parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 605 + - uid: 601 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-42.5 parent: 2 - - uid: 606 + - uid: 602 components: - type: Transform pos: 13.5,-46.5 parent: 2 - - uid: 607 + - uid: 603 components: - type: Transform pos: 29.5,-49.5 parent: 2 - - uid: 608 + - uid: 604 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 609 + - uid: 605 components: - type: Transform pos: 29.5,-43.5 parent: 2 - - uid: 610 + - uid: 606 components: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 611 + - uid: 607 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 - - uid: 612 + - uid: 608 components: - type: Transform pos: 15.5,-43.5 parent: 2 - - uid: 613 + - uid: 609 components: - type: Transform pos: 29.5,-39.5 parent: 2 - - uid: 614 + - uid: 610 components: - type: Transform pos: 27.5,-53.5 parent: 2 - proto: AirlockMedicalScienceGlassLocked entities: - - uid: 615 + - uid: 611 components: - type: Transform pos: 9.5,-41.5 parent: 2 - proto: AirlockMedicalScienceLocked entities: - - uid: 616 + - uid: 612 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-39.5 parent: 2 - - uid: 617 + - uid: 613 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 618 + - uid: 614 components: - type: Transform pos: 1.5,-50.5 parent: 2 - - uid: 619 + - uid: 615 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 620 + - uid: 616 components: - type: Transform pos: 10.5,-56.5 parent: 2 - - uid: 621 + - uid: 617 components: - type: Transform pos: 15.5,-38.5 parent: 2 - - uid: 622 + - uid: 618 components: - type: Transform pos: 10.5,-53.5 parent: 2 - proto: AirlockQuartermasterLocked entities: - - uid: 623 + - uid: 619 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,36.5 parent: 2 - - uid: 624 + - uid: 620 components: - type: Transform rot: -1.5707963267948966 rad @@ -38732,7 +38732,7 @@ entities: parent: 2 - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 625 + - uid: 621 components: - type: Transform rot: -1.5707963267948966 rad @@ -38740,19 +38740,19 @@ entities: parent: 2 - proto: AirlockResearchDirectorLocked entities: - - uid: 626 + - uid: 622 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-44.5 parent: 2 - - uid: 627 + - uid: 623 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-39.5 parent: 2 - - uid: 628 + - uid: 624 components: - type: Transform rot: -1.5707963267948966 rad @@ -38760,25 +38760,25 @@ entities: parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 629 + - uid: 625 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,31.5 parent: 2 - - uid: 630 + - uid: 626 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,29.5 parent: 2 - - uid: 631 + - uid: 627 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,30.5 parent: 2 - - uid: 632 + - uid: 628 components: - type: Transform rot: -1.5707963267948966 rad @@ -38786,25 +38786,25 @@ entities: parent: 2 - proto: AirlockSalvageLocked entities: - - uid: 633 + - uid: 629 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,33.5 parent: 2 - - uid: 634 + - uid: 630 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,29.5 parent: 2 - - uid: 635 + - uid: 631 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,33.5 parent: 2 - - uid: 636 + - uid: 632 components: - type: Transform rot: -1.5707963267948966 rad @@ -38812,43 +38812,43 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 637 + - uid: 633 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-42.5 parent: 2 - - uid: 638 + - uid: 634 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 - - uid: 639 + - uid: 635 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-45.5 parent: 2 - - uid: 640 + - uid: 636 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-38.5 parent: 2 - - uid: 641 + - uid: 637 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-36.5 parent: 2 - - uid: 642 + - uid: 638 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-44.5 parent: 2 - - uid: 643 + - uid: 639 components: - type: Transform rot: -1.5707963267948966 rad @@ -38856,118 +38856,118 @@ entities: parent: 2 - proto: AirlockScienceLocked entities: - - uid: 644 + - uid: 640 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-42.5 parent: 2 - - uid: 645 + - uid: 641 components: - type: Transform pos: -12.5,-32.5 parent: 2 - - uid: 646 + - uid: 642 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-54.5 parent: 2 - - uid: 647 + - uid: 643 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 648 + - uid: 644 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-36.5 parent: 2 - - uid: 649 + - uid: 645 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 650 + - uid: 646 components: - type: MetaData name: кладовая атмосферы ксенобиологии - type: Transform pos: -45.5,-23.5 parent: 2 - - uid: 651 + - uid: 647 components: - type: MetaData name: тестовый полигон токсинов - type: Transform pos: -35.5,-52.5 parent: 2 - - uid: 652 + - uid: 648 components: - type: MetaData name: ксенобиология - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 653 + - uid: 649 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-39.5 parent: 2 - - uid: 654 + - uid: 650 components: - type: Transform pos: -14.5,-28.5 parent: 2 - - uid: 655 + - uid: 651 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-40.5 parent: 2 - - uid: 656 + - uid: 652 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 2 - - uid: 657 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-44.5 parent: 2 - - uid: 658 + - uid: 654 components: - type: Transform pos: -12.5,-28.5 parent: 2 - - uid: 659 + - uid: 655 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - uid: 660 + - uid: 656 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-36.5 parent: 2 - - uid: 661 + - uid: 657 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-48.5 parent: 2 - - uid: 662 + - uid: 658 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 - - uid: 663 + - uid: 659 components: - type: Transform rot: 1.5707963267948966 rad @@ -38975,522 +38975,522 @@ entities: parent: 2 - proto: AirlockSecurityGlass entities: - - uid: 664 + - uid: 660 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 665 + - uid: 661 components: - type: Transform pos: 33.5,4.5 parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 666 + - uid: 662 components: - type: Transform pos: 65.5,-1.5 parent: 2 - - uid: 667 + - uid: 663 components: - type: Transform pos: 49.5,16.5 parent: 2 - - uid: 668 + - uid: 664 components: - type: Transform pos: 38.5,8.5 parent: 2 - - uid: 669 + - uid: 665 components: - type: Transform pos: 57.5,20.5 parent: 2 - - uid: 670 + - uid: 666 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-62.5 parent: 2 - - uid: 671 + - uid: 667 components: - type: Transform pos: 61.5,-1.5 parent: 2 - - uid: 672 + - uid: 668 components: - type: Transform pos: 68.5,1.5 parent: 2 - - uid: 673 + - uid: 669 components: - type: Transform pos: 71.5,-0.5 parent: 2 - - uid: 674 + - uid: 670 components: - type: Transform pos: -23.5,-0.5 parent: 2 - - uid: 675 + - uid: 671 components: - type: Transform pos: 71.5,1.5 parent: 2 - - uid: 676 + - uid: 672 components: - type: Transform pos: 68.5,-0.5 parent: 2 - - uid: 677 + - uid: 673 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 678 + - uid: 674 components: - type: Transform pos: 64.5,-3.5 parent: 2 - - uid: 679 + - uid: 675 components: - type: MetaData name: медицинская комната брига - type: Transform pos: 71.5,13.5 parent: 2 - - uid: 680 + - uid: 676 components: - type: Transform pos: 72.5,-3.5 parent: 2 - - uid: 681 + - uid: 677 components: - type: Transform pos: 51.5,14.5 parent: 2 - - uid: 682 + - uid: 678 components: - type: Transform pos: 36.5,10.5 parent: 2 - - uid: 683 + - uid: 679 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 684 + - uid: 680 components: - type: MetaData name: приёмная перманентной тюрьмы - type: Transform pos: 73.5,4.5 parent: 2 - - uid: 685 + - uid: 681 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,64.5 parent: 2 - - uid: 686 + - uid: 682 components: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 687 + - uid: 683 components: - type: Transform pos: -48.5,9.5 parent: 2 - - uid: 688 + - uid: 684 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,59.5 parent: 2 - - uid: 689 + - uid: 685 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-74.5 parent: 2 - - uid: 690 + - uid: 686 components: - type: Transform pos: 60.5,25.5 parent: 2 - - uid: 691 + - uid: 687 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-66.5 parent: 2 - - uid: 692 + - uid: 688 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-65.5 parent: 2 - - uid: 693 + - uid: 689 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-76.5 parent: 2 - - uid: 694 + - uid: 690 components: - type: Transform pos: 13.5,33.5 parent: 2 - - uid: 695 + - uid: 691 components: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 696 + - uid: 692 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-75.5 parent: 2 - - uid: 697 + - uid: 693 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-74.5 parent: 2 - - uid: 698 + - uid: 694 components: - type: Transform pos: -16.5,-23.5 parent: 2 - - uid: 699 + - uid: 695 components: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 700 + - uid: 696 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 701 + - uid: 697 components: - type: Transform pos: -20.5,-25.5 parent: 2 - - uid: 702 + - uid: 698 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-78.5 parent: 2 - - uid: 703 + - uid: 699 components: - type: Transform pos: -44.5,9.5 parent: 2 - - uid: 704 + - uid: 700 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,1.5 parent: 2 - - uid: 705 + - uid: 701 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-3.5 parent: 2 - - uid: 706 + - uid: 702 components: - type: Transform pos: 92.5,8.5 parent: 2 - - uid: 707 + - uid: 703 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 708 + - uid: 704 components: - type: Transform pos: 40.5,10.5 parent: 2 - - uid: 709 + - uid: 705 components: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 710 + - uid: 706 components: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 711 + - uid: 707 components: - type: Transform pos: 45.5,8.5 parent: 2 - - uid: 712 + - uid: 708 components: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 38487 + - uid: 38314 components: - type: Transform pos: 1.5,2.5 - parent: 38484 - - uid: 38598 + parent: 38311 + - uid: 38425 components: - type: Transform pos: 2.5,3.5 - parent: 38584 + parent: 38411 - proto: AirlockSecurityLawyerGlassLocked entities: - - uid: 713 + - uid: 709 components: - type: Transform pos: 30.5,3.5 parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 714 + - uid: 710 components: - type: Transform pos: -47.5,7.5 parent: 2 - - uid: 715 + - uid: 711 components: - type: Transform pos: 48.5,23.5 parent: 2 - - uid: 716 + - uid: 712 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-72.5 parent: 2 - - uid: 717 + - uid: 713 components: - type: Transform pos: 52.5,20.5 parent: 2 - - uid: 718 + - uid: 714 components: - type: MetaData name: хранилище скафандров - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 719 + - uid: 715 components: - type: Transform pos: 83.5,11.5 parent: 2 - - uid: 720 + - uid: 716 components: - type: Transform pos: 55.5,17.5 parent: 2 - - uid: 721 + - uid: 717 components: - type: MetaData name: хранилище скафандров - type: Transform pos: 75.5,9.5 parent: 2 - - uid: 722 + - uid: 718 components: - type: MetaData name: карцер смертника - type: Transform pos: 71.5,18.5 parent: 2 - - uid: 723 + - uid: 719 components: - type: MetaData name: комната казни - type: Transform pos: 73.5,20.5 parent: 2 - - uid: 724 + - uid: 720 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 725 + - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-64.5 parent: 2 - - uid: 726 + - uid: 722 components: - type: Transform pos: 94.5,13.5 parent: 2 - - uid: 727 + - uid: 723 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,26.5 parent: 2 - - uid: 728 + - uid: 724 components: - type: Transform pos: 58.5,2.5 parent: 2 - - uid: 729 + - uid: 725 components: - type: Transform pos: 62.5,2.5 parent: 2 - - uid: 730 + - uid: 726 components: - type: Transform pos: 66.5,2.5 parent: 2 - - uid: 38599 + - uid: 38426 components: - type: Transform pos: 6.5,1.5 - parent: 38584 - - uid: 38600 + parent: 38411 + - uid: 38427 components: - type: Transform pos: -1.5,-6.5 - parent: 38584 - - uid: 38601 + parent: 38411 + - uid: 38428 components: - type: Transform pos: 0.5,-6.5 - parent: 38584 - - uid: 38602 + parent: 38411 + - uid: 38429 components: - type: Transform pos: 8.5,-4.5 - parent: 38584 - - uid: 38603 + parent: 38411 + - uid: 38430 components: - type: Transform pos: 4.5,-0.5 - parent: 38584 - - uid: 38604 + parent: 38411 + - uid: 38431 components: - type: Transform pos: 4.5,-6.5 - parent: 38584 - - uid: 38605 + parent: 38411 + - uid: 38432 components: - type: Transform pos: 2.5,-2.5 - parent: 38584 - - uid: 38606 + parent: 38411 + - uid: 38433 components: - type: Transform pos: 0.5,-0.5 - parent: 38584 - - uid: 38607 + parent: 38411 + - uid: 38434 components: - type: Transform pos: -1.5,-0.5 - parent: 38584 - - uid: 38608 + parent: 38411 + - uid: 38435 components: - type: Transform pos: -3.5,-4.5 - parent: 38584 + parent: 38411 - proto: AirlockServiceGlassLocked entities: - - uid: 731 + - uid: 727 components: - type: Transform pos: -20.5,20.5 parent: 2 - - uid: 732 + - uid: 728 components: - type: Transform pos: -2.5,-15.5 parent: 2 - proto: AirlockServiceLocked entities: - - uid: 733 + - uid: 729 components: - type: Transform pos: -24.5,18.5 parent: 2 - - uid: 734 + - uid: 730 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 735 + - uid: 731 components: - type: Transform pos: -23.5,-9.5 parent: 2 - proto: AirlockSyndicateGlassLocked entities: - - uid: 38609 + - uid: 38436 components: - type: Transform pos: -17.5,33.5 - parent: 38584 + parent: 38411 - proto: AirlockSyndicateLocked entities: - - uid: 38610 + - uid: 38437 components: - type: Transform pos: -21.5,29.5 - parent: 38584 + parent: 38411 - proto: AirlockTheatreLocked entities: - - uid: 736 + - uid: 732 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,33.5 parent: 2 - - uid: 737 + - uid: 733 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,25.5 parent: 2 - - uid: 738 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,27.5 parent: 2 - - uid: 739 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,51.5 parent: 2 - - uid: 740 + - uid: 736 components: - type: Transform pos: -3.5,47.5 parent: 2 - - uid: 741 + - uid: 737 components: - type: Transform pos: -5.5,51.5 parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 742 + - uid: 738 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-69.5 parent: 2 - - uid: 743 + - uid: 739 components: - type: Transform rot: 1.5707963267948966 rad @@ -39498,13 +39498,13 @@ entities: parent: 2 - proto: AirlockVirologyLocked entities: - - uid: 744 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-58.5 parent: 2 - - uid: 745 + - uid: 741 components: - type: Transform rot: 1.5707963267948966 rad @@ -39512,7 +39512,7 @@ entities: parent: 2 - proto: AirSensor entities: - - uid: 746 + - uid: 742 components: - type: Transform rot: 3.141592653589793 rad @@ -39521,7 +39521,7 @@ entities: - type: DeviceNetwork deviceLists: - 104 - - uid: 747 + - uid: 743 components: - type: Transform rot: 3.141592653589793 rad @@ -39529,9 +39529,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17959 + - 17941 - 123 - - uid: 748 + - uid: 744 components: - type: Transform rot: 3.141592653589793 rad @@ -39539,17 +39539,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18009 - - uid: 749 + - 17991 + - uid: 745 components: - type: Transform pos: -61.5,57.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17947 + - 17929 - 58 - - uid: 750 + - uid: 746 components: - type: Transform rot: 1.5707963267948966 rad @@ -39557,15 +39557,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 751 + - uid: 747 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-11.5 parent: 2 - - uid: 752 + - uid: 748 components: - type: Transform rot: 1.5707963267948966 rad @@ -39574,7 +39574,7 @@ entities: - type: DeviceNetwork deviceLists: - 40 - - uid: 753 + - uid: 749 components: - type: Transform rot: -1.5707963267948966 rad @@ -39582,18 +39582,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 + - 17915 - 64 - - uid: 754 + - uid: 750 components: - type: Transform pos: -23.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17934 + - 17916 - 53 - - uid: 755 + - uid: 751 components: - type: Transform rot: -1.5707963267948966 rad @@ -39601,14 +39601,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17996 + - 17978 - 102 - - uid: 756 + - uid: 752 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 757 + - uid: 753 components: - type: Transform rot: 1.5707963267948966 rad @@ -39616,9 +39616,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17973 + - 17955 - 79 - - uid: 758 + - uid: 754 components: - type: Transform pos: -16.5,-57.5 @@ -39626,7 +39626,7 @@ entities: - type: DeviceNetwork deviceLists: - 110 - - uid: 759 + - uid: 755 components: - type: Transform pos: -7.5,-50.5 @@ -39634,12 +39634,12 @@ entities: - type: DeviceNetwork deviceLists: - 109 - - uid: 760 + - uid: 756 components: - type: Transform pos: -8.5,-46.5 parent: 2 - - uid: 761 + - uid: 757 components: - type: Transform pos: -4.5,-41.5 @@ -39647,61 +39647,61 @@ entities: - type: DeviceNetwork deviceLists: - 109 - - uid: 762 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,19.5 parent: 2 - - uid: 763 + - uid: 759 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,25.5 parent: 2 - - uid: 764 + - uid: 760 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,43.5 parent: 2 - - uid: 765 + - uid: 761 components: - type: Transform pos: -118.5,45.5 parent: 2 - - uid: 766 + - uid: 762 components: - type: Transform pos: -115.5,41.5 parent: 2 - - uid: 767 + - uid: 763 components: - type: Transform pos: -121.5,41.5 parent: 2 - - uid: 768 + - uid: 764 components: - type: Transform pos: -121.5,22.5 parent: 2 - - uid: 769 + - uid: 765 components: - type: Transform pos: -115.5,22.5 parent: 2 - - uid: 770 + - uid: 766 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,6.5 parent: 2 - - uid: 771 + - uid: 767 components: - type: Transform pos: 69.5,-44.5 parent: 2 - - uid: 772 + - uid: 768 components: - type: Transform pos: 83.5,9.5 @@ -39709,7 +39709,7 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 773 + - uid: 769 components: - type: Transform pos: 88.5,13.5 @@ -39717,7 +39717,7 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 774 + - uid: 770 components: - type: Transform pos: 92.5,22.5 @@ -39725,16 +39725,16 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 775 + - uid: 771 components: - type: Transform pos: -13.5,30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17965 + - 17947 - 71 - - uid: 776 + - uid: 772 components: - type: Transform rot: 3.141592653589793 rad @@ -39742,9 +39742,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 777 + - uid: 773 components: - type: Transform rot: 3.141592653589793 rad @@ -39753,7 +39753,7 @@ entities: - type: DeviceNetwork deviceLists: - 42 - - uid: 778 + - uid: 774 components: - type: Transform rot: 3.141592653589793 rad @@ -39762,7 +39762,7 @@ entities: - type: DeviceNetwork deviceLists: - 63 - - uid: 779 + - uid: 775 components: - type: Transform rot: 3.141592653589793 rad @@ -39770,8 +39770,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - uid: 780 + - 17932 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad @@ -39779,9 +39779,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17951 + - 17933 - 37 - - uid: 781 + - uid: 777 components: - type: Transform rot: 3.141592653589793 rad @@ -39789,9 +39789,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18007 + - 17989 - 65 - - uid: 782 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad @@ -39799,15 +39799,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 + - 17990 - 65 - - uid: 783 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,16.5 parent: 2 - - uid: 784 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad @@ -39816,7 +39816,7 @@ entities: - type: DeviceNetwork deviceLists: - 99 - - uid: 785 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad @@ -39824,9 +39824,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 100 - - uid: 786 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad @@ -39834,8 +39834,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18010 - - uid: 787 + - 17992 + - uid: 783 components: - type: Transform rot: 3.141592653589793 rad @@ -39843,9 +39843,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17938 + - 17920 - 101 - - uid: 788 + - uid: 784 components: - type: Transform rot: 3.141592653589793 rad @@ -39853,9 +39853,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17938 + - 17920 - 101 - - uid: 789 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad @@ -39864,7 +39864,7 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 790 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad @@ -39873,7 +39873,7 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - uid: 791 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad @@ -39882,7 +39882,7 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 792 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad @@ -39891,7 +39891,7 @@ entities: - type: DeviceNetwork deviceLists: - 89 - - uid: 793 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad @@ -39900,7 +39900,7 @@ entities: - type: DeviceNetwork deviceLists: - 89 - - uid: 794 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad @@ -39909,7 +39909,7 @@ entities: - type: DeviceNetwork deviceLists: - 91 - - uid: 795 + - uid: 791 components: - type: Transform rot: 3.141592653589793 rad @@ -39918,7 +39918,7 @@ entities: - type: DeviceNetwork deviceLists: - 34 - - uid: 796 + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad @@ -39926,9 +39926,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17974 + - 17956 - 79 - - uid: 797 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad @@ -39936,9 +39936,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17975 + - 17957 - 79 - - uid: 798 + - uid: 794 components: - type: Transform rot: 3.141592653589793 rad @@ -39946,8 +39946,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 - - uid: 799 + - 17959 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad @@ -39956,7 +39956,7 @@ entities: - type: DeviceNetwork deviceLists: - 92 - - uid: 800 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad @@ -39964,9 +39964,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 + - 17948 - 54 - - uid: 801 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad @@ -39974,9 +39974,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17968 + - 17950 - 125 - - uid: 802 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad @@ -39984,8 +39984,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - uid: 803 + - 17950 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad @@ -39994,7 +39994,7 @@ entities: - type: DeviceNetwork deviceLists: - 74 - - uid: 804 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad @@ -40003,7 +40003,7 @@ entities: - type: DeviceNetwork deviceLists: - 126 - - uid: 805 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad @@ -40012,7 +40012,7 @@ entities: - type: DeviceNetwork deviceLists: - 76 - - uid: 806 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad @@ -40020,9 +40020,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 78 - - uid: 807 + - uid: 803 components: - type: Transform rot: 3.141592653589793 rad @@ -40031,7 +40031,7 @@ entities: - type: DeviceNetwork deviceLists: - 78 - - uid: 808 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad @@ -40039,9 +40039,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 809 + - uid: 805 components: - type: Transform rot: 3.141592653589793 rad @@ -40049,9 +40049,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 810 + - uid: 806 components: - type: Transform rot: 3.141592653589793 rad @@ -40059,9 +40059,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 811 + - uid: 807 components: - type: Transform rot: -1.5707963267948966 rad @@ -40069,45 +40069,45 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17967 + - 17949 - 77 - - uid: 812 + - uid: 808 components: - type: Transform pos: -41.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 + - 17930 - 69 - - uid: 813 + - uid: 809 components: - type: Transform pos: -59.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 814 + - uid: 810 components: - type: Transform pos: -57.5,41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17944 + - 17926 - 56 - - uid: 815 + - uid: 811 components: - type: Transform pos: -52.5,49.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17945 + - 17927 - 56 - - uid: 816 + - uid: 812 components: - type: Transform rot: 3.141592653589793 rad @@ -40115,9 +40115,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17994 + - 17976 - 113 - - uid: 817 + - uid: 813 components: - type: Transform rot: 3.141592653589793 rad @@ -40125,9 +40125,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17926 + - 17908 - 117 - - uid: 818 + - uid: 814 components: - type: Transform rot: 3.141592653589793 rad @@ -40135,9 +40135,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 819 + - uid: 815 components: - type: Transform rot: 3.141592653589793 rad @@ -40145,119 +40145,119 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17993 + - 17975 - 113 - - uid: 820 + - uid: 816 components: - type: Transform pos: -54.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17942 + - 17924 - 56 - - uid: 821 + - uid: 817 components: - type: Transform pos: -53.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 822 + - uid: 818 components: - type: Transform pos: -34.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17949 + - 17931 - 53 - - uid: 823 + - uid: 819 components: - type: Transform pos: -29.5,-12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17962 + - 17944 - 64 - - uid: 824 + - uid: 820 components: - type: Transform pos: -18.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 + - 17943 - 37 - - uid: 825 + - uid: 821 components: - type: Transform pos: -14.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 + - 17934 - 95 - - uid: 826 + - uid: 822 components: - type: Transform pos: 1.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 + - 17935 - 95 - - uid: 827 + - uid: 823 components: - type: Transform pos: 12.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 + - 17936 - 95 - - uid: 828 + - uid: 824 components: - type: Transform pos: 17.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17955 - - 17978 - - 17979 + - 17937 + - 17960 + - 17961 - 112 - - uid: 829 + - uid: 825 components: - type: Transform pos: 22.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 + - 17960 + - 17961 - 85 - - uid: 830 + - uid: 826 components: - type: Transform pos: 30.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17979 - - uid: 831 + - 17961 + - uid: 827 components: - type: Transform pos: 35.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17980 + - 17962 - 86 - - uid: 832 + - uid: 828 components: - type: Transform pos: 17.5,1.5 @@ -40265,44 +40265,44 @@ entities: - type: DeviceNetwork deviceLists: - 112 - - uid: 833 + - uid: 829 components: - type: Transform pos: 17.5,-14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 + - 17938 - 118 - - uid: 834 + - uid: 830 components: - type: Transform pos: 7.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 + - 17939 + - 17988 - 122 - - uid: 835 + - uid: 831 components: - type: Transform pos: -0.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 + - 17988 - 87 - - uid: 836 + - uid: 832 components: - type: Transform pos: -18.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17960 + - 17942 - 124 - - uid: 837 + - uid: 833 components: - type: Transform pos: 22.5,-10.5 @@ -40310,16 +40310,16 @@ entities: - type: DeviceNetwork deviceLists: - 98 - - uid: 838 + - uid: 834 components: - type: Transform pos: 29.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 98 - - uid: 839 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad @@ -40327,9 +40327,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 840 + - uid: 836 components: - type: Transform rot: 3.141592653589793 rad @@ -40337,9 +40337,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 841 + - uid: 837 components: - type: Transform rot: 3.141592653589793 rad @@ -40347,9 +40347,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 117 - - uid: 842 + - uid: 838 components: - type: Transform rot: 3.141592653589793 rad @@ -40357,9 +40357,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17990 + - 17972 - 117 - - uid: 843 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad @@ -40367,9 +40367,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17991 + - 17973 - 38 - - uid: 844 + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad @@ -40377,8 +40377,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17936 - - uid: 845 + - 17918 + - uid: 841 components: - type: Transform rot: 3.141592653589793 rad @@ -40386,9 +40386,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17937 + - 17919 - 40 - - uid: 846 + - uid: 842 components: - type: Transform rot: 3.141592653589793 rad @@ -40396,9 +40396,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17958 + - 17940 - 108 - - uid: 847 + - uid: 843 components: - type: Transform rot: 3.141592653589793 rad @@ -40406,9 +40406,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17998 + - 17980 - 105 - - uid: 848 + - uid: 844 components: - type: Transform rot: 3.141592653589793 rad @@ -40416,9 +40416,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17997 + - 17979 - 107 - - uid: 849 + - uid: 845 components: - type: Transform rot: 3.141592653589793 rad @@ -40426,8 +40426,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18001 - - uid: 850 + - 17983 + - uid: 846 components: - type: Transform rot: 3.141592653589793 rad @@ -40435,9 +40435,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18002 + - 17984 - 105 - - uid: 851 + - uid: 847 components: - type: Transform rot: 3.141592653589793 rad @@ -40445,9 +40445,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18005 + - 17987 - 106 - - uid: 852 + - uid: 848 components: - type: Transform rot: 3.141592653589793 rad @@ -40455,9 +40455,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18003 + - 17985 - 105 - - uid: 853 + - uid: 849 components: - type: Transform rot: 3.141592653589793 rad @@ -40465,9 +40465,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18004 + - 17986 - 111 - - uid: 854 + - uid: 850 components: - type: Transform rot: 3.141592653589793 rad @@ -40475,9 +40475,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17976 + - 17958 - 79 - - uid: 855 + - uid: 851 components: - type: Transform rot: 3.141592653589793 rad @@ -40486,7 +40486,7 @@ entities: - type: DeviceNetwork deviceLists: - 71 - - uid: 856 + - uid: 852 components: - type: Transform rot: 3.141592653589793 rad @@ -40494,9 +40494,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 + - 17946 - 72 - - uid: 857 + - uid: 853 components: - type: Transform rot: 3.141592653589793 rad @@ -40504,9 +40504,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17972 + - 17954 - 54 - - uid: 858 + - uid: 854 components: - type: Transform rot: 3.141592653589793 rad @@ -40514,9 +40514,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17963 + - 17945 - 75 - - uid: 859 + - uid: 855 components: - type: Transform rot: 3.141592653589793 rad @@ -40524,9 +40524,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18012 + - 17994 - 75 - - uid: 860 + - uid: 856 components: - type: Transform rot: 3.141592653589793 rad @@ -40534,9 +40534,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17963 + - 17945 - 75 - - uid: 861 + - uid: 857 components: - type: Transform rot: 1.5707963267948966 rad @@ -40544,9 +40544,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17969 + - 17951 - 76 - - uid: 862 + - uid: 858 components: - type: Transform rot: 1.5707963267948966 rad @@ -40554,26 +40554,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 863 + - uid: 859 components: - type: Transform pos: 78.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 + - 17997 - 34 - - uid: 864 + - uid: 860 components: - type: Transform pos: 87.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 - - uid: 865 + - 17997 + - uid: 861 components: - type: Transform rot: 3.141592653589793 rad @@ -40582,1098 +40582,1098 @@ entities: - type: DeviceNetwork deviceLists: - 103 - - uid: 38611 + - uid: 38438 components: - type: Transform pos: -3.5,4.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38585 - - 39196 - - 38586 - - uid: 38612 + - 38412 + - 39023 + - 38413 + - uid: 38439 components: - type: Transform pos: -12.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38586 - - 39195 + - 38413 + - 39022 - proto: AirTank entities: - - uid: 38613 + - uid: 38440 components: - type: Transform pos: 11.575556,19.48703 - parent: 38584 + parent: 38411 - proto: AltarBananium entities: - - uid: 866 + - uid: 862 components: - type: Transform pos: -6.5,34.5 parent: 2 - proto: AltarConvertYellow entities: - - uid: 867 + - uid: 863 components: - type: Transform pos: -0.5,9.5 parent: 2 - proto: AltarToolbox entities: - - uid: 868 + - uid: 864 components: - type: Transform pos: 33.5,-54.5 parent: 2 - proto: AnalysisComputerCircuitboard entities: - - uid: 873 + - uid: 865 components: - type: Transform pos: -34.5,14.5 parent: 2 - proto: AnomalyLocator entities: - - uid: 874 + - uid: 866 components: - type: Transform pos: -22.608198,-55.673317 parent: 2 - proto: AnomalyScanner entities: - - uid: 875 + - uid: 867 components: - type: Transform pos: -18.514757,-55.20893 parent: 2 - - uid: 876 + - uid: 868 components: - type: Transform pos: -17.952257,-55.20893 parent: 2 - - uid: 877 + - uid: 869 components: - type: Transform pos: -17.631098,-55.387352 parent: 2 - - uid: 878 + - uid: 870 components: - type: Transform pos: -18.198187,-55.40506 parent: 2 - proto: AntiPoisonMedipen entities: - - uid: 880 + - uid: 872 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: APCBasic entities: - - uid: 887 + - uid: 879 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 888 + - uid: 880 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 889 + - uid: 881 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 890 + - uid: 882 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 891 + - uid: 883 components: - type: Transform pos: -7.5,51.5 parent: 2 - - uid: 892 + - uid: 884 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 893 + - uid: 885 components: - type: Transform pos: -13.5,83.5 parent: 2 - - uid: 894 + - uid: 886 components: - type: Transform pos: 79.5,7.5 parent: 2 - - uid: 895 + - uid: 887 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 896 + - uid: 888 components: - type: Transform pos: 97.5,-0.5 parent: 2 - - uid: 897 + - uid: 889 components: - type: Transform pos: 80.5,3.5 parent: 2 - - uid: 898 + - uid: 890 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 899 + - uid: 891 components: - type: Transform pos: 27.5,53.5 parent: 2 - - uid: 900 + - uid: 892 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-1.5 parent: 2 - - uid: 901 + - uid: 893 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 902 + - uid: 894 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 903 + - uid: 895 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 904 + - uid: 896 components: - type: Transform pos: 85.5,8.5 parent: 2 - - uid: 905 + - uid: 897 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 906 + - uid: 898 components: - type: Transform pos: 43.5,6.5 parent: 2 - - uid: 907 + - uid: 899 components: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 908 + - uid: 900 components: - type: Transform pos: 71.5,-14.5 parent: 2 - - uid: 909 + - uid: 901 components: - type: Transform pos: 97.5,15.5 parent: 2 - - uid: 910 + - uid: 902 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 911 + - uid: 903 components: - type: Transform pos: -31.5,83.5 parent: 2 - - uid: 912 + - uid: 904 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 913 + - uid: 905 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-1.5 parent: 2 - - uid: 914 + - uid: 906 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 915 + - uid: 907 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 916 + - uid: 908 components: - type: Transform pos: -67.5,-38.5 parent: 2 - - uid: 917 + - uid: 909 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-1.5 parent: 2 - - uid: 918 + - uid: 910 components: - type: Transform pos: 11.5,89.5 parent: 2 - - uid: 919 + - uid: 911 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 920 + - uid: 912 components: - type: Transform pos: 17.5,64.5 parent: 2 - - uid: 921 + - uid: 913 components: - type: Transform pos: 24.5,58.5 parent: 2 - - uid: 922 + - uid: 914 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 923 + - uid: 915 components: - type: Transform pos: -6.5,47.5 parent: 2 - - uid: 924 + - uid: 916 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 925 + - uid: 917 components: - type: Transform pos: -24.5,54.5 parent: 2 - - uid: 926 + - uid: 918 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 927 + - uid: 919 components: - type: Transform pos: 0.49999997,-12.5 parent: 2 - - uid: 928 + - uid: 920 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 929 + - uid: 921 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - uid: 930 + - uid: 922 components: - type: Transform pos: -39.5,-0.5 parent: 2 - - uid: 931 + - uid: 923 components: - type: Transform pos: -22.5,-13.5 parent: 2 - - uid: 932 + - uid: 924 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 933 + - uid: 925 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 935 + - uid: 926 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 936 + - uid: 927 components: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 937 + - uid: 928 components: - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 938 + - uid: 929 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 939 + - uid: 930 components: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 940 + - uid: 931 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 941 + - uid: 932 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 942 + - uid: 933 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 943 + - uid: 934 components: - type: Transform pos: -26.5,66.5 parent: 2 - - uid: 944 + - uid: 935 components: - type: Transform pos: -30.5,66.5 parent: 2 - - uid: 945 + - uid: 936 components: - type: Transform pos: -0.5,59.5 parent: 2 - - uid: 946 + - uid: 937 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 947 + - uid: 938 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 948 + - uid: 939 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 949 + - uid: 940 components: - type: Transform pos: -4.5,25.5 parent: 2 - - uid: 950 + - uid: 941 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 951 + - uid: 942 components: - type: Transform pos: 9.5,47.5 parent: 2 - - uid: 952 + - uid: 943 components: - type: Transform pos: 29.5,39.5 parent: 2 - - uid: 953 + - uid: 944 components: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 954 + - uid: 945 components: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 955 + - uid: 946 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 956 + - uid: 947 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 957 + - uid: 948 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 958 + - uid: 949 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 959 + - uid: 950 components: - type: Transform pos: 73.5,24.5 parent: 2 - - uid: 960 + - uid: 951 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 961 + - uid: 952 components: - type: Transform pos: 93.5,24.5 parent: 2 - - uid: 962 + - uid: 953 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 963 + - uid: 954 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 964 + - uid: 955 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 965 + - uid: 956 components: - type: Transform pos: 26.5,10.5 parent: 2 - - uid: 966 + - uid: 957 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 967 + - uid: 958 components: - type: Transform pos: 56.5,20.5 parent: 2 - - uid: 968 + - uid: 959 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 969 + - uid: 960 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,2.5 parent: 2 - - uid: 970 + - uid: 961 components: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 971 + - uid: 962 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 972 + - uid: 963 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 973 + - uid: 964 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 974 + - uid: 965 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 975 + - uid: 966 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 976 + - uid: 967 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 977 + - uid: 968 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 978 + - uid: 969 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 979 + - uid: 970 components: - type: Transform pos: -65.5,-4.5 parent: 2 - - uid: 980 + - uid: 971 components: - type: Transform pos: -60.5,-4.5 parent: 2 - - uid: 981 + - uid: 972 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 982 + - uid: 973 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 983 + - uid: 974 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 984 + - uid: 975 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 985 + - uid: 976 components: - type: Transform pos: 50.5,-1.5 parent: 2 - - uid: 986 + - uid: 977 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 987 + - uid: 978 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 988 + - uid: 979 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 989 + - uid: 980 components: - type: Transform pos: -118.5,51.5 parent: 2 - - uid: 990 + - uid: 981 components: - type: Transform pos: -118.5,20.5 parent: 2 - - uid: 991 + - uid: 982 components: - type: Transform pos: -113.5,44.5 parent: 2 - - uid: 992 + - uid: 983 components: - type: Transform pos: -123.5,44.5 parent: 2 - - uid: 993 + - uid: 984 components: - type: Transform pos: -69.5,13.5 parent: 2 - - uid: 994 + - uid: 985 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 995 + - uid: 986 components: - type: Transform pos: -44.5,49.5 parent: 2 - - uid: 996 + - uid: 987 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 997 + - uid: 988 components: - type: Transform pos: -60.5,43.5 parent: 2 - - uid: 998 + - uid: 989 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 999 + - uid: 990 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 1000 + - uid: 991 components: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 1001 + - uid: 992 components: - type: Transform pos: -51.5,26.5 parent: 2 - - uid: 1002 + - uid: 993 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 1003 + - uid: 994 components: - type: Transform pos: -18.5,-60.5 parent: 2 - - uid: 1004 + - uid: 995 components: - type: Transform pos: -39.5,-63.5 parent: 2 - - uid: 1005 + - uid: 996 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 1006 + - uid: 997 components: - type: Transform pos: -28.5,-69.5 parent: 2 - - uid: 1007 + - uid: 998 components: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 1008 + - uid: 999 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 1009 + - uid: 1000 components: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 1010 + - uid: 1001 components: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 1011 + - uid: 1002 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 1012 + - uid: 1003 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 1013 + - uid: 1004 components: - type: Transform pos: -10.5,-36.5 parent: 2 - - uid: 1014 + - uid: 1005 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 1015 + - uid: 1006 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 1016 + - uid: 1007 components: - type: Transform pos: -20.5,-48.5 parent: 2 - - uid: 1017 + - uid: 1008 components: - type: Transform pos: -19.5,-54.5 parent: 2 - - uid: 1018 + - uid: 1009 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-57.5 parent: 2 - - uid: 1019 + - uid: 1010 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 1020 + - uid: 1011 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-75.5 parent: 2 - - uid: 1021 + - uid: 1012 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 1022 + - uid: 1013 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-29.5 parent: 2 - - uid: 1023 + - uid: 1014 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 1024 + - uid: 1015 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 1025 + - uid: 1016 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 1026 + - uid: 1017 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 1027 + - uid: 1018 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 - - uid: 1028 + - uid: 1019 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 1029 + - uid: 1020 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-49.5 parent: 2 - - uid: 1030 + - uid: 1021 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-49.5 parent: 2 - - uid: 1031 + - uid: 1022 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 1032 + - uid: 1023 components: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 1033 + - uid: 1024 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 1034 + - uid: 1025 components: - type: Transform pos: 14.5,-36.5 parent: 2 - - uid: 1035 + - uid: 1026 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 1036 + - uid: 1027 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 1037 + - uid: 1028 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 1038 + - uid: 1029 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 1039 + - uid: 1030 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 1040 + - uid: 1031 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 1041 + - uid: 1032 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 1042 + - uid: 1033 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 1043 + - uid: 1034 components: - type: Transform pos: 45.5,-12.5 parent: 2 - - uid: 1044 + - uid: 1035 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 1045 + - uid: 1036 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 1046 + - uid: 1037 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 1047 + - uid: 1038 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 1048 + - uid: 1039 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 - - uid: 1049 + - uid: 1040 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,11.5 parent: 2 - - uid: 1050 + - uid: 1041 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 1051 + - uid: 1042 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 1052 + - uid: 1043 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 1054 + - uid: 1044 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 1055 + - uid: 1045 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 1056 + - uid: 1046 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 1057 + - uid: 1047 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 1058 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-48.5 parent: 2 - - uid: 1059 + - uid: 1049 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-35.5 parent: 2 - - uid: 1060 + - uid: 1050 components: - type: Transform pos: -39.5,-47.5 parent: 2 - - uid: 1061 + - uid: 1051 components: - type: Transform pos: -69.5,-33.5 parent: 2 - - uid: 1062 + - uid: 1052 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 1063 + - uid: 1053 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 1064 + - uid: 1054 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 1065 + - uid: 1055 components: - type: Transform pos: 54.5,33.5 parent: 2 - - uid: 1066 + - uid: 1056 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 1067 + - uid: 1057 components: - type: Transform pos: 33.5,40.5 parent: 2 - - uid: 1068 + - uid: 1058 components: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 1069 + - uid: 1059 components: - type: Transform pos: 24.5,18.5 parent: 2 - - uid: 1070 + - uid: 1060 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 38488 + - uid: 38315 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 - parent: 38484 - - uid: 38614 + parent: 38311 + - uid: 38441 components: - type: Transform pos: -7.5,-0.5 - parent: 38584 - - uid: 38615 + parent: 38411 + - uid: 38442 components: - type: Transform pos: 10.5,-0.5 - parent: 38584 - - uid: 38616 + parent: 38411 + - uid: 38443 components: - type: Transform pos: -0.5,-6.5 - parent: 38584 - - uid: 38617 + parent: 38411 + - uid: 38444 components: - type: Transform pos: 7.5,-2.5 - parent: 38584 - - uid: 38618 + parent: 38411 + - uid: 38445 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,7.5 - parent: 38584 - - uid: 38619 + parent: 38411 + - uid: 38446 components: - type: Transform pos: -4.5,5.5 - parent: 38584 - - uid: 38620 + parent: 38411 + - uid: 38447 components: - type: Transform pos: 4.5,5.5 - parent: 38584 - - uid: 38621 + parent: 38411 + - uid: 38448 components: - type: Transform pos: -7.5,11.5 - parent: 38584 - - uid: 38622 + parent: 38411 + - uid: 38449 components: - type: Transform pos: 7.5,5.5 - parent: 38584 - - uid: 38623 + parent: 38411 + - uid: 38450 components: - type: Transform pos: -16.5,-0.5 - parent: 38584 + parent: 38411 - proto: APCElectronics entities: - - uid: 1072 + - uid: 1062 components: - type: Transform - parent: 1071 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1075 + - uid: 1065 components: - type: Transform pos: -34.33145,10.337081 parent: 2 - proto: APCSuperCapacity entities: - - uid: 1076 + - uid: 1066 components: - type: MetaData name: Артефактная @@ -41681,7 +41681,7 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-47.5 parent: 2 - - uid: 1077 + - uid: 1067 components: - type: MetaData name: Токсины @@ -41689,843 +41689,843 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-40.5 parent: 2 - - uid: 1078 + - uid: 1068 components: - type: Transform pos: -26.5,-24.5 parent: 2 - proto: AppleSeeds entities: - - uid: 1079 + - uid: 1069 components: - type: Transform pos: 54.638096,-32.17157 parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 1080 + - uid: 1070 components: - type: Transform pos: 3.5,81.5 parent: 2 - - uid: 1081 + - uid: 1071 components: - type: Transform pos: -14.5,81.5 parent: 2 - - uid: 1082 + - uid: 1072 components: - type: Transform pos: -26.5,81.5 parent: 2 - proto: Ash entities: - - uid: 1083 + - uid: 1073 components: - type: Transform pos: -57.457546,56.721203 parent: 2 - proto: Ashtray entities: - - uid: 1084 + - uid: 1074 components: - type: Transform rot: 3.141592653589793 rad pos: -33.302418,-8.487843 parent: 2 - - uid: 1085 + - uid: 1075 components: - type: Transform pos: -57.34817,56.705578 parent: 2 - - uid: 1086 + - uid: 1076 components: - type: Transform pos: 59.625492,27.514393 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 1087 + - uid: 1077 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,39.5 parent: 2 - - uid: 1088 + - uid: 1078 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,91.5 parent: 2 - - uid: 1089 + - uid: 1079 components: - type: Transform pos: -10.5,-82.5 parent: 2 - - uid: 1090 + - uid: 1080 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,49.5 parent: 2 - - uid: 1091 + - uid: 1081 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,51.5 parent: 2 - - uid: 1092 + - uid: 1082 components: - type: Transform pos: 17.5,78.5 parent: 2 - - uid: 1093 + - uid: 1083 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,93.5 parent: 2 - - uid: 1094 + - uid: 1084 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 1095 + - uid: 1085 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,17.5 parent: 2 - - uid: 1096 + - uid: 1086 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,84.5 parent: 2 - - uid: 1097 + - uid: 1087 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,21.5 parent: 2 - - uid: 1098 + - uid: 1088 components: - type: Transform pos: 31.5,60.5 parent: 2 - - uid: 1099 + - uid: 1089 components: - type: Transform pos: -34.5,26.5 parent: 2 - - uid: 1100 + - uid: 1090 components: - type: Transform pos: 90.5,21.5 parent: 2 - - uid: 1101 + - uid: 1091 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,59.5 parent: 2 - - uid: 1102 + - uid: 1092 components: - type: Transform pos: -30.5,29.5 parent: 2 - - uid: 1103 + - uid: 1093 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,77.5 parent: 2 - - uid: 1104 + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,84.5 parent: 2 - - uid: 1105 + - uid: 1095 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,99.5 parent: 2 - - uid: 1106 + - uid: 1096 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,77.5 parent: 2 - - uid: 1107 + - uid: 1097 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,84.5 parent: 2 - - uid: 1108 + - uid: 1098 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,84.5 parent: 2 - - uid: 1109 + - uid: 1099 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,77.5 parent: 2 - - uid: 1110 + - uid: 1100 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,77.5 parent: 2 - - uid: 1111 + - uid: 1101 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,84.5 parent: 2 - - uid: 1112 + - uid: 1102 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,77.5 parent: 2 - - uid: 1113 + - uid: 1103 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,99.5 parent: 2 - - uid: 1114 + - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-2.5 parent: 2 - - uid: 1115 + - uid: 1105 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-86.5 parent: 2 - - uid: 1116 + - uid: 1106 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-86.5 parent: 2 - - uid: 1117 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 - - uid: 1118 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-86.5 parent: 2 - - uid: 1119 + - uid: 1109 components: - type: Transform pos: -19.5,-51.5 parent: 2 - - uid: 1120 + - uid: 1110 components: - type: Transform rot: 3.141592653589793 rad pos: -109.5,23.5 parent: 2 - - uid: 1121 + - uid: 1111 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,0.5 parent: 2 - - uid: 1122 + - uid: 1112 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-81.5 parent: 2 - - uid: 1123 + - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,25.5 parent: 2 - - uid: 1124 + - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,10.5 parent: 2 - - uid: 1125 + - uid: 1115 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,27.5 parent: 2 - - uid: 1126 + - uid: 1116 components: - type: Transform pos: -82.5,14.5 parent: 2 - - uid: 1127 + - uid: 1117 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,57.5 parent: 2 - - uid: 1128 + - uid: 1118 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-2.5 parent: 2 - - uid: 1129 + - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,41.5 parent: 2 - - uid: 1130 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-43.5 parent: 2 - - uid: 1131 + - uid: 1121 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-13.5 parent: 2 - - uid: 1132 + - uid: 1122 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-12.5 parent: 2 - - uid: 1133 + - uid: 1123 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-26.5 parent: 2 - - uid: 1134 + - uid: 1124 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-57.5 parent: 2 - - uid: 1135 + - uid: 1125 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-74.5 parent: 2 - - uid: 1136 + - uid: 1126 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-46.5 parent: 2 - - uid: 1137 + - uid: 1127 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-46.5 parent: 2 - - uid: 1138 + - uid: 1128 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,87.5 parent: 2 - - uid: 1139 + - uid: 1129 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,58.5 parent: 2 - - uid: 1140 + - uid: 1130 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,65.5 parent: 2 - - uid: 38489 + - uid: 38316 components: - type: Transform pos: -1.5,0.5 - parent: 38484 - - uid: 38490 + parent: 38311 + - uid: 38317 components: - type: Transform pos: 4.5,0.5 - parent: 38484 - - uid: 38624 + parent: 38311 + - uid: 38451 components: - type: Transform pos: 0.5,9.5 - parent: 38584 - - uid: 38625 + parent: 38411 + - uid: 38452 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-11.5 - parent: 38584 - - uid: 38626 + parent: 38411 + - uid: 38453 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-11.5 - parent: 38584 - - uid: 38627 + parent: 38411 + - uid: 38454 components: - type: Transform pos: -1.5,9.5 - parent: 38584 + parent: 38411 - proto: AtmosFixBlockerMarker entities: - - uid: 1141 + - uid: 1131 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,46.5 parent: 2 - - uid: 1142 + - uid: 1132 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,49.5 parent: 2 - - uid: 1143 + - uid: 1133 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,45.5 parent: 2 - - uid: 1144 + - uid: 1134 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,44.5 parent: 2 - - uid: 1145 + - uid: 1135 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,48.5 parent: 2 - - uid: 1146 + - uid: 1136 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,42.5 parent: 2 - - uid: 1147 + - uid: 1137 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,44.5 parent: 2 - - uid: 1148 + - uid: 1138 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,41.5 parent: 2 - - uid: 1149 + - uid: 1139 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,40.5 parent: 2 - - uid: 1150 + - uid: 1140 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,40.5 parent: 2 - - uid: 1151 + - uid: 1141 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,42.5 parent: 2 - - uid: 1152 + - uid: 1142 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,46.5 parent: 2 - - uid: 1153 + - uid: 1143 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,50.5 parent: 2 - - uid: 1154 + - uid: 1144 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,44.5 parent: 2 - - uid: 1155 + - uid: 1145 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,45.5 parent: 2 - - uid: 1156 + - uid: 1146 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,49.5 parent: 2 - - uid: 1157 + - uid: 1147 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,45.5 parent: 2 - - uid: 1158 + - uid: 1148 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,49.5 parent: 2 - - uid: 1159 + - uid: 1149 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,46.5 parent: 2 - - uid: 1160 + - uid: 1150 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,50.5 parent: 2 - - uid: 1161 + - uid: 1151 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,50.5 parent: 2 - - uid: 1162 + - uid: 1152 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,48.5 parent: 2 - - uid: 1163 + - uid: 1153 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,40.5 parent: 2 - - uid: 1164 + - uid: 1154 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,48.5 parent: 2 - - uid: 1165 + - uid: 1155 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,41.5 parent: 2 - - uid: 1166 + - uid: 1156 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,42.5 parent: 2 - - uid: 1167 + - uid: 1157 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,41.5 parent: 2 - - uid: 1168 + - uid: 1158 components: - type: Transform pos: -76.5,21.5 parent: 2 - - uid: 1169 + - uid: 1159 components: - type: Transform pos: -76.5,22.5 parent: 2 - - uid: 1170 + - uid: 1160 components: - type: Transform pos: -75.5,22.5 parent: 2 - - uid: 1171 + - uid: 1161 components: - type: Transform pos: -76.5,20.5 parent: 2 - - uid: 1172 + - uid: 1162 components: - type: Transform pos: -76.5,23.5 parent: 2 - - uid: 1173 + - uid: 1163 components: - type: Transform pos: -76.5,24.5 parent: 2 - - uid: 1174 + - uid: 1164 components: - type: Transform pos: -75.5,24.5 parent: 2 - - uid: 1175 + - uid: 1165 components: - type: Transform pos: -75.5,23.5 parent: 2 - - uid: 1176 + - uid: 1166 components: - type: Transform pos: -75.5,21.5 parent: 2 - - uid: 1177 + - uid: 1167 components: - type: Transform pos: -75.5,20.5 parent: 2 - - uid: 1178 + - uid: 1168 components: - type: Transform pos: -74.5,20.5 parent: 2 - - uid: 1179 + - uid: 1169 components: - type: Transform pos: -74.5,21.5 parent: 2 - - uid: 1180 + - uid: 1170 components: - type: Transform pos: -74.5,22.5 parent: 2 - - uid: 1181 + - uid: 1171 components: - type: Transform pos: -74.5,23.5 parent: 2 - - uid: 1182 + - uid: 1172 components: - type: Transform pos: -74.5,24.5 parent: 2 - - uid: 1183 + - uid: 1173 components: - type: Transform pos: -73.5,24.5 parent: 2 - - uid: 1184 + - uid: 1174 components: - type: Transform pos: -73.5,23.5 parent: 2 - - uid: 1185 + - uid: 1175 components: - type: Transform pos: -73.5,21.5 parent: 2 - - uid: 1186 + - uid: 1176 components: - type: Transform pos: -73.5,20.5 parent: 2 - - uid: 1187 + - uid: 1177 components: - type: Transform pos: -73.5,22.5 parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 1188 + - uid: 1178 components: - type: Transform pos: -30.5,25.5 parent: 2 - - uid: 1189 + - uid: 1179 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 1190 + - uid: 1180 components: - type: Transform pos: -33.5,29.5 parent: 2 - - uid: 1191 + - uid: 1181 components: - type: Transform pos: -33.5,28.5 parent: 2 - - uid: 1192 + - uid: 1182 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 1193 + - uid: 1183 components: - type: Transform pos: -32.5,26.5 parent: 2 - - uid: 1194 + - uid: 1184 components: - type: Transform pos: -33.5,30.5 parent: 2 - - uid: 1195 + - uid: 1185 components: - type: Transform pos: -32.5,29.5 parent: 2 - - uid: 1196 + - uid: 1186 components: - type: Transform pos: -32.5,28.5 parent: 2 - - uid: 1197 + - uid: 1187 components: - type: Transform pos: -29.5,28.5 parent: 2 - - uid: 1198 + - uid: 1188 components: - type: Transform pos: -28.5,28.5 parent: 2 - - uid: 1199 + - uid: 1189 components: - type: Transform pos: -33.5,26.5 parent: 2 - - uid: 1200 + - uid: 1190 components: - type: Transform pos: -32.5,30.5 parent: 2 - - uid: 1201 + - uid: 1191 components: - type: Transform pos: -30.5,28.5 parent: 2 - - uid: 1202 + - uid: 1192 components: - type: Transform pos: -32.5,25.5 parent: 2 - - uid: 1203 + - uid: 1193 components: - type: Transform pos: -30.5,26.5 parent: 2 - - uid: 1204 + - uid: 1194 components: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 1205 + - uid: 1195 components: - type: Transform pos: -31.5,25.5 parent: 2 - - uid: 1206 + - uid: 1196 components: - type: Transform pos: -33.5,25.5 parent: 2 - - uid: 1207 + - uid: 1197 components: - type: Transform pos: -31.5,26.5 parent: 2 - - uid: 1208 + - uid: 1198 components: - type: Transform pos: -29.5,27.5 parent: 2 - - uid: 1209 + - uid: 1199 components: - type: Transform pos: -31.5,27.5 parent: 2 - - uid: 1210 + - uid: 1200 components: - type: Transform pos: -31.5,28.5 parent: 2 - - uid: 1211 + - uid: 1201 components: - type: Transform pos: -28.5,27.5 parent: 2 - - uid: 1212 + - uid: 1202 components: - type: Transform pos: -29.5,27.5 parent: 2 - - uid: 1213 + - uid: 1203 components: - type: Transform pos: -19.5,-52.5 parent: 2 - - uid: 1214 + - uid: 1204 components: - type: Transform pos: -18.5,-53.5 parent: 2 - - uid: 1215 + - uid: 1205 components: - type: Transform pos: -20.5,-53.5 parent: 2 - - uid: 1216 + - uid: 1206 components: - type: Transform pos: -19.5,-53.5 parent: 2 - - uid: 1217 + - uid: 1207 components: - type: Transform pos: -18.5,-52.5 parent: 2 - - uid: 1218 + - uid: 1208 components: - type: Transform pos: -20.5,-52.5 parent: 2 - - uid: 1219 + - uid: 1209 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-3.5 parent: 2 - - uid: 1220 + - uid: 1210 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-2.5 parent: 2 - - uid: 1221 + - uid: 1211 components: - type: Transform rot: 3.141592653589793 rad @@ -42533,170 +42533,170 @@ entities: parent: 2 - proto: AtmosFixNitrogenMarker entities: - - uid: 1222 + - uid: 1212 components: - type: Transform pos: -70.5,38.5 parent: 2 - - uid: 1223 + - uid: 1213 components: - type: Transform pos: -71.5,37.5 parent: 2 - - uid: 1224 + - uid: 1214 components: - type: Transform pos: -71.5,38.5 parent: 2 - - uid: 1225 + - uid: 1215 components: - type: Transform pos: -72.5,38.5 parent: 2 - - uid: 1226 + - uid: 1216 components: - type: Transform pos: -70.5,37.5 parent: 2 - - uid: 1227 + - uid: 1217 components: - type: Transform pos: -71.5,36.5 parent: 2 - - uid: 1228 + - uid: 1218 components: - type: Transform pos: -72.5,36.5 parent: 2 - - uid: 1229 + - uid: 1219 components: - type: Transform pos: -70.5,36.5 parent: 2 - - uid: 1230 + - uid: 1220 components: - type: Transform pos: -72.5,37.5 parent: 2 - proto: AtmosFixOxygenMarker entities: - - uid: 1231 + - uid: 1221 components: - type: Transform pos: -71.5,34.5 parent: 2 - - uid: 1232 + - uid: 1222 components: - type: Transform pos: -71.5,33.5 parent: 2 - - uid: 1233 + - uid: 1223 components: - type: Transform pos: -70.5,34.5 parent: 2 - - uid: 1234 + - uid: 1224 components: - type: Transform pos: -72.5,34.5 parent: 2 - - uid: 1235 + - uid: 1225 components: - type: Transform pos: -70.5,33.5 parent: 2 - - uid: 1236 + - uid: 1226 components: - type: Transform pos: -72.5,33.5 parent: 2 - - uid: 1237 + - uid: 1227 components: - type: Transform pos: -72.5,32.5 parent: 2 - - uid: 1238 + - uid: 1228 components: - type: Transform pos: -71.5,32.5 parent: 2 - - uid: 1239 + - uid: 1229 components: - type: Transform pos: -70.5,32.5 parent: 2 - proto: AtmosFixPlasmaMarker entities: - - uid: 1240 + - uid: 1230 components: - type: Transform pos: -72.5,30.5 parent: 2 - - uid: 1241 + - uid: 1231 components: - type: Transform pos: -72.5,29.5 parent: 2 - - uid: 1242 + - uid: 1232 components: - type: Transform pos: -72.5,28.5 parent: 2 - - uid: 1243 + - uid: 1233 components: - type: Transform pos: -71.5,28.5 parent: 2 - - uid: 1244 + - uid: 1234 components: - type: Transform pos: -71.5,29.5 parent: 2 - - uid: 1245 + - uid: 1235 components: - type: Transform pos: -71.5,30.5 parent: 2 - - uid: 1246 + - uid: 1236 components: - type: Transform pos: -70.5,30.5 parent: 2 - - uid: 1247 + - uid: 1237 components: - type: Transform pos: -70.5,29.5 parent: 2 - - uid: 1248 + - uid: 1238 components: - type: Transform pos: -70.5,28.5 parent: 2 - proto: Autolathe entities: - - uid: 1249 + - uid: 1239 components: - type: Transform pos: -58.5,20.5 parent: 2 - - uid: 1250 + - uid: 1240 components: - type: Transform pos: -5.5,-39.5 parent: 2 - - uid: 1251 + - uid: 1241 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 1252 + - uid: 1242 components: - type: Transform pos: 7.5,33.5 parent: 2 - proto: AutolatheMachineCircuitboard entities: - - uid: 1253 + - uid: 1243 components: - type: Transform rot: 3.141592653589793 rad @@ -42704,13 +42704,13 @@ entities: parent: 2 - proto: BalloonCorgi entities: - - uid: 1254 + - uid: 1244 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -69.68523,-45.374607 parent: 2 - - uid: 1255 + - uid: 1245 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -42718,750 +42718,750 @@ entities: parent: 2 - proto: BananaSeeds entities: - - uid: 1256 + - uid: 1246 components: - type: Transform pos: -38.5,35.5 parent: 2 - proto: BannerCargo entities: - - uid: 1257 + - uid: 1247 components: - type: Transform pos: 6.5,26.5 parent: 2 - proto: BannerEngineering entities: - - uid: 1259 + - uid: 1248 components: - type: Transform pos: -55.5,5.5 parent: 2 - - uid: 1260 + - uid: 1249 components: - type: Transform pos: -44.5,15.5 parent: 2 - proto: BannerGreen entities: - - uid: 1261 + - uid: 1250 components: - type: Transform pos: -38.5,45.5 parent: 2 - - uid: 1262 + - uid: 1251 components: - type: Transform pos: -111.50001,33.5 parent: 2 - - uid: 1263 + - uid: 1252 components: - type: Transform pos: -114.50001,33.5 parent: 2 - proto: BannerMedical entities: - - uid: 1264 + - uid: 1253 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 1265 + - uid: 1254 components: - type: Transform pos: 14.5,-26.5 parent: 2 - - uid: 1266 + - uid: 1255 components: - type: Transform pos: 40.499996,-39.5 parent: 2 - proto: BannerNanotrasen entities: - - uid: 1267 + - uid: 1256 components: - type: Transform pos: -15.5,16.5 parent: 2 - - uid: 1268 + - uid: 1257 components: - type: Transform pos: -15.5,13.5 parent: 2 - - uid: 1269 + - uid: 1258 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 1270 + - uid: 1259 components: - type: Transform pos: -41.5,59.5 parent: 2 - - uid: 1271 + - uid: 1260 components: - type: Transform pos: 14.5,-23.5 parent: 2 - - uid: 1272 + - uid: 1261 components: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 1273 + - uid: 1262 components: - type: Transform pos: 14.5,16.5 parent: 2 - - uid: 1274 + - uid: 1263 components: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 1275 + - uid: 1264 components: - type: Transform pos: 6.5,16.5 parent: 2 - - uid: 1276 + - uid: 1265 components: - type: Transform pos: -3.5,-23.5 parent: 2 - - uid: 1277 + - uid: 1266 components: - type: Transform pos: -15.5,-26.5 parent: 2 - - uid: 1278 + - uid: 1267 components: - type: Transform pos: 2.5,-64.5 parent: 2 - - uid: 1279 + - uid: 1268 components: - type: Transform pos: -1.5,9.5 parent: 2 - - uid: 1280 + - uid: 1269 components: - type: Transform pos: 4.5,-77.5 parent: 2 - - uid: 1281 + - uid: 1270 components: - type: Transform pos: 2.5,-76.5 parent: 2 - - uid: 1282 + - uid: 1271 components: - type: Transform pos: 24.5,-45.5 parent: 2 - - uid: 1283 + - uid: 1272 components: - type: Transform pos: 0.5,9.5 parent: 2 - - uid: 1284 + - uid: 1273 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 1285 + - uid: 1274 components: - type: Transform pos: 2.5,-67.5 parent: 2 - - uid: 1286 + - uid: 1275 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 1287 + - uid: 1276 components: - type: Transform pos: 10.5,-16.5 parent: 2 - - uid: 1288 + - uid: 1277 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 1289 + - uid: 1278 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 1290 + - uid: 1279 components: - type: Transform pos: 3.5,26.5 parent: 2 - - uid: 1291 + - uid: 1280 components: - type: Transform pos: 9.5,26.5 parent: 2 - - uid: 1292 + - uid: 1281 components: - type: Transform pos: 4.5,-71.5 parent: 2 - - uid: 1293 + - uid: 1282 components: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 1294 + - uid: 1283 components: - type: Transform pos: 59.5,24.5 parent: 2 - - uid: 1295 + - uid: 1284 components: - type: Transform pos: -44.5,11.5 parent: 2 - - uid: 1296 + - uid: 1285 components: - type: Transform pos: 59.5,26.5 parent: 2 - proto: BannerScience entities: - - uid: 1298 + - uid: 1286 components: - type: Transform pos: -15.5,-24.5 parent: 2 - - uid: 1299 + - uid: 1287 components: - type: Transform pos: -3.5,-26.5 parent: 2 - proto: BannerSecurity entities: - - uid: 1300 + - uid: 1288 components: - type: Transform pos: 8.5,-61.5 parent: 2 - - uid: 1301 + - uid: 1289 components: - type: Transform pos: 14.5,-31.5 parent: 2 - - uid: 1302 + - uid: 1290 components: - type: Transform pos: 61.5,3.5 parent: 2 - - uid: 1303 + - uid: 1291 components: - type: Transform pos: -19.5,-23.5 parent: 2 - - uid: 1304 + - uid: 1292 components: - type: Transform pos: 58.5,32.5 parent: 2 - - uid: 1305 + - uid: 1293 components: - type: Transform pos: 50.5,32.5 parent: 2 - - uid: 1306 + - uid: 1294 components: - type: Transform pos: 49.5,31.5 parent: 2 - - uid: 1307 + - uid: 1295 components: - type: Transform pos: 59.5,31.5 parent: 2 - proto: BannerSyndicate entities: - - uid: 1308 + - uid: 1296 components: - type: Transform pos: 10.5,-82.5 parent: 2 - - uid: 1309 + - uid: 1297 components: - type: Transform pos: -74.5,-33.5 parent: 2 - - uid: 1310 + - uid: 1298 components: - type: Transform pos: 43.499996,-2.5 parent: 2 - proto: BannerYellow entities: - - uid: 1311 + - uid: 1299 components: - type: Transform pos: 16.5,63.5 parent: 2 - proto: Barricade entities: - - uid: 198 + - uid: 1300 components: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 435 + - uid: 1301 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-21.5 parent: 2 - - uid: 1312 + - uid: 1302 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-64.5 parent: 2 - - uid: 1313 + - uid: 1303 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 1314 + - uid: 1304 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - uid: 1315 + - uid: 1305 components: - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 1316 + - uid: 1306 components: - type: Transform pos: -27.5,-32.5 parent: 2 - - uid: 1317 + - uid: 1307 components: - type: Transform pos: -45.5,-23.5 parent: 2 - - uid: 1318 + - uid: 1308 components: - type: Transform pos: -47.5,-27.5 parent: 2 - - uid: 1319 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-51.5 parent: 2 - - uid: 1320 + - uid: 1310 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-54.5 parent: 2 - - uid: 1321 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-52.5 parent: 2 - - uid: 1322 + - uid: 1312 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-28.5 parent: 2 - - uid: 1323 + - uid: 1313 components: - type: Transform pos: -37.5,-0.5 parent: 2 - - uid: 1324 + - uid: 1314 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-28.5 parent: 2 - - uid: 1325 + - uid: 1315 components: - type: Transform pos: -41.5,-24.5 parent: 2 - - uid: 1326 + - uid: 1316 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 1327 + - uid: 1317 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-26.5 parent: 2 - - uid: 1328 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-27.5 parent: 2 - - uid: 1329 + - uid: 1319 components: - type: Transform pos: -39.5,-36.5 parent: 2 - - uid: 1330 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-26.5 parent: 2 - - uid: 1331 + - uid: 1321 components: - type: Transform pos: -28.5,-31.5 parent: 2 - - uid: 1332 + - uid: 1322 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-27.5 parent: 2 - - uid: 1333 + - uid: 1323 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-63.5 parent: 2 - - uid: 1334 + - uid: 1324 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-62.5 parent: 2 - - uid: 1335 + - uid: 1325 components: - type: Transform pos: 29.5,-66.5 parent: 2 - - uid: 1336 + - uid: 1326 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 - - uid: 1337 + - uid: 1327 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-26.5 parent: 2 - - uid: 1338 + - uid: 1328 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-27.5 parent: 2 - - uid: 1339 + - uid: 1329 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-68.5 parent: 2 - - uid: 1340 + - uid: 1330 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-67.5 parent: 2 - - uid: 1341 + - uid: 1331 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-62.5 parent: 2 - - uid: 1342 + - uid: 1332 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-69.5 parent: 2 - - uid: 1343 + - uid: 1333 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-28.5 parent: 2 - - uid: 1344 + - uid: 1334 components: - type: Transform pos: 29.5,-60.5 parent: 2 - - uid: 1345 + - uid: 1335 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 1346 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-63.5 parent: 2 - - uid: 1347 + - uid: 1337 components: - type: Transform pos: -35.5,-71.5 parent: 2 - - uid: 1348 + - uid: 1338 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-40.5 parent: 2 - - uid: 2826 + - uid: 1339 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 14972 + - uid: 1340 components: - type: Transform pos: -73.5,-27.5 parent: 2 - - uid: 15045 + - uid: 1341 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 34853 + - uid: 1342 components: - type: Transform pos: -64.5,-31.5 parent: 2 - - uid: 38628 + - uid: 38455 components: - type: Transform pos: -0.5,19.5 - parent: 38584 - - uid: 38629 + parent: 38411 + - uid: 38456 components: - type: Transform pos: -1.5,19.5 - parent: 38584 - - uid: 38630 + parent: 38411 + - uid: 38457 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,21.5 - parent: 38584 - - uid: 38631 + parent: 38411 + - uid: 38458 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,14.5 - parent: 38584 - - uid: 38632 + parent: 38411 + - uid: 38459 components: - type: Transform pos: -27.5,15.5 - parent: 38584 - - uid: 38633 + parent: 38411 + - uid: 38460 components: - type: Transform pos: -17.5,33.5 - parent: 38584 + parent: 38411 - proto: BarricadeBlock entities: - - uid: 432 + - uid: 1343 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-21.5 parent: 2 - - uid: 1349 + - uid: 1344 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,58.5 parent: 2 - - uid: 1350 + - uid: 1345 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-71.5 parent: 2 - - uid: 1351 + - uid: 1346 components: - type: Transform pos: 29.5,-60.5 parent: 2 - - uid: 1352 + - uid: 1347 components: - type: Transform pos: -45.5,-23.5 parent: 2 - - uid: 1353 + - uid: 1348 components: - type: Transform pos: -47.5,-22.5 parent: 2 - - uid: 1354 + - uid: 1349 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,68.5 parent: 2 - - uid: 1357 + - uid: 1350 components: - type: Transform pos: -44.5,-34.5 parent: 2 - - uid: 1358 + - uid: 1351 components: - type: Transform pos: 11.5,61.5 parent: 2 - - uid: 1359 + - uid: 1352 components: - type: Transform pos: 24.5,66.5 parent: 2 - - uid: 1360 + - uid: 1353 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 1361 + - uid: 1354 components: - type: Transform pos: 17.5,57.5 parent: 2 - - uid: 1362 + - uid: 1355 components: - type: Transform pos: -37.5,-0.5 parent: 2 - - uid: 1363 + - uid: 1356 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-58.5 parent: 2 - - uid: 1364 + - uid: 1357 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-71.5 parent: 2 - - uid: 1365 + - uid: 1358 components: - type: Transform pos: -37.5,-15.5 parent: 2 - - uid: 1366 + - uid: 1359 components: - type: Transform pos: 22.5,61.5 parent: 2 - - uid: 1367 + - uid: 1360 components: - type: Transform pos: 16.5,70.5 parent: 2 - - uid: 1368 + - uid: 1361 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,55.5 parent: 2 - - uid: 1369 + - uid: 1362 components: - type: Transform pos: 41.5,-68.5 parent: 2 - - uid: 1370 + - uid: 1363 components: - type: Transform pos: -34.5,-71.5 parent: 2 - - uid: 1371 + - uid: 1364 components: - type: Transform pos: -37.5,-58.5 parent: 2 - - uid: 1372 + - uid: 1365 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 1373 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-63.5 parent: 2 - - uid: 1374 + - uid: 1367 components: - type: Transform pos: -30.5,-71.5 parent: 2 - - uid: 1375 + - uid: 1368 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-40.5 parent: 2 - - uid: 2795 + - uid: 1369 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 2821 + - uid: 1370 components: - type: Transform pos: 78.5,-21.5 parent: 2 - - uid: 2822 + - uid: 1371 components: - type: Transform pos: 82.5,-18.5 parent: 2 - - uid: 31867 + - uid: 1372 components: - type: Transform pos: -73.5,-28.5 parent: 2 - - uid: 34839 + - uid: 1373 components: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 37638 + - uid: 1374 components: - type: Transform pos: -75.5,-26.5 parent: 2 - - uid: 38634 + - uid: 38461 components: - type: Transform pos: -18.5,33.5 - parent: 38584 - - uid: 38635 + parent: 38411 + - uid: 38462 components: - type: Transform pos: -21.5,29.5 - parent: 38584 + parent: 38411 - proto: BarricadeDirectional entities: - - uid: 433 + - uid: 1375 components: - type: Transform rot: 1.5707963267948966 rad @@ -43515,80 +43515,80 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-40.5 parent: 2 - - uid: 25503 + - uid: 1385 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-26.5 parent: 2 - - uid: 29156 + - uid: 1386 components: - type: Transform pos: -73.5,-25.5 parent: 2 - - uid: 34010 + - uid: 1387 components: - type: Transform pos: -69.5,-20.5 parent: 2 - - uid: 34317 + - uid: 1388 components: - type: Transform pos: -64.5,-30.5 parent: 2 - - uid: 38636 + - uid: 38463 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,14.5 - parent: 38584 - - uid: 38637 + parent: 38411 + - uid: 38464 components: - type: Transform pos: -9.5,22.5 - parent: 38584 - - uid: 38638 + parent: 38411 + - uid: 38465 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,18.5 - parent: 38584 - - uid: 38639 + parent: 38411 + - uid: 38466 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,19.5 - parent: 38584 - - uid: 38640 + parent: 38411 + - uid: 38467 components: - type: Transform pos: -27.5,16.5 - parent: 38584 - - uid: 38641 + parent: 38411 + - uid: 38468 components: - type: Transform pos: -18.5,15.5 - parent: 38584 - - uid: 38642 + parent: 38411 + - uid: 38469 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,15.5 - parent: 38584 - - uid: 38643 + parent: 38411 + - uid: 38470 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,14.5 - parent: 38584 - - uid: 38644 + parent: 38411 + - uid: 38471 components: - type: Transform pos: -17.5,34.5 - parent: 38584 + parent: 38411 - proto: BarSign entities: - - uid: 1385 + - uid: 1389 components: - type: Transform rot: -1.5707963267948966 rad @@ -43596,27 +43596,27 @@ entities: parent: 2 - proto: BarSignMaidCafe entities: - - uid: 1386 + - uid: 1390 components: - type: Transform pos: -64.5,-38.5 parent: 2 - proto: BaseBallBat entities: - - uid: 1387 + - uid: 1391 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.538887,-47.448273 parent: 2 - - uid: 1389 + - uid: 1393 components: - type: Transform - parent: 1388 + parent: 1392 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 9969 + - uid: 1396 components: - type: Transform rot: 3.141592653589793 rad @@ -43624,20 +43624,20 @@ entities: parent: 2 - proto: BaseComputer entities: - - uid: 1392 + - uid: 1397 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-49.5 parent: 2 - - uid: 38645 + - uid: 38472 components: - type: Transform pos: -22.5,34.5 - parent: 38584 + parent: 38411 - proto: BaseGasCondenser entities: - - uid: 1393 + - uid: 1398 components: - type: Transform rot: -1.5707963267948966 rad @@ -43645,370 +43645,370 @@ entities: parent: 2 - proto: Basketball entities: - - uid: 1394 + - uid: 1399 components: - type: Transform pos: -43.351387,-47.338898 parent: 2 - proto: BassGuitarInstrument entities: - - uid: 1395 + - uid: 1400 components: - type: Transform pos: -8.499726,29.04972 parent: 2 - proto: Beaker entities: - - uid: 1396 + - uid: 1401 components: - type: Transform pos: 26.798685,-65.68403 parent: 2 - - uid: 1397 + - uid: 1402 components: - type: Transform pos: 26.486185,-65.76215 parent: 2 - - uid: 1398 + - uid: 1403 components: - type: Transform pos: 22.348429,-37.346508 parent: 2 - - uid: 1399 + - uid: 1404 components: - type: Transform pos: 20.50013,-40.283833 parent: 2 - type: Physics canCollide: False - - uid: 1400 + - uid: 1405 components: - type: Transform pos: -10.1553335,-52.195354 parent: 2 - - uid: 1401 + - uid: 1406 components: - type: Transform pos: -3.4142637,-45.366215 parent: 2 - - uid: 1402 + - uid: 1407 components: - type: Transform pos: 3.6732028,-44.403152 parent: 2 - - uid: 1403 + - uid: 1408 components: - type: Transform pos: -3.664264,-45.209965 parent: 2 - - uid: 1404 + - uid: 1409 components: - type: Transform pos: 22.676554,-37.346508 parent: 2 - - uid: 1405 + - uid: 1410 components: - type: Transform pos: 38.498783,-74.342354 parent: 2 - type: Physics canCollide: False - - uid: 1406 + - uid: 1411 components: - type: Transform pos: 2.6763434,-29.46381 parent: 2 - type: Physics canCollide: False - - uid: 1407 + - uid: 1412 components: - type: Transform pos: 36.53883,-19.395462 parent: 2 - type: Physics canCollide: False - - uid: 1408 + - uid: 1413 components: - type: Transform pos: -31.260351,34.57036 parent: 2 - type: Physics canCollide: False - - uid: 1409 + - uid: 1414 components: - type: Transform pos: -39.252483,52.65019 parent: 2 - - uid: 1410 + - uid: 1415 components: - type: Transform pos: -27.199572,45.474667 parent: 2 - proto: Bed entities: - - uid: 1411 + - uid: 1416 components: - type: Transform pos: 14.5,-42.5 parent: 2 - - uid: 1412 + - uid: 1417 components: - type: Transform pos: -2.5,54.5 parent: 2 - - uid: 1413 + - uid: 1418 components: - type: Transform pos: 41.5,13.5 parent: 2 - - uid: 1414 + - uid: 1419 components: - type: Transform pos: 65.5,-4.5 parent: 2 - - uid: 1415 + - uid: 1420 components: - type: Transform pos: -15.5,-4.5 parent: 2 - - uid: 1416 + - uid: 1421 components: - type: Transform pos: -1.5,44.5 parent: 2 - - uid: 1417 + - uid: 1422 components: - type: Transform pos: 44.5,-60.5 parent: 2 - - uid: 1418 + - uid: 1423 components: - type: Transform pos: -16.5,-46.5 parent: 2 - - uid: 1419 + - uid: 1424 components: - type: Transform pos: 14.5,1.5 parent: 2 - - uid: 1420 + - uid: 1425 components: - type: Transform pos: -12.5,52.5 parent: 2 - - uid: 1421 + - uid: 1426 components: - type: Transform pos: 24.5,-51.5 parent: 2 - - uid: 1422 + - uid: 1427 components: - type: Transform pos: 39.5,-0.5 parent: 2 - - uid: 1423 + - uid: 1428 components: - type: Transform pos: 53.5,-24.5 parent: 2 - - uid: 1424 + - uid: 1429 components: - type: Transform pos: 39.5,13.5 parent: 2 - - uid: 1425 + - uid: 1430 components: - type: Transform pos: 42.5,-72.5 parent: 2 - - uid: 1426 + - uid: 1431 components: - type: Transform pos: 45.5,-23.5 parent: 2 - - uid: 1427 + - uid: 1432 components: - type: Transform pos: 35.5,22.5 parent: 2 - - uid: 1428 + - uid: 1433 components: - type: Transform pos: 38.5,-72.5 parent: 2 - - uid: 1429 + - uid: 1434 components: - type: Transform pos: 27.5,43.5 parent: 2 - - uid: 1430 + - uid: 1435 components: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 1431 + - uid: 1436 components: - type: Transform pos: -56.5,7.5 parent: 2 - - uid: 1432 + - uid: 1437 components: - type: Transform pos: -23.5,-80.5 parent: 2 - - uid: 1433 + - uid: 1438 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 1434 + - uid: 1439 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 1435 + - uid: 1440 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 1436 + - uid: 1441 components: - type: Transform pos: -36.5,2.5 parent: 2 - - uid: 1437 + - uid: 1442 components: - type: Transform pos: 44.5,11.5 parent: 2 - - uid: 1438 + - uid: 1443 components: - type: Transform pos: 44.5,7.5 parent: 2 - - uid: 1439 + - uid: 1444 components: - type: Transform pos: 49.5,-23.5 parent: 2 - - uid: 1440 + - uid: 1445 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 1441 + - uid: 1446 components: - type: Transform pos: -40.5,-59.5 parent: 2 - - uid: 1442 + - uid: 1447 components: - type: Transform pos: -57.5,-48.5 parent: 2 - - uid: 1443 + - uid: 1448 components: - type: Transform pos: 98.5,12.5 parent: 2 - - uid: 1444 + - uid: 1449 components: - type: Transform pos: 80.5,-4.5 parent: 2 - - uid: 1445 + - uid: 1450 components: - type: Transform pos: 84.5,-4.5 parent: 2 - - uid: 1446 + - uid: 1451 components: - type: Transform pos: 88.5,-4.5 parent: 2 - - uid: 1447 + - uid: 1452 components: - type: Transform pos: -47.5,-37.5 parent: 2 - - uid: 1448 + - uid: 1453 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 38646 + - uid: 38473 components: - type: Transform pos: -20.5,27.5 - parent: 38584 - - uid: 38647 + parent: 38411 + - uid: 38474 components: - type: Transform pos: -18.5,10.5 - parent: 38584 - - uid: 38648 + parent: 38411 + - uid: 38475 components: - type: Transform pos: -21.5,0.5 - parent: 38584 - - uid: 38649 + parent: 38411 + - uid: 38476 components: - type: Transform pos: -15.5,0.5 - parent: 38584 - - uid: 38650 + parent: 38411 + - uid: 38477 components: - type: Transform pos: -15.5,10.5 - parent: 38584 - - uid: 38651 + parent: 38411 + - uid: 38478 components: - type: Transform pos: -18.5,0.5 - parent: 38584 - - uid: 38652 + parent: 38411 + - uid: 38479 components: - type: Transform pos: 7.5,-3.5 - parent: 38584 - - uid: 38653 + parent: 38411 + - uid: 38480 components: - type: Transform pos: -21.5,10.5 - parent: 38584 - - uid: 38654 + parent: 38411 + - uid: 38481 components: - type: Transform pos: -4.5,-1.5 - parent: 38584 - - uid: 38655 + parent: 38411 + - uid: 38482 components: - type: Transform pos: -4.5,-2.5 - parent: 38584 - - uid: 38656 + parent: 38411 + - uid: 38483 components: - type: Transform pos: 3.5,34.5 - parent: 38584 - - uid: 38657 + parent: 38411 + - uid: 38484 components: - type: Transform pos: 6.5,-3.5 - parent: 38584 - - uid: 38658 + parent: 38411 + - uid: 38485 components: - type: Transform pos: 7.5,-5.5 - parent: 38584 - - uid: 38659 + parent: 38411 + - uid: 38486 components: - type: Transform pos: 6.5,-5.5 - parent: 38584 + parent: 38411 - proto: BedsheetBlack entities: - - uid: 1449 + - uid: 1454 components: - type: Transform pos: -23.5,-80.5 @@ -44017,13 +44017,13 @@ entities: canCollide: False - proto: BedsheetBlue entities: - - uid: 1450 + - uid: 1455 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,54.5 parent: 2 - - uid: 1451 + - uid: 1456 components: - type: Transform rot: 1.5707963267948966 rad @@ -44031,24 +44031,24 @@ entities: parent: 2 - proto: BedsheetBrigmedic entities: - - uid: 1452 + - uid: 1457 components: - type: Transform pos: 65.5,-4.5 parent: 2 - proto: BedsheetBrown entities: - - uid: 1453 + - uid: 1458 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 1454 + - uid: 1459 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 1455 + - uid: 1460 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -44056,7 +44056,7 @@ entities: parent: 2 - proto: BedsheetCaptain entities: - - uid: 1456 + - uid: 1461 components: - type: Transform pos: 14.5,1.5 @@ -44065,7 +44065,7 @@ entities: canCollide: False - proto: BedsheetCE entities: - - uid: 1457 + - uid: 1462 components: - type: Transform pos: -56.5,7.5 @@ -44074,20 +44074,20 @@ entities: canCollide: False - proto: BedsheetClown entities: - - uid: 1458 + - uid: 1463 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,52.5 parent: 2 - - uid: 1459 + - uid: 1464 components: - type: Transform pos: -36.5,2.5 parent: 2 - proto: BedsheetCMO entities: - - uid: 1460 + - uid: 1465 components: - type: Transform pos: 24.5,-51.5 @@ -44096,7 +44096,7 @@ entities: canCollide: False - proto: BedsheetHOP entities: - - uid: 1461 + - uid: 1466 components: - type: Transform pos: -15.5,-4.5 @@ -44105,7 +44105,7 @@ entities: canCollide: False - proto: BedsheetHOS entities: - - uid: 1462 + - uid: 1467 components: - type: Transform pos: 35.5,22.5 @@ -44114,106 +44114,106 @@ entities: canCollide: False - proto: BedsheetIan entities: - - uid: 1463 + - uid: 1468 components: - type: Transform pos: -40.5,-59.5 parent: 2 - proto: BedsheetMedical entities: - - uid: 1464 + - uid: 1469 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-4.5 parent: 2 - - uid: 1465 + - uid: 1470 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-5.5 parent: 2 - - uid: 1466 + - uid: 1471 components: - type: Transform pos: 42.5,-72.5 parent: 2 - type: Physics canCollide: False - - uid: 1467 + - uid: 1472 components: - type: Transform pos: 44.5,-60.5 parent: 2 - type: Physics canCollide: False - - uid: 1468 + - uid: 1473 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-37.5 parent: 2 - - uid: 1469 + - uid: 1474 components: - type: Transform pos: 68.5,16.5 parent: 2 - - uid: 1470 + - uid: 1475 components: - type: Transform pos: 70.5,16.5 parent: 2 - - uid: 1471 + - uid: 1476 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-37.5 parent: 2 - - uid: 1472 + - uid: 1477 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - uid: 1473 + - uid: 1478 components: - type: Transform pos: 30.5,-52.5 parent: 2 - type: Physics canCollide: False - - uid: 1474 + - uid: 1479 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-41.5 parent: 2 - - uid: 1475 + - uid: 1480 components: - type: Transform pos: 38.5,-37.5 parent: 2 - - uid: 1476 + - uid: 1481 components: - type: Transform pos: 38.5,-72.5 parent: 2 - type: Physics canCollide: False - - uid: 38660 + - uid: 38487 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-1.5 - parent: 38584 - - uid: 38661 + parent: 38411 + - uid: 38488 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-2.5 - parent: 38584 + parent: 38411 - proto: BedsheetMime entities: - - uid: 1477 + - uid: 1482 components: - type: Transform rot: 1.5707963267948966 rad @@ -44221,94 +44221,94 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 1478 + - uid: 1483 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,7.5 parent: 2 - - uid: 1479 + - uid: 1484 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,11.5 parent: 2 - - uid: 1480 + - uid: 1485 components: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 1481 + - uid: 1486 components: - type: Transform pos: 39.5,-0.5 parent: 2 - - uid: 1482 + - uid: 1487 components: - type: Transform pos: 39.5,13.5 parent: 2 - - uid: 1483 + - uid: 1488 components: - type: Transform rot: -1.5707953085339508 rad pos: 88.5,-4.5 parent: 2 - - uid: 1484 + - uid: 1489 components: - type: Transform rot: -1.5707953085339508 rad pos: 84.5,-4.5 parent: 2 - - uid: 1485 + - uid: 1490 components: - type: Transform rot: -1.5707953085339508 rad pos: 80.5,-4.5 parent: 2 - - uid: 1486 + - uid: 1491 components: - type: Transform pos: 41.5,13.5 parent: 2 - - uid: 1487 + - uid: 1492 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 38662 + - uid: 38489 components: - type: Transform pos: -21.5,0.5 - parent: 38584 - - uid: 38663 + parent: 38411 + - uid: 38490 components: - type: Transform pos: -15.5,10.5 - parent: 38584 - - uid: 38664 + parent: 38411 + - uid: 38491 components: - type: Transform pos: -18.5,10.5 - parent: 38584 - - uid: 38665 + parent: 38411 + - uid: 38492 components: - type: Transform pos: -18.5,0.5 - parent: 38584 - - uid: 38666 + parent: 38411 + - uid: 38493 components: - type: Transform pos: -21.5,10.5 - parent: 38584 - - uid: 38667 + parent: 38411 + - uid: 38494 components: - type: Transform pos: -15.5,0.5 - parent: 38584 + parent: 38411 - proto: BedsheetQM entities: - - uid: 1488 + - uid: 1493 components: - type: Transform rot: -1.5707963267948966 rad @@ -44316,7 +44316,7 @@ entities: parent: 2 - proto: BedsheetRD entities: - - uid: 1489 + - uid: 1494 components: - type: Transform pos: -16.5,-46.5 @@ -44325,103 +44325,103 @@ entities: canCollide: False - proto: BedsheetRed entities: - - uid: 1490 + - uid: 1495 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 1491 + - uid: 1496 components: - type: Transform rot: 1.5707973450558423 rad pos: -57.5,-48.5 parent: 2 - - uid: 38668 + - uid: 38495 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 - parent: 38584 - - uid: 38669 + parent: 38411 + - uid: 38496 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 - parent: 38584 - - uid: 38670 + parent: 38411 + - uid: 38497 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 - parent: 38584 - - uid: 38671 + parent: 38411 + - uid: 38498 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-3.5 - parent: 38584 + parent: 38411 - proto: BedsheetSpawner entities: - - uid: 1492 + - uid: 1497 components: - type: Transform pos: 53.5,-24.5 parent: 2 - - uid: 1493 + - uid: 1498 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 1494 + - uid: 1499 components: - type: Transform pos: 45.5,-23.5 parent: 2 - - uid: 1495 + - uid: 1500 components: - type: Transform pos: 49.5,-23.5 parent: 2 - proto: BedsheetSyndie entities: - - uid: 1496 + - uid: 1501 components: - type: Transform rot: -1.5707953085339508 rad pos: -47.5,-37.5 parent: 2 - - uid: 38672 + - uid: 38499 components: - type: Transform pos: -20.5,27.5 - parent: 38584 + parent: 38411 - proto: BedsheetWhite entities: - - uid: 1497 + - uid: 1502 components: - type: Transform pos: 38.5,-67.5 parent: 2 - - uid: 1498 + - uid: 1503 components: - type: Transform pos: 42.5,-67.5 parent: 2 - - uid: 38673 + - uid: 38500 components: - type: Transform pos: 3.5,34.5 - parent: 38584 + parent: 38411 - proto: Bible entities: - - uid: 1499 + - uid: 1504 components: - type: Transform pos: -16.528536,-73.33123 parent: 2 - proto: BigBox entities: - - uid: 1500 + - uid: 1505 components: - type: Transform pos: 53.44732,-55.470516 @@ -44432,416 +44432,416 @@ entities: showEnts: False occludes: True ents: - - 1501 - - uid: 1502 + - 1506 + - uid: 1507 components: - type: Transform pos: -38.449852,-54.46418 parent: 2 - - uid: 1503 + - uid: 1508 components: - type: Transform pos: -31.03472,-59.428844 parent: 2 - - uid: 1504 + - uid: 1509 components: - type: Transform pos: 41.48744,-27.418045 parent: 2 - proto: BiomassReclaimer entities: - - uid: 1505 + - uid: 1510 components: - type: Transform pos: 10.5,-50.5 parent: 2 - proto: BlastDoor entities: - - uid: 1506 + - uid: 1511 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,56.5 parent: 2 - - uid: 1507 + - uid: 1512 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,56.5 parent: 2 - - uid: 1508 + - uid: 1513 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,61.5 parent: 2 - - uid: 1509 + - uid: 1514 components: - type: Transform pos: -38.5,-44.5 parent: 2 - - uid: 1510 + - uid: 1515 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-7.5 parent: 2 - - uid: 1511 + - uid: 1516 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-17.5 parent: 2 - - uid: 1512 + - uid: 1517 components: - type: MetaData name: арсенал синего кода - type: Transform pos: 58.5,2.5 parent: 2 - - uid: 1513 + - uid: 1518 components: - type: MetaData name: арсенал красного кода - type: Transform pos: 66.5,2.5 parent: 2 - - uid: 1514 + - uid: 1519 components: - type: MetaData name: дополнительный арсенал - type: Transform pos: 62.5,2.5 parent: 2 - - uid: 1515 + - uid: 1520 components: - type: Transform pos: 61.5,12.5 parent: 2 - - uid: 1516 + - uid: 1521 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-17.5 parent: 2 - - uid: 1517 + - uid: 1522 components: - type: Transform pos: -38.5,-39.5 parent: 2 - - uid: 1518 + - uid: 1523 components: - type: Transform pos: -38.5,-45.5 parent: 2 - - uid: 1519 + - uid: 1524 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-68.5 parent: 2 - - uid: 1520 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-6.5 parent: 2 - - uid: 1521 + - uid: 1526 components: - type: Transform pos: 75.5,30.5 parent: 2 - - uid: 1522 + - uid: 1527 components: - type: Transform pos: -49.5,-7.5 parent: 2 - - uid: 1523 + - uid: 1528 components: - type: Transform pos: -49.5,-8.5 parent: 2 - - uid: 1524 + - uid: 1529 components: - type: Transform pos: -49.5,-6.5 parent: 2 - - uid: 1525 + - uid: 1530 components: - type: Transform pos: 76.5,30.5 parent: 2 - - uid: 1526 + - uid: 1531 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-5.5 parent: 2 - - uid: 1527 + - uid: 1532 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,52.5 parent: 2 - - uid: 1528 + - uid: 1533 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,52.5 parent: 2 - - uid: 1529 + - uid: 1534 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,48.5 parent: 2 - - uid: 1530 + - uid: 1535 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,48.5 parent: 2 - - uid: 1531 + - uid: 1536 components: - type: Transform pos: -38.5,-40.5 parent: 2 - - uid: 1532 + - uid: 1537 components: - type: Transform pos: -38.5,-38.5 parent: 2 - - uid: 1533 + - uid: 1538 components: - type: Transform pos: -38.5,-43.5 parent: 2 - - uid: 1534 + - uid: 1539 components: - type: Transform pos: 74.5,30.5 parent: 2 - - uid: 1535 + - uid: 1540 components: - type: Transform pos: -70.5,-8.5 parent: 2 - - uid: 1536 + - uid: 1541 components: - type: Transform pos: -68.5,-8.5 parent: 2 - - uid: 1537 + - uid: 1542 components: - type: Transform pos: -69.5,-8.5 parent: 2 - - uid: 1538 + - uid: 1543 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-17.5 parent: 2 - - uid: 1539 + - uid: 1544 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-43.5 parent: 2 - - uid: 1540 + - uid: 1545 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-46.5 parent: 2 - - uid: 1541 + - uid: 1546 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,81.5 parent: 2 - - uid: 1542 + - uid: 1547 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,80.5 parent: 2 - - uid: 1543 + - uid: 1548 components: - type: Transform pos: -72.5,22.5 parent: 2 - - uid: 1544 + - uid: 1549 components: - type: Transform pos: -62.5,-34.5 parent: 2 - - uid: 1545 + - uid: 1550 components: - type: Transform pos: -62.5,-32.5 parent: 2 - proto: BlastDoorOpen entities: - - uid: 1546 + - uid: 1551 components: - type: Transform pos: -52.5,18.5 parent: 2 - - uid: 1547 + - uid: 1552 components: - type: Transform pos: -53.5,18.5 parent: 2 - - uid: 1548 + - uid: 1553 components: - type: Transform pos: -54.5,18.5 parent: 2 - - uid: 1549 + - uid: 1554 components: - type: Transform pos: -51.5,18.5 parent: 2 - - uid: 1550 + - uid: 1555 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,0.5 parent: 2 - - uid: 1551 + - uid: 1556 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-0.5 parent: 2 - - uid: 1552 + - uid: 1557 components: - type: Transform pos: -53.5,8.5 parent: 2 - - uid: 1553 + - uid: 1558 components: - type: Transform pos: -14.5,16.5 parent: 2 - - uid: 1554 + - uid: 1559 components: - type: Transform pos: -37.5,-30.5 parent: 2 - - uid: 1555 + - uid: 1560 components: - type: Transform pos: 13.5,16.5 parent: 2 - - uid: 1556 + - uid: 1561 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-27.5 parent: 2 - - uid: 1557 + - uid: 1562 components: - type: Transform pos: -41.5,-30.5 parent: 2 - - uid: 1558 + - uid: 1563 components: - type: Transform pos: -50.5,8.5 parent: 2 - - uid: 1559 + - uid: 1564 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 1560 + - uid: 1565 components: - type: Transform pos: -51.5,8.5 parent: 2 - - uid: 1561 + - uid: 1566 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 1562 + - uid: 1567 components: - type: Transform pos: 38.5,5.5 parent: 2 - - uid: 1563 + - uid: 1568 components: - type: Transform pos: 38.5,6.5 parent: 2 - - uid: 1564 + - uid: 1569 components: - type: Transform pos: -41.5,-24.5 parent: 2 - - uid: 1565 + - uid: 1570 components: - type: Transform pos: -33.5,-24.5 parent: 2 - - uid: 1566 + - uid: 1571 components: - type: Transform pos: 13.5,14.5 parent: 2 - - uid: 1567 + - uid: 1572 components: - type: Transform pos: -14.5,15.5 parent: 2 - - uid: 1568 + - uid: 1573 components: - type: Transform pos: -14.5,14.5 parent: 2 - - uid: 1569 + - uid: 1574 components: - type: Transform pos: -33.5,-30.5 parent: 2 - - uid: 1570 + - uid: 1575 components: - type: Transform pos: 13.5,13.5 parent: 2 - - uid: 1571 + - uid: 1576 components: - type: Transform pos: -14.5,13.5 parent: 2 - - uid: 1572 + - uid: 1577 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 1573 + - uid: 1578 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 1574 + - uid: 1579 components: - type: Transform pos: -37.5,-24.5 parent: 2 - - uid: 1575 + - uid: 1580 components: - type: Transform pos: 13.5,15.5 parent: 2 - - uid: 1576 + - uid: 1581 components: - type: Transform pos: 33.5,5.5 parent: 2 - - uid: 1577 + - uid: 1582 components: - type: Transform rot: -1.5707963267948966 rad @@ -44849,7 +44849,7 @@ entities: parent: 2 - proto: BlockGameArcade entities: - - uid: 1578 + - uid: 1583 components: - type: Transform rot: 3.141592653589793 rad @@ -44857,7 +44857,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 1579 + - uid: 1584 components: - type: Transform rot: 3.141592653589793 rad @@ -44865,7 +44865,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 1580 + - uid: 1585 components: - type: Transform rot: -1.5707963267948966 rad @@ -44873,7 +44873,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 1581 + - uid: 1586 components: - type: Transform rot: -1.5707963267948966 rad @@ -44881,7 +44881,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 1582 + - uid: 1587 components: - type: Transform pos: -32.5,-59.5 @@ -44890,14 +44890,14 @@ entities: enabled: False - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 1583 + - uid: 1588 components: - type: Transform pos: -36.5,10.5 parent: 2 - proto: BodyBagFolded entities: - - uid: 1584 + - uid: 1589 components: - type: Transform pos: 5.584937,-48.259304 @@ -44920,7 +44920,7 @@ entities: - 0 - 0 - 0 - - uid: 1585 + - uid: 1590 components: - type: Transform pos: 5.376316,-48.057827 @@ -44943,7 +44943,7 @@ entities: - 0 - 0 - 0 - - uid: 1586 + - uid: 1591 components: - type: Transform pos: 5.376316,-48.44306 @@ -45038,7 +45038,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1588 + - uid: 1592 components: - type: MetaData name: глупая книга @@ -45094,7 +45094,7 @@ entities: [color=#55575a]███████[color=#83776e]█[color=#c9c2ba]█[color=#d3d0cd]██[color=#c9c2ba]█[color=#c6b4a1]█[color=#baaca0]███[color=#ad9b87]█[color=#a19082]██[color=#ad9b87]█[color=#beab98]███[color=#b0a395]██[color=#ad9b87]█[color=#a19082]█[color=#a88f76]██[color=#9b8167]█[color=#4b433c]█[color=#2c2824]██[color=#252320]█████ - proto: BookFeather entities: - - uid: 1589 + - uid: 1593 components: - type: MetaData desc: Книга "Борьба с терроризмом на космической станции" выглядит очень серьезно и профессионально. На обложке изображена космическая станция с несколькими космонавтами, которые явно готовятся к какому-то экстремальному событию. Название книги написано крупными черными буквами на голубом фоне, что придает ей строгость и важность. Авторы, Вадисон Стрэнглер и Михаил Хальтбар, указаны ниже названия в меньшем шрифте. Внутри книги можно найти много полезной информации и практических советов по борьбе с террористической угрозой на космической станции. @@ -45122,7 +45122,7 @@ entities: Борьба с террористами на космической станции является сложной и ответственной задачей, которая требует совместных усилий персонала станции, правоохранительных органов и других заинтересованных сторон. Однако, при правильной подготовке и принятии соответствующих мер безопасности, возможно минимизировать риски террористической угрозы на космической станции. - proto: BookRandom entities: - - uid: 1590 + - uid: 1594 components: - type: MetaData desc: В этой таинсвтенной книге в твердом переплете, Вы сможете открыть для себя целый "внутренний" мир. @@ -45130,12 +45130,12 @@ entities: - type: Transform pos: 6.298485,-48.571903 parent: 2 - - uid: 1591 + - uid: 1595 components: - type: Transform pos: -23.778364,-12.554576 parent: 2 - - uid: 1592 + - uid: 1596 components: - type: MetaData desc: В этой книге много интересных картинок, только вряд ли Вы сможе понять их. @@ -45143,73 +45143,73 @@ entities: - type: Transform pos: 10.142386,-3.4094415 parent: 2 - - uid: 1593 + - uid: 1597 components: - type: Transform pos: -33.672646,-8.453057 parent: 2 - - uid: 1594 + - uid: 1598 components: - type: Transform pos: -23.476131,-12.262708 parent: 2 - - uid: 1595 + - uid: 1599 components: - type: Transform pos: -23.232197,-12.535765 parent: 2 - - uid: 1596 + - uid: 1600 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.507277,-8.33971 parent: 2 - - uid: 1597 + - uid: 1601 components: - type: Transform pos: -21.537008,-4.499959 parent: 2 - - uid: 1598 + - uid: 1602 components: - type: Transform pos: -21.771383,-4.484334 parent: 2 - - uid: 1599 + - uid: 1603 components: - type: Transform pos: -22.67433,0.54259586 parent: 2 - - uid: 1600 + - uid: 1604 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.501118,-8.318875 parent: 2 - - uid: 1601 + - uid: 1605 components: - type: Transform pos: -27.520205,-11.001986 parent: 2 - proto: BookRandomStory entities: - - uid: 1602 + - uid: 1606 components: - type: Transform pos: 82.764046,5.5351195 parent: 2 - - uid: 1603 + - uid: 1607 components: - type: Transform rot: -1.5707953085339508 rad pos: 81.826546,5.6757445 parent: 2 - - uid: 1604 + - uid: 1608 components: - type: Transform rot: -1.5707953085339508 rad pos: -40.3486,44.27363 parent: 2 - - uid: 1605 + - uid: 1609 components: - type: Transform rot: 3.141593671850739 rad @@ -45217,179 +45217,179 @@ entities: parent: 2 - proto: BookSecurity entities: - - uid: 1606 + - uid: 1610 components: - type: Transform pos: -22.528498,0.6467625 parent: 2 - proto: Bookshelf entities: - - uid: 1607 + - uid: 1611 components: - type: Transform pos: -33.5,-6.5 parent: 2 - - uid: 1608 + - uid: 1612 components: - type: Transform pos: -27.5,2.5 parent: 2 - - uid: 1609 + - uid: 1613 components: - type: Transform pos: -26.5,2.5 parent: 2 - - uid: 1610 + - uid: 1614 components: - type: Transform pos: -14.5,7.5 parent: 2 - - uid: 1611 + - uid: 1615 components: - type: Transform pos: -14.5,11.5 parent: 2 - - uid: 1612 + - uid: 1616 components: - type: Transform pos: -13.5,-64.5 parent: 2 - - uid: 1613 + - uid: 1617 components: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 1614 + - uid: 1618 components: - type: Transform pos: -19.5,-64.5 parent: 2 - proto: BookshelfFilled entities: - - uid: 1615 + - uid: 1619 components: - type: Transform pos: -30.5,-4.5 parent: 2 - - uid: 1616 + - uid: 1620 components: - type: Transform pos: -34.5,-4.5 parent: 2 - - uid: 1617 + - uid: 1621 components: - type: Transform pos: -34.5,-6.5 parent: 2 - - uid: 1618 + - uid: 1622 components: - type: Transform pos: -33.5,-4.5 parent: 2 - - uid: 1619 + - uid: 1623 components: - type: Transform pos: -26.5,-4.5 parent: 2 - - uid: 1620 + - uid: 1624 components: - type: Transform pos: -53.5,-48.5 parent: 2 - - uid: 1621 + - uid: 1625 components: - type: Transform pos: -52.5,-48.5 parent: 2 - - uid: 1622 + - uid: 1626 components: - type: Transform pos: -48.5,-42.5 parent: 2 - - uid: 1623 + - uid: 1627 components: - type: Transform pos: 72.5,-39.5 parent: 2 - - uid: 1624 + - uid: 1628 components: - type: Transform pos: -28.5,2.5 parent: 2 - - uid: 1625 + - uid: 1629 components: - type: Transform pos: -29.5,2.5 parent: 2 - - uid: 1626 + - uid: 1630 components: - type: Transform pos: -29.5,-4.5 parent: 2 - - uid: 1627 + - uid: 1631 components: - type: Transform pos: -21.5,-12.5 parent: 2 - - uid: 1628 + - uid: 1632 components: - type: Transform pos: -26.5,-6.5 parent: 2 - - uid: 1629 + - uid: 1633 components: - type: Transform pos: -30.5,-6.5 parent: 2 - - uid: 1630 + - uid: 1634 components: - type: Transform pos: -29.5,-67.5 parent: 2 - - uid: 1631 + - uid: 1635 components: - type: Transform pos: -29.5,-66.5 parent: 2 - - uid: 1632 + - uid: 1636 components: - type: Transform pos: 82.5,7.5 parent: 2 - - uid: 1633 + - uid: 1637 components: - type: Transform pos: 83.5,7.5 parent: 2 - - uid: 1634 + - uid: 1638 components: - type: Transform pos: 81.5,7.5 parent: 2 - - uid: 1635 + - uid: 1639 components: - type: Transform pos: -52.5,-35.5 parent: 2 - - uid: 38674 + - uid: 38501 components: - type: Transform pos: -10.5,-7.5 - parent: 38584 - - uid: 38675 + parent: 38411 + - uid: 38502 components: - type: Transform pos: 3.5,-5.5 - parent: 38584 + parent: 38411 - proto: BoozeDispenser entities: - - uid: 1636 + - uid: 1640 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-47.5 parent: 2 - - uid: 1637 + - uid: 1641 components: - type: Transform rot: -1.5707963267948966 rad @@ -45415,24 +45415,24 @@ entities: ents: [] - proto: BorgCharger entities: - - uid: 1638 + - uid: 1642 components: - type: Transform pos: -78.5,11.5 parent: 2 - - uid: 1639 + - uid: 1643 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-6.5 parent: 2 - - uid: 1640 + - uid: 1644 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-6.5 parent: 2 - - uid: 1641 + - uid: 1645 components: - type: Transform rot: 3.141592653589793 rad @@ -45440,37 +45440,37 @@ entities: parent: 2 - proto: BorgModuleClowning entities: - - uid: 1642 + - uid: 1646 components: - type: Transform pos: 10.353839,70.644646 parent: 2 - proto: BoxBeanbag entities: - - uid: 1643 + - uid: 1647 components: - type: Transform pos: -3.5094411,38.647697 parent: 2 - - uid: 1644 + - uid: 1648 components: - type: Transform pos: -3.4469776,38.932606 parent: 2 - - uid: 1646 + - uid: 1650 components: - type: Transform - parent: 1645 + parent: 1649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1649 + - uid: 1653 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.413765,9.540251 parent: 2 - - uid: 1650 + - uid: 1654 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -45478,137 +45478,137 @@ entities: parent: 2 - proto: BoxBodyBag entities: - - uid: 1651 + - uid: 1655 components: - type: Transform pos: 14.516084,-57.596573 parent: 2 - - uid: 1652 + - uid: 1656 components: - type: Transform pos: 14.64542,-37.37316 parent: 2 - - uid: 1653 + - uid: 1657 components: - type: Transform pos: 14.02042,-37.388786 parent: 2 - - uid: 1654 + - uid: 1658 components: - type: Transform pos: 72.50579,23.559893 parent: 2 - - uid: 1655 + - uid: 1659 components: - type: Transform pos: -23.5,-74.5 parent: 2 - type: Physics canCollide: False - - uid: 1656 + - uid: 1660 components: - type: Transform pos: -23.379358,-74.404076 parent: 2 - type: Physics canCollide: False - - uid: 1657 + - uid: 1661 components: - type: Transform pos: 26.500849,9.893845 parent: 2 - - uid: 1658 + - uid: 1662 components: - type: Transform pos: 35.57008,-18.332962 parent: 2 - type: Physics canCollide: False - - uid: 1659 + - uid: 1663 components: - type: Transform pos: -24.379358,-64.44205 parent: 2 - type: Physics canCollide: False - - uid: 1660 + - uid: 1664 components: - type: Transform pos: 4.458846,-52.43695 parent: 2 - - uid: 1661 + - uid: 1665 components: - type: Transform pos: 8.5624,-42.649765 parent: 2 - - uid: 1662 + - uid: 1666 components: - type: Transform pos: 13.411045,-37.388786 parent: 2 - proto: BoxBottle entities: - - uid: 881 + - uid: 873 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1663 + - uid: 1667 components: - type: Transform pos: -20.540075,-60.426083 parent: 2 - proto: BoxCandleSmall entities: - - uid: 1664 + - uid: 1668 components: - type: Transform pos: -22.343113,-4.447041 parent: 2 - proto: BoxCardboard entities: - - uid: 1665 + - uid: 1669 components: - type: Transform pos: -18.498352,-32.30649 parent: 2 - - uid: 1666 + - uid: 1670 components: - type: Transform pos: -8.344327,-54.423183 parent: 2 - - uid: 1667 + - uid: 1671 components: - type: Transform pos: -8.674554,-54.618874 parent: 2 - proto: BoxEvidenceMarkers entities: - - uid: 1669 + - uid: 1673 components: - type: Transform - parent: 1668 + parent: 1672 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxFlashbang entities: - - uid: 1670 + - uid: 1674 components: - type: Transform pos: 58.46948,15.545851 parent: 2 - proto: BoxFolderBase entities: - - uid: 1671 + - uid: 1675 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.467598,-4.2868743 parent: 2 - - uid: 1672 + - uid: 1676 components: - type: Transform rot: 1.5707963267948966 rad @@ -45616,150 +45616,150 @@ entities: parent: 2 - proto: BoxFolderBlack entities: - - uid: 1673 + - uid: 1677 components: - type: Transform pos: 34.33272,2.6378307 parent: 2 - - uid: 1674 + - uid: 1678 components: - type: Transform pos: -21.65159,-7.2404675 parent: 2 - - uid: 1675 + - uid: 1679 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.469776,27.71739 parent: 2 - - uid: 1676 + - uid: 1680 components: - type: Transform pos: 72.83203,-43.635002 parent: 2 - - uid: 38676 + - uid: 38503 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.489042,33.8674 - parent: 38584 + parent: 38411 - proto: BoxFolderBlue entities: - - uid: 1677 + - uid: 1681 components: - type: Transform pos: -11.722464,-1.4301846 parent: 2 - - uid: 1678 + - uid: 1682 components: - type: Transform pos: -24.381498,22.74946 parent: 2 - type: Physics canCollide: False - - uid: 1679 + - uid: 1683 components: - type: Transform pos: 23.637524,-46.348213 parent: 2 - type: Physics canCollide: False - - uid: 1680 + - uid: 1684 components: - type: Transform pos: -62.344925,9.596943 parent: 2 - type: Physics canCollide: False - - uid: 1681 + - uid: 1685 components: - type: Transform pos: 24.450024,-42.441963 parent: 2 - type: Physics canCollide: False - - uid: 1682 + - uid: 1686 components: - type: Transform pos: -13.67326,5.600397 parent: 2 - - uid: 1683 + - uid: 1687 components: - type: Transform pos: 8.528144,7.5618477 parent: 2 - type: Physics canCollide: False - - uid: 1684 + - uid: 1688 components: - type: Transform pos: 53.362377,16.215246 parent: 2 - - uid: 1685 + - uid: 1689 components: - type: Transform pos: -4.5355453,-60.37103 parent: 2 - - uid: 1686 + - uid: 1690 components: - type: Transform pos: -19.490316,-49.45443 parent: 2 - - uid: 1687 + - uid: 1691 components: - type: Transform pos: 1.5749657,13.635027 parent: 2 - type: Physics canCollide: False - - uid: 1688 + - uid: 1692 components: - type: Transform pos: 51.525723,-22.433455 parent: 2 - type: Physics canCollide: False - - uid: 1689 + - uid: 1693 components: - type: Transform pos: 53.831127,16.168371 parent: 2 - - uid: 1690 + - uid: 1694 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,0.5 parent: 2 - - uid: 1691 + - uid: 1695 components: - type: Transform pos: 53.643627,16.105871 parent: 2 - - uid: 1692 + - uid: 1696 components: - type: Transform pos: -12.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 1693 + - uid: 1697 components: - type: Transform pos: 8.361257,0.68303835 parent: 2 - - uid: 1694 + - uid: 1698 components: - type: Transform pos: 53.471752,16.152746 parent: 2 - - uid: 1695 + - uid: 1699 components: - type: Transform pos: -11.316215,-1.3208096 parent: 2 - proto: BoxFolderClipboard entities: - - uid: 1696 + - uid: 1700 components: - type: Transform rot: -1.5707963267948966 rad @@ -45767,65 +45767,65 @@ entities: parent: 2 - proto: BoxFolderGrey entities: - - uid: 1697 + - uid: 1701 components: - type: Transform pos: -27.454956,20.554731 parent: 2 - type: Physics canCollide: False - - uid: 1698 + - uid: 1702 components: - type: Transform pos: -23.4916,-4.411229 parent: 2 - type: Physics canCollide: False - - uid: 1699 + - uid: 1703 components: - type: Transform pos: -34.475735,-11.38378 parent: 2 - type: Physics canCollide: False - - uid: 1700 + - uid: 1704 components: - type: Transform pos: -20.373795,-42.708656 parent: 2 - - uid: 1701 + - uid: 1705 components: - type: Transform pos: -20.56322,-42.446686 parent: 2 - - uid: 1702 + - uid: 1706 components: - type: Transform pos: 37.533417,-10.380364 parent: 2 - type: Physics canCollide: False - - uid: 1703 + - uid: 1707 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.44036,62.57854 parent: 2 - - uid: 1704 + - uid: 1708 components: - type: Transform pos: -13.474747,-79.39744 parent: 2 - type: Physics canCollide: False - - uid: 1705 + - uid: 1709 components: - type: Transform pos: 36.564667,-13.317864 parent: 2 - type: Physics canCollide: False - - uid: 1706 + - uid: 1710 components: - type: Transform rot: 1.5707963267948966 rad @@ -45833,276 +45833,276 @@ entities: parent: 2 - proto: BoxFolderRed entities: - - uid: 1707 + - uid: 1711 components: - type: Transform pos: 53.315502,16.699621 parent: 2 - - uid: 1708 + - uid: 1712 components: - type: Transform pos: 53.456127,16.590246 parent: 2 - - uid: 1709 + - uid: 1713 components: - type: Transform pos: 72.5231,22.197773 parent: 2 - - uid: 1710 + - uid: 1714 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.463715,60.4104 parent: 2 - - uid: 1711 + - uid: 1715 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.41077,27.525648 parent: 2 - - uid: 1712 + - uid: 1716 components: - type: Transform pos: 34.494984,2.5345864 parent: 2 - - uid: 1713 + - uid: 1717 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 1714 + - uid: 1718 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.56962,9.853551 parent: 2 - - uid: 1715 + - uid: 1719 components: - type: Transform pos: 41.496258,20.571657 parent: 2 - type: Physics canCollide: False - - uid: 1716 + - uid: 1720 components: - type: Transform pos: 38.53962,22.54246 parent: 2 - type: Physics canCollide: False - - uid: 1717 + - uid: 1721 components: - type: Transform pos: 51.53175,-14.501758 parent: 2 - type: Physics canCollide: False - - uid: 1718 + - uid: 1722 components: - type: Transform pos: -11.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 1719 + - uid: 1723 components: - type: Transform pos: 53.393627,16.637121 parent: 2 - - uid: 1720 + - uid: 1724 components: - type: Transform pos: 72.72266,-43.3225 parent: 2 - - uid: 1721 + - uid: 1725 components: - type: Transform pos: 52.447506,27.564688 parent: 2 - - uid: 1722 + - uid: 1726 components: - type: Transform pos: 52.68188,27.642813 parent: 2 - - uid: 1723 + - uid: 1727 components: - type: Transform rot: 3.141592653589793 rad pos: 57.56259,29.643097 parent: 2 - - uid: 1724 + - uid: 1728 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.61116,-4.209439 parent: 2 - - uid: 1725 + - uid: 1729 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.464394,-4.3928976 parent: 2 - - uid: 1726 + - uid: 1730 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.33597,-3.9342504 parent: 2 - - uid: 1727 + - uid: 1731 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.592815,-3.5673323 parent: 2 - - uid: 1728 + - uid: 1732 components: - type: Transform rot: 3.141592653589793 rad pos: 23.514263,21.661837 parent: 2 - - uid: 1729 + - uid: 1733 components: - type: Transform rot: 3.141592653589793 rad pos: 23.311138,21.599335 parent: 2 - - uid: 1730 + - uid: 1734 components: - type: Transform rot: 3.141592653589793 rad pos: 23.108013,21.661835 parent: 2 - - uid: 38677 + - uid: 38504 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.385786,33.985413 - parent: 38584 + parent: 38411 - proto: BoxFolderWhite entities: - - uid: 1732 + - uid: 1736 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1733 + - uid: 1737 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1734 + - uid: 1738 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1735 + - uid: 1739 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1746 + - uid: 1750 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.404982,-37.37876 parent: 2 - - uid: 1747 + - uid: 1751 components: - type: Transform pos: 23.325024,-46.504463 parent: 2 - type: Physics canCollide: False - - uid: 1748 + - uid: 1752 components: - type: Transform rot: 6.283185307179586 rad pos: -25.533741,-30.547684 parent: 2 - - uid: 1749 + - uid: 1753 components: - type: Transform pos: 34.627636,-30.622177 parent: 2 - type: Physics canCollide: False - - uid: 1750 + - uid: 1754 components: - type: Transform rot: 3.141592653589793 rad pos: 3.420166,-16.41551 parent: 2 - - uid: 1751 + - uid: 1755 components: - type: Transform pos: 3.4281096,-27.398321 parent: 2 - type: Physics canCollide: False - - uid: 1752 + - uid: 1756 components: - type: Transform pos: 53.815502,16.605871 parent: 2 - - uid: 1753 + - uid: 1757 components: - type: Transform pos: 22.450024,-42.441963 parent: 2 - type: Physics canCollide: False - - uid: 1754 + - uid: 1758 components: - type: Transform pos: 21.190166,-24.38206 parent: 2 - - uid: 1755 + - uid: 1759 components: - type: Transform pos: 42.5,-69.5 parent: 2 - type: Physics canCollide: False - - uid: 1756 + - uid: 1760 components: - type: Transform pos: 41.5,-74.5 parent: 2 - type: Physics canCollide: False - - uid: 1757 + - uid: 1761 components: - type: Transform pos: 21.601835,-24.389095 parent: 2 - - uid: 1758 + - uid: 1762 components: - type: Transform pos: 39.5,-74.5 parent: 2 - type: Physics canCollide: False - - uid: 1759 + - uid: 1763 components: - type: Transform pos: 12.018113,-52.407093 parent: 2 - - uid: 1760 + - uid: 1764 components: - type: Transform pos: 53.784252,16.699621 parent: 2 - - uid: 1761 + - uid: 1765 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.590744,-60.30695 parent: 2 - - uid: 1762 + - uid: 1766 components: - type: Transform rot: -1.5707963267948966 rad @@ -46110,53 +46110,53 @@ entities: parent: 2 - proto: BoxFolderYellow entities: - - uid: 1763 + - uid: 1767 components: - type: Transform pos: -24.600248,22.53071 parent: 2 - type: Physics canCollide: False - - uid: 1764 + - uid: 1768 components: - type: Transform pos: -62.594925,9.409443 parent: 2 - type: Physics canCollide: False - - uid: 1765 + - uid: 1769 components: - type: Transform pos: 27.524498,36.5593 parent: 2 - type: Physics canCollide: False - - uid: 1766 + - uid: 1770 components: - type: Transform pos: -10.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 1767 + - uid: 1771 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.366608,62.740784 parent: 2 - - uid: 1768 + - uid: 1772 components: - type: Transform pos: 72.33203,-43.338123 parent: 2 - - uid: 1769 + - uid: 1773 components: - type: Transform pos: 9.74218,32.600994 parent: 2 - proto: BoxForensicPad entities: - - uid: 1770 + - uid: 1774 components: - type: Transform rot: 3.141592653589793 rad @@ -46164,34 +46164,34 @@ entities: parent: 2 - proto: BoxHandcuff entities: - - uid: 1771 + - uid: 1775 components: - type: Transform pos: 54.270676,3.577455 parent: 2 - - uid: 38678 + - uid: 38505 components: - type: Transform pos: 11.35289,-6.4263306 - parent: 38584 - - uid: 38679 + parent: 38411 + - uid: 38506 components: - type: Transform pos: 11.63414,-6.5200806 - parent: 38584 + parent: 38411 - proto: BoxHug entities: - - uid: 1772 + - uid: 1776 components: - type: Transform pos: -12.620868,53.679634 parent: 2 - - uid: 1773 + - uid: 1777 components: - type: Transform pos: -12.364026,54.00986 parent: 2 - - uid: 1774 + - uid: 1778 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -46199,252 +46199,252 @@ entities: parent: 2 - proto: BoxInflatable entities: - - uid: 1775 + - uid: 1779 components: - type: Transform pos: -52.800545,35.60781 parent: 2 - - uid: 1776 + - uid: 1780 components: - type: Transform pos: -52.373463,35.545307 parent: 2 - proto: BoxingBell entities: - - uid: 1777 + - uid: 1781 components: - type: Transform pos: 59.5,-16.5 parent: 2 - proto: BoxLatexGloves entities: - - uid: 882 + - uid: 874 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxLethalshot entities: - - uid: 1778 + - uid: 1782 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.472424,8.262838 parent: 2 - - uid: 1779 + - uid: 1783 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.472424,8.262838 parent: 2 - - uid: 1780 + - uid: 1784 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.472424,8.262838 parent: 2 - - uid: 1781 + - uid: 1785 components: - type: Transform pos: 67.528076,8.772167 parent: 2 - - uid: 1782 + - uid: 1786 components: - type: Transform pos: 67.51245,8.787792 parent: 2 - - uid: 38680 + - uid: 38507 components: - type: Transform pos: 11.57361,-3.4204102 - parent: 38584 + parent: 38411 - proto: BoxLightbulb entities: - - uid: 1783 + - uid: 1787 components: - type: Transform pos: -0.7455249,50.618034 parent: 2 - proto: BoxLightMixed entities: - - uid: 1784 + - uid: 1788 components: - type: Transform pos: -40.493076,-17.385798 parent: 2 - type: Physics canCollide: False - - uid: 1785 + - uid: 1789 components: - type: Transform pos: -77.375374,-30.29104 parent: 2 - type: Physics canCollide: False - - uid: 1786 + - uid: 1790 components: - type: Transform pos: 3.3950934,31.614307 parent: 2 - type: Physics canCollide: False - - uid: 1787 + - uid: 1791 components: - type: Transform pos: -60.58293,20.484503 parent: 2 - type: Physics canCollide: False - - uid: 1788 + - uid: 1792 components: - type: Transform pos: -77.562874,-30.41604 parent: 2 - type: Physics canCollide: False - - uid: 1789 + - uid: 1793 components: - type: Transform pos: 12.511247,75.64397 parent: 2 - type: Physics canCollide: False - - uid: 1790 + - uid: 1794 components: - type: Transform pos: -0.7948296,50.41453 parent: 2 - - uid: 1791 + - uid: 1795 components: - type: Transform pos: 23.524172,8.5619135 parent: 2 - type: Physics canCollide: False - - uid: 1792 + - uid: 1796 components: - type: Transform pos: -45.503593,-17.382376 parent: 2 - type: Physics canCollide: False - - uid: 1793 + - uid: 1797 components: - type: Transform pos: -24.500605,11.746101 parent: 2 - type: Physics canCollide: False - - uid: 1794 + - uid: 1798 components: - type: Transform pos: -60.33293,20.609503 parent: 2 - type: Physics canCollide: False - - uid: 1795 + - uid: 1799 components: - type: Transform pos: 16.412798,54.622955 parent: 2 - type: Physics canCollide: False - - uid: 1796 + - uid: 1800 components: - type: Transform pos: -54.576714,9.590466 parent: 2 - - uid: 1797 + - uid: 1801 components: - type: Transform pos: -21.497026,15.557969 parent: 2 - - uid: 1798 + - uid: 1802 components: - type: Transform pos: 77.48052,-43.48631 parent: 2 - - uid: 1799 + - uid: 1803 components: - type: Transform pos: -54.89915,12.543412 parent: 2 - - uid: 1800 + - uid: 1804 components: - type: Transform pos: -54.6179,12.668413 parent: 2 - proto: BoxLighttube entities: - - uid: 1801 + - uid: 1805 components: - type: Transform pos: -48.42282,28.724625 parent: 2 - - uid: 1802 + - uid: 1806 components: - type: Transform pos: -0.75805306,50.378105 parent: 2 - proto: BoxMagazinePistolPractice entities: - - uid: 1803 + - uid: 1807 components: - type: Transform pos: 56.382652,19.638697 parent: 2 - proto: BoxMagazinePistolSubMachineGun entities: - - uid: 1804 + - uid: 1808 components: - type: Transform pos: 65.45541,7.651907 parent: 2 - - uid: 1805 + - uid: 1809 components: - type: Transform pos: 67.50228,9.573781 parent: 2 - proto: BoxMagazineRifle entities: - - uid: 1806 + - uid: 1810 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 65.546974,8.380223 parent: 2 - - uid: 1807 + - uid: 1811 components: - type: Transform pos: 65.5,9.5 parent: 2 - - uid: 1808 + - uid: 1812 components: - type: Transform pos: 65.5,9.5 parent: 2 - proto: BoxMesonScanners entities: - - uid: 1809 + - uid: 1813 components: - type: Transform pos: -55.5,-1.5 parent: 2 - - uid: 1810 + - uid: 1814 components: - type: Transform pos: -59.684364,54.73873 parent: 2 - proto: BoxMousetrap entities: - - uid: 1811 + - uid: 1815 components: - type: Transform pos: -0.78879595,50.836056 parent: 2 - - uid: 1812 + - uid: 1816 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -46452,12 +46452,12 @@ entities: parent: 2 - proto: BoxMouthSwab entities: - - uid: 1813 + - uid: 1817 components: - type: Transform pos: -28.29159,45.5603 parent: 2 - - uid: 1814 + - uid: 1818 components: - type: Transform rot: 1.5707963267948966 rad @@ -46465,41 +46465,41 @@ entities: parent: 2 - proto: BoxMRE entities: - - uid: 1815 + - uid: 1819 components: - type: Transform pos: 44.472935,13.617706 parent: 2 - - uid: 1816 + - uid: 1820 components: - type: Transform pos: 44.48856,9.602081 parent: 2 - - uid: 1817 + - uid: 1821 components: - type: Transform pos: 41.503044,1.6465976 parent: 2 - - uid: 1818 + - uid: 1822 components: - type: Transform pos: 44.496708,1.6549377 parent: 2 - - uid: 1819 + - uid: 1823 components: - type: Transform pos: 41.555332,11.59931 parent: 2 - proto: BoxPDA entities: - - uid: 1820 + - uid: 1824 components: - type: Transform pos: -8.625056,5.687517 parent: 2 - proto: BoxPerformer entities: - - uid: 1821 + - uid: 1825 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -46507,27 +46507,27 @@ entities: parent: 2 - proto: BoxSechud entities: - - uid: 1822 + - uid: 1826 components: - type: Transform pos: 48.51906,18.530525 parent: 2 - proto: BoxShotgunSlug entities: - - uid: 1823 + - uid: 1827 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.472416,8.580834 parent: 2 - - uid: 1824 + - uid: 1828 components: - type: Transform pos: 67.51245,8.412792 parent: 2 - proto: BoxSterileMask entities: - - uid: 1825 + - uid: 1829 components: - type: Transform pos: 36.289875,-71.40648 @@ -46536,63 +46536,68 @@ entities: canCollide: False - proto: BoxSyringe entities: - - uid: 883 + - uid: 875 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1826 + - uid: 1830 components: - type: Transform - pos: 6.549246,-38.18099 + pos: 3.3280249,-37.36728 parent: 2 - - uid: 1827 + - uid: 1831 components: - type: Transform pos: 69.94294,12.308502 parent: 2 - - uid: 1828 + - uid: 1832 components: - type: Transform pos: 68.5,-3.5 parent: 2 - - uid: 1829 + - uid: 1833 components: - type: Transform pos: 26.675022,-69.30446 parent: 2 - type: Physics canCollide: False - - uid: 1830 + - uid: 1834 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.290853,-43.435093 parent: 2 + - uid: 17449 + components: + - type: Transform + pos: 3.6249,-37.570404 + parent: 2 - proto: BoxZiptie entities: - - uid: 38681 + - uid: 38508 components: - type: Transform pos: 11.542718,-1.2171936 - parent: 38584 + parent: 38411 - proto: BrbSign entities: - - uid: 1831 + - uid: 1835 components: - type: Transform pos: -13.126385,5.600397 parent: 2 - - uid: 1832 + - uid: 1836 components: - type: Transform pos: -15.521692,-3.7452946 parent: 2 - proto: BriefcaseBrown entities: - - uid: 1731 + - uid: 1735 components: - type: Transform pos: 15.414117,-48.366436 @@ -46603,144 +46608,144 @@ entities: showEnts: False occludes: True ents: - - 1734 - - 1735 - - 1733 - - 1732 - - 1741 + - 1738 + - 1739 - 1737 - - 1740 - - 1744 - - 1742 - - 1743 - 1736 - 1745 - - 1739 - - 1738 - - uid: 1833 + - 1741 + - 1744 + - 1748 + - 1746 + - 1747 + - 1740 + - 1749 + - 1743 + - 1742 + - uid: 1837 components: - type: Transform pos: 33.50666,2.6525807 parent: 2 - - uid: 1834 + - uid: 1838 components: - type: Transform pos: 38.408417,-12.442864 parent: 2 - type: Physics canCollide: False - - uid: 1835 + - uid: 1839 components: - type: Transform pos: 53.511616,-54.341568 parent: 2 - type: Physics canCollide: False - - uid: 1837 + - uid: 1841 components: - type: Transform - parent: 1836 + parent: 1840 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1840 + - uid: 1844 components: - type: Transform pos: 40.473694,-55.352642 parent: 2 - type: Physics canCollide: False - - uid: 1841 + - uid: 1845 components: - type: Transform pos: 63.55921,-19.215805 parent: 2 - - uid: 1842 + - uid: 1846 components: - type: Transform pos: 63.481087,-19.60643 parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 1843 + - uid: 1847 components: - type: Transform pos: -15.5,7.5 parent: 2 - type: Physics canCollide: False - - uid: 1844 + - uid: 1848 components: - type: Transform pos: 42.308758,23.63735 parent: 2 - type: Physics canCollide: False - - uid: 1845 + - uid: 1849 components: - type: Transform rot: 3.141592653589793 rad pos: 26.493849,0.5424672 parent: 2 - - uid: 1846 + - uid: 1850 components: - type: Transform pos: 30.454538,-2.394278 parent: 2 - - uid: 1847 + - uid: 1851 components: - type: Transform pos: -3.4562843,13.666277 parent: 2 - type: Physics canCollide: False - - uid: 1848 + - uid: 1852 components: - type: Transform pos: -22.49046,-10.098504 parent: 2 - proto: BrigmedicPDA entities: - - uid: 1849 + - uid: 1853 components: - type: Transform pos: -8.5,5.5 parent: 2 - proto: BrigTimer entities: - - uid: 1850 + - uid: 1854 components: - type: Transform pos: 45.5,-0.5 parent: 2 - - uid: 1851 + - uid: 1855 components: - type: Transform pos: 57.5,-1.5 parent: 2 - - uid: 1852 + - uid: 1856 components: - type: Transform pos: 45.5,7.5 parent: 2 - - uid: 1853 + - uid: 1857 components: - type: Transform pos: 45.5,11.5 parent: 2 - - uid: 1854 + - uid: 1858 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,10.5 parent: 2 - - uid: 1855 + - uid: 1859 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,2.5 parent: 2 - - uid: 1856 + - uid: 1860 components: - type: Transform rot: -1.5707963267948966 rad @@ -46748,19 +46753,19 @@ entities: parent: 2 - proto: BrokenBottle entities: - - uid: 1857 + - uid: 1861 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.512104,65.64481 parent: 2 - - uid: 1858 + - uid: 1862 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.051556,-35.48419 parent: 2 - - uid: 1859 + - uid: 1863 components: - type: Transform rot: 1.5707963267948966 rad @@ -46768,37 +46773,37 @@ entities: parent: 2 - proto: BruteAutoInjector entities: - - uid: 884 + - uid: 876 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Brutepack entities: - - uid: 1860 + - uid: 1864 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.497957,-24.46766 parent: 2 - - uid: 1861 + - uid: 1865 components: - type: Transform pos: 32.489788,-31.352707 parent: 2 - - uid: 1862 + - uid: 1866 components: - type: Transform pos: -31.58165,-42.336353 parent: 2 - - uid: 1863 + - uid: 1867 components: - type: Transform pos: 31.735588,-41.564713 parent: 2 - - uid: 1864 + - uid: 1868 components: - type: Transform rot: 3.141592653589793 rad @@ -46806,81 +46811,81 @@ entities: parent: 2 - proto: Bucket entities: - - uid: 1865 + - uid: 1869 components: - type: Transform pos: 70.47746,19.483463 parent: 2 - - uid: 1866 + - uid: 1870 components: - type: Transform pos: 3.6955166,-48.677258 parent: 2 - - uid: 1867 + - uid: 1871 components: - type: Transform pos: -38.58966,34.48895 parent: 2 - - uid: 1869 + - uid: 1873 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1879 + - uid: 1883 components: - type: Transform pos: 21.446554,-22.521786 parent: 2 - type: Physics canCollide: False - - uid: 1880 + - uid: 1884 components: - type: Transform pos: -76.531624,-29.54104 parent: 2 - type: Physics canCollide: False - - uid: 1881 + - uid: 1885 components: - type: Transform pos: -28.959202,55.452602 parent: 2 - - uid: 1882 + - uid: 1886 components: - type: Transform pos: -27.896702,55.515106 parent: 2 - - uid: 1883 + - uid: 1887 components: - type: Transform pos: 3.7923422,54.487797 parent: 2 - - uid: 1884 + - uid: 1888 components: - type: Transform pos: 3.886092,54.800297 parent: 2 - proto: BurnAutoInjector entities: - - uid: 885 + - uid: 877 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ButchCleaver entities: - - uid: 1885 + - uid: 1889 components: - type: Transform pos: -28.612309,-72.15309 parent: 2 - proto: ButtonFrameCautionSecurity entities: - - uid: 1886 + - uid: 1890 components: - type: Transform rot: -1.5707953085339508 rad @@ -46888,29094 +46893,29094 @@ entities: parent: 2 - proto: CableApcExtension entities: - - uid: 1887 + - uid: 1891 components: - type: Transform pos: 43.5,-6.5 parent: 2 - - uid: 1888 + - uid: 1892 components: - type: Transform pos: 13.5,-8.5 parent: 2 - - uid: 1889 + - uid: 1893 components: - type: Transform pos: -15.5,-8.5 parent: 2 - - uid: 1890 + - uid: 1894 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 1891 + - uid: 1895 components: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 1892 + - uid: 1896 components: - type: Transform pos: -4.5,30.5 parent: 2 - - uid: 1893 + - uid: 1897 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 1894 + - uid: 1898 components: - type: Transform pos: 76.5,6.5 parent: 2 - - uid: 1895 + - uid: 1899 components: - type: Transform pos: -48.5,-27.5 parent: 2 - - uid: 1896 + - uid: 1900 components: - type: Transform pos: -49.5,-27.5 parent: 2 - - uid: 1897 + - uid: 1901 components: - type: Transform pos: -51.5,-27.5 parent: 2 - - uid: 1898 + - uid: 1902 components: - type: Transform pos: -51.5,-26.5 parent: 2 - - uid: 1899 + - uid: 1903 components: - type: Transform pos: -14.5,37.5 parent: 2 - - uid: 1900 + - uid: 1904 components: - type: Transform pos: 80.5,-2.5 parent: 2 - - uid: 1901 + - uid: 1905 components: - type: Transform pos: -56.5,-48.5 parent: 2 - - uid: 1902 + - uid: 1906 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 1903 + - uid: 1907 components: - type: Transform pos: -14.5,36.5 parent: 2 - - uid: 1904 + - uid: 1908 components: - type: Transform pos: 38.5,-4.5 parent: 2 - - uid: 1905 + - uid: 1909 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 1906 + - uid: 1910 components: - type: Transform pos: 41.5,-4.5 parent: 2 - - uid: 1907 + - uid: 1911 components: - type: Transform pos: 39.5,-4.5 parent: 2 - - uid: 1908 + - uid: 1912 components: - type: Transform pos: 92.5,4.5 parent: 2 - - uid: 1909 + - uid: 1913 components: - type: Transform pos: 94.5,3.5 parent: 2 - - uid: 1910 + - uid: 1914 components: - type: Transform pos: 97.5,-0.5 parent: 2 - - uid: 1911 + - uid: 1915 components: - type: Transform pos: 94.5,4.5 parent: 2 - - uid: 1912 + - uid: 1916 components: - type: Transform pos: 90.5,9.5 parent: 2 - - uid: 1913 + - uid: 1917 components: - type: Transform pos: 94.5,-0.5 parent: 2 - - uid: 1914 + - uid: 1918 components: - type: Transform pos: 94.5,0.5 parent: 2 - - uid: 1915 + - uid: 1919 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 1916 + - uid: 1920 components: - type: Transform pos: -67.5,-44.5 parent: 2 - - uid: 1917 + - uid: 1921 components: - type: Transform pos: -67.5,-43.5 parent: 2 - - uid: 1918 + - uid: 1922 components: - type: Transform pos: -66.5,-45.5 parent: 2 - - uid: 1919 + - uid: 1923 components: - type: Transform pos: -67.5,-45.5 parent: 2 - - uid: 1920 + - uid: 1924 components: - type: Transform pos: 96.5,3.5 parent: 2 - - uid: 1921 + - uid: 1925 components: - type: Transform pos: 97.5,-1.5 parent: 2 - - uid: 1922 + - uid: 1926 components: - type: Transform pos: -65.5,-45.5 parent: 2 - - uid: 1923 + - uid: 1927 components: - type: Transform pos: -25.5,13.5 parent: 2 - - uid: 1924 + - uid: 1928 components: - type: Transform pos: -25.5,14.5 parent: 2 - - uid: 1925 + - uid: 1929 components: - type: Transform pos: -36.5,37.5 parent: 2 - - uid: 1926 + - uid: 1930 components: - type: Transform pos: -25.5,12.5 parent: 2 - - uid: 1927 + - uid: 1931 components: - type: Transform pos: 92.5,6.5 parent: 2 - - uid: 1928 + - uid: 1932 components: - type: Transform pos: 92.5,2.5 parent: 2 - - uid: 1929 + - uid: 1933 components: - type: Transform pos: 94.5,-1.5 parent: 2 - - uid: 1930 + - uid: 1934 components: - type: Transform pos: -57.5,-49.5 parent: 2 - - uid: 1931 + - uid: 1935 components: - type: Transform pos: 92.5,7.5 parent: 2 - - uid: 1932 + - uid: 1936 components: - type: Transform pos: 92.5,1.5 parent: 2 - - uid: 1933 + - uid: 1937 components: - type: Transform pos: 94.5,1.5 parent: 2 - - uid: 1934 + - uid: 1938 components: - type: Transform pos: 93.5,10.5 parent: 2 - - uid: 1935 + - uid: 1939 components: - type: Transform pos: 92.5,9.5 parent: 2 - - uid: 1936 + - uid: 1940 components: - type: Transform pos: 91.5,9.5 parent: 2 - - uid: 1937 + - uid: 1941 components: - type: Transform pos: 77.5,5.5 parent: 2 - - uid: 1938 + - uid: 1942 components: - type: Transform pos: 77.5,4.5 parent: 2 - - uid: 1939 + - uid: 1943 components: - type: Transform pos: 96.5,7.5 parent: 2 - - uid: 1940 + - uid: 1944 components: - type: Transform pos: 92.5,10.5 parent: 2 - - uid: 1941 + - uid: 1945 components: - type: Transform pos: 89.5,-1.5 parent: 2 - - uid: 1942 + - uid: 1946 components: - type: Transform pos: 93.5,-2.5 parent: 2 - - uid: 1943 + - uid: 1947 components: - type: Transform pos: 88.5,-2.5 parent: 2 - - uid: 1944 + - uid: 1948 components: - type: Transform pos: 92.5,-2.5 parent: 2 - - uid: 1945 + - uid: 1949 components: - type: Transform pos: 88.5,-1.5 parent: 2 - - uid: 1946 + - uid: 1950 components: - type: Transform pos: 95.5,-2.5 parent: 2 - - uid: 1947 + - uid: 1951 components: - type: Transform pos: 91.5,-2.5 parent: 2 - - uid: 1948 + - uid: 1952 components: - type: Transform pos: 97.5,-3.5 parent: 2 - - uid: 1949 + - uid: 1953 components: - type: Transform pos: 97.5,-2.5 parent: 2 - - uid: 1950 + - uid: 1954 components: - type: Transform pos: 90.5,-1.5 parent: 2 - - uid: 1951 + - uid: 1955 components: - type: Transform pos: 92.5,5.5 parent: 2 - - uid: 1952 + - uid: 1956 components: - type: Transform pos: 89.5,9.5 parent: 2 - - uid: 1953 + - uid: 1957 components: - type: Transform pos: 94.5,2.5 parent: 2 - - uid: 1954 + - uid: 1958 components: - type: Transform pos: 94.5,-3.5 parent: 2 - - uid: 1955 + - uid: 1959 components: - type: Transform pos: -37.5,37.5 parent: 2 - - uid: 1956 + - uid: 1960 components: - type: Transform pos: -67.5,-38.5 parent: 2 - - uid: 1957 + - uid: 1961 components: - type: Transform pos: -77.5,16.5 parent: 2 - - uid: 1958 + - uid: 1962 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 1959 + - uid: 1963 components: - type: Transform pos: -113.5,23.5 parent: 2 - - uid: 1960 + - uid: 1964 components: - type: Transform pos: -112.5,23.5 parent: 2 - - uid: 1961 + - uid: 1965 components: - type: Transform pos: -77.5,15.5 parent: 2 - - uid: 1962 + - uid: 1966 components: - type: Transform pos: -111.5,23.5 parent: 2 - - uid: 1963 + - uid: 1967 components: - type: Transform pos: -47.5,-27.5 parent: 2 - - uid: 1964 + - uid: 1968 components: - type: Transform pos: 79.5,5.5 parent: 2 - - uid: 1965 + - uid: 1969 components: - type: Transform pos: 91.5,1.5 parent: 2 - - uid: 1966 + - uid: 1970 components: - type: Transform pos: 93.5,1.5 parent: 2 - - uid: 1967 + - uid: 1971 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 1968 + - uid: 1972 components: - type: Transform pos: 14.5,87.5 parent: 2 - - uid: 1969 + - uid: 1973 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 1970 + - uid: 1974 components: - type: Transform pos: 79.5,7.5 parent: 2 - - uid: 1971 + - uid: 1975 components: - type: Transform pos: 77.5,6.5 parent: 2 - - uid: 1972 + - uid: 1976 components: - type: Transform pos: 76.5,4.5 parent: 2 - - uid: 1973 + - uid: 1977 components: - type: Transform pos: 78.5,5.5 parent: 2 - - uid: 1974 + - uid: 1978 components: - type: Transform pos: 95.5,1.5 parent: 2 - - uid: 1975 + - uid: 1979 components: - type: Transform pos: 88.5,-4.5 parent: 2 - - uid: 1976 + - uid: 1980 components: - type: Transform pos: 88.5,-3.5 parent: 2 - - uid: 1977 + - uid: 1981 components: - type: Transform pos: -59.5,-47.5 parent: 2 - - uid: 1978 + - uid: 1982 components: - type: Transform pos: 86.5,-1.5 parent: 2 - - uid: 1979 + - uid: 1983 components: - type: Transform pos: 96.5,5.5 parent: 2 - - uid: 1980 + - uid: 1984 components: - type: Transform pos: -57.5,-48.5 parent: 2 - - uid: 1981 + - uid: 1985 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 1982 + - uid: 1986 components: - type: Transform pos: 94.5,-2.5 parent: 2 - - uid: 1983 + - uid: 1987 components: - type: Transform pos: 96.5,1.5 parent: 2 - - uid: 1984 + - uid: 1988 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 1985 + - uid: 1989 components: - type: Transform pos: 92.5,3.5 parent: 2 - - uid: 1986 + - uid: 1990 components: - type: Transform pos: -58.5,-49.5 parent: 2 - - uid: 1987 + - uid: 1991 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 1988 + - uid: 1992 components: - type: Transform pos: 96.5,6.5 parent: 2 - - uid: 1989 + - uid: 1993 components: - type: Transform pos: 96.5,2.5 parent: 2 - - uid: 1990 + - uid: 1994 components: - type: Transform pos: 11.5,89.5 parent: 2 - - uid: 1991 + - uid: 1995 components: - type: Transform pos: 11.5,88.5 parent: 2 - - uid: 1992 + - uid: 1996 components: - type: Transform pos: 11.5,87.5 parent: 2 - - uid: 1993 + - uid: 1997 components: - type: Transform pos: 12.5,87.5 parent: 2 - - uid: 1994 + - uid: 1998 components: - type: Transform pos: 13.5,87.5 parent: 2 - - uid: 1995 + - uid: 1999 components: - type: Transform pos: 15.5,87.5 parent: 2 - - uid: 1996 + - uid: 2000 components: - type: Transform pos: 16.5,87.5 parent: 2 - - uid: 1997 + - uid: 2001 components: - type: Transform pos: 10.5,87.5 parent: 2 - - uid: 1998 + - uid: 2002 components: - type: Transform pos: 10.5,86.5 parent: 2 - - uid: 1999 + - uid: 2003 components: - type: Transform pos: 10.5,85.5 parent: 2 - - uid: 2000 + - uid: 2004 components: - type: Transform pos: 10.5,84.5 parent: 2 - - uid: 2001 + - uid: 2005 components: - type: Transform pos: 10.5,83.5 parent: 2 - - uid: 2002 + - uid: 2006 components: - type: Transform pos: 10.5,82.5 parent: 2 - - uid: 2003 + - uid: 2007 components: - type: Transform pos: 10.5,81.5 parent: 2 - - uid: 2004 + - uid: 2008 components: - type: Transform pos: 11.5,81.5 parent: 2 - - uid: 2005 + - uid: 2009 components: - type: Transform pos: 11.5,80.5 parent: 2 - - uid: 2006 + - uid: 2010 components: - type: Transform pos: 11.5,79.5 parent: 2 - - uid: 2007 + - uid: 2011 components: - type: Transform pos: 11.5,78.5 parent: 2 - - uid: 2008 + - uid: 2012 components: - type: Transform pos: 11.5,77.5 parent: 2 - - uid: 2009 + - uid: 2013 components: - type: Transform pos: 11.5,76.5 parent: 2 - - uid: 2010 + - uid: 2014 components: - type: Transform pos: 11.5,75.5 parent: 2 - - uid: 2011 + - uid: 2015 components: - type: Transform pos: 11.5,74.5 parent: 2 - - uid: 2012 + - uid: 2016 components: - type: Transform pos: 12.5,78.5 parent: 2 - - uid: 2013 + - uid: 2017 components: - type: Transform pos: 13.5,78.5 parent: 2 - - uid: 2014 + - uid: 2018 components: - type: Transform pos: 14.5,78.5 parent: 2 - - uid: 2015 + - uid: 2019 components: - type: Transform pos: 15.5,78.5 parent: 2 - - uid: 2016 + - uid: 2020 components: - type: Transform pos: 16.5,78.5 parent: 2 - - uid: 2017 + - uid: 2021 components: - type: Transform pos: 10.5,90.5 parent: 2 - - uid: 2018 + - uid: 2022 components: - type: Transform pos: 10.5,89.5 parent: 2 - - uid: 2019 + - uid: 2023 components: - type: Transform pos: 6.5,71.5 parent: 2 - - uid: 2020 + - uid: 2024 components: - type: Transform pos: 6.5,72.5 parent: 2 - - uid: 2021 + - uid: 2025 components: - type: Transform pos: 6.5,73.5 parent: 2 - - uid: 2022 + - uid: 2026 components: - type: Transform pos: 6.5,74.5 parent: 2 - - uid: 2023 + - uid: 2027 components: - type: Transform pos: 6.5,75.5 parent: 2 - - uid: 2024 + - uid: 2028 components: - type: Transform pos: 6.5,76.5 parent: 2 - - uid: 2025 + - uid: 2029 components: - type: Transform pos: 6.5,77.5 parent: 2 - - uid: 2026 + - uid: 2030 components: - type: Transform pos: 6.5,78.5 parent: 2 - - uid: 2027 + - uid: 2031 components: - type: Transform pos: 6.5,79.5 parent: 2 - - uid: 2028 + - uid: 2032 components: - type: Transform pos: 6.5,80.5 parent: 2 - - uid: 2029 + - uid: 2033 components: - type: Transform pos: 6.5,81.5 parent: 2 - - uid: 2030 + - uid: 2034 components: - type: Transform pos: 6.5,82.5 parent: 2 - - uid: 2031 + - uid: 2035 components: - type: Transform pos: 6.5,83.5 parent: 2 - - uid: 2032 + - uid: 2036 components: - type: Transform pos: 6.5,84.5 parent: 2 - - uid: 2033 + - uid: 2037 components: - type: Transform pos: 6.5,85.5 parent: 2 - - uid: 2034 + - uid: 2038 components: - type: Transform pos: 6.5,86.5 parent: 2 - - uid: 2035 + - uid: 2039 components: - type: Transform pos: 6.5,87.5 parent: 2 - - uid: 2036 + - uid: 2040 components: - type: Transform pos: 6.5,88.5 parent: 2 - - uid: 2037 + - uid: 2041 components: - type: Transform pos: 6.5,89.5 parent: 2 - - uid: 2038 + - uid: 2042 components: - type: Transform pos: 7.5,81.5 parent: 2 - - uid: 2039 + - uid: 2043 components: - type: Transform pos: 9.5,81.5 parent: 2 - - uid: 2040 + - uid: 2044 components: - type: Transform pos: 8.5,81.5 parent: 2 - - uid: 2041 + - uid: 2045 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 2042 + - uid: 2046 components: - type: Transform pos: 20.5,67.5 parent: 2 - - uid: 2043 + - uid: 2047 components: - type: Transform pos: 20.5,66.5 parent: 2 - - uid: 2044 + - uid: 2048 components: - type: Transform pos: 19.5,66.5 parent: 2 - - uid: 2045 + - uid: 2049 components: - type: Transform pos: 18.5,66.5 parent: 2 - - uid: 2046 + - uid: 2050 components: - type: Transform pos: 17.5,66.5 parent: 2 - - uid: 2047 + - uid: 2051 components: - type: Transform pos: 21.5,66.5 parent: 2 - - uid: 2048 + - uid: 2052 components: - type: Transform pos: 22.5,66.5 parent: 2 - - uid: 2049 + - uid: 2053 components: - type: Transform pos: 23.5,66.5 parent: 2 - - uid: 2050 + - uid: 2054 components: - type: Transform pos: 20.5,69.5 parent: 2 - - uid: 2051 + - uid: 2055 components: - type: Transform pos: 20.5,70.5 parent: 2 - - uid: 2052 + - uid: 2056 components: - type: Transform pos: 20.5,71.5 parent: 2 - - uid: 2053 + - uid: 2057 components: - type: Transform pos: 19.5,70.5 parent: 2 - - uid: 2054 + - uid: 2058 components: - type: Transform pos: 18.5,70.5 parent: 2 - - uid: 2055 + - uid: 2059 components: - type: Transform pos: 17.5,70.5 parent: 2 - - uid: 2056 + - uid: 2060 components: - type: Transform pos: 21.5,70.5 parent: 2 - - uid: 2057 + - uid: 2061 components: - type: Transform pos: 22.5,70.5 parent: 2 - - uid: 2058 + - uid: 2062 components: - type: Transform pos: 23.5,70.5 parent: 2 - - uid: 2059 + - uid: 2063 components: - type: Transform pos: 16.5,66.5 parent: 2 - - uid: 2060 + - uid: 2064 components: - type: Transform pos: 15.5,66.5 parent: 2 - - uid: 2061 + - uid: 2065 components: - type: Transform pos: 14.5,66.5 parent: 2 - - uid: 2062 + - uid: 2066 components: - type: Transform pos: 14.5,67.5 parent: 2 - - uid: 2063 + - uid: 2067 components: - type: Transform pos: 13.5,67.5 parent: 2 - - uid: 2064 + - uid: 2068 components: - type: Transform pos: 12.5,67.5 parent: 2 - - uid: 2065 + - uid: 2069 components: - type: Transform pos: 11.5,67.5 parent: 2 - - uid: 2066 + - uid: 2070 components: - type: Transform pos: 11.5,68.5 parent: 2 - - uid: 2067 + - uid: 2071 components: - type: Transform pos: 11.5,69.5 parent: 2 - - uid: 2068 + - uid: 2072 components: - type: Transform pos: 11.5,70.5 parent: 2 - - uid: 2069 + - uid: 2073 components: - type: Transform pos: 11.5,66.5 parent: 2 - - uid: 2070 + - uid: 2074 components: - type: Transform pos: 17.5,64.5 parent: 2 - - uid: 2071 + - uid: 2075 components: - type: Transform pos: 17.5,63.5 parent: 2 - - uid: 2072 + - uid: 2076 components: - type: Transform pos: 17.5,62.5 parent: 2 - - uid: 2073 + - uid: 2077 components: - type: Transform pos: 17.5,61.5 parent: 2 - - uid: 2074 + - uid: 2078 components: - type: Transform pos: 17.5,60.5 parent: 2 - - uid: 2075 + - uid: 2079 components: - type: Transform pos: 16.5,60.5 parent: 2 - - uid: 2076 + - uid: 2080 components: - type: Transform pos: 15.5,60.5 parent: 2 - - uid: 2077 + - uid: 2081 components: - type: Transform pos: 14.5,60.5 parent: 2 - - uid: 2078 + - uid: 2082 components: - type: Transform pos: 13.5,60.5 parent: 2 - - uid: 2079 + - uid: 2083 components: - type: Transform pos: 12.5,60.5 parent: 2 - - uid: 2080 + - uid: 2084 components: - type: Transform pos: 18.5,60.5 parent: 2 - - uid: 2081 + - uid: 2085 components: - type: Transform pos: 19.5,60.5 parent: 2 - - uid: 2082 + - uid: 2086 components: - type: Transform pos: 20.5,60.5 parent: 2 - - uid: 2083 + - uid: 2087 components: - type: Transform pos: 21.5,60.5 parent: 2 - - uid: 2084 + - uid: 2088 components: - type: Transform pos: 17.5,59.5 parent: 2 - - uid: 2085 + - uid: 2089 components: - type: Transform pos: 17.5,58.5 parent: 2 - - uid: 2086 + - uid: 2090 components: - type: Transform pos: 1.5,60.5 parent: 2 - - uid: 2087 + - uid: 2091 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 2088 + - uid: 2092 components: - type: Transform pos: 1.5,65.5 parent: 2 - - uid: 2089 + - uid: 2093 components: - type: Transform pos: 1.5,64.5 parent: 2 - - uid: 2090 + - uid: 2094 components: - type: Transform pos: 1.5,63.5 parent: 2 - - uid: 2091 + - uid: 2095 components: - type: Transform pos: 1.5,62.5 parent: 2 - - uid: 2092 + - uid: 2096 components: - type: Transform pos: 2.5,62.5 parent: 2 - - uid: 2093 + - uid: 2097 components: - type: Transform pos: 1.5,61.5 parent: 2 - - uid: 2094 + - uid: 2098 components: - type: Transform pos: 1.5,61.5 parent: 2 - - uid: 2095 + - uid: 2099 components: - type: Transform pos: 3.5,62.5 parent: 2 - - uid: 2096 + - uid: 2100 components: - type: Transform pos: 3.5,63.5 parent: 2 - - uid: 2097 + - uid: 2101 components: - type: Transform pos: 3.5,64.5 parent: 2 - - uid: 2098 + - uid: 2102 components: - type: Transform pos: 4.5,64.5 parent: 2 - - uid: 2099 + - uid: 2103 components: - type: Transform pos: 5.5,64.5 parent: 2 - - uid: 2100 + - uid: 2104 components: - type: Transform pos: 6.5,64.5 parent: 2 - - uid: 2101 + - uid: 2105 components: - type: Transform pos: 6.5,63.5 parent: 2 - - uid: 2102 + - uid: 2106 components: - type: Transform pos: 6.5,63.5 parent: 2 - - uid: 2103 + - uid: 2107 components: - type: Transform pos: 6.5,62.5 parent: 2 - - uid: 2104 + - uid: 2108 components: - type: Transform pos: 6.5,65.5 parent: 2 - - uid: 2105 + - uid: 2109 components: - type: Transform pos: 24.5,58.5 parent: 2 - - uid: 2106 + - uid: 2110 components: - type: Transform pos: 24.5,57.5 parent: 2 - - uid: 2107 + - uid: 2111 components: - type: Transform pos: 24.5,56.5 parent: 2 - - uid: 2108 + - uid: 2112 components: - type: Transform pos: 25.5,56.5 parent: 2 - - uid: 2109 + - uid: 2113 components: - type: Transform pos: 26.5,56.5 parent: 2 - - uid: 2110 + - uid: 2114 components: - type: Transform pos: 27.5,56.5 parent: 2 - - uid: 2111 + - uid: 2115 components: - type: Transform pos: 28.5,56.5 parent: 2 - - uid: 2112 + - uid: 2116 components: - type: Transform pos: 29.5,56.5 parent: 2 - - uid: 2113 + - uid: 2117 components: - type: Transform pos: 30.5,56.5 parent: 2 - - uid: 2114 + - uid: 2118 components: - type: Transform pos: 31.5,56.5 parent: 2 - - uid: 2115 + - uid: 2119 components: - type: Transform pos: 31.5,57.5 parent: 2 - - uid: 2116 + - uid: 2120 components: - type: Transform pos: 31.5,58.5 parent: 2 - - uid: 2117 + - uid: 2121 components: - type: Transform pos: 31.5,59.5 parent: 2 - - uid: 2118 + - uid: 2122 components: - type: Transform pos: 25.5,58.5 parent: 2 - - uid: 2119 + - uid: 2123 components: - type: Transform pos: 25.5,59.5 parent: 2 - - uid: 2120 + - uid: 2124 components: - type: Transform pos: 25.5,60.5 parent: 2 - - uid: 2121 + - uid: 2125 components: - type: Transform pos: 25.5,61.5 parent: 2 - - uid: 2122 + - uid: 2126 components: - type: Transform pos: 26.5,61.5 parent: 2 - - uid: 2123 + - uid: 2127 components: - type: Transform pos: 27.5,61.5 parent: 2 - - uid: 2124 + - uid: 2128 components: - type: Transform pos: 28.5,61.5 parent: 2 - - uid: 2125 + - uid: 2129 components: - type: Transform pos: 29.5,61.5 parent: 2 - - uid: 2126 + - uid: 2130 components: - type: Transform pos: 31.5,61.5 parent: 2 - - uid: 2127 + - uid: 2131 components: - type: Transform pos: 30.5,61.5 parent: 2 - - uid: 2128 + - uid: 2132 components: - type: Transform pos: 2.5,60.5 parent: 2 - - uid: 2129 + - uid: 2133 components: - type: Transform pos: 3.5,60.5 parent: 2 - - uid: 2130 + - uid: 2134 components: - type: Transform pos: 24.5,17.5 parent: 2 - - uid: 2131 + - uid: 2135 components: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 2132 + - uid: 2136 components: - type: Transform pos: 22.5,15.5 parent: 2 - - uid: 2133 + - uid: 2137 components: - type: Transform pos: 23.5,15.5 parent: 2 - - uid: 2134 + - uid: 2138 components: - type: Transform pos: 26.5,14.5 parent: 2 - - uid: 2135 + - uid: 2139 components: - type: Transform pos: -6.5,47.5 parent: 2 - - uid: 2136 + - uid: 2140 components: - type: Transform pos: -6.5,46.5 parent: 2 - - uid: 2137 + - uid: 2141 components: - type: Transform pos: -6.5,45.5 parent: 2 - - uid: 2138 + - uid: 2142 components: - type: Transform pos: -6.5,44.5 parent: 2 - - uid: 2139 + - uid: 2143 components: - type: Transform pos: -6.5,43.5 parent: 2 - - uid: 2140 + - uid: 2144 components: - type: Transform pos: -6.5,42.5 parent: 2 - - uid: 2141 + - uid: 2145 components: - type: Transform pos: -6.5,41.5 parent: 2 - - uid: 2142 + - uid: 2146 components: - type: Transform pos: -6.5,40.5 parent: 2 - - uid: 2143 + - uid: 2147 components: - type: Transform pos: -6.5,39.5 parent: 2 - - uid: 2144 + - uid: 2148 components: - type: Transform pos: -6.5,38.5 parent: 2 - - uid: 2145 + - uid: 2149 components: - type: Transform pos: -6.5,37.5 parent: 2 - - uid: 2146 + - uid: 2150 components: - type: Transform pos: -5.5,37.5 parent: 2 - - uid: 2147 + - uid: 2151 components: - type: Transform pos: -4.5,37.5 parent: 2 - - uid: 2148 + - uid: 2152 components: - type: Transform pos: -3.5,37.5 parent: 2 - - uid: 2149 + - uid: 2153 components: - type: Transform pos: -2.5,37.5 parent: 2 - - uid: 2150 + - uid: 2154 components: - type: Transform pos: -2.5,38.5 parent: 2 - - uid: 2151 + - uid: 2155 components: - type: Transform pos: -2.5,39.5 parent: 2 - - uid: 2152 + - uid: 2156 components: - type: Transform pos: -2.5,40.5 parent: 2 - - uid: 2153 + - uid: 2157 components: - type: Transform pos: -2.5,41.5 parent: 2 - - uid: 2154 + - uid: 2158 components: - type: Transform pos: -2.5,42.5 parent: 2 - - uid: 2155 + - uid: 2159 components: - type: Transform pos: -1.5,40.5 parent: 2 - - uid: 2156 + - uid: 2160 components: - type: Transform pos: -0.5,40.5 parent: 2 - - uid: 2157 + - uid: 2161 components: - type: Transform pos: 0.49999997,40.5 parent: 2 - - uid: 2158 + - uid: 2162 components: - type: Transform pos: 1.5,40.5 parent: 2 - - uid: 2159 + - uid: 2163 components: - type: Transform pos: 1.5,41.5 parent: 2 - - uid: 2160 + - uid: 2164 components: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 2161 + - uid: 2165 components: - type: Transform pos: 1.5,43.5 parent: 2 - - uid: 2162 + - uid: 2166 components: - type: Transform pos: 1.5,44.5 parent: 2 - - uid: 2163 + - uid: 2167 components: - type: Transform pos: 1.5,45.5 parent: 2 - - uid: 2164 + - uid: 2168 components: - type: Transform pos: 1.5,46.5 parent: 2 - - uid: 2165 + - uid: 2169 components: - type: Transform pos: 1.5,47.5 parent: 2 - - uid: 2166 + - uid: 2170 components: - type: Transform pos: 0.50000006,39.5 parent: 2 - - uid: 2167 + - uid: 2171 components: - type: Transform pos: 0.50000006,38.5 parent: 2 - - uid: 2168 + - uid: 2172 components: - type: Transform pos: 0.50000006,37.5 parent: 2 - - uid: 2169 + - uid: 2173 components: - type: Transform pos: 0.50000006,36.5 parent: 2 - - uid: 2170 + - uid: 2174 components: - type: Transform pos: 0.49999997,35.5 parent: 2 - - uid: 2171 + - uid: 2175 components: - type: Transform pos: 0.49999997,34.5 parent: 2 - - uid: 2172 + - uid: 2176 components: - type: Transform pos: -5.5,30.5 parent: 2 - - uid: 2173 + - uid: 2177 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 2174 + - uid: 2178 components: - type: Transform pos: -2.5,31.5 parent: 2 - - uid: 2175 + - uid: 2179 components: - type: Transform pos: -2.5,32.5 parent: 2 - - uid: 2176 + - uid: 2180 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 2177 + - uid: 2181 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 2178 + - uid: 2182 components: - type: Transform pos: 0.49999997,31.5 parent: 2 - - uid: 2179 + - uid: 2183 components: - type: Transform pos: -2.5,29.5 parent: 2 - - uid: 2180 + - uid: 2184 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 2181 + - uid: 2185 components: - type: Transform pos: -2.5,27.5 parent: 2 - - uid: 2182 + - uid: 2186 components: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 2183 + - uid: 2187 components: - type: Transform pos: -1.5,26.5 parent: 2 - - uid: 2184 + - uid: 2188 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 2185 + - uid: 2189 components: - type: Transform pos: 0.50000006,26.5 parent: 2 - - uid: 2186 + - uid: 2190 components: - type: Transform pos: -6.5,30.5 parent: 2 - - uid: 2187 + - uid: 2191 components: - type: Transform pos: -7.5,30.5 parent: 2 - - uid: 2188 + - uid: 2192 components: - type: Transform pos: -8.5,30.5 parent: 2 - - uid: 2189 + - uid: 2193 components: - type: Transform pos: -9.5,30.5 parent: 2 - - uid: 2190 + - uid: 2194 components: - type: Transform pos: -9.5,31.5 parent: 2 - - uid: 2191 + - uid: 2195 components: - type: Transform pos: -9.5,32.5 parent: 2 - - uid: 2192 + - uid: 2196 components: - type: Transform pos: -9.5,33.5 parent: 2 - - uid: 2193 + - uid: 2197 components: - type: Transform pos: -8.5,33.5 parent: 2 - - uid: 2194 + - uid: 2198 components: - type: Transform pos: -7.5,33.5 parent: 2 - - uid: 2195 + - uid: 2199 components: - type: Transform pos: -6.5,33.5 parent: 2 - - uid: 2196 + - uid: 2200 components: - type: Transform pos: -5.5,33.5 parent: 2 - - uid: 2197 + - uid: 2201 components: - type: Transform pos: -9.5,29.5 parent: 2 - - uid: 2198 + - uid: 2202 components: - type: Transform pos: -9.5,28.5 parent: 2 - - uid: 2199 + - uid: 2203 components: - type: Transform pos: -9.5,27.5 parent: 2 - - uid: 2200 + - uid: 2204 components: - type: Transform pos: -8.5,27.5 parent: 2 - - uid: 2201 + - uid: 2205 components: - type: Transform pos: -7.5,27.5 parent: 2 - - uid: 2202 + - uid: 2206 components: - type: Transform pos: -6.5,27.5 parent: 2 - - uid: 2203 + - uid: 2207 components: - type: Transform pos: -5.5,27.5 parent: 2 - - uid: 2204 + - uid: 2208 components: - type: Transform pos: -10.5,30.5 parent: 2 - - uid: 2205 + - uid: 2209 components: - type: Transform pos: -11.5,30.5 parent: 2 - - uid: 2206 + - uid: 2210 components: - type: Transform pos: -12.5,30.5 parent: 2 - - uid: 2207 + - uid: 2211 components: - type: Transform pos: -13.5,30.5 parent: 2 - - uid: 2208 + - uid: 2212 components: - type: Transform pos: -14.5,30.5 parent: 2 - - uid: 2209 + - uid: 2213 components: - type: Transform pos: -12.5,31.5 parent: 2 - - uid: 2210 + - uid: 2214 components: - type: Transform pos: -12.5,32.5 parent: 2 - - uid: 2211 + - uid: 2215 components: - type: Transform pos: -12.5,33.5 parent: 2 - - uid: 2212 + - uid: 2216 components: - type: Transform pos: -12.5,34.5 parent: 2 - - uid: 2213 + - uid: 2217 components: - type: Transform pos: -12.5,29.5 parent: 2 - - uid: 2214 + - uid: 2218 components: - type: Transform pos: -12.5,28.5 parent: 2 - - uid: 2215 + - uid: 2219 components: - type: Transform pos: -12.5,27.5 parent: 2 - - uid: 2216 + - uid: 2220 components: - type: Transform pos: -12.5,26.5 parent: 2 - - uid: 2217 + - uid: 2221 components: - type: Transform pos: -15.5,30.5 parent: 2 - - uid: 2218 + - uid: 2222 components: - type: Transform pos: -15.5,29.5 parent: 2 - - uid: 2219 + - uid: 2223 components: - type: Transform pos: -15.5,28.5 parent: 2 - - uid: 2220 + - uid: 2224 components: - type: Transform pos: -15.5,27.5 parent: 2 - - uid: 2221 + - uid: 2225 components: - type: Transform pos: -15.5,26.5 parent: 2 - - uid: 2222 + - uid: 2226 components: - type: Transform pos: -15.5,31.5 parent: 2 - - uid: 2223 + - uid: 2227 components: - type: Transform pos: -15.5,32.5 parent: 2 - - uid: 2224 + - uid: 2228 components: - type: Transform pos: -15.5,33.5 parent: 2 - - uid: 2225 + - uid: 2229 components: - type: Transform pos: -7.5,51.5 parent: 2 - - uid: 2226 + - uid: 2230 components: - type: Transform pos: -7.5,50.5 parent: 2 - - uid: 2227 + - uid: 2231 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 2228 + - uid: 2232 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 2229 + - uid: 2233 components: - type: Transform pos: -8.5,49.5 parent: 2 - - uid: 2230 + - uid: 2234 components: - type: Transform pos: -9.5,49.5 parent: 2 - - uid: 2231 + - uid: 2235 components: - type: Transform pos: -10.5,49.5 parent: 2 - - uid: 2232 + - uid: 2236 components: - type: Transform pos: -11.5,49.5 parent: 2 - - uid: 2233 + - uid: 2237 components: - type: Transform pos: -12.5,49.5 parent: 2 - - uid: 2234 + - uid: 2238 components: - type: Transform pos: -11.5,50.5 parent: 2 - - uid: 2235 + - uid: 2239 components: - type: Transform pos: -11.5,51.5 parent: 2 - - uid: 2236 + - uid: 2240 components: - type: Transform pos: -11.5,52.5 parent: 2 - - uid: 2237 + - uid: 2241 components: - type: Transform pos: -11.5,53.5 parent: 2 - - uid: 2238 + - uid: 2242 components: - type: Transform pos: -10.5,53.5 parent: 2 - - uid: 2239 + - uid: 2243 components: - type: Transform pos: -9.5,53.5 parent: 2 - - uid: 2240 + - uid: 2244 components: - type: Transform pos: -5.5,50.5 parent: 2 - - uid: 2241 + - uid: 2245 components: - type: Transform pos: -5.5,51.5 parent: 2 - - uid: 2242 + - uid: 2246 components: - type: Transform pos: -5.5,52.5 parent: 2 - - uid: 2243 + - uid: 2247 components: - type: Transform pos: -5.5,53.5 parent: 2 - - uid: 2244 + - uid: 2248 components: - type: Transform pos: -5.5,49.5 parent: 2 - - uid: 2245 + - uid: 2249 components: - type: Transform pos: -6.5,49.5 parent: 2 - - uid: 2246 + - uid: 2250 components: - type: Transform pos: -4.5,53.5 parent: 2 - - uid: 2247 + - uid: 2251 components: - type: Transform pos: -3.5,53.5 parent: 2 - - uid: 2248 + - uid: 2252 components: - type: Transform pos: -2.5,53.5 parent: 2 - - uid: 2249 + - uid: 2253 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 2250 + - uid: 2254 components: - type: Transform pos: 3.5,54.5 parent: 2 - - uid: 2251 + - uid: 2255 components: - type: Transform pos: 3.5,53.5 parent: 2 - - uid: 2252 + - uid: 2256 components: - type: Transform pos: 3.5,52.5 parent: 2 - - uid: 2253 + - uid: 2257 components: - type: Transform pos: 3.5,51.5 parent: 2 - - uid: 2254 + - uid: 2258 components: - type: Transform pos: 2.5,51.5 parent: 2 - - uid: 2255 + - uid: 2259 components: - type: Transform pos: 1.5,51.5 parent: 2 - - uid: 2256 + - uid: 2260 components: - type: Transform pos: 0.50000006,51.5 parent: 2 - - uid: 2257 + - uid: 2261 components: - type: Transform pos: -0.5,51.5 parent: 2 - - uid: 2258 + - uid: 2262 components: - type: Transform pos: -0.5,52.5 parent: 2 - - uid: 2259 + - uid: 2263 components: - type: Transform pos: -0.5,53.5 parent: 2 - - uid: 2260 + - uid: 2264 components: - type: Transform pos: -0.5,54.5 parent: 2 - - uid: 2261 + - uid: 2265 components: - type: Transform pos: 3.5,50.5 parent: 2 - - uid: 2262 + - uid: 2266 components: - type: Transform pos: -4.5,49.5 parent: 2 - - uid: 2263 + - uid: 2267 components: - type: Transform pos: -3.5,49.5 parent: 2 - - uid: 2264 + - uid: 2268 components: - type: Transform pos: -2.5,49.5 parent: 2 - - uid: 2265 + - uid: 2269 components: - type: Transform pos: -2.5,50.5 parent: 2 - - uid: 2266 + - uid: 2270 components: - type: Transform pos: -7.5,48.5 parent: 2 - - uid: 2267 + - uid: 2271 components: - type: Transform pos: 1.5,48.5 parent: 2 - - uid: 2268 + - uid: 2272 components: - type: Transform pos: 0.50000006,48.5 parent: 2 - - uid: 2269 + - uid: 2273 components: - type: Transform pos: 2.5,47.5 parent: 2 - - uid: 2270 + - uid: 2274 components: - type: Transform pos: 3.5,47.5 parent: 2 - - uid: 2271 + - uid: 2275 components: - type: Transform pos: 4.5,60.5 parent: 2 - - uid: 2272 + - uid: 2276 components: - type: Transform pos: 5.5,60.5 parent: 2 - - uid: 2273 + - uid: 2277 components: - type: Transform pos: 5.5,59.5 parent: 2 - - uid: 2274 + - uid: 2278 components: - type: Transform pos: 5.5,58.5 parent: 2 - - uid: 2275 + - uid: 2279 components: - type: Transform pos: 5.5,57.5 parent: 2 - - uid: 2276 + - uid: 2280 components: - type: Transform pos: 6.5,57.5 parent: 2 - - uid: 2277 + - uid: 2281 components: - type: Transform pos: 6.5,56.5 parent: 2 - - uid: 2278 + - uid: 2282 components: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 2279 + - uid: 2283 components: - type: Transform pos: 6.5,54.5 parent: 2 - - uid: 2280 + - uid: 2284 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 2281 + - uid: 2285 components: - type: Transform pos: 6.5,52.5 parent: 2 - - uid: 2282 + - uid: 2286 components: - type: Transform pos: 4.5,47.5 parent: 2 - - uid: 2283 + - uid: 2287 components: - type: Transform pos: 5.5,47.5 parent: 2 - - uid: 2284 + - uid: 2288 components: - type: Transform pos: 6.5,47.5 parent: 2 - - uid: 2285 + - uid: 2289 components: - type: Transform pos: 6.5,48.5 parent: 2 - - uid: 2286 + - uid: 2290 components: - type: Transform pos: 6.5,49.5 parent: 2 - - uid: 2287 + - uid: 2291 components: - type: Transform pos: 6.5,50.5 parent: 2 - - uid: 2288 + - uid: 2292 components: - type: Transform pos: 2.5,40.5 parent: 2 - - uid: 2289 + - uid: 2293 components: - type: Transform pos: -11.5,41.5 parent: 2 - - uid: 2290 + - uid: 2294 components: - type: Transform pos: -10.5,41.5 parent: 2 - - uid: 2291 + - uid: 2295 components: - type: Transform pos: -9.5,41.5 parent: 2 - - uid: 2292 + - uid: 2296 components: - type: Transform pos: -8.5,41.5 parent: 2 - - uid: 2293 + - uid: 2297 components: - type: Transform pos: -7.5,41.5 parent: 2 - - uid: 2294 + - uid: 2298 components: - type: Transform pos: -11.5,42.5 parent: 2 - - uid: 2295 + - uid: 2299 components: - type: Transform pos: -11.5,43.5 parent: 2 - - uid: 2296 + - uid: 2300 components: - type: Transform pos: -11.5,44.5 parent: 2 - - uid: 2297 + - uid: 2301 components: - type: Transform pos: -11.5,45.5 parent: 2 - - uid: 2298 + - uid: 2302 components: - type: Transform pos: -11.5,46.5 parent: 2 - - uid: 2299 + - uid: 2303 components: - type: Transform pos: -11.5,40.5 parent: 2 - - uid: 2300 + - uid: 2304 components: - type: Transform pos: -11.5,39.5 parent: 2 - - uid: 2301 + - uid: 2305 components: - type: Transform pos: -11.5,38.5 parent: 2 - - uid: 2302 + - uid: 2306 components: - type: Transform pos: -11.5,37.5 parent: 2 - - uid: 2303 + - uid: 2307 components: - type: Transform pos: -11.5,36.5 parent: 2 - - uid: 2304 + - uid: 2308 components: - type: Transform pos: -12.5,41.5 parent: 2 - - uid: 2305 + - uid: 2309 components: - type: Transform pos: -3.5,48.5 parent: 2 - - uid: 2306 + - uid: 2310 components: - type: Transform pos: -3.5,47.5 parent: 2 - - uid: 2307 + - uid: 2311 components: - type: Transform pos: -3.5,46.5 parent: 2 - - uid: 2308 + - uid: 2312 components: - type: Transform pos: -3.5,45.5 parent: 2 - - uid: 2309 + - uid: 2313 components: - type: Transform pos: -2.5,45.5 parent: 2 - - uid: 2310 + - uid: 2314 components: - type: Transform pos: -12.5,4.5 parent: 2 - - uid: 2311 + - uid: 2315 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 2312 + - uid: 2316 components: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 2313 + - uid: 2317 components: - type: Transform pos: -13.5,4.5 parent: 2 - - uid: 2314 + - uid: 2318 components: - type: Transform pos: -11.5,4.5 parent: 2 - - uid: 2315 + - uid: 2319 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 2316 + - uid: 2320 components: - type: Transform pos: -10.5,3.5 parent: 2 - - uid: 2317 + - uid: 2321 components: - type: Transform pos: -10.5,2.5 parent: 2 - - uid: 2318 + - uid: 2322 components: - type: Transform pos: -10.5,1.5 parent: 2 - - uid: 2319 + - uid: 2323 components: - type: Transform pos: -10.5,0.5 parent: 2 - - uid: 2320 + - uid: 2324 components: - type: Transform pos: -10.5,-0.5 parent: 2 - - uid: 2321 + - uid: 2325 components: - type: Transform pos: -9.5,-0.5 parent: 2 - - uid: 2322 + - uid: 2326 components: - type: Transform pos: -9.5,-1.5 parent: 2 - - uid: 2323 + - uid: 2327 components: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 2324 + - uid: 2328 components: - type: Transform pos: -9.5,-3.5 parent: 2 - - uid: 2325 + - uid: 2329 components: - type: Transform pos: -9.5,-4.5 parent: 2 - - uid: 2326 + - uid: 2330 components: - type: Transform pos: -10.5,-4.5 parent: 2 - - uid: 2327 + - uid: 2331 components: - type: Transform pos: -11.5,-4.5 parent: 2 - - uid: 2328 + - uid: 2332 components: - type: Transform pos: -12.5,-4.5 parent: 2 - - uid: 2329 + - uid: 2333 components: - type: Transform pos: -13.5,-4.5 parent: 2 - - uid: 2330 + - uid: 2334 components: - type: Transform pos: -14.5,-4.5 parent: 2 - - uid: 2331 + - uid: 2335 components: - type: Transform pos: -12.5,-2.5 parent: 2 - - uid: 2332 + - uid: 2336 components: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 2333 + - uid: 2337 components: - type: Transform pos: -10.5,-2.5 parent: 2 - - uid: 2334 + - uid: 2338 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 2335 + - uid: 2339 components: - type: Transform pos: -9.5,4.5 parent: 2 - - uid: 2336 + - uid: 2340 components: - type: Transform pos: -8.5,4.5 parent: 2 - - uid: 2337 + - uid: 2341 components: - type: Transform pos: -10.5,5.5 parent: 2 - - uid: 2338 + - uid: 2342 components: - type: Transform pos: -11.5,0.5 parent: 2 - - uid: 2339 + - uid: 2343 components: - type: Transform pos: -12.5,0.5 parent: 2 - - uid: 2340 + - uid: 2344 components: - type: Transform pos: -13.5,0.5 parent: 2 - - uid: 2341 + - uid: 2345 components: - type: Transform pos: -13.5,3.5 parent: 2 - - uid: 2342 + - uid: 2346 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 2343 + - uid: 2347 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 2344 + - uid: 2348 components: - type: Transform pos: -11.5,11.5 parent: 2 - - uid: 2345 + - uid: 2349 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 2346 + - uid: 2350 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 2347 + - uid: 2351 components: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 2348 + - uid: 2352 components: - type: Transform pos: -13.5,9.5 parent: 2 - - uid: 2349 + - uid: 2353 components: - type: Transform pos: -14.5,9.5 parent: 2 - - uid: 2350 + - uid: 2354 components: - type: Transform pos: -15.5,9.5 parent: 2 - - uid: 2351 + - uid: 2355 components: - type: Transform pos: -11.5,8.5 parent: 2 - - uid: 2352 + - uid: 2356 components: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 2353 + - uid: 2357 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 2354 + - uid: 2358 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 2355 + - uid: 2359 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 2356 + - uid: 2360 components: - type: Transform pos: -8.5,9.5 parent: 2 - - uid: 2357 + - uid: 2361 components: - type: Transform pos: -7.5,9.5 parent: 2 - - uid: 2358 + - uid: 2362 components: - type: Transform pos: -6.5,9.5 parent: 2 - - uid: 2359 + - uid: 2363 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 2360 + - uid: 2364 components: - type: Transform pos: 11.5,16.5 parent: 2 - - uid: 2361 + - uid: 2365 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 2362 + - uid: 2366 components: - type: Transform pos: 11.5,14.5 parent: 2 - - uid: 2363 + - uid: 2367 components: - type: Transform pos: 10.5,14.5 parent: 2 - - uid: 2364 + - uid: 2368 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 2365 + - uid: 2369 components: - type: Transform pos: 8.5,14.5 parent: 2 - - uid: 2366 + - uid: 2370 components: - type: Transform pos: 7.5,14.5 parent: 2 - - uid: 2367 + - uid: 2371 components: - type: Transform pos: 6.5,14.5 parent: 2 - - uid: 2368 + - uid: 2372 components: - type: Transform pos: 5.5,14.5 parent: 2 - - uid: 2369 + - uid: 2373 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 2370 + - uid: 2374 components: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 2371 + - uid: 2375 components: - type: Transform pos: 3.5,15.5 parent: 2 - - uid: 2372 + - uid: 2376 components: - type: Transform pos: 3.5,16.5 parent: 2 - - uid: 2373 + - uid: 2377 components: - type: Transform pos: 2.5,16.5 parent: 2 - - uid: 2374 + - uid: 2378 components: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 2375 + - uid: 2379 components: - type: Transform pos: 0.49999997,16.5 parent: 2 - - uid: 2376 + - uid: 2380 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 2377 + - uid: 2381 components: - type: Transform pos: -1.5,16.5 parent: 2 - - uid: 2378 + - uid: 2382 components: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 2379 + - uid: 2383 components: - type: Transform pos: -3.5,16.5 parent: 2 - - uid: 2380 + - uid: 2384 components: - type: Transform pos: -4.5,16.5 parent: 2 - - uid: 2381 + - uid: 2385 components: - type: Transform pos: -4.5,15.5 parent: 2 - - uid: 2382 + - uid: 2386 components: - type: Transform pos: -4.5,14.5 parent: 2 - - uid: 2383 + - uid: 2387 components: - type: Transform pos: -5.5,14.5 parent: 2 - - uid: 2384 + - uid: 2388 components: - type: Transform pos: -6.5,14.5 parent: 2 - - uid: 2385 + - uid: 2389 components: - type: Transform pos: -7.5,14.5 parent: 2 - - uid: 2386 + - uid: 2390 components: - type: Transform pos: -8.5,14.5 parent: 2 - - uid: 2387 + - uid: 2391 components: - type: Transform pos: -9.5,14.5 parent: 2 - - uid: 2388 + - uid: 2392 components: - type: Transform pos: -9.5,13.5 parent: 2 - - uid: 2389 + - uid: 2393 components: - type: Transform pos: -10.5,14.5 parent: 2 - - uid: 2390 + - uid: 2394 components: - type: Transform pos: -11.5,14.5 parent: 2 - - uid: 2391 + - uid: 2395 components: - type: Transform pos: -11.5,15.5 parent: 2 - - uid: 2392 + - uid: 2396 components: - type: Transform pos: -11.5,16.5 parent: 2 - - uid: 2393 + - uid: 2397 components: - type: Transform pos: -12.5,14.5 parent: 2 - - uid: 2394 + - uid: 2398 components: - type: Transform pos: -13.5,14.5 parent: 2 - - uid: 2395 + - uid: 2399 components: - type: Transform pos: -14.5,14.5 parent: 2 - - uid: 2396 + - uid: 2400 components: - type: Transform pos: -15.5,14.5 parent: 2 - - uid: 2397 + - uid: 2401 components: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 2398 + - uid: 2402 components: - type: Transform pos: 13.5,14.5 parent: 2 - - uid: 2399 + - uid: 2403 components: - type: Transform pos: 14.5,14.5 parent: 2 - - uid: 2400 + - uid: 2404 components: - type: Transform pos: 8.5,13.5 parent: 2 - - uid: 2401 + - uid: 2405 components: - type: Transform pos: -1.5,15.5 parent: 2 - - uid: 2402 + - uid: 2406 components: - type: Transform pos: -1.5,14.5 parent: 2 - - uid: 2403 + - uid: 2407 components: - type: Transform pos: -1.5,13.5 parent: 2 - - uid: 2404 + - uid: 2408 components: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 2405 + - uid: 2409 components: - type: Transform pos: -0.5,14.5 parent: 2 - - uid: 2406 + - uid: 2410 components: - type: Transform pos: -4.5,17.5 parent: 2 - - uid: 2407 + - uid: 2411 components: - type: Transform pos: -4.5,18.5 parent: 2 - - uid: 2408 + - uid: 2412 components: - type: Transform pos: -3.5,18.5 parent: 2 - - uid: 2409 + - uid: 2413 components: - type: Transform pos: -2.5,18.5 parent: 2 - - uid: 2410 + - uid: 2414 components: - type: Transform pos: -1.5,18.5 parent: 2 - - uid: 2411 + - uid: 2415 components: - type: Transform pos: -0.5,18.5 parent: 2 - - uid: 2412 + - uid: 2416 components: - type: Transform pos: 0.49999997,18.5 parent: 2 - - uid: 2413 + - uid: 2417 components: - type: Transform pos: 1.5,18.5 parent: 2 - - uid: 2414 + - uid: 2418 components: - type: Transform pos: 2.5,18.5 parent: 2 - - uid: 2415 + - uid: 2419 components: - type: Transform pos: 3.5,18.5 parent: 2 - - uid: 2416 + - uid: 2420 components: - type: Transform pos: 3.5,17.5 parent: 2 - - uid: 2417 + - uid: 2421 components: - type: Transform pos: 4.5,16.5 parent: 2 - - uid: 2418 + - uid: 2422 components: - type: Transform pos: 5.5,16.5 parent: 2 - - uid: 2419 + - uid: 2423 components: - type: Transform pos: 6.5,16.5 parent: 2 - - uid: 2420 + - uid: 2424 components: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 2421 + - uid: 2425 components: - type: Transform pos: 7.5,15.5 parent: 2 - - uid: 2422 + - uid: 2426 components: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 2423 + - uid: 2427 components: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 2424 + - uid: 2428 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 2425 + - uid: 2429 components: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 2426 + - uid: 2430 components: - type: Transform pos: -8.5,15.5 parent: 2 - - uid: 2427 + - uid: 2431 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 2428 + - uid: 2432 components: - type: Transform pos: 3.5,13.5 parent: 2 - - uid: 2429 + - uid: 2433 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 2430 + - uid: 2434 components: - type: Transform pos: 10.5,11.5 parent: 2 - - uid: 2431 + - uid: 2435 components: - type: Transform pos: 10.5,10.5 parent: 2 - - uid: 2432 + - uid: 2436 components: - type: Transform pos: 10.5,9.5 parent: 2 - - uid: 2433 + - uid: 2437 components: - type: Transform pos: 10.5,8.5 parent: 2 - - uid: 2434 + - uid: 2438 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 2435 + - uid: 2439 components: - type: Transform pos: 8.5,9.5 parent: 2 - - uid: 2436 + - uid: 2440 components: - type: Transform pos: 7.5,9.5 parent: 2 - - uid: 2437 + - uid: 2441 components: - type: Transform pos: 6.5,9.5 parent: 2 - - uid: 2438 + - uid: 2442 components: - type: Transform pos: 11.5,9.5 parent: 2 - - uid: 2439 + - uid: 2443 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 2440 + - uid: 2444 components: - type: Transform pos: 13.5,9.5 parent: 2 - - uid: 2441 + - uid: 2445 components: - type: Transform pos: 14.5,9.5 parent: 2 - - uid: 2442 + - uid: 2446 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 2443 + - uid: 2447 components: - type: Transform pos: 14.5,2.5 parent: 2 - - uid: 2444 + - uid: 2448 components: - type: Transform pos: 14.5,1.5 parent: 2 - - uid: 2445 + - uid: 2449 components: - type: Transform pos: 13.5,1.5 parent: 2 - - uid: 2446 + - uid: 2450 components: - type: Transform pos: 12.5,1.5 parent: 2 - - uid: 2447 + - uid: 2451 components: - type: Transform pos: 11.5,1.5 parent: 2 - - uid: 2448 + - uid: 2452 components: - type: Transform pos: 10.5,1.5 parent: 2 - - uid: 2449 + - uid: 2453 components: - type: Transform pos: 9.5,1.5 parent: 2 - - uid: 2450 + - uid: 2454 components: - type: Transform pos: 8.5,1.5 parent: 2 - - uid: 2451 + - uid: 2455 components: - type: Transform pos: 14.5,4.5 parent: 2 - - uid: 2452 + - uid: 2456 components: - type: Transform pos: 14.5,5.5 parent: 2 - - uid: 2453 + - uid: 2457 components: - type: Transform pos: 13.5,5.5 parent: 2 - - uid: 2454 + - uid: 2458 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 2455 + - uid: 2459 components: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 2456 + - uid: 2460 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 2457 + - uid: 2461 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 2458 + - uid: 2462 components: - type: Transform pos: 9.5,5.5 parent: 2 - - uid: 2459 + - uid: 2463 components: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 2460 + - uid: 2464 components: - type: Transform pos: 10.5,6.5 parent: 2 - - uid: 2461 + - uid: 2465 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 2462 + - uid: 2466 components: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 2463 + - uid: 2467 components: - type: Transform pos: 10.5,0.5 parent: 2 - - uid: 2464 + - uid: 2468 components: - type: Transform pos: 10.5,-0.5 parent: 2 - - uid: 2465 + - uid: 2469 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 2466 + - uid: 2470 components: - type: Transform pos: 11.5,-1.5 parent: 2 - - uid: 2467 + - uid: 2471 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 2468 + - uid: 2472 components: - type: Transform pos: 9.5,-3.5 parent: 2 - - uid: 2469 + - uid: 2473 components: - type: Transform pos: 9.5,-4.5 parent: 2 - - uid: 2470 + - uid: 2474 components: - type: Transform pos: 8.5,-4.5 parent: 2 - - uid: 2471 + - uid: 2475 components: - type: Transform pos: 10.5,-4.5 parent: 2 - - uid: 2472 + - uid: 2476 components: - type: Transform pos: 11.5,-4.5 parent: 2 - - uid: 2473 + - uid: 2477 components: - type: Transform pos: 11.5,-4.5 parent: 2 - - uid: 2474 + - uid: 2478 components: - type: Transform pos: 12.5,-4.5 parent: 2 - - uid: 2475 + - uid: 2479 components: - type: Transform pos: 13.5,-4.5 parent: 2 - - uid: 2476 + - uid: 2480 components: - type: Transform pos: 14.5,-4.5 parent: 2 - - uid: 2477 + - uid: 2481 components: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 2478 + - uid: 2482 components: - type: Transform pos: 14.5,-3.5 parent: 2 - - uid: 2479 + - uid: 2483 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 2480 + - uid: 2484 components: - type: Transform pos: -0.5,9.5 parent: 2 - - uid: 2481 + - uid: 2485 components: - type: Transform pos: -0.5,8.5 parent: 2 - - uid: 2482 + - uid: 2486 components: - type: Transform pos: -0.5,7.5 parent: 2 - - uid: 2483 + - uid: 2487 components: - type: Transform pos: -0.5,6.5 parent: 2 - - uid: 2484 + - uid: 2488 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 2485 + - uid: 2489 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 2486 + - uid: 2490 components: - type: Transform pos: -0.5,3.5 parent: 2 - - uid: 2487 + - uid: 2491 components: - type: Transform pos: -0.5,2.5 parent: 2 - - uid: 2488 + - uid: 2492 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 2489 + - uid: 2493 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 2490 + - uid: 2494 components: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 2491 + - uid: 2495 components: - type: Transform pos: -0.5,-1.5 parent: 2 - - uid: 2492 + - uid: 2496 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 2493 + - uid: 2497 components: - type: Transform pos: -0.5,-3.5 parent: 2 - - uid: 2494 + - uid: 2498 components: - type: Transform pos: -0.5,-4.5 parent: 2 - - uid: 2495 + - uid: 2499 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 2496 + - uid: 2500 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 2497 + - uid: 2501 components: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 2498 + - uid: 2502 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 2499 + - uid: 2503 components: - type: Transform pos: 10.5,-11.5 parent: 2 - - uid: 2500 + - uid: 2504 components: - type: Transform pos: 10.5,-12.5 parent: 2 - - uid: 2501 + - uid: 2505 components: - type: Transform pos: 9.5,-12.5 parent: 2 - - uid: 2502 + - uid: 2506 components: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 2503 + - uid: 2507 components: - type: Transform pos: 8.5,-11.5 parent: 2 - - uid: 2504 + - uid: 2508 components: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 2505 + - uid: 2509 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 2506 + - uid: 2510 components: - type: Transform pos: 8.5,-14.5 parent: 2 - - uid: 2507 + - uid: 2511 components: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 2508 + - uid: 2512 components: - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 2509 + - uid: 2513 components: - type: Transform pos: 9.5,-15.5 parent: 2 - - uid: 2510 + - uid: 2514 components: - type: Transform pos: 10.5,-15.5 parent: 2 - - uid: 2511 + - uid: 2515 components: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 2512 + - uid: 2516 components: - type: Transform pos: 12.5,-15.5 parent: 2 - - uid: 2513 + - uid: 2517 components: - type: Transform pos: 13.5,-15.5 parent: 2 - - uid: 2514 + - uid: 2518 components: - type: Transform pos: 13.5,-14.5 parent: 2 - - uid: 2515 + - uid: 2519 components: - type: Transform pos: 13.5,-13.5 parent: 2 - - uid: 2516 + - uid: 2520 components: - type: Transform pos: 13.5,-16.5 parent: 2 - - uid: 2517 + - uid: 2521 components: - type: Transform pos: -12.5,-11.5 parent: 2 - - uid: 2518 + - uid: 2522 components: - type: Transform pos: -12.5,-12.5 parent: 2 - - uid: 2519 + - uid: 2523 components: - type: Transform pos: -12.5,-13.5 parent: 2 - - uid: 2520 + - uid: 2524 components: - type: Transform pos: -12.5,-14.5 parent: 2 - - uid: 2521 + - uid: 2525 components: - type: Transform pos: -12.5,-15.5 parent: 2 - - uid: 2522 + - uid: 2526 components: - type: Transform pos: -12.5,-16.5 parent: 2 - - uid: 2523 + - uid: 2527 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 2524 + - uid: 2528 components: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 2525 + - uid: 2529 components: - type: Transform pos: -10.5,-11.5 parent: 2 - - uid: 2526 + - uid: 2530 components: - type: Transform pos: -10.5,-12.5 parent: 2 - - uid: 2527 + - uid: 2531 components: - type: Transform pos: -10.5,-13.5 parent: 2 - - uid: 2528 + - uid: 2532 components: - type: Transform pos: -10.5,-14.5 parent: 2 - - uid: 2529 + - uid: 2533 components: - type: Transform pos: -10.5,-15.5 parent: 2 - - uid: 2530 + - uid: 2534 components: - type: Transform pos: -10.5,-16.5 parent: 2 - - uid: 2531 + - uid: 2535 components: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 2532 + - uid: 2536 components: - type: Transform pos: -8.5,-12.5 parent: 2 - - uid: 2533 + - uid: 2537 components: - type: Transform pos: -8.5,-13.5 parent: 2 - - uid: 2534 + - uid: 2538 components: - type: Transform pos: -8.5,-14.5 parent: 2 - - uid: 2535 + - uid: 2539 components: - type: Transform pos: -8.5,-15.5 parent: 2 - - uid: 2536 + - uid: 2540 components: - type: Transform pos: -8.5,-16.5 parent: 2 - - uid: 2537 + - uid: 2541 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 2538 + - uid: 2542 components: - type: Transform pos: -13.5,-11.5 parent: 2 - - uid: 2539 + - uid: 2543 components: - type: Transform pos: -14.5,-11.5 parent: 2 - - uid: 2540 + - uid: 2544 components: - type: Transform pos: -14.5,-12.5 parent: 2 - - uid: 2541 + - uid: 2545 components: - type: Transform pos: -14.5,-13.5 parent: 2 - - uid: 2542 + - uid: 2546 components: - type: Transform pos: -14.5,-14.5 parent: 2 - - uid: 2543 + - uid: 2547 components: - type: Transform pos: -14.5,-15.5 parent: 2 - - uid: 2544 + - uid: 2548 components: - type: Transform pos: -14.5,-16.5 parent: 2 - - uid: 2545 + - uid: 2549 components: - type: Transform pos: -13.5,-16.5 parent: 2 - - uid: 2546 + - uid: 2550 components: - type: Transform pos: -11.5,-16.5 parent: 2 - - uid: 2547 + - uid: 2551 components: - type: Transform pos: -10.5,-16.5 parent: 2 - - uid: 2548 + - uid: 2552 components: - type: Transform pos: -9.5,-16.5 parent: 2 - - uid: 2549 + - uid: 2553 components: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 2550 + - uid: 2554 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 2551 + - uid: 2555 components: - type: Transform pos: -13.5,-9.5 parent: 2 - - uid: 2552 + - uid: 2556 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 2553 + - uid: 2557 components: - type: Transform pos: 14.5,-8.5 parent: 2 - - uid: 2554 + - uid: 2558 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 2555 + - uid: 2559 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 2556 + - uid: 2560 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 2557 + - uid: 2561 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 2558 + - uid: 2562 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 2559 + - uid: 2563 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 2560 + - uid: 2564 components: - type: Transform pos: 2.5,-11.5 parent: 2 - - uid: 2561 + - uid: 2565 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 2562 + - uid: 2566 components: - type: Transform pos: -3.5,-9.5 parent: 2 - - uid: 2563 + - uid: 2567 components: - type: Transform pos: -3.5,-10.5 parent: 2 - - uid: 2564 + - uid: 2568 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 2565 + - uid: 2569 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 2566 + - uid: 2570 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 2567 + - uid: 2571 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 2568 + - uid: 2572 components: - type: Transform pos: -9.5,-9.5 parent: 2 - - uid: 2569 + - uid: 2573 components: - type: Transform pos: 1.5,-11.5 parent: 2 - - uid: 2570 + - uid: 2574 components: - type: Transform pos: 0.49999997,-12.5 parent: 2 - - uid: 2571 + - uid: 2575 components: - type: Transform pos: 0.50000006,-13.5 parent: 2 - - uid: 2572 + - uid: 2576 components: - type: Transform pos: 0.49999997,-14.5 parent: 2 - - uid: 2573 + - uid: 2577 components: - type: Transform pos: 0.49999997,-15.5 parent: 2 - - uid: 2574 + - uid: 2578 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 2575 + - uid: 2579 components: - type: Transform pos: -1.5,-15.5 parent: 2 - - uid: 2576 + - uid: 2580 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 2577 + - uid: 2581 components: - type: Transform pos: -3.5,-15.5 parent: 2 - - uid: 2578 + - uid: 2582 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 2579 + - uid: 2583 components: - type: Transform pos: -4.5,-14.5 parent: 2 - - uid: 2580 + - uid: 2584 components: - type: Transform pos: 1.5,-15.5 parent: 2 - - uid: 2581 + - uid: 2585 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 2582 + - uid: 2586 components: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 2583 + - uid: 2587 components: - type: Transform pos: 3.5,-14.5 parent: 2 - - uid: 2584 + - uid: 2588 components: - type: Transform pos: -13.5,-8.5 parent: 2 - - uid: 2585 + - uid: 2589 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 2586 + - uid: 2590 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 2587 + - uid: 2591 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 2588 + - uid: 2592 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 2589 + - uid: 2593 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 2590 + - uid: 2594 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 2591 + - uid: 2595 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 2592 + - uid: 2596 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 2593 + - uid: 2597 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 2594 + - uid: 2598 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 2595 + - uid: 2599 components: - type: Transform pos: 3.5,-11.5 parent: 2 - - uid: 2596 + - uid: 2600 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 2597 + - uid: 2601 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 2598 + - uid: 2602 components: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 2599 + - uid: 2603 components: - type: Transform pos: 4.5,-12.5 parent: 2 - - uid: 2600 + - uid: 2604 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 2601 + - uid: 2605 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 2602 + - uid: 2606 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 2603 + - uid: 2607 components: - type: Transform pos: -46.5,-19.5 parent: 2 - - uid: 2604 + - uid: 2608 components: - type: Transform pos: -45.5,-19.5 parent: 2 - - uid: 2605 + - uid: 2609 components: - type: Transform pos: -44.5,-19.5 parent: 2 - - uid: 2606 + - uid: 2610 components: - type: Transform pos: -43.5,-19.5 parent: 2 - - uid: 2607 + - uid: 2611 components: - type: Transform pos: -42.5,-19.5 parent: 2 - - uid: 2608 + - uid: 2612 components: - type: Transform pos: -41.5,-19.5 parent: 2 - - uid: 2609 + - uid: 2613 components: - type: Transform pos: -40.5,-19.5 parent: 2 - - uid: 2610 + - uid: 2614 components: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 2611 + - uid: 2615 components: - type: Transform pos: -38.5,-19.5 parent: 2 - - uid: 2612 + - uid: 2616 components: - type: Transform pos: -37.5,-19.5 parent: 2 - - uid: 2613 + - uid: 2617 components: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 2614 + - uid: 2618 components: - type: Transform pos: -35.5,-19.5 parent: 2 - - uid: 2615 + - uid: 2619 components: - type: Transform pos: -34.5,-19.5 parent: 2 - - uid: 2616 + - uid: 2620 components: - type: Transform pos: -33.5,-19.5 parent: 2 - - uid: 2617 + - uid: 2621 components: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 2618 + - uid: 2622 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 2619 + - uid: 2623 components: - type: Transform pos: -30.5,-19.5 parent: 2 - - uid: 2620 + - uid: 2624 components: - type: Transform pos: -29.5,-19.5 parent: 2 - - uid: 2621 + - uid: 2625 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 2622 + - uid: 2626 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 2623 + - uid: 2627 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 2624 + - uid: 2628 components: - type: Transform pos: -22.5,-15.5 parent: 2 - - uid: 2625 + - uid: 2629 components: - type: Transform pos: -24.5,-19.5 parent: 2 - - uid: 2626 + - uid: 2630 components: - type: Transform pos: -23.5,-19.5 parent: 2 - - uid: 2627 + - uid: 2631 components: - type: Transform pos: -23.5,-17.5 parent: 2 - - uid: 2628 + - uid: 2632 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 2629 + - uid: 2633 components: - type: Transform pos: -23.5,-15.5 parent: 2 - - uid: 2630 + - uid: 2634 components: - type: Transform pos: -24.5,-15.5 parent: 2 - - uid: 2631 + - uid: 2635 components: - type: Transform pos: -22.5,-19.5 parent: 2 - - uid: 2632 + - uid: 2636 components: - type: Transform pos: -23.5,-20.5 parent: 2 - - uid: 2633 + - uid: 2637 components: - type: Transform pos: -23.5,-21.5 parent: 2 - - uid: 2634 + - uid: 2638 components: - type: Transform pos: -27.5,-18.5 parent: 2 - - uid: 2635 + - uid: 2639 components: - type: Transform pos: -27.5,-17.5 parent: 2 - - uid: 2636 + - uid: 2640 components: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 2637 + - uid: 2641 components: - type: Transform pos: -27.5,-15.5 parent: 2 - - uid: 2638 + - uid: 2642 components: - type: Transform pos: -27.5,-14.5 parent: 2 - - uid: 2639 + - uid: 2643 components: - type: Transform pos: -27.5,-13.5 parent: 2 - - uid: 2640 + - uid: 2644 components: - type: Transform pos: -27.5,-12.5 parent: 2 - - uid: 2641 + - uid: 2645 components: - type: Transform pos: -28.5,-12.5 parent: 2 - - uid: 2642 + - uid: 2646 components: - type: Transform pos: -29.5,-12.5 parent: 2 - - uid: 2643 + - uid: 2647 components: - type: Transform pos: -30.5,-12.5 parent: 2 - - uid: 2644 + - uid: 2648 components: - type: Transform pos: -31.5,-12.5 parent: 2 - - uid: 2645 + - uid: 2649 components: - type: Transform pos: -32.5,-12.5 parent: 2 - - uid: 2646 + - uid: 2650 components: - type: Transform pos: -31.5,-13.5 parent: 2 - - uid: 2647 + - uid: 2651 components: - type: Transform pos: -31.5,-14.5 parent: 2 - - uid: 2648 + - uid: 2652 components: - type: Transform pos: -31.5,-15.5 parent: 2 - - uid: 2649 + - uid: 2653 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 2650 + - uid: 2654 components: - type: Transform pos: -32.5,-10.5 parent: 2 - - uid: 2651 + - uid: 2655 components: - type: Transform pos: -32.5,-9.5 parent: 2 - - uid: 2652 + - uid: 2656 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 2653 + - uid: 2657 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 2654 + - uid: 2658 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 2655 + - uid: 2659 components: - type: Transform pos: -32.5,-5.5 parent: 2 - - uid: 2656 + - uid: 2660 components: - type: Transform pos: -32.5,-4.5 parent: 2 - - uid: 2657 + - uid: 2661 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 2658 + - uid: 2662 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 2659 + - uid: 2663 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 2660 + - uid: 2664 components: - type: Transform pos: -31.5,-1.5 parent: 2 - - uid: 2661 + - uid: 2665 components: - type: Transform pos: -30.5,-1.5 parent: 2 - - uid: 2662 + - uid: 2666 components: - type: Transform pos: -29.5,-1.5 parent: 2 - - uid: 2663 + - uid: 2667 components: - type: Transform pos: -28.5,-1.5 parent: 2 - - uid: 2664 + - uid: 2668 components: - type: Transform pos: -27.5,-1.5 parent: 2 - - uid: 2665 + - uid: 2669 components: - type: Transform pos: -26.5,-1.5 parent: 2 - - uid: 2666 + - uid: 2670 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - uid: 2667 + - uid: 2671 components: - type: Transform pos: -25.5,-1.5 parent: 2 - - uid: 2668 + - uid: 2672 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 2669 + - uid: 2673 components: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 2670 + - uid: 2674 components: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 2671 + - uid: 2675 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 2672 + - uid: 2676 components: - type: Transform pos: -23.5,-0.5 parent: 2 - - uid: 2673 + - uid: 2677 components: - type: Transform pos: -23.5,0.5 parent: 2 - - uid: 2674 + - uid: 2678 components: - type: Transform pos: -23.5,1.5 parent: 2 - - uid: 2675 + - uid: 2679 components: - type: Transform pos: -22.5,1.5 parent: 2 - - uid: 2676 + - uid: 2680 components: - type: Transform pos: -21.5,1.5 parent: 2 - - uid: 2677 + - uid: 2681 components: - type: Transform pos: -21.5,2.5 parent: 2 - - uid: 2678 + - uid: 2682 components: - type: Transform pos: -28.5,-5.5 parent: 2 - - uid: 2679 + - uid: 2683 components: - type: Transform pos: -28.5,-5.5 parent: 2 - - uid: 2680 + - uid: 2684 components: - type: Transform pos: -28.5,-4.5 parent: 2 - - uid: 2681 + - uid: 2685 components: - type: Transform pos: -28.5,-3.5 parent: 2 - - uid: 2682 + - uid: 2686 components: - type: Transform pos: -28.5,-2.5 parent: 2 - - uid: 2683 + - uid: 2687 components: - type: Transform pos: -27.5,-5.5 parent: 2 - - uid: 2684 + - uid: 2688 components: - type: Transform pos: -28.5,-6.5 parent: 2 - - uid: 2685 + - uid: 2689 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 2686 + - uid: 2690 components: - type: Transform pos: -28.5,-8.5 parent: 2 - - uid: 2687 + - uid: 2691 components: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 2688 + - uid: 2692 components: - type: Transform pos: -30.5,-5.5 parent: 2 - - uid: 2689 + - uid: 2693 components: - type: Transform pos: -29.5,-5.5 parent: 2 - - uid: 2690 + - uid: 2694 components: - type: Transform pos: -32.5,-0.5 parent: 2 - - uid: 2691 + - uid: 2695 components: - type: Transform pos: -32.5,0.5 parent: 2 - - uid: 2692 + - uid: 2696 components: - type: Transform pos: -32.5,1.5 parent: 2 - - uid: 2693 + - uid: 2697 components: - type: Transform pos: -32.5,2.5 parent: 2 - - uid: 2694 + - uid: 2698 components: - type: Transform pos: -39.5,-0.5 parent: 2 - - uid: 2695 + - uid: 2699 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 2696 + - uid: 2700 components: - type: Transform pos: -40.5,-1.5 parent: 2 - - uid: 2697 + - uid: 2701 components: - type: Transform pos: -41.5,-1.5 parent: 2 - - uid: 2698 + - uid: 2702 components: - type: Transform pos: -41.5,-0.5 parent: 2 - - uid: 2699 + - uid: 2703 components: - type: Transform pos: -41.5,0.5 parent: 2 - - uid: 2700 + - uid: 2704 components: - type: Transform pos: -41.5,1.5 parent: 2 - - uid: 2701 + - uid: 2705 components: - type: Transform pos: -41.5,-2.5 parent: 2 - - uid: 2702 + - uid: 2706 components: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 2703 + - uid: 2707 components: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 2704 + - uid: 2708 components: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 2705 + - uid: 2709 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 2706 + - uid: 2710 components: - type: Transform pos: -41.5,-7.5 parent: 2 - - uid: 2707 + - uid: 2711 components: - type: Transform pos: -41.5,-8.5 parent: 2 - - uid: 2708 + - uid: 2712 components: - type: Transform pos: -41.5,-9.5 parent: 2 - - uid: 2709 + - uid: 2713 components: - type: Transform pos: -41.5,-10.5 parent: 2 - - uid: 2710 + - uid: 2714 components: - type: Transform pos: -41.5,-11.5 parent: 2 - - uid: 2711 + - uid: 2715 components: - type: Transform pos: -42.5,-11.5 parent: 2 - - uid: 2712 + - uid: 2716 components: - type: Transform pos: -43.5,-11.5 parent: 2 - - uid: 2713 + - uid: 2717 components: - type: Transform pos: -43.5,-12.5 parent: 2 - - uid: 2714 + - uid: 2718 components: - type: Transform pos: -43.5,-13.5 parent: 2 - - uid: 2715 + - uid: 2719 components: - type: Transform pos: -43.5,-14.5 parent: 2 - - uid: 2716 + - uid: 2720 components: - type: Transform pos: -43.5,-15.5 parent: 2 - - uid: 2717 + - uid: 2721 components: - type: Transform pos: -43.5,-16.5 parent: 2 - - uid: 2718 + - uid: 2722 components: - type: Transform pos: -43.5,-17.5 parent: 2 - - uid: 2719 + - uid: 2723 components: - type: Transform pos: -43.5,-18.5 parent: 2 - - uid: 2720 + - uid: 2724 components: - type: Transform pos: -43.5,-19.5 parent: 2 - - uid: 2721 + - uid: 2725 components: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 2722 + - uid: 2726 components: - type: Transform pos: -36.5,-18.5 parent: 2 - - uid: 2723 + - uid: 2727 components: - type: Transform pos: -36.5,-17.5 parent: 2 - - uid: 2724 + - uid: 2728 components: - type: Transform pos: -36.5,-16.5 parent: 2 - - uid: 2725 + - uid: 2729 components: - type: Transform pos: -36.5,-15.5 parent: 2 - - uid: 2726 + - uid: 2730 components: - type: Transform pos: -36.5,-14.5 parent: 2 - - uid: 2727 + - uid: 2731 components: - type: Transform pos: -36.5,-13.5 parent: 2 - - uid: 2728 + - uid: 2732 components: - type: Transform pos: -36.5,-12.5 parent: 2 - - uid: 2729 + - uid: 2733 components: - type: Transform pos: -36.5,-11.5 parent: 2 - - uid: 2730 + - uid: 2734 components: - type: Transform pos: -36.5,-10.5 parent: 2 - - uid: 2731 + - uid: 2735 components: - type: Transform pos: -36.5,-9.5 parent: 2 - - uid: 2732 + - uid: 2736 components: - type: Transform pos: -36.5,-8.5 parent: 2 - - uid: 2733 + - uid: 2737 components: - type: Transform pos: -36.5,-7.5 parent: 2 - - uid: 2734 + - uid: 2738 components: - type: Transform pos: -36.5,-6.5 parent: 2 - - uid: 2735 + - uid: 2739 components: - type: Transform pos: -36.5,-5.5 parent: 2 - - uid: 2736 + - uid: 2740 components: - type: Transform pos: -36.5,-4.5 parent: 2 - - uid: 2737 + - uid: 2741 components: - type: Transform pos: -36.5,-3.5 parent: 2 - - uid: 2738 + - uid: 2742 components: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 2739 + - uid: 2743 components: - type: Transform pos: -36.5,-1.5 parent: 2 - - uid: 2740 + - uid: 2744 components: - type: Transform pos: -37.5,-1.5 parent: 2 - - uid: 2741 + - uid: 2745 components: - type: Transform pos: -38.5,-1.5 parent: 2 - - uid: 2742 + - uid: 2746 components: - type: Transform pos: -37.5,-0.5 parent: 2 - - uid: 2743 + - uid: 2747 components: - type: Transform pos: -37.5,0.5 parent: 2 - - uid: 2744 + - uid: 2748 components: - type: Transform pos: -37.5,1.5 parent: 2 - - uid: 2745 + - uid: 2749 components: - type: Transform pos: -40.5,-11.5 parent: 2 - - uid: 2746 + - uid: 2750 components: - type: Transform pos: -39.5,-11.5 parent: 2 - - uid: 2747 + - uid: 2751 components: - type: Transform pos: -38.5,-11.5 parent: 2 - - uid: 2748 + - uid: 2752 components: - type: Transform pos: -37.5,-11.5 parent: 2 - - uid: 2749 + - uid: 2753 components: - type: Transform pos: -37.5,-15.5 parent: 2 - - uid: 2750 + - uid: 2754 components: - type: Transform pos: -38.5,-15.5 parent: 2 - - uid: 2751 + - uid: 2755 components: - type: Transform pos: -39.5,-15.5 parent: 2 - - uid: 2752 + - uid: 2756 components: - type: Transform pos: -40.5,-15.5 parent: 2 - - uid: 2753 + - uid: 2757 components: - type: Transform pos: -22.5,-13.5 parent: 2 - - uid: 2754 + - uid: 2758 components: - type: Transform pos: 68.5,17.5 parent: 2 - - uid: 2755 + - uid: 2759 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 2756 + - uid: 2760 components: - type: Transform pos: 77.5,-42.5 parent: 2 - - uid: 2757 + - uid: 2761 components: - type: Transform pos: 77.5,-43.5 parent: 2 - - uid: 2758 + - uid: 2762 components: - type: Transform pos: 77.5,-44.5 parent: 2 - - uid: 2759 + - uid: 2763 components: - type: Transform pos: 77.5,-45.5 parent: 2 - - uid: 2760 + - uid: 2764 components: - type: Transform pos: 77.5,-46.5 parent: 2 - - uid: 2761 + - uid: 2765 components: - type: Transform pos: 76.5,-44.5 parent: 2 - - uid: 2762 + - uid: 2766 components: - type: Transform pos: 75.5,-44.5 parent: 2 - - uid: 2763 + - uid: 2767 components: - type: Transform pos: 74.5,-44.5 parent: 2 - - uid: 2764 + - uid: 2768 components: - type: Transform pos: 73.5,-44.5 parent: 2 - - uid: 2765 + - uid: 2769 components: - type: Transform pos: 72.5,-44.5 parent: 2 - - uid: 2766 + - uid: 2770 components: - type: Transform pos: 71.5,-44.5 parent: 2 - - uid: 2767 + - uid: 2771 components: - type: Transform pos: 70.5,-44.5 parent: 2 - - uid: 2768 + - uid: 2772 components: - type: Transform pos: 69.5,-44.5 parent: 2 - - uid: 2769 + - uid: 2773 components: - type: Transform pos: 73.5,-43.5 parent: 2 - - uid: 2770 + - uid: 2774 components: - type: Transform pos: 73.5,-42.5 parent: 2 - - uid: 2771 + - uid: 2775 components: - type: Transform pos: 73.5,-41.5 parent: 2 - - uid: 2772 + - uid: 2776 components: - type: Transform pos: 73.5,-40.5 parent: 2 - - uid: 2773 + - uid: 2777 components: - type: Transform pos: 73.5,-39.5 parent: 2 - - uid: 2774 + - uid: 2778 components: - type: Transform pos: 73.5,-38.5 parent: 2 - - uid: 2775 + - uid: 2779 components: - type: Transform pos: 73.5,-37.5 parent: 2 - - uid: 2776 + - uid: 2780 components: - type: Transform pos: 73.5,-45.5 parent: 2 - - uid: 2777 + - uid: 2781 components: - type: Transform pos: 73.5,-46.5 parent: 2 - - uid: 2778 + - uid: 2782 components: - type: Transform pos: 73.5,-47.5 parent: 2 - - uid: 2779 + - uid: 2783 components: - type: Transform pos: 73.5,-48.5 parent: 2 - - uid: 2780 + - uid: 2784 components: - type: Transform pos: 73.5,-49.5 parent: 2 - - uid: 2781 + - uid: 2785 components: - type: Transform pos: 73.5,-50.5 parent: 2 - - uid: 2782 + - uid: 2786 components: - type: Transform pos: 72.5,-49.5 parent: 2 - - uid: 2783 + - uid: 2787 components: - type: Transform pos: 71.5,-49.5 parent: 2 - - uid: 2784 + - uid: 2788 components: - type: Transform pos: 70.5,-49.5 parent: 2 - - uid: 2785 + - uid: 2789 components: - type: Transform pos: 69.5,-49.5 parent: 2 - - uid: 2786 + - uid: 2790 components: - type: Transform pos: 69.5,-43.5 parent: 2 - - uid: 2787 + - uid: 2791 components: - type: Transform pos: 69.5,-42.5 parent: 2 - - uid: 2788 + - uid: 2792 components: - type: Transform pos: 69.5,-41.5 parent: 2 - - uid: 2789 + - uid: 2793 components: - type: Transform pos: 69.5,-40.5 parent: 2 - - uid: 2790 + - uid: 2794 components: - type: Transform pos: 68.5,-40.5 parent: 2 - - uid: 2791 + - uid: 2795 components: - type: Transform pos: 67.5,-40.5 parent: 2 - - uid: 2792 + - uid: 2796 components: - type: Transform pos: 66.5,-40.5 parent: 2 - - uid: 2793 + - uid: 2797 components: - type: Transform pos: 65.5,-40.5 parent: 2 - - uid: 2794 + - uid: 2798 components: - type: Transform pos: 64.5,-40.5 parent: 2 - - uid: 2811 + - uid: 2799 components: - type: Transform pos: 81.5,-18.5 parent: 2 - - uid: 2812 + - uid: 2800 components: - type: Transform pos: 80.5,-18.5 parent: 2 - - uid: 2813 + - uid: 2801 components: - type: Transform pos: 79.5,-18.5 parent: 2 - - uid: 2814 + - uid: 2802 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 2815 + - uid: 2803 components: - type: Transform pos: 77.5,-18.5 parent: 2 - - uid: 2816 + - uid: 2804 components: - type: Transform pos: 77.5,-21.5 parent: 2 - - uid: 2817 + - uid: 2805 components: - type: Transform pos: 78.5,-21.5 parent: 2 - - uid: 2818 + - uid: 2806 components: - type: Transform pos: 79.5,-21.5 parent: 2 - - uid: 2819 + - uid: 2807 components: - type: Transform pos: 80.5,-21.5 parent: 2 - - uid: 2855 + - uid: 2808 components: - type: Transform pos: 71.5,-14.5 parent: 2 - - uid: 2856 + - uid: 2809 components: - type: Transform pos: 71.5,-15.5 parent: 2 - - uid: 2857 + - uid: 2810 components: - type: Transform pos: 71.5,-16.5 parent: 2 - - uid: 2858 + - uid: 2811 components: - type: Transform pos: 71.5,-17.5 parent: 2 - - uid: 2859 + - uid: 2812 components: - type: Transform pos: 71.5,-18.5 parent: 2 - - uid: 2860 + - uid: 2813 components: - type: Transform pos: 71.5,-19.5 parent: 2 - - uid: 2861 + - uid: 2814 components: - type: Transform pos: 71.5,-20.5 parent: 2 - - uid: 2862 + - uid: 2815 components: - type: Transform pos: 71.5,-21.5 parent: 2 - - uid: 2863 + - uid: 2816 components: - type: Transform pos: 71.5,-22.5 parent: 2 - - uid: 2864 + - uid: 2817 components: - type: Transform pos: 71.5,-23.5 parent: 2 - - uid: 2865 + - uid: 2818 components: - type: Transform pos: 71.5,-24.5 parent: 2 - - uid: 2866 + - uid: 2819 components: - type: Transform pos: 70.5,-18.5 parent: 2 - - uid: 2867 + - uid: 2820 components: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 2868 + - uid: 2821 components: - type: Transform pos: 68.5,-18.5 parent: 2 - - uid: 2869 + - uid: 2822 components: - type: Transform pos: 67.5,-18.5 parent: 2 - - uid: 2870 + - uid: 2823 components: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 2871 + - uid: 2824 components: - type: Transform pos: 65.5,-18.5 parent: 2 - - uid: 2872 + - uid: 2825 components: - type: Transform pos: 65.5,-21.5 parent: 2 - - uid: 2873 + - uid: 2826 components: - type: Transform pos: 66.5,-21.5 parent: 2 - - uid: 2874 + - uid: 2827 components: - type: Transform pos: 67.5,-21.5 parent: 2 - - uid: 2875 + - uid: 2828 components: - type: Transform pos: 68.5,-21.5 parent: 2 - - uid: 2876 + - uid: 2829 components: - type: Transform pos: 69.5,-21.5 parent: 2 - - uid: 2877 + - uid: 2830 components: - type: Transform pos: 70.5,-21.5 parent: 2 - - uid: 2878 + - uid: 2831 components: - type: Transform pos: 71.5,-21.5 parent: 2 - - uid: 2879 + - uid: 2832 components: - type: Transform pos: 72.5,-21.5 parent: 2 - - uid: 2880 + - uid: 2833 components: - type: Transform pos: 73.5,-21.5 parent: 2 - - uid: 2881 + - uid: 2834 components: - type: Transform pos: 74.5,-21.5 parent: 2 - - uid: 2882 + - uid: 2835 components: - type: Transform pos: 75.5,-21.5 parent: 2 - - uid: 2883 + - uid: 2836 components: - type: Transform pos: 75.5,-18.5 parent: 2 - - uid: 2884 + - uid: 2837 components: - type: Transform pos: 74.5,-18.5 parent: 2 - - uid: 2885 + - uid: 2838 components: - type: Transform pos: 73.5,-18.5 parent: 2 - - uid: 2886 + - uid: 2839 components: - type: Transform pos: 72.5,-18.5 parent: 2 - - uid: 2887 + - uid: 2840 components: - type: Transform pos: 71.5,-18.5 parent: 2 - - uid: 2888 + - uid: 2841 components: - type: Transform pos: 70.5,-18.5 parent: 2 - - uid: 2889 + - uid: 2842 components: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 2890 + - uid: 2843 components: - type: Transform pos: -38.5,35.5 parent: 2 - - uid: 2891 + - uid: 2844 components: - type: Transform pos: -38.5,34.5 parent: 2 - - uid: 2892 + - uid: 2845 components: - type: Transform pos: -38.5,33.5 parent: 2 - - uid: 2893 + - uid: 2846 components: - type: Transform pos: -38.5,32.5 parent: 2 - - uid: 2894 + - uid: 2847 components: - type: Transform pos: -38.5,31.5 parent: 2 - - uid: 2895 + - uid: 2848 components: - type: Transform pos: -39.5,34.5 parent: 2 - - uid: 2896 + - uid: 2849 components: - type: Transform pos: -40.5,34.5 parent: 2 - - uid: 2897 + - uid: 2850 components: - type: Transform pos: -37.5,32.5 parent: 2 - - uid: 2898 + - uid: 2851 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 2899 + - uid: 2852 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 2900 + - uid: 2853 components: - type: Transform pos: -40.5,28.5 parent: 2 - - uid: 2901 + - uid: 2854 components: - type: Transform pos: -39.5,28.5 parent: 2 - - uid: 2902 + - uid: 2855 components: - type: Transform pos: -38.5,28.5 parent: 2 - - uid: 2903 + - uid: 2856 components: - type: Transform pos: -38.5,27.5 parent: 2 - - uid: 2904 + - uid: 2857 components: - type: Transform pos: -37.5,27.5 parent: 2 - - uid: 2905 + - uid: 2858 components: - type: Transform pos: -37.5,26.5 parent: 2 - - uid: 2906 + - uid: 2859 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 2907 + - uid: 2860 components: - type: Transform pos: -39.5,37.5 parent: 2 - - uid: 2908 + - uid: 2861 components: - type: Transform pos: -40.5,37.5 parent: 2 - - uid: 2909 + - uid: 2862 components: - type: Transform pos: -41.5,37.5 parent: 2 - - uid: 2910 + - uid: 2863 components: - type: Transform pos: -42.5,37.5 parent: 2 - - uid: 2911 + - uid: 2864 components: - type: Transform pos: -43.5,37.5 parent: 2 - - uid: 2912 + - uid: 2865 components: - type: Transform pos: -44.5,37.5 parent: 2 - - uid: 2913 + - uid: 2866 components: - type: Transform pos: -44.5,38.5 parent: 2 - - uid: 2914 + - uid: 2867 components: - type: Transform pos: -44.5,39.5 parent: 2 - - uid: 2915 + - uid: 2868 components: - type: Transform pos: -44.5,40.5 parent: 2 - - uid: 2916 + - uid: 2869 components: - type: Transform pos: -44.5,41.5 parent: 2 - - uid: 2917 + - uid: 2870 components: - type: Transform pos: -44.5,42.5 parent: 2 - - uid: 2918 + - uid: 2871 components: - type: Transform pos: -43.5,42.5 parent: 2 - - uid: 2919 + - uid: 2872 components: - type: Transform pos: -42.5,42.5 parent: 2 - - uid: 2920 + - uid: 2873 components: - type: Transform pos: -41.5,42.5 parent: 2 - - uid: 2921 + - uid: 2874 components: - type: Transform pos: -40.5,42.5 parent: 2 - - uid: 2922 + - uid: 2875 components: - type: Transform pos: -39.5,42.5 parent: 2 - - uid: 2923 + - uid: 2876 components: - type: Transform pos: -38.5,42.5 parent: 2 - - uid: 2924 + - uid: 2877 components: - type: Transform pos: -37.5,42.5 parent: 2 - - uid: 2925 + - uid: 2878 components: - type: Transform pos: -36.5,42.5 parent: 2 - - uid: 2926 + - uid: 2879 components: - type: Transform pos: -35.5,42.5 parent: 2 - - uid: 2927 + - uid: 2880 components: - type: Transform pos: -35.5,41.5 parent: 2 - - uid: 2928 + - uid: 2881 components: - type: Transform pos: -35.5,40.5 parent: 2 - - uid: 2929 + - uid: 2882 components: - type: Transform pos: -35.5,39.5 parent: 2 - - uid: 2930 + - uid: 2883 components: - type: Transform pos: -35.5,38.5 parent: 2 - - uid: 2931 + - uid: 2884 components: - type: Transform pos: -35.5,37.5 parent: 2 - - uid: 2932 + - uid: 2885 components: - type: Transform pos: -35.5,36.5 parent: 2 - - uid: 2933 + - uid: 2886 components: - type: Transform pos: -35.5,35.5 parent: 2 - - uid: 2934 + - uid: 2887 components: - type: Transform pos: -35.5,34.5 parent: 2 - - uid: 2935 + - uid: 2888 components: - type: Transform pos: -35.5,33.5 parent: 2 - - uid: 2936 + - uid: 2889 components: - type: Transform pos: -35.5,32.5 parent: 2 - - uid: 2937 + - uid: 2890 components: - type: Transform pos: -35.5,31.5 parent: 2 - - uid: 2938 + - uid: 2891 components: - type: Transform pos: -35.5,30.5 parent: 2 - - uid: 2939 + - uid: 2892 components: - type: Transform pos: -35.5,29.5 parent: 2 - - uid: 2940 + - uid: 2893 components: - type: Transform pos: -35.5,28.5 parent: 2 - - uid: 2941 + - uid: 2894 components: - type: Transform pos: -35.5,27.5 parent: 2 - - uid: 2942 + - uid: 2895 components: - type: Transform pos: -35.5,26.5 parent: 2 - - uid: 2943 + - uid: 2896 components: - type: Transform pos: -35.5,25.5 parent: 2 - - uid: 2944 + - uid: 2897 components: - type: Transform pos: -35.5,24.5 parent: 2 - - uid: 2945 + - uid: 2898 components: - type: Transform pos: -35.5,23.5 parent: 2 - - uid: 2946 + - uid: 2899 components: - type: Transform pos: -36.5,23.5 parent: 2 - - uid: 2947 + - uid: 2900 components: - type: Transform pos: -37.5,23.5 parent: 2 - - uid: 2948 + - uid: 2901 components: - type: Transform pos: -38.5,23.5 parent: 2 - - uid: 2949 + - uid: 2902 components: - type: Transform pos: -34.5,23.5 parent: 2 - - uid: 2950 + - uid: 2903 components: - type: Transform pos: -33.5,23.5 parent: 2 - - uid: 2951 + - uid: 2904 components: - type: Transform pos: -32.5,23.5 parent: 2 - - uid: 2952 + - uid: 2905 components: - type: Transform pos: -31.5,23.5 parent: 2 - - uid: 2953 + - uid: 2906 components: - type: Transform pos: -30.5,23.5 parent: 2 - - uid: 2954 + - uid: 2907 components: - type: Transform pos: -29.5,23.5 parent: 2 - - uid: 2955 + - uid: 2908 components: - type: Transform pos: -28.5,23.5 parent: 2 - - uid: 2956 + - uid: 2909 components: - type: Transform pos: -30.5,8.5 parent: 2 - - uid: 2957 + - uid: 2910 components: - type: Transform pos: -30.5,9.5 parent: 2 - - uid: 2958 + - uid: 2911 components: - type: Transform pos: -30.5,10.5 parent: 2 - - uid: 2959 + - uid: 2912 components: - type: Transform pos: -30.5,11.5 parent: 2 - - uid: 2960 + - uid: 2913 components: - type: Transform pos: -30.5,12.5 parent: 2 - - uid: 2961 + - uid: 2914 components: - type: Transform pos: -30.5,13.5 parent: 2 - - uid: 2962 + - uid: 2915 components: - type: Transform pos: -30.5,14.5 parent: 2 - - uid: 2963 + - uid: 2916 components: - type: Transform pos: -30.5,15.5 parent: 2 - - uid: 2964 + - uid: 2917 components: - type: Transform pos: -30.5,16.5 parent: 2 - - uid: 2965 + - uid: 2918 components: - type: Transform pos: -30.5,17.5 parent: 2 - - uid: 2966 + - uid: 2919 components: - type: Transform pos: -30.5,18.5 parent: 2 - - uid: 2967 + - uid: 2920 components: - type: Transform pos: -30.5,19.5 parent: 2 - - uid: 2968 + - uid: 2921 components: - type: Transform pos: -30.5,20.5 parent: 2 - - uid: 2969 + - uid: 2922 components: - type: Transform pos: -30.5,21.5 parent: 2 - - uid: 2970 + - uid: 2923 components: - type: Transform pos: -30.5,22.5 parent: 2 - - uid: 2971 + - uid: 2924 components: - type: Transform pos: -30.5,17.5 parent: 2 - - uid: 2972 + - uid: 2925 components: - type: Transform pos: -29.5,17.5 parent: 2 - - uid: 2973 + - uid: 2926 components: - type: Transform pos: -28.5,17.5 parent: 2 - - uid: 2974 + - uid: 2927 components: - type: Transform pos: -27.5,17.5 parent: 2 - - uid: 2975 + - uid: 2928 components: - type: Transform pos: -26.5,17.5 parent: 2 - - uid: 2976 + - uid: 2929 components: - type: Transform pos: -25.5,17.5 parent: 2 - - uid: 2977 + - uid: 2930 components: - type: Transform pos: -24.5,17.5 parent: 2 - - uid: 2978 + - uid: 2931 components: - type: Transform pos: -28.5,25.5 parent: 2 - - uid: 2979 + - uid: 2932 components: - type: Transform pos: -28.5,24.5 parent: 2 - - uid: 2980 + - uid: 2933 components: - type: Transform pos: -27.5,25.5 parent: 2 - - uid: 2981 + - uid: 2934 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 2982 + - uid: 2935 components: - type: Transform pos: -25.5,25.5 parent: 2 - - uid: 2983 + - uid: 2936 components: - type: Transform pos: -24.5,25.5 parent: 2 - - uid: 2984 + - uid: 2937 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 2985 + - uid: 2938 components: - type: Transform pos: -23.5,26.5 parent: 2 - - uid: 2986 + - uid: 2939 components: - type: Transform pos: -22.5,26.5 parent: 2 - - uid: 2987 + - uid: 2940 components: - type: Transform pos: -41.5,25.5 parent: 2 - - uid: 2988 + - uid: 2941 components: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 2989 + - uid: 2942 components: - type: Transform pos: -42.5,26.5 parent: 2 - - uid: 2990 + - uid: 2943 components: - type: Transform pos: -42.5,27.5 parent: 2 - - uid: 2991 + - uid: 2944 components: - type: Transform pos: -42.5,28.5 parent: 2 - - uid: 2992 + - uid: 2945 components: - type: Transform pos: -42.5,29.5 parent: 2 - - uid: 2993 + - uid: 2946 components: - type: Transform pos: -42.5,30.5 parent: 2 - - uid: 2994 + - uid: 2947 components: - type: Transform pos: -42.5,31.5 parent: 2 - - uid: 2995 + - uid: 2948 components: - type: Transform pos: -42.5,32.5 parent: 2 - - uid: 2996 + - uid: 2949 components: - type: Transform pos: -42.5,33.5 parent: 2 - - uid: 2997 + - uid: 2950 components: - type: Transform pos: -42.5,34.5 parent: 2 - - uid: 2998 + - uid: 2951 components: - type: Transform pos: -42.5,35.5 parent: 2 - - uid: 2999 + - uid: 2952 components: - type: Transform pos: -42.5,36.5 parent: 2 - - uid: 3000 + - uid: 2953 components: - type: Transform pos: -37.5,43.5 parent: 2 - - uid: 3001 + - uid: 2954 components: - type: Transform pos: -13.5,83.5 parent: 2 - - uid: 3002 + - uid: 2955 components: - type: Transform pos: -11.5,82.5 parent: 2 - - uid: 3003 + - uid: 2956 components: - type: Transform pos: -11.5,83.5 parent: 2 - - uid: 3004 + - uid: 2957 components: - type: Transform pos: -11.5,84.5 parent: 2 - - uid: 3005 + - uid: 2958 components: - type: Transform pos: -11.5,85.5 parent: 2 - - uid: 3006 + - uid: 2959 components: - type: Transform pos: -11.5,86.5 parent: 2 - - uid: 3007 + - uid: 2960 components: - type: Transform pos: -11.5,87.5 parent: 2 - - uid: 3008 + - uid: 2961 components: - type: Transform pos: -11.5,88.5 parent: 2 - - uid: 3009 + - uid: 2962 components: - type: Transform pos: -11.5,89.5 parent: 2 - - uid: 3010 + - uid: 2963 components: - type: Transform pos: -11.5,90.5 parent: 2 - - uid: 3011 + - uid: 2964 components: - type: Transform pos: -11.5,91.5 parent: 2 - - uid: 3012 + - uid: 2965 components: - type: Transform pos: -11.5,92.5 parent: 2 - - uid: 3013 + - uid: 2966 components: - type: Transform pos: -11.5,93.5 parent: 2 - - uid: 3014 + - uid: 2967 components: - type: Transform pos: -11.5,94.5 parent: 2 - - uid: 3015 + - uid: 2968 components: - type: Transform pos: -11.5,95.5 parent: 2 - - uid: 3016 + - uid: 2969 components: - type: Transform pos: -11.5,96.5 parent: 2 - - uid: 3017 + - uid: 2970 components: - type: Transform pos: -11.5,97.5 parent: 2 - - uid: 3018 + - uid: 2971 components: - type: Transform pos: -11.5,98.5 parent: 2 - - uid: 3019 + - uid: 2972 components: - type: Transform pos: -11.5,84.5 parent: 2 - - uid: 3020 + - uid: 2973 components: - type: Transform pos: -10.5,84.5 parent: 2 - - uid: 3021 + - uid: 2974 components: - type: Transform pos: -9.5,84.5 parent: 2 - - uid: 3022 + - uid: 2975 components: - type: Transform pos: -8.5,84.5 parent: 2 - - uid: 3023 + - uid: 2976 components: - type: Transform pos: -11.5,79.5 parent: 2 - - uid: 3024 + - uid: 2977 components: - type: Transform pos: -11.5,80.5 parent: 2 - - uid: 3025 + - uid: 2978 components: - type: Transform pos: -11.5,81.5 parent: 2 - - uid: 3026 + - uid: 2979 components: - type: Transform pos: -11.5,78.5 parent: 2 - - uid: 3027 + - uid: 2980 components: - type: Transform pos: -11.5,77.5 parent: 2 - - uid: 3028 + - uid: 2981 components: - type: Transform pos: -11.5,76.5 parent: 2 - - uid: 3029 + - uid: 2982 components: - type: Transform pos: -11.5,75.5 parent: 2 - - uid: 3030 + - uid: 2983 components: - type: Transform pos: -11.5,74.5 parent: 2 - - uid: 3031 + - uid: 2984 components: - type: Transform pos: -11.5,73.5 parent: 2 - - uid: 3032 + - uid: 2985 components: - type: Transform pos: -11.5,72.5 parent: 2 - - uid: 3033 + - uid: 2986 components: - type: Transform pos: -11.5,71.5 parent: 2 - - uid: 3034 + - uid: 2987 components: - type: Transform pos: -10.5,77.5 parent: 2 - - uid: 3035 + - uid: 2988 components: - type: Transform pos: -9.5,77.5 parent: 2 - - uid: 3036 + - uid: 2989 components: - type: Transform pos: -8.5,77.5 parent: 2 - - uid: 3037 + - uid: 2990 components: - type: Transform pos: -12.5,77.5 parent: 2 - - uid: 3038 + - uid: 2991 components: - type: Transform pos: -13.5,77.5 parent: 2 - - uid: 3039 + - uid: 2992 components: - type: Transform pos: -14.5,77.5 parent: 2 - - uid: 3040 + - uid: 2993 components: - type: Transform pos: -12.5,80.5 parent: 2 - - uid: 3041 + - uid: 2994 components: - type: Transform pos: -13.5,80.5 parent: 2 - - uid: 3042 + - uid: 2995 components: - type: Transform pos: -13.5,81.5 parent: 2 - - uid: 3043 + - uid: 2996 components: - type: Transform pos: -13.5,82.5 parent: 2 - - uid: 3044 + - uid: 2997 components: - type: Transform pos: -13.5,83.5 parent: 2 - - uid: 3045 + - uid: 2998 components: - type: Transform pos: -12.5,84.5 parent: 2 - - uid: 3046 + - uid: 2999 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 3047 + - uid: 3000 components: - type: Transform pos: -7.5,69.5 parent: 2 - - uid: 3048 + - uid: 3001 components: - type: Transform pos: -7.5,68.5 parent: 2 - - uid: 3049 + - uid: 3002 components: - type: Transform pos: -8.5,68.5 parent: 2 - - uid: 3050 + - uid: 3003 components: - type: Transform pos: -9.5,68.5 parent: 2 - - uid: 3051 + - uid: 3004 components: - type: Transform pos: -10.5,68.5 parent: 2 - - uid: 3052 + - uid: 3005 components: - type: Transform pos: -11.5,68.5 parent: 2 - - uid: 3053 + - uid: 3006 components: - type: Transform pos: -12.5,68.5 parent: 2 - - uid: 3054 + - uid: 3007 components: - type: Transform pos: -13.5,68.5 parent: 2 - - uid: 3055 + - uid: 3008 components: - type: Transform pos: -14.5,68.5 parent: 2 - - uid: 3056 + - uid: 3009 components: - type: Transform pos: -15.5,68.5 parent: 2 - - uid: 3057 + - uid: 3010 components: - type: Transform pos: -16.5,68.5 parent: 2 - - uid: 3058 + - uid: 3011 components: - type: Transform pos: -17.5,68.5 parent: 2 - - uid: 3059 + - uid: 3012 components: - type: Transform pos: -18.5,68.5 parent: 2 - - uid: 3060 + - uid: 3013 components: - type: Transform pos: -19.5,68.5 parent: 2 - - uid: 3061 + - uid: 3014 components: - type: Transform pos: -20.5,68.5 parent: 2 - - uid: 3062 + - uid: 3015 components: - type: Transform pos: -21.5,68.5 parent: 2 - - uid: 3063 + - uid: 3016 components: - type: Transform pos: -22.5,68.5 parent: 2 - - uid: 3064 + - uid: 3017 components: - type: Transform pos: -23.5,68.5 parent: 2 - - uid: 3065 + - uid: 3018 components: - type: Transform pos: -24.5,68.5 parent: 2 - - uid: 3066 + - uid: 3019 components: - type: Transform pos: -25.5,68.5 parent: 2 - - uid: 3067 + - uid: 3020 components: - type: Transform pos: -26.5,68.5 parent: 2 - - uid: 3068 + - uid: 3021 components: - type: Transform pos: -27.5,68.5 parent: 2 - - uid: 3069 + - uid: 3022 components: - type: Transform pos: -28.5,68.5 parent: 2 - - uid: 3070 + - uid: 3023 components: - type: Transform pos: -29.5,68.5 parent: 2 - - uid: 3071 + - uid: 3024 components: - type: Transform pos: -29.5,69.5 parent: 2 - - uid: 3072 + - uid: 3025 components: - type: Transform pos: -29.5,67.5 parent: 2 - - uid: 3073 + - uid: 3026 components: - type: Transform pos: -24.5,67.5 parent: 2 - - uid: 3074 + - uid: 3027 components: - type: Transform pos: -26.5,66.5 parent: 2 - - uid: 3075 + - uid: 3028 components: - type: Transform pos: -26.5,65.5 parent: 2 - - uid: 3076 + - uid: 3029 components: - type: Transform pos: -5.5,68.5 parent: 2 - - uid: 3077 + - uid: 3030 components: - type: Transform pos: -6.5,68.5 parent: 2 - - uid: 3078 + - uid: 3031 components: - type: Transform pos: -24.5,65.5 parent: 2 - - uid: 3079 + - uid: 3032 components: - type: Transform pos: -25.5,65.5 parent: 2 - - uid: 3080 + - uid: 3033 components: - type: Transform pos: -26.5,60.5 parent: 2 - - uid: 3081 + - uid: 3034 components: - type: Transform pos: -27.5,60.5 parent: 2 - - uid: 3082 + - uid: 3035 components: - type: Transform pos: -25.5,61.5 parent: 2 - - uid: 3083 + - uid: 3036 components: - type: Transform pos: -24.5,61.5 parent: 2 - - uid: 3084 + - uid: 3037 components: - type: Transform pos: -25.5,59.5 parent: 2 - - uid: 3085 + - uid: 3038 components: - type: Transform pos: -24.5,59.5 parent: 2 - - uid: 3086 + - uid: 3039 components: - type: Transform pos: -25.5,60.5 parent: 2 - - uid: 3087 + - uid: 3040 components: - type: Transform pos: -25.5,62.5 parent: 2 - - uid: 3088 + - uid: 3041 components: - type: Transform pos: -25.5,63.5 parent: 2 - - uid: 3089 + - uid: 3042 components: - type: Transform pos: -24.5,63.5 parent: 2 - - uid: 3090 + - uid: 3043 components: - type: Transform pos: -25.5,64.5 parent: 2 - - uid: 3091 + - uid: 3044 components: - type: Transform pos: -4.5,68.5 parent: 2 - - uid: 3092 + - uid: 3045 components: - type: Transform pos: -3.5,68.5 parent: 2 - - uid: 3093 + - uid: 3046 components: - type: Transform pos: -2.5,68.5 parent: 2 - - uid: 3094 + - uid: 3047 components: - type: Transform pos: -1.5,68.5 parent: 2 - - uid: 3095 + - uid: 3048 components: - type: Transform pos: -0.5,68.5 parent: 2 - - uid: 3096 + - uid: 3049 components: - type: Transform pos: 0.49999997,68.5 parent: 2 - - uid: 3097 + - uid: 3050 components: - type: Transform pos: 1.5,68.5 parent: 2 - - uid: 3098 + - uid: 3051 components: - type: Transform pos: 2.5,68.5 parent: 2 - - uid: 3099 + - uid: 3052 components: - type: Transform pos: 3.5,68.5 parent: 2 - - uid: 3100 + - uid: 3053 components: - type: Transform pos: 4.5,68.5 parent: 2 - - uid: 3101 + - uid: 3054 components: - type: Transform pos: 5.5,68.5 parent: 2 - - uid: 3102 + - uid: 3055 components: - type: Transform pos: 6.5,68.5 parent: 2 - - uid: 3103 + - uid: 3056 components: - type: Transform pos: 7.5,68.5 parent: 2 - - uid: 3104 + - uid: 3057 components: - type: Transform pos: 8.5,68.5 parent: 2 - - uid: 3105 + - uid: 3058 components: - type: Transform pos: 6.5,67.5 parent: 2 - - uid: 3106 + - uid: 3059 components: - type: Transform pos: 6.5,69.5 parent: 2 - - uid: 3107 + - uid: 3060 components: - type: Transform pos: -11.5,69.5 parent: 2 - - uid: 3108 + - uid: 3061 components: - type: Transform pos: -11.5,67.5 parent: 2 - - uid: 3109 + - uid: 3062 components: - type: Transform pos: -30.5,84.5 parent: 2 - - uid: 3110 + - uid: 3063 components: - type: Transform pos: -29.5,84.5 parent: 2 - - uid: 3111 + - uid: 3064 components: - type: Transform pos: -29.5,85.5 parent: 2 - - uid: 3112 + - uid: 3065 components: - type: Transform pos: -29.5,86.5 parent: 2 - - uid: 3113 + - uid: 3066 components: - type: Transform pos: -29.5,87.5 parent: 2 - - uid: 3114 + - uid: 3067 components: - type: Transform pos: -29.5,88.5 parent: 2 - - uid: 3115 + - uid: 3068 components: - type: Transform pos: -29.5,89.5 parent: 2 - - uid: 3116 + - uid: 3069 components: - type: Transform pos: -29.5,90.5 parent: 2 - - uid: 3117 + - uid: 3070 components: - type: Transform pos: -29.5,91.5 parent: 2 - - uid: 3118 + - uid: 3071 components: - type: Transform pos: -29.5,92.5 parent: 2 - - uid: 3119 + - uid: 3072 components: - type: Transform pos: -29.5,93.5 parent: 2 - - uid: 3120 + - uid: 3073 components: - type: Transform pos: -29.5,94.5 parent: 2 - - uid: 3121 + - uid: 3074 components: - type: Transform pos: -29.5,95.5 parent: 2 - - uid: 3122 + - uid: 3075 components: - type: Transform pos: -29.5,96.5 parent: 2 - - uid: 3123 + - uid: 3076 components: - type: Transform pos: -29.5,97.5 parent: 2 - - uid: 3124 + - uid: 3077 components: - type: Transform pos: -29.5,98.5 parent: 2 - - uid: 3125 + - uid: 3078 components: - type: Transform pos: -29.5,84.5 parent: 2 - - uid: 3126 + - uid: 3079 components: - type: Transform pos: -29.5,83.5 parent: 2 - - uid: 3127 + - uid: 3080 components: - type: Transform pos: -29.5,82.5 parent: 2 - - uid: 3128 + - uid: 3081 components: - type: Transform pos: -29.5,81.5 parent: 2 - - uid: 3129 + - uid: 3082 components: - type: Transform pos: -29.5,80.5 parent: 2 - - uid: 3130 + - uid: 3083 components: - type: Transform pos: -29.5,79.5 parent: 2 - - uid: 3131 + - uid: 3084 components: - type: Transform pos: -29.5,78.5 parent: 2 - - uid: 3132 + - uid: 3085 components: - type: Transform pos: -29.5,77.5 parent: 2 - - uid: 3133 + - uid: 3086 components: - type: Transform pos: -29.5,76.5 parent: 2 - - uid: 3134 + - uid: 3087 components: - type: Transform pos: -29.5,75.5 parent: 2 - - uid: 3135 + - uid: 3088 components: - type: Transform pos: -29.5,74.5 parent: 2 - - uid: 3136 + - uid: 3089 components: - type: Transform pos: -29.5,73.5 parent: 2 - - uid: 3137 + - uid: 3090 components: - type: Transform pos: -29.5,72.5 parent: 2 - - uid: 3138 + - uid: 3091 components: - type: Transform pos: -29.5,71.5 parent: 2 - - uid: 3139 + - uid: 3092 components: - type: Transform pos: -28.5,77.5 parent: 2 - - uid: 3140 + - uid: 3093 components: - type: Transform pos: -27.5,77.5 parent: 2 - - uid: 3141 + - uid: 3094 components: - type: Transform pos: -26.5,77.5 parent: 2 - - uid: 3142 + - uid: 3095 components: - type: Transform pos: -31.5,77.5 parent: 2 - - uid: 3143 + - uid: 3096 components: - type: Transform pos: -32.5,77.5 parent: 2 - - uid: 3144 + - uid: 3097 components: - type: Transform pos: -30.5,77.5 parent: 2 - - uid: 3145 + - uid: 3098 components: - type: Transform pos: -31.5,83.5 parent: 2 - - uid: 3146 + - uid: 3099 components: - type: Transform pos: -31.5,82.5 parent: 2 - - uid: 3147 + - uid: 3100 components: - type: Transform pos: -31.5,81.5 parent: 2 - - uid: 3148 + - uid: 3101 components: - type: Transform pos: -31.5,80.5 parent: 2 - - uid: 3149 + - uid: 3102 components: - type: Transform pos: -30.5,80.5 parent: 2 - - uid: 3150 + - uid: 3103 components: - type: Transform pos: -28.5,84.5 parent: 2 - - uid: 3151 + - uid: 3104 components: - type: Transform pos: -27.5,84.5 parent: 2 - - uid: 3152 + - uid: 3105 components: - type: Transform pos: -26.5,84.5 parent: 2 - - uid: 3153 + - uid: 3106 components: - type: Transform pos: -0.5,59.5 parent: 2 - - uid: 3154 + - uid: 3107 components: - type: Transform pos: -0.5,58.5 parent: 2 - - uid: 3155 + - uid: 3108 components: - type: Transform pos: -0.5,57.5 parent: 2 - - uid: 3156 + - uid: 3109 components: - type: Transform pos: -1.5,57.5 parent: 2 - - uid: 3157 + - uid: 3110 components: - type: Transform pos: -2.5,57.5 parent: 2 - - uid: 3158 + - uid: 3111 components: - type: Transform pos: -3.5,57.5 parent: 2 - - uid: 3159 + - uid: 3112 components: - type: Transform pos: -4.5,57.5 parent: 2 - - uid: 3160 + - uid: 3113 components: - type: Transform pos: -5.5,57.5 parent: 2 - - uid: 3161 + - uid: 3114 components: - type: Transform pos: -6.5,57.5 parent: 2 - - uid: 3162 + - uid: 3115 components: - type: Transform pos: -7.5,57.5 parent: 2 - - uid: 3163 + - uid: 3116 components: - type: Transform pos: -8.5,57.5 parent: 2 - - uid: 3164 + - uid: 3117 components: - type: Transform pos: -9.5,57.5 parent: 2 - - uid: 3165 + - uid: 3118 components: - type: Transform pos: -10.5,57.5 parent: 2 - - uid: 3166 + - uid: 3119 components: - type: Transform pos: -11.5,57.5 parent: 2 - - uid: 3167 + - uid: 3120 components: - type: Transform pos: -12.5,57.5 parent: 2 - - uid: 3168 + - uid: 3121 components: - type: Transform pos: -13.5,57.5 parent: 2 - - uid: 3169 + - uid: 3122 components: - type: Transform pos: -14.5,57.5 parent: 2 - - uid: 3170 + - uid: 3123 components: - type: Transform pos: -15.5,57.5 parent: 2 - - uid: 3171 + - uid: 3124 components: - type: Transform pos: -16.5,57.5 parent: 2 - - uid: 3172 + - uid: 3125 components: - type: Transform pos: -17.5,57.5 parent: 2 - - uid: 3173 + - uid: 3126 components: - type: Transform pos: -18.5,57.5 parent: 2 - - uid: 3174 + - uid: 3127 components: - type: Transform pos: -18.5,57.5 parent: 2 - - uid: 3175 + - uid: 3128 components: - type: Transform pos: -4.5,58.5 parent: 2 - - uid: 3176 + - uid: 3129 components: - type: Transform pos: -4.5,59.5 parent: 2 - - uid: 3177 + - uid: 3130 components: - type: Transform pos: -4.5,60.5 parent: 2 - - uid: 3178 + - uid: 3131 components: - type: Transform pos: -4.5,61.5 parent: 2 - - uid: 3179 + - uid: 3132 components: - type: Transform pos: -4.5,62.5 parent: 2 - - uid: 3180 + - uid: 3133 components: - type: Transform pos: -4.5,63.5 parent: 2 - - uid: 3181 + - uid: 3134 components: - type: Transform pos: -4.5,64.5 parent: 2 - - uid: 3182 + - uid: 3135 components: - type: Transform pos: -4.5,65.5 parent: 2 - - uid: 3183 + - uid: 3136 components: - type: Transform pos: -18.5,58.5 parent: 2 - - uid: 3184 + - uid: 3137 components: - type: Transform pos: -18.5,59.5 parent: 2 - - uid: 3185 + - uid: 3138 components: - type: Transform pos: -18.5,60.5 parent: 2 - - uid: 3186 + - uid: 3139 components: - type: Transform pos: -18.5,61.5 parent: 2 - - uid: 3187 + - uid: 3140 components: - type: Transform pos: -18.5,62.5 parent: 2 - - uid: 3188 + - uid: 3141 components: - type: Transform pos: -18.5,63.5 parent: 2 - - uid: 3189 + - uid: 3142 components: - type: Transform pos: -18.5,64.5 parent: 2 - - uid: 3190 + - uid: 3143 components: - type: Transform pos: -18.5,65.5 parent: 2 - - uid: 3191 + - uid: 3144 components: - type: Transform pos: -17.5,62.5 parent: 2 - - uid: 3192 + - uid: 3145 components: - type: Transform pos: -16.5,62.5 parent: 2 - - uid: 3193 + - uid: 3146 components: - type: Transform pos: -15.5,62.5 parent: 2 - - uid: 3194 + - uid: 3147 components: - type: Transform pos: -19.5,62.5 parent: 2 - - uid: 3195 + - uid: 3148 components: - type: Transform pos: -20.5,62.5 parent: 2 - - uid: 3196 + - uid: 3149 components: - type: Transform pos: -21.5,62.5 parent: 2 - - uid: 3197 + - uid: 3150 components: - type: Transform pos: -7.5,62.5 parent: 2 - - uid: 3198 + - uid: 3151 components: - type: Transform pos: -6.5,62.5 parent: 2 - - uid: 3199 + - uid: 3152 components: - type: Transform pos: -5.5,62.5 parent: 2 - - uid: 3200 + - uid: 3153 components: - type: Transform pos: -4.5,62.5 parent: 2 - - uid: 3201 + - uid: 3154 components: - type: Transform pos: -3.5,62.5 parent: 2 - - uid: 3202 + - uid: 3155 components: - type: Transform pos: -2.5,62.5 parent: 2 - - uid: 3203 + - uid: 3156 components: - type: Transform pos: -1.5,62.5 parent: 2 - - uid: 3204 + - uid: 3157 components: - type: Transform pos: 0.49999997,57.5 parent: 2 - - uid: 3205 + - uid: 3158 components: - type: Transform pos: 1.5,57.5 parent: 2 - - uid: 3206 + - uid: 3159 components: - type: Transform pos: 2.5,57.5 parent: 2 - - uid: 3207 + - uid: 3160 components: - type: Transform pos: 3.5,57.5 parent: 2 - - uid: 3208 + - uid: 3161 components: - type: Transform pos: 2.5,58.5 parent: 2 - - uid: 3209 + - uid: 3162 components: - type: Transform pos: -0.5,56.5 parent: 2 - - uid: 3210 + - uid: 3163 components: - type: Transform pos: -18.5,56.5 parent: 2 - - uid: 3211 + - uid: 3164 components: - type: Transform pos: -18.5,55.5 parent: 2 - - uid: 3212 + - uid: 3165 components: - type: Transform pos: -20.5,55.5 parent: 2 - - uid: 3213 + - uid: 3166 components: - type: Transform pos: -19.5,55.5 parent: 2 - - uid: 3214 + - uid: 3167 components: - type: Transform pos: -19.5,55.5 parent: 2 - - uid: 3215 + - uid: 3168 components: - type: Transform pos: -18.5,67.5 parent: 2 - - uid: 3216 + - uid: 3169 components: - type: Transform pos: -4.5,67.5 parent: 2 - - uid: 3217 + - uid: 3170 components: - type: Transform pos: -24.5,54.5 parent: 2 - - uid: 3218 + - uid: 3171 components: - type: Transform pos: -24.5,53.5 parent: 2 - - uid: 3219 + - uid: 3172 components: - type: Transform pos: -25.5,53.5 parent: 2 - - uid: 3220 + - uid: 3173 components: - type: Transform pos: -25.5,52.5 parent: 2 - - uid: 3221 + - uid: 3174 components: - type: Transform pos: -25.5,51.5 parent: 2 - - uid: 3222 + - uid: 3175 components: - type: Transform pos: -25.5,50.5 parent: 2 - - uid: 3223 + - uid: 3176 components: - type: Transform pos: -25.5,49.5 parent: 2 - - uid: 3224 + - uid: 3177 components: - type: Transform pos: -25.5,48.5 parent: 2 - - uid: 3225 + - uid: 3178 components: - type: Transform pos: -25.5,47.5 parent: 2 - - uid: 3226 + - uid: 3179 components: - type: Transform pos: -24.5,47.5 parent: 2 - - uid: 3227 + - uid: 3180 components: - type: Transform pos: -26.5,47.5 parent: 2 - - uid: 3228 + - uid: 3181 components: - type: Transform pos: -27.5,47.5 parent: 2 - - uid: 3229 + - uid: 3182 components: - type: Transform pos: -28.5,47.5 parent: 2 - - uid: 3230 + - uid: 3183 components: - type: Transform pos: -29.5,47.5 parent: 2 - - uid: 3231 + - uid: 3184 components: - type: Transform pos: -30.5,47.5 parent: 2 - - uid: 3232 + - uid: 3185 components: - type: Transform pos: -31.5,47.5 parent: 2 - - uid: 3233 + - uid: 3186 components: - type: Transform pos: -32.5,47.5 parent: 2 - - uid: 3234 + - uid: 3187 components: - type: Transform pos: -33.5,47.5 parent: 2 - - uid: 3235 + - uid: 3188 components: - type: Transform pos: -33.5,48.5 parent: 2 - - uid: 3236 + - uid: 3189 components: - type: Transform pos: -33.5,49.5 parent: 2 - - uid: 3237 + - uid: 3190 components: - type: Transform pos: -34.5,49.5 parent: 2 - - uid: 3238 + - uid: 3191 components: - type: Transform pos: -33.5,50.5 parent: 2 - - uid: 3239 + - uid: 3192 components: - type: Transform pos: -33.5,51.5 parent: 2 - - uid: 3240 + - uid: 3193 components: - type: Transform pos: -33.5,52.5 parent: 2 - - uid: 3241 + - uid: 3194 components: - type: Transform pos: -33.5,53.5 parent: 2 - - uid: 3242 + - uid: 3195 components: - type: Transform pos: -32.5,53.5 parent: 2 - - uid: 3243 + - uid: 3196 components: - type: Transform pos: -31.5,53.5 parent: 2 - - uid: 3244 + - uid: 3197 components: - type: Transform pos: -30.5,53.5 parent: 2 - - uid: 3245 + - uid: 3198 components: - type: Transform pos: -29.5,53.5 parent: 2 - - uid: 3246 + - uid: 3199 components: - type: Transform pos: -28.5,53.5 parent: 2 - - uid: 3247 + - uid: 3200 components: - type: Transform pos: -27.5,53.5 parent: 2 - - uid: 3248 + - uid: 3201 components: - type: Transform pos: -29.5,54.5 parent: 2 - - uid: 3249 + - uid: 3202 components: - type: Transform pos: -36.5,49.5 parent: 2 - - uid: 3250 + - uid: 3203 components: - type: Transform pos: -37.5,49.5 parent: 2 - - uid: 3251 + - uid: 3204 components: - type: Transform pos: -37.5,48.5 parent: 2 - - uid: 3252 + - uid: 3205 components: - type: Transform pos: -37.5,47.5 parent: 2 - - uid: 3253 + - uid: 3206 components: - type: Transform pos: -37.5,46.5 parent: 2 - - uid: 3254 + - uid: 3207 components: - type: Transform pos: -37.5,45.5 parent: 2 - - uid: 3255 + - uid: 3208 components: - type: Transform pos: -38.5,49.5 parent: 2 - - uid: 3256 + - uid: 3209 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 3257 + - uid: 3210 components: - type: Transform pos: -36.5,50.5 parent: 2 - - uid: 3258 + - uid: 3211 components: - type: Transform pos: -36.5,45.5 parent: 2 - - uid: 3259 + - uid: 3212 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 3260 + - uid: 3213 components: - type: Transform pos: -39.5,54.5 parent: 2 - - uid: 3261 + - uid: 3214 components: - type: Transform pos: -39.5,53.5 parent: 2 - - uid: 3262 + - uid: 3215 components: - type: Transform pos: -38.5,53.5 parent: 2 - - uid: 3263 + - uid: 3216 components: - type: Transform pos: -37.5,53.5 parent: 2 - - uid: 3264 + - uid: 3217 components: - type: Transform pos: -36.5,53.5 parent: 2 - - uid: 3265 + - uid: 3218 components: - type: Transform pos: -36.5,54.5 parent: 2 - - uid: 3266 + - uid: 3219 components: - type: Transform pos: -36.5,55.5 parent: 2 - - uid: 3267 + - uid: 3220 components: - type: Transform pos: -31.5,46.5 parent: 2 - - uid: 3268 + - uid: 3221 components: - type: Transform pos: -31.5,45.5 parent: 2 - - uid: 3269 + - uid: 3222 components: - type: Transform pos: -29.5,46.5 parent: 2 - - uid: 3270 + - uid: 3223 components: - type: Transform pos: -29.5,45.5 parent: 2 - - uid: 3271 + - uid: 3224 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 3272 + - uid: 3225 components: - type: Transform pos: -28.5,43.5 parent: 2 - - uid: 3273 + - uid: 3226 components: - type: Transform pos: -28.5,42.5 parent: 2 - - uid: 3274 + - uid: 3227 components: - type: Transform pos: -29.5,42.5 parent: 2 - - uid: 3275 + - uid: 3228 components: - type: Transform pos: -30.5,42.5 parent: 2 - - uid: 3276 + - uid: 3229 components: - type: Transform pos: -31.5,42.5 parent: 2 - - uid: 3277 + - uid: 3230 components: - type: Transform pos: -32.5,42.5 parent: 2 - - uid: 3278 + - uid: 3231 components: - type: Transform pos: -32.5,41.5 parent: 2 - - uid: 3279 + - uid: 3232 components: - type: Transform pos: -27.5,42.5 parent: 2 - - uid: 3280 + - uid: 3233 components: - type: Transform pos: -26.5,42.5 parent: 2 - - uid: 3281 + - uid: 3234 components: - type: Transform pos: -25.5,42.5 parent: 2 - - uid: 3282 + - uid: 3235 components: - type: Transform pos: -25.5,41.5 parent: 2 - - uid: 3283 + - uid: 3236 components: - type: Transform pos: -29.5,41.5 parent: 2 - - uid: 3284 + - uid: 3237 components: - type: Transform pos: -29.5,40.5 parent: 2 - - uid: 3285 + - uid: 3238 components: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 3286 + - uid: 3239 components: - type: Transform pos: -32.5,38.5 parent: 2 - - uid: 3287 + - uid: 3240 components: - type: Transform pos: -32.5,37.5 parent: 2 - - uid: 3288 + - uid: 3241 components: - type: Transform pos: -32.5,36.5 parent: 2 - - uid: 3289 + - uid: 3242 components: - type: Transform pos: -32.5,35.5 parent: 2 - - uid: 3290 + - uid: 3243 components: - type: Transform pos: -32.5,34.5 parent: 2 - - uid: 3291 + - uid: 3244 components: - type: Transform pos: -32.5,33.5 parent: 2 - - uid: 3292 + - uid: 3245 components: - type: Transform pos: -32.5,32.5 parent: 2 - - uid: 3293 + - uid: 3246 components: - type: Transform pos: -31.5,35.5 parent: 2 - - uid: 3294 + - uid: 3247 components: - type: Transform pos: -30.5,35.5 parent: 2 - - uid: 3295 + - uid: 3248 components: - type: Transform pos: -29.5,35.5 parent: 2 - - uid: 3296 + - uid: 3249 components: - type: Transform pos: -28.5,35.5 parent: 2 - - uid: 3297 + - uid: 3250 components: - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 3298 + - uid: 3251 components: - type: Transform pos: -33.5,30.5 parent: 2 - - uid: 3299 + - uid: 3252 components: - type: Transform pos: -33.5,29.5 parent: 2 - - uid: 3300 + - uid: 3253 components: - type: Transform pos: -33.5,28.5 parent: 2 - - uid: 3301 + - uid: 3254 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 3302 + - uid: 3255 components: - type: Transform pos: -33.5,26.5 parent: 2 - - uid: 3303 + - uid: 3256 components: - type: Transform pos: -33.5,25.5 parent: 2 - - uid: 3304 + - uid: 3257 components: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 3305 + - uid: 3258 components: - type: Transform pos: -31.5,27.5 parent: 2 - - uid: 3306 + - uid: 3259 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 3307 + - uid: 3260 components: - type: Transform pos: -29.5,27.5 parent: 2 - - uid: 3308 + - uid: 3261 components: - type: Transform pos: -28.5,27.5 parent: 2 - - uid: 3309 + - uid: 3262 components: - type: Transform pos: -30.5,28.5 parent: 2 - - uid: 3310 + - uid: 3263 components: - type: Transform pos: -28.5,30.5 parent: 2 - - uid: 3311 + - uid: 3264 components: - type: Transform pos: -28.5,34.5 parent: 2 - - uid: 3312 + - uid: 3265 components: - type: Transform pos: -28.5,33.5 parent: 2 - - uid: 3313 + - uid: 3266 components: - type: Transform pos: -28.5,32.5 parent: 2 - - uid: 3314 + - uid: 3267 components: - type: Transform pos: -28.5,31.5 parent: 2 - - uid: 3315 + - uid: 3268 components: - type: Transform pos: -28.5,30.5 parent: 2 - - uid: 3316 + - uid: 3269 components: - type: Transform pos: -28.5,36.5 parent: 2 - - uid: 3317 + - uid: 3270 components: - type: Transform pos: -28.5,37.5 parent: 2 - - uid: 3318 + - uid: 3271 components: - type: Transform pos: -28.5,38.5 parent: 2 - - uid: 3319 + - uid: 3272 components: - type: Transform pos: -29.5,38.5 parent: 2 - - uid: 3320 + - uid: 3273 components: - type: Transform pos: -27.5,30.5 parent: 2 - - uid: 3321 + - uid: 3274 components: - type: Transform pos: -26.5,30.5 parent: 2 - - uid: 3322 + - uid: 3275 components: - type: Transform pos: -25.5,30.5 parent: 2 - - uid: 3323 + - uid: 3276 components: - type: Transform pos: -25.5,31.5 parent: 2 - - uid: 3324 + - uid: 3277 components: - type: Transform pos: -25.5,32.5 parent: 2 - - uid: 3325 + - uid: 3278 components: - type: Transform pos: -25.5,33.5 parent: 2 - - uid: 3326 + - uid: 3279 components: - type: Transform pos: -25.5,34.5 parent: 2 - - uid: 3327 + - uid: 3280 components: - type: Transform pos: -25.5,35.5 parent: 2 - - uid: 3328 + - uid: 3281 components: - type: Transform pos: -25.5,36.5 parent: 2 - - uid: 3329 + - uid: 3282 components: - type: Transform pos: -25.5,37.5 parent: 2 - - uid: 3330 + - uid: 3283 components: - type: Transform pos: -25.5,38.5 parent: 2 - - uid: 3331 + - uid: 3284 components: - type: Transform pos: -25.5,39.5 parent: 2 - - uid: 3332 + - uid: 3285 components: - type: Transform pos: -27.5,38.5 parent: 2 - - uid: 3333 + - uid: 3286 components: - type: Transform pos: -26.5,38.5 parent: 2 - - uid: 3334 + - uid: 3287 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 3335 + - uid: 3288 components: - type: Transform pos: -15.5,52.5 parent: 2 - - uid: 3336 + - uid: 3289 components: - type: Transform pos: -14.5,52.5 parent: 2 - - uid: 3337 + - uid: 3290 components: - type: Transform pos: -14.5,51.5 parent: 2 - - uid: 3338 + - uid: 3291 components: - type: Transform pos: -14.5,50.5 parent: 2 - - uid: 3339 + - uid: 3292 components: - type: Transform pos: -14.5,49.5 parent: 2 - - uid: 3340 + - uid: 3293 components: - type: Transform pos: -14.5,48.5 parent: 2 - - uid: 3341 + - uid: 3294 components: - type: Transform pos: -14.5,47.5 parent: 2 - - uid: 3342 + - uid: 3295 components: - type: Transform pos: -16.5,52.5 parent: 2 - - uid: 3343 + - uid: 3296 components: - type: Transform pos: -17.5,52.5 parent: 2 - - uid: 3344 + - uid: 3297 components: - type: Transform pos: -18.5,52.5 parent: 2 - - uid: 3345 + - uid: 3298 components: - type: Transform pos: -19.5,52.5 parent: 2 - - uid: 3346 + - uid: 3299 components: - type: Transform pos: -20.5,52.5 parent: 2 - - uid: 3347 + - uid: 3300 components: - type: Transform pos: -21.5,52.5 parent: 2 - - uid: 3348 + - uid: 3301 components: - type: Transform pos: -22.5,52.5 parent: 2 - - uid: 3349 + - uid: 3302 components: - type: Transform pos: -22.5,51.5 parent: 2 - - uid: 3350 + - uid: 3303 components: - type: Transform pos: -22.5,50.5 parent: 2 - - uid: 3351 + - uid: 3304 components: - type: Transform pos: -22.5,49.5 parent: 2 - - uid: 3352 + - uid: 3305 components: - type: Transform pos: -22.5,48.5 parent: 2 - - uid: 3353 + - uid: 3306 components: - type: Transform pos: -22.5,47.5 parent: 2 - - uid: 3354 + - uid: 3307 components: - type: Transform pos: -22.5,46.5 parent: 2 - - uid: 3355 + - uid: 3308 components: - type: Transform pos: -22.5,45.5 parent: 2 - - uid: 3356 + - uid: 3309 components: - type: Transform pos: -22.5,44.5 parent: 2 - - uid: 3357 + - uid: 3310 components: - type: Transform pos: -22.5,43.5 parent: 2 - - uid: 3358 + - uid: 3311 components: - type: Transform pos: -22.5,42.5 parent: 2 - - uid: 3359 + - uid: 3312 components: - type: Transform pos: -22.5,41.5 parent: 2 - - uid: 3360 + - uid: 3313 components: - type: Transform pos: -22.5,40.5 parent: 2 - - uid: 3361 + - uid: 3314 components: - type: Transform pos: -22.5,39.5 parent: 2 - - uid: 3362 + - uid: 3315 components: - type: Transform pos: -22.5,38.5 parent: 2 - - uid: 3363 + - uid: 3316 components: - type: Transform pos: -22.5,37.5 parent: 2 - - uid: 3364 + - uid: 3317 components: - type: Transform pos: -22.5,36.5 parent: 2 - - uid: 3365 + - uid: 3318 components: - type: Transform pos: -22.5,35.5 parent: 2 - - uid: 3366 + - uid: 3319 components: - type: Transform pos: -22.5,34.5 parent: 2 - - uid: 3367 + - uid: 3320 components: - type: Transform pos: -22.5,33.5 parent: 2 - - uid: 3368 + - uid: 3321 components: - type: Transform pos: -22.5,32.5 parent: 2 - - uid: 3369 + - uid: 3322 components: - type: Transform pos: -22.5,31.5 parent: 2 - - uid: 3370 + - uid: 3323 components: - type: Transform pos: -22.5,30.5 parent: 2 - - uid: 3371 + - uid: 3324 components: - type: Transform pos: -22.5,29.5 parent: 2 - - uid: 3372 + - uid: 3325 components: - type: Transform pos: -22.5,28.5 parent: 2 - - uid: 3373 + - uid: 3326 components: - type: Transform pos: -21.5,28.5 parent: 2 - - uid: 3374 + - uid: 3327 components: - type: Transform pos: -20.5,28.5 parent: 2 - - uid: 3375 + - uid: 3328 components: - type: Transform pos: -20.5,27.5 parent: 2 - - uid: 3376 + - uid: 3329 components: - type: Transform pos: -20.5,26.5 parent: 2 - - uid: 3377 + - uid: 3330 components: - type: Transform pos: -17.5,26.5 parent: 2 - - uid: 3378 + - uid: 3331 components: - type: Transform pos: -17.5,35.5 parent: 2 - - uid: 3379 + - uid: 3332 components: - type: Transform pos: -21.5,46.5 parent: 2 - - uid: 3380 + - uid: 3333 components: - type: Transform pos: -20.5,46.5 parent: 2 - - uid: 3381 + - uid: 3334 components: - type: Transform pos: -19.5,46.5 parent: 2 - - uid: 3382 + - uid: 3335 components: - type: Transform pos: -18.5,46.5 parent: 2 - - uid: 3383 + - uid: 3336 components: - type: Transform pos: -17.5,46.5 parent: 2 - - uid: 3384 + - uid: 3337 components: - type: Transform pos: -16.5,46.5 parent: 2 - - uid: 3385 + - uid: 3338 components: - type: Transform pos: -15.5,46.5 parent: 2 - - uid: 3386 + - uid: 3339 components: - type: Transform pos: -18.5,53.5 parent: 2 - - uid: 3387 + - uid: 3340 components: - type: Transform pos: -16.5,35.5 parent: 2 - - uid: 3388 + - uid: 3341 components: - type: Transform pos: -15.5,35.5 parent: 2 - - uid: 3389 + - uid: 3342 components: - type: Transform pos: -14.5,35.5 parent: 2 - - uid: 3390 + - uid: 3343 components: - type: Transform pos: -14.5,38.5 parent: 2 - - uid: 3391 + - uid: 3344 components: - type: Transform pos: -14.5,39.5 parent: 2 - - uid: 3392 + - uid: 3345 components: - type: Transform pos: -14.5,40.5 parent: 2 - - uid: 3393 + - uid: 3346 components: - type: Transform pos: -14.5,41.5 parent: 2 - - uid: 3394 + - uid: 3347 components: - type: Transform pos: -14.5,42.5 parent: 2 - - uid: 3395 + - uid: 3348 components: - type: Transform pos: -14.5,43.5 parent: 2 - - uid: 3396 + - uid: 3349 components: - type: Transform pos: -14.5,44.5 parent: 2 - - uid: 3397 + - uid: 3350 components: - type: Transform pos: -14.5,45.5 parent: 2 - - uid: 3398 + - uid: 3351 components: - type: Transform pos: -14.5,46.5 parent: 2 - - uid: 3399 + - uid: 3352 components: - type: Transform pos: -14.5,47.5 parent: 2 - - uid: 3400 + - uid: 3353 components: - type: Transform pos: -18.5,51.5 parent: 2 - - uid: 3401 + - uid: 3354 components: - type: Transform pos: -18.5,50.5 parent: 2 - - uid: 3402 + - uid: 3355 components: - type: Transform pos: -18.5,49.5 parent: 2 - - uid: 3403 + - uid: 3356 components: - type: Transform pos: -18.5,48.5 parent: 2 - - uid: 3404 + - uid: 3357 components: - type: Transform pos: -18.5,47.5 parent: 2 - - uid: 3405 + - uid: 3358 components: - type: Transform pos: -18.5,46.5 parent: 2 - - uid: 3406 + - uid: 3359 components: - type: Transform pos: -18.5,45.5 parent: 2 - - uid: 3407 + - uid: 3360 components: - type: Transform pos: -18.5,44.5 parent: 2 - - uid: 3408 + - uid: 3361 components: - type: Transform pos: -18.5,43.5 parent: 2 - - uid: 3409 + - uid: 3362 components: - type: Transform pos: -18.5,42.5 parent: 2 - - uid: 3410 + - uid: 3363 components: - type: Transform pos: -18.5,41.5 parent: 2 - - uid: 3411 + - uid: 3364 components: - type: Transform pos: -18.5,40.5 parent: 2 - - uid: 3412 + - uid: 3365 components: - type: Transform pos: -18.5,39.5 parent: 2 - - uid: 3413 + - uid: 3366 components: - type: Transform pos: -18.5,38.5 parent: 2 - - uid: 3414 + - uid: 3367 components: - type: Transform pos: -18.5,37.5 parent: 2 - - uid: 3415 + - uid: 3368 components: - type: Transform pos: -18.5,36.5 parent: 2 - - uid: 3416 + - uid: 3369 components: - type: Transform pos: -18.5,35.5 parent: 2 - - uid: 3417 + - uid: 3370 components: - type: Transform pos: -18.5,34.5 parent: 2 - - uid: 3418 + - uid: 3371 components: - type: Transform pos: -18.5,33.5 parent: 2 - - uid: 3419 + - uid: 3372 components: - type: Transform pos: -18.5,32.5 parent: 2 - - uid: 3420 + - uid: 3373 components: - type: Transform pos: -18.5,31.5 parent: 2 - - uid: 3421 + - uid: 3374 components: - type: Transform pos: -18.5,30.5 parent: 2 - - uid: 3422 + - uid: 3375 components: - type: Transform pos: -18.5,29.5 parent: 2 - - uid: 3423 + - uid: 3376 components: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 3424 + - uid: 3377 components: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 3425 + - uid: 3378 components: - type: Transform pos: -18.5,26.5 parent: 2 - - uid: 3426 + - uid: 3379 components: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 3427 + - uid: 3380 components: - type: Transform pos: -16.5,55.5 parent: 2 - - uid: 3428 + - uid: 3381 components: - type: Transform pos: -17.5,55.5 parent: 2 - - uid: 3429 + - uid: 3382 components: - type: Transform pos: -27.5,52.5 parent: 2 - - uid: 3430 + - uid: 3383 components: - type: Transform pos: -27.5,51.5 parent: 2 - - uid: 3431 + - uid: 3384 components: - type: Transform pos: -27.5,50.5 parent: 2 - - uid: 3432 + - uid: 3385 components: - type: Transform pos: -27.5,49.5 parent: 2 - - uid: 3433 + - uid: 3386 components: - type: Transform pos: -27.5,48.5 parent: 2 - - uid: 3434 + - uid: 3387 components: - type: Transform pos: -27.5,47.5 parent: 2 - - uid: 3435 + - uid: 3388 components: - type: Transform pos: -27.5,46.5 parent: 2 - - uid: 3436 + - uid: 3389 components: - type: Transform pos: -27.5,45.5 parent: 2 - - uid: 3437 + - uid: 3390 components: - type: Transform pos: -24.5,33.5 parent: 2 - - uid: 3438 + - uid: 3391 components: - type: Transform pos: -24.5,36.5 parent: 2 - - uid: 3439 + - uid: 3392 components: - type: Transform pos: -26.5,36.5 parent: 2 - - uid: 3440 + - uid: 3393 components: - type: Transform pos: -26.5,36.5 parent: 2 - - uid: 3441 + - uid: 3394 components: - type: Transform pos: -26.5,33.5 parent: 2 - - uid: 3442 + - uid: 3395 components: - type: Transform pos: -26.5,33.5 parent: 2 - - uid: 3443 + - uid: 3396 components: - type: Transform pos: -24.5,39.5 parent: 2 - - uid: 3444 + - uid: 3397 components: - type: Transform pos: -24.5,30.5 parent: 2 - - uid: 3445 + - uid: 3398 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 3446 + - uid: 3399 components: - type: Transform pos: -27.5,21.5 parent: 2 - - uid: 3447 + - uid: 3400 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 3448 + - uid: 3401 components: - type: Transform pos: -27.5,19.5 parent: 2 - - uid: 3449 + - uid: 3402 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 3450 + - uid: 3403 components: - type: Transform pos: -25.5,20.5 parent: 2 - - uid: 3451 + - uid: 3404 components: - type: Transform pos: -24.5,20.5 parent: 2 - - uid: 3452 + - uid: 3405 components: - type: Transform pos: -23.5,20.5 parent: 2 - - uid: 3453 + - uid: 3406 components: - type: Transform pos: -23.5,21.5 parent: 2 - - uid: 3454 + - uid: 3407 components: - type: Transform pos: -23.5,22.5 parent: 2 - - uid: 3455 + - uid: 3408 components: - type: Transform pos: -23.5,23.5 parent: 2 - - uid: 3456 + - uid: 3409 components: - type: Transform pos: -22.5,20.5 parent: 2 - - uid: 3457 + - uid: 3410 components: - type: Transform pos: -21.5,20.5 parent: 2 - - uid: 3458 + - uid: 3411 components: - type: Transform pos: -24.5,19.5 parent: 2 - - uid: 3459 + - uid: 3412 components: - type: Transform pos: -25.5,21.5 parent: 2 - - uid: 3460 + - uid: 3413 components: - type: Transform pos: -25.5,22.5 parent: 2 - - uid: 3461 + - uid: 3414 components: - type: Transform pos: -25.5,23.5 parent: 2 - - uid: 3462 + - uid: 3415 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 3463 + - uid: 3416 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 3464 + - uid: 3417 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 3465 + - uid: 3418 components: - type: Transform pos: -25.5,15.5 parent: 2 - - uid: 3466 + - uid: 3419 components: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 3467 + - uid: 3420 components: - type: Transform pos: -25.5,10.5 parent: 2 - - uid: 3468 + - uid: 3421 components: - type: Transform pos: -25.5,9.5 parent: 2 - - uid: 3469 + - uid: 3422 components: - type: Transform pos: -25.5,8.5 parent: 2 - - uid: 3470 + - uid: 3423 components: - type: Transform pos: -24.5,12.5 parent: 2 - - uid: 3471 + - uid: 3424 components: - type: Transform pos: -23.5,12.5 parent: 2 - - uid: 3472 + - uid: 3425 components: - type: Transform pos: -22.5,12.5 parent: 2 - - uid: 3473 + - uid: 3426 components: - type: Transform pos: -21.5,12.5 parent: 2 - - uid: 3474 + - uid: 3427 components: - type: Transform pos: -26.5,12.5 parent: 2 - - uid: 3475 + - uid: 3428 components: - type: Transform pos: -27.5,12.5 parent: 2 - - uid: 3476 + - uid: 3429 components: - type: Transform pos: -28.5,12.5 parent: 2 - - uid: 3477 + - uid: 3430 components: - type: Transform pos: -4.5,25.5 parent: 2 - - uid: 3478 + - uid: 3431 components: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 3479 + - uid: 3432 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 3480 + - uid: 3433 components: - type: Transform pos: -5.5,23.5 parent: 2 - - uid: 3481 + - uid: 3434 components: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 3482 + - uid: 3435 components: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 3483 + - uid: 3436 components: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 3484 + - uid: 3437 components: - type: Transform pos: -9.5,23.5 parent: 2 - - uid: 3485 + - uid: 3438 components: - type: Transform pos: -10.5,23.5 parent: 2 - - uid: 3486 + - uid: 3439 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 3487 + - uid: 3440 components: - type: Transform pos: -12.5,23.5 parent: 2 - - uid: 3488 + - uid: 3441 components: - type: Transform pos: -13.5,23.5 parent: 2 - - uid: 3489 + - uid: 3442 components: - type: Transform pos: -14.5,23.5 parent: 2 - - uid: 3490 + - uid: 3443 components: - type: Transform pos: -15.5,23.5 parent: 2 - - uid: 3491 + - uid: 3444 components: - type: Transform pos: -16.5,23.5 parent: 2 - - uid: 3492 + - uid: 3445 components: - type: Transform pos: -17.5,23.5 parent: 2 - - uid: 3493 + - uid: 3446 components: - type: Transform pos: -18.5,23.5 parent: 2 - - uid: 3494 + - uid: 3447 components: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 3495 + - uid: 3448 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 3496 + - uid: 3449 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 3497 + - uid: 3450 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 3498 + - uid: 3451 components: - type: Transform pos: 0.49999997,23.5 parent: 2 - - uid: 3499 + - uid: 3452 components: - type: Transform pos: 1.5,23.5 parent: 2 - - uid: 3500 + - uid: 3453 components: - type: Transform pos: 2.5,23.5 parent: 2 - - uid: 3501 + - uid: 3454 components: - type: Transform pos: 3.5,23.5 parent: 2 - - uid: 3502 + - uid: 3455 components: - type: Transform pos: 4.5,23.5 parent: 2 - - uid: 3503 + - uid: 3456 components: - type: Transform pos: 5.5,23.5 parent: 2 - - uid: 3504 + - uid: 3457 components: - type: Transform pos: 6.5,23.5 parent: 2 - - uid: 3505 + - uid: 3458 components: - type: Transform pos: 7.5,23.5 parent: 2 - - uid: 3506 + - uid: 3459 components: - type: Transform pos: 8.5,23.5 parent: 2 - - uid: 3507 + - uid: 3460 components: - type: Transform pos: 9.5,23.5 parent: 2 - - uid: 3508 + - uid: 3461 components: - type: Transform pos: 10.5,23.5 parent: 2 - - uid: 3509 + - uid: 3462 components: - type: Transform pos: 11.5,23.5 parent: 2 - - uid: 3510 + - uid: 3463 components: - type: Transform pos: 12.5,23.5 parent: 2 - - uid: 3511 + - uid: 3464 components: - type: Transform pos: 13.5,23.5 parent: 2 - - uid: 3512 + - uid: 3465 components: - type: Transform pos: 14.5,23.5 parent: 2 - - uid: 3513 + - uid: 3466 components: - type: Transform pos: 15.5,23.5 parent: 2 - - uid: 3514 + - uid: 3467 components: - type: Transform pos: 16.5,23.5 parent: 2 - - uid: 3515 + - uid: 3468 components: - type: Transform pos: 17.5,23.5 parent: 2 - - uid: 3516 + - uid: 3469 components: - type: Transform pos: 17.5,22.5 parent: 2 - - uid: 3517 + - uid: 3470 components: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 3518 + - uid: 3471 components: - type: Transform pos: 17.5,20.5 parent: 2 - - uid: 3519 + - uid: 3472 components: - type: Transform pos: 17.5,19.5 parent: 2 - - uid: 3520 + - uid: 3473 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 3521 + - uid: 3474 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 3522 + - uid: 3475 components: - type: Transform pos: 17.5,16.5 parent: 2 - - uid: 3523 + - uid: 3476 components: - type: Transform pos: 17.5,15.5 parent: 2 - - uid: 3524 + - uid: 3477 components: - type: Transform pos: 17.5,14.5 parent: 2 - - uid: 3525 + - uid: 3478 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 3526 + - uid: 3479 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 3527 + - uid: 3480 components: - type: Transform pos: 17.5,11.5 parent: 2 - - uid: 3528 + - uid: 3481 components: - type: Transform pos: 17.5,10.5 parent: 2 - - uid: 3529 + - uid: 3482 components: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 3530 + - uid: 3483 components: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 3531 + - uid: 3484 components: - type: Transform pos: -18.5,22.5 parent: 2 - - uid: 3532 + - uid: 3485 components: - type: Transform pos: -18.5,21.5 parent: 2 - - uid: 3533 + - uid: 3486 components: - type: Transform pos: -18.5,20.5 parent: 2 - - uid: 3534 + - uid: 3487 components: - type: Transform pos: -18.5,19.5 parent: 2 - - uid: 3535 + - uid: 3488 components: - type: Transform pos: -18.5,18.5 parent: 2 - - uid: 3536 + - uid: 3489 components: - type: Transform pos: -18.5,17.5 parent: 2 - - uid: 3537 + - uid: 3490 components: - type: Transform pos: -18.5,16.5 parent: 2 - - uid: 3538 + - uid: 3491 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 3539 + - uid: 3492 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 3540 + - uid: 3493 components: - type: Transform pos: -18.5,13.5 parent: 2 - - uid: 3541 + - uid: 3494 components: - type: Transform pos: -18.5,12.5 parent: 2 - - uid: 3542 + - uid: 3495 components: - type: Transform pos: -18.5,11.5 parent: 2 - - uid: 3543 + - uid: 3496 components: - type: Transform pos: -18.5,10.5 parent: 2 - - uid: 3544 + - uid: 3497 components: - type: Transform pos: -18.5,9.5 parent: 2 - - uid: 3545 + - uid: 3498 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 3546 + - uid: 3499 components: - type: Transform pos: -19.5,12.5 parent: 2 - - uid: 3547 + - uid: 3500 components: - type: Transform pos: -19.5,17.5 parent: 2 - - uid: 3548 + - uid: 3501 components: - type: Transform pos: -8.5,24.5 parent: 2 - - uid: 3549 + - uid: 3502 components: - type: Transform pos: 0.50000006,24.5 parent: 2 - - uid: 3550 + - uid: 3503 components: - type: Transform pos: 5.5,24.5 parent: 2 - - uid: 3551 + - uid: 3504 components: - type: Transform pos: 7.5,24.5 parent: 2 - - uid: 3552 + - uid: 3505 components: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 3553 + - uid: 3506 components: - type: Transform pos: 18.5,24.5 parent: 2 - - uid: 3554 + - uid: 3507 components: - type: Transform pos: 16.5,14.5 parent: 2 - - uid: 3555 + - uid: 3508 components: - type: Transform pos: 18.5,14.5 parent: 2 - - uid: 3556 + - uid: 3509 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 3557 + - uid: 3510 components: - type: Transform pos: 9.5,54.5 parent: 2 - - uid: 3558 + - uid: 3511 components: - type: Transform pos: 9.5,53.5 parent: 2 - - uid: 3559 + - uid: 3512 components: - type: Transform pos: 9.5,52.5 parent: 2 - - uid: 3560 + - uid: 3513 components: - type: Transform pos: 9.5,51.5 parent: 2 - - uid: 3561 + - uid: 3514 components: - type: Transform pos: 9.5,50.5 parent: 2 - - uid: 3562 + - uid: 3515 components: - type: Transform pos: 9.5,49.5 parent: 2 - - uid: 3563 + - uid: 3516 components: - type: Transform pos: 10.5,42.5 parent: 2 - - uid: 3564 + - uid: 3517 components: - type: Transform pos: 10.5,51.5 parent: 2 - - uid: 3565 + - uid: 3518 components: - type: Transform pos: 11.5,51.5 parent: 2 - - uid: 3566 + - uid: 3519 components: - type: Transform pos: 12.5,51.5 parent: 2 - - uid: 3567 + - uid: 3520 components: - type: Transform pos: 13.5,51.5 parent: 2 - - uid: 3568 + - uid: 3521 components: - type: Transform pos: 13.5,52.5 parent: 2 - - uid: 3569 + - uid: 3522 components: - type: Transform pos: 13.5,53.5 parent: 2 - - uid: 3570 + - uid: 3523 components: - type: Transform pos: 13.5,54.5 parent: 2 - - uid: 3571 + - uid: 3524 components: - type: Transform pos: 13.5,50.5 parent: 2 - - uid: 3572 + - uid: 3525 components: - type: Transform pos: 13.5,49.5 parent: 2 - - uid: 3573 + - uid: 3526 components: - type: Transform pos: 13.5,48.5 parent: 2 - - uid: 3574 + - uid: 3527 components: - type: Transform pos: 27.5,53.5 parent: 2 - - uid: 3575 + - uid: 3528 components: - type: Transform pos: 27.5,52.5 parent: 2 - - uid: 3576 + - uid: 3529 components: - type: Transform pos: 27.5,51.5 parent: 2 - - uid: 3577 + - uid: 3530 components: - type: Transform pos: 27.5,50.5 parent: 2 - - uid: 3578 + - uid: 3531 components: - type: Transform pos: 28.5,50.5 parent: 2 - - uid: 3579 + - uid: 3532 components: - type: Transform pos: 29.5,50.5 parent: 2 - - uid: 3580 + - uid: 3533 components: - type: Transform pos: 30.5,50.5 parent: 2 - - uid: 3581 + - uid: 3534 components: - type: Transform pos: 31.5,50.5 parent: 2 - - uid: 3582 + - uid: 3535 components: - type: Transform pos: 32.5,50.5 parent: 2 - - uid: 3583 + - uid: 3536 components: - type: Transform pos: 32.5,51.5 parent: 2 - - uid: 3584 + - uid: 3537 components: - type: Transform pos: 32.5,49.5 parent: 2 - - uid: 3585 + - uid: 3538 components: - type: Transform pos: 33.5,49.5 parent: 2 - - uid: 3586 + - uid: 3539 components: - type: Transform pos: 34.5,49.5 parent: 2 - - uid: 3587 + - uid: 3540 components: - type: Transform pos: 35.5,49.5 parent: 2 - - uid: 3588 + - uid: 3541 components: - type: Transform pos: 36.5,49.5 parent: 2 - - uid: 3589 + - uid: 3542 components: - type: Transform pos: 37.5,49.5 parent: 2 - - uid: 3590 + - uid: 3543 components: - type: Transform pos: 38.5,49.5 parent: 2 - - uid: 3591 + - uid: 3544 components: - type: Transform pos: 38.5,51.5 parent: 2 - - uid: 3592 + - uid: 3545 components: - type: Transform pos: 37.5,51.5 parent: 2 - - uid: 3593 + - uid: 3546 components: - type: Transform pos: 36.5,51.5 parent: 2 - - uid: 3594 + - uid: 3547 components: - type: Transform pos: 35.5,51.5 parent: 2 - - uid: 3595 + - uid: 3548 components: - type: Transform pos: 34.5,51.5 parent: 2 - - uid: 3596 + - uid: 3549 components: - type: Transform pos: 33.5,51.5 parent: 2 - - uid: 3597 + - uid: 3550 components: - type: Transform pos: 32.5,51.5 parent: 2 - - uid: 3598 + - uid: 3551 components: - type: Transform pos: 27.5,49.5 parent: 2 - - uid: 3599 + - uid: 3552 components: - type: Transform pos: 26.5,50.5 parent: 2 - - uid: 3600 + - uid: 3553 components: - type: Transform pos: 25.5,50.5 parent: 2 - - uid: 3601 + - uid: 3554 components: - type: Transform pos: 24.5,50.5 parent: 2 - - uid: 3602 + - uid: 3555 components: - type: Transform pos: 23.5,50.5 parent: 2 - - uid: 3603 + - uid: 3556 components: - type: Transform pos: 22.5,50.5 parent: 2 - - uid: 3604 + - uid: 3557 components: - type: Transform pos: 21.5,50.5 parent: 2 - - uid: 3605 + - uid: 3558 components: - type: Transform pos: 20.5,50.5 parent: 2 - - uid: 3606 + - uid: 3559 components: - type: Transform pos: 19.5,50.5 parent: 2 - - uid: 3607 + - uid: 3560 components: - type: Transform pos: 18.5,50.5 parent: 2 - - uid: 3608 + - uid: 3561 components: - type: Transform pos: 17.5,50.5 parent: 2 - - uid: 3609 + - uid: 3562 components: - type: Transform pos: 16.5,50.5 parent: 2 - - uid: 3610 + - uid: 3563 components: - type: Transform pos: 15.5,50.5 parent: 2 - - uid: 3611 + - uid: 3564 components: - type: Transform pos: 15.5,51.5 parent: 2 - - uid: 3612 + - uid: 3565 components: - type: Transform pos: 15.5,52.5 parent: 2 - - uid: 3613 + - uid: 3566 components: - type: Transform pos: 15.5,53.5 parent: 2 - - uid: 3614 + - uid: 3567 components: - type: Transform pos: 15.5,54.5 parent: 2 - - uid: 3615 + - uid: 3568 components: - type: Transform pos: 16.5,54.5 parent: 2 - - uid: 3616 + - uid: 3569 components: - type: Transform pos: 17.5,54.5 parent: 2 - - uid: 3617 + - uid: 3570 components: - type: Transform pos: 18.5,54.5 parent: 2 - - uid: 3618 + - uid: 3571 components: - type: Transform pos: 19.5,54.5 parent: 2 - - uid: 3619 + - uid: 3572 components: - type: Transform pos: 20.5,54.5 parent: 2 - - uid: 3620 + - uid: 3573 components: - type: Transform pos: 21.5,54.5 parent: 2 - - uid: 3621 + - uid: 3574 components: - type: Transform pos: 22.5,54.5 parent: 2 - - uid: 3622 + - uid: 3575 components: - type: Transform pos: 23.5,54.5 parent: 2 - - uid: 3623 + - uid: 3576 components: - type: Transform pos: 24.5,54.5 parent: 2 - - uid: 3624 + - uid: 3577 components: - type: Transform pos: 25.5,54.5 parent: 2 - - uid: 3625 + - uid: 3578 components: - type: Transform pos: 25.5,53.5 parent: 2 - - uid: 3626 + - uid: 3579 components: - type: Transform pos: 25.5,52.5 parent: 2 - - uid: 3627 + - uid: 3580 components: - type: Transform pos: 25.5,51.5 parent: 2 - - uid: 3628 + - uid: 3581 components: - type: Transform pos: 15.5,49.5 parent: 2 - - uid: 3629 + - uid: 3582 components: - type: Transform pos: 15.5,48.5 parent: 2 - - uid: 3630 + - uid: 3583 components: - type: Transform pos: 15.5,47.5 parent: 2 - - uid: 3631 + - uid: 3584 components: - type: Transform pos: 15.5,46.5 parent: 2 - - uid: 3632 + - uid: 3585 components: - type: Transform pos: 15.5,45.5 parent: 2 - - uid: 3633 + - uid: 3586 components: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 3634 + - uid: 3587 components: - type: Transform pos: 13.5,45.5 parent: 2 - - uid: 3635 + - uid: 3588 components: - type: Transform pos: 13.5,44.5 parent: 2 - - uid: 3636 + - uid: 3589 components: - type: Transform pos: 13.5,43.5 parent: 2 - - uid: 3637 + - uid: 3590 components: - type: Transform pos: 13.5,42.5 parent: 2 - - uid: 3638 + - uid: 3591 components: - type: Transform pos: 13.5,41.5 parent: 2 - - uid: 3639 + - uid: 3592 components: - type: Transform pos: 13.5,40.5 parent: 2 - - uid: 3640 + - uid: 3593 components: - type: Transform pos: 13.5,39.5 parent: 2 - - uid: 3641 + - uid: 3594 components: - type: Transform pos: 13.5,38.5 parent: 2 - - uid: 3642 + - uid: 3595 components: - type: Transform pos: 13.5,37.5 parent: 2 - - uid: 3643 + - uid: 3596 components: - type: Transform pos: 13.5,36.5 parent: 2 - - uid: 3644 + - uid: 3597 components: - type: Transform pos: 13.5,35.5 parent: 2 - - uid: 3645 + - uid: 3598 components: - type: Transform pos: 13.5,34.5 parent: 2 - - uid: 3646 + - uid: 3599 components: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 3647 + - uid: 3600 components: - type: Transform pos: 15.5,34.5 parent: 2 - - uid: 3648 + - uid: 3601 components: - type: Transform pos: 16.5,34.5 parent: 2 - - uid: 3649 + - uid: 3602 components: - type: Transform pos: 17.5,34.5 parent: 2 - - uid: 3650 + - uid: 3603 components: - type: Transform pos: 18.5,34.5 parent: 2 - - uid: 3651 + - uid: 3604 components: - type: Transform pos: 19.5,34.5 parent: 2 - - uid: 3652 + - uid: 3605 components: - type: Transform pos: 20.5,34.5 parent: 2 - - uid: 3653 + - uid: 3606 components: - type: Transform pos: 21.5,34.5 parent: 2 - - uid: 3654 + - uid: 3607 components: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 3655 + - uid: 3608 components: - type: Transform pos: 22.5,35.5 parent: 2 - - uid: 3656 + - uid: 3609 components: - type: Transform pos: 22.5,36.5 parent: 2 - - uid: 3657 + - uid: 3610 components: - type: Transform pos: 22.5,37.5 parent: 2 - - uid: 3658 + - uid: 3611 components: - type: Transform pos: 22.5,38.5 parent: 2 - - uid: 3659 + - uid: 3612 components: - type: Transform pos: 21.5,38.5 parent: 2 - - uid: 3660 + - uid: 3613 components: - type: Transform pos: 21.5,39.5 parent: 2 - - uid: 3661 + - uid: 3614 components: - type: Transform pos: 21.5,40.5 parent: 2 - - uid: 3662 + - uid: 3615 components: - type: Transform pos: 22.5,40.5 parent: 2 - - uid: 3663 + - uid: 3616 components: - type: Transform pos: 23.5,40.5 parent: 2 - - uid: 3664 + - uid: 3617 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 3665 + - uid: 3618 components: - type: Transform pos: 25.5,40.5 parent: 2 - - uid: 3666 + - uid: 3619 components: - type: Transform pos: 25.5,41.5 parent: 2 - - uid: 3667 + - uid: 3620 components: - type: Transform pos: 25.5,42.5 parent: 2 - - uid: 3668 + - uid: 3621 components: - type: Transform pos: 25.5,43.5 parent: 2 - - uid: 3669 + - uid: 3622 components: - type: Transform pos: 25.5,44.5 parent: 2 - - uid: 3670 + - uid: 3623 components: - type: Transform pos: 25.5,45.5 parent: 2 - - uid: 3671 + - uid: 3624 components: - type: Transform pos: 25.5,46.5 parent: 2 - - uid: 3672 + - uid: 3625 components: - type: Transform pos: 25.5,47.5 parent: 2 - - uid: 3673 + - uid: 3626 components: - type: Transform pos: 25.5,48.5 parent: 2 - - uid: 3674 + - uid: 3627 components: - type: Transform pos: 25.5,49.5 parent: 2 - - uid: 3675 + - uid: 3628 components: - type: Transform pos: 29.5,39.5 parent: 2 - - uid: 3676 + - uid: 3629 components: - type: Transform pos: 29.5,38.5 parent: 2 - - uid: 3677 + - uid: 3630 components: - type: Transform pos: 29.5,37.5 parent: 2 - - uid: 3678 + - uid: 3631 components: - type: Transform pos: 29.5,36.5 parent: 2 - - uid: 3679 + - uid: 3632 components: - type: Transform pos: 29.5,35.5 parent: 2 - - uid: 3680 + - uid: 3633 components: - type: Transform pos: 29.5,34.5 parent: 2 - - uid: 3681 + - uid: 3634 components: - type: Transform pos: 28.5,36.5 parent: 2 - - uid: 3682 + - uid: 3635 components: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 3683 + - uid: 3636 components: - type: Transform pos: 26.5,36.5 parent: 2 - - uid: 3684 + - uid: 3637 components: - type: Transform pos: 25.5,36.5 parent: 2 - - uid: 3685 + - uid: 3638 components: - type: Transform pos: 24.5,36.5 parent: 2 - - uid: 3686 + - uid: 3639 components: - type: Transform pos: 24.5,37.5 parent: 2 - - uid: 3687 + - uid: 3640 components: - type: Transform pos: 24.5,38.5 parent: 2 - - uid: 3688 + - uid: 3641 components: - type: Transform pos: 24.5,35.5 parent: 2 - - uid: 3689 + - uid: 3642 components: - type: Transform pos: 24.5,34.5 parent: 2 - - uid: 3690 + - uid: 3643 components: - type: Transform pos: 29.5,40.5 parent: 2 - - uid: 3691 + - uid: 3644 components: - type: Transform pos: 28.5,40.5 parent: 2 - - uid: 3692 + - uid: 3645 components: - type: Transform pos: 28.5,41.5 parent: 2 - - uid: 3693 + - uid: 3646 components: - type: Transform pos: 28.5,42.5 parent: 2 - - uid: 3694 + - uid: 3647 components: - type: Transform pos: 28.5,43.5 parent: 2 - - uid: 3695 + - uid: 3648 components: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 3696 + - uid: 3649 components: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 3697 + - uid: 3650 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 3698 + - uid: 3651 components: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 3699 + - uid: 3652 components: - type: Transform pos: 31.5,30.5 parent: 2 - - uid: 3700 + - uid: 3653 components: - type: Transform pos: 30.5,31.5 parent: 2 - - uid: 3701 + - uid: 3654 components: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 3702 + - uid: 3655 components: - type: Transform pos: 32.5,31.5 parent: 2 - - uid: 3703 + - uid: 3656 components: - type: Transform pos: 33.5,31.5 parent: 2 - - uid: 3704 + - uid: 3657 components: - type: Transform pos: 34.5,31.5 parent: 2 - - uid: 3705 + - uid: 3658 components: - type: Transform pos: 35.5,31.5 parent: 2 - - uid: 3706 + - uid: 3659 components: - type: Transform pos: 29.5,31.5 parent: 2 - - uid: 3707 + - uid: 3660 components: - type: Transform pos: 35.5,32.5 parent: 2 - - uid: 3708 + - uid: 3661 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 3709 + - uid: 3662 components: - type: Transform pos: 36.5,30.5 parent: 2 - - uid: 3710 + - uid: 3663 components: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 3711 + - uid: 3664 components: - type: Transform pos: 38.5,30.5 parent: 2 - - uid: 3712 + - uid: 3665 components: - type: Transform pos: 38.5,29.5 parent: 2 - - uid: 3713 + - uid: 3666 components: - type: Transform pos: 39.5,29.5 parent: 2 - - uid: 3714 + - uid: 3667 components: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 3715 + - uid: 3668 components: - type: Transform pos: 41.5,29.5 parent: 2 - - uid: 3716 + - uid: 3669 components: - type: Transform pos: 42.5,29.5 parent: 2 - - uid: 3717 + - uid: 3670 components: - type: Transform pos: 43.5,30.5 parent: 2 - - uid: 3718 + - uid: 3671 components: - type: Transform pos: 43.5,29.5 parent: 2 - - uid: 3719 + - uid: 3672 components: - type: Transform pos: 43.5,28.5 parent: 2 - - uid: 3720 + - uid: 3673 components: - type: Transform pos: 38.5,28.5 parent: 2 - - uid: 3721 + - uid: 3674 components: - type: Transform pos: 35.5,29.5 parent: 2 - - uid: 3722 + - uid: 3675 components: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 3723 + - uid: 3676 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 3724 + - uid: 3677 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 3725 + - uid: 3678 components: - type: Transform pos: 33.5,28.5 parent: 2 - - uid: 3726 + - uid: 3679 components: - type: Transform pos: 33.5,27.5 parent: 2 - - uid: 3727 + - uid: 3680 components: - type: Transform pos: 33.5,26.5 parent: 2 - - uid: 3728 + - uid: 3681 components: - type: Transform pos: 32.5,27.5 parent: 2 - - uid: 3729 + - uid: 3682 components: - type: Transform pos: 31.5,27.5 parent: 2 - - uid: 3730 + - uid: 3683 components: - type: Transform pos: 30.5,27.5 parent: 2 - - uid: 3731 + - uid: 3684 components: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 3732 + - uid: 3685 components: - type: Transform pos: 29.5,28.5 parent: 2 - - uid: 3733 + - uid: 3686 components: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 3734 + - uid: 3687 components: - type: Transform pos: 29.5,26.5 parent: 2 - - uid: 3735 + - uid: 3688 components: - type: Transform pos: 33.5,39.5 parent: 2 - - uid: 3736 + - uid: 3689 components: - type: Transform pos: 33.5,38.5 parent: 2 - - uid: 3737 + - uid: 3690 components: - type: Transform pos: 33.5,37.5 parent: 2 - - uid: 3738 + - uid: 3691 components: - type: Transform pos: 35.5,39.5 parent: 2 - - uid: 3739 + - uid: 3692 components: - type: Transform pos: 35.5,38.5 parent: 2 - - uid: 3740 + - uid: 3693 components: - type: Transform pos: 35.5,37.5 parent: 2 - - uid: 3741 + - uid: 3694 components: - type: Transform pos: 35.5,36.5 parent: 2 - - uid: 3742 + - uid: 3695 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 3743 + - uid: 3696 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 3744 + - uid: 3697 components: - type: Transform pos: 36.5,34.5 parent: 2 - - uid: 3745 + - uid: 3698 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 3746 + - uid: 3699 components: - type: Transform pos: 34.5,34.5 parent: 2 - - uid: 3747 + - uid: 3700 components: - type: Transform pos: 33.5,34.5 parent: 2 - - uid: 3748 + - uid: 3701 components: - type: Transform pos: 33.5,35.5 parent: 2 - - uid: 3749 + - uid: 3702 components: - type: Transform pos: 33.5,36.5 parent: 2 - - uid: 3750 + - uid: 3703 components: - type: Transform pos: 34.5,39.5 parent: 2 - - uid: 3751 + - uid: 3704 components: - type: Transform pos: 34.5,40.5 parent: 2 - - uid: 3752 + - uid: 3705 components: - type: Transform pos: 34.5,41.5 parent: 2 - - uid: 3753 + - uid: 3706 components: - type: Transform pos: 35.5,41.5 parent: 2 - - uid: 3754 + - uid: 3707 components: - type: Transform pos: 36.5,41.5 parent: 2 - - uid: 3755 + - uid: 3708 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 3756 + - uid: 3709 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 3757 + - uid: 3710 components: - type: Transform pos: 7.5,36.5 parent: 2 - - uid: 3758 + - uid: 3711 components: - type: Transform pos: 7.5,35.5 parent: 2 - - uid: 3759 + - uid: 3712 components: - type: Transform pos: 6.5,37.5 parent: 2 - - uid: 3760 + - uid: 3713 components: - type: Transform pos: 5.5,37.5 parent: 2 - - uid: 3761 + - uid: 3714 components: - type: Transform pos: 4.5,37.5 parent: 2 - - uid: 3762 + - uid: 3715 components: - type: Transform pos: 3.5,37.5 parent: 2 - - uid: 3763 + - uid: 3716 components: - type: Transform pos: 2.5,37.5 parent: 2 - - uid: 3764 + - uid: 3717 components: - type: Transform pos: 2.5,36.5 parent: 2 - - uid: 3765 + - uid: 3718 components: - type: Transform pos: 2.5,35.5 parent: 2 - - uid: 3766 + - uid: 3719 components: - type: Transform pos: 2.5,34.5 parent: 2 - - uid: 3767 + - uid: 3720 components: - type: Transform pos: 2.5,33.5 parent: 2 - - uid: 3768 + - uid: 3721 components: - type: Transform pos: 3.5,33.5 parent: 2 - - uid: 3769 + - uid: 3722 components: - type: Transform pos: 4.5,33.5 parent: 2 - - uid: 3770 + - uid: 3723 components: - type: Transform pos: 5.5,33.5 parent: 2 - - uid: 3771 + - uid: 3724 components: - type: Transform pos: 6.5,33.5 parent: 2 - - uid: 3772 + - uid: 3725 components: - type: Transform pos: 6.5,31.5 parent: 2 - - uid: 3773 + - uid: 3726 components: - type: Transform pos: 8.5,33.5 parent: 2 - - uid: 3774 + - uid: 3727 components: - type: Transform pos: 9.5,33.5 parent: 2 - - uid: 3775 + - uid: 3728 components: - type: Transform pos: 10.5,33.5 parent: 2 - - uid: 3776 + - uid: 3729 components: - type: Transform pos: 10.5,34.5 parent: 2 - - uid: 3777 + - uid: 3730 components: - type: Transform pos: 11.5,34.5 parent: 2 - - uid: 3778 + - uid: 3731 components: - type: Transform pos: 11.5,35.5 parent: 2 - - uid: 3779 + - uid: 3732 components: - type: Transform pos: 11.5,36.5 parent: 2 - - uid: 3780 + - uid: 3733 components: - type: Transform pos: 11.5,37.5 parent: 2 - - uid: 3781 + - uid: 3734 components: - type: Transform pos: 10.5,37.5 parent: 2 - - uid: 3782 + - uid: 3735 components: - type: Transform pos: 9.5,37.5 parent: 2 - - uid: 3783 + - uid: 3736 components: - type: Transform pos: 8.5,37.5 parent: 2 - - uid: 3784 + - uid: 3737 components: - type: Transform pos: 9.5,47.5 parent: 2 - - uid: 3785 + - uid: 3738 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 3786 + - uid: 3739 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 3787 + - uid: 3740 components: - type: Transform pos: 10.5,46.5 parent: 2 - - uid: 3788 + - uid: 3741 components: - type: Transform pos: 11.5,46.5 parent: 2 - - uid: 3789 + - uid: 3742 components: - type: Transform pos: 11.5,45.5 parent: 2 - - uid: 3790 + - uid: 3743 components: - type: Transform pos: 11.5,44.5 parent: 2 - - uid: 3791 + - uid: 3744 components: - type: Transform pos: 11.5,43.5 parent: 2 - - uid: 3792 + - uid: 3745 components: - type: Transform pos: 11.5,42.5 parent: 2 - - uid: 3793 + - uid: 3746 components: - type: Transform pos: 9.5,45.5 parent: 2 - - uid: 3794 + - uid: 3747 components: - type: Transform pos: 9.5,44.5 parent: 2 - - uid: 3795 + - uid: 3748 components: - type: Transform pos: 9.5,43.5 parent: 2 - - uid: 3796 + - uid: 3749 components: - type: Transform pos: 9.5,42.5 parent: 2 - - uid: 3797 + - uid: 3750 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 3798 + - uid: 3751 components: - type: Transform pos: 10.5,40.5 parent: 2 - - uid: 3799 + - uid: 3752 components: - type: Transform pos: 10.5,39.5 parent: 2 - - uid: 3800 + - uid: 3753 components: - type: Transform pos: 9.5,39.5 parent: 2 - - uid: 3801 + - uid: 3754 components: - type: Transform pos: 11.5,39.5 parent: 2 - - uid: 3802 + - uid: 3755 components: - type: Transform pos: 7.5,34.5 parent: 2 - - uid: 3803 + - uid: 3756 components: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 3804 + - uid: 3757 components: - type: Transform pos: 7.5,31.5 parent: 2 - - uid: 3805 + - uid: 3758 components: - type: Transform pos: 5.5,31.5 parent: 2 - - uid: 3806 + - uid: 3759 components: - type: Transform pos: 4.5,31.5 parent: 2 - - uid: 3807 + - uid: 3760 components: - type: Transform pos: 3.5,31.5 parent: 2 - - uid: 3808 + - uid: 3761 components: - type: Transform pos: 2.5,31.5 parent: 2 - - uid: 3809 + - uid: 3762 components: - type: Transform pos: 2.5,30.5 parent: 2 - - uid: 3810 + - uid: 3763 components: - type: Transform pos: 2.5,29.5 parent: 2 - - uid: 3811 + - uid: 3764 components: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 3812 + - uid: 3765 components: - type: Transform pos: 2.5,27.5 parent: 2 - - uid: 3813 + - uid: 3766 components: - type: Transform pos: 2.5,26.5 parent: 2 - - uid: 3814 + - uid: 3767 components: - type: Transform pos: 7.5,31.5 parent: 2 - - uid: 3815 + - uid: 3768 components: - type: Transform pos: 8.5,31.5 parent: 2 - - uid: 3816 + - uid: 3769 components: - type: Transform pos: 9.5,31.5 parent: 2 - - uid: 3817 + - uid: 3770 components: - type: Transform pos: 10.5,31.5 parent: 2 - - uid: 3818 + - uid: 3771 components: - type: Transform pos: 10.5,30.5 parent: 2 - - uid: 3819 + - uid: 3772 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 3820 + - uid: 3773 components: - type: Transform pos: 10.5,28.5 parent: 2 - - uid: 3821 + - uid: 3774 components: - type: Transform pos: 10.5,27.5 parent: 2 - - uid: 3822 + - uid: 3775 components: - type: Transform pos: 10.5,26.5 parent: 2 - - uid: 3823 + - uid: 3776 components: - type: Transform pos: 9.5,26.5 parent: 2 - - uid: 3824 + - uid: 3777 components: - type: Transform pos: 8.5,26.5 parent: 2 - - uid: 3825 + - uid: 3778 components: - type: Transform pos: 7.5,26.5 parent: 2 - - uid: 3826 + - uid: 3779 components: - type: Transform pos: 6.5,26.5 parent: 2 - - uid: 3827 + - uid: 3780 components: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 3828 + - uid: 3781 components: - type: Transform pos: 4.5,26.5 parent: 2 - - uid: 3829 + - uid: 3782 components: - type: Transform pos: 3.5,26.5 parent: 2 - - uid: 3830 + - uid: 3783 components: - type: Transform pos: 9.5,28.5 parent: 2 - - uid: 3831 + - uid: 3784 components: - type: Transform pos: 8.5,28.5 parent: 2 - - uid: 3832 + - uid: 3785 components: - type: Transform pos: 7.5,28.5 parent: 2 - - uid: 3833 + - uid: 3786 components: - type: Transform pos: 6.5,28.5 parent: 2 - - uid: 3834 + - uid: 3787 components: - type: Transform pos: 5.5,28.5 parent: 2 - - uid: 3835 + - uid: 3788 components: - type: Transform pos: 4.5,28.5 parent: 2 - - uid: 3836 + - uid: 3789 components: - type: Transform pos: 3.5,28.5 parent: 2 - - uid: 3837 + - uid: 3790 components: - type: Transform pos: 10.5,30.5 parent: 2 - - uid: 3838 + - uid: 3791 components: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 3839 + - uid: 3792 components: - type: Transform pos: 12.5,30.5 parent: 2 - - uid: 3840 + - uid: 3793 components: - type: Transform pos: 13.5,30.5 parent: 2 - - uid: 3841 + - uid: 3794 components: - type: Transform pos: 13.5,31.5 parent: 2 - - uid: 3842 + - uid: 3795 components: - type: Transform pos: 13.5,32.5 parent: 2 - - uid: 3843 + - uid: 3796 components: - type: Transform pos: 15.5,33.5 parent: 2 - - uid: 3844 + - uid: 3797 components: - type: Transform pos: 15.5,32.5 parent: 2 - - uid: 3845 + - uid: 3798 components: - type: Transform pos: 16.5,32.5 parent: 2 - - uid: 3846 + - uid: 3799 components: - type: Transform pos: 16.5,31.5 parent: 2 - - uid: 3847 + - uid: 3800 components: - type: Transform pos: 16.5,30.5 parent: 2 - - uid: 3848 + - uid: 3801 components: - type: Transform pos: 16.5,29.5 parent: 2 - - uid: 3849 + - uid: 3802 components: - type: Transform pos: 16.5,28.5 parent: 2 - - uid: 3850 + - uid: 3803 components: - type: Transform pos: 16.5,27.5 parent: 2 - - uid: 3851 + - uid: 3804 components: - type: Transform pos: 15.5,27.5 parent: 2 - - uid: 3852 + - uid: 3805 components: - type: Transform pos: 14.5,27.5 parent: 2 - - uid: 3853 + - uid: 3806 components: - type: Transform pos: 13.5,27.5 parent: 2 - - uid: 3854 + - uid: 3807 components: - type: Transform pos: 12.5,27.5 parent: 2 - - uid: 3855 + - uid: 3808 components: - type: Transform pos: 12.5,28.5 parent: 2 - - uid: 3856 + - uid: 3809 components: - type: Transform pos: 93.5,24.5 parent: 2 - - uid: 3857 + - uid: 3810 components: - type: Transform pos: 93.5,23.5 parent: 2 - - uid: 3858 + - uid: 3811 components: - type: Transform pos: 92.5,23.5 parent: 2 - - uid: 3859 + - uid: 3812 components: - type: Transform pos: 92.5,22.5 parent: 2 - - uid: 3860 + - uid: 3813 components: - type: Transform pos: 92.5,21.5 parent: 2 - - uid: 3861 + - uid: 3814 components: - type: Transform pos: 92.5,20.5 parent: 2 - - uid: 3862 + - uid: 3815 components: - type: Transform pos: 92.5,19.5 parent: 2 - - uid: 3863 + - uid: 3816 components: - type: Transform pos: 92.5,18.5 parent: 2 - - uid: 3864 + - uid: 3817 components: - type: Transform pos: 92.5,17.5 parent: 2 - - uid: 3865 + - uid: 3818 components: - type: Transform pos: 92.5,16.5 parent: 2 - - uid: 3866 + - uid: 3819 components: - type: Transform pos: 92.5,15.5 parent: 2 - - uid: 3867 + - uid: 3820 components: - type: Transform pos: 92.5,14.5 parent: 2 - - uid: 3868 + - uid: 3821 components: - type: Transform pos: 92.5,13.5 parent: 2 - - uid: 3869 + - uid: 3822 components: - type: Transform pos: 91.5,13.5 parent: 2 - - uid: 3870 + - uid: 3823 components: - type: Transform pos: 90.5,13.5 parent: 2 - - uid: 3871 + - uid: 3824 components: - type: Transform pos: 89.5,13.5 parent: 2 - - uid: 3872 + - uid: 3825 components: - type: Transform pos: 88.5,13.5 parent: 2 - - uid: 3873 + - uid: 3826 components: - type: Transform pos: 87.5,13.5 parent: 2 - - uid: 3874 + - uid: 3827 components: - type: Transform pos: 86.5,13.5 parent: 2 - - uid: 3875 + - uid: 3828 components: - type: Transform pos: 85.5,13.5 parent: 2 - - uid: 3876 + - uid: 3829 components: - type: Transform pos: 84.5,13.5 parent: 2 - - uid: 3877 + - uid: 3830 components: - type: Transform pos: 83.5,13.5 parent: 2 - - uid: 3878 + - uid: 3831 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 3879 + - uid: 3832 components: - type: Transform pos: 86.5,10.5 parent: 2 - - uid: 3880 + - uid: 3833 components: - type: Transform pos: 85.5,10.5 parent: 2 - - uid: 3881 + - uid: 3834 components: - type: Transform pos: 84.5,10.5 parent: 2 - - uid: 3882 + - uid: 3835 components: - type: Transform pos: 83.5,10.5 parent: 2 - - uid: 3883 + - uid: 3836 components: - type: Transform pos: 81.5,9.5 parent: 2 - - uid: 3884 + - uid: 3837 components: - type: Transform pos: 80.5,9.5 parent: 2 - - uid: 3885 + - uid: 3838 components: - type: Transform pos: 83.5,9.5 parent: 2 - - uid: 3886 + - uid: 3839 components: - type: Transform pos: 82.5,9.5 parent: 2 - - uid: 3887 + - uid: 3840 components: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 3888 + - uid: 3841 components: - type: Transform pos: 78.5,9.5 parent: 2 - - uid: 3889 + - uid: 3842 components: - type: Transform pos: 77.5,9.5 parent: 2 - - uid: 3890 + - uid: 3843 components: - type: Transform pos: 76.5,9.5 parent: 2 - - uid: 3891 + - uid: 3844 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 3892 + - uid: 3845 components: - type: Transform pos: 69.5,16.5 parent: 2 - - uid: 3893 + - uid: 3846 components: - type: Transform pos: 69.5,15.5 parent: 2 - - uid: 3894 + - uid: 3847 components: - type: Transform pos: 69.5,14.5 parent: 2 - - uid: 3895 + - uid: 3848 components: - type: Transform pos: 69.5,13.5 parent: 2 - - uid: 3896 + - uid: 3849 components: - type: Transform pos: 70.5,13.5 parent: 2 - - uid: 3897 + - uid: 3850 components: - type: Transform pos: 68.5,13.5 parent: 2 - - uid: 3898 + - uid: 3851 components: - type: Transform pos: 68.5,18.5 parent: 2 - - uid: 3899 + - uid: 3852 components: - type: Transform pos: 68.5,19.5 parent: 2 - - uid: 3900 + - uid: 3853 components: - type: Transform pos: 73.5,24.5 parent: 2 - - uid: 3901 + - uid: 3854 components: - type: Transform pos: 73.5,23.5 parent: 2 - - uid: 3902 + - uid: 3855 components: - type: Transform pos: 73.5,22.5 parent: 2 - - uid: 3903 + - uid: 3856 components: - type: Transform pos: 74.5,22.5 parent: 2 - - uid: 3904 + - uid: 3857 components: - type: Transform pos: 75.5,22.5 parent: 2 - - uid: 3905 + - uid: 3858 components: - type: Transform pos: 76.5,22.5 parent: 2 - - uid: 3906 + - uid: 3859 components: - type: Transform pos: 77.5,22.5 parent: 2 - - uid: 3907 + - uid: 3860 components: - type: Transform pos: 77.5,22.5 parent: 2 - - uid: 3908 + - uid: 3861 components: - type: Transform pos: 73.5,21.5 parent: 2 - - uid: 3909 + - uid: 3862 components: - type: Transform pos: 75.5,23.5 parent: 2 - - uid: 3910 + - uid: 3863 components: - type: Transform pos: 75.5,24.5 parent: 2 - - uid: 3911 + - uid: 3864 components: - type: Transform pos: 75.5,25.5 parent: 2 - - uid: 3912 + - uid: 3865 components: - type: Transform pos: 75.5,26.5 parent: 2 - - uid: 3913 + - uid: 3866 components: - type: Transform pos: 75.5,27.5 parent: 2 - - uid: 3914 + - uid: 3867 components: - type: Transform pos: 75.5,28.5 parent: 2 - - uid: 3915 + - uid: 3868 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 3916 + - uid: 3869 components: - type: Transform pos: 72.5,5.5 parent: 2 - - uid: 3917 + - uid: 3870 components: - type: Transform pos: 73.5,5.5 parent: 2 - - uid: 3918 + - uid: 3871 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 3919 + - uid: 3872 components: - type: Transform pos: 72.5,3.5 parent: 2 - - uid: 3920 + - uid: 3873 components: - type: Transform pos: 72.5,2.5 parent: 2 - - uid: 3921 + - uid: 3874 components: - type: Transform pos: 73.5,2.5 parent: 2 - - uid: 3922 + - uid: 3875 components: - type: Transform pos: 73.5,1.5 parent: 2 - - uid: 3923 + - uid: 3876 components: - type: Transform pos: 73.5,0.5 parent: 2 - - uid: 3924 + - uid: 3877 components: - type: Transform pos: 73.5,0.5 parent: 2 - - uid: 3925 + - uid: 3878 components: - type: Transform pos: 73.5,-0.5 parent: 2 - - uid: 3926 + - uid: 3879 components: - type: Transform pos: 73.5,6.5 parent: 2 - - uid: 3927 + - uid: 3880 components: - type: Transform pos: 73.5,7.5 parent: 2 - - uid: 3928 + - uid: 3881 components: - type: Transform pos: 73.5,8.5 parent: 2 - - uid: 3929 + - uid: 3882 components: - type: Transform pos: 73.5,9.5 parent: 2 - - uid: 3930 + - uid: 3883 components: - type: Transform pos: 73.5,10.5 parent: 2 - - uid: 3931 + - uid: 3884 components: - type: Transform pos: 73.5,11.5 parent: 2 - - uid: 3932 + - uid: 3885 components: - type: Transform pos: 73.5,12.5 parent: 2 - - uid: 3933 + - uid: 3886 components: - type: Transform pos: 73.5,13.5 parent: 2 - - uid: 3934 + - uid: 3887 components: - type: Transform pos: 73.5,14.5 parent: 2 - - uid: 3935 + - uid: 3888 components: - type: Transform pos: 73.5,15.5 parent: 2 - - uid: 3936 + - uid: 3889 components: - type: Transform pos: 73.5,16.5 parent: 2 - - uid: 3937 + - uid: 3890 components: - type: Transform pos: 73.5,17.5 parent: 2 - - uid: 3938 + - uid: 3891 components: - type: Transform pos: 73.5,18.5 parent: 2 - - uid: 3939 + - uid: 3892 components: - type: Transform pos: 73.5,19.5 parent: 2 - - uid: 3940 + - uid: 3893 components: - type: Transform pos: 72.5,18.5 parent: 2 - - uid: 3941 + - uid: 3894 components: - type: Transform pos: 72.5,13.5 parent: 2 - - uid: 3942 + - uid: 3895 components: - type: Transform pos: 74.5,9.5 parent: 2 - - uid: 3943 + - uid: 3896 components: - type: Transform pos: 96.5,4.5 parent: 2 - - uid: 3944 + - uid: 3897 components: - type: Transform pos: -29.5,-74.5 parent: 2 - - uid: 3945 + - uid: 3898 components: - type: Transform pos: 78.5,-4.5 parent: 2 - - uid: 3946 + - uid: 3899 components: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 3947 + - uid: 3900 components: - type: Transform pos: -113.5,44.5 parent: 2 - - uid: 3948 + - uid: 3901 components: - type: Transform pos: 54.5,30.5 parent: 2 - - uid: 3949 + - uid: 3902 components: - type: Transform pos: 52.5,29.5 parent: 2 - - uid: 3950 + - uid: 3903 components: - type: Transform pos: 51.5,29.5 parent: 2 - - uid: 3951 + - uid: 3904 components: - type: Transform pos: 50.5,29.5 parent: 2 - - uid: 3952 + - uid: 3905 components: - type: Transform pos: 49.5,29.5 parent: 2 - - uid: 3953 + - uid: 3906 components: - type: Transform pos: 49.5,28.5 parent: 2 - - uid: 3954 + - uid: 3907 components: - type: Transform pos: 49.5,27.5 parent: 2 - - uid: 3955 + - uid: 3908 components: - type: Transform pos: 49.5,26.5 parent: 2 - - uid: 3956 + - uid: 3909 components: - type: Transform pos: 49.5,25.5 parent: 2 - - uid: 3957 + - uid: 3910 components: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 3958 + - uid: 3911 components: - type: Transform pos: 49.5,23.5 parent: 2 - - uid: 3959 + - uid: 3912 components: - type: Transform pos: 49.5,22.5 parent: 2 - - uid: 3960 + - uid: 3913 components: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 3961 + - uid: 3914 components: - type: Transform pos: 53.5,29.5 parent: 2 - - uid: 3962 + - uid: 3915 components: - type: Transform pos: 54.5,29.5 parent: 2 - - uid: 3963 + - uid: 3916 components: - type: Transform pos: 55.5,29.5 parent: 2 - - uid: 3964 + - uid: 3917 components: - type: Transform pos: 56.5,29.5 parent: 2 - - uid: 3965 + - uid: 3918 components: - type: Transform pos: 57.5,29.5 parent: 2 - - uid: 3966 + - uid: 3919 components: - type: Transform pos: 58.5,29.5 parent: 2 - - uid: 3967 + - uid: 3920 components: - type: Transform pos: 59.5,29.5 parent: 2 - - uid: 3968 + - uid: 3921 components: - type: Transform pos: 59.5,28.5 parent: 2 - - uid: 3969 + - uid: 3922 components: - type: Transform pos: 59.5,27.5 parent: 2 - - uid: 3970 + - uid: 3923 components: - type: Transform pos: 59.5,26.5 parent: 2 - - uid: 3971 + - uid: 3924 components: - type: Transform pos: 59.5,25.5 parent: 2 - - uid: 3972 + - uid: 3925 components: - type: Transform pos: 59.5,24.5 parent: 2 - - uid: 3973 + - uid: 3926 components: - type: Transform pos: 59.5,23.5 parent: 2 - - uid: 3974 + - uid: 3927 components: - type: Transform pos: 59.5,22.5 parent: 2 - - uid: 3975 + - uid: 3928 components: - type: Transform pos: 59.5,21.5 parent: 2 - - uid: 3976 + - uid: 3929 components: - type: Transform pos: 57.5,21.5 parent: 2 - - uid: 3977 + - uid: 3930 components: - type: Transform pos: 58.5,21.5 parent: 2 - - uid: 3978 + - uid: 3931 components: - type: Transform pos: 50.5,21.5 parent: 2 - - uid: 3979 + - uid: 3932 components: - type: Transform pos: 51.5,21.5 parent: 2 - - uid: 3980 + - uid: 3933 components: - type: Transform pos: 52.5,21.5 parent: 2 - - uid: 3981 + - uid: 3934 components: - type: Transform pos: 53.5,21.5 parent: 2 - - uid: 3982 + - uid: 3935 components: - type: Transform pos: 54.5,21.5 parent: 2 - - uid: 3983 + - uid: 3936 components: - type: Transform pos: 55.5,21.5 parent: 2 - - uid: 3984 + - uid: 3937 components: - type: Transform pos: 65.5,28.5 parent: 2 - - uid: 3985 + - uid: 3938 components: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 3986 + - uid: 3939 components: - type: Transform pos: 64.5,21.5 parent: 2 - - uid: 3987 + - uid: 3940 components: - type: Transform pos: 66.5,25.5 parent: 2 - - uid: 3988 + - uid: 3941 components: - type: Transform pos: 67.5,25.5 parent: 2 - - uid: 3989 + - uid: 3942 components: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 3990 + - uid: 3943 components: - type: Transform pos: 63.5,25.5 parent: 2 - - uid: 3991 + - uid: 3944 components: - type: Transform pos: 62.5,25.5 parent: 2 - - uid: 3992 + - uid: 3945 components: - type: Transform pos: 61.5,25.5 parent: 2 - - uid: 3993 + - uid: 3946 components: - type: Transform pos: 69.5,25.5 parent: 2 - - uid: 3994 + - uid: 3947 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 3995 + - uid: 3948 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 3996 + - uid: 3949 components: - type: Transform pos: 36.5,22.5 parent: 2 - - uid: 3997 + - uid: 3950 components: - type: Transform pos: 36.5,21.5 parent: 2 - - uid: 3998 + - uid: 3951 components: - type: Transform pos: 36.5,20.5 parent: 2 - - uid: 3999 + - uid: 3952 components: - type: Transform pos: 36.5,19.5 parent: 2 - - uid: 4000 + - uid: 3953 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 4001 + - uid: 3954 components: - type: Transform pos: 35.5,20.5 parent: 2 - - uid: 4002 + - uid: 3955 components: - type: Transform pos: 34.5,20.5 parent: 2 - - uid: 4003 + - uid: 3956 components: - type: Transform pos: 37.5,20.5 parent: 2 - - uid: 4004 + - uid: 3957 components: - type: Transform pos: 38.5,20.5 parent: 2 - - uid: 4005 + - uid: 3958 components: - type: Transform pos: 39.5,20.5 parent: 2 - - uid: 4006 + - uid: 3959 components: - type: Transform pos: 40.5,20.5 parent: 2 - - uid: 4007 + - uid: 3960 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 4008 + - uid: 3961 components: - type: Transform pos: 42.5,20.5 parent: 2 - - uid: 4009 + - uid: 3962 components: - type: Transform pos: 43.5,20.5 parent: 2 - - uid: 4010 + - uid: 3963 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 4011 + - uid: 3964 components: - type: Transform pos: 41.5,22.5 parent: 2 - - uid: 4012 + - uid: 3965 components: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 4013 + - uid: 3966 components: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 4014 + - uid: 3967 components: - type: Transform pos: 41.5,18.5 parent: 2 - - uid: 4015 + - uid: 3968 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 4016 + - uid: 3969 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 4017 + - uid: 3970 components: - type: Transform pos: 20.5,6.5 parent: 2 - - uid: 4018 + - uid: 3971 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 4019 + - uid: 3972 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 4020 + - uid: 3973 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 4021 + - uid: 3974 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 4022 + - uid: 3975 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 4023 + - uid: 3976 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 4024 + - uid: 3977 components: - type: Transform pos: 26.5,5.5 parent: 2 - - uid: 4025 + - uid: 3978 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 4026 + - uid: 3979 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 4027 + - uid: 3980 components: - type: Transform pos: 29.5,5.5 parent: 2 - - uid: 4028 + - uid: 3981 components: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 4029 + - uid: 3982 components: - type: Transform pos: 31.5,5.5 parent: 2 - - uid: 4030 + - uid: 3983 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 4031 + - uid: 3984 components: - type: Transform pos: 32.5,4.5 parent: 2 - - uid: 4032 + - uid: 3985 components: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 4033 + - uid: 3986 components: - type: Transform pos: 32.5,6.5 parent: 2 - - uid: 4034 + - uid: 3987 components: - type: Transform pos: 30.5,4.5 parent: 2 - - uid: 4035 + - uid: 3988 components: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 4036 + - uid: 3989 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 4037 + - uid: 3990 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 4038 + - uid: 3991 components: - type: Transform pos: 55.5,9.5 parent: 2 - - uid: 4039 + - uid: 3992 components: - type: Transform pos: 55.5,8.5 parent: 2 - - uid: 4040 + - uid: 3993 components: - type: Transform pos: 55.5,7.5 parent: 2 - - uid: 4041 + - uid: 3994 components: - type: Transform pos: 55.5,6.5 parent: 2 - - uid: 4042 + - uid: 3995 components: - type: Transform pos: 55.5,5.5 parent: 2 - - uid: 4043 + - uid: 3996 components: - type: Transform pos: 55.5,4.5 parent: 2 - - uid: 4044 + - uid: 3997 components: - type: Transform pos: 55.5,3.5 parent: 2 - - uid: 4045 + - uid: 3998 components: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 4046 + - uid: 3999 components: - type: Transform pos: 53.5,4.5 parent: 2 - - uid: 4047 + - uid: 4000 components: - type: Transform pos: 52.5,4.5 parent: 2 - - uid: 4048 + - uid: 4001 components: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 4049 + - uid: 4002 components: - type: Transform pos: 50.5,4.5 parent: 2 - - uid: 4050 + - uid: 4003 components: - type: Transform pos: 50.5,8.5 parent: 2 - - uid: 4051 + - uid: 4004 components: - type: Transform pos: 51.5,8.5 parent: 2 - - uid: 4052 + - uid: 4005 components: - type: Transform pos: 52.5,8.5 parent: 2 - - uid: 4053 + - uid: 4006 components: - type: Transform pos: 53.5,8.5 parent: 2 - - uid: 4054 + - uid: 4007 components: - type: Transform pos: 54.5,8.5 parent: 2 - - uid: 4055 + - uid: 4008 components: - type: Transform pos: 53.5,9.5 parent: 2 - - uid: 4056 + - uid: 4009 components: - type: Transform pos: 57.5,4.5 parent: 2 - - uid: 4057 + - uid: 4010 components: - type: Transform pos: 58.5,4.5 parent: 2 - - uid: 4058 + - uid: 4011 components: - type: Transform pos: 58.5,5.5 parent: 2 - - uid: 4059 + - uid: 4012 components: - type: Transform pos: 58.5,6.5 parent: 2 - - uid: 4060 + - uid: 4013 components: - type: Transform pos: 58.5,7.5 parent: 2 - - uid: 4061 + - uid: 4014 components: - type: Transform pos: 58.5,8.5 parent: 2 - - uid: 4062 + - uid: 4015 components: - type: Transform pos: 58.5,9.5 parent: 2 - - uid: 4063 + - uid: 4016 components: - type: Transform pos: 59.5,4.5 parent: 2 - - uid: 4064 + - uid: 4017 components: - type: Transform pos: 60.5,4.5 parent: 2 - - uid: 4065 + - uid: 4018 components: - type: Transform pos: 61.5,4.5 parent: 2 - - uid: 4066 + - uid: 4019 components: - type: Transform pos: 62.5,4.5 parent: 2 - - uid: 4067 + - uid: 4020 components: - type: Transform pos: 62.5,5.5 parent: 2 - - uid: 4068 + - uid: 4021 components: - type: Transform pos: 62.5,6.5 parent: 2 - - uid: 4069 + - uid: 4022 components: - type: Transform pos: 62.5,7.5 parent: 2 - - uid: 4070 + - uid: 4023 components: - type: Transform pos: 62.5,8.5 parent: 2 - - uid: 4071 + - uid: 4024 components: - type: Transform pos: 62.5,9.5 parent: 2 - - uid: 4072 + - uid: 4025 components: - type: Transform pos: 63.5,4.5 parent: 2 - - uid: 4073 + - uid: 4026 components: - type: Transform pos: 64.5,4.5 parent: 2 - - uid: 4074 + - uid: 4027 components: - type: Transform pos: 65.5,4.5 parent: 2 - - uid: 4075 + - uid: 4028 components: - type: Transform pos: 66.5,4.5 parent: 2 - - uid: 4076 + - uid: 4029 components: - type: Transform pos: 66.5,5.5 parent: 2 - - uid: 4077 + - uid: 4030 components: - type: Transform pos: 66.5,6.5 parent: 2 - - uid: 4078 + - uid: 4031 components: - type: Transform pos: 66.5,7.5 parent: 2 - - uid: 4079 + - uid: 4032 components: - type: Transform pos: 66.5,8.5 parent: 2 - - uid: 4080 + - uid: 4033 components: - type: Transform pos: 66.5,9.5 parent: 2 - - uid: 4081 + - uid: 4034 components: - type: Transform pos: 67.5,4.5 parent: 2 - - uid: 4082 + - uid: 4035 components: - type: Transform pos: 68.5,4.5 parent: 2 - - uid: 4083 + - uid: 4036 components: - type: Transform pos: 69.5,4.5 parent: 2 - - uid: 4084 + - uid: 4037 components: - type: Transform pos: 69.5,5.5 parent: 2 - - uid: 4085 + - uid: 4038 components: - type: Transform pos: 69.5,6.5 parent: 2 - - uid: 4086 + - uid: 4039 components: - type: Transform pos: 69.5,7.5 parent: 2 - - uid: 4087 + - uid: 4040 components: - type: Transform pos: 69.5,8.5 parent: 2 - - uid: 4088 + - uid: 4041 components: - type: Transform pos: 69.5,9.5 parent: 2 - - uid: 4089 + - uid: 4042 components: - type: Transform pos: 69.5,10.5 parent: 2 - - uid: 4090 + - uid: 4043 components: - type: Transform pos: 62.5,10.5 parent: 2 - - uid: 4091 + - uid: 4044 components: - type: Transform pos: 70.5,6.5 parent: 2 - - uid: 4092 + - uid: 4045 components: - type: Transform pos: 62.5,11.5 parent: 2 - - uid: 4093 + - uid: 4046 components: - type: Transform pos: 62.5,12.5 parent: 2 - - uid: 4094 + - uid: 4047 components: - type: Transform pos: 63.5,12.5 parent: 2 - - uid: 4095 + - uid: 4048 components: - type: Transform pos: 64.5,12.5 parent: 2 - - uid: 4096 + - uid: 4049 components: - type: Transform pos: 65.5,12.5 parent: 2 - - uid: 4097 + - uid: 4050 components: - type: Transform pos: 66.5,12.5 parent: 2 - - uid: 4098 + - uid: 4051 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 4099 + - uid: 4052 components: - type: Transform pos: 55.5,13.5 parent: 2 - - uid: 4100 + - uid: 4053 components: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 4101 + - uid: 4054 components: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 4102 + - uid: 4055 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 4103 + - uid: 4056 components: - type: Transform pos: 53.5,12.5 parent: 2 - - uid: 4104 + - uid: 4057 components: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 4105 + - uid: 4058 components: - type: Transform pos: 51.5,12.5 parent: 2 - - uid: 4106 + - uid: 4059 components: - type: Transform pos: 50.5,12.5 parent: 2 - - uid: 4107 + - uid: 4060 components: - type: Transform pos: 53.5,11.5 parent: 2 - - uid: 4108 + - uid: 4061 components: - type: Transform pos: 51.5,13.5 parent: 2 - - uid: 4109 + - uid: 4062 components: - type: Transform pos: 56.5,12.5 parent: 2 - - uid: 4110 + - uid: 4063 components: - type: Transform pos: 57.5,12.5 parent: 2 - - uid: 4111 + - uid: 4064 components: - type: Transform pos: 58.5,12.5 parent: 2 - - uid: 4112 + - uid: 4065 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 4113 + - uid: 4066 components: - type: Transform pos: 60.5,12.5 parent: 2 - - uid: 4114 + - uid: 4067 components: - type: Transform pos: 56.5,20.5 parent: 2 - - uid: 4115 + - uid: 4068 components: - type: Transform pos: 56.5,19.5 parent: 2 - - uid: 4116 + - uid: 4069 components: - type: Transform pos: 56.5,18.5 parent: 2 - - uid: 4117 + - uid: 4070 components: - type: Transform pos: 56.5,17.5 parent: 2 - - uid: 4118 + - uid: 4071 components: - type: Transform pos: 57.5,17.5 parent: 2 - - uid: 4119 + - uid: 4072 components: - type: Transform pos: 58.5,17.5 parent: 2 - - uid: 4120 + - uid: 4073 components: - type: Transform pos: 59.5,17.5 parent: 2 - - uid: 4121 + - uid: 4074 components: - type: Transform pos: 60.5,17.5 parent: 2 - - uid: 4122 + - uid: 4075 components: - type: Transform pos: 61.5,17.5 parent: 2 - - uid: 4123 + - uid: 4076 components: - type: Transform pos: 62.5,17.5 parent: 2 - - uid: 4124 + - uid: 4077 components: - type: Transform pos: 63.5,17.5 parent: 2 - - uid: 4125 + - uid: 4078 components: - type: Transform pos: 64.5,17.5 parent: 2 - - uid: 4126 + - uid: 4079 components: - type: Transform pos: 65.5,17.5 parent: 2 - - uid: 4127 + - uid: 4080 components: - type: Transform pos: 66.5,17.5 parent: 2 - - uid: 4128 + - uid: 4081 components: - type: Transform pos: 55.5,17.5 parent: 2 - - uid: 4129 + - uid: 4082 components: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 4130 + - uid: 4083 components: - type: Transform pos: 53.5,17.5 parent: 2 - - uid: 4131 + - uid: 4084 components: - type: Transform pos: 52.5,17.5 parent: 2 - - uid: 4132 + - uid: 4085 components: - type: Transform pos: 51.5,17.5 parent: 2 - - uid: 4133 + - uid: 4086 components: - type: Transform pos: 50.5,17.5 parent: 2 - - uid: 4134 + - uid: 4087 components: - type: Transform pos: 50.5,16.5 parent: 2 - - uid: 4135 + - uid: 4088 components: - type: Transform pos: 52.5,19.5 parent: 2 - - uid: 4136 + - uid: 4089 components: - type: Transform pos: 52.5,18.5 parent: 2 - - uid: 4137 + - uid: 4090 components: - type: Transform pos: 51.5,15.5 parent: 2 - - uid: 4138 + - uid: 4091 components: - type: Transform pos: 50.5,15.5 parent: 2 - - uid: 4139 + - uid: 4092 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 4140 + - uid: 4093 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 4141 + - uid: 4094 components: - type: Transform pos: 45.5,23.5 parent: 2 - - uid: 4142 + - uid: 4095 components: - type: Transform pos: 45.5,22.5 parent: 2 - - uid: 4143 + - uid: 4096 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 4144 + - uid: 4097 components: - type: Transform pos: 45.5,20.5 parent: 2 - - uid: 4145 + - uid: 4098 components: - type: Transform pos: 46.5,20.5 parent: 2 - - uid: 4146 + - uid: 4099 components: - type: Transform pos: 47.5,20.5 parent: 2 - - uid: 4147 + - uid: 4100 components: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 4148 + - uid: 4101 components: - type: Transform pos: 47.5,18.5 parent: 2 - - uid: 4149 + - uid: 4102 components: - type: Transform pos: 47.5,17.5 parent: 2 - - uid: 4150 + - uid: 4103 components: - type: Transform pos: 47.5,16.5 parent: 2 - - uid: 4151 + - uid: 4104 components: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 4152 + - uid: 4105 components: - type: Transform pos: 47.5,23.5 parent: 2 - - uid: 4153 + - uid: 4106 components: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 4154 + - uid: 4107 components: - type: Transform pos: 48.5,16.5 parent: 2 - - uid: 4155 + - uid: 4108 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 4156 + - uid: 4109 components: - type: Transform pos: 36.5,12.5 parent: 2 - - uid: 4157 + - uid: 4110 components: - type: Transform pos: 36.5,11.5 parent: 2 - - uid: 4158 + - uid: 4111 components: - type: Transform pos: 36.5,10.5 parent: 2 - - uid: 4159 + - uid: 4112 components: - type: Transform pos: 36.5,9.5 parent: 2 - - uid: 4160 + - uid: 4113 components: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 4161 + - uid: 4114 components: - type: Transform pos: 37.5,8.5 parent: 2 - - uid: 4162 + - uid: 4115 components: - type: Transform pos: 38.5,8.5 parent: 2 - - uid: 4163 + - uid: 4116 components: - type: Transform pos: 39.5,8.5 parent: 2 - - uid: 4164 + - uid: 4117 components: - type: Transform pos: 40.5,8.5 parent: 2 - - uid: 4165 + - uid: 4118 components: - type: Transform pos: 40.5,7.5 parent: 2 - - uid: 4166 + - uid: 4119 components: - type: Transform pos: 40.5,6.5 parent: 2 - - uid: 4167 + - uid: 4120 components: - type: Transform pos: 40.5,5.5 parent: 2 - - uid: 4168 + - uid: 4121 components: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 4169 + - uid: 4122 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 4170 + - uid: 4123 components: - type: Transform pos: 42.5,4.5 parent: 2 - - uid: 4171 + - uid: 4124 components: - type: Transform pos: 43.5,4.5 parent: 2 - - uid: 4172 + - uid: 4125 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 4173 + - uid: 4126 components: - type: Transform pos: 43.5,6.5 parent: 2 - - uid: 4174 + - uid: 4127 components: - type: Transform pos: 40.5,9.5 parent: 2 - - uid: 4175 + - uid: 4128 components: - type: Transform pos: 40.5,10.5 parent: 2 - - uid: 4176 + - uid: 4129 components: - type: Transform pos: 40.5,11.5 parent: 2 - - uid: 4177 + - uid: 4130 components: - type: Transform pos: 40.5,12.5 parent: 2 - - uid: 4178 + - uid: 4131 components: - type: Transform pos: 40.5,3.5 parent: 2 - - uid: 4179 + - uid: 4132 components: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 4180 + - uid: 4133 components: - type: Transform pos: 40.5,1.5 parent: 2 - - uid: 4181 + - uid: 4134 components: - type: Transform pos: 40.5,0.5 parent: 2 - - uid: 4182 + - uid: 4135 components: - type: Transform pos: 34.5,5.5 parent: 2 - - uid: 4183 + - uid: 4136 components: - type: Transform pos: 35.5,5.5 parent: 2 - - uid: 4184 + - uid: 4137 components: - type: Transform pos: 36.5,5.5 parent: 2 - - uid: 4185 + - uid: 4138 components: - type: Transform pos: 37.5,5.5 parent: 2 - - uid: 4186 + - uid: 4139 components: - type: Transform pos: 37.5,6.5 parent: 2 - - uid: 4187 + - uid: 4140 components: - type: Transform pos: 38.5,6.5 parent: 2 - - uid: 4188 + - uid: 4141 components: - type: Transform pos: 39.5,6.5 parent: 2 - - uid: 4189 + - uid: 4142 components: - type: Transform pos: 39.5,4.5 parent: 2 - - uid: 4190 + - uid: 4143 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 4191 + - uid: 4144 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 4192 + - uid: 4145 components: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 4193 + - uid: 4146 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 4194 + - uid: 4147 components: - type: Transform pos: 37.5,1.5 parent: 2 - - uid: 4195 + - uid: 4148 components: - type: Transform pos: 37.5,0.5 parent: 2 - - uid: 4196 + - uid: 4149 components: - type: Transform pos: 37.5,-0.5 parent: 2 - - uid: 4197 + - uid: 4150 components: - type: Transform pos: 37.5,-1.5 parent: 2 - - uid: 4198 + - uid: 4151 components: - type: Transform pos: 36.5,0.5 parent: 2 - - uid: 4199 + - uid: 4152 components: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 4200 + - uid: 4153 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 4201 + - uid: 4154 components: - type: Transform pos: 33.5,0.5 parent: 2 - - uid: 4202 + - uid: 4155 components: - type: Transform pos: 33.5,1.5 parent: 2 - - uid: 4203 + - uid: 4156 components: - type: Transform pos: 36.5,-1.5 parent: 2 - - uid: 4204 + - uid: 4157 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 4205 + - uid: 4158 components: - type: Transform pos: 38.5,-3.5 parent: 2 - - uid: 4206 + - uid: 4159 components: - type: Transform pos: 37.5,-3.5 parent: 2 - - uid: 4207 + - uid: 4160 components: - type: Transform pos: 36.5,-3.5 parent: 2 - - uid: 4208 + - uid: 4161 components: - type: Transform pos: 35.5,-3.5 parent: 2 - - uid: 4209 + - uid: 4162 components: - type: Transform pos: 34.5,-3.5 parent: 2 - - uid: 4210 + - uid: 4163 components: - type: Transform pos: 33.5,-3.5 parent: 2 - - uid: 4211 + - uid: 4164 components: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 4212 + - uid: 4165 components: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 4213 + - uid: 4166 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 4214 + - uid: 4167 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 4215 + - uid: 4168 components: - type: Transform pos: 43.5,-7.5 parent: 2 - - uid: 4216 + - uid: 4169 components: - type: Transform pos: 46.5,-7.5 parent: 2 - - uid: 4217 + - uid: 4170 components: - type: Transform pos: 47.5,-7.5 parent: 2 - - uid: 4218 + - uid: 4171 components: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 4219 + - uid: 4172 components: - type: Transform pos: 49.5,-7.5 parent: 2 - - uid: 4220 + - uid: 4173 components: - type: Transform pos: 50.5,-7.5 parent: 2 - - uid: 4221 + - uid: 4174 components: - type: Transform pos: 51.5,-7.5 parent: 2 - - uid: 4222 + - uid: 4175 components: - type: Transform pos: 47.5,-6.5 parent: 2 - - uid: 4223 + - uid: 4176 components: - type: Transform pos: 44.5,4.5 parent: 2 - - uid: 4224 + - uid: 4177 components: - type: Transform pos: 45.5,4.5 parent: 2 - - uid: 4225 + - uid: 4178 components: - type: Transform pos: 46.5,4.5 parent: 2 - - uid: 4226 + - uid: 4179 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 4227 + - uid: 4180 components: - type: Transform pos: 47.5,3.5 parent: 2 - - uid: 4228 + - uid: 4181 components: - type: Transform pos: 47.5,2.5 parent: 2 - - uid: 4229 + - uid: 4182 components: - type: Transform pos: 47.5,1.5 parent: 2 - - uid: 4230 + - uid: 4183 components: - type: Transform pos: 47.5,0.5 parent: 2 - - uid: 4231 + - uid: 4184 components: - type: Transform pos: 47.5,-0.5 parent: 2 - - uid: 4232 + - uid: 4185 components: - type: Transform pos: 47.5,-1.5 parent: 2 - - uid: 4233 + - uid: 4186 components: - type: Transform pos: 47.5,-2.5 parent: 2 - - uid: 4234 + - uid: 4187 components: - type: Transform pos: 47.5,-3.5 parent: 2 - - uid: 4235 + - uid: 4188 components: - type: Transform pos: 47.5,-3.5 parent: 2 - - uid: 4236 + - uid: 4189 components: - type: Transform pos: 47.5,-4.5 parent: 2 - - uid: 4237 + - uid: 4190 components: - type: Transform pos: 48.5,0.5 parent: 2 - - uid: 4238 + - uid: 4191 components: - type: Transform pos: 49.5,0.5 parent: 2 - - uid: 4239 + - uid: 4192 components: - type: Transform pos: 50.5,0.5 parent: 2 - - uid: 4240 + - uid: 4193 components: - type: Transform pos: 51.5,0.5 parent: 2 - - uid: 4241 + - uid: 4194 components: - type: Transform pos: 52.5,0.5 parent: 2 - - uid: 4242 + - uid: 4195 components: - type: Transform pos: 53.5,0.5 parent: 2 - - uid: 4243 + - uid: 4196 components: - type: Transform pos: 54.5,0.5 parent: 2 - - uid: 4244 + - uid: 4197 components: - type: Transform pos: 55.5,0.5 parent: 2 - - uid: 4245 + - uid: 4198 components: - type: Transform pos: 56.5,0.5 parent: 2 - - uid: 4246 + - uid: 4199 components: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 4247 + - uid: 4200 components: - type: Transform pos: 58.5,0.5 parent: 2 - - uid: 4248 + - uid: 4201 components: - type: Transform pos: 59.5,0.5 parent: 2 - - uid: 4249 + - uid: 4202 components: - type: Transform pos: 60.5,0.5 parent: 2 - - uid: 4250 + - uid: 4203 components: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 4251 + - uid: 4204 components: - type: Transform pos: 62.5,0.5 parent: 2 - - uid: 4252 + - uid: 4205 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 4253 + - uid: 4206 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 4254 + - uid: 4207 components: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 4255 + - uid: 4208 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 4256 + - uid: 4209 components: - type: Transform pos: 72.5,1.5 parent: 2 - - uid: 4257 + - uid: 4210 components: - type: Transform pos: 71.5,1.5 parent: 2 - - uid: 4258 + - uid: 4211 components: - type: Transform pos: 70.5,1.5 parent: 2 - - uid: 4259 + - uid: 4212 components: - type: Transform pos: 69.5,1.5 parent: 2 - - uid: 4260 + - uid: 4213 components: - type: Transform pos: 72.5,-0.5 parent: 2 - - uid: 4261 + - uid: 4214 components: - type: Transform pos: 71.5,-0.5 parent: 2 - - uid: 4262 + - uid: 4215 components: - type: Transform pos: 70.5,-0.5 parent: 2 - - uid: 4263 + - uid: 4216 components: - type: Transform pos: 69.5,-0.5 parent: 2 - - uid: 4264 + - uid: 4217 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 4265 + - uid: 4218 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 4266 + - uid: 4219 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 4267 + - uid: 4220 components: - type: Transform pos: 70.5,-3.5 parent: 2 - - uid: 4268 + - uid: 4221 components: - type: Transform pos: 71.5,-3.5 parent: 2 - - uid: 4269 + - uid: 4222 components: - type: Transform pos: 72.5,-3.5 parent: 2 - - uid: 4270 + - uid: 4223 components: - type: Transform pos: 73.5,-3.5 parent: 2 - - uid: 4271 + - uid: 4224 components: - type: Transform pos: 50.5,-1.5 parent: 2 - - uid: 4272 + - uid: 4225 components: - type: Transform pos: 50.5,-2.5 parent: 2 - - uid: 4273 + - uid: 4226 components: - type: Transform pos: 50.5,-3.5 parent: 2 - - uid: 4274 + - uid: 4227 components: - type: Transform pos: 50.5,-4.5 parent: 2 - - uid: 4275 + - uid: 4228 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 4276 + - uid: 4229 components: - type: Transform pos: 52.5,-3.5 parent: 2 - - uid: 4277 + - uid: 4230 components: - type: Transform pos: 53.5,-3.5 parent: 2 - - uid: 4278 + - uid: 4231 components: - type: Transform pos: 53.5,-2.5 parent: 2 - - uid: 4279 + - uid: 4232 components: - type: Transform pos: 53.5,-3.5 parent: 2 - - uid: 4280 + - uid: 4233 components: - type: Transform pos: 53.5,-4.5 parent: 2 - - uid: 4281 + - uid: 4234 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 4282 + - uid: 4235 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 4283 + - uid: 4236 components: - type: Transform pos: 63.5,-3.5 parent: 2 - - uid: 4284 + - uid: 4237 components: - type: Transform pos: 63.5,-4.5 parent: 2 - - uid: 4285 + - uid: 4238 components: - type: Transform pos: 63.5,-5.5 parent: 2 - - uid: 4286 + - uid: 4239 components: - type: Transform pos: 62.5,-4.5 parent: 2 - - uid: 4287 + - uid: 4240 components: - type: Transform pos: 61.5,-4.5 parent: 2 - - uid: 4288 + - uid: 4241 components: - type: Transform pos: 60.5,-4.5 parent: 2 - - uid: 4289 + - uid: 4242 components: - type: Transform pos: 60.5,-2.5 parent: 2 - - uid: 4290 + - uid: 4243 components: - type: Transform pos: 60.5,-3.5 parent: 2 - - uid: 4291 + - uid: 4244 components: - type: Transform pos: 60.5,-4.5 parent: 2 - - uid: 4292 + - uid: 4245 components: - type: Transform pos: 60.5,-5.5 parent: 2 - - uid: 4293 + - uid: 4246 components: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 4294 + - uid: 4247 components: - type: Transform pos: 64.5,-3.5 parent: 2 - - uid: 4295 + - uid: 4248 components: - type: Transform pos: 65.5,-3.5 parent: 2 - - uid: 4296 + - uid: 4249 components: - type: Transform pos: 66.5,-3.5 parent: 2 - - uid: 4297 + - uid: 4250 components: - type: Transform pos: 46.5,0.5 parent: 2 - - uid: 4298 + - uid: 4251 components: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 4299 + - uid: 4252 components: - type: Transform pos: 44.5,0.5 parent: 2 - - uid: 4300 + - uid: 4253 components: - type: Transform pos: 43.5,0.5 parent: 2 - - uid: 4301 + - uid: 4254 components: - type: Transform pos: 46.5,8.5 parent: 2 - - uid: 4302 + - uid: 4255 components: - type: Transform pos: 45.5,8.5 parent: 2 - - uid: 4303 + - uid: 4256 components: - type: Transform pos: 44.5,8.5 parent: 2 - - uid: 4304 + - uid: 4257 components: - type: Transform pos: 43.5,8.5 parent: 2 - - uid: 4305 + - uid: 4258 components: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 4306 + - uid: 4259 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 4307 + - uid: 4260 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 4308 + - uid: 4261 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 4309 + - uid: 4262 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 4310 + - uid: 4263 components: - type: Transform pos: 47.5,10.5 parent: 2 - - uid: 4311 + - uid: 4264 components: - type: Transform pos: 47.5,11.5 parent: 2 - - uid: 4312 + - uid: 4265 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 4313 + - uid: 4266 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 4314 + - uid: 4267 components: - type: Transform pos: 46.5,12.5 parent: 2 - - uid: 4315 + - uid: 4268 components: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 4316 + - uid: 4269 components: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 4317 + - uid: 4270 components: - type: Transform pos: 56.5,-0.5 parent: 2 - - uid: 4318 + - uid: 4271 components: - type: Transform pos: 56.5,-1.5 parent: 2 - - uid: 4319 + - uid: 4272 components: - type: Transform pos: 56.5,-2.5 parent: 2 - - uid: 4320 + - uid: 4273 components: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 4321 + - uid: 4274 components: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 4322 + - uid: 4275 components: - type: Transform pos: 56.5,-3.5 parent: 2 - - uid: 4323 + - uid: 4276 components: - type: Transform pos: 55.5,-3.5 parent: 2 - - uid: 4324 + - uid: 4277 components: - type: Transform pos: 58.5,-3.5 parent: 2 - - uid: 4325 + - uid: 4278 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 4326 + - uid: 4279 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 4327 + - uid: 4280 components: - type: Transform pos: 26.5,2.5 parent: 2 - - uid: 4328 + - uid: 4281 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 4329 + - uid: 4282 components: - type: Transform pos: 26.5,0.5 parent: 2 - - uid: 4330 + - uid: 4283 components: - type: Transform pos: 26.5,-0.5 parent: 2 - - uid: 4331 + - uid: 4284 components: - type: Transform pos: 26.5,-1.5 parent: 2 - - uid: 4332 + - uid: 4285 components: - type: Transform pos: 26.5,-2.5 parent: 2 - - uid: 4333 + - uid: 4286 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 4334 + - uid: 4287 components: - type: Transform pos: 26.5,-4.5 parent: 2 - - uid: 4335 + - uid: 4288 components: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 4336 + - uid: 4289 components: - type: Transform pos: 26.5,-6.5 parent: 2 - - uid: 4337 + - uid: 4290 components: - type: Transform pos: 26.5,-7.5 parent: 2 - - uid: 4338 + - uid: 4291 components: - type: Transform pos: 27.5,-1.5 parent: 2 - - uid: 4339 + - uid: 4292 components: - type: Transform pos: 28.5,-1.5 parent: 2 - - uid: 4340 + - uid: 4293 components: - type: Transform pos: 29.5,-1.5 parent: 2 - - uid: 4341 + - uid: 4294 components: - type: Transform pos: 30.5,-1.5 parent: 2 - - uid: 4342 + - uid: 4295 components: - type: Transform pos: 30.5,0.5 parent: 2 - - uid: 4343 + - uid: 4296 components: - type: Transform pos: 30.5,1.5 parent: 2 - - uid: 4344 + - uid: 4297 components: - type: Transform pos: 30.5,2.5 parent: 2 - - uid: 4345 + - uid: 4298 components: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 4346 + - uid: 4299 components: - type: Transform pos: 30.5,-3.5 parent: 2 - - uid: 4347 + - uid: 4300 components: - type: Transform pos: 30.5,-4.5 parent: 2 - - uid: 4348 + - uid: 4301 components: - type: Transform pos: 30.5,-5.5 parent: 2 - - uid: 4349 + - uid: 4302 components: - type: Transform pos: 30.5,-6.5 parent: 2 - - uid: 4350 + - uid: 4303 components: - type: Transform pos: 30.5,-7.5 parent: 2 - - uid: 4351 + - uid: 4304 components: - type: Transform pos: 30.5,-1.5 parent: 2 - - uid: 4352 + - uid: 4305 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 4353 + - uid: 4306 components: - type: Transform pos: 25.5,-1.5 parent: 2 - - uid: 4354 + - uid: 4307 components: - type: Transform pos: 24.5,-1.5 parent: 2 - - uid: 4355 + - uid: 4308 components: - type: Transform pos: 23.5,-1.5 parent: 2 - - uid: 4356 + - uid: 4309 components: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 4357 + - uid: 4310 components: - type: Transform pos: 21.5,-1.5 parent: 2 - - uid: 4358 + - uid: 4311 components: - type: Transform pos: 20.5,-1.5 parent: 2 - - uid: 4359 + - uid: 4312 components: - type: Transform pos: 22.5,-0.5 parent: 2 - - uid: 4360 + - uid: 4313 components: - type: Transform pos: 22.5,0.5 parent: 2 - - uid: 4361 + - uid: 4314 components: - type: Transform pos: 22.5,1.5 parent: 2 - - uid: 4362 + - uid: 4315 components: - type: Transform pos: 22.5,2.5 parent: 2 - - uid: 4363 + - uid: 4316 components: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 4364 + - uid: 4317 components: - type: Transform pos: 20.5,-3.5 parent: 2 - - uid: 4365 + - uid: 4318 components: - type: Transform pos: 21.5,-3.5 parent: 2 - - uid: 4366 + - uid: 4319 components: - type: Transform pos: 22.5,-3.5 parent: 2 - - uid: 4367 + - uid: 4320 components: - type: Transform pos: 22.5,-4.5 parent: 2 - - uid: 4368 + - uid: 4321 components: - type: Transform pos: 22.5,-5.5 parent: 2 - - uid: 4369 + - uid: 4322 components: - type: Transform pos: 22.5,-6.5 parent: 2 - - uid: 4370 + - uid: 4323 components: - type: Transform pos: 22.5,-7.5 parent: 2 - - uid: 4371 + - uid: 4324 components: - type: Transform pos: 22.5,-7.5 parent: 2 - - uid: 4372 + - uid: 4325 components: - type: Transform pos: 23.5,-7.5 parent: 2 - - uid: 4373 + - uid: 4326 components: - type: Transform pos: 23.5,-3.5 parent: 2 - - uid: 4374 + - uid: 4327 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 4375 + - uid: 4328 components: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 4376 + - uid: 4329 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 4377 + - uid: 4330 components: - type: Transform pos: 23.5,-10.5 parent: 2 - - uid: 4378 + - uid: 4331 components: - type: Transform pos: 22.5,-10.5 parent: 2 - - uid: 4379 + - uid: 4332 components: - type: Transform pos: 21.5,-10.5 parent: 2 - - uid: 4380 + - uid: 4333 components: - type: Transform pos: 20.5,-10.5 parent: 2 - - uid: 4381 + - uid: 4334 components: - type: Transform pos: 25.5,-10.5 parent: 2 - - uid: 4382 + - uid: 4335 components: - type: Transform pos: 26.5,-10.5 parent: 2 - - uid: 4383 + - uid: 4336 components: - type: Transform pos: 27.5,-10.5 parent: 2 - - uid: 4384 + - uid: 4337 components: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 4385 + - uid: 4338 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 4386 + - uid: 4339 components: - type: Transform pos: 30.5,-10.5 parent: 2 - - uid: 4387 + - uid: 4340 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 4388 + - uid: 4341 components: - type: Transform pos: 31.5,-9.5 parent: 2 - - uid: 4389 + - uid: 4342 components: - type: Transform pos: 25.5,-11.5 parent: 2 - - uid: 4390 + - uid: 4343 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 4391 + - uid: 4344 components: - type: Transform pos: 28.5,-13.5 parent: 2 - - uid: 4392 + - uid: 4345 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 4393 + - uid: 4346 components: - type: Transform pos: 27.5,-14.5 parent: 2 - - uid: 4394 + - uid: 4347 components: - type: Transform pos: 27.5,-15.5 parent: 2 - - uid: 4395 + - uid: 4348 components: - type: Transform pos: 27.5,-16.5 parent: 2 - - uid: 4396 + - uid: 4349 components: - type: Transform pos: 27.5,-17.5 parent: 2 - - uid: 4397 + - uid: 4350 components: - type: Transform pos: 29.5,-14.5 parent: 2 - - uid: 4398 + - uid: 4351 components: - type: Transform pos: 29.5,-15.5 parent: 2 - - uid: 4399 + - uid: 4352 components: - type: Transform pos: 29.5,-16.5 parent: 2 - - uid: 4400 + - uid: 4353 components: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 4401 + - uid: 4354 components: - type: Transform pos: 31.5,-14.5 parent: 2 - - uid: 4402 + - uid: 4355 components: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 4403 + - uid: 4356 components: - type: Transform pos: 31.5,-16.5 parent: 2 - - uid: 4404 + - uid: 4357 components: - type: Transform pos: 31.5,-17.5 parent: 2 - - uid: 4405 + - uid: 4358 components: - type: Transform pos: 30.5,-14.5 parent: 2 - - uid: 4406 + - uid: 4359 components: - type: Transform pos: 26.5,-14.5 parent: 2 - - uid: 4407 + - uid: 4360 components: - type: Transform pos: 25.5,-14.5 parent: 2 - - uid: 4408 + - uid: 4361 components: - type: Transform pos: 24.5,-14.5 parent: 2 - - uid: 4409 + - uid: 4362 components: - type: Transform pos: 23.5,-14.5 parent: 2 - - uid: 4410 + - uid: 4363 components: - type: Transform pos: 22.5,-14.5 parent: 2 - - uid: 4411 + - uid: 4364 components: - type: Transform pos: 21.5,-14.5 parent: 2 - - uid: 4412 + - uid: 4365 components: - type: Transform pos: 25.5,-15.5 parent: 2 - - uid: 4413 + - uid: 4366 components: - type: Transform pos: 25.5,-16.5 parent: 2 - - uid: 4414 + - uid: 4367 components: - type: Transform pos: 25.5,-17.5 parent: 2 - - uid: 4415 + - uid: 4368 components: - type: Transform pos: 25.5,-13.5 parent: 2 - - uid: 4416 + - uid: 4369 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 4417 + - uid: 4370 components: - type: Transform pos: -40.5,63.5 parent: 2 - - uid: 4418 + - uid: 4371 components: - type: Transform pos: -40.5,62.5 parent: 2 - - uid: 4419 + - uid: 4372 components: - type: Transform pos: -40.5,61.5 parent: 2 - - uid: 4420 + - uid: 4373 components: - type: Transform pos: -40.5,60.5 parent: 2 - - uid: 4421 + - uid: 4374 components: - type: Transform pos: -40.5,59.5 parent: 2 - - uid: 4422 + - uid: 4375 components: - type: Transform pos: -39.5,61.5 parent: 2 - - uid: 4423 + - uid: 4376 components: - type: Transform pos: -38.5,61.5 parent: 2 - - uid: 4424 + - uid: 4377 components: - type: Transform pos: -37.5,61.5 parent: 2 - - uid: 4425 + - uid: 4378 components: - type: Transform pos: -36.5,61.5 parent: 2 - - uid: 4426 + - uid: 4379 components: - type: Transform pos: -35.5,61.5 parent: 2 - - uid: 4427 + - uid: 4380 components: - type: Transform pos: -34.5,61.5 parent: 2 - - uid: 4428 + - uid: 4381 components: - type: Transform pos: -30.5,66.5 parent: 2 - - uid: 4429 + - uid: 4382 components: - type: Transform pos: -30.5,65.5 parent: 2 - - uid: 4430 + - uid: 4383 components: - type: Transform pos: -30.5,64.5 parent: 2 - - uid: 4431 + - uid: 4384 components: - type: Transform pos: -30.5,63.5 parent: 2 - - uid: 4432 + - uid: 4385 components: - type: Transform pos: -30.5,62.5 parent: 2 - - uid: 4433 + - uid: 4386 components: - type: Transform pos: -30.5,61.5 parent: 2 - - uid: 4434 + - uid: 4387 components: - type: Transform pos: -30.5,60.5 parent: 2 - - uid: 4435 + - uid: 4388 components: - type: Transform pos: -30.5,59.5 parent: 2 - - uid: 4436 + - uid: 4389 components: - type: Transform pos: -30.5,58.5 parent: 2 - - uid: 4437 + - uid: 4390 components: - type: Transform pos: -30.5,57.5 parent: 2 - - uid: 4438 + - uid: 4391 components: - type: Transform pos: -31.5,57.5 parent: 2 - - uid: 4439 + - uid: 4392 components: - type: Transform pos: -32.5,57.5 parent: 2 - - uid: 4440 + - uid: 4393 components: - type: Transform pos: -33.5,57.5 parent: 2 - - uid: 4441 + - uid: 4394 components: - type: Transform pos: -34.5,57.5 parent: 2 - - uid: 4442 + - uid: 4395 components: - type: Transform pos: -35.5,57.5 parent: 2 - - uid: 4443 + - uid: 4396 components: - type: Transform pos: -36.5,57.5 parent: 2 - - uid: 4444 + - uid: 4397 components: - type: Transform pos: -37.5,57.5 parent: 2 - - uid: 4445 + - uid: 4398 components: - type: Transform pos: -38.5,57.5 parent: 2 - - uid: 4446 + - uid: 4399 components: - type: Transform pos: -39.5,57.5 parent: 2 - - uid: 4447 + - uid: 4400 components: - type: Transform pos: -40.5,57.5 parent: 2 - - uid: 4448 + - uid: 4401 components: - type: Transform pos: -41.5,57.5 parent: 2 - - uid: 4449 + - uid: 4402 components: - type: Transform pos: -41.5,56.5 parent: 2 - - uid: 4450 + - uid: 4403 components: - type: Transform pos: -41.5,55.5 parent: 2 - - uid: 4451 + - uid: 4404 components: - type: Transform pos: -41.5,54.5 parent: 2 - - uid: 4452 + - uid: 4405 components: - type: Transform pos: -41.5,53.5 parent: 2 - - uid: 4453 + - uid: 4406 components: - type: Transform pos: -41.5,52.5 parent: 2 - - uid: 4454 + - uid: 4407 components: - type: Transform pos: -41.5,51.5 parent: 2 - - uid: 4455 + - uid: 4408 components: - type: Transform pos: -41.5,50.5 parent: 2 - - uid: 4456 + - uid: 4409 components: - type: Transform pos: -41.5,49.5 parent: 2 - - uid: 4457 + - uid: 4410 components: - type: Transform pos: -41.5,48.5 parent: 2 - - uid: 4458 + - uid: 4411 components: - type: Transform pos: -41.5,47.5 parent: 2 - - uid: 4459 + - uid: 4412 components: - type: Transform pos: -41.5,46.5 parent: 2 - - uid: 4460 + - uid: 4413 components: - type: Transform pos: -41.5,45.5 parent: 2 - - uid: 4461 + - uid: 4414 components: - type: Transform pos: -41.5,44.5 parent: 2 - - uid: 4462 + - uid: 4415 components: - type: Transform pos: -29.5,57.5 parent: 2 - - uid: 4463 + - uid: 4416 components: - type: Transform pos: -28.5,57.5 parent: 2 - - uid: 4464 + - uid: 4417 components: - type: Transform pos: -27.5,57.5 parent: 2 - - uid: 4465 + - uid: 4418 components: - type: Transform pos: -26.5,57.5 parent: 2 - - uid: 4466 + - uid: 4419 components: - type: Transform pos: -25.5,57.5 parent: 2 - - uid: 4467 + - uid: 4420 components: - type: Transform pos: -24.5,57.5 parent: 2 - - uid: 4468 + - uid: 4421 components: - type: Transform pos: -23.5,57.5 parent: 2 - - uid: 4469 + - uid: 4422 components: - type: Transform pos: -23.5,56.5 parent: 2 - - uid: 4470 + - uid: 4423 components: - type: Transform pos: -23.5,55.5 parent: 2 - - uid: 4471 + - uid: 4424 components: - type: Transform pos: -22.5,55.5 parent: 2 - - uid: 4472 + - uid: 4425 components: - type: Transform pos: -29.5,65.5 parent: 2 - - uid: 4473 + - uid: 4426 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 4474 + - uid: 4427 components: - type: Transform pos: -46.5,15.5 parent: 2 - - uid: 4475 + - uid: 4428 components: - type: Transform pos: -46.5,14.5 parent: 2 - - uid: 4476 + - uid: 4429 components: - type: Transform pos: -46.5,13.5 parent: 2 - - uid: 4477 + - uid: 4430 components: - type: Transform pos: -46.5,12.5 parent: 2 - - uid: 4478 + - uid: 4431 components: - type: Transform pos: -46.5,11.5 parent: 2 - - uid: 4479 + - uid: 4432 components: - type: Transform pos: -47.5,12.5 parent: 2 - - uid: 4480 + - uid: 4433 components: - type: Transform pos: -48.5,12.5 parent: 2 - - uid: 4481 + - uid: 4434 components: - type: Transform pos: -49.5,12.5 parent: 2 - - uid: 4482 + - uid: 4435 components: - type: Transform pos: -50.5,12.5 parent: 2 - - uid: 4483 + - uid: 4436 components: - type: Transform pos: -51.5,12.5 parent: 2 - - uid: 4484 + - uid: 4437 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 4485 + - uid: 4438 components: - type: Transform pos: -53.5,12.5 parent: 2 - - uid: 4486 + - uid: 4439 components: - type: Transform pos: -54.5,12.5 parent: 2 - - uid: 4487 + - uid: 4440 components: - type: Transform pos: -55.5,12.5 parent: 2 - - uid: 4488 + - uid: 4441 components: - type: Transform pos: -56.5,12.5 parent: 2 - - uid: 4489 + - uid: 4442 components: - type: Transform pos: -57.5,12.5 parent: 2 - - uid: 4490 + - uid: 4443 components: - type: Transform pos: -58.5,12.5 parent: 2 - - uid: 4491 + - uid: 4444 components: - type: Transform pos: -58.5,11.5 parent: 2 - - uid: 4492 + - uid: 4445 components: - type: Transform pos: -58.5,10.5 parent: 2 - - uid: 4493 + - uid: 4446 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 4494 + - uid: 4447 components: - type: Transform pos: -62.5,11.5 parent: 2 - - uid: 4495 + - uid: 4448 components: - type: Transform pos: -62.5,10.5 parent: 2 - - uid: 4496 + - uid: 4449 components: - type: Transform pos: -62.5,9.5 parent: 2 - - uid: 4497 + - uid: 4450 components: - type: Transform pos: -62.5,8.5 parent: 2 - - uid: 4498 + - uid: 4451 components: - type: Transform pos: -62.5,7.5 parent: 2 - - uid: 4499 + - uid: 4452 components: - type: Transform pos: -62.5,6.5 parent: 2 - - uid: 4500 + - uid: 4453 components: - type: Transform pos: -62.5,5.5 parent: 2 - - uid: 4501 + - uid: 4454 components: - type: Transform pos: -62.5,4.5 parent: 2 - - uid: 4502 + - uid: 4455 components: - type: Transform pos: -61.5,6.5 parent: 2 - - uid: 4503 + - uid: 4456 components: - type: Transform pos: -60.5,6.5 parent: 2 - - uid: 4504 + - uid: 4457 components: - type: Transform pos: -63.5,8.5 parent: 2 - - uid: 4505 + - uid: 4458 components: - type: Transform pos: -64.5,8.5 parent: 2 - - uid: 4506 + - uid: 4459 components: - type: Transform pos: -65.5,8.5 parent: 2 - - uid: 4507 + - uid: 4460 components: - type: Transform pos: -60.5,6.5 parent: 2 - - uid: 4508 + - uid: 4461 components: - type: Transform pos: -59.5,6.5 parent: 2 - - uid: 4509 + - uid: 4462 components: - type: Transform pos: -58.5,6.5 parent: 2 - - uid: 4510 + - uid: 4463 components: - type: Transform pos: -57.5,6.5 parent: 2 - - uid: 4511 + - uid: 4464 components: - type: Transform pos: -56.5,6.5 parent: 2 - - uid: 4512 + - uid: 4465 components: - type: Transform pos: -55.5,6.5 parent: 2 - - uid: 4513 + - uid: 4466 components: - type: Transform pos: -63.5,6.5 parent: 2 - - uid: 4514 + - uid: 4467 components: - type: Transform pos: -64.5,6.5 parent: 2 - - uid: 4515 + - uid: 4468 components: - type: Transform pos: -65.5,6.5 parent: 2 - - uid: 4516 + - uid: 4469 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 4517 + - uid: 4470 components: - type: Transform pos: -62.5,18.5 parent: 2 - - uid: 4518 + - uid: 4471 components: - type: Transform pos: -62.5,17.5 parent: 2 - - uid: 4519 + - uid: 4472 components: - type: Transform pos: -62.5,16.5 parent: 2 - - uid: 4520 + - uid: 4473 components: - type: Transform pos: -62.5,15.5 parent: 2 - - uid: 4521 + - uid: 4474 components: - type: Transform pos: -62.5,14.5 parent: 2 - - uid: 4522 + - uid: 4475 components: - type: Transform pos: -63.5,14.5 parent: 2 - - uid: 4523 + - uid: 4476 components: - type: Transform pos: -64.5,14.5 parent: 2 - - uid: 4524 + - uid: 4477 components: - type: Transform pos: -65.5,14.5 parent: 2 - - uid: 4525 + - uid: 4478 components: - type: Transform pos: -65.5,15.5 parent: 2 - - uid: 4526 + - uid: 4479 components: - type: Transform pos: -61.5,14.5 parent: 2 - - uid: 4527 + - uid: 4480 components: - type: Transform pos: -60.5,14.5 parent: 2 - - uid: 4528 + - uid: 4481 components: - type: Transform pos: -63.5,17.5 parent: 2 - - uid: 4529 + - uid: 4482 components: - type: Transform pos: -64.5,17.5 parent: 2 - - uid: 4530 + - uid: 4483 components: - type: Transform pos: -65.5,17.5 parent: 2 - - uid: 4531 + - uid: 4484 components: - type: Transform pos: -118.5,20.5 parent: 2 - - uid: 4532 + - uid: 4485 components: - type: Transform pos: -118.5,19.5 parent: 2 - - uid: 4533 + - uid: 4486 components: - type: Transform pos: -118.5,18.5 parent: 2 - - uid: 4534 + - uid: 4487 components: - type: Transform pos: -119.5,18.5 parent: 2 - - uid: 4535 + - uid: 4488 components: - type: Transform pos: -120.5,18.5 parent: 2 - - uid: 4536 + - uid: 4489 components: - type: Transform pos: -121.5,18.5 parent: 2 - - uid: 4537 + - uid: 4490 components: - type: Transform pos: -118.5,18.5 parent: 2 - - uid: 4538 + - uid: 4491 components: - type: Transform pos: -117.5,18.5 parent: 2 - - uid: 4539 + - uid: 4492 components: - type: Transform pos: -116.5,18.5 parent: 2 - - uid: 4540 + - uid: 4493 components: - type: Transform pos: -115.5,18.5 parent: 2 - - uid: 4541 + - uid: 4494 components: - type: Transform pos: -114.5,18.5 parent: 2 - - uid: 4542 + - uid: 4495 components: - type: Transform pos: -118.5,17.5 parent: 2 - - uid: 4543 + - uid: 4496 components: - type: Transform pos: -122.5,18.5 parent: 2 - - uid: 4544 + - uid: 4497 components: - type: Transform pos: -118.5,21.5 parent: 2 - - uid: 4545 + - uid: 4498 components: - type: Transform pos: -118.5,22.5 parent: 2 - - uid: 4546 + - uid: 4499 components: - type: Transform pos: -118.5,23.5 parent: 2 - - uid: 4547 + - uid: 4500 components: - type: Transform pos: -119.5,23.5 parent: 2 - - uid: 4548 + - uid: 4501 components: - type: Transform pos: -120.5,23.5 parent: 2 - - uid: 4549 + - uid: 4502 components: - type: Transform pos: -121.5,23.5 parent: 2 - - uid: 4550 + - uid: 4503 components: - type: Transform pos: -122.5,23.5 parent: 2 - - uid: 4551 + - uid: 4504 components: - type: Transform pos: -122.5,24.5 parent: 2 - - uid: 4552 + - uid: 4505 components: - type: Transform pos: -122.5,25.5 parent: 2 - - uid: 4553 + - uid: 4506 components: - type: Transform pos: -117.5,23.5 parent: 2 - - uid: 4554 + - uid: 4507 components: - type: Transform pos: -116.5,23.5 parent: 2 - - uid: 4555 + - uid: 4508 components: - type: Transform pos: -115.5,23.5 parent: 2 - - uid: 4556 + - uid: 4509 components: - type: Transform pos: -114.5,23.5 parent: 2 - - uid: 4557 + - uid: 4510 components: - type: Transform pos: -114.5,24.5 parent: 2 - - uid: 4558 + - uid: 4511 components: - type: Transform pos: -114.5,25.5 parent: 2 - - uid: 4559 + - uid: 4512 components: - type: Transform pos: -118.5,24.5 parent: 2 - - uid: 4560 + - uid: 4513 components: - type: Transform pos: -118.5,25.5 parent: 2 - - uid: 4561 + - uid: 4514 components: - type: Transform pos: -118.5,26.5 parent: 2 - - uid: 4562 + - uid: 4515 components: - type: Transform pos: -118.5,27.5 parent: 2 - - uid: 4563 + - uid: 4516 components: - type: Transform pos: -118.5,28.5 parent: 2 - - uid: 4564 + - uid: 4517 components: - type: Transform pos: -118.5,29.5 parent: 2 - - uid: 4565 + - uid: 4518 components: - type: Transform pos: -118.5,30.5 parent: 2 - - uid: 4566 + - uid: 4519 components: - type: Transform pos: -118.5,31.5 parent: 2 - - uid: 4567 + - uid: 4520 components: - type: Transform pos: -118.5,32.5 parent: 2 - - uid: 4568 + - uid: 4521 components: - type: Transform pos: -118.5,33.5 parent: 2 - - uid: 4569 + - uid: 4522 components: - type: Transform pos: -118.5,34.5 parent: 2 - - uid: 4570 + - uid: 4523 components: - type: Transform pos: -118.5,35.5 parent: 2 - - uid: 4571 + - uid: 4524 components: - type: Transform pos: -118.5,36.5 parent: 2 - - uid: 4572 + - uid: 4525 components: - type: Transform pos: -118.5,37.5 parent: 2 - - uid: 4573 + - uid: 4526 components: - type: Transform pos: -118.5,38.5 parent: 2 - - uid: 4574 + - uid: 4527 components: - type: Transform pos: -118.5,39.5 parent: 2 - - uid: 4575 + - uid: 4528 components: - type: Transform pos: -118.5,40.5 parent: 2 - - uid: 4576 + - uid: 4529 components: - type: Transform pos: -118.5,41.5 parent: 2 - - uid: 4577 + - uid: 4530 components: - type: Transform pos: -118.5,42.5 parent: 2 - - uid: 4578 + - uid: 4531 components: - type: Transform pos: -118.5,43.5 parent: 2 - - uid: 4579 + - uid: 4532 components: - type: Transform pos: -113.5,43.5 parent: 2 - - uid: 4580 + - uid: 4533 components: - type: Transform pos: -113.5,42.5 parent: 2 - - uid: 4581 + - uid: 4534 components: - type: Transform pos: -113.5,41.5 parent: 2 - - uid: 4582 + - uid: 4535 components: - type: Transform pos: -113.5,40.5 parent: 2 - - uid: 4583 + - uid: 4536 components: - type: Transform pos: -113.5,39.5 parent: 2 - - uid: 4584 + - uid: 4537 components: - type: Transform pos: -113.5,38.5 parent: 2 - - uid: 4585 + - uid: 4538 components: - type: Transform pos: -113.5,37.5 parent: 2 - - uid: 4586 + - uid: 4539 components: - type: Transform pos: -113.5,36.5 parent: 2 - - uid: 4587 + - uid: 4540 components: - type: Transform pos: -113.5,35.5 parent: 2 - - uid: 4588 + - uid: 4541 components: - type: Transform pos: -115.5,40.5 parent: 2 - - uid: 4589 + - uid: 4542 components: - type: Transform pos: -114.5,40.5 parent: 2 - - uid: 4590 + - uid: 4543 components: - type: Transform pos: -113.5,40.5 parent: 2 - - uid: 4591 + - uid: 4544 components: - type: Transform pos: -112.5,40.5 parent: 2 - - uid: 4592 + - uid: 4545 components: - type: Transform pos: -111.5,40.5 parent: 2 - - uid: 4593 + - uid: 4546 components: - type: Transform pos: -121.5,40.5 parent: 2 - - uid: 4594 + - uid: 4547 components: - type: Transform pos: -122.5,40.5 parent: 2 - - uid: 4595 + - uid: 4548 components: - type: Transform pos: -123.5,40.5 parent: 2 - - uid: 4596 + - uid: 4549 components: - type: Transform pos: -124.5,40.5 parent: 2 - - uid: 4597 + - uid: 4550 components: - type: Transform pos: -125.5,40.5 parent: 2 - - uid: 4598 + - uid: 4551 components: - type: Transform pos: -123.5,44.5 parent: 2 - - uid: 4599 + - uid: 4552 components: - type: Transform pos: -123.5,43.5 parent: 2 - - uid: 4600 + - uid: 4553 components: - type: Transform pos: -123.5,42.5 parent: 2 - - uid: 4601 + - uid: 4554 components: - type: Transform pos: -123.5,41.5 parent: 2 - - uid: 4602 + - uid: 4555 components: - type: Transform pos: -123.5,40.5 parent: 2 - - uid: 4603 + - uid: 4556 components: - type: Transform pos: -123.5,39.5 parent: 2 - - uid: 4604 + - uid: 4557 components: - type: Transform pos: -123.5,38.5 parent: 2 - - uid: 4605 + - uid: 4558 components: - type: Transform pos: -123.5,37.5 parent: 2 - - uid: 4606 + - uid: 4559 components: - type: Transform pos: -123.5,36.5 parent: 2 - - uid: 4607 + - uid: 4560 components: - type: Transform pos: -123.5,35.5 parent: 2 - - uid: 4608 + - uid: 4561 components: - type: Transform pos: -118.5,51.5 parent: 2 - - uid: 4609 + - uid: 4562 components: - type: Transform pos: -118.5,50.5 parent: 2 - - uid: 4610 + - uid: 4563 components: - type: Transform pos: -118.5,49.5 parent: 2 - - uid: 4611 + - uid: 4564 components: - type: Transform pos: -118.5,48.5 parent: 2 - - uid: 4612 + - uid: 4565 components: - type: Transform pos: -118.5,47.5 parent: 2 - - uid: 4613 + - uid: 4566 components: - type: Transform pos: -118.5,46.5 parent: 2 - - uid: 4614 + - uid: 4567 components: - type: Transform pos: -118.5,45.5 parent: 2 - - uid: 4615 + - uid: 4568 components: - type: Transform pos: -117.5,48.5 parent: 2 - - uid: 4616 + - uid: 4569 components: - type: Transform pos: -116.5,48.5 parent: 2 - - uid: 4617 + - uid: 4570 components: - type: Transform pos: -115.5,48.5 parent: 2 - - uid: 4618 + - uid: 4571 components: - type: Transform pos: -114.5,48.5 parent: 2 - - uid: 4619 + - uid: 4572 components: - type: Transform pos: -119.5,48.5 parent: 2 - - uid: 4620 + - uid: 4573 components: - type: Transform pos: -120.5,48.5 parent: 2 - - uid: 4621 + - uid: 4574 components: - type: Transform pos: -121.5,48.5 parent: 2 - - uid: 4622 + - uid: 4575 components: - type: Transform pos: -122.5,48.5 parent: 2 - - uid: 4623 + - uid: 4576 components: - type: Transform pos: -114.5,47.5 parent: 2 - - uid: 4624 + - uid: 4577 components: - type: Transform pos: -114.5,46.5 parent: 2 - - uid: 4625 + - uid: 4578 components: - type: Transform pos: -114.5,45.5 parent: 2 - - uid: 4626 + - uid: 4579 components: - type: Transform pos: -122.5,45.5 parent: 2 - - uid: 4627 + - uid: 4580 components: - type: Transform pos: -122.5,46.5 parent: 2 - - uid: 4628 + - uid: 4581 components: - type: Transform pos: -122.5,47.5 parent: 2 - - uid: 4629 + - uid: 4582 components: - type: Transform pos: -77.5,14.5 parent: 2 - - uid: 4630 + - uid: 4583 components: - type: Transform pos: -77.5,13.5 parent: 2 - - uid: 4631 + - uid: 4584 components: - type: Transform pos: -78.5,14.5 parent: 2 - - uid: 4632 + - uid: 4585 components: - type: Transform pos: -79.5,14.5 parent: 2 - - uid: 4633 + - uid: 4586 components: - type: Transform pos: -80.5,14.5 parent: 2 - - uid: 4634 + - uid: 4587 components: - type: Transform pos: -81.5,14.5 parent: 2 - - uid: 4635 + - uid: 4588 components: - type: Transform pos: -76.5,15.5 parent: 2 - - uid: 4636 + - uid: 4589 components: - type: Transform pos: -75.5,15.5 parent: 2 - - uid: 4637 + - uid: 4590 components: - type: Transform pos: -74.5,15.5 parent: 2 - - uid: 4638 + - uid: 4591 components: - type: Transform pos: -73.5,15.5 parent: 2 - - uid: 4639 + - uid: 4592 components: - type: Transform pos: -72.5,15.5 parent: 2 - - uid: 4640 + - uid: 4593 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 4641 + - uid: 4594 components: - type: Transform pos: -70.5,15.5 parent: 2 - - uid: 4642 + - uid: 4595 components: - type: Transform pos: -69.5,15.5 parent: 2 - - uid: 4643 + - uid: 4596 components: - type: Transform pos: -68.5,15.5 parent: 2 - - uid: 4644 + - uid: 4597 components: - type: Transform pos: -67.5,15.5 parent: 2 - - uid: 4645 + - uid: 4598 components: - type: Transform pos: -76.5,13.5 parent: 2 - - uid: 4646 + - uid: 4599 components: - type: Transform pos: -76.5,12.5 parent: 2 - - uid: 4647 + - uid: 4600 components: - type: Transform pos: -76.5,11.5 parent: 2 - - uid: 4648 + - uid: 4601 components: - type: Transform pos: -76.5,10.5 parent: 2 - - uid: 4649 + - uid: 4602 components: - type: Transform pos: -76.5,9.5 parent: 2 - - uid: 4650 + - uid: 4603 components: - type: Transform pos: -76.5,8.5 parent: 2 - - uid: 4651 + - uid: 4604 components: - type: Transform pos: -76.5,7.5 parent: 2 - - uid: 4652 + - uid: 4605 components: - type: Transform pos: -76.5,6.5 parent: 2 - - uid: 4653 + - uid: 4606 components: - type: Transform pos: -76.5,5.5 parent: 2 - - uid: 4654 + - uid: 4607 components: - type: Transform pos: -76.5,4.5 parent: 2 - - uid: 4655 + - uid: 4608 components: - type: Transform pos: -76.5,3.5 parent: 2 - - uid: 4656 + - uid: 4609 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 4657 + - uid: 4610 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 4658 + - uid: 4611 components: - type: Transform pos: -68.5,2.5 parent: 2 - - uid: 4659 + - uid: 4612 components: - type: Transform pos: -69.5,2.5 parent: 2 - - uid: 4660 + - uid: 4613 components: - type: Transform pos: -69.5,1.5 parent: 2 - - uid: 4661 + - uid: 4614 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 4662 + - uid: 4615 components: - type: Transform pos: -69.5,-0.5 parent: 2 - - uid: 4663 + - uid: 4616 components: - type: Transform pos: -69.5,-1.5 parent: 2 - - uid: 4664 + - uid: 4617 components: - type: Transform pos: -69.5,-2.5 parent: 2 - - uid: 4665 + - uid: 4618 components: - type: Transform pos: -69.5,-3.5 parent: 2 - - uid: 4666 + - uid: 4619 components: - type: Transform pos: -68.5,-0.5 parent: 2 - - uid: 4667 + - uid: 4620 components: - type: Transform pos: -67.5,-0.5 parent: 2 - - uid: 4668 + - uid: 4621 components: - type: Transform pos: -66.5,-0.5 parent: 2 - - uid: 4669 + - uid: 4622 components: - type: Transform pos: -65.5,-0.5 parent: 2 - - uid: 4670 + - uid: 4623 components: - type: Transform pos: -65.5,1.5 parent: 2 - - uid: 4671 + - uid: 4624 components: - type: Transform pos: -65.5,0.5 parent: 2 - - uid: 4672 + - uid: 4625 components: - type: Transform pos: -64.5,1.5 parent: 2 - - uid: 4673 + - uid: 4626 components: - type: Transform pos: -63.5,1.5 parent: 2 - - uid: 4674 + - uid: 4627 components: - type: Transform pos: -62.5,1.5 parent: 2 - - uid: 4675 + - uid: 4628 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 4676 + - uid: 4629 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 4677 + - uid: 4630 components: - type: Transform pos: -59.5,-0.5 parent: 2 - - uid: 4678 + - uid: 4631 components: - type: Transform pos: -58.5,-0.5 parent: 2 - - uid: 4679 + - uid: 4632 components: - type: Transform pos: -57.5,-0.5 parent: 2 - - uid: 4680 + - uid: 4633 components: - type: Transform pos: -56.5,-0.5 parent: 2 - - uid: 4681 + - uid: 4634 components: - type: Transform pos: -55.5,-0.5 parent: 2 - - uid: 4682 + - uid: 4635 components: - type: Transform pos: -54.5,-0.5 parent: 2 - - uid: 4683 + - uid: 4636 components: - type: Transform pos: -53.5,-0.5 parent: 2 - - uid: 4684 + - uid: 4637 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 4685 + - uid: 4638 components: - type: Transform pos: -52.5,0.5 parent: 2 - - uid: 4686 + - uid: 4639 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 4687 + - uid: 4640 components: - type: Transform pos: -52.5,2.5 parent: 2 - - uid: 4688 + - uid: 4641 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 4689 + - uid: 4642 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 4690 + - uid: 4643 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 4691 + - uid: 4644 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 4692 + - uid: 4645 components: - type: Transform pos: -52.5,-5.5 parent: 2 - - uid: 4693 + - uid: 4646 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 4694 + - uid: 4647 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 4695 + - uid: 4648 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 4696 + - uid: 4649 components: - type: Transform pos: -52.5,-9.5 parent: 2 - - uid: 4697 + - uid: 4650 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 4698 + - uid: 4651 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 4699 + - uid: 4652 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 4700 + - uid: 4653 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 4701 + - uid: 4654 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 4702 + - uid: 4655 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 4703 + - uid: 4656 components: - type: Transform pos: -52.5,-16.5 parent: 2 - - uid: 4704 + - uid: 4657 components: - type: Transform pos: -52.5,-17.5 parent: 2 - - uid: 4705 + - uid: 4658 components: - type: Transform pos: -53.5,-13.5 parent: 2 - - uid: 4706 + - uid: 4659 components: - type: Transform pos: -54.5,-13.5 parent: 2 - - uid: 4707 + - uid: 4660 components: - type: Transform pos: -55.5,-13.5 parent: 2 - - uid: 4708 + - uid: 4661 components: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 4709 + - uid: 4662 components: - type: Transform pos: -57.5,-13.5 parent: 2 - - uid: 4710 + - uid: 4663 components: - type: Transform pos: -58.5,-13.5 parent: 2 - - uid: 4711 + - uid: 4664 components: - type: Transform pos: -59.5,-13.5 parent: 2 - - uid: 4712 + - uid: 4665 components: - type: Transform pos: -60.5,-13.5 parent: 2 - - uid: 4713 + - uid: 4666 components: - type: Transform pos: -60.5,-16.5 parent: 2 - - uid: 4714 + - uid: 4667 components: - type: Transform pos: -59.5,-16.5 parent: 2 - - uid: 4715 + - uid: 4668 components: - type: Transform pos: -58.5,-16.5 parent: 2 - - uid: 4716 + - uid: 4669 components: - type: Transform pos: -57.5,-16.5 parent: 2 - - uid: 4717 + - uid: 4670 components: - type: Transform pos: -56.5,-16.5 parent: 2 - - uid: 4718 + - uid: 4671 components: - type: Transform pos: -55.5,-16.5 parent: 2 - - uid: 4719 + - uid: 4672 components: - type: Transform pos: -54.5,-16.5 parent: 2 - - uid: 4720 + - uid: 4673 components: - type: Transform pos: -53.5,-16.5 parent: 2 - - uid: 4721 + - uid: 4674 components: - type: Transform pos: -51.5,-14.5 parent: 2 - - uid: 4722 + - uid: 4675 components: - type: Transform pos: -50.5,-14.5 parent: 2 - - uid: 4723 + - uid: 4676 components: - type: Transform pos: -49.5,-14.5 parent: 2 - - uid: 4724 + - uid: 4677 components: - type: Transform pos: -48.5,-14.5 parent: 2 - - uid: 4725 + - uid: 4678 components: - type: Transform pos: -47.5,-14.5 parent: 2 - - uid: 4726 + - uid: 4679 components: - type: Transform pos: -46.5,-14.5 parent: 2 - - uid: 4727 + - uid: 4680 components: - type: Transform pos: -45.5,-14.5 parent: 2 - - uid: 4728 + - uid: 4681 components: - type: Transform pos: -47.5,-13.5 parent: 2 - - uid: 4729 + - uid: 4682 components: - type: Transform pos: -47.5,-12.5 parent: 2 - - uid: 4730 + - uid: 4683 components: - type: Transform pos: -47.5,-11.5 parent: 2 - - uid: 4731 + - uid: 4684 components: - type: Transform pos: -47.5,-15.5 parent: 2 - - uid: 4732 + - uid: 4685 components: - type: Transform pos: -47.5,-16.5 parent: 2 - - uid: 4733 + - uid: 4686 components: - type: Transform pos: -47.5,-17.5 parent: 2 - - uid: 4734 + - uid: 4687 components: - type: Transform pos: -51.5,-7.5 parent: 2 - - uid: 4735 + - uid: 4688 components: - type: Transform pos: -50.5,-7.5 parent: 2 - - uid: 4736 + - uid: 4689 components: - type: Transform pos: -49.5,-7.5 parent: 2 - - uid: 4737 + - uid: 4690 components: - type: Transform pos: -48.5,-7.5 parent: 2 - - uid: 4738 + - uid: 4691 components: - type: Transform pos: -47.5,-7.5 parent: 2 - - uid: 4739 + - uid: 4692 components: - type: Transform pos: -46.5,-7.5 parent: 2 - - uid: 4740 + - uid: 4693 components: - type: Transform pos: -45.5,-7.5 parent: 2 - - uid: 4741 + - uid: 4694 components: - type: Transform pos: -44.5,-7.5 parent: 2 - - uid: 4742 + - uid: 4695 components: - type: Transform pos: -60.5,-4.5 parent: 2 - - uid: 4743 + - uid: 4696 components: - type: Transform pos: -60.5,-5.5 parent: 2 - - uid: 4744 + - uid: 4697 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 4745 + - uid: 4698 components: - type: Transform pos: -60.5,-7.5 parent: 2 - - uid: 4746 + - uid: 4699 components: - type: Transform pos: -60.5,-8.5 parent: 2 - - uid: 4747 + - uid: 4700 components: - type: Transform pos: -60.5,-9.5 parent: 2 - - uid: 4748 + - uid: 4701 components: - type: Transform pos: -59.5,-7.5 parent: 2 - - uid: 4749 + - uid: 4702 components: - type: Transform pos: -58.5,-7.5 parent: 2 - - uid: 4750 + - uid: 4703 components: - type: Transform pos: -57.5,-7.5 parent: 2 - - uid: 4751 + - uid: 4704 components: - type: Transform pos: -56.5,-7.5 parent: 2 - - uid: 4752 + - uid: 4705 components: - type: Transform pos: -56.5,-5.5 parent: 2 - - uid: 4753 + - uid: 4706 components: - type: Transform pos: -56.5,-6.5 parent: 2 - - uid: 4754 + - uid: 4707 components: - type: Transform pos: -56.5,-7.5 parent: 2 - - uid: 4755 + - uid: 4708 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 4756 + - uid: 4709 components: - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 4757 + - uid: 4710 components: - type: Transform pos: -57.5,-5.5 parent: 2 - - uid: 4758 + - uid: 4711 components: - type: Transform pos: -57.5,-9.5 parent: 2 - - uid: 4759 + - uid: 4712 components: - type: Transform pos: -60.5,2.5 parent: 2 - - uid: 4760 + - uid: 4713 components: - type: Transform pos: -59.5,2.5 parent: 2 - - uid: 4761 + - uid: 4714 components: - type: Transform pos: -58.5,2.5 parent: 2 - - uid: 4762 + - uid: 4715 components: - type: Transform pos: -57.5,2.5 parent: 2 - - uid: 4763 + - uid: 4716 components: - type: Transform pos: -56.5,2.5 parent: 2 - - uid: 4764 + - uid: 4717 components: - type: Transform pos: -55.5,2.5 parent: 2 - - uid: 4765 + - uid: 4718 components: - type: Transform pos: -54.5,2.5 parent: 2 - - uid: 4766 + - uid: 4719 components: - type: Transform pos: -53.5,2.5 parent: 2 - - uid: 4767 + - uid: 4720 components: - type: Transform pos: -51.5,2.5 parent: 2 - - uid: 4768 + - uid: 4721 components: - type: Transform pos: -50.5,2.5 parent: 2 - - uid: 4769 + - uid: 4722 components: - type: Transform pos: -49.5,2.5 parent: 2 - - uid: 4770 + - uid: 4723 components: - type: Transform pos: -48.5,2.5 parent: 2 - - uid: 4771 + - uid: 4724 components: - type: Transform pos: -51.5,-3.5 parent: 2 - - uid: 4772 + - uid: 4725 components: - type: Transform pos: -50.5,-3.5 parent: 2 - - uid: 4773 + - uid: 4726 components: - type: Transform pos: -49.5,-3.5 parent: 2 - - uid: 4774 + - uid: 4727 components: - type: Transform pos: -48.5,-3.5 parent: 2 - - uid: 4775 + - uid: 4728 components: - type: Transform pos: -53.5,-3.5 parent: 2 - - uid: 4776 + - uid: 4729 components: - type: Transform pos: -54.5,-3.5 parent: 2 - - uid: 4777 + - uid: 4730 components: - type: Transform pos: -55.5,-3.5 parent: 2 - - uid: 4778 + - uid: 4731 components: - type: Transform pos: -56.5,-3.5 parent: 2 - - uid: 4779 + - uid: 4732 components: - type: Transform pos: -57.5,-3.5 parent: 2 - - uid: 4780 + - uid: 4733 components: - type: Transform pos: -58.5,-3.5 parent: 2 - - uid: 4781 + - uid: 4734 components: - type: Transform pos: -59.5,-3.5 parent: 2 - - uid: 4782 + - uid: 4735 components: - type: Transform pos: -60.5,-3.5 parent: 2 - - uid: 4783 + - uid: 4736 components: - type: Transform pos: -52.5,6.5 parent: 2 - - uid: 4784 + - uid: 4737 components: - type: Transform pos: -52.5,5.5 parent: 2 - - uid: 4785 + - uid: 4738 components: - type: Transform pos: -52.5,4.5 parent: 2 - - uid: 4786 + - uid: 4739 components: - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 4787 + - uid: 4740 components: - type: Transform pos: -52.5,2.5 parent: 2 - - uid: 4788 + - uid: 4741 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 4789 + - uid: 4742 components: - type: Transform pos: -53.5,18.5 parent: 2 - - uid: 4790 + - uid: 4743 components: - type: Transform pos: -53.5,17.5 parent: 2 - - uid: 4791 + - uid: 4744 components: - type: Transform pos: -53.5,16.5 parent: 2 - - uid: 4792 + - uid: 4745 components: - type: Transform pos: -53.5,15.5 parent: 2 - - uid: 4793 + - uid: 4746 components: - type: Transform pos: -53.5,14.5 parent: 2 - - uid: 4794 + - uid: 4747 components: - type: Transform pos: -53.5,13.5 parent: 2 - - uid: 4795 + - uid: 4748 components: - type: Transform pos: -53.5,12.5 parent: 2 - - uid: 4796 + - uid: 4749 components: - type: Transform pos: -58.5,9.5 parent: 2 - - uid: 4797 + - uid: 4750 components: - type: Transform pos: -57.5,9.5 parent: 2 - - uid: 4798 + - uid: 4751 components: - type: Transform pos: -56.5,9.5 parent: 2 - - uid: 4799 + - uid: 4752 components: - type: Transform pos: -55.5,9.5 parent: 2 - - uid: 4800 + - uid: 4753 components: - type: Transform pos: -54.5,9.5 parent: 2 - - uid: 4801 + - uid: 4754 components: - type: Transform pos: -53.5,9.5 parent: 2 - - uid: 4802 + - uid: 4755 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 4803 + - uid: 4756 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 4804 + - uid: 4757 components: - type: Transform pos: -51.5,9.5 parent: 2 - - uid: 4805 + - uid: 4758 components: - type: Transform pos: -50.5,9.5 parent: 2 - - uid: 4806 + - uid: 4759 components: - type: Transform pos: -49.5,9.5 parent: 2 - - uid: 4807 + - uid: 4760 components: - type: Transform pos: -49.5,10.5 parent: 2 - - uid: 4808 + - uid: 4761 components: - type: Transform pos: -49.5,11.5 parent: 2 - - uid: 4809 + - uid: 4762 components: - type: Transform pos: -49.5,12.5 parent: 2 - - uid: 4810 + - uid: 4763 components: - type: Transform pos: -47.5,15.5 parent: 2 - - uid: 4811 + - uid: 4764 components: - type: Transform pos: -48.5,15.5 parent: 2 - - uid: 4812 + - uid: 4765 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 4813 + - uid: 4766 components: - type: Transform pos: -50.5,15.5 parent: 2 - - uid: 4814 + - uid: 4767 components: - type: Transform pos: -51.5,15.5 parent: 2 - - uid: 4815 + - uid: 4768 components: - type: Transform pos: -52.5,15.5 parent: 2 - - uid: 4816 + - uid: 4769 components: - type: Transform pos: -53.5,15.5 parent: 2 - - uid: 4817 + - uid: 4770 components: - type: Transform pos: -54.5,15.5 parent: 2 - - uid: 4818 + - uid: 4771 components: - type: Transform pos: -55.5,15.5 parent: 2 - - uid: 4819 + - uid: 4772 components: - type: Transform pos: -56.5,15.5 parent: 2 - - uid: 4820 + - uid: 4773 components: - type: Transform pos: -57.5,15.5 parent: 2 - - uid: 4821 + - uid: 4774 components: - type: Transform pos: -58.5,15.5 parent: 2 - - uid: 4822 + - uid: 4775 components: - type: Transform pos: -58.5,14.5 parent: 2 - - uid: 4823 + - uid: 4776 components: - type: Transform pos: -58.5,13.5 parent: 2 - - uid: 4824 + - uid: 4777 components: - type: Transform pos: -69.5,13.5 parent: 2 - - uid: 4825 + - uid: 4778 components: - type: Transform pos: -69.5,12.5 parent: 2 - - uid: 4826 + - uid: 4779 components: - type: Transform pos: -70.5,12.5 parent: 2 - - uid: 4827 + - uid: 4780 components: - type: Transform pos: -71.5,12.5 parent: 2 - - uid: 4828 + - uid: 4781 components: - type: Transform pos: -71.5,11.5 parent: 2 - - uid: 4829 + - uid: 4782 components: - type: Transform pos: -71.5,10.5 parent: 2 - - uid: 4830 + - uid: 4783 components: - type: Transform pos: -71.5,9.5 parent: 2 - - uid: 4831 + - uid: 4784 components: - type: Transform pos: -71.5,8.5 parent: 2 - - uid: 4832 + - uid: 4785 components: - type: Transform pos: -71.5,7.5 parent: 2 - - uid: 4833 + - uid: 4786 components: - type: Transform pos: -71.5,6.5 parent: 2 - - uid: 4834 + - uid: 4787 components: - type: Transform pos: -71.5,5.5 parent: 2 - - uid: 4835 + - uid: 4788 components: - type: Transform pos: -71.5,4.5 parent: 2 - - uid: 4836 + - uid: 4789 components: - type: Transform pos: -72.5,4.5 parent: 2 - - uid: 4837 + - uid: 4790 components: - type: Transform pos: -73.5,6.5 parent: 2 - - uid: 4838 + - uid: 4791 components: - type: Transform pos: -69.5,6.5 parent: 2 - - uid: 4839 + - uid: 4792 components: - type: Transform pos: -70.5,6.5 parent: 2 - - uid: 4840 + - uid: 4793 components: - type: Transform pos: -72.5,6.5 parent: 2 - - uid: 4841 + - uid: 4794 components: - type: Transform pos: -70.5,-0.5 parent: 2 - - uid: 4842 + - uid: 4795 components: - type: Transform pos: -71.5,-0.5 parent: 2 - - uid: 4843 + - uid: 4796 components: - type: Transform pos: -72.5,-0.5 parent: 2 - - uid: 4844 + - uid: 4797 components: - type: Transform pos: -73.5,-0.5 parent: 2 - - uid: 4845 + - uid: 4798 components: - type: Transform pos: -73.5,0.5 parent: 2 - - uid: 4846 + - uid: 4799 components: - type: Transform pos: -70.5,2.5 parent: 2 - - uid: 4847 + - uid: 4800 components: - type: Transform pos: -71.5,2.5 parent: 2 - - uid: 4848 + - uid: 4801 components: - type: Transform pos: -72.5,2.5 parent: 2 - - uid: 4849 + - uid: 4802 components: - type: Transform pos: -70.5,-3.5 parent: 2 - - uid: 4850 + - uid: 4803 components: - type: Transform pos: -68.5,-3.5 parent: 2 - - uid: 4851 + - uid: 4804 components: - type: Transform pos: -65.5,-4.5 parent: 2 - - uid: 4852 + - uid: 4805 components: - type: Transform pos: -65.5,-5.5 parent: 2 - - uid: 4853 + - uid: 4806 components: - type: Transform pos: -65.5,-6.5 parent: 2 - - uid: 4854 + - uid: 4807 components: - type: Transform pos: -66.5,-6.5 parent: 2 - - uid: 4855 + - uid: 4808 components: - type: Transform pos: -67.5,-6.5 parent: 2 - - uid: 4856 + - uid: 4809 components: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 4857 + - uid: 4810 components: - type: Transform pos: -69.5,-6.5 parent: 2 - - uid: 4858 + - uid: 4811 components: - type: Transform pos: -70.5,-6.5 parent: 2 - - uid: 4859 + - uid: 4812 components: - type: Transform pos: -71.5,-6.5 parent: 2 - - uid: 4860 + - uid: 4813 components: - type: Transform pos: -72.5,-6.5 parent: 2 - - uid: 4861 + - uid: 4814 components: - type: Transform pos: -69.5,-7.5 parent: 2 - - uid: 4862 + - uid: 4815 components: - type: Transform pos: -69.5,-8.5 parent: 2 - - uid: 4863 + - uid: 4816 components: - type: Transform pos: -69.5,-9.5 parent: 2 - - uid: 4864 + - uid: 4817 components: - type: Transform pos: -69.5,-10.5 parent: 2 - - uid: 4865 + - uid: 4818 components: - type: Transform pos: -69.5,-11.5 parent: 2 - - uid: 4866 + - uid: 4819 components: - type: Transform pos: -69.5,-12.5 parent: 2 - - uid: 4867 + - uid: 4820 components: - type: Transform pos: -70.5,-5.5 parent: 2 - - uid: 4868 + - uid: 4821 components: - type: Transform pos: -68.5,-5.5 parent: 2 - - uid: 4869 + - uid: 4822 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 4870 + - uid: 4823 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 4871 + - uid: 4824 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 4872 + - uid: 4825 components: - type: Transform pos: -73.5,-6.5 parent: 2 - - uid: 4873 + - uid: 4826 components: - type: Transform pos: -74.5,-6.5 parent: 2 - - uid: 4874 + - uid: 4827 components: - type: Transform pos: -75.5,-6.5 parent: 2 - - uid: 4875 + - uid: 4828 components: - type: Transform pos: -76.5,-6.5 parent: 2 - - uid: 4876 + - uid: 4829 components: - type: Transform pos: -77.5,-6.5 parent: 2 - - uid: 4877 + - uid: 4830 components: - type: Transform pos: -78.5,-6.5 parent: 2 - - uid: 4878 + - uid: 4831 components: - type: Transform pos: -79.5,-6.5 parent: 2 - - uid: 4879 + - uid: 4832 components: - type: Transform pos: -80.5,-6.5 parent: 2 - - uid: 4880 + - uid: 4833 components: - type: Transform pos: -81.5,-6.5 parent: 2 - - uid: 4881 + - uid: 4834 components: - type: Transform pos: -81.5,-5.5 parent: 2 - - uid: 4882 + - uid: 4835 components: - type: Transform pos: -81.5,-7.5 parent: 2 - - uid: 4883 + - uid: 4836 components: - type: Transform pos: -81.5,-9.5 parent: 2 - - uid: 4884 + - uid: 4837 components: - type: Transform pos: -81.5,-9.5 parent: 2 - - uid: 4885 + - uid: 4838 components: - type: Transform pos: -81.5,-8.5 parent: 2 - - uid: 4886 + - uid: 4839 components: - type: Transform pos: -76.5,-7.5 parent: 2 - - uid: 4887 + - uid: 4840 components: - type: Transform pos: -76.5,-8.5 parent: 2 - - uid: 4888 + - uid: 4841 components: - type: Transform pos: -76.5,-9.5 parent: 2 - - uid: 4889 + - uid: 4842 components: - type: Transform pos: -75.5,-9.5 parent: 2 - - uid: 4890 + - uid: 4843 components: - type: Transform pos: -74.5,-9.5 parent: 2 - - uid: 4891 + - uid: 4844 components: - type: Transform pos: -57.5,-11.5 parent: 2 - - uid: 4892 + - uid: 4845 components: - type: Transform pos: -57.5,-12.5 parent: 2 - - uid: 4893 + - uid: 4846 components: - type: Transform pos: -57.5,-13.5 parent: 2 - - uid: 4894 + - uid: 4847 components: - type: Transform pos: -57.5,-14.5 parent: 2 - - uid: 4895 + - uid: 4848 components: - type: Transform pos: -57.5,-15.5 parent: 2 - - uid: 4896 + - uid: 4849 components: - type: Transform pos: -57.5,-15.5 parent: 2 - - uid: 4897 + - uid: 4850 components: - type: Transform pos: -46.5,-5.5 parent: 2 - - uid: 4898 + - uid: 4851 components: - type: Transform pos: -46.5,-6.5 parent: 2 - - uid: 4899 + - uid: 4852 components: - type: Transform pos: -46.5,-7.5 parent: 2 - - uid: 4900 + - uid: 4853 components: - type: Transform pos: -46.5,-8.5 parent: 2 - - uid: 4901 + - uid: 4854 components: - type: Transform pos: -46.5,-9.5 parent: 2 - - uid: 4902 + - uid: 4855 components: - type: Transform pos: -48.5,1.5 parent: 2 - - uid: 4903 + - uid: 4856 components: - type: Transform pos: -47.5,1.5 parent: 2 - - uid: 4904 + - uid: 4857 components: - type: Transform pos: -46.5,1.5 parent: 2 - - uid: 4905 + - uid: 4858 components: - type: Transform pos: -45.5,1.5 parent: 2 - - uid: 4906 + - uid: 4859 components: - type: Transform pos: -45.5,0.5 parent: 2 - - uid: 4907 + - uid: 4860 components: - type: Transform pos: -45.5,-0.5 parent: 2 - - uid: 4908 + - uid: 4861 components: - type: Transform pos: -45.5,-1.5 parent: 2 - - uid: 4909 + - uid: 4862 components: - type: Transform pos: -45.5,-2.5 parent: 2 - - uid: 4910 + - uid: 4863 components: - type: Transform pos: -45.5,-3.5 parent: 2 - - uid: 4911 + - uid: 4864 components: - type: Transform pos: -48.5,3.5 parent: 2 - - uid: 4912 + - uid: 4865 components: - type: Transform pos: -48.5,4.5 parent: 2 - - uid: 4913 + - uid: 4866 components: - type: Transform pos: -48.5,5.5 parent: 2 - - uid: 4914 + - uid: 4867 components: - type: Transform pos: -47.5,5.5 parent: 2 - - uid: 4915 + - uid: 4868 components: - type: Transform pos: -46.5,5.5 parent: 2 - - uid: 4916 + - uid: 4869 components: - type: Transform pos: -45.5,5.5 parent: 2 - - uid: 4917 + - uid: 4870 components: - type: Transform pos: -44.5,5.5 parent: 2 - - uid: 4918 + - uid: 4871 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 4919 + - uid: 4872 components: - type: Transform pos: -47.5,9.5 parent: 2 - - uid: 4920 + - uid: 4873 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 4921 + - uid: 4874 components: - type: Transform pos: -46.5,9.5 parent: 2 - - uid: 4922 + - uid: 4875 components: - type: Transform pos: -45.5,9.5 parent: 2 - - uid: 4923 + - uid: 4876 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 4924 + - uid: 4877 components: - type: Transform pos: -56.5,20.5 parent: 2 - - uid: 4925 + - uid: 4878 components: - type: Transform pos: -57.5,20.5 parent: 2 - - uid: 4926 + - uid: 4879 components: - type: Transform pos: -57.5,19.5 parent: 2 - - uid: 4927 + - uid: 4880 components: - type: Transform pos: -57.5,18.5 parent: 2 - - uid: 4928 + - uid: 4881 components: - type: Transform pos: -57.5,17.5 parent: 2 - - uid: 4929 + - uid: 4882 components: - type: Transform pos: -58.5,19.5 parent: 2 - - uid: 4930 + - uid: 4883 components: - type: Transform pos: -59.5,19.5 parent: 2 - - uid: 4931 + - uid: 4884 components: - type: Transform pos: -60.5,19.5 parent: 2 - - uid: 4932 + - uid: 4885 components: - type: Transform pos: -56.5,18.5 parent: 2 - - uid: 4933 + - uid: 4886 components: - type: Transform pos: -74.5,0.5 parent: 2 - - uid: 4934 + - uid: 4887 components: - type: Transform pos: -75.5,0.5 parent: 2 - - uid: 4935 + - uid: 4888 components: - type: Transform pos: -76.5,0.5 parent: 2 - - uid: 4936 + - uid: 4889 components: - type: Transform pos: -77.5,0.5 parent: 2 - - uid: 4937 + - uid: 4890 components: - type: Transform pos: -78.5,0.5 parent: 2 - - uid: 4938 + - uid: 4891 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 4939 + - uid: 4892 components: - type: Transform pos: -65.5,56.5 parent: 2 - - uid: 4940 + - uid: 4893 components: - type: Transform pos: -65.5,55.5 parent: 2 - - uid: 4941 + - uid: 4894 components: - type: Transform pos: -66.5,55.5 parent: 2 - - uid: 4942 + - uid: 4895 components: - type: Transform pos: -67.5,55.5 parent: 2 - - uid: 4943 + - uid: 4896 components: - type: Transform pos: -68.5,55.5 parent: 2 - - uid: 4944 + - uid: 4897 components: - type: Transform pos: -69.5,55.5 parent: 2 - - uid: 4945 + - uid: 4898 components: - type: Transform pos: -70.5,55.5 parent: 2 - - uid: 4946 + - uid: 4899 components: - type: Transform pos: -64.5,55.5 parent: 2 - - uid: 4947 + - uid: 4900 components: - type: Transform pos: -63.5,55.5 parent: 2 - - uid: 4948 + - uid: 4901 components: - type: Transform pos: -62.5,55.5 parent: 2 - - uid: 4949 + - uid: 4902 components: - type: Transform pos: -61.5,55.5 parent: 2 - - uid: 4950 + - uid: 4903 components: - type: Transform pos: -61.5,56.5 parent: 2 - - uid: 4951 + - uid: 4904 components: - type: Transform pos: -61.5,57.5 parent: 2 - - uid: 4952 + - uid: 4905 components: - type: Transform pos: -60.5,57.5 parent: 2 - - uid: 4953 + - uid: 4906 components: - type: Transform pos: -59.5,57.5 parent: 2 - - uid: 4954 + - uid: 4907 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 4955 + - uid: 4908 components: - type: Transform pos: -58.5,56.5 parent: 2 - - uid: 4956 + - uid: 4909 components: - type: Transform pos: -58.5,58.5 parent: 2 - - uid: 4957 + - uid: 4910 components: - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 4958 + - uid: 4911 components: - type: Transform pos: -58.5,60.5 parent: 2 - - uid: 4959 + - uid: 4912 components: - type: Transform pos: -58.5,61.5 parent: 2 - - uid: 4960 + - uid: 4913 components: - type: Transform pos: -58.5,62.5 parent: 2 - - uid: 4961 + - uid: 4914 components: - type: Transform pos: -58.5,63.5 parent: 2 - - uid: 4962 + - uid: 4915 components: - type: Transform pos: -61.5,58.5 parent: 2 - - uid: 4963 + - uid: 4916 components: - type: Transform pos: -61.5,59.5 parent: 2 - - uid: 4964 + - uid: 4917 components: - type: Transform pos: -61.5,60.5 parent: 2 - - uid: 4965 + - uid: 4918 components: - type: Transform pos: -61.5,61.5 parent: 2 - - uid: 4966 + - uid: 4919 components: - type: Transform pos: -62.5,54.5 parent: 2 - - uid: 4967 + - uid: 4920 components: - type: Transform pos: -66.5,56.5 parent: 2 - - uid: 4968 + - uid: 4921 components: - type: Transform pos: -66.5,57.5 parent: 2 - - uid: 4969 + - uid: 4922 components: - type: Transform pos: -66.5,58.5 parent: 2 - - uid: 4970 + - uid: 4923 components: - type: Transform pos: -66.5,59.5 parent: 2 - - uid: 4971 + - uid: 4924 components: - type: Transform pos: -66.5,60.5 parent: 2 - - uid: 4972 + - uid: 4925 components: - type: Transform pos: -66.5,61.5 parent: 2 - - uid: 4973 + - uid: 4926 components: - type: Transform pos: -44.5,49.5 parent: 2 - - uid: 4974 + - uid: 4927 components: - type: Transform pos: -44.5,48.5 parent: 2 - - uid: 4975 + - uid: 4928 components: - type: Transform pos: -44.5,47.5 parent: 2 - - uid: 4976 + - uid: 4929 components: - type: Transform pos: -44.5,46.5 parent: 2 - - uid: 4977 + - uid: 4930 components: - type: Transform pos: -44.5,45.5 parent: 2 - - uid: 4978 + - uid: 4931 components: - type: Transform pos: -45.5,45.5 parent: 2 - - uid: 4979 + - uid: 4932 components: - type: Transform pos: -46.5,45.5 parent: 2 - - uid: 4980 + - uid: 4933 components: - type: Transform pos: -47.5,45.5 parent: 2 - - uid: 4981 + - uid: 4934 components: - type: Transform pos: -48.5,45.5 parent: 2 - - uid: 4982 + - uid: 4935 components: - type: Transform pos: -49.5,45.5 parent: 2 - - uid: 4983 + - uid: 4936 components: - type: Transform pos: -50.5,45.5 parent: 2 - - uid: 4984 + - uid: 4937 components: - type: Transform pos: -51.5,45.5 parent: 2 - - uid: 4985 + - uid: 4938 components: - type: Transform pos: -52.5,45.5 parent: 2 - - uid: 4986 + - uid: 4939 components: - type: Transform pos: -53.5,45.5 parent: 2 - - uid: 4987 + - uid: 4940 components: - type: Transform pos: -54.5,45.5 parent: 2 - - uid: 4988 + - uid: 4941 components: - type: Transform pos: -55.5,45.5 parent: 2 - - uid: 4989 + - uid: 4942 components: - type: Transform pos: -56.5,45.5 parent: 2 - - uid: 4990 + - uid: 4943 components: - type: Transform pos: -57.5,45.5 parent: 2 - - uid: 4991 + - uid: 4944 components: - type: Transform pos: -58.5,45.5 parent: 2 - - uid: 4992 + - uid: 4945 components: - type: Transform pos: -58.5,46.5 parent: 2 - - uid: 4993 + - uid: 4946 components: - type: Transform pos: -58.5,47.5 parent: 2 - - uid: 4994 + - uid: 4947 components: - type: Transform pos: -58.5,48.5 parent: 2 - - uid: 4995 + - uid: 4948 components: - type: Transform pos: -58.5,49.5 parent: 2 - - uid: 4996 + - uid: 4949 components: - type: Transform pos: -58.5,50.5 parent: 2 - - uid: 4997 + - uid: 4950 components: - type: Transform pos: -58.5,51.5 parent: 2 - - uid: 4998 + - uid: 4951 components: - type: Transform pos: -58.5,52.5 parent: 2 - - uid: 4999 + - uid: 4952 components: - type: Transform pos: -58.5,53.5 parent: 2 - - uid: 5000 + - uid: 4953 components: - type: Transform pos: -58.5,54.5 parent: 2 - - uid: 5001 + - uid: 4954 components: - type: Transform pos: -52.5,54.5 parent: 2 - - uid: 5002 + - uid: 4955 components: - type: Transform pos: -51.5,54.5 parent: 2 - - uid: 5003 + - uid: 4956 components: - type: Transform pos: -50.5,54.5 parent: 2 - - uid: 5004 + - uid: 4957 components: - type: Transform pos: -49.5,54.5 parent: 2 - - uid: 5005 + - uid: 4958 components: - type: Transform pos: -48.5,54.5 parent: 2 - - uid: 5006 + - uid: 4959 components: - type: Transform pos: -47.5,54.5 parent: 2 - - uid: 5007 + - uid: 4960 components: - type: Transform pos: -46.5,54.5 parent: 2 - - uid: 5008 + - uid: 4961 components: - type: Transform pos: -45.5,54.5 parent: 2 - - uid: 5009 + - uid: 4962 components: - type: Transform pos: -45.5,53.5 parent: 2 - - uid: 5010 + - uid: 4963 components: - type: Transform pos: -45.5,52.5 parent: 2 - - uid: 5011 + - uid: 4964 components: - type: Transform pos: -45.5,51.5 parent: 2 - - uid: 5012 + - uid: 4965 components: - type: Transform pos: -45.5,50.5 parent: 2 - - uid: 5013 + - uid: 4966 components: - type: Transform pos: -45.5,49.5 parent: 2 - - uid: 5014 + - uid: 4967 components: - type: Transform pos: -53.5,44.5 parent: 2 - - uid: 5015 + - uid: 4968 components: - type: Transform pos: -47.5,44.5 parent: 2 - - uid: 5016 + - uid: 4969 components: - type: Transform pos: -55.5,44.5 parent: 2 - - uid: 5017 + - uid: 4970 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 5018 + - uid: 4971 components: - type: Transform pos: -50.5,38.5 parent: 2 - - uid: 5019 + - uid: 4972 components: - type: Transform pos: -50.5,37.5 parent: 2 - - uid: 5020 + - uid: 4973 components: - type: Transform pos: -49.5,37.5 parent: 2 - - uid: 5021 + - uid: 4974 components: - type: Transform pos: -48.5,37.5 parent: 2 - - uid: 5022 + - uid: 4975 components: - type: Transform pos: -48.5,38.5 parent: 2 - - uid: 5023 + - uid: 4976 components: - type: Transform pos: -48.5,39.5 parent: 2 - - uid: 5024 + - uid: 4977 components: - type: Transform pos: -48.5,40.5 parent: 2 - - uid: 5025 + - uid: 4978 components: - type: Transform pos: -48.5,41.5 parent: 2 - - uid: 5026 + - uid: 4979 components: - type: Transform pos: -47.5,37.5 parent: 2 - - uid: 5027 + - uid: 4980 components: - type: Transform pos: -47.5,42.5 parent: 2 - - uid: 5028 + - uid: 4981 components: - type: Transform pos: -49.5,41.5 parent: 2 - - uid: 5029 + - uid: 4982 components: - type: Transform pos: -46.5,41.5 parent: 2 - - uid: 5030 + - uid: 4983 components: - type: Transform pos: -47.5,41.5 parent: 2 - - uid: 5031 + - uid: 4984 components: - type: Transform pos: -47.5,37.5 parent: 2 - - uid: 5032 + - uid: 4985 components: - type: Transform pos: -46.5,37.5 parent: 2 - - uid: 5033 + - uid: 4986 components: - type: Transform pos: -60.5,43.5 parent: 2 - - uid: 5034 + - uid: 4987 components: - type: Transform pos: -60.5,42.5 parent: 2 - - uid: 5035 + - uid: 4988 components: - type: Transform pos: -60.5,41.5 parent: 2 - - uid: 5036 + - uid: 4989 components: - type: Transform pos: -59.5,41.5 parent: 2 - - uid: 5037 + - uid: 4990 components: - type: Transform pos: -58.5,41.5 parent: 2 - - uid: 5038 + - uid: 4991 components: - type: Transform pos: -57.5,41.5 parent: 2 - - uid: 5039 + - uid: 4992 components: - type: Transform pos: -56.5,41.5 parent: 2 - - uid: 5040 + - uid: 4993 components: - type: Transform pos: -55.5,41.5 parent: 2 - - uid: 5041 + - uid: 4994 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 5042 + - uid: 4995 components: - type: Transform pos: -53.5,41.5 parent: 2 - - uid: 5043 + - uid: 4996 components: - type: Transform pos: -52.5,41.5 parent: 2 - - uid: 5044 + - uid: 4997 components: - type: Transform pos: -51.5,41.5 parent: 2 - - uid: 5045 + - uid: 4998 components: - type: Transform pos: -53.5,42.5 parent: 2 - - uid: 5046 + - uid: 4999 components: - type: Transform pos: -55.5,42.5 parent: 2 - - uid: 5047 + - uid: 5000 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 5048 + - uid: 5001 components: - type: Transform pos: -61.5,40.5 parent: 2 - - uid: 5049 + - uid: 5002 components: - type: Transform pos: -61.5,41.5 parent: 2 - - uid: 5050 + - uid: 5003 components: - type: Transform pos: -59.5,40.5 parent: 2 - - uid: 5051 + - uid: 5004 components: - type: Transform pos: -62.5,52.5 parent: 2 - - uid: 5052 + - uid: 5005 components: - type: Transform pos: -62.5,51.5 parent: 2 - - uid: 5053 + - uid: 5006 components: - type: Transform pos: -62.5,50.5 parent: 2 - - uid: 5054 + - uid: 5007 components: - type: Transform pos: -62.5,49.5 parent: 2 - - uid: 5055 + - uid: 5008 components: - type: Transform pos: -62.5,48.5 parent: 2 - - uid: 5056 + - uid: 5009 components: - type: Transform pos: -62.5,47.5 parent: 2 - - uid: 5057 + - uid: 5010 components: - type: Transform pos: -62.5,46.5 parent: 2 - - uid: 5058 + - uid: 5011 components: - type: Transform pos: -62.5,45.5 parent: 2 - - uid: 5059 + - uid: 5012 components: - type: Transform pos: -62.5,44.5 parent: 2 - - uid: 5060 + - uid: 5013 components: - type: Transform pos: -62.5,43.5 parent: 2 - - uid: 5061 + - uid: 5014 components: - type: Transform pos: -62.5,42.5 parent: 2 - - uid: 5062 + - uid: 5015 components: - type: Transform pos: -62.5,41.5 parent: 2 - - uid: 5063 + - uid: 5016 components: - type: Transform pos: -61.5,48.5 parent: 2 - - uid: 5064 + - uid: 5017 components: - type: Transform pos: -61.5,50.5 parent: 2 - - uid: 5065 + - uid: 5018 components: - type: Transform pos: -63.5,51.5 parent: 2 - - uid: 5066 + - uid: 5019 components: - type: Transform pos: -64.5,51.5 parent: 2 - - uid: 5067 + - uid: 5020 components: - type: Transform pos: -65.5,51.5 parent: 2 - - uid: 5068 + - uid: 5021 components: - type: Transform pos: -66.5,51.5 parent: 2 - - uid: 5069 + - uid: 5022 components: - type: Transform pos: -63.5,47.5 parent: 2 - - uid: 5070 + - uid: 5023 components: - type: Transform pos: -64.5,47.5 parent: 2 - - uid: 5071 + - uid: 5024 components: - type: Transform pos: -65.5,47.5 parent: 2 - - uid: 5072 + - uid: 5025 components: - type: Transform pos: -66.5,47.5 parent: 2 - - uid: 5073 + - uid: 5026 components: - type: Transform pos: -63.5,43.5 parent: 2 - - uid: 5074 + - uid: 5027 components: - type: Transform pos: -64.5,43.5 parent: 2 - - uid: 5075 + - uid: 5028 components: - type: Transform pos: -65.5,43.5 parent: 2 - - uid: 5076 + - uid: 5029 components: - type: Transform pos: -66.5,43.5 parent: 2 - - uid: 5077 + - uid: 5030 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 5078 + - uid: 5031 components: - type: Transform pos: -56.5,38.5 parent: 2 - - uid: 5079 + - uid: 5032 components: - type: Transform pos: -55.5,38.5 parent: 2 - - uid: 5080 + - uid: 5033 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 5081 + - uid: 5034 components: - type: Transform pos: -54.5,37.5 parent: 2 - - uid: 5082 + - uid: 5035 components: - type: Transform pos: -54.5,36.5 parent: 2 - - uid: 5083 + - uid: 5036 components: - type: Transform pos: -54.5,35.5 parent: 2 - - uid: 5084 + - uid: 5037 components: - type: Transform pos: -54.5,34.5 parent: 2 - - uid: 5085 + - uid: 5038 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 5086 + - uid: 5039 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 5087 + - uid: 5040 components: - type: Transform pos: -53.5,35.5 parent: 2 - - uid: 5088 + - uid: 5041 components: - type: Transform pos: -52.5,35.5 parent: 2 - - uid: 5089 + - uid: 5042 components: - type: Transform pos: -55.5,35.5 parent: 2 - - uid: 5090 + - uid: 5043 components: - type: Transform pos: -56.5,35.5 parent: 2 - - uid: 5091 + - uid: 5044 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 5092 + - uid: 5045 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 5093 + - uid: 5046 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 5094 + - uid: 5047 components: - type: Transform pos: -50.5,30.5 parent: 2 - - uid: 5095 + - uid: 5048 components: - type: Transform pos: -49.5,30.5 parent: 2 - - uid: 5096 + - uid: 5049 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 5097 + - uid: 5050 components: - type: Transform pos: -47.5,30.5 parent: 2 - - uid: 5098 + - uid: 5051 components: - type: Transform pos: -46.5,30.5 parent: 2 - - uid: 5099 + - uid: 5052 components: - type: Transform pos: -48.5,34.5 parent: 2 - - uid: 5100 + - uid: 5053 components: - type: Transform pos: -48.5,33.5 parent: 2 - - uid: 5101 + - uid: 5054 components: - type: Transform pos: -48.5,32.5 parent: 2 - - uid: 5102 + - uid: 5055 components: - type: Transform pos: -48.5,31.5 parent: 2 - - uid: 5103 + - uid: 5056 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 5104 + - uid: 5057 components: - type: Transform pos: -48.5,29.5 parent: 2 - - uid: 5105 + - uid: 5058 components: - type: Transform pos: -48.5,28.5 parent: 2 - - uid: 5106 + - uid: 5059 components: - type: Transform pos: -48.5,27.5 parent: 2 - - uid: 5107 + - uid: 5060 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 5108 + - uid: 5061 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 5109 + - uid: 5062 components: - type: Transform pos: -55.5,30.5 parent: 2 - - uid: 5110 + - uid: 5063 components: - type: Transform pos: -56.5,30.5 parent: 2 - - uid: 5111 + - uid: 5064 components: - type: Transform pos: -57.5,30.5 parent: 2 - - uid: 5112 + - uid: 5065 components: - type: Transform pos: -58.5,30.5 parent: 2 - - uid: 5113 + - uid: 5066 components: - type: Transform pos: -59.5,30.5 parent: 2 - - uid: 5114 + - uid: 5067 components: - type: Transform pos: -59.5,31.5 parent: 2 - - uid: 5115 + - uid: 5068 components: - type: Transform pos: -59.5,32.5 parent: 2 - - uid: 5116 + - uid: 5069 components: - type: Transform pos: -59.5,33.5 parent: 2 - - uid: 5117 + - uid: 5070 components: - type: Transform pos: -59.5,34.5 parent: 2 - - uid: 5118 + - uid: 5071 components: - type: Transform pos: -59.5,35.5 parent: 2 - - uid: 5119 + - uid: 5072 components: - type: Transform pos: -59.5,36.5 parent: 2 - - uid: 5120 + - uid: 5073 components: - type: Transform pos: -59.5,37.5 parent: 2 - - uid: 5121 + - uid: 5074 components: - type: Transform pos: -59.5,38.5 parent: 2 - - uid: 5122 + - uid: 5075 components: - type: Transform pos: -60.5,38.5 parent: 2 - - uid: 5123 + - uid: 5076 components: - type: Transform pos: -61.5,38.5 parent: 2 - - uid: 5124 + - uid: 5077 components: - type: Transform pos: -65.5,35.5 parent: 2 - - uid: 5125 + - uid: 5078 components: - type: Transform pos: -64.5,35.5 parent: 2 - - uid: 5126 + - uid: 5079 components: - type: Transform pos: -63.5,35.5 parent: 2 - - uid: 5127 + - uid: 5080 components: - type: Transform pos: -62.5,35.5 parent: 2 - - uid: 5128 + - uid: 5081 components: - type: Transform pos: -61.5,35.5 parent: 2 - - uid: 5129 + - uid: 5082 components: - type: Transform pos: -60.5,35.5 parent: 2 - - uid: 5130 + - uid: 5083 components: - type: Transform pos: -65.5,31.5 parent: 2 - - uid: 5131 + - uid: 5084 components: - type: Transform pos: -64.5,31.5 parent: 2 - - uid: 5132 + - uid: 5085 components: - type: Transform pos: -63.5,31.5 parent: 2 - - uid: 5133 + - uid: 5086 components: - type: Transform pos: -62.5,31.5 parent: 2 - - uid: 5134 + - uid: 5087 components: - type: Transform pos: -61.5,31.5 parent: 2 - - uid: 5135 + - uid: 5088 components: - type: Transform pos: -60.5,31.5 parent: 2 - - uid: 5136 + - uid: 5089 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 5137 + - uid: 5090 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 5138 + - uid: 5091 components: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 5139 + - uid: 5092 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 5140 + - uid: 5093 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 5141 + - uid: 5094 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 5142 + - uid: 5095 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 5143 + - uid: 5096 components: - type: Transform pos: -56.5,25.5 parent: 2 - - uid: 5144 + - uid: 5097 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 5145 + - uid: 5098 components: - type: Transform pos: -56.5,23.5 parent: 2 - - uid: 5146 + - uid: 5099 components: - type: Transform pos: -65.5,26.5 parent: 2 - - uid: 5147 + - uid: 5100 components: - type: Transform pos: -64.5,26.5 parent: 2 - - uid: 5148 + - uid: 5101 components: - type: Transform pos: -63.5,26.5 parent: 2 - - uid: 5149 + - uid: 5102 components: - type: Transform pos: -62.5,26.5 parent: 2 - - uid: 5150 + - uid: 5103 components: - type: Transform pos: -61.5,26.5 parent: 2 - - uid: 5151 + - uid: 5104 components: - type: Transform pos: -60.5,26.5 parent: 2 - - uid: 5152 + - uid: 5105 components: - type: Transform pos: -59.5,26.5 parent: 2 - - uid: 5153 + - uid: 5106 components: - type: Transform pos: -58.5,26.5 parent: 2 - - uid: 5154 + - uid: 5107 components: - type: Transform pos: -57.5,26.5 parent: 2 - - uid: 5155 + - uid: 5108 components: - type: Transform pos: -51.5,26.5 parent: 2 - - uid: 5156 + - uid: 5109 components: - type: Transform pos: -51.5,25.5 parent: 2 - - uid: 5157 + - uid: 5110 components: - type: Transform pos: -51.5,24.5 parent: 2 - - uid: 5158 + - uid: 5111 components: - type: Transform pos: -52.5,24.5 parent: 2 - - uid: 5159 + - uid: 5112 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 5160 + - uid: 5113 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 5161 + - uid: 5114 components: - type: Transform pos: -54.5,24.5 parent: 2 - - uid: 5162 + - uid: 5115 components: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 5163 + - uid: 5116 components: - type: Transform pos: -53.5,22.5 parent: 2 - - uid: 5164 + - uid: 5117 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 5165 + - uid: 5118 components: - type: Transform pos: -53.5,20.5 parent: 2 - - uid: 5166 + - uid: 5119 components: - type: Transform pos: -52.5,21.5 parent: 2 - - uid: 5167 + - uid: 5120 components: - type: Transform pos: -51.5,21.5 parent: 2 - - uid: 5168 + - uid: 5121 components: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 5169 + - uid: 5122 components: - type: Transform pos: -49.5,21.5 parent: 2 - - uid: 5170 + - uid: 5123 components: - type: Transform pos: -48.5,21.5 parent: 2 - - uid: 5171 + - uid: 5124 components: - type: Transform pos: -47.5,21.5 parent: 2 - - uid: 5172 + - uid: 5125 components: - type: Transform pos: -46.5,21.5 parent: 2 - - uid: 5173 + - uid: 5126 components: - type: Transform pos: -45.5,23.5 parent: 2 - - uid: 5174 + - uid: 5127 components: - type: Transform pos: -46.5,23.5 parent: 2 - - uid: 5175 + - uid: 5128 components: - type: Transform pos: -47.5,23.5 parent: 2 - - uid: 5176 + - uid: 5129 components: - type: Transform pos: -47.5,22.5 parent: 2 - - uid: 5177 + - uid: 5130 components: - type: Transform pos: -47.5,20.5 parent: 2 - - uid: 5178 + - uid: 5131 components: - type: Transform pos: -47.5,19.5 parent: 2 - - uid: 5179 + - uid: 5132 components: - type: Transform pos: -47.5,18.5 parent: 2 - - uid: 5180 + - uid: 5133 components: - type: Transform pos: -47.5,17.5 parent: 2 - - uid: 5181 + - uid: 5134 components: - type: Transform pos: -47.5,17.5 parent: 2 - - uid: 5182 + - uid: 5135 components: - type: Transform pos: -45.5,21.5 parent: 2 - - uid: 5183 + - uid: 5136 components: - type: Transform pos: -64.5,25.5 parent: 2 - - uid: 5184 + - uid: 5137 components: - type: Transform pos: -64.5,24.5 parent: 2 - - uid: 5185 + - uid: 5138 components: - type: Transform pos: -64.5,23.5 parent: 2 - - uid: 5186 + - uid: 5139 components: - type: Transform pos: -64.5,22.5 parent: 2 - - uid: 5187 + - uid: 5140 components: - type: Transform pos: -64.5,21.5 parent: 2 - - uid: 5188 + - uid: 5141 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 5189 + - uid: 5142 components: - type: Transform pos: -30.5,-74.5 parent: 2 - - uid: 5190 + - uid: 5143 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 5191 + - uid: 5144 components: - type: Transform pos: -28.5,-72.5 parent: 2 - - uid: 5192 + - uid: 5145 components: - type: Transform pos: -28.5,-73.5 parent: 2 - - uid: 5193 + - uid: 5146 components: - type: Transform pos: -28.5,-76.5 parent: 2 - - uid: 5194 + - uid: 5147 components: - type: Transform pos: -28.5,-77.5 parent: 2 - - uid: 5195 + - uid: 5148 components: - type: Transform pos: -28.5,-78.5 parent: 2 - - uid: 5196 + - uid: 5149 components: - type: Transform pos: -28.5,-79.5 parent: 2 - - uid: 5197 + - uid: 5150 components: - type: Transform pos: -29.5,-79.5 parent: 2 - - uid: 5198 + - uid: 5151 components: - type: Transform pos: -30.5,-79.5 parent: 2 - - uid: 5199 + - uid: 5152 components: - type: Transform pos: -31.5,-79.5 parent: 2 - - uid: 5200 + - uid: 5153 components: - type: Transform pos: -31.5,-74.5 parent: 2 - - uid: 5201 + - uid: 5154 components: - type: Transform pos: -32.5,-74.5 parent: 2 - - uid: 5202 + - uid: 5155 components: - type: Transform pos: -33.5,-74.5 parent: 2 - - uid: 5203 + - uid: 5156 components: - type: Transform pos: -34.5,-74.5 parent: 2 - - uid: 5204 + - uid: 5157 components: - type: Transform pos: -35.5,-74.5 parent: 2 - - uid: 5205 + - uid: 5158 components: - type: Transform pos: -36.5,-74.5 parent: 2 - - uid: 5206 + - uid: 5159 components: - type: Transform pos: -28.5,-75.5 parent: 2 - - uid: 5207 + - uid: 5160 components: - type: Transform pos: -28.5,-69.5 parent: 2 - - uid: 5208 + - uid: 5161 components: - type: Transform pos: -28.5,-70.5 parent: 2 - - uid: 5209 + - uid: 5162 components: - type: Transform pos: -29.5,-70.5 parent: 2 - - uid: 5210 + - uid: 5163 components: - type: Transform pos: -30.5,-70.5 parent: 2 - - uid: 5211 + - uid: 5164 components: - type: Transform pos: -31.5,-70.5 parent: 2 - - uid: 5212 + - uid: 5165 components: - type: Transform pos: -32.5,-70.5 parent: 2 - - uid: 5213 + - uid: 5166 components: - type: Transform pos: -33.5,-70.5 parent: 2 - - uid: 5214 + - uid: 5167 components: - type: Transform pos: -34.5,-70.5 parent: 2 - - uid: 5215 + - uid: 5168 components: - type: Transform pos: -35.5,-70.5 parent: 2 - - uid: 5216 + - uid: 5169 components: - type: Transform pos: -36.5,-70.5 parent: 2 - - uid: 5217 + - uid: 5170 components: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 5218 + - uid: 5171 components: - type: Transform pos: -38.5,-70.5 parent: 2 - - uid: 5219 + - uid: 5172 components: - type: Transform pos: -38.5,-71.5 parent: 2 - - uid: 5220 + - uid: 5173 components: - type: Transform pos: -38.5,-72.5 parent: 2 - - uid: 5221 + - uid: 5174 components: - type: Transform pos: -38.5,-73.5 parent: 2 - - uid: 5222 + - uid: 5175 components: - type: Transform pos: -38.5,-74.5 parent: 2 - - uid: 5223 + - uid: 5176 components: - type: Transform pos: -38.5,-75.5 parent: 2 - - uid: 5224 + - uid: 5177 components: - type: Transform pos: -39.5,-74.5 parent: 2 - - uid: 5225 + - uid: 5178 components: - type: Transform pos: -40.5,-74.5 parent: 2 - - uid: 5226 + - uid: 5179 components: - type: Transform pos: -41.5,-74.5 parent: 2 - - uid: 5227 + - uid: 5180 components: - type: Transform pos: -42.5,-74.5 parent: 2 - - uid: 5228 + - uid: 5181 components: - type: Transform pos: -38.5,-76.5 parent: 2 - - uid: 5229 + - uid: 5182 components: - type: Transform pos: -27.5,-70.5 parent: 2 - - uid: 5230 + - uid: 5183 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 5231 + - uid: 5184 components: - type: Transform pos: -26.5,-71.5 parent: 2 - - uid: 5232 + - uid: 5185 components: - type: Transform pos: -25.5,-71.5 parent: 2 - - uid: 5233 + - uid: 5186 components: - type: Transform pos: -25.5,-72.5 parent: 2 - - uid: 5234 + - uid: 5187 components: - type: Transform pos: -25.5,-73.5 parent: 2 - - uid: 5235 + - uid: 5188 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 5236 + - uid: 5189 components: - type: Transform pos: -25.5,-75.5 parent: 2 - - uid: 5237 + - uid: 5190 components: - type: Transform pos: -25.5,-76.5 parent: 2 - - uid: 5238 + - uid: 5191 components: - type: Transform pos: -25.5,-77.5 parent: 2 - - uid: 5239 + - uid: 5192 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 5240 + - uid: 5193 components: - type: Transform pos: -26.5,-68.5 parent: 2 - - uid: 5241 + - uid: 5194 components: - type: Transform pos: -26.5,-67.5 parent: 2 - - uid: 5242 + - uid: 5195 components: - type: Transform pos: -26.5,-66.5 parent: 2 - - uid: 5243 + - uid: 5196 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 5244 + - uid: 5197 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 5245 + - uid: 5198 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 5246 + - uid: 5199 components: - type: Transform pos: -18.5,-60.5 parent: 2 - - uid: 5247 + - uid: 5200 components: - type: Transform pos: -18.5,-61.5 parent: 2 - - uid: 5248 + - uid: 5201 components: - type: Transform pos: -17.5,-61.5 parent: 2 - - uid: 5249 + - uid: 5202 components: - type: Transform pos: -16.5,-61.5 parent: 2 - - uid: 5250 + - uid: 5203 components: - type: Transform pos: -15.5,-61.5 parent: 2 - - uid: 5251 + - uid: 5204 components: - type: Transform pos: -14.5,-61.5 parent: 2 - - uid: 5252 + - uid: 5205 components: - type: Transform pos: -13.5,-61.5 parent: 2 - - uid: 5253 + - uid: 5206 components: - type: Transform pos: -12.5,-61.5 parent: 2 - - uid: 5254 + - uid: 5207 components: - type: Transform pos: -11.5,-61.5 parent: 2 - - uid: 5255 + - uid: 5208 components: - type: Transform pos: -10.5,-61.5 parent: 2 - - uid: 5256 + - uid: 5209 components: - type: Transform pos: -9.5,-61.5 parent: 2 - - uid: 5257 + - uid: 5210 components: - type: Transform pos: -9.5,-60.5 parent: 2 - - uid: 5258 + - uid: 5211 components: - type: Transform pos: -9.5,-59.5 parent: 2 - - uid: 5259 + - uid: 5212 components: - type: Transform pos: -9.5,-58.5 parent: 2 - - uid: 5260 + - uid: 5213 components: - type: Transform pos: -9.5,-57.5 parent: 2 - - uid: 5261 + - uid: 5214 components: - type: Transform pos: -9.5,-56.5 parent: 2 - - uid: 5262 + - uid: 5215 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 5263 + - uid: 5216 components: - type: Transform pos: -8.5,-55.5 parent: 2 - - uid: 5264 + - uid: 5217 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 5265 + - uid: 5218 components: - type: Transform pos: -6.5,-55.5 parent: 2 - - uid: 5266 + - uid: 5219 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 5267 + - uid: 5220 components: - type: Transform pos: -4.5,-55.5 parent: 2 - - uid: 5268 + - uid: 5221 components: - type: Transform pos: -5.5,-54.5 parent: 2 - - uid: 5269 + - uid: 5222 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 5270 + - uid: 5223 components: - type: Transform pos: -19.5,-61.5 parent: 2 - - uid: 5271 + - uid: 5224 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 5272 + - uid: 5225 components: - type: Transform pos: -22.5,-61.5 parent: 2 - - uid: 5273 + - uid: 5226 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 5274 + - uid: 5227 components: - type: Transform pos: -24.5,-61.5 parent: 2 - - uid: 5275 + - uid: 5228 components: - type: Transform pos: -25.5,-61.5 parent: 2 - - uid: 5276 + - uid: 5229 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 5277 + - uid: 5230 components: - type: Transform pos: -27.5,-61.5 parent: 2 - - uid: 5278 + - uid: 5231 components: - type: Transform pos: -27.5,-60.5 parent: 2 - - uid: 5279 + - uid: 5232 components: - type: Transform pos: -27.5,-59.5 parent: 2 - - uid: 5280 + - uid: 5233 components: - type: Transform pos: -27.5,-58.5 parent: 2 - - uid: 5281 + - uid: 5234 components: - type: Transform pos: -27.5,-57.5 parent: 2 - - uid: 5282 + - uid: 5235 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 5283 + - uid: 5236 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 5284 + - uid: 5237 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 5285 + - uid: 5238 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 5286 + - uid: 5239 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 5287 + - uid: 5240 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 5288 + - uid: 5241 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - uid: 5289 + - uid: 5242 components: - type: Transform pos: -35.5,-57.5 parent: 2 - - uid: 5290 + - uid: 5243 components: - type: Transform pos: -36.5,-57.5 parent: 2 - - uid: 5291 + - uid: 5244 components: - type: Transform pos: -36.5,-57.5 parent: 2 - - uid: 5292 + - uid: 5245 components: - type: Transform pos: -37.5,-57.5 parent: 2 - - uid: 5293 + - uid: 5246 components: - type: Transform pos: -38.5,-57.5 parent: 2 - - uid: 5294 + - uid: 5247 components: - type: Transform pos: -39.5,-57.5 parent: 2 - - uid: 5295 + - uid: 5248 components: - type: Transform pos: -40.5,-57.5 parent: 2 - - uid: 5296 + - uid: 5249 components: - type: Transform pos: -41.5,-57.5 parent: 2 - - uid: 5297 + - uid: 5250 components: - type: Transform pos: -33.5,-56.5 parent: 2 - - uid: 5298 + - uid: 5251 components: - type: Transform pos: -33.5,-55.5 parent: 2 - - uid: 5299 + - uid: 5252 components: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 5300 + - uid: 5253 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 5301 + - uid: 5254 components: - type: Transform pos: -36.5,-51.5 parent: 2 - - uid: 5302 + - uid: 5255 components: - type: Transform pos: -36.5,-52.5 parent: 2 - - uid: 5303 + - uid: 5256 components: - type: Transform pos: -37.5,-52.5 parent: 2 - - uid: 5304 + - uid: 5257 components: - type: Transform pos: -38.5,-52.5 parent: 2 - - uid: 5305 + - uid: 5258 components: - type: Transform pos: -39.5,-52.5 parent: 2 - - uid: 5306 + - uid: 5259 components: - type: Transform pos: -40.5,-52.5 parent: 2 - - uid: 5307 + - uid: 5260 components: - type: Transform pos: -40.5,-53.5 parent: 2 - - uid: 5308 + - uid: 5261 components: - type: Transform pos: -40.5,-54.5 parent: 2 - - uid: 5309 + - uid: 5262 components: - type: Transform pos: -40.5,-51.5 parent: 2 - - uid: 5310 + - uid: 5263 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 5311 + - uid: 5264 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 5312 + - uid: 5265 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 5313 + - uid: 5266 components: - type: Transform pos: -28.5,-51.5 parent: 2 - - uid: 5314 + - uid: 5267 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 5315 + - uid: 5268 components: - type: Transform pos: -29.5,-52.5 parent: 2 - - uid: 5316 + - uid: 5269 components: - type: Transform pos: -30.5,-52.5 parent: 2 - - uid: 5317 + - uid: 5270 components: - type: Transform pos: -27.5,-52.5 parent: 2 - - uid: 5318 + - uid: 5271 components: - type: Transform pos: -26.5,-52.5 parent: 2 - - uid: 5319 + - uid: 5272 components: - type: Transform pos: -25.5,-52.5 parent: 2 - - uid: 5320 + - uid: 5273 components: - type: Transform pos: -24.5,-52.5 parent: 2 - - uid: 5321 + - uid: 5274 components: - type: Transform pos: -23.5,-52.5 parent: 2 - - uid: 5322 + - uid: 5275 components: - type: Transform pos: -22.5,-52.5 parent: 2 - - uid: 5323 + - uid: 5276 components: - type: Transform pos: -23.5,-51.5 parent: 2 - - uid: 5324 + - uid: 5277 components: - type: Transform pos: -23.5,-50.5 parent: 2 - - uid: 5325 + - uid: 5278 components: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 5326 + - uid: 5279 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 5327 + - uid: 5280 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 5328 + - uid: 5281 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 5329 + - uid: 5282 components: - type: Transform pos: -5.5,-45.5 parent: 2 - - uid: 5330 + - uid: 5283 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 5331 + - uid: 5284 components: - type: Transform pos: -5.5,-47.5 parent: 2 - - uid: 5332 + - uid: 5285 components: - type: Transform pos: -5.5,-48.5 parent: 2 - - uid: 5333 + - uid: 5286 components: - type: Transform pos: -5.5,-49.5 parent: 2 - - uid: 5334 + - uid: 5287 components: - type: Transform pos: -5.5,-50.5 parent: 2 - - uid: 5335 + - uid: 5288 components: - type: Transform pos: -5.5,-51.5 parent: 2 - - uid: 5336 + - uid: 5289 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 5337 + - uid: 5290 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 5338 + - uid: 5291 components: - type: Transform pos: -7.5,-49.5 parent: 2 - - uid: 5339 + - uid: 5292 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - uid: 5340 + - uid: 5293 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 5341 + - uid: 5294 components: - type: Transform pos: -10.5,-49.5 parent: 2 - - uid: 5342 + - uid: 5295 components: - type: Transform pos: -4.5,-49.5 parent: 2 - - uid: 5343 + - uid: 5296 components: - type: Transform pos: -3.5,-49.5 parent: 2 - - uid: 5344 + - uid: 5297 components: - type: Transform pos: -10.5,-36.5 parent: 2 - - uid: 5345 + - uid: 5298 components: - type: Transform pos: -10.5,-37.5 parent: 2 - - uid: 5346 + - uid: 5299 components: - type: Transform pos: -10.5,-38.5 parent: 2 - - uid: 5347 + - uid: 5300 components: - type: Transform pos: -10.5,-39.5 parent: 2 - - uid: 5348 + - uid: 5301 components: - type: Transform pos: -10.5,-40.5 parent: 2 - - uid: 5349 + - uid: 5302 components: - type: Transform pos: -9.5,-40.5 parent: 2 - - uid: 5350 + - uid: 5303 components: - type: Transform pos: -8.5,-40.5 parent: 2 - - uid: 5351 + - uid: 5304 components: - type: Transform pos: -7.5,-40.5 parent: 2 - - uid: 5352 + - uid: 5305 components: - type: Transform pos: -6.5,-40.5 parent: 2 - - uid: 5353 + - uid: 5306 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 5354 + - uid: 5307 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5355 + - uid: 5308 components: - type: Transform pos: -3.5,-40.5 parent: 2 - - uid: 5356 + - uid: 5309 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 5357 + - uid: 5310 components: - type: Transform pos: -6.5,-38.5 parent: 2 - - uid: 5358 + - uid: 5311 components: - type: Transform pos: -6.5,-37.5 parent: 2 - - uid: 5359 + - uid: 5312 components: - type: Transform pos: -6.5,-41.5 parent: 2 - - uid: 5360 + - uid: 5313 components: - type: Transform pos: -6.5,-42.5 parent: 2 - - uid: 5361 + - uid: 5314 components: - type: Transform pos: -6.5,-43.5 parent: 2 - - uid: 5362 + - uid: 5315 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 5363 + - uid: 5316 components: - type: Transform pos: -9.5,-43.5 parent: 2 - - uid: 5364 + - uid: 5317 components: - type: Transform pos: -8.5,-43.5 parent: 2 - - uid: 5365 + - uid: 5318 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 5366 + - uid: 5319 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 5367 + - uid: 5320 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 5368 + - uid: 5321 components: - type: Transform pos: -8.5,-29.5 parent: 2 - - uid: 5369 + - uid: 5322 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 5370 + - uid: 5323 components: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 5371 + - uid: 5324 components: - type: Transform pos: -6.5,-30.5 parent: 2 - - uid: 5372 + - uid: 5325 components: - type: Transform pos: -6.5,-31.5 parent: 2 - - uid: 5373 + - uid: 5326 components: - type: Transform pos: -6.5,-32.5 parent: 2 - - uid: 5374 + - uid: 5327 components: - type: Transform pos: -6.5,-33.5 parent: 2 - - uid: 5375 + - uid: 5328 components: - type: Transform pos: -6.5,-34.5 parent: 2 - - uid: 5376 + - uid: 5329 components: - type: Transform pos: -6.5,-35.5 parent: 2 - - uid: 5377 + - uid: 5330 components: - type: Transform pos: -9.5,-34.5 parent: 2 - - uid: 5378 + - uid: 5331 components: - type: Transform pos: -8.5,-34.5 parent: 2 - - uid: 5379 + - uid: 5332 components: - type: Transform pos: -7.5,-34.5 parent: 2 - - uid: 5380 + - uid: 5333 components: - type: Transform pos: -6.5,-34.5 parent: 2 - - uid: 5381 + - uid: 5334 components: - type: Transform pos: -5.5,-34.5 parent: 2 - - uid: 5382 + - uid: 5335 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5383 + - uid: 5336 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 5384 + - uid: 5337 components: - type: Transform pos: -4.5,-30.5 parent: 2 - - uid: 5385 + - uid: 5338 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 5386 + - uid: 5339 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 5387 + - uid: 5340 components: - type: Transform pos: -25.5,-33.5 parent: 2 - - uid: 5388 + - uid: 5341 components: - type: Transform pos: -25.5,-34.5 parent: 2 - - uid: 5389 + - uid: 5342 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 5390 + - uid: 5343 components: - type: Transform pos: -27.5,-34.5 parent: 2 - - uid: 5391 + - uid: 5344 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 5392 + - uid: 5345 components: - type: Transform pos: -29.5,-34.5 parent: 2 - - uid: 5393 + - uid: 5346 components: - type: Transform pos: -30.5,-34.5 parent: 2 - - uid: 5394 + - uid: 5347 components: - type: Transform pos: -24.5,-34.5 parent: 2 - - uid: 5395 + - uid: 5348 components: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 5396 + - uid: 5349 components: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 5397 + - uid: 5350 components: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 5398 + - uid: 5351 components: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 5399 + - uid: 5352 components: - type: Transform pos: -19.5,-34.5 parent: 2 - - uid: 5400 + - uid: 5353 components: - type: Transform pos: -18.5,-34.5 parent: 2 - - uid: 5401 + - uid: 5354 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 5402 + - uid: 5355 components: - type: Transform pos: -16.5,-34.5 parent: 2 - - uid: 5403 + - uid: 5356 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 5404 + - uid: 5357 components: - type: Transform pos: -14.5,-34.5 parent: 2 - - uid: 5405 + - uid: 5358 components: - type: Transform pos: -13.5,-34.5 parent: 2 - - uid: 5406 + - uid: 5359 components: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 5407 + - uid: 5360 components: - type: Transform pos: -11.5,-34.5 parent: 2 - - uid: 5408 + - uid: 5361 components: - type: Transform pos: -14.5,-33.5 parent: 2 - - uid: 5409 + - uid: 5362 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - uid: 5410 + - uid: 5363 components: - type: Transform pos: -14.5,-31.5 parent: 2 - - uid: 5411 + - uid: 5364 components: - type: Transform pos: -13.5,-31.5 parent: 2 - - uid: 5412 + - uid: 5365 components: - type: Transform pos: -13.5,-30.5 parent: 2 - - uid: 5413 + - uid: 5366 components: - type: Transform pos: -13.5,-29.5 parent: 2 - - uid: 5414 + - uid: 5367 components: - type: Transform pos: -12.5,-31.5 parent: 2 - - uid: 5415 + - uid: 5368 components: - type: Transform pos: -12.5,-32.5 parent: 2 - - uid: 5416 + - uid: 5369 components: - type: Transform pos: -12.5,-33.5 parent: 2 - - uid: 5417 + - uid: 5370 components: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 5418 + - uid: 5371 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 5419 + - uid: 5372 components: - type: Transform pos: -22.5,-32.5 parent: 2 - - uid: 5420 + - uid: 5373 components: - type: Transform pos: -22.5,-31.5 parent: 2 - - uid: 5421 + - uid: 5374 components: - type: Transform pos: -22.5,-30.5 parent: 2 - - uid: 5422 + - uid: 5375 components: - type: Transform pos: -22.5,-29.5 parent: 2 - - uid: 5423 + - uid: 5376 components: - type: Transform pos: -22.5,-28.5 parent: 2 - - uid: 5424 + - uid: 5377 components: - type: Transform pos: -22.5,-27.5 parent: 2 - - uid: 5425 + - uid: 5378 components: - type: Transform pos: -22.5,-26.5 parent: 2 - - uid: 5426 + - uid: 5379 components: - type: Transform pos: -22.5,-25.5 parent: 2 - - uid: 5427 + - uid: 5380 components: - type: Transform pos: -22.5,-24.5 parent: 2 - - uid: 5428 + - uid: 5381 components: - type: Transform pos: -22.5,-23.5 parent: 2 - - uid: 5429 + - uid: 5382 components: - type: Transform pos: -21.5,-25.5 parent: 2 - - uid: 5430 + - uid: 5383 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 5431 + - uid: 5384 components: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 5432 + - uid: 5385 components: - type: Transform pos: -18.5,-23.5 parent: 2 - - uid: 5433 + - uid: 5386 components: - type: Transform pos: -18.5,-24.5 parent: 2 - - uid: 5434 + - uid: 5387 components: - type: Transform pos: -18.5,-25.5 parent: 2 - - uid: 5435 + - uid: 5388 components: - type: Transform pos: -18.5,-26.5 parent: 2 - - uid: 5436 + - uid: 5389 components: - type: Transform pos: -18.5,-27.5 parent: 2 - - uid: 5437 + - uid: 5390 components: - type: Transform pos: -19.5,-25.5 parent: 2 - - uid: 5438 + - uid: 5391 components: - type: Transform pos: -13.5,-35.5 parent: 2 - - uid: 5439 + - uid: 5392 components: - type: Transform pos: -13.5,-36.5 parent: 2 - - uid: 5440 + - uid: 5393 components: - type: Transform pos: -13.5,-37.5 parent: 2 - - uid: 5441 + - uid: 5394 components: - type: Transform pos: -13.5,-38.5 parent: 2 - - uid: 5442 + - uid: 5395 components: - type: Transform pos: -13.5,-39.5 parent: 2 - - uid: 5443 + - uid: 5396 components: - type: Transform pos: -13.5,-40.5 parent: 2 - - uid: 5444 + - uid: 5397 components: - type: Transform pos: -13.5,-41.5 parent: 2 - - uid: 5445 + - uid: 5398 components: - type: Transform pos: -13.5,-42.5 parent: 2 - - uid: 5446 + - uid: 5399 components: - type: Transform pos: -13.5,-43.5 parent: 2 - - uid: 5447 + - uid: 5400 components: - type: Transform pos: -13.5,-44.5 parent: 2 - - uid: 5448 + - uid: 5401 components: - type: Transform pos: -13.5,-45.5 parent: 2 - - uid: 5449 + - uid: 5402 components: - type: Transform pos: -13.5,-46.5 parent: 2 - - uid: 5450 + - uid: 5403 components: - type: Transform pos: -13.5,-47.5 parent: 2 - - uid: 5451 + - uid: 5404 components: - type: Transform pos: -13.5,-48.5 parent: 2 - - uid: 5452 + - uid: 5405 components: - type: Transform pos: -13.5,-49.5 parent: 2 - - uid: 5453 + - uid: 5406 components: - type: Transform pos: -13.5,-50.5 parent: 2 - - uid: 5454 + - uid: 5407 components: - type: Transform pos: -13.5,-51.5 parent: 2 - - uid: 5455 + - uid: 5408 components: - type: Transform pos: -13.5,-52.5 parent: 2 - - uid: 5456 + - uid: 5409 components: - type: Transform pos: -13.5,-53.5 parent: 2 - - uid: 5457 + - uid: 5410 components: - type: Transform pos: -14.5,-50.5 parent: 2 - - uid: 5458 + - uid: 5411 components: - type: Transform pos: -15.5,-50.5 parent: 2 - - uid: 5459 + - uid: 5412 components: - type: Transform pos: -15.5,-50.5 parent: 2 - - uid: 5460 + - uid: 5413 components: - type: Transform pos: -19.5,-54.5 parent: 2 - - uid: 5461 + - uid: 5414 components: - type: Transform pos: -19.5,-55.5 parent: 2 - - uid: 5462 + - uid: 5415 components: - type: Transform pos: -19.5,-56.5 parent: 2 - - uid: 5463 + - uid: 5416 components: - type: Transform pos: -19.5,-57.5 parent: 2 - - uid: 5464 + - uid: 5417 components: - type: Transform pos: -19.5,-58.5 parent: 2 - - uid: 5465 + - uid: 5418 components: - type: Transform pos: -20.5,-57.5 parent: 2 - - uid: 5466 + - uid: 5419 components: - type: Transform pos: -21.5,-57.5 parent: 2 - - uid: 5467 + - uid: 5420 components: - type: Transform pos: -22.5,-57.5 parent: 2 - - uid: 5468 + - uid: 5421 components: - type: Transform pos: -23.5,-57.5 parent: 2 - - uid: 5469 + - uid: 5422 components: - type: Transform pos: -18.5,-57.5 parent: 2 - - uid: 5470 + - uid: 5423 components: - type: Transform pos: -17.5,-57.5 parent: 2 - - uid: 5471 + - uid: 5424 components: - type: Transform pos: -16.5,-57.5 parent: 2 - - uid: 5472 + - uid: 5425 components: - type: Transform pos: -15.5,-57.5 parent: 2 - - uid: 5473 + - uid: 5426 components: - type: Transform pos: -14.5,-57.5 parent: 2 - - uid: 5474 + - uid: 5427 components: - type: Transform pos: -13.5,-57.5 parent: 2 - - uid: 5475 + - uid: 5428 components: - type: Transform pos: -12.5,-57.5 parent: 2 - - uid: 5476 + - uid: 5429 components: - type: Transform pos: -12.5,-58.5 parent: 2 - - uid: 5477 + - uid: 5430 components: - type: Transform pos: -15.5,-56.5 parent: 2 - - uid: 5478 + - uid: 5431 components: - type: Transform pos: -15.5,-55.5 parent: 2 - - uid: 5479 + - uid: 5432 components: - type: Transform pos: -15.5,-58.5 parent: 2 - - uid: 5480 + - uid: 5433 components: - type: Transform pos: -15.5,-59.5 parent: 2 - - uid: 5481 + - uid: 5434 components: - type: Transform pos: -3.5,-57.5 parent: 2 - - uid: 5482 + - uid: 5435 components: - type: Transform pos: -4.5,-57.5 parent: 2 - - uid: 5483 + - uid: 5436 components: - type: Transform pos: -5.5,-57.5 parent: 2 - - uid: 5484 + - uid: 5437 components: - type: Transform pos: -6.5,-57.5 parent: 2 - - uid: 5485 + - uid: 5438 components: - type: Transform pos: -6.5,-58.5 parent: 2 - - uid: 5486 + - uid: 5439 components: - type: Transform pos: -6.5,-59.5 parent: 2 - - uid: 5487 + - uid: 5440 components: - type: Transform pos: -6.5,-60.5 parent: 2 - - uid: 5488 + - uid: 5441 components: - type: Transform pos: -6.5,-61.5 parent: 2 - - uid: 5489 + - uid: 5442 components: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 5490 + - uid: 5443 components: - type: Transform pos: 6.5,-75.5 parent: 2 - - uid: 5491 + - uid: 5444 components: - type: Transform pos: 5.5,-75.5 parent: 2 - - uid: 5492 + - uid: 5445 components: - type: Transform pos: 5.5,-76.5 parent: 2 - - uid: 5493 + - uid: 5446 components: - type: Transform pos: 5.5,-77.5 parent: 2 - - uid: 5494 + - uid: 5447 components: - type: Transform pos: 5.5,-78.5 parent: 2 - - uid: 5495 + - uid: 5448 components: - type: Transform pos: 5.5,-79.5 parent: 2 - - uid: 5496 + - uid: 5449 components: - type: Transform pos: 5.5,-80.5 parent: 2 - - uid: 5497 + - uid: 5450 components: - type: Transform pos: 4.5,-81.5 parent: 2 - - uid: 5498 + - uid: 5451 components: - type: Transform pos: 4.5,-82.5 parent: 2 - - uid: 5499 + - uid: 5452 components: - type: Transform pos: 4.5,-83.5 parent: 2 - - uid: 5500 + - uid: 5453 components: - type: Transform pos: 4.5,-84.5 parent: 2 - - uid: 5501 + - uid: 5454 components: - type: Transform pos: 4.5,-85.5 parent: 2 - - uid: 5502 + - uid: 5455 components: - type: Transform pos: 4.5,-80.5 parent: 2 - - uid: 5503 + - uid: 5456 components: - type: Transform pos: 5.5,-74.5 parent: 2 - - uid: 5504 + - uid: 5457 components: - type: Transform pos: 5.5,-73.5 parent: 2 - - uid: 5505 + - uid: 5458 components: - type: Transform pos: 5.5,-72.5 parent: 2 - - uid: 5506 + - uid: 5459 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 5507 + - uid: 5460 components: - type: Transform pos: 5.5,-70.5 parent: 2 - - uid: 5508 + - uid: 5461 components: - type: Transform pos: 5.5,-69.5 parent: 2 - - uid: 5509 + - uid: 5462 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 5510 + - uid: 5463 components: - type: Transform pos: 5.5,-67.5 parent: 2 - - uid: 5511 + - uid: 5464 components: - type: Transform pos: 5.5,-66.5 parent: 2 - - uid: 5512 + - uid: 5465 components: - type: Transform pos: 5.5,-65.5 parent: 2 - - uid: 5513 + - uid: 5466 components: - type: Transform pos: 5.5,-64.5 parent: 2 - - uid: 5514 + - uid: 5467 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 5515 + - uid: 5468 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 5516 + - uid: 5469 components: - type: Transform pos: 5.5,-61.5 parent: 2 - - uid: 5517 + - uid: 5470 components: - type: Transform pos: 5.5,-60.5 parent: 2 - - uid: 5518 + - uid: 5471 components: - type: Transform pos: 5.5,-59.5 parent: 2 - - uid: 5519 + - uid: 5472 components: - type: Transform pos: 5.5,-58.5 parent: 2 - - uid: 5520 + - uid: 5473 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 5521 + - uid: 5474 components: - type: Transform pos: 7.5,-57.5 parent: 2 - - uid: 5522 + - uid: 5475 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 5523 + - uid: 5476 components: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 5524 + - uid: 5477 components: - type: Transform pos: 3.5,-59.5 parent: 2 - - uid: 5525 + - uid: 5478 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 5526 + - uid: 5479 components: - type: Transform pos: 7.5,-59.5 parent: 2 - - uid: 5527 + - uid: 5480 components: - type: Transform pos: 8.5,-59.5 parent: 2 - - uid: 5528 + - uid: 5481 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 5529 + - uid: 5482 components: - type: Transform pos: 24.5,-50.5 parent: 2 - - uid: 5530 + - uid: 5483 components: - type: Transform pos: 24.5,-51.5 parent: 2 - - uid: 5531 + - uid: 5484 components: - type: Transform pos: 23.5,-51.5 parent: 2 - - uid: 5532 + - uid: 5485 components: - type: Transform pos: 22.5,-51.5 parent: 2 - - uid: 5533 + - uid: 5486 components: - type: Transform pos: 21.5,-51.5 parent: 2 - - uid: 5534 + - uid: 5487 components: - type: Transform pos: 20.5,-51.5 parent: 2 - - uid: 5535 + - uid: 5488 components: - type: Transform pos: 22.5,-50.5 parent: 2 - - uid: 5536 + - uid: 5489 components: - type: Transform pos: 22.5,-49.5 parent: 2 - - uid: 5537 + - uid: 5490 components: - type: Transform pos: 22.5,-48.5 parent: 2 - - uid: 5538 + - uid: 5491 components: - type: Transform pos: 22.5,-47.5 parent: 2 - - uid: 5539 + - uid: 5492 components: - type: Transform pos: 22.5,-46.5 parent: 2 - - uid: 5540 + - uid: 5493 components: - type: Transform pos: 22.5,-45.5 parent: 2 - - uid: 5541 + - uid: 5494 components: - type: Transform pos: 22.5,-44.5 parent: 2 - - uid: 5542 + - uid: 5495 components: - type: Transform pos: 22.5,-43.5 parent: 2 - - uid: 5543 + - uid: 5496 components: - type: Transform pos: 22.5,-42.5 parent: 2 - - uid: 5544 + - uid: 5497 components: - type: Transform pos: 21.5,-43.5 parent: 2 - - uid: 5545 + - uid: 5498 components: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 5546 + - uid: 5499 components: - type: Transform pos: 24.5,-43.5 parent: 2 - - uid: 5547 + - uid: 5500 components: - type: Transform pos: 23.5,-43.5 parent: 2 - - uid: 5548 + - uid: 5501 components: - type: Transform pos: 23.5,-48.5 parent: 2 - - uid: 5549 + - uid: 5502 components: - type: Transform pos: 24.5,-48.5 parent: 2 - - uid: 5550 + - uid: 5503 components: - type: Transform pos: 24.5,-47.5 parent: 2 - - uid: 5551 + - uid: 5504 components: - type: Transform pos: 21.5,-48.5 parent: 2 - - uid: 5552 + - uid: 5505 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 5553 + - uid: 5506 components: - type: Transform pos: 20.5,-47.5 parent: 2 - - uid: 5554 + - uid: 5507 components: - type: Transform pos: 35.5,-51.5 parent: 2 - - uid: 5555 + - uid: 5508 components: - type: Transform pos: 34.5,-51.5 parent: 2 - - uid: 5556 + - uid: 5509 components: - type: Transform pos: 34.5,-50.5 parent: 2 - - uid: 5557 + - uid: 5510 components: - type: Transform pos: 34.5,-49.5 parent: 2 - - uid: 5558 + - uid: 5511 components: - type: Transform pos: 33.5,-49.5 parent: 2 - - uid: 5559 + - uid: 5512 components: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 5560 + - uid: 5513 components: - type: Transform pos: 31.5,-49.5 parent: 2 - - uid: 5561 + - uid: 5514 components: - type: Transform pos: 30.5,-49.5 parent: 2 - - uid: 5562 + - uid: 5515 components: - type: Transform pos: 34.5,-48.5 parent: 2 - - uid: 5563 + - uid: 5516 components: - type: Transform pos: 34.5,-47.5 parent: 2 - - uid: 5564 + - uid: 5517 components: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 5565 + - uid: 5518 components: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 5566 + - uid: 5519 components: - type: Transform pos: 34.5,-45.5 parent: 2 - - uid: 5567 + - uid: 5520 components: - type: Transform pos: 34.5,-44.5 parent: 2 - - uid: 5568 + - uid: 5521 components: - type: Transform pos: 34.5,-43.5 parent: 2 - - uid: 5569 + - uid: 5522 components: - type: Transform pos: 33.5,-43.5 parent: 2 - - uid: 5570 + - uid: 5523 components: - type: Transform pos: 32.5,-43.5 parent: 2 - - uid: 5571 + - uid: 5524 components: - type: Transform pos: 30.5,-43.5 parent: 2 - - uid: 5572 + - uid: 5525 components: - type: Transform pos: 31.5,-43.5 parent: 2 - - uid: 5573 + - uid: 5526 components: - type: Transform pos: 31.5,-43.5 parent: 2 - - uid: 5574 + - uid: 5527 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 5575 + - uid: 5528 components: - type: Transform pos: 31.5,-33.5 parent: 2 - - uid: 5576 + - uid: 5529 components: - type: Transform pos: 31.5,-34.5 parent: 2 - - uid: 5577 + - uid: 5530 components: - type: Transform pos: 30.5,-34.5 parent: 2 - - uid: 5578 + - uid: 5531 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - uid: 5579 + - uid: 5532 components: - type: Transform pos: 28.5,-34.5 parent: 2 - - uid: 5580 + - uid: 5533 components: - type: Transform pos: 27.5,-34.5 parent: 2 - - uid: 5581 + - uid: 5534 components: - type: Transform pos: 26.5,-34.5 parent: 2 - - uid: 5582 + - uid: 5535 components: - type: Transform pos: 25.5,-34.5 parent: 2 - - uid: 5583 + - uid: 5536 components: - type: Transform pos: 24.5,-34.5 parent: 2 - - uid: 5584 + - uid: 5537 components: - type: Transform pos: 23.5,-34.5 parent: 2 - - uid: 5585 + - uid: 5538 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 5586 + - uid: 5539 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 5587 + - uid: 5540 components: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 5588 + - uid: 5541 components: - type: Transform pos: 27.5,-34.5 parent: 2 - - uid: 5589 + - uid: 5542 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 5590 + - uid: 5543 components: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 5591 + - uid: 5544 components: - type: Transform pos: 27.5,-37.5 parent: 2 - - uid: 5592 + - uid: 5545 components: - type: Transform pos: 27.5,-38.5 parent: 2 - - uid: 5593 + - uid: 5546 components: - type: Transform pos: 27.5,-39.5 parent: 2 - - uid: 5594 + - uid: 5547 components: - type: Transform pos: 27.5,-40.5 parent: 2 - - uid: 5595 + - uid: 5548 components: - type: Transform pos: 27.5,-41.5 parent: 2 - - uid: 5596 + - uid: 5549 components: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 5597 + - uid: 5550 components: - type: Transform pos: 27.5,-43.5 parent: 2 - - uid: 5598 + - uid: 5551 components: - type: Transform pos: 27.5,-44.5 parent: 2 - - uid: 5599 + - uid: 5552 components: - type: Transform pos: 27.5,-45.5 parent: 2 - - uid: 5600 + - uid: 5553 components: - type: Transform pos: 27.5,-46.5 parent: 2 - - uid: 5601 + - uid: 5554 components: - type: Transform pos: 27.5,-47.5 parent: 2 - - uid: 5602 + - uid: 5555 components: - type: Transform pos: 27.5,-48.5 parent: 2 - - uid: 5603 + - uid: 5556 components: - type: Transform pos: 27.5,-49.5 parent: 2 - - uid: 5604 + - uid: 5557 components: - type: Transform pos: 27.5,-50.5 parent: 2 - - uid: 5605 + - uid: 5558 components: - type: Transform pos: 27.5,-51.5 parent: 2 - - uid: 5606 + - uid: 5559 components: - type: Transform pos: 27.5,-52.5 parent: 2 - - uid: 5607 + - uid: 5560 components: - type: Transform pos: 27.5,-54.5 parent: 2 - - uid: 5608 + - uid: 5561 components: - type: Transform pos: 27.5,-55.5 parent: 2 - - uid: 5609 + - uid: 5562 components: - type: Transform pos: 27.5,-56.5 parent: 2 - - uid: 5610 + - uid: 5563 components: - type: Transform pos: 27.5,-57.5 parent: 2 - - uid: 5611 + - uid: 5564 components: - type: Transform pos: 27.5,-53.5 parent: 2 - - uid: 5612 + - uid: 5565 components: - type: Transform pos: 26.5,-55.5 parent: 2 - - uid: 5613 + - uid: 5566 components: - type: Transform pos: 28.5,-55.5 parent: 2 - - uid: 5614 + - uid: 5567 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 5615 + - uid: 5568 components: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 5616 + - uid: 5569 components: - type: Transform pos: 33.5,-38.5 parent: 2 - - uid: 5617 + - uid: 5570 components: - type: Transform pos: 33.5,-39.5 parent: 2 - - uid: 5618 + - uid: 5571 components: - type: Transform pos: 31.5,-39.5 parent: 2 - - uid: 5619 + - uid: 5572 components: - type: Transform pos: 30.5,-39.5 parent: 2 - - uid: 5620 + - uid: 5573 components: - type: Transform pos: 34.5,-39.5 parent: 2 - - uid: 5621 + - uid: 5574 components: - type: Transform pos: 35.5,-39.5 parent: 2 - - uid: 5622 + - uid: 5575 components: - type: Transform pos: 36.5,-39.5 parent: 2 - - uid: 5623 + - uid: 5576 components: - type: Transform pos: 37.5,-39.5 parent: 2 - - uid: 5624 + - uid: 5577 components: - type: Transform pos: 32.5,-39.5 parent: 2 - - uid: 5625 + - uid: 5578 components: - type: Transform pos: 37.5,-40.5 parent: 2 - - uid: 5626 + - uid: 5579 components: - type: Transform pos: 37.5,-41.5 parent: 2 - - uid: 5627 + - uid: 5580 components: - type: Transform pos: 32.5,-34.5 parent: 2 - - uid: 5628 + - uid: 5581 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 5629 + - uid: 5582 components: - type: Transform pos: 34.5,-34.5 parent: 2 - - uid: 5630 + - uid: 5583 components: - type: Transform pos: 35.5,-34.5 parent: 2 - - uid: 5631 + - uid: 5584 components: - type: Transform pos: 36.5,-34.5 parent: 2 - - uid: 5632 + - uid: 5585 components: - type: Transform pos: 37.5,-34.5 parent: 2 - - uid: 5633 + - uid: 5586 components: - type: Transform pos: 38.5,-34.5 parent: 2 - - uid: 5634 + - uid: 5587 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 5635 + - uid: 5588 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 5636 + - uid: 5589 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 5637 + - uid: 5590 components: - type: Transform pos: 36.5,-28.5 parent: 2 - - uid: 5638 + - uid: 5591 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 5639 + - uid: 5592 components: - type: Transform pos: 36.5,-30.5 parent: 2 - - uid: 5640 + - uid: 5593 components: - type: Transform pos: 36.5,-31.5 parent: 2 - - uid: 5641 + - uid: 5594 components: - type: Transform pos: 37.5,-27.5 parent: 2 - - uid: 5642 + - uid: 5595 components: - type: Transform pos: 37.5,-25.5 parent: 2 - - uid: 5643 + - uid: 5596 components: - type: Transform pos: 37.5,-26.5 parent: 2 - - uid: 5644 + - uid: 5597 components: - type: Transform pos: 38.5,-25.5 parent: 2 - - uid: 5645 + - uid: 5598 components: - type: Transform pos: 36.5,-25.5 parent: 2 - - uid: 5646 + - uid: 5599 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 5647 + - uid: 5600 components: - type: Transform pos: 31.5,-28.5 parent: 2 - - uid: 5648 + - uid: 5601 components: - type: Transform pos: 31.5,-29.5 parent: 2 - - uid: 5649 + - uid: 5602 components: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 5650 + - uid: 5603 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 5651 + - uid: 5604 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 5652 + - uid: 5605 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 5653 + - uid: 5606 components: - type: Transform pos: 28.5,-29.5 parent: 2 - - uid: 5654 + - uid: 5607 components: - type: Transform pos: 27.5,-29.5 parent: 2 - - uid: 5655 + - uid: 5608 components: - type: Transform pos: 26.5,-29.5 parent: 2 - - uid: 5656 + - uid: 5609 components: - type: Transform pos: 25.5,-29.5 parent: 2 - - uid: 5657 + - uid: 5610 components: - type: Transform pos: 24.5,-29.5 parent: 2 - - uid: 5658 + - uid: 5611 components: - type: Transform pos: 24.5,-28.5 parent: 2 - - uid: 5659 + - uid: 5612 components: - type: Transform pos: 23.5,-28.5 parent: 2 - - uid: 5660 + - uid: 5613 components: - type: Transform pos: 22.5,-28.5 parent: 2 - - uid: 5661 + - uid: 5614 components: - type: Transform pos: 21.5,-28.5 parent: 2 - - uid: 5662 + - uid: 5615 components: - type: Transform pos: 21.5,-27.5 parent: 2 - - uid: 5663 + - uid: 5616 components: - type: Transform pos: 21.5,-26.5 parent: 2 - - uid: 5664 + - uid: 5617 components: - type: Transform pos: 21.5,-25.5 parent: 2 - - uid: 5665 + - uid: 5618 components: - type: Transform pos: 21.5,-33.5 parent: 2 - - uid: 5666 + - uid: 5619 components: - type: Transform pos: 21.5,-32.5 parent: 2 - - uid: 5667 + - uid: 5620 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 5668 + - uid: 5621 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 5669 + - uid: 5622 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 5670 + - uid: 5623 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 5671 + - uid: 5624 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 5672 + - uid: 5625 components: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 5673 + - uid: 5626 components: - type: Transform pos: 30.5,-24.5 parent: 2 - - uid: 5674 + - uid: 5627 components: - type: Transform pos: 30.5,-23.5 parent: 2 - - uid: 5675 + - uid: 5628 components: - type: Transform pos: 30.5,-22.5 parent: 2 - - uid: 5676 + - uid: 5629 components: - type: Transform pos: 31.5,-22.5 parent: 2 - - uid: 5677 + - uid: 5630 components: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 5678 + - uid: 5631 components: - type: Transform pos: 24.5,-27.5 parent: 2 - - uid: 5679 + - uid: 5632 components: - type: Transform pos: 25.5,-27.5 parent: 2 - - uid: 5680 + - uid: 5633 components: - type: Transform pos: 25.5,-26.5 parent: 2 - - uid: 5681 + - uid: 5634 components: - type: Transform pos: 25.5,-25.5 parent: 2 - - uid: 5682 + - uid: 5635 components: - type: Transform pos: 25.5,-24.5 parent: 2 - - uid: 5683 + - uid: 5636 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 5684 + - uid: 5637 components: - type: Transform pos: 26.5,-39.5 parent: 2 - - uid: 5685 + - uid: 5638 components: - type: Transform pos: 25.5,-39.5 parent: 2 - - uid: 5686 + - uid: 5639 components: - type: Transform pos: 24.5,-39.5 parent: 2 - - uid: 5687 + - uid: 5640 components: - type: Transform pos: 23.5,-39.5 parent: 2 - - uid: 5688 + - uid: 5641 components: - type: Transform pos: 22.5,-39.5 parent: 2 - - uid: 5689 + - uid: 5642 components: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 5690 + - uid: 5643 components: - type: Transform pos: 20.5,-39.5 parent: 2 - - uid: 5691 + - uid: 5644 components: - type: Transform pos: 19.5,-39.5 parent: 2 - - uid: 5692 + - uid: 5645 components: - type: Transform pos: 18.5,-39.5 parent: 2 - - uid: 5693 + - uid: 5646 components: - type: Transform pos: 17.5,-39.5 parent: 2 - - uid: 5694 + - uid: 5647 components: - type: Transform pos: 17.5,-40.5 parent: 2 - - uid: 5695 + - uid: 5648 components: - type: Transform pos: 17.5,-41.5 parent: 2 - - uid: 5696 + - uid: 5649 components: - type: Transform pos: 17.5,-42.5 parent: 2 - - uid: 5697 + - uid: 5650 components: - type: Transform pos: 17.5,-43.5 parent: 2 - - uid: 5698 + - uid: 5651 components: - type: Transform pos: 17.5,-44.5 parent: 2 - - uid: 5699 + - uid: 5652 components: - type: Transform pos: 17.5,-45.5 parent: 2 - - uid: 5700 + - uid: 5653 components: - type: Transform pos: 17.5,-46.5 parent: 2 - - uid: 5701 + - uid: 5654 components: - type: Transform pos: 17.5,-38.5 parent: 2 - - uid: 5702 + - uid: 5655 components: - type: Transform pos: 17.5,-37.5 parent: 2 - - uid: 5703 + - uid: 5656 components: - type: Transform pos: 17.5,-36.5 parent: 2 - - uid: 5704 + - uid: 5657 components: - type: Transform pos: 17.5,-35.5 parent: 2 - - uid: 5705 + - uid: 5658 components: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 5706 + - uid: 5659 components: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 5707 + - uid: 5660 components: - type: Transform pos: 17.5,-32.5 parent: 2 - - uid: 5708 + - uid: 5661 components: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 5709 + - uid: 5662 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 5710 + - uid: 5663 components: - type: Transform pos: 17.5,-29.5 parent: 2 - - uid: 5711 + - uid: 5664 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 5712 + - uid: 5665 components: - type: Transform pos: 17.5,-27.5 parent: 2 - - uid: 5713 + - uid: 5666 components: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 5714 + - uid: 5667 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 5715 + - uid: 5668 components: - type: Transform pos: 17.5,-24.5 parent: 2 - - uid: 5716 + - uid: 5669 components: - type: Transform pos: 17.5,-24.5 parent: 2 - - uid: 5717 + - uid: 5670 components: - type: Transform pos: 9.5,-29.5 parent: 2 - - uid: 5718 + - uid: 5671 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 5719 + - uid: 5672 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 5720 + - uid: 5673 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 5721 + - uid: 5674 components: - type: Transform pos: 5.5,-29.5 parent: 2 - - uid: 5722 + - uid: 5675 components: - type: Transform pos: 5.5,-30.5 parent: 2 - - uid: 5723 + - uid: 5676 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 5724 + - uid: 5677 components: - type: Transform pos: 5.5,-32.5 parent: 2 - - uid: 5725 + - uid: 5678 components: - type: Transform pos: 5.5,-33.5 parent: 2 - - uid: 5726 + - uid: 5679 components: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 5727 + - uid: 5680 components: - type: Transform pos: 5.5,-35.5 parent: 2 - - uid: 5728 + - uid: 5681 components: - type: Transform pos: 3.5,-33.5 parent: 2 - - uid: 5729 + - uid: 5682 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 5730 + - uid: 5683 components: - type: Transform pos: 5.5,-33.5 parent: 2 - - uid: 5731 + - uid: 5684 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 5732 + - uid: 5685 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 5733 + - uid: 5686 components: - type: Transform pos: 8.5,-33.5 parent: 2 - - uid: 5734 + - uid: 5687 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 5735 + - uid: 5688 components: - type: Transform pos: 9.5,-35.5 parent: 2 - - uid: 5736 + - uid: 5689 components: - type: Transform pos: 10.5,-35.5 parent: 2 - - uid: 5737 + - uid: 5690 components: - type: Transform pos: 7.5,-35.5 parent: 2 - - uid: 5738 + - uid: 5691 components: - type: Transform pos: 7.5,-34.5 parent: 2 - - uid: 5739 + - uid: 5692 components: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 5740 + - uid: 5693 components: - type: Transform pos: 11.5,-34.5 parent: 2 - - uid: 5741 + - uid: 5694 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 5742 + - uid: 5695 components: - type: Transform pos: 13.5,-34.5 parent: 2 - - uid: 5743 + - uid: 5696 components: - type: Transform pos: 14.5,-34.5 parent: 2 - - uid: 5744 + - uid: 5697 components: - type: Transform pos: 14.5,-36.5 parent: 2 - - uid: 5745 + - uid: 5698 components: - type: Transform pos: 14.5,-37.5 parent: 2 - - uid: 5746 + - uid: 5699 components: - type: Transform pos: 14.5,-38.5 parent: 2 - - uid: 5747 + - uid: 5700 components: - type: Transform pos: 14.5,-39.5 parent: 2 - - uid: 5748 + - uid: 5701 components: - type: Transform pos: 13.5,-39.5 parent: 2 - - uid: 5749 + - uid: 5702 components: - type: Transform pos: 12.5,-39.5 parent: 2 - - uid: 5750 + - uid: 5703 components: - type: Transform pos: 11.5,-39.5 parent: 2 - - uid: 5751 + - uid: 5704 components: - type: Transform pos: 10.5,-39.5 parent: 2 - - uid: 5752 + - uid: 5705 components: - type: Transform pos: 9.5,-39.5 parent: 2 - - uid: 5753 + - uid: 5706 components: - type: Transform pos: 7.5,-44.5 parent: 2 - - uid: 5754 + - uid: 5707 components: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 5755 + - uid: 5708 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 5756 + - uid: 5709 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 5757 + - uid: 5710 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 5758 + - uid: 5711 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 5759 + - uid: 5712 components: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 5760 + - uid: 5713 components: - type: Transform pos: 4.5,-48.5 parent: 2 - - uid: 5761 + - uid: 5714 components: - type: Transform pos: 4.5,-49.5 parent: 2 - - uid: 5762 + - uid: 5715 components: - type: Transform pos: 4.5,-50.5 parent: 2 - - uid: 5763 + - uid: 5716 components: - type: Transform pos: 6.5,-50.5 parent: 2 - - uid: 5764 + - uid: 5717 components: - type: Transform pos: 7.5,-50.5 parent: 2 - - uid: 5765 + - uid: 5718 components: - type: Transform pos: 8.5,-50.5 parent: 2 - - uid: 5766 + - uid: 5719 components: - type: Transform pos: 8.5,-49.5 parent: 2 - - uid: 5767 + - uid: 5720 components: - type: Transform pos: 8.5,-48.5 parent: 2 - - uid: 5768 + - uid: 5721 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 5769 + - uid: 5722 components: - type: Transform pos: 9.5,-50.5 parent: 2 - - uid: 5770 + - uid: 5723 components: - type: Transform pos: 10.5,-50.5 parent: 2 - - uid: 5771 + - uid: 5724 components: - type: Transform pos: 11.5,-50.5 parent: 2 - - uid: 5772 + - uid: 5725 components: - type: Transform pos: 12.5,-50.5 parent: 2 - - uid: 5773 + - uid: 5726 components: - type: Transform pos: 10.5,-51.5 parent: 2 - - uid: 5774 + - uid: 5727 components: - type: Transform pos: 10.5,-52.5 parent: 2 - - uid: 5775 + - uid: 5728 components: - type: Transform pos: 3.5,-50.5 parent: 2 - - uid: 5776 + - uid: 5729 components: - type: Transform pos: 2.5,-50.5 parent: 2 - - uid: 5777 + - uid: 5730 components: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 5778 + - uid: 5731 components: - type: Transform pos: 12.5,-57.5 parent: 2 - - uid: 5779 + - uid: 5732 components: - type: Transform pos: 12.5,-58.5 parent: 2 - - uid: 5780 + - uid: 5733 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 5781 + - uid: 5734 components: - type: Transform pos: 12.5,-60.5 parent: 2 - - uid: 5782 + - uid: 5735 components: - type: Transform pos: 12.5,-61.5 parent: 2 - - uid: 5783 + - uid: 5736 components: - type: Transform pos: 11.5,-59.5 parent: 2 - - uid: 5784 + - uid: 5737 components: - type: Transform pos: 10.5,-59.5 parent: 2 - - uid: 5785 + - uid: 5738 components: - type: Transform pos: 13.5,-59.5 parent: 2 - - uid: 5786 + - uid: 5739 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 5787 + - uid: 5740 components: - type: Transform pos: 13.5,-49.5 parent: 2 - - uid: 5788 + - uid: 5741 components: - type: Transform pos: 14.5,-49.5 parent: 2 - - uid: 5789 + - uid: 5742 components: - type: Transform pos: 15.5,-49.5 parent: 2 - - uid: 5790 + - uid: 5743 components: - type: Transform pos: 16.5,-49.5 parent: 2 - - uid: 5791 + - uid: 5744 components: - type: Transform pos: 17.5,-49.5 parent: 2 - - uid: 5792 + - uid: 5745 components: - type: Transform pos: 17.5,-50.5 parent: 2 - - uid: 5793 + - uid: 5746 components: - type: Transform pos: 17.5,-51.5 parent: 2 - - uid: 5794 + - uid: 5747 components: - type: Transform pos: 17.5,-52.5 parent: 2 - - uid: 5795 + - uid: 5748 components: - type: Transform pos: 17.5,-53.5 parent: 2 - - uid: 5796 + - uid: 5749 components: - type: Transform pos: 17.5,-54.5 parent: 2 - - uid: 5797 + - uid: 5750 components: - type: Transform pos: 17.5,-55.5 parent: 2 - - uid: 5798 + - uid: 5751 components: - type: Transform pos: 16.5,-55.5 parent: 2 - - uid: 5799 + - uid: 5752 components: - type: Transform pos: 15.5,-55.5 parent: 2 - - uid: 5800 + - uid: 5753 components: - type: Transform pos: 14.5,-55.5 parent: 2 - - uid: 5801 + - uid: 5754 components: - type: Transform pos: 13.5,-55.5 parent: 2 - - uid: 5802 + - uid: 5755 components: - type: Transform pos: 18.5,-55.5 parent: 2 - - uid: 5803 + - uid: 5756 components: - type: Transform pos: 19.5,-55.5 parent: 2 - - uid: 5804 + - uid: 5757 components: - type: Transform pos: 20.5,-55.5 parent: 2 - - uid: 5805 + - uid: 5758 components: - type: Transform pos: 21.5,-55.5 parent: 2 - - uid: 5806 + - uid: 5759 components: - type: Transform pos: 22.5,-55.5 parent: 2 - - uid: 5807 + - uid: 5760 components: - type: Transform pos: 23.5,-55.5 parent: 2 - - uid: 5808 + - uid: 5761 components: - type: Transform pos: 24.5,-55.5 parent: 2 - - uid: 5809 + - uid: 5762 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 5810 + - uid: 5763 components: - type: Transform pos: 14.5,-42.5 parent: 2 - - uid: 5811 + - uid: 5764 components: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 5812 + - uid: 5765 components: - type: Transform pos: 14.5,-44.5 parent: 2 - - uid: 5813 + - uid: 5766 components: - type: Transform pos: 14.5,-45.5 parent: 2 - - uid: 5814 + - uid: 5767 components: - type: Transform pos: 14.5,-46.5 parent: 2 - - uid: 5815 + - uid: 5768 components: - type: Transform pos: 13.5,-46.5 parent: 2 - - uid: 5816 + - uid: 5769 components: - type: Transform pos: 13.5,-43.5 parent: 2 - - uid: 5817 + - uid: 5770 components: - type: Transform pos: 12.5,-43.5 parent: 2 - - uid: 5818 + - uid: 5771 components: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 5819 + - uid: 5772 components: - type: Transform pos: 21.5,-37.5 parent: 2 - - uid: 5820 + - uid: 5773 components: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 5821 + - uid: 5774 components: - type: Transform pos: 23.5,-38.5 parent: 2 - - uid: 5822 + - uid: 5775 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 5823 + - uid: 5776 components: - type: Transform pos: -9.5,-22.5 parent: 2 - - uid: 5824 + - uid: 5777 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 5825 + - uid: 5778 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 5826 + - uid: 5779 components: - type: Transform pos: -9.5,-25.5 parent: 2 - - uid: 5827 + - uid: 5780 components: - type: Transform pos: -8.5,-25.5 parent: 2 - - uid: 5828 + - uid: 5781 components: - type: Transform pos: -7.5,-25.5 parent: 2 - - uid: 5829 + - uid: 5782 components: - type: Transform pos: -6.5,-25.5 parent: 2 - - uid: 5830 + - uid: 5783 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 5831 + - uid: 5784 components: - type: Transform pos: -4.5,-25.5 parent: 2 - - uid: 5832 + - uid: 5785 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 5833 + - uid: 5786 components: - type: Transform pos: -10.5,-25.5 parent: 2 - - uid: 5834 + - uid: 5787 components: - type: Transform pos: -11.5,-25.5 parent: 2 - - uid: 5835 + - uid: 5788 components: - type: Transform pos: -12.5,-25.5 parent: 2 - - uid: 5836 + - uid: 5789 components: - type: Transform pos: -13.5,-25.5 parent: 2 - - uid: 5837 + - uid: 5790 components: - type: Transform pos: -14.5,-25.5 parent: 2 - - uid: 5838 + - uid: 5791 components: - type: Transform pos: -15.5,-23.5 parent: 2 - - uid: 5839 + - uid: 5792 components: - type: Transform pos: -14.5,-23.5 parent: 2 - - uid: 5840 + - uid: 5793 components: - type: Transform pos: -14.5,-24.5 parent: 2 - - uid: 5841 + - uid: 5794 components: - type: Transform pos: -14.5,-26.5 parent: 2 - - uid: 5842 + - uid: 5795 components: - type: Transform pos: -14.5,-27.5 parent: 2 - - uid: 5843 + - uid: 5796 components: - type: Transform pos: -12.5,-26.5 parent: 2 - - uid: 5844 + - uid: 5797 components: - type: Transform pos: -12.5,-27.5 parent: 2 - - uid: 5845 + - uid: 5798 components: - type: Transform pos: -5.5,-26.5 parent: 2 - - uid: 5846 + - uid: 5799 components: - type: Transform pos: -5.5,-27.5 parent: 2 - - uid: 5847 + - uid: 5800 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - uid: 5848 + - uid: 5801 components: - type: Transform pos: -5.5,-23.5 parent: 2 - - uid: 5849 + - uid: 5802 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 5850 + - uid: 5803 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 5851 + - uid: 5804 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 5852 + - uid: 5805 components: - type: Transform pos: 8.5,-23.5 parent: 2 - - uid: 5853 + - uid: 5806 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 5854 + - uid: 5807 components: - type: Transform pos: 8.5,-25.5 parent: 2 - - uid: 5855 + - uid: 5808 components: - type: Transform pos: 7.5,-25.5 parent: 2 - - uid: 5856 + - uid: 5809 components: - type: Transform pos: 6.5,-25.5 parent: 2 - - uid: 5857 + - uid: 5810 components: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 5858 + - uid: 5811 components: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 5859 + - uid: 5812 components: - type: Transform pos: 3.5,-25.5 parent: 2 - - uid: 5860 + - uid: 5813 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 5861 + - uid: 5814 components: - type: Transform pos: 9.5,-25.5 parent: 2 - - uid: 5862 + - uid: 5815 components: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 5863 + - uid: 5816 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 5864 + - uid: 5817 components: - type: Transform pos: 12.5,-25.5 parent: 2 - - uid: 5865 + - uid: 5818 components: - type: Transform pos: 13.5,-25.5 parent: 2 - - uid: 5866 + - uid: 5819 components: - type: Transform pos: 14.5,-25.5 parent: 2 - - uid: 5867 + - uid: 5820 components: - type: Transform pos: 8.5,-26.5 parent: 2 - - uid: 5868 + - uid: 5821 components: - type: Transform pos: 8.5,-27.5 parent: 2 - - uid: 5869 + - uid: 5822 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 5870 + - uid: 5823 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 5871 + - uid: 5824 components: - type: Transform pos: 13.5,-26.5 parent: 2 - - uid: 5872 + - uid: 5825 components: - type: Transform pos: 13.5,-27.5 parent: 2 - - uid: 5873 + - uid: 5826 components: - type: Transform pos: 12.5,-29.5 parent: 2 - - uid: 5874 + - uid: 5827 components: - type: Transform pos: 12.5,-30.5 parent: 2 - - uid: 5875 + - uid: 5828 components: - type: Transform pos: 12.5,-31.5 parent: 2 - - uid: 5876 + - uid: 5829 components: - type: Transform pos: 11.5,-30.5 parent: 2 - - uid: 5877 + - uid: 5830 components: - type: Transform pos: 10.5,-30.5 parent: 2 - - uid: 5878 + - uid: 5831 components: - type: Transform pos: 13.5,-30.5 parent: 2 - - uid: 5879 + - uid: 5832 components: - type: Transform pos: 14.5,-30.5 parent: 2 - - uid: 5880 + - uid: 5833 components: - type: Transform pos: 12.5,-24.5 parent: 2 - - uid: 5881 + - uid: 5834 components: - type: Transform pos: 12.5,-23.5 parent: 2 - - uid: 5882 + - uid: 5835 components: - type: Transform pos: 12.5,-22.5 parent: 2 - - uid: 5883 + - uid: 5836 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 5884 + - uid: 5837 components: - type: Transform pos: 5.5,-23.5 parent: 2 - - uid: 5885 + - uid: 5838 components: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 5886 + - uid: 5839 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 5887 + - uid: 5840 components: - type: Transform pos: 43.5,-46.5 parent: 2 - - uid: 5888 + - uid: 5841 components: - type: Transform pos: 44.5,-46.5 parent: 2 - - uid: 5889 + - uid: 5842 components: - type: Transform pos: 45.5,-46.5 parent: 2 - - uid: 5890 + - uid: 5843 components: - type: Transform pos: 46.5,-46.5 parent: 2 - - uid: 5891 + - uid: 5844 components: - type: Transform pos: 47.5,-46.5 parent: 2 - - uid: 5892 + - uid: 5845 components: - type: Transform pos: 48.5,-46.5 parent: 2 - - uid: 5893 + - uid: 5846 components: - type: Transform pos: 49.5,-46.5 parent: 2 - - uid: 5894 + - uid: 5847 components: - type: Transform pos: 50.5,-46.5 parent: 2 - - uid: 5895 + - uid: 5848 components: - type: Transform pos: 51.5,-46.5 parent: 2 - - uid: 5896 + - uid: 5849 components: - type: Transform pos: 51.5,-45.5 parent: 2 - - uid: 5897 + - uid: 5850 components: - type: Transform pos: 51.5,-44.5 parent: 2 - - uid: 5898 + - uid: 5851 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 5899 + - uid: 5852 components: - type: Transform pos: 51.5,-42.5 parent: 2 - - uid: 5900 + - uid: 5853 components: - type: Transform pos: 51.5,-41.5 parent: 2 - - uid: 5901 + - uid: 5854 components: - type: Transform pos: 51.5,-40.5 parent: 2 - - uid: 5902 + - uid: 5855 components: - type: Transform pos: 51.5,-39.5 parent: 2 - - uid: 5903 + - uid: 5856 components: - type: Transform pos: 51.5,-38.5 parent: 2 - - uid: 5904 + - uid: 5857 components: - type: Transform pos: 51.5,-37.5 parent: 2 - - uid: 5905 + - uid: 5858 components: - type: Transform pos: 51.5,-36.5 parent: 2 - - uid: 5906 + - uid: 5859 components: - type: Transform pos: 51.5,-35.5 parent: 2 - - uid: 5907 + - uid: 5860 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 5908 + - uid: 5861 components: - type: Transform pos: 51.5,-33.5 parent: 2 - - uid: 5909 + - uid: 5862 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 5910 + - uid: 5863 components: - type: Transform pos: 51.5,-31.5 parent: 2 - - uid: 5911 + - uid: 5864 components: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 5912 + - uid: 5865 components: - type: Transform pos: 51.5,-29.5 parent: 2 - - uid: 5913 + - uid: 5866 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 5914 + - uid: 5867 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 5915 + - uid: 5868 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 5916 + - uid: 5869 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 5917 + - uid: 5870 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 5918 + - uid: 5871 components: - type: Transform pos: 46.5,-28.5 parent: 2 - - uid: 5919 + - uid: 5872 components: - type: Transform pos: 45.5,-28.5 parent: 2 - - uid: 5920 + - uid: 5873 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 5921 + - uid: 5874 components: - type: Transform pos: 43.5,-28.5 parent: 2 - - uid: 5922 + - uid: 5875 components: - type: Transform pos: 42.5,-28.5 parent: 2 - - uid: 5923 + - uid: 5876 components: - type: Transform pos: 41.5,-28.5 parent: 2 - - uid: 5924 + - uid: 5877 components: - type: Transform pos: 40.5,-28.5 parent: 2 - - uid: 5925 + - uid: 5878 components: - type: Transform pos: 40.5,-27.5 parent: 2 - - uid: 5926 + - uid: 5879 components: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 5927 + - uid: 5880 components: - type: Transform pos: 40.5,-25.5 parent: 2 - - uid: 5928 + - uid: 5881 components: - type: Transform pos: 40.5,-24.5 parent: 2 - - uid: 5929 + - uid: 5882 components: - type: Transform pos: 40.5,-23.5 parent: 2 - - uid: 5930 + - uid: 5883 components: - type: Transform pos: 40.5,-22.5 parent: 2 - - uid: 5931 + - uid: 5884 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 5932 + - uid: 5885 components: - type: Transform pos: -3.5,-63.5 parent: 2 - - uid: 5933 + - uid: 5886 components: - type: Transform pos: -3.5,-64.5 parent: 2 - - uid: 5934 + - uid: 5887 components: - type: Transform pos: -3.5,-65.5 parent: 2 - - uid: 5935 + - uid: 5888 components: - type: Transform pos: -3.5,-66.5 parent: 2 - - uid: 5936 + - uid: 5889 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 5937 + - uid: 5890 components: - type: Transform pos: -3.5,-68.5 parent: 2 - - uid: 5938 + - uid: 5891 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 5939 + - uid: 5892 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 5940 + - uid: 5893 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 5941 + - uid: 5894 components: - type: Transform pos: -3.5,-72.5 parent: 2 - - uid: 5942 + - uid: 5895 components: - type: Transform pos: -3.5,-73.5 parent: 2 - - uid: 5943 + - uid: 5896 components: - type: Transform pos: -3.5,-74.5 parent: 2 - - uid: 5944 + - uid: 5897 components: - type: Transform pos: -3.5,-75.5 parent: 2 - - uid: 5945 + - uid: 5898 components: - type: Transform pos: -3.5,-76.5 parent: 2 - - uid: 5946 + - uid: 5899 components: - type: Transform pos: -3.5,-77.5 parent: 2 - - uid: 5947 + - uid: 5900 components: - type: Transform pos: -3.5,-78.5 parent: 2 - - uid: 5948 + - uid: 5901 components: - type: Transform pos: -3.5,-79.5 parent: 2 - - uid: 5949 + - uid: 5902 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 5950 + - uid: 5903 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 5951 + - uid: 5904 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 5952 + - uid: 5905 components: - type: Transform pos: 38.5,-22.5 parent: 2 - - uid: 5953 + - uid: 5906 components: - type: Transform pos: 37.5,-22.5 parent: 2 - - uid: 5954 + - uid: 5907 components: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 5955 + - uid: 5908 components: - type: Transform pos: 35.5,-22.5 parent: 2 - - uid: 5956 + - uid: 5909 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 5957 + - uid: 5910 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 5958 + - uid: 5911 components: - type: Transform pos: 34.5,-20.5 parent: 2 - - uid: 5959 + - uid: 5912 components: - type: Transform pos: 34.5,-19.5 parent: 2 - - uid: 5960 + - uid: 5913 components: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 5961 + - uid: 5914 components: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 5962 + - uid: 5915 components: - type: Transform pos: 31.5,-19.5 parent: 2 - - uid: 5963 + - uid: 5916 components: - type: Transform pos: 30.5,-19.5 parent: 2 - - uid: 5964 + - uid: 5917 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 5965 + - uid: 5918 components: - type: Transform pos: 28.5,-19.5 parent: 2 - - uid: 5966 + - uid: 5919 components: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 5967 + - uid: 5920 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 5968 + - uid: 5921 components: - type: Transform pos: 25.5,-19.5 parent: 2 - - uid: 5969 + - uid: 5922 components: - type: Transform pos: 25.5,-20.5 parent: 2 - - uid: 5970 + - uid: 5923 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 5971 + - uid: 5924 components: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 5972 + - uid: 5925 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 5973 + - uid: 5926 components: - type: Transform pos: 21.5,-20.5 parent: 2 - - uid: 5974 + - uid: 5927 components: - type: Transform pos: 21.5,-19.5 parent: 2 - - uid: 5975 + - uid: 5928 components: - type: Transform pos: 21.5,-18.5 parent: 2 - - uid: 5976 + - uid: 5929 components: - type: Transform pos: 21.5,-17.5 parent: 2 - - uid: 5977 + - uid: 5930 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 5978 + - uid: 5931 components: - type: Transform pos: 21.5,-21.5 parent: 2 - - uid: 5979 + - uid: 5932 components: - type: Transform pos: 21.5,-22.5 parent: 2 - - uid: 5980 + - uid: 5933 components: - type: Transform pos: -1.5,-69.5 parent: 2 - - uid: 5981 + - uid: 5934 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 5982 + - uid: 5935 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 5983 + - uid: 5936 components: - type: Transform pos: -5.5,-69.5 parent: 2 - - uid: 5984 + - uid: 5937 components: - type: Transform pos: 24.5,-22.5 parent: 2 - - uid: 5985 + - uid: 5938 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 5986 + - uid: 5939 components: - type: Transform pos: -6.5,-69.5 parent: 2 - - uid: 5987 + - uid: 5940 components: - type: Transform pos: -7.5,-69.5 parent: 2 - - uid: 5988 + - uid: 5941 components: - type: Transform pos: -8.5,-69.5 parent: 2 - - uid: 5989 + - uid: 5942 components: - type: Transform pos: -9.5,-69.5 parent: 2 - - uid: 5990 + - uid: 5943 components: - type: Transform pos: -9.5,-68.5 parent: 2 - - uid: 5991 + - uid: 5944 components: - type: Transform pos: -9.5,-67.5 parent: 2 - - uid: 5992 + - uid: 5945 components: - type: Transform pos: -9.5,-66.5 parent: 2 - - uid: 5993 + - uid: 5946 components: - type: Transform pos: -9.5,-65.5 parent: 2 - - uid: 5994 + - uid: 5947 components: - type: Transform pos: -9.5,-64.5 parent: 2 - - uid: 5995 + - uid: 5948 components: - type: Transform pos: 42.5,-46.5 parent: 2 - - uid: 5996 + - uid: 5949 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 5997 + - uid: 5950 components: - type: Transform pos: 40.5,-46.5 parent: 2 - - uid: 5998 + - uid: 5951 components: - type: Transform pos: 39.5,-46.5 parent: 2 - - uid: 5999 + - uid: 5952 components: - type: Transform pos: 38.5,-46.5 parent: 2 - - uid: 6000 + - uid: 5953 components: - type: Transform pos: 37.5,-46.5 parent: 2 - - uid: 6001 + - uid: 5954 components: - type: Transform pos: 37.5,-47.5 parent: 2 - - uid: 6002 + - uid: 5955 components: - type: Transform pos: 37.5,-48.5 parent: 2 - - uid: 6003 + - uid: 5956 components: - type: Transform pos: 37.5,-49.5 parent: 2 - - uid: 6004 + - uid: 5957 components: - type: Transform pos: 37.5,-50.5 parent: 2 - - uid: 6005 + - uid: 5958 components: - type: Transform pos: 37.5,-51.5 parent: 2 - - uid: 6006 + - uid: 5959 components: - type: Transform pos: 37.5,-52.5 parent: 2 - - uid: 6007 + - uid: 5960 components: - type: Transform pos: 37.5,-53.5 parent: 2 - - uid: 6008 + - uid: 5961 components: - type: Transform pos: 37.5,-54.5 parent: 2 - - uid: 6009 + - uid: 5962 components: - type: Transform pos: 37.5,-55.5 parent: 2 - - uid: 6010 + - uid: 5963 components: - type: Transform pos: -4.5,-64.5 parent: 2 - - uid: 6011 + - uid: 5964 components: - type: Transform pos: -5.5,-64.5 parent: 2 - - uid: 6012 + - uid: 5965 components: - type: Transform pos: -6.5,-64.5 parent: 2 - - uid: 6013 + - uid: 5966 components: - type: Transform pos: 36.5,-55.5 parent: 2 - - uid: 6014 + - uid: 5967 components: - type: Transform pos: 35.5,-55.5 parent: 2 - - uid: 6015 + - uid: 5968 components: - type: Transform pos: 34.5,-55.5 parent: 2 - - uid: 6016 + - uid: 5969 components: - type: Transform pos: 33.5,-55.5 parent: 2 - - uid: 6017 + - uid: 5970 components: - type: Transform pos: 32.5,-55.5 parent: 2 - - uid: 6018 + - uid: 5971 components: - type: Transform pos: 31.5,-55.5 parent: 2 - - uid: 6019 + - uid: 5972 components: - type: Transform pos: 30.5,-55.5 parent: 2 - - uid: 6020 + - uid: 5973 components: - type: Transform pos: 31.5,-54.5 parent: 2 - - uid: 6021 + - uid: 5974 components: - type: Transform pos: -2.5,-64.5 parent: 2 - - uid: 6022 + - uid: 5975 components: - type: Transform pos: -1.5,-64.5 parent: 2 - - uid: 6023 + - uid: 5976 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 6024 + - uid: 5977 components: - type: Transform pos: 0.49999997,-64.5 parent: 2 - - uid: 6025 + - uid: 5978 components: - type: Transform pos: 38.5,-52.5 parent: 2 - - uid: 6026 + - uid: 5979 components: - type: Transform pos: 39.5,-52.5 parent: 2 - - uid: 6027 + - uid: 5980 components: - type: Transform pos: 40.5,-52.5 parent: 2 - - uid: 6028 + - uid: 5981 components: - type: Transform pos: 41.5,-52.5 parent: 2 - - uid: 6029 + - uid: 5982 components: - type: Transform pos: 42.5,-52.5 parent: 2 - - uid: 6030 + - uid: 5983 components: - type: Transform pos: 43.5,-52.5 parent: 2 - - uid: 6031 + - uid: 5984 components: - type: Transform pos: 44.5,-52.5 parent: 2 - - uid: 6032 + - uid: 5985 components: - type: Transform pos: 45.5,-52.5 parent: 2 - - uid: 6033 + - uid: 5986 components: - type: Transform pos: 46.5,-52.5 parent: 2 - - uid: 6034 + - uid: 5987 components: - type: Transform pos: -0.5,-69.5 parent: 2 - - uid: 6035 + - uid: 5988 components: - type: Transform pos: 47.5,-52.5 parent: 2 - - uid: 6036 + - uid: 5989 components: - type: Transform pos: 47.5,-51.5 parent: 2 - - uid: 6037 + - uid: 5990 components: - type: Transform pos: 47.5,-50.5 parent: 2 - - uid: 6038 + - uid: 5991 components: - type: Transform pos: 47.5,-49.5 parent: 2 - - uid: 6039 + - uid: 5992 components: - type: Transform pos: 0.49999997,-69.5 parent: 2 - - uid: 6040 + - uid: 5993 components: - type: Transform pos: 47.5,-53.5 parent: 2 - - uid: 6041 + - uid: 5994 components: - type: Transform pos: 47.5,-54.5 parent: 2 - - uid: 6042 + - uid: 5995 components: - type: Transform pos: 1.5,-69.5 parent: 2 - - uid: 6043 + - uid: 5996 components: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 6044 + - uid: 5997 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 6045 + - uid: 5998 components: - type: Transform pos: 1.5,-67.5 parent: 2 - - uid: 6046 + - uid: 5999 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 6047 + - uid: 6000 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 6048 + - uid: 6001 components: - type: Transform pos: 50.5,-47.5 parent: 2 - - uid: 6049 + - uid: 6002 components: - type: Transform pos: 50.5,-48.5 parent: 2 - - uid: 6050 + - uid: 6003 components: - type: Transform pos: 50.5,-49.5 parent: 2 - - uid: 6051 + - uid: 6004 components: - type: Transform pos: 50.5,-50.5 parent: 2 - - uid: 6052 + - uid: 6005 components: - type: Transform pos: 50.5,-51.5 parent: 2 - - uid: 6053 + - uid: 6006 components: - type: Transform pos: 50.5,-52.5 parent: 2 - - uid: 6054 + - uid: 6007 components: - type: Transform pos: 50.5,-53.5 parent: 2 - - uid: 6055 + - uid: 6008 components: - type: Transform pos: 50.5,-54.5 parent: 2 - - uid: 6056 + - uid: 6009 components: - type: Transform pos: 50.5,-55.5 parent: 2 - - uid: 6057 + - uid: 6010 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 6058 + - uid: 6011 components: - type: Transform pos: 1.5,-71.5 parent: 2 - - uid: 6059 + - uid: 6012 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 6060 + - uid: 6013 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 6061 + - uid: 6014 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 6062 + - uid: 6015 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 6063 + - uid: 6016 components: - type: Transform pos: 1.5,-76.5 parent: 2 - - uid: 6064 + - uid: 6017 components: - type: Transform pos: 1.5,-77.5 parent: 2 - - uid: 6065 + - uid: 6018 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 6066 + - uid: 6019 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 6067 + - uid: 6020 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 6068 + - uid: 6021 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 6069 + - uid: 6022 components: - type: Transform pos: 52.5,-46.5 parent: 2 - - uid: 6070 + - uid: 6023 components: - type: Transform pos: 53.5,-46.5 parent: 2 - - uid: 6071 + - uid: 6024 components: - type: Transform pos: 54.5,-46.5 parent: 2 - - uid: 6072 + - uid: 6025 components: - type: Transform pos: 55.5,-46.5 parent: 2 - - uid: 6073 + - uid: 6026 components: - type: Transform pos: 56.5,-46.5 parent: 2 - - uid: 6074 + - uid: 6027 components: - type: Transform pos: -2.5,-75.5 parent: 2 - - uid: 6075 + - uid: 6028 components: - type: Transform pos: -1.5,-75.5 parent: 2 - - uid: 6076 + - uid: 6029 components: - type: Transform pos: -0.5,-75.5 parent: 2 - - uid: 6077 + - uid: 6030 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 6078 + - uid: 6031 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 6079 + - uid: 6032 components: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 6080 + - uid: 6033 components: - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 6081 + - uid: 6034 components: - type: Transform pos: 0.49999997,-75.5 parent: 2 - - uid: 6082 + - uid: 6035 components: - type: Transform pos: -4.5,-75.5 parent: 2 - - uid: 6083 + - uid: 6036 components: - type: Transform pos: -9.5,-70.5 parent: 2 - - uid: 6084 + - uid: 6037 components: - type: Transform pos: -9.5,-71.5 parent: 2 - - uid: 6085 + - uid: 6038 components: - type: Transform pos: -9.5,-72.5 parent: 2 - - uid: 6086 + - uid: 6039 components: - type: Transform pos: -9.5,-73.5 parent: 2 - - uid: 6087 + - uid: 6040 components: - type: Transform pos: -9.5,-74.5 parent: 2 - - uid: 6088 + - uid: 6041 components: - type: Transform pos: -9.5,-75.5 parent: 2 - - uid: 6089 + - uid: 6042 components: - type: Transform pos: -9.5,-76.5 parent: 2 - - uid: 6090 + - uid: 6043 components: - type: Transform pos: -8.5,-75.5 parent: 2 - - uid: 6091 + - uid: 6044 components: - type: Transform pos: -7.5,-75.5 parent: 2 - - uid: 6092 + - uid: 6045 components: - type: Transform pos: -6.5,-75.5 parent: 2 - - uid: 6093 + - uid: 6046 components: - type: Transform pos: -5.5,-75.5 parent: 2 - - uid: 6094 + - uid: 6047 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 6095 + - uid: 6048 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 6096 + - uid: 6049 components: - type: Transform pos: 53.5,-28.5 parent: 2 - - uid: 6097 + - uid: 6050 components: - type: Transform pos: 50.5,-32.5 parent: 2 - - uid: 6098 + - uid: 6051 components: - type: Transform pos: 49.5,-32.5 parent: 2 - - uid: 6099 + - uid: 6052 components: - type: Transform pos: 48.5,-32.5 parent: 2 - - uid: 6100 + - uid: 6053 components: - type: Transform pos: 47.5,-32.5 parent: 2 - - uid: 6101 + - uid: 6054 components: - type: Transform pos: 46.5,-32.5 parent: 2 - - uid: 6102 + - uid: 6055 components: - type: Transform pos: 45.5,-32.5 parent: 2 - - uid: 6103 + - uid: 6056 components: - type: Transform pos: 44.5,-32.5 parent: 2 - - uid: 6104 + - uid: 6057 components: - type: Transform pos: 43.5,-32.5 parent: 2 - - uid: 6105 + - uid: 6058 components: - type: Transform pos: 42.5,-32.5 parent: 2 - - uid: 6106 + - uid: 6059 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 6107 + - uid: 6060 components: - type: Transform pos: 41.5,-30.5 parent: 2 - - uid: 6108 + - uid: 6061 components: - type: Transform pos: 41.5,-31.5 parent: 2 - - uid: 6109 + - uid: 6062 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 6110 + - uid: 6063 components: - type: Transform pos: 41.5,-33.5 parent: 2 - - uid: 6111 + - uid: 6064 components: - type: Transform pos: 41.5,-34.5 parent: 2 - - uid: 6112 + - uid: 6065 components: - type: Transform pos: 41.5,-35.5 parent: 2 - - uid: 6113 + - uid: 6066 components: - type: Transform pos: 41.5,-36.5 parent: 2 - - uid: 6114 + - uid: 6067 components: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 6115 + - uid: 6068 components: - type: Transform pos: 41.5,-38.5 parent: 2 - - uid: 6116 + - uid: 6069 components: - type: Transform pos: 41.5,-39.5 parent: 2 - - uid: 6117 + - uid: 6070 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 6118 + - uid: 6071 components: - type: Transform pos: 41.5,-41.5 parent: 2 - - uid: 6119 + - uid: 6072 components: - type: Transform pos: 41.5,-42.5 parent: 2 - - uid: 6120 + - uid: 6073 components: - type: Transform pos: 41.5,-43.5 parent: 2 - - uid: 6121 + - uid: 6074 components: - type: Transform pos: 41.5,-44.5 parent: 2 - - uid: 6122 + - uid: 6075 components: - type: Transform pos: 41.5,-45.5 parent: 2 - - uid: 6123 + - uid: 6076 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 6124 + - uid: 6077 components: - type: Transform pos: 42.5,-41.5 parent: 2 - - uid: 6125 + - uid: 6078 components: - type: Transform pos: 43.5,-41.5 parent: 2 - - uid: 6126 + - uid: 6079 components: - type: Transform pos: 44.5,-41.5 parent: 2 - - uid: 6127 + - uid: 6080 components: - type: Transform pos: 45.5,-41.5 parent: 2 - - uid: 6128 + - uid: 6081 components: - type: Transform pos: 46.5,-41.5 parent: 2 - - uid: 6129 + - uid: 6082 components: - type: Transform pos: 47.5,-41.5 parent: 2 - - uid: 6130 + - uid: 6083 components: - type: Transform pos: 48.5,-41.5 parent: 2 - - uid: 6131 + - uid: 6084 components: - type: Transform pos: 49.5,-41.5 parent: 2 - - uid: 6132 + - uid: 6085 components: - type: Transform pos: 50.5,-41.5 parent: 2 - - uid: 6133 + - uid: 6086 components: - type: Transform pos: 46.5,-40.5 parent: 2 - - uid: 6134 + - uid: 6087 components: - type: Transform pos: 46.5,-39.5 parent: 2 - - uid: 6135 + - uid: 6088 components: - type: Transform pos: 46.5,-38.5 parent: 2 - - uid: 6136 + - uid: 6089 components: - type: Transform pos: 46.5,-41.5 parent: 2 - - uid: 6137 + - uid: 6090 components: - type: Transform pos: 46.5,-42.5 parent: 2 - - uid: 6138 + - uid: 6091 components: - type: Transform pos: 46.5,-43.5 parent: 2 - - uid: 6139 + - uid: 6092 components: - type: Transform pos: 46.5,-44.5 parent: 2 - - uid: 6140 + - uid: 6093 components: - type: Transform pos: 45.5,-44.5 parent: 2 - - uid: 6141 + - uid: 6094 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 6142 + - uid: 6095 components: - type: Transform pos: 46.5,-33.5 parent: 2 - - uid: 6143 + - uid: 6096 components: - type: Transform pos: 46.5,-34.5 parent: 2 - - uid: 6144 + - uid: 6097 components: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 6145 + - uid: 6098 components: - type: Transform pos: 46.5,-30.5 parent: 2 - - uid: 6146 + - uid: 6099 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 6147 + - uid: 6100 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 6148 + - uid: 6101 components: - type: Transform pos: 44.5,-18.5 parent: 2 - - uid: 6149 + - uid: 6102 components: - type: Transform pos: 44.5,-19.5 parent: 2 - - uid: 6150 + - uid: 6103 components: - type: Transform pos: 45.5,-19.5 parent: 2 - - uid: 6151 + - uid: 6104 components: - type: Transform pos: 46.5,-19.5 parent: 2 - - uid: 6152 + - uid: 6105 components: - type: Transform pos: 47.5,-19.5 parent: 2 - - uid: 6153 + - uid: 6106 components: - type: Transform pos: 48.5,-19.5 parent: 2 - - uid: 6154 + - uid: 6107 components: - type: Transform pos: 49.5,-19.5 parent: 2 - - uid: 6155 + - uid: 6108 components: - type: Transform pos: 50.5,-19.5 parent: 2 - - uid: 6156 + - uid: 6109 components: - type: Transform pos: 51.5,-19.5 parent: 2 - - uid: 6157 + - uid: 6110 components: - type: Transform pos: 52.5,-19.5 parent: 2 - - uid: 6158 + - uid: 6111 components: - type: Transform pos: 53.5,-19.5 parent: 2 - - uid: 6159 + - uid: 6112 components: - type: Transform pos: 52.5,-22.5 parent: 2 - - uid: 6160 + - uid: 6113 components: - type: Transform pos: 53.5,-18.5 parent: 2 - - uid: 6161 + - uid: 6114 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 6162 + - uid: 6115 components: - type: Transform pos: 55.5,-9.5 parent: 2 - - uid: 6163 + - uid: 6116 components: - type: Transform pos: 55.5,-10.5 parent: 2 - - uid: 6164 + - uid: 6117 components: - type: Transform pos: 56.5,-10.5 parent: 2 - - uid: 6165 + - uid: 6118 components: - type: Transform pos: 57.5,-10.5 parent: 2 - - uid: 6166 + - uid: 6119 components: - type: Transform pos: 58.5,-10.5 parent: 2 - - uid: 6167 + - uid: 6120 components: - type: Transform pos: 59.5,-10.5 parent: 2 - - uid: 6168 + - uid: 6121 components: - type: Transform pos: 59.5,-11.5 parent: 2 - - uid: 6169 + - uid: 6122 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 6170 + - uid: 6123 components: - type: Transform pos: 59.5,-13.5 parent: 2 - - uid: 6171 + - uid: 6124 components: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 6172 + - uid: 6125 components: - type: Transform pos: 59.5,-15.5 parent: 2 - - uid: 6173 + - uid: 6126 components: - type: Transform pos: 59.5,-16.5 parent: 2 - - uid: 6174 + - uid: 6127 components: - type: Transform pos: 59.5,-17.5 parent: 2 - - uid: 6175 + - uid: 6128 components: - type: Transform pos: 59.5,-18.5 parent: 2 - - uid: 6176 + - uid: 6129 components: - type: Transform pos: 59.5,-19.5 parent: 2 - - uid: 6177 + - uid: 6130 components: - type: Transform pos: 59.5,-20.5 parent: 2 - - uid: 6178 + - uid: 6131 components: - type: Transform pos: 59.5,-21.5 parent: 2 - - uid: 6179 + - uid: 6132 components: - type: Transform pos: 59.5,-22.5 parent: 2 - - uid: 6180 + - uid: 6133 components: - type: Transform pos: 59.5,-23.5 parent: 2 - - uid: 6181 + - uid: 6134 components: - type: Transform pos: 59.5,-24.5 parent: 2 - - uid: 6182 + - uid: 6135 components: - type: Transform pos: 59.5,-25.5 parent: 2 - - uid: 6183 + - uid: 6136 components: - type: Transform pos: 59.5,-26.5 parent: 2 - - uid: 6184 + - uid: 6137 components: - type: Transform pos: 59.5,-27.5 parent: 2 - - uid: 6185 + - uid: 6138 components: - type: Transform pos: 59.5,-28.5 parent: 2 - - uid: 6186 + - uid: 6139 components: - type: Transform pos: 59.5,-29.5 parent: 2 - - uid: 6187 + - uid: 6140 components: - type: Transform pos: 59.5,-30.5 parent: 2 - - uid: 6188 + - uid: 6141 components: - type: Transform pos: 58.5,-19.5 parent: 2 - - uid: 6189 + - uid: 6142 components: - type: Transform pos: 57.5,-19.5 parent: 2 - - uid: 6190 + - uid: 6143 components: - type: Transform pos: 56.5,-19.5 parent: 2 - - uid: 6191 + - uid: 6144 components: - type: Transform pos: 55.5,-19.5 parent: 2 - - uid: 6192 + - uid: 6145 components: - type: Transform pos: 55.5,-20.5 parent: 2 - - uid: 6193 + - uid: 6146 components: - type: Transform pos: 55.5,-18.5 parent: 2 - - uid: 6194 + - uid: 6147 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 6195 + - uid: 6148 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 6196 + - uid: 6149 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 6197 + - uid: 6150 components: - type: Transform pos: 63.5,-21.5 parent: 2 - - uid: 6198 + - uid: 6151 components: - type: Transform pos: 62.5,-19.5 parent: 2 - - uid: 6199 + - uid: 6152 components: - type: Transform pos: 61.5,-19.5 parent: 2 - - uid: 6200 + - uid: 6153 components: - type: Transform pos: 60.5,-19.5 parent: 2 - - uid: 6201 + - uid: 6154 components: - type: Transform pos: 55.5,-30.5 parent: 2 - - uid: 6202 + - uid: 6155 components: - type: Transform pos: 56.5,-30.5 parent: 2 - - uid: 6203 + - uid: 6156 components: - type: Transform pos: 57.5,-30.5 parent: 2 - - uid: 6204 + - uid: 6157 components: - type: Transform pos: 58.5,-30.5 parent: 2 - - uid: 6205 + - uid: 6158 components: - type: Transform pos: -15.5,-64.5 parent: 2 - - uid: 6206 + - uid: 6159 components: - type: Transform pos: 60.5,-30.5 parent: 2 - - uid: 6207 + - uid: 6160 components: - type: Transform pos: 61.5,-30.5 parent: 2 - - uid: 6208 + - uid: 6161 components: - type: Transform pos: 62.5,-30.5 parent: 2 - - uid: 6209 + - uid: 6162 components: - type: Transform pos: 63.5,-30.5 parent: 2 - - uid: 6210 + - uid: 6163 components: - type: Transform pos: 64.5,-30.5 parent: 2 - - uid: 6211 + - uid: 6164 components: - type: Transform pos: 65.5,-30.5 parent: 2 - - uid: 6212 + - uid: 6165 components: - type: Transform pos: -15.5,-65.5 parent: 2 - - uid: 6213 + - uid: 6166 components: - type: Transform pos: -15.5,-66.5 parent: 2 - - uid: 6214 + - uid: 6167 components: - type: Transform pos: -16.5,-66.5 parent: 2 - - uid: 6215 + - uid: 6168 components: - type: Transform pos: -17.5,-66.5 parent: 2 - - uid: 6216 + - uid: 6169 components: - type: Transform pos: -18.5,-66.5 parent: 2 - - uid: 6217 + - uid: 6170 components: - type: Transform pos: -19.5,-66.5 parent: 2 - - uid: 6218 + - uid: 6171 components: - type: Transform pos: 59.5,-9.5 parent: 2 - - uid: 6219 + - uid: 6172 components: - type: Transform pos: 60.5,-9.5 parent: 2 - - uid: 6220 + - uid: 6173 components: - type: Transform pos: 61.5,-9.5 parent: 2 - - uid: 6221 + - uid: 6174 components: - type: Transform pos: 62.5,-9.5 parent: 2 - - uid: 6222 + - uid: 6175 components: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 6223 + - uid: 6176 components: - type: Transform pos: 64.5,-9.5 parent: 2 - - uid: 6224 + - uid: 6177 components: - type: Transform pos: 65.5,-9.5 parent: 2 - - uid: 6225 + - uid: 6178 components: - type: Transform pos: 65.5,-10.5 parent: 2 - - uid: 6226 + - uid: 6179 components: - type: Transform pos: 65.5,-11.5 parent: 2 - - uid: 6227 + - uid: 6180 components: - type: Transform pos: 65.5,-10.5 parent: 2 - - uid: 6228 + - uid: 6181 components: - type: Transform pos: -20.5,-66.5 parent: 2 - - uid: 6229 + - uid: 6182 components: - type: Transform pos: -22.5,-66.5 parent: 2 - - uid: 6230 + - uid: 6183 components: - type: Transform pos: -22.5,-65.5 parent: 2 - - uid: 6231 + - uid: 6184 components: - type: Transform pos: 65.5,-28.5 parent: 2 - - uid: 6232 + - uid: 6185 components: - type: Transform pos: 65.5,-29.5 parent: 2 - - uid: 6233 + - uid: 6186 components: - type: Transform pos: -21.5,-66.5 parent: 2 - - uid: 6234 + - uid: 6187 components: - type: Transform pos: -22.5,-64.5 parent: 2 - - uid: 6235 + - uid: 6188 components: - type: Transform pos: -22.5,-63.5 parent: 2 - - uid: 6236 + - uid: 6189 components: - type: Transform pos: -22.5,-67.5 parent: 2 - - uid: 6237 + - uid: 6190 components: - type: Transform pos: -22.5,-68.5 parent: 2 - - uid: 6238 + - uid: 6191 components: - type: Transform pos: -22.5,-69.5 parent: 2 - - uid: 6239 + - uid: 6192 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 6240 + - uid: 6193 components: - type: Transform pos: 55.5,-22.5 parent: 2 - - uid: 6241 + - uid: 6194 components: - type: Transform pos: 55.5,-23.5 parent: 2 - - uid: 6242 + - uid: 6195 components: - type: Transform pos: 55.5,-24.5 parent: 2 - - uid: 6243 + - uid: 6196 components: - type: Transform pos: 55.5,-25.5 parent: 2 - - uid: 6244 + - uid: 6197 components: - type: Transform pos: 55.5,-26.5 parent: 2 - - uid: 6245 + - uid: 6198 components: - type: Transform pos: 55.5,-27.5 parent: 2 - - uid: 6246 + - uid: 6199 components: - type: Transform pos: 55.5,-28.5 parent: 2 - - uid: 6247 + - uid: 6200 components: - type: Transform pos: 55.5,-29.5 parent: 2 - - uid: 6248 + - uid: 6201 components: - type: Transform pos: -23.5,-66.5 parent: 2 - - uid: 6249 + - uid: 6202 components: - type: Transform pos: 55.5,-17.5 parent: 2 - - uid: 6250 + - uid: 6203 components: - type: Transform pos: 55.5,-16.5 parent: 2 - - uid: 6251 + - uid: 6204 components: - type: Transform pos: 55.5,-15.5 parent: 2 - - uid: 6252 + - uid: 6205 components: - type: Transform pos: 55.5,-14.5 parent: 2 - - uid: 6253 + - uid: 6206 components: - type: Transform pos: 55.5,-13.5 parent: 2 - - uid: 6254 + - uid: 6207 components: - type: Transform pos: 55.5,-12.5 parent: 2 - - uid: 6255 + - uid: 6208 components: - type: Transform pos: 55.5,-11.5 parent: 2 - - uid: 6256 + - uid: 6209 components: - type: Transform pos: 64.5,-11.5 parent: 2 - - uid: 6257 + - uid: 6210 components: - type: Transform pos: 63.5,-11.5 parent: 2 - - uid: 6258 + - uid: 6211 components: - type: Transform pos: -22.5,-70.5 parent: 2 - - uid: 6259 + - uid: 6212 components: - type: Transform pos: -22.5,-71.5 parent: 2 - - uid: 6260 + - uid: 6213 components: - type: Transform pos: -22.5,-72.5 parent: 2 - - uid: 6261 + - uid: 6214 components: - type: Transform pos: -22.5,-73.5 parent: 2 - - uid: 6262 + - uid: 6215 components: - type: Transform pos: -22.5,-74.5 parent: 2 - - uid: 6263 + - uid: 6216 components: - type: Transform pos: 63.5,-12.5 parent: 2 - - uid: 6264 + - uid: 6217 components: - type: Transform pos: 63.5,-13.5 parent: 2 - - uid: 6265 + - uid: 6218 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 6266 + - uid: 6219 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 6267 + - uid: 6220 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 6268 + - uid: 6221 components: - type: Transform pos: 63.5,-17.5 parent: 2 - - uid: 6269 + - uid: 6222 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 6270 + - uid: 6223 components: - type: Transform pos: 63.5,-23.5 parent: 2 - - uid: 6271 + - uid: 6224 components: - type: Transform pos: 63.5,-24.5 parent: 2 - - uid: 6272 + - uid: 6225 components: - type: Transform pos: 63.5,-25.5 parent: 2 - - uid: 6273 + - uid: 6226 components: - type: Transform pos: 63.5,-26.5 parent: 2 - - uid: 6274 + - uid: 6227 components: - type: Transform pos: 63.5,-27.5 parent: 2 - - uid: 6275 + - uid: 6228 components: - type: Transform pos: 63.5,-28.5 parent: 2 - - uid: 6276 + - uid: 6229 components: - type: Transform pos: 63.5,-29.5 parent: 2 - - uid: 6277 + - uid: 6230 components: - type: Transform pos: 65.5,-29.5 parent: 2 - - uid: 6278 + - uid: 6231 components: - type: Transform pos: 65.5,-28.5 parent: 2 - - uid: 6279 + - uid: 6232 components: - type: Transform pos: 64.5,-28.5 parent: 2 - - uid: 6280 + - uid: 6233 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 6281 + - uid: 6234 components: - type: Transform pos: -20.5,-79.5 parent: 2 - - uid: 6282 + - uid: 6235 components: - type: Transform pos: -20.5,-80.5 parent: 2 - - uid: 6283 + - uid: 6236 components: - type: Transform pos: -21.5,-80.5 parent: 2 - - uid: 6284 + - uid: 6237 components: - type: Transform pos: -22.5,-80.5 parent: 2 - - uid: 6285 + - uid: 6238 components: - type: Transform pos: -23.5,-80.5 parent: 2 - - uid: 6286 + - uid: 6239 components: - type: Transform pos: -19.5,-80.5 parent: 2 - - uid: 6287 + - uid: 6240 components: - type: Transform pos: -18.5,-80.5 parent: 2 - - uid: 6288 + - uid: 6241 components: - type: Transform pos: -17.5,-80.5 parent: 2 - - uid: 6289 + - uid: 6242 components: - type: Transform pos: -16.5,-80.5 parent: 2 - - uid: 6290 + - uid: 6243 components: - type: Transform pos: -15.5,-80.5 parent: 2 - - uid: 6291 + - uid: 6244 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 6292 + - uid: 6245 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 6293 + - uid: 6246 components: - type: Transform pos: -14.5,-80.5 parent: 2 - - uid: 6294 + - uid: 6247 components: - type: Transform pos: -13.5,-80.5 parent: 2 - - uid: 6295 + - uid: 6248 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 6296 + - uid: 6249 components: - type: Transform pos: 52.5,-14.5 parent: 2 - - uid: 6297 + - uid: 6250 components: - type: Transform pos: 52.5,-15.5 parent: 2 - - uid: 6298 + - uid: 6251 components: - type: Transform pos: 52.5,-16.5 parent: 2 - - uid: 6299 + - uid: 6252 components: - type: Transform pos: -13.5,-79.5 parent: 2 - - uid: 6300 + - uid: 6253 components: - type: Transform pos: -13.5,-78.5 parent: 2 - - uid: 6301 + - uid: 6254 components: - type: Transform pos: -13.5,-77.5 parent: 2 - - uid: 6302 + - uid: 6255 components: - type: Transform pos: -14.5,-77.5 parent: 2 - - uid: 6303 + - uid: 6256 components: - type: Transform pos: -15.5,-77.5 parent: 2 - - uid: 6304 + - uid: 6257 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 6305 + - uid: 6258 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 6306 + - uid: 6259 components: - type: Transform pos: -16.5,-77.5 parent: 2 - - uid: 6307 + - uid: 6260 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 6308 + - uid: 6261 components: - type: Transform pos: 52.5,-14.5 parent: 2 - - uid: 6309 + - uid: 6262 components: - type: Transform pos: 52.5,-15.5 parent: 2 - - uid: 6310 + - uid: 6263 components: - type: Transform pos: 52.5,-16.5 parent: 2 - - uid: 6311 + - uid: 6264 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 6312 + - uid: 6265 components: - type: Transform pos: 53.5,-22.5 parent: 2 - - uid: 6313 + - uid: 6266 components: - type: Transform pos: -12.5,-77.5 parent: 2 - - uid: 6314 + - uid: 6267 components: - type: Transform pos: 52.5,-23.5 parent: 2 - - uid: 6315 + - uid: 6268 components: - type: Transform pos: 52.5,-24.5 parent: 2 - - uid: 6316 + - uid: 6269 components: - type: Transform pos: 52.5,-25.5 parent: 2 - - uid: 6317 + - uid: 6270 components: - type: Transform pos: 48.5,-22.5 parent: 2 - - uid: 6318 + - uid: 6271 components: - type: Transform pos: 48.5,-23.5 parent: 2 - - uid: 6319 + - uid: 6272 components: - type: Transform pos: 48.5,-24.5 parent: 2 - - uid: 6320 + - uid: 6273 components: - type: Transform pos: 48.5,-25.5 parent: 2 - - uid: 6321 + - uid: 6274 components: - type: Transform pos: 47.5,-22.5 parent: 2 - - uid: 6322 + - uid: 6275 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 6323 + - uid: 6276 components: - type: Transform pos: 44.5,-22.5 parent: 2 - - uid: 6324 + - uid: 6277 components: - type: Transform pos: 44.5,-23.5 parent: 2 - - uid: 6325 + - uid: 6278 components: - type: Transform pos: 44.5,-24.5 parent: 2 - - uid: 6326 + - uid: 6279 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 6327 + - uid: 6280 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 6328 + - uid: 6281 components: - type: Transform pos: 43.5,-22.5 parent: 2 - - uid: 6329 + - uid: 6282 components: - type: Transform pos: -14.5,-66.5 parent: 2 - - uid: 6330 + - uid: 6283 components: - type: Transform pos: -13.5,-66.5 parent: 2 - - uid: 6331 + - uid: 6284 components: - type: Transform pos: -12.5,-66.5 parent: 2 - - uid: 6332 + - uid: 6285 components: - type: Transform pos: 45.5,-12.5 parent: 2 - - uid: 6333 + - uid: 6286 components: - type: Transform pos: 45.5,-13.5 parent: 2 - - uid: 6334 + - uid: 6287 components: - type: Transform pos: 45.5,-14.5 parent: 2 - - uid: 6335 + - uid: 6288 components: - type: Transform pos: 45.5,-15.5 parent: 2 - - uid: 6336 + - uid: 6289 components: - type: Transform pos: 45.5,-16.5 parent: 2 - - uid: 6337 + - uid: 6290 components: - type: Transform pos: 46.5,-16.5 parent: 2 - - uid: 6338 + - uid: 6291 components: - type: Transform pos: 47.5,-16.5 parent: 2 - - uid: 6339 + - uid: 6292 components: - type: Transform pos: -16.5,-67.5 parent: 2 - - uid: 6340 + - uid: 6293 components: - type: Transform pos: -17.5,-70.5 parent: 2 - - uid: 6341 + - uid: 6294 components: - type: Transform pos: 48.5,-15.5 parent: 2 - - uid: 6342 + - uid: 6295 components: - type: Transform pos: 48.5,-14.5 parent: 2 - - uid: 6343 + - uid: 6296 components: - type: Transform pos: 48.5,-13.5 parent: 2 - - uid: 6344 + - uid: 6297 components: - type: Transform pos: -16.5,-68.5 parent: 2 - - uid: 6345 + - uid: 6298 components: - type: Transform pos: -16.5,-69.5 parent: 2 - - uid: 6346 + - uid: 6299 components: - type: Transform pos: -16.5,-70.5 parent: 2 - - uid: 6347 + - uid: 6300 components: - type: Transform pos: -16.5,-71.5 parent: 2 - - uid: 6348 + - uid: 6301 components: - type: Transform pos: -16.5,-72.5 parent: 2 - - uid: 6349 + - uid: 6302 components: - type: Transform pos: -16.5,-73.5 parent: 2 - - uid: 6350 + - uid: 6303 components: - type: Transform pos: -16.5,-74.5 parent: 2 - - uid: 6351 + - uid: 6304 components: - type: Transform pos: -16.5,-75.5 parent: 2 - - uid: 6352 + - uid: 6305 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 6353 + - uid: 6306 components: - type: Transform pos: 48.5,-16.5 parent: 2 - - uid: 6354 + - uid: 6307 components: - type: Transform pos: -19.5,-70.5 parent: 2 - - uid: 6355 + - uid: 6308 components: - type: Transform pos: 46.5,-13.5 parent: 2 - - uid: 6356 + - uid: 6309 components: - type: Transform pos: 47.5,-13.5 parent: 2 - - uid: 6357 + - uid: 6310 components: - type: Transform pos: -20.5,-70.5 parent: 2 - - uid: 6358 + - uid: 6311 components: - type: Transform pos: -15.5,-70.5 parent: 2 - - uid: 6359 + - uid: 6312 components: - type: Transform pos: -14.5,-70.5 parent: 2 - - uid: 6360 + - uid: 6313 components: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 6361 + - uid: 6314 components: - type: Transform pos: -12.5,-70.5 parent: 2 - - uid: 6362 + - uid: 6315 components: - type: Transform pos: -17.5,-75.5 parent: 2 - - uid: 6363 + - uid: 6316 components: - type: Transform pos: -18.5,-75.5 parent: 2 - - uid: 6364 + - uid: 6317 components: - type: Transform pos: -19.5,-75.5 parent: 2 - - uid: 6365 + - uid: 6318 components: - type: Transform pos: -20.5,-75.5 parent: 2 - - uid: 6366 + - uid: 6319 components: - type: Transform pos: -15.5,-75.5 parent: 2 - - uid: 6367 + - uid: 6320 components: - type: Transform pos: -14.5,-75.5 parent: 2 - - uid: 6368 + - uid: 6321 components: - type: Transform pos: -13.5,-75.5 parent: 2 - - uid: 6369 + - uid: 6322 components: - type: Transform pos: -12.5,-75.5 parent: 2 - - uid: 6370 + - uid: 6323 components: - type: Transform pos: 43.5,-18.5 parent: 2 - - uid: 6371 + - uid: 6324 components: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 6372 + - uid: 6325 components: - type: Transform pos: 41.5,-18.5 parent: 2 - - uid: 6373 + - uid: 6326 components: - type: Transform pos: 40.5,-18.5 parent: 2 - - uid: 6374 + - uid: 6327 components: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 6375 + - uid: 6328 components: - type: Transform pos: 40.5,-19.5 parent: 2 - - uid: 6376 + - uid: 6329 components: - type: Transform pos: 40.5,-20.5 parent: 2 - - uid: 6377 + - uid: 6330 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 6378 + - uid: 6331 components: - type: Transform pos: 41.5,-12.5 parent: 2 - - uid: 6379 + - uid: 6332 components: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 6380 + - uid: 6333 components: - type: Transform pos: 40.5,-11.5 parent: 2 - - uid: 6381 + - uid: 6334 components: - type: Transform pos: 39.5,-11.5 parent: 2 - - uid: 6382 + - uid: 6335 components: - type: Transform pos: 38.5,-11.5 parent: 2 - - uid: 6383 + - uid: 6336 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 6384 + - uid: 6337 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 6385 + - uid: 6338 components: - type: Transform pos: 35.5,-11.5 parent: 2 - - uid: 6386 + - uid: 6339 components: - type: Transform pos: 34.5,-11.5 parent: 2 - - uid: 6387 + - uid: 6340 components: - type: Transform pos: 33.5,-11.5 parent: 2 - - uid: 6388 + - uid: 6341 components: - type: Transform pos: 37.5,-10.5 parent: 2 - - uid: 6389 + - uid: 6342 components: - type: Transform pos: 37.5,-9.5 parent: 2 - - uid: 6390 + - uid: 6343 components: - type: Transform pos: 37.5,-8.5 parent: 2 - - uid: 6391 + - uid: 6344 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 6392 + - uid: 6345 components: - type: Transform pos: 37.5,-12.5 parent: 2 - - uid: 6393 + - uid: 6346 components: - type: Transform pos: 37.5,-13.5 parent: 2 - - uid: 6394 + - uid: 6347 components: - type: Transform pos: 37.5,-14.5 parent: 2 - - uid: 6395 + - uid: 6348 components: - type: Transform pos: 37.5,-15.5 parent: 2 - - uid: 6396 + - uid: 6349 components: - type: Transform pos: -20.5,-74.5 parent: 2 - - uid: 6397 + - uid: 6350 components: - type: Transform pos: -20.5,-73.5 parent: 2 - - uid: 6398 + - uid: 6351 components: - type: Transform pos: -12.5,-74.5 parent: 2 - - uid: 6399 + - uid: 6352 components: - type: Transform pos: -12.5,-73.5 parent: 2 - - uid: 6400 + - uid: 6353 components: - type: Transform pos: 36.5,-15.5 parent: 2 - - uid: 6401 + - uid: 6354 components: - type: Transform pos: 35.5,-15.5 parent: 2 - - uid: 6402 + - uid: 6355 components: - type: Transform pos: 34.5,-15.5 parent: 2 - - uid: 6403 + - uid: 6356 components: - type: Transform pos: 33.5,-15.5 parent: 2 - - uid: 6404 + - uid: 6357 components: - type: Transform pos: 38.5,-15.5 parent: 2 - - uid: 6405 + - uid: 6358 components: - type: Transform pos: 39.5,-15.5 parent: 2 - - uid: 6406 + - uid: 6359 components: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 6407 + - uid: 6360 components: - type: Transform pos: 41.5,-15.5 parent: 2 - - uid: 6408 + - uid: 6361 components: - type: Transform pos: -20.5,-69.5 parent: 2 - - uid: 6409 + - uid: 6362 components: - type: Transform pos: 41.5,-16.5 parent: 2 - - uid: 6410 + - uid: 6363 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 6411 + - uid: 6364 components: - type: Transform pos: 39.5,-16.5 parent: 2 - - uid: 6412 + - uid: 6365 components: - type: Transform pos: -12.5,-69.5 parent: 2 - - uid: 6413 + - uid: 6366 components: - type: Transform pos: -12.5,-68.5 parent: 2 - - uid: 6414 + - uid: 6367 components: - type: Transform pos: 41.5,-14.5 parent: 2 - - uid: 6415 + - uid: 6368 components: - type: Transform pos: 41.5,-13.5 parent: 2 - - uid: 6416 + - uid: 6369 components: - type: Transform pos: 41.5,-10.5 parent: 2 - - uid: 6417 + - uid: 6370 components: - type: Transform pos: 41.5,-9.5 parent: 2 - - uid: 6418 + - uid: 6371 components: - type: Transform pos: 41.5,-8.5 parent: 2 - - uid: 6419 + - uid: 6372 components: - type: Transform pos: 41.5,-7.5 parent: 2 - - uid: 6420 + - uid: 6373 components: - type: Transform pos: 40.5,-7.5 parent: 2 - - uid: 6421 + - uid: 6374 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 6422 + - uid: 6375 components: - type: Transform pos: 38.5,-7.5 parent: 2 - - uid: 6423 + - uid: 6376 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 6424 + - uid: 6377 components: - type: Transform pos: 36.5,-7.5 parent: 2 - - uid: 6425 + - uid: 6378 components: - type: Transform pos: 35.5,-7.5 parent: 2 - - uid: 6426 + - uid: 6379 components: - type: Transform pos: 34.5,-7.5 parent: 2 - - uid: 6427 + - uid: 6380 components: - type: Transform pos: 33.5,-7.5 parent: 2 - - uid: 6428 + - uid: 6381 components: - type: Transform pos: 33.5,-6.5 parent: 2 - - uid: 6429 + - uid: 6382 components: - type: Transform pos: 33.5,-8.5 parent: 2 - - uid: 6430 + - uid: 6383 components: - type: Transform pos: 33.5,-9.5 parent: 2 - - uid: 6431 + - uid: 6384 components: - type: Transform pos: 33.5,-10.5 parent: 2 - - uid: 6432 + - uid: 6385 components: - type: Transform pos: 33.5,-10.5 parent: 2 - - uid: 6433 + - uid: 6386 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 6434 + - uid: 6387 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 6435 + - uid: 6388 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 6436 + - uid: 6389 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 6437 + - uid: 6390 components: - type: Transform pos: -4.5,-84.5 parent: 2 - - uid: 6438 + - uid: 6391 components: - type: Transform pos: -5.5,-84.5 parent: 2 - - uid: 6439 + - uid: 6392 components: - type: Transform pos: -5.5,-83.5 parent: 2 - - uid: 6440 + - uid: 6393 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 6441 + - uid: 6394 components: - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 6442 + - uid: 6395 components: - type: Transform pos: 2.5,-81.5 parent: 2 - - uid: 6443 + - uid: 6396 components: - type: Transform pos: 2.5,-82.5 parent: 2 - - uid: 6444 + - uid: 6397 components: - type: Transform pos: 2.5,-83.5 parent: 2 - - uid: 6445 + - uid: 6398 components: - type: Transform pos: 2.5,-84.5 parent: 2 - - uid: 6446 + - uid: 6399 components: - type: Transform pos: 2.5,-85.5 parent: 2 - - uid: 6447 + - uid: 6400 components: - type: Transform pos: -5.5,-81.5 parent: 2 - - uid: 6448 + - uid: 6401 components: - type: Transform pos: -6.5,-81.5 parent: 2 - - uid: 6449 + - uid: 6402 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 6450 + - uid: 6403 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 6451 + - uid: 6404 components: - type: Transform pos: -7.5,-81.5 parent: 2 - - uid: 6452 + - uid: 6405 components: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 6453 + - uid: 6406 components: - type: Transform pos: 46.5,-10.5 parent: 2 - - uid: 6454 + - uid: 6407 components: - type: Transform pos: 47.5,-10.5 parent: 2 - - uid: 6455 + - uid: 6408 components: - type: Transform pos: 48.5,-10.5 parent: 2 - - uid: 6456 + - uid: 6409 components: - type: Transform pos: 49.5,-10.5 parent: 2 - - uid: 6457 + - uid: 6410 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 6458 + - uid: 6411 components: - type: Transform pos: 51.5,-10.5 parent: 2 - - uid: 6459 + - uid: 6412 components: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 6460 + - uid: 6413 components: - type: Transform pos: 53.5,-10.5 parent: 2 - - uid: 6461 + - uid: 6414 components: - type: Transform pos: -8.5,-81.5 parent: 2 - - uid: 6462 + - uid: 6415 components: - type: Transform pos: 46.5,-11.5 parent: 2 - - uid: 6463 + - uid: 6416 components: - type: Transform pos: -9.5,-81.5 parent: 2 - - uid: 6464 + - uid: 6417 components: - type: Transform pos: -10.5,-81.5 parent: 2 - - uid: 6465 + - uid: 6418 components: - type: Transform pos: -10.5,-80.5 parent: 2 - - uid: 6466 + - uid: 6419 components: - type: Transform pos: -10.5,-79.5 parent: 2 - - uid: 6467 + - uid: 6420 components: - type: Transform pos: -9.5,-77.5 parent: 2 - - uid: 6468 + - uid: 6421 components: - type: Transform pos: -10.5,-77.5 parent: 2 - - uid: 6469 + - uid: 6422 components: - type: Transform pos: 52.5,-40.5 parent: 2 - - uid: 6470 + - uid: 6423 components: - type: Transform pos: 53.5,-40.5 parent: 2 - - uid: 6471 + - uid: 6424 components: - type: Transform pos: 54.5,-40.5 parent: 2 - - uid: 6472 + - uid: 6425 components: - type: Transform pos: 29.5,-33.5 parent: 2 - - uid: 6473 + - uid: 6426 components: - type: Transform pos: 16.5,-34.5 parent: 2 - - uid: 6474 + - uid: 6427 components: - type: Transform pos: 16.5,-38.5 parent: 2 - - uid: 6475 + - uid: 6428 components: - type: Transform pos: 28.5,-39.5 parent: 2 - - uid: 6476 + - uid: 6429 components: - type: Transform pos: 28.5,-43.5 parent: 2 - - uid: 6477 + - uid: 6430 components: - type: Transform pos: 28.5,-49.5 parent: 2 - - uid: 6478 + - uid: 6431 components: - type: Transform pos: 10.5,-58.5 parent: 2 - - uid: 6479 + - uid: 6432 components: - type: Transform pos: 10.5,-57.5 parent: 2 - - uid: 6480 + - uid: 6433 components: - type: Transform pos: 10.5,-56.5 parent: 2 - - uid: 6481 + - uid: 6434 components: - type: Transform pos: 10.5,-55.5 parent: 2 - - uid: 6482 + - uid: 6435 components: - type: Transform pos: 10.5,-54.5 parent: 2 - - uid: 6483 + - uid: 6436 components: - type: Transform pos: 9.5,-55.5 parent: 2 - - uid: 6484 + - uid: 6437 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 6485 + - uid: 6438 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 6486 + - uid: 6439 components: - type: Transform pos: 6.5,-55.5 parent: 2 - - uid: 6487 + - uid: 6440 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 6488 + - uid: 6441 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 6489 + - uid: 6442 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 6490 + - uid: 6443 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 6491 + - uid: 6444 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 6492 + - uid: 6445 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 6493 + - uid: 6446 components: - type: Transform pos: 0.50000006,-57.5 parent: 2 - - uid: 6494 + - uid: 6447 components: - type: Transform pos: -0.5,-57.5 parent: 2 - - uid: 6495 + - uid: 6448 components: - type: Transform pos: -0.5,-58.5 parent: 2 - - uid: 6496 + - uid: 6449 components: - type: Transform pos: -0.49999997,-59.5 parent: 2 - - uid: 6497 + - uid: 6450 components: - type: Transform pos: -0.5,-60.5 parent: 2 - - uid: 6498 + - uid: 6451 components: - type: Transform pos: -0.5,-61.5 parent: 2 - - uid: 6499 + - uid: 6452 components: - type: Transform pos: -0.5,-63.5 parent: 2 - - uid: 6500 + - uid: 6453 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 6501 + - uid: 6454 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 6502 + - uid: 6455 components: - type: Transform pos: 8.5,-64.5 parent: 2 - - uid: 6503 + - uid: 6456 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 6504 + - uid: 6457 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 6505 + - uid: 6458 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 6506 + - uid: 6459 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 6507 + - uid: 6460 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 6508 + - uid: 6461 components: - type: Transform pos: -0.5,-50.5 parent: 2 - - uid: 6509 + - uid: 6462 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 6510 + - uid: 6463 components: - type: Transform pos: -0.5,-48.5 parent: 2 - - uid: 6511 + - uid: 6464 components: - type: Transform pos: -0.49999997,-47.5 parent: 2 - - uid: 6512 + - uid: 6465 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 6513 + - uid: 6466 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 6514 + - uid: 6467 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 6515 + - uid: 6468 components: - type: Transform pos: -0.5,-43.5 parent: 2 - - uid: 6516 + - uid: 6469 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 6517 + - uid: 6470 components: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 6518 + - uid: 6471 components: - type: Transform pos: -0.5,-40.5 parent: 2 - - uid: 6519 + - uid: 6472 components: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 6520 + - uid: 6473 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 6521 + - uid: 6474 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 6522 + - uid: 6475 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - uid: 6523 + - uid: 6476 components: - type: Transform pos: -0.49999997,-35.5 parent: 2 - - uid: 6524 + - uid: 6477 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 6525 + - uid: 6478 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 6526 + - uid: 6479 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 6527 + - uid: 6480 components: - type: Transform pos: -0.5,-31.5 parent: 2 - - uid: 6528 + - uid: 6481 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 6529 + - uid: 6482 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 6530 + - uid: 6483 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 6531 + - uid: 6484 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 6532 + - uid: 6485 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 6533 + - uid: 6486 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 6534 + - uid: 6487 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 6535 + - uid: 6488 components: - type: Transform pos: -0.49999997,-23.5 parent: 2 - - uid: 6536 + - uid: 6489 components: - type: Transform pos: -0.5,-22.5 parent: 2 - - uid: 6537 + - uid: 6490 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 6538 + - uid: 6491 components: - type: Transform pos: 0.50000006,-50.5 parent: 2 - - uid: 6539 + - uid: 6492 components: - type: Transform pos: 0.49999997,-43.5 parent: 2 - - uid: 6540 + - uid: 6493 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 6541 + - uid: 6494 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 6542 + - uid: 6495 components: - type: Transform pos: 0.49999997,-45.5 parent: 2 - - uid: 6543 + - uid: 6496 components: - type: Transform pos: 0.49999997,-38.5 parent: 2 - - uid: 6544 + - uid: 6497 components: - type: Transform pos: -1.5,-39.5 parent: 2 - - uid: 6545 + - uid: 6498 components: - type: Transform pos: 0.49999997,-34.5 parent: 2 - - uid: 6546 + - uid: 6499 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 6547 + - uid: 6500 components: - type: Transform pos: 0.50000006,-24.5 parent: 2 - - uid: 6548 + - uid: 6501 components: - type: Transform pos: -34.5,16.5 parent: 2 - - uid: 6549 + - uid: 6502 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 6550 + - uid: 6503 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 6551 + - uid: 6504 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 6552 + - uid: 6505 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 6553 + - uid: 6506 components: - type: Transform pos: 0.49999997,-19.5 parent: 2 - - uid: 6554 + - uid: 6507 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 6555 + - uid: 6508 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 6556 + - uid: 6509 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 6557 + - uid: 6510 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 6558 + - uid: 6511 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 6559 + - uid: 6512 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 6560 + - uid: 6513 components: - type: Transform pos: 7.5,-19.5 parent: 2 - - uid: 6561 + - uid: 6514 components: - type: Transform pos: 8.5,-19.5 parent: 2 - - uid: 6562 + - uid: 6515 components: - type: Transform pos: 9.5,-19.5 parent: 2 - - uid: 6563 + - uid: 6516 components: - type: Transform pos: 10.5,-19.5 parent: 2 - - uid: 6564 + - uid: 6517 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 6565 + - uid: 6518 components: - type: Transform pos: 12.5,-19.5 parent: 2 - - uid: 6566 + - uid: 6519 components: - type: Transform pos: 13.5,-19.5 parent: 2 - - uid: 6567 + - uid: 6520 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 6568 + - uid: 6521 components: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 6569 + - uid: 6522 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 6570 + - uid: 6523 components: - type: Transform pos: 17.5,-19.5 parent: 2 - - uid: 6571 + - uid: 6524 components: - type: Transform pos: -39.5,-63.5 parent: 2 - - uid: 6572 + - uid: 6525 components: - type: Transform pos: -39.5,-64.5 parent: 2 - - uid: 6573 + - uid: 6526 components: - type: Transform pos: -39.5,-65.5 parent: 2 - - uid: 6574 + - uid: 6527 components: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 6575 + - uid: 6528 components: - type: Transform pos: 17.5,-17.5 parent: 2 - - uid: 6576 + - uid: 6529 components: - type: Transform pos: 17.5,-16.5 parent: 2 - - uid: 6577 + - uid: 6530 components: - type: Transform pos: 17.5,-15.5 parent: 2 - - uid: 6578 + - uid: 6531 components: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 6579 + - uid: 6532 components: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 6580 + - uid: 6533 components: - type: Transform pos: 17.5,-12.5 parent: 2 - - uid: 6581 + - uid: 6534 components: - type: Transform pos: 17.5,-11.5 parent: 2 - - uid: 6582 + - uid: 6535 components: - type: Transform pos: 17.5,-10.5 parent: 2 - - uid: 6583 + - uid: 6536 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - uid: 6584 + - uid: 6537 components: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 6585 + - uid: 6538 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 6586 + - uid: 6539 components: - type: Transform pos: -38.5,-65.5 parent: 2 - - uid: 6587 + - uid: 6540 components: - type: Transform pos: -37.5,-65.5 parent: 2 - - uid: 6588 + - uid: 6541 components: - type: Transform pos: -36.5,-65.5 parent: 2 - - uid: 6589 + - uid: 6542 components: - type: Transform pos: -35.5,-65.5 parent: 2 - - uid: 6590 + - uid: 6543 components: - type: Transform pos: -34.5,-65.5 parent: 2 - - uid: 6591 + - uid: 6544 components: - type: Transform pos: -33.5,-65.5 parent: 2 - - uid: 6592 + - uid: 6545 components: - type: Transform pos: -32.5,-65.5 parent: 2 - - uid: 6593 + - uid: 6546 components: - type: Transform pos: -31.5,-65.5 parent: 2 - - uid: 6594 + - uid: 6547 components: - type: Transform pos: -31.5,-66.5 parent: 2 - - uid: 6595 + - uid: 6548 components: - type: Transform pos: -30.5,-65.5 parent: 2 - - uid: 6596 + - uid: 6549 components: - type: Transform pos: -29.5,-65.5 parent: 2 - - uid: 6597 + - uid: 6550 components: - type: Transform pos: -36.5,-64.5 parent: 2 - - uid: 6598 + - uid: 6551 components: - type: Transform pos: -36.5,-63.5 parent: 2 - - uid: 6599 + - uid: 6552 components: - type: Transform pos: -36.5,-62.5 parent: 2 - - uid: 6600 + - uid: 6553 components: - type: Transform pos: -36.5,-61.5 parent: 2 - - uid: 6601 + - uid: 6554 components: - type: Transform pos: -36.5,-60.5 parent: 2 - - uid: 6602 + - uid: 6555 components: - type: Transform pos: -28.5,-60.5 parent: 2 - - uid: 6603 + - uid: 6556 components: - type: Transform pos: -29.5,-60.5 parent: 2 - - uid: 6604 + - uid: 6557 components: - type: Transform pos: -30.5,-60.5 parent: 2 - - uid: 6605 + - uid: 6558 components: - type: Transform pos: -31.5,-60.5 parent: 2 - - uid: 6606 + - uid: 6559 components: - type: Transform pos: -32.5,-60.5 parent: 2 - - uid: 6607 + - uid: 6560 components: - type: Transform pos: -32.5,-61.5 parent: 2 - - uid: 6608 + - uid: 6561 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 6609 + - uid: 6562 components: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 6610 + - uid: 6563 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 6611 + - uid: 6564 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 6612 + - uid: 6565 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 6613 + - uid: 6566 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 6614 + - uid: 6567 components: - type: Transform pos: -7.5,-19.5 parent: 2 - - uid: 6615 + - uid: 6568 components: - type: Transform pos: -8.5,-19.5 parent: 2 - - uid: 6616 + - uid: 6569 components: - type: Transform pos: -9.5,-19.5 parent: 2 - - uid: 6617 + - uid: 6570 components: - type: Transform pos: -10.5,-19.5 parent: 2 - - uid: 6618 + - uid: 6571 components: - type: Transform pos: -11.5,-19.5 parent: 2 - - uid: 6619 + - uid: 6572 components: - type: Transform pos: -12.5,-19.5 parent: 2 - - uid: 6620 + - uid: 6573 components: - type: Transform pos: -13.5,-19.5 parent: 2 - - uid: 6621 + - uid: 6574 components: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 6622 + - uid: 6575 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 6623 + - uid: 6576 components: - type: Transform pos: -16.5,-19.5 parent: 2 - - uid: 6624 + - uid: 6577 components: - type: Transform pos: -17.5,-19.5 parent: 2 - - uid: 6625 + - uid: 6578 components: - type: Transform pos: -18.5,-19.5 parent: 2 - - uid: 6626 + - uid: 6579 components: - type: Transform pos: -18.5,-18.5 parent: 2 - - uid: 6627 + - uid: 6580 components: - type: Transform pos: -18.5,-17.5 parent: 2 - - uid: 6628 + - uid: 6581 components: - type: Transform pos: -18.5,-16.5 parent: 2 - - uid: 6629 + - uid: 6582 components: - type: Transform pos: -18.5,-15.5 parent: 2 - - uid: 6630 + - uid: 6583 components: - type: Transform pos: -18.5,-14.5 parent: 2 - - uid: 6631 + - uid: 6584 components: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 6632 + - uid: 6585 components: - type: Transform pos: -18.5,-12.5 parent: 2 - - uid: 6633 + - uid: 6586 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 6634 + - uid: 6587 components: - type: Transform pos: -18.5,-10.5 parent: 2 - - uid: 6635 + - uid: 6588 components: - type: Transform pos: -18.5,-9.5 parent: 2 - - uid: 6636 + - uid: 6589 components: - type: Transform pos: -18.5,-8.5 parent: 2 - - uid: 6637 + - uid: 6590 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 6638 + - uid: 6591 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 6639 + - uid: 6592 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - uid: 6640 + - uid: 6593 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 6641 + - uid: 6594 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 6642 + - uid: 6595 components: - type: Transform pos: -18.5,-5.5 parent: 2 - - uid: 6643 + - uid: 6596 components: - type: Transform pos: -37.5,-66.5 parent: 2 - - uid: 6644 + - uid: 6597 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 6645 + - uid: 6598 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 6646 + - uid: 6599 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 6647 + - uid: 6600 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 6648 + - uid: 6601 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 6649 + - uid: 6602 components: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 6650 + - uid: 6603 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 6651 + - uid: 6604 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 6652 + - uid: 6605 components: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 6653 + - uid: 6606 components: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 6654 + - uid: 6607 components: - type: Transform pos: -37.5,-67.5 parent: 2 - - uid: 6655 + - uid: 6608 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 6656 + - uid: 6609 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 6657 + - uid: 6610 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 6658 + - uid: 6611 components: - type: Transform pos: -21.5,5.5 parent: 2 - - uid: 6659 + - uid: 6612 components: - type: Transform pos: -22.5,5.5 parent: 2 - - uid: 6660 + - uid: 6613 components: - type: Transform pos: -23.5,5.5 parent: 2 - - uid: 6661 + - uid: 6614 components: - type: Transform pos: -24.5,5.5 parent: 2 - - uid: 6662 + - uid: 6615 components: - type: Transform pos: -25.5,5.5 parent: 2 - - uid: 6663 + - uid: 6616 components: - type: Transform pos: -26.5,5.5 parent: 2 - - uid: 6664 + - uid: 6617 components: - type: Transform pos: -27.5,5.5 parent: 2 - - uid: 6665 + - uid: 6618 components: - type: Transform pos: -28.5,5.5 parent: 2 - - uid: 6666 + - uid: 6619 components: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 6667 + - uid: 6620 components: - type: Transform pos: -30.5,5.5 parent: 2 - - uid: 6668 + - uid: 6621 components: - type: Transform pos: -31.5,5.5 parent: 2 - - uid: 6669 + - uid: 6622 components: - type: Transform pos: -32.5,5.5 parent: 2 - - uid: 6670 + - uid: 6623 components: - type: Transform pos: -33.5,5.5 parent: 2 - - uid: 6671 + - uid: 6624 components: - type: Transform pos: -34.5,5.5 parent: 2 - - uid: 6672 + - uid: 6625 components: - type: Transform pos: -35.5,5.5 parent: 2 - - uid: 6673 + - uid: 6626 components: - type: Transform pos: -36.5,5.5 parent: 2 - - uid: 6674 + - uid: 6627 components: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 6675 + - uid: 6628 components: - type: Transform pos: -38.5,5.5 parent: 2 - - uid: 6676 + - uid: 6629 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 6677 + - uid: 6630 components: - type: Transform pos: -40.5,11.5 parent: 2 - - uid: 6678 + - uid: 6631 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 6679 + - uid: 6632 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 6680 + - uid: 6633 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 6681 + - uid: 6634 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 6682 + - uid: 6635 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 6683 + - uid: 6636 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 6684 + - uid: 6637 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 6685 + - uid: 6638 components: - type: Transform pos: -41.5,4.5 parent: 2 - - uid: 6686 + - uid: 6639 components: - type: Transform pos: -40.5,5.5 parent: 2 - - uid: 6687 + - uid: 6640 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 6688 + - uid: 6641 components: - type: Transform pos: -41.5,13.5 parent: 2 - - uid: 6689 + - uid: 6642 components: - type: Transform pos: -41.5,14.5 parent: 2 - - uid: 6690 + - uid: 6643 components: - type: Transform pos: -41.5,15.5 parent: 2 - - uid: 6691 + - uid: 6644 components: - type: Transform pos: -41.5,16.5 parent: 2 - - uid: 6692 + - uid: 6645 components: - type: Transform pos: -41.5,17.5 parent: 2 - - uid: 6693 + - uid: 6646 components: - type: Transform pos: -41.5,18.5 parent: 2 - - uid: 6694 + - uid: 6647 components: - type: Transform pos: -41.5,19.5 parent: 2 - - uid: 6695 + - uid: 6648 components: - type: Transform pos: -41.5,20.5 parent: 2 - - uid: 6696 + - uid: 6649 components: - type: Transform pos: -41.5,21.5 parent: 2 - - uid: 6697 + - uid: 6650 components: - type: Transform pos: -41.5,22.5 parent: 2 - - uid: 6698 + - uid: 6651 components: - type: Transform pos: -41.5,23.5 parent: 2 - - uid: 6699 + - uid: 6652 components: - type: Transform pos: -43.5,12.5 parent: 2 - - uid: 6700 + - uid: 6653 components: - type: Transform pos: -42.5,12.5 parent: 2 - - uid: 6701 + - uid: 6654 components: - type: Transform pos: -44.5,12.5 parent: 2 - - uid: 6702 + - uid: 6655 components: - type: Transform pos: -42.5,9.5 parent: 2 - - uid: 6703 + - uid: 6656 components: - type: Transform pos: -43.5,9.5 parent: 2 - - uid: 6704 + - uid: 6657 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 6705 + - uid: 6658 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 6706 + - uid: 6659 components: - type: Transform pos: -35.5,16.5 parent: 2 - - uid: 6707 + - uid: 6660 components: - type: Transform pos: -35.5,17.5 parent: 2 - - uid: 6708 + - uid: 6661 components: - type: Transform pos: -35.5,18.5 parent: 2 - - uid: 6709 + - uid: 6662 components: - type: Transform pos: -35.5,19.5 parent: 2 - - uid: 6710 + - uid: 6663 components: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 6711 + - uid: 6664 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 6712 + - uid: 6665 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 6713 + - uid: 6666 components: - type: Transform pos: -33.5,20.5 parent: 2 - - uid: 6714 + - uid: 6667 components: - type: Transform pos: -33.5,19.5 parent: 2 - - uid: 6715 + - uid: 6668 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 6716 + - uid: 6669 components: - type: Transform pos: -35.5,14.5 parent: 2 - - uid: 6717 + - uid: 6670 components: - type: Transform pos: -35.5,13.5 parent: 2 - - uid: 6718 + - uid: 6671 components: - type: Transform pos: -35.5,12.5 parent: 2 - - uid: 6719 + - uid: 6672 components: - type: Transform pos: -35.5,11.5 parent: 2 - - uid: 6720 + - uid: 6673 components: - type: Transform pos: -35.5,10.5 parent: 2 - - uid: 6721 + - uid: 6674 components: - type: Transform pos: -35.5,9.5 parent: 2 - - uid: 6722 + - uid: 6675 components: - type: Transform pos: -35.5,8.5 parent: 2 - - uid: 6723 + - uid: 6676 components: - type: Transform pos: -35.5,15.5 parent: 2 - - uid: 6724 + - uid: 6677 components: - type: Transform pos: -33.5,12.5 parent: 2 - - uid: 6725 + - uid: 6678 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 6726 + - uid: 6679 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 6727 + - uid: 6680 components: - type: Transform pos: -34.5,12.5 parent: 2 - - uid: 6728 + - uid: 6681 components: - type: Transform pos: -36.5,12.5 parent: 2 - - uid: 6729 + - uid: 6682 components: - type: Transform pos: -37.5,12.5 parent: 2 - - uid: 6730 + - uid: 6683 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 6731 + - uid: 6684 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 6748 + - uid: 6685 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 6749 + - uid: 6686 components: - type: Transform pos: -70.5,-22.5 parent: 2 - - uid: 6750 + - uid: 6687 components: - type: Transform pos: -70.5,-23.5 parent: 2 - - uid: 6751 + - uid: 6688 components: - type: Transform pos: -70.5,-24.5 parent: 2 - - uid: 6752 + - uid: 6689 components: - type: Transform pos: -70.5,-25.5 parent: 2 - - uid: 6753 + - uid: 6690 components: - type: Transform pos: -70.5,-26.5 parent: 2 - - uid: 6754 + - uid: 6691 components: - type: Transform pos: -70.5,-27.5 parent: 2 - - uid: 6755 + - uid: 6692 components: - type: Transform pos: -70.5,-28.5 parent: 2 - - uid: 6756 + - uid: 6693 components: - type: Transform pos: -69.5,-25.5 parent: 2 - - uid: 6757 + - uid: 6694 components: - type: Transform pos: -67.5,-25.5 parent: 2 - - uid: 6758 + - uid: 6695 components: - type: Transform pos: -71.5,-25.5 parent: 2 - - uid: 6759 + - uid: 6696 components: - type: Transform pos: -69.5,-25.5 parent: 2 - - uid: 6760 + - uid: 6697 components: - type: Transform pos: -68.5,-25.5 parent: 2 - - uid: 6761 + - uid: 6698 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 6762 + - uid: 6699 components: - type: Transform pos: -67.5,-30.5 parent: 2 - - uid: 6763 + - uid: 6700 components: - type: Transform pos: -68.5,-30.5 parent: 2 - - uid: 6764 + - uid: 6701 components: - type: Transform pos: -69.5,-30.5 parent: 2 - - uid: 6765 + - uid: 6702 components: - type: Transform pos: -70.5,-30.5 parent: 2 - - uid: 6766 + - uid: 6703 components: - type: Transform pos: -71.5,-30.5 parent: 2 - - uid: 6767 + - uid: 6704 components: - type: Transform pos: -72.5,-30.5 parent: 2 - - uid: 6768 + - uid: 6705 components: - type: Transform pos: -73.5,-30.5 parent: 2 - - uid: 6769 + - uid: 6706 components: - type: Transform pos: -73.5,-29.5 parent: 2 - - uid: 6770 + - uid: 6707 components: - type: Transform pos: -74.5,-30.5 parent: 2 - - uid: 6771 + - uid: 6708 components: - type: Transform pos: -75.5,-30.5 parent: 2 - - uid: 6772 + - uid: 6709 components: - type: Transform pos: -76.5,-30.5 parent: 2 - - uid: 6773 + - uid: 6710 components: - type: Transform pos: -66.5,-30.5 parent: 2 - - uid: 6774 + - uid: 6711 components: - type: Transform pos: -65.5,-30.5 parent: 2 - - uid: 6775 + - uid: 6712 components: - type: Transform pos: -64.5,-30.5 parent: 2 - - uid: 6776 + - uid: 6713 components: - type: Transform pos: -63.5,-30.5 parent: 2 - - uid: 6777 + - uid: 6714 components: - type: Transform pos: -62.5,-30.5 parent: 2 - - uid: 6778 + - uid: 6715 components: - type: Transform pos: -61.5,-30.5 parent: 2 - - uid: 6779 + - uid: 6716 components: - type: Transform pos: -60.5,-30.5 parent: 2 - - uid: 6780 + - uid: 6717 components: - type: Transform pos: -59.5,-30.5 parent: 2 - - uid: 6781 + - uid: 6718 components: - type: Transform pos: -58.5,-30.5 parent: 2 - - uid: 6782 + - uid: 6719 components: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 6783 + - uid: 6720 components: - type: Transform pos: -56.5,-30.5 parent: 2 - - uid: 6784 + - uid: 6721 components: - type: Transform pos: -55.5,-30.5 parent: 2 - - uid: 6785 + - uid: 6722 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 6786 + - uid: 6723 components: - type: Transform pos: -54.5,-29.5 parent: 2 - - uid: 6787 + - uid: 6724 components: - type: Transform pos: -54.5,-28.5 parent: 2 - - uid: 6788 + - uid: 6725 components: - type: Transform pos: -54.5,-27.5 parent: 2 - - uid: 6789 + - uid: 6726 components: - type: Transform pos: -54.5,-26.5 parent: 2 - - uid: 6790 + - uid: 6727 components: - type: Transform pos: -54.5,-25.5 parent: 2 - - uid: 6791 + - uid: 6728 components: - type: Transform pos: -54.5,-24.5 parent: 2 - - uid: 6792 + - uid: 6729 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 6793 + - uid: 6730 components: - type: Transform pos: -51.5,-19.5 parent: 2 - - uid: 6794 + - uid: 6731 components: - type: Transform pos: -51.5,-20.5 parent: 2 - - uid: 6795 + - uid: 6732 components: - type: Transform pos: -51.5,-21.5 parent: 2 - - uid: 6796 + - uid: 6733 components: - type: Transform pos: -52.5,-21.5 parent: 2 - - uid: 6797 + - uid: 6734 components: - type: Transform pos: -53.5,-21.5 parent: 2 - - uid: 6798 + - uid: 6735 components: - type: Transform pos: -54.5,-21.5 parent: 2 - - uid: 6799 + - uid: 6736 components: - type: Transform pos: -55.5,-21.5 parent: 2 - - uid: 6800 + - uid: 6737 components: - type: Transform pos: -55.5,-20.5 parent: 2 - - uid: 6801 + - uid: 6738 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 6802 + - uid: 6739 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 6803 + - uid: 6740 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 6804 + - uid: 6741 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 6805 + - uid: 6742 components: - type: Transform pos: -59.5,-19.5 parent: 2 - - uid: 6806 + - uid: 6743 components: - type: Transform pos: -60.5,-19.5 parent: 2 - - uid: 6807 + - uid: 6744 components: - type: Transform pos: -61.5,-19.5 parent: 2 - - uid: 6808 + - uid: 6745 components: - type: Transform pos: -61.5,-20.5 parent: 2 - - uid: 6809 + - uid: 6746 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 6810 + - uid: 6747 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 6811 + - uid: 6748 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 6812 + - uid: 6749 components: - type: Transform pos: -74.5,-22.5 parent: 2 - - uid: 6813 + - uid: 6750 components: - type: Transform pos: -73.5,-22.5 parent: 2 - - uid: 6814 + - uid: 6751 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 6815 + - uid: 6752 components: - type: Transform pos: -74.5,-20.5 parent: 2 - - uid: 6816 + - uid: 6753 components: - type: Transform pos: -74.5,-19.5 parent: 2 - - uid: 6817 + - uid: 6754 components: - type: Transform pos: -73.5,-19.5 parent: 2 - - uid: 6818 + - uid: 6755 components: - type: Transform pos: -72.5,-19.5 parent: 2 - - uid: 6819 + - uid: 6756 components: - type: Transform pos: -71.5,-19.5 parent: 2 - - uid: 6820 + - uid: 6757 components: - type: Transform pos: -70.5,-19.5 parent: 2 - - uid: 6821 + - uid: 6758 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 6822 + - uid: 6759 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 6823 + - uid: 6760 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 6824 + - uid: 6761 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 6825 + - uid: 6762 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 6826 + - uid: 6763 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 6827 + - uid: 6764 components: - type: Transform pos: -75.5,-19.5 parent: 2 - - uid: 6828 + - uid: 6765 components: - type: Transform pos: -76.5,-19.5 parent: 2 - - uid: 6829 + - uid: 6766 components: - type: Transform pos: -77.5,-19.5 parent: 2 - - uid: 6830 + - uid: 6767 components: - type: Transform pos: -77.5,-26.5 parent: 2 - - uid: 6831 + - uid: 6768 components: - type: Transform pos: -76.5,-26.5 parent: 2 - - uid: 6832 + - uid: 6769 components: - type: Transform pos: -75.5,-26.5 parent: 2 - - uid: 6833 + - uid: 6770 components: - type: Transform pos: -74.5,-26.5 parent: 2 - - uid: 6834 + - uid: 6771 components: - type: Transform pos: -74.5,-25.5 parent: 2 - - uid: 6835 + - uid: 6772 components: - type: Transform pos: -74.5,-24.5 parent: 2 - - uid: 6836 + - uid: 6773 components: - type: Transform pos: -74.5,-23.5 parent: 2 - - uid: 6837 + - uid: 6774 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 6838 + - uid: 6775 components: - type: Transform pos: -73.5,-27.5 parent: 2 - - uid: 6839 + - uid: 6776 components: - type: Transform pos: -69.5,-32.5 parent: 2 - - uid: 6840 + - uid: 6777 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 6841 + - uid: 6778 components: - type: Transform pos: -58.5,-35.5 parent: 2 - - uid: 6842 + - uid: 6779 components: - type: Transform pos: -58.5,-36.5 parent: 2 - - uid: 6843 + - uid: 6780 components: - type: Transform pos: -58.5,-37.5 parent: 2 - - uid: 6844 + - uid: 6781 components: - type: Transform pos: -58.5,-38.5 parent: 2 - - uid: 6845 + - uid: 6782 components: - type: Transform pos: -58.5,-39.5 parent: 2 - - uid: 6846 + - uid: 6783 components: - type: Transform pos: -58.5,-40.5 parent: 2 - - uid: 6847 + - uid: 6784 components: - type: Transform pos: -58.5,-41.5 parent: 2 - - uid: 6848 + - uid: 6785 components: - type: Transform pos: -58.5,-42.5 parent: 2 - - uid: 6849 + - uid: 6786 components: - type: Transform pos: -58.5,-43.5 parent: 2 - - uid: 6850 + - uid: 6787 components: - type: Transform pos: -58.5,-44.5 parent: 2 - - uid: 6851 + - uid: 6788 components: - type: Transform pos: -58.5,-45.5 parent: 2 - - uid: 6852 + - uid: 6789 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 6853 + - uid: 6790 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 6854 + - uid: 6791 components: - type: Transform pos: -58.5,-49.5 parent: 2 - - uid: 6855 + - uid: 6792 components: - type: Transform pos: -59.5,-42.5 parent: 2 - - uid: 6856 + - uid: 6793 components: - type: Transform pos: -61.5,-42.5 parent: 2 - - uid: 6857 + - uid: 6794 components: - type: Transform pos: -62.5,-42.5 parent: 2 - - uid: 6858 + - uid: 6795 components: - type: Transform pos: -63.5,-42.5 parent: 2 - - uid: 6859 + - uid: 6796 components: - type: Transform pos: -64.5,-42.5 parent: 2 - - uid: 6860 + - uid: 6797 components: - type: Transform pos: -65.5,-42.5 parent: 2 - - uid: 6861 + - uid: 6798 components: - type: Transform pos: -66.5,-42.5 parent: 2 - - uid: 6862 + - uid: 6799 components: - type: Transform pos: -67.5,-42.5 parent: 2 - - uid: 6863 + - uid: 6800 components: - type: Transform pos: -67.5,-40.5 parent: 2 - - uid: 6864 + - uid: 6801 components: - type: Transform pos: -67.5,-41.5 parent: 2 - - uid: 6865 + - uid: 6802 components: - type: Transform pos: -67.5,-39.5 parent: 2 - - uid: 6866 + - uid: 6803 components: - type: Transform pos: -61.5,-46.5 parent: 2 - - uid: 6867 + - uid: 6804 components: - type: Transform pos: -61.5,-47.5 parent: 2 - - uid: 6868 + - uid: 6805 components: - type: Transform pos: -64.5,-45.5 parent: 2 - - uid: 6869 + - uid: 6806 components: - type: Transform pos: -64.5,-46.5 parent: 2 - - uid: 6870 + - uid: 6807 components: - type: Transform pos: -62.5,-46.5 parent: 2 - - uid: 6871 + - uid: 6808 components: - type: Transform pos: -63.5,-46.5 parent: 2 - - uid: 6872 + - uid: 6809 components: - type: Transform pos: -63.5,-46.5 parent: 2 - - uid: 6873 + - uid: 6810 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 6874 + - uid: 6811 components: - type: Transform pos: -45.5,-46.5 parent: 2 - - uid: 6875 + - uid: 6812 components: - type: Transform pos: -45.5,-47.5 parent: 2 - - uid: 6876 + - uid: 6813 components: - type: Transform pos: -46.5,-47.5 parent: 2 - - uid: 6877 + - uid: 6814 components: - type: Transform pos: -47.5,-47.5 parent: 2 - - uid: 6878 + - uid: 6815 components: - type: Transform pos: -48.5,-47.5 parent: 2 - - uid: 6879 + - uid: 6816 components: - type: Transform pos: -49.5,-47.5 parent: 2 - - uid: 6880 + - uid: 6817 components: - type: Transform pos: -50.5,-47.5 parent: 2 - - uid: 6881 + - uid: 6818 components: - type: Transform pos: -51.5,-47.5 parent: 2 - - uid: 6882 + - uid: 6819 components: - type: Transform pos: -51.5,-46.5 parent: 2 - - uid: 6883 + - uid: 6820 components: - type: Transform pos: -51.5,-45.5 parent: 2 - - uid: 6884 + - uid: 6821 components: - type: Transform pos: -51.5,-44.5 parent: 2 - - uid: 6885 + - uid: 6822 components: - type: Transform pos: -51.5,-43.5 parent: 2 - - uid: 6886 + - uid: 6823 components: - type: Transform pos: -51.5,-42.5 parent: 2 - - uid: 6887 + - uid: 6824 components: - type: Transform pos: -52.5,-44.5 parent: 2 - - uid: 6888 + - uid: 6825 components: - type: Transform pos: -53.5,-44.5 parent: 2 - - uid: 6889 + - uid: 6826 components: - type: Transform pos: -54.5,-44.5 parent: 2 - - uid: 6890 + - uid: 6827 components: - type: Transform pos: -50.5,-44.5 parent: 2 - - uid: 6891 + - uid: 6828 components: - type: Transform pos: -49.5,-44.5 parent: 2 - - uid: 6892 + - uid: 6829 components: - type: Transform pos: -48.5,-44.5 parent: 2 - - uid: 6893 + - uid: 6830 components: - type: Transform pos: -48.5,-44.5 parent: 2 - - uid: 6894 + - uid: 6831 components: - type: Transform pos: -45.5,-44.5 parent: 2 - - uid: 6895 + - uid: 6832 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 6896 + - uid: 6833 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 6897 + - uid: 6834 components: - type: Transform pos: -39.5,-47.5 parent: 2 - - uid: 6898 + - uid: 6835 components: - type: Transform pos: -39.5,-48.5 parent: 2 - - uid: 6899 + - uid: 6836 components: - type: Transform pos: -40.5,-48.5 parent: 2 - - uid: 6900 + - uid: 6837 components: - type: Transform pos: -41.5,-48.5 parent: 2 - - uid: 6901 + - uid: 6838 components: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 6902 + - uid: 6839 components: - type: Transform pos: -42.5,-47.5 parent: 2 - - uid: 6903 + - uid: 6840 components: - type: Transform pos: -42.5,-46.5 parent: 2 - - uid: 6904 + - uid: 6841 components: - type: Transform pos: -42.5,-45.5 parent: 2 - - uid: 6905 + - uid: 6842 components: - type: Transform pos: -42.5,-44.5 parent: 2 - - uid: 6906 + - uid: 6843 components: - type: Transform pos: -42.5,-43.5 parent: 2 - - uid: 6907 + - uid: 6844 components: - type: Transform pos: -42.5,-42.5 parent: 2 - - uid: 6908 + - uid: 6845 components: - type: Transform pos: -38.5,-48.5 parent: 2 - - uid: 6909 + - uid: 6846 components: - type: Transform pos: -42.5,-40.5 parent: 2 - - uid: 6910 + - uid: 6847 components: - type: Transform pos: -44.5,-40.5 parent: 2 - - uid: 6911 + - uid: 6848 components: - type: Transform pos: -43.5,-40.5 parent: 2 - - uid: 6912 + - uid: 6849 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 6913 + - uid: 6850 components: - type: Transform pos: -49.5,-39.5 parent: 2 - - uid: 6914 + - uid: 6851 components: - type: Transform pos: -49.5,-40.5 parent: 2 - - uid: 6915 + - uid: 6852 components: - type: Transform pos: -48.5,-40.5 parent: 2 - - uid: 6916 + - uid: 6853 components: - type: Transform pos: -47.5,-40.5 parent: 2 - - uid: 6917 + - uid: 6854 components: - type: Transform pos: -46.5,-40.5 parent: 2 - - uid: 6918 + - uid: 6855 components: - type: Transform pos: -45.5,-40.5 parent: 2 - - uid: 6919 + - uid: 6856 components: - type: Transform pos: -37.5,-48.5 parent: 2 - - uid: 6920 + - uid: 6857 components: - type: Transform pos: -36.5,-48.5 parent: 2 - - uid: 6921 + - uid: 6858 components: - type: Transform pos: -35.5,-48.5 parent: 2 - - uid: 6922 + - uid: 6859 components: - type: Transform pos: -34.5,-48.5 parent: 2 - - uid: 6923 + - uid: 6860 components: - type: Transform pos: -33.5,-48.5 parent: 2 - - uid: 6924 + - uid: 6861 components: - type: Transform pos: -33.5,-49.5 parent: 2 - - uid: 6925 + - uid: 6862 components: - type: Transform pos: -50.5,-40.5 parent: 2 - - uid: 6926 + - uid: 6863 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 6927 + - uid: 6864 components: - type: Transform pos: -52.5,-40.5 parent: 2 - - uid: 6928 + - uid: 6865 components: - type: Transform pos: -53.5,-40.5 parent: 2 - - uid: 6929 + - uid: 6866 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 6930 + - uid: 6867 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 6931 + - uid: 6868 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 6932 + - uid: 6869 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 6933 + - uid: 6870 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - uid: 6934 + - uid: 6871 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 6935 + - uid: 6872 components: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 6936 + - uid: 6873 components: - type: Transform pos: -54.5,-34.5 parent: 2 - - uid: 6937 + - uid: 6874 components: - type: Transform pos: -54.5,-33.5 parent: 2 - - uid: 6938 + - uid: 6875 components: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 6939 + - uid: 6876 components: - type: Transform pos: -53.5,-33.5 parent: 2 - - uid: 6940 + - uid: 6877 components: - type: Transform pos: -52.5,-33.5 parent: 2 - - uid: 6941 + - uid: 6878 components: - type: Transform pos: -51.5,-33.5 parent: 2 - - uid: 6942 + - uid: 6879 components: - type: Transform pos: -50.5,-33.5 parent: 2 - - uid: 6943 + - uid: 6880 components: - type: Transform pos: -49.5,-33.5 parent: 2 - - uid: 6944 + - uid: 6881 components: - type: Transform pos: -48.5,-33.5 parent: 2 - - uid: 6945 + - uid: 6882 components: - type: Transform pos: -47.5,-33.5 parent: 2 - - uid: 6946 + - uid: 6883 components: - type: Transform pos: -46.5,-33.5 parent: 2 - - uid: 6947 + - uid: 6884 components: - type: Transform pos: -45.5,-33.5 parent: 2 - - uid: 6948 + - uid: 6885 components: - type: Transform pos: -44.5,-33.5 parent: 2 - - uid: 6949 + - uid: 6886 components: - type: Transform pos: -53.5,-36.5 parent: 2 - - uid: 6950 + - uid: 6887 components: - type: Transform pos: -52.5,-36.5 parent: 2 - - uid: 6951 + - uid: 6888 components: - type: Transform pos: -51.5,-36.5 parent: 2 - - uid: 6952 + - uid: 6889 components: - type: Transform pos: -50.5,-36.5 parent: 2 - - uid: 6953 + - uid: 6890 components: - type: Transform pos: -49.5,-36.5 parent: 2 - - uid: 6954 + - uid: 6891 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 6955 + - uid: 6892 components: - type: Transform pos: -26.5,-25.5 parent: 2 - - uid: 6956 + - uid: 6893 components: - type: Transform pos: -26.5,-25.5 parent: 2 - - uid: 6957 + - uid: 6894 components: - type: Transform pos: -27.5,-25.5 parent: 2 - - uid: 6958 + - uid: 6895 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 6959 + - uid: 6896 components: - type: Transform pos: -28.5,-27.5 parent: 2 - - uid: 6960 + - uid: 6897 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 6961 + - uid: 6898 components: - type: Transform pos: -28.5,-29.5 parent: 2 - - uid: 6962 + - uid: 6899 components: - type: Transform pos: -28.5,-26.5 parent: 2 - - uid: 6963 + - uid: 6900 components: - type: Transform pos: -31.5,-27.5 parent: 2 - - uid: 6964 + - uid: 6901 components: - type: Transform pos: -32.5,-27.5 parent: 2 - - uid: 6965 + - uid: 6902 components: - type: Transform pos: -33.5,-27.5 parent: 2 - - uid: 6966 + - uid: 6903 components: - type: Transform pos: -34.5,-27.5 parent: 2 - - uid: 6967 + - uid: 6904 components: - type: Transform pos: -35.5,-27.5 parent: 2 - - uid: 6968 + - uid: 6905 components: - type: Transform pos: -36.5,-27.5 parent: 2 - - uid: 6969 + - uid: 6906 components: - type: Transform pos: -37.5,-27.5 parent: 2 - - uid: 6970 + - uid: 6907 components: - type: Transform pos: -38.5,-27.5 parent: 2 - - uid: 6971 + - uid: 6908 components: - type: Transform pos: -41.5,-27.5 parent: 2 - - uid: 6972 + - uid: 6909 components: - type: Transform pos: -42.5,-27.5 parent: 2 - - uid: 6973 + - uid: 6910 components: - type: Transform pos: -43.5,-27.5 parent: 2 - - uid: 6974 + - uid: 6911 components: - type: Transform pos: -45.5,-27.5 parent: 2 - - uid: 6975 + - uid: 6912 components: - type: Transform pos: -46.5,-27.5 parent: 2 - - uid: 6976 + - uid: 6913 components: - type: Transform pos: -28.5,-30.5 parent: 2 - - uid: 6977 + - uid: 6914 components: - type: Transform pos: -28.5,-31.5 parent: 2 - - uid: 6978 + - uid: 6915 components: - type: Transform pos: -50.5,-21.5 parent: 2 - - uid: 6979 + - uid: 6916 components: - type: Transform pos: -49.5,-21.5 parent: 2 - - uid: 6980 + - uid: 6917 components: - type: Transform pos: -49.5,-19.5 parent: 2 - - uid: 6981 + - uid: 6918 components: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 6982 + - uid: 6919 components: - type: Transform pos: -48.5,-19.5 parent: 2 - - uid: 6983 + - uid: 6920 components: - type: Transform pos: -49.5,-22.5 parent: 2 - - uid: 6984 + - uid: 6921 components: - type: Transform pos: 7.5,-74.5 parent: 2 - - uid: 6985 + - uid: 6922 components: - type: Transform pos: 8.5,-74.5 parent: 2 - - uid: 6986 + - uid: 6923 components: - type: Transform pos: 9.5,-74.5 parent: 2 - - uid: 6987 + - uid: 6924 components: - type: Transform pos: 7.5,-76.5 parent: 2 - - uid: 6988 + - uid: 6925 components: - type: Transform pos: 8.5,-76.5 parent: 2 - - uid: 6989 + - uid: 6926 components: - type: Transform pos: 9.5,-76.5 parent: 2 - - uid: 6990 + - uid: 6927 components: - type: Transform pos: 26.5,10.5 parent: 2 - - uid: 6991 + - uid: 6928 components: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 6992 + - uid: 6929 components: - type: Transform pos: 27.5,9.5 parent: 2 - - uid: 6993 + - uid: 6930 components: - type: Transform pos: 28.5,9.5 parent: 2 - - uid: 6994 + - uid: 6931 components: - type: Transform pos: 29.5,9.5 parent: 2 - - uid: 6995 + - uid: 6932 components: - type: Transform pos: 30.5,9.5 parent: 2 - - uid: 6996 + - uid: 6933 components: - type: Transform pos: 31.5,9.5 parent: 2 - - uid: 6997 + - uid: 6934 components: - type: Transform pos: 32.5,9.5 parent: 2 - - uid: 6998 + - uid: 6935 components: - type: Transform pos: 33.5,9.5 parent: 2 - - uid: 6999 + - uid: 6936 components: - type: Transform pos: 33.5,10.5 parent: 2 - - uid: 7000 + - uid: 6937 components: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 7001 + - uid: 6938 components: - type: Transform pos: 29.5,10.5 parent: 2 - - uid: 7002 + - uid: 6939 components: - type: Transform pos: 29.5,11.5 parent: 2 - - uid: 7003 + - uid: 6940 components: - type: Transform pos: 28.5,11.5 parent: 2 - - uid: 7004 + - uid: 6941 components: - type: Transform pos: 22.5,6.5 parent: 2 - - uid: 7005 + - uid: 6942 components: - type: Transform pos: 22.5,7.5 parent: 2 - - uid: 7006 + - uid: 6943 components: - type: Transform pos: 23.5,14.5 parent: 2 - - uid: 7007 + - uid: 6944 components: - type: Transform pos: 22.5,10.5 parent: 2 - - uid: 7008 + - uid: 6945 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 7009 + - uid: 6946 components: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 7010 + - uid: 6947 components: - type: Transform pos: 30.5,11.5 parent: 2 - - uid: 7011 + - uid: 6948 components: - type: Transform pos: 31.5,11.5 parent: 2 - - uid: 7012 + - uid: 6949 components: - type: Transform pos: 32.5,11.5 parent: 2 - - uid: 7013 + - uid: 6950 components: - type: Transform pos: 33.5,11.5 parent: 2 - - uid: 7014 + - uid: 6951 components: - type: Transform pos: -51.5,-25.5 parent: 2 - - uid: 7015 + - uid: 6952 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 7016 + - uid: 6953 components: - type: Transform pos: -43.5,-74.5 parent: 2 - - uid: 7017 + - uid: 6954 components: - type: Transform pos: -44.5,-74.5 parent: 2 - - uid: 7018 + - uid: 6955 components: - type: Transform pos: -45.5,-74.5 parent: 2 - - uid: 7019 + - uid: 6956 components: - type: Transform pos: 4.5,-44.5 parent: 2 - - uid: 7020 + - uid: 6957 components: - type: Transform pos: 4.5,-43.5 parent: 2 - - uid: 7021 + - uid: 6958 components: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 7022 + - uid: 6959 components: - type: Transform pos: 2.5,-43.5 parent: 2 - - uid: 7023 + - uid: 6960 components: - type: Transform pos: 3.5,-43.5 parent: 2 - - uid: 7024 + - uid: 6961 components: - type: Transform pos: 8.5,-45.5 parent: 2 - - uid: 7025 + - uid: 6962 components: - type: Transform pos: 9.5,-45.5 parent: 2 - - uid: 7026 + - uid: 6963 components: - type: Transform pos: 9.5,-44.5 parent: 2 - - uid: 7027 + - uid: 6964 components: - type: Transform pos: 9.5,-43.5 parent: 2 - - uid: 7028 + - uid: 6965 components: - type: Transform pos: 9.5,-42.5 parent: 2 - - uid: 7029 + - uid: 6966 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 7030 + - uid: 6967 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 7031 + - uid: 6968 components: - type: Transform pos: -21.5,-11.5 parent: 2 - - uid: 7032 + - uid: 6969 components: - type: Transform pos: -22.5,-11.5 parent: 2 - - uid: 7033 + - uid: 6970 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - uid: 7034 + - uid: 6971 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 7035 + - uid: 6972 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 7036 + - uid: 6973 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 7037 + - uid: 6974 components: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 7038 + - uid: 6975 components: - type: Transform pos: -23.5,-6.5 parent: 2 - - uid: 7039 + - uid: 6976 components: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 7040 + - uid: 6977 components: - type: Transform pos: -24.5,-5.5 parent: 2 - - uid: 7041 + - uid: 6978 components: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 7042 + - uid: 6979 components: - type: Transform pos: -22.5,-5.5 parent: 2 - - uid: 7043 + - uid: 6980 components: - type: Transform pos: -21.5,-5.5 parent: 2 - - uid: 7044 + - uid: 6981 components: - type: Transform pos: 42.5,-4.5 parent: 2 - - uid: 7045 + - uid: 6982 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 7046 + - uid: 6983 components: - type: Transform pos: -51.5,-28.5 parent: 2 - - uid: 7047 + - uid: 6984 components: - type: Transform pos: -51.5,-29.5 parent: 2 - - uid: 7048 + - uid: 6985 components: - type: Transform pos: -32.5,-47.5 parent: 2 - - uid: 7049 + - uid: 6986 components: - type: Transform pos: -32.5,-46.5 parent: 2 - - uid: 7050 + - uid: 6987 components: - type: Transform pos: -32.5,-45.5 parent: 2 - - uid: 7051 + - uid: 6988 components: - type: Transform pos: -32.5,-44.5 parent: 2 - - uid: 7052 + - uid: 6989 components: - type: Transform pos: -32.5,-43.5 parent: 2 - - uid: 7053 + - uid: 6990 components: - type: Transform pos: -32.5,-42.5 parent: 2 - - uid: 7054 + - uid: 6991 components: - type: Transform pos: -32.5,-41.5 parent: 2 - - uid: 7055 + - uid: 6992 components: - type: Transform pos: -32.5,-40.5 parent: 2 - - uid: 7056 + - uid: 6993 components: - type: Transform pos: -32.5,-39.5 parent: 2 - - uid: 7057 + - uid: 6994 components: - type: Transform pos: -32.5,-38.5 parent: 2 - - uid: 7058 + - uid: 6995 components: - type: Transform pos: -32.5,-37.5 parent: 2 - - uid: 7059 + - uid: 6996 components: - type: Transform pos: -32.5,-36.5 parent: 2 - - uid: 7060 + - uid: 6997 components: - type: Transform pos: -33.5,-36.5 parent: 2 - - uid: 7061 + - uid: 6998 components: - type: Transform pos: -34.5,-36.5 parent: 2 - - uid: 7062 + - uid: 6999 components: - type: Transform pos: -35.5,-36.5 parent: 2 - - uid: 7063 + - uid: 7000 components: - type: Transform pos: -36.5,-36.5 parent: 2 - - uid: 7064 + - uid: 7001 components: - type: Transform pos: -37.5,-36.5 parent: 2 - - uid: 7065 + - uid: 7002 components: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 7066 + - uid: 7003 components: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 7067 + - uid: 7004 components: - type: Transform pos: -39.5,-36.5 parent: 2 - - uid: 7068 + - uid: 7005 components: - type: Transform pos: -40.5,-36.5 parent: 2 - - uid: 7069 + - uid: 7006 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 7070 + - uid: 7007 components: - type: Transform pos: -42.5,-36.5 parent: 2 - - uid: 7071 + - uid: 7008 components: - type: Transform pos: -43.5,-36.5 parent: 2 - - uid: 7072 + - uid: 7009 components: - type: Transform pos: -43.5,-37.5 parent: 2 - - uid: 7073 + - uid: 7010 components: - type: Transform pos: -34.5,-44.5 parent: 2 - - uid: 7074 + - uid: 7011 components: - type: Transform pos: -33.5,-44.5 parent: 2 - - uid: 7075 + - uid: 7012 components: - type: Transform pos: -34.5,-39.5 parent: 2 - - uid: 7076 + - uid: 7013 components: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 7077 + - uid: 7014 components: - type: Transform pos: -31.5,-38.5 parent: 2 - - uid: 7078 + - uid: 7015 components: - type: Transform pos: -31.5,-45.5 parent: 2 - - uid: 7079 + - uid: 7016 components: - type: Transform pos: 81.5,-1.5 parent: 2 - - uid: 7080 + - uid: 7017 components: - type: Transform pos: 84.5,-4.5 parent: 2 - - uid: 7081 + - uid: 7018 components: - type: Transform pos: 80.5,-1.5 parent: 2 - - uid: 7082 + - uid: 7019 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 7083 + - uid: 7020 components: - type: Transform pos: 84.5,-1.5 parent: 2 - - uid: 7084 + - uid: 7021 components: - type: Transform pos: 82.5,-1.5 parent: 2 - - uid: 7085 + - uid: 7022 components: - type: Transform pos: 80.5,-3.5 parent: 2 - - uid: 7086 + - uid: 7023 components: - type: Transform pos: 84.5,-2.5 parent: 2 - - uid: 7087 + - uid: 7024 components: - type: Transform pos: 84.5,-3.5 parent: 2 - - uid: 7088 + - uid: 7025 components: - type: Transform pos: -31.5,1.5 parent: 2 - - uid: 7089 + - uid: 7026 components: - type: Transform pos: -30.5,1.5 parent: 2 - - uid: 7090 + - uid: 7027 components: - type: Transform pos: -29.5,1.5 parent: 2 - - uid: 7091 + - uid: 7028 components: - type: Transform pos: -28.5,1.5 parent: 2 - - uid: 7092 + - uid: 7029 components: - type: Transform pos: -27.5,1.5 parent: 2 - - uid: 7093 + - uid: 7030 components: - type: Transform pos: -26.5,1.5 parent: 2 - - uid: 7094 + - uid: 7031 components: - type: Transform pos: -25.5,1.5 parent: 2 - - uid: 7095 + - uid: 7032 components: - type: Transform pos: -25.5,0.5 parent: 2 - - uid: 7096 + - uid: 7033 components: - type: Transform pos: -45.5,55.5 parent: 2 - - uid: 7097 + - uid: 7034 components: - type: Transform pos: -45.5,56.5 parent: 2 - - uid: 7098 + - uid: 7035 components: - type: Transform pos: -45.5,57.5 parent: 2 - - uid: 7099 + - uid: 7036 components: - type: Transform pos: 80.5,-4.5 parent: 2 - - uid: 7100 + - uid: 7037 components: - type: Transform pos: 80.5,3.5 parent: 2 - - uid: 7101 + - uid: 7038 components: - type: Transform pos: 80.5,2.5 parent: 2 - - uid: 7102 + - uid: 7039 components: - type: Transform pos: 80.5,1.5 parent: 2 - - uid: 7103 + - uid: 7040 components: - type: Transform pos: 80.5,1.5 parent: 2 - - uid: 7104 + - uid: 7041 components: - type: Transform pos: 79.5,1.5 parent: 2 - - uid: 7105 + - uid: 7042 components: - type: Transform pos: 78.5,1.5 parent: 2 - - uid: 7106 + - uid: 7043 components: - type: Transform pos: 77.5,1.5 parent: 2 - - uid: 7107 + - uid: 7044 components: - type: Transform pos: 76.5,1.5 parent: 2 - - uid: 7108 + - uid: 7045 components: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 7109 + - uid: 7046 components: - type: Transform pos: 82.5,1.5 parent: 2 - - uid: 7110 + - uid: 7047 components: - type: Transform pos: 83.5,1.5 parent: 2 - - uid: 7111 + - uid: 7048 components: - type: Transform pos: 84.5,1.5 parent: 2 - - uid: 7112 + - uid: 7049 components: - type: Transform pos: 85.5,1.5 parent: 2 - - uid: 7113 + - uid: 7050 components: - type: Transform pos: 86.5,1.5 parent: 2 - - uid: 7114 + - uid: 7051 components: - type: Transform pos: 87.5,1.5 parent: 2 - - uid: 7115 + - uid: 7052 components: - type: Transform pos: 88.5,1.5 parent: 2 - - uid: 7116 + - uid: 7053 components: - type: Transform pos: 89.5,1.5 parent: 2 - - uid: 7117 + - uid: 7054 components: - type: Transform pos: 85.5,8.5 parent: 2 - - uid: 7118 + - uid: 7055 components: - type: Transform pos: 85.5,7.5 parent: 2 - - uid: 7119 + - uid: 7056 components: - type: Transform pos: 85.5,6.5 parent: 2 - - uid: 7120 + - uid: 7057 components: - type: Transform pos: 85.5,5.5 parent: 2 - - uid: 7121 + - uid: 7058 components: - type: Transform pos: 85.5,4.5 parent: 2 - - uid: 7122 + - uid: 7059 components: - type: Transform pos: 85.5,4.5 parent: 2 - - uid: 7123 + - uid: 7060 components: - type: Transform pos: 86.5,4.5 parent: 2 - - uid: 7124 + - uid: 7061 components: - type: Transform pos: 87.5,4.5 parent: 2 - - uid: 7125 + - uid: 7062 components: - type: Transform pos: 88.5,4.5 parent: 2 - - uid: 7126 + - uid: 7063 components: - type: Transform pos: 89.5,4.5 parent: 2 - - uid: 7127 + - uid: 7064 components: - type: Transform pos: 84.5,4.5 parent: 2 - - uid: 7128 + - uid: 7065 components: - type: Transform pos: 83.5,4.5 parent: 2 - - uid: 7129 + - uid: 7066 components: - type: Transform pos: 82.5,4.5 parent: 2 - - uid: 7130 + - uid: 7067 components: - type: Transform pos: 81.5,4.5 parent: 2 - - uid: 7131 + - uid: 7068 components: - type: Transform pos: 84.5,7.5 parent: 2 - - uid: 7132 + - uid: 7069 components: - type: Transform pos: 83.5,7.5 parent: 2 - - uid: 7133 + - uid: 7070 components: - type: Transform pos: 82.5,7.5 parent: 2 - - uid: 7134 + - uid: 7071 components: - type: Transform pos: 81.5,7.5 parent: 2 - - uid: 7135 + - uid: 7072 components: - type: Transform pos: 86.5,7.5 parent: 2 - - uid: 7136 + - uid: 7073 components: - type: Transform pos: 87.5,7.5 parent: 2 - - uid: 7137 + - uid: 7074 components: - type: Transform pos: 88.5,7.5 parent: 2 - - uid: 7138 + - uid: 7075 components: - type: Transform pos: 89.5,7.5 parent: 2 - - uid: 7139 + - uid: 7076 components: - type: Transform pos: 79.5,4.5 parent: 2 - - uid: 7140 + - uid: 7077 components: - type: Transform pos: 97.5,15.5 parent: 2 - - uid: 7141 + - uid: 7078 components: - type: Transform pos: 97.5,14.5 parent: 2 - - uid: 7142 + - uid: 7079 components: - type: Transform pos: 97.5,13.5 parent: 2 - - uid: 7143 + - uid: 7080 components: - type: Transform pos: 97.5,12.5 parent: 2 - - uid: 7144 + - uid: 7081 components: - type: Transform pos: 96.5,13.5 parent: 2 - - uid: 7145 + - uid: 7082 components: - type: Transform pos: 95.5,13.5 parent: 2 - - uid: 7146 + - uid: 7083 components: - type: Transform pos: 93.5,13.5 parent: 2 - - uid: 7147 + - uid: 7084 components: - type: Transform pos: -69.5,-33.5 parent: 2 - - uid: 7148 + - uid: 7085 components: - type: Transform pos: -69.5,-34.5 parent: 2 - - uid: 7149 + - uid: 7086 components: - type: Transform pos: -69.5,-35.5 parent: 2 - - uid: 7150 + - uid: 7087 components: - type: Transform pos: -70.5,-35.5 parent: 2 - - uid: 7151 + - uid: 7088 components: - type: Transform pos: -65.5,-35.5 parent: 2 - - uid: 7152 + - uid: 7089 components: - type: Transform pos: -66.5,-36.5 parent: 2 - - uid: 7153 + - uid: 7090 components: - type: Transform pos: -65.5,-36.5 parent: 2 - - uid: 7154 + - uid: 7091 components: - type: Transform pos: -62.5,-35.5 parent: 2 - - uid: 7155 + - uid: 7092 components: - type: Transform pos: -62.5,-34.5 parent: 2 - - uid: 7156 + - uid: 7093 components: - type: Transform pos: 5.5,77.5 parent: 2 - - uid: 7157 + - uid: 7094 components: - type: Transform pos: 5.5,84.5 parent: 2 - - uid: 7158 + - uid: 7095 components: - type: Transform pos: 4.5,84.5 parent: 2 - - uid: 7159 + - uid: 7096 components: - type: Transform pos: 3.5,84.5 parent: 2 - - uid: 7160 + - uid: 7097 components: - type: Transform pos: 4.5,77.5 parent: 2 - - uid: 7161 + - uid: 7098 components: - type: Transform pos: 3.5,77.5 parent: 2 - - uid: 7162 + - uid: 7099 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 7163 + - uid: 7100 components: - type: Transform pos: 10.5,-8.5 parent: 2 - - uid: 7164 + - uid: 7101 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 7165 + - uid: 7102 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 7166 + - uid: 7103 components: - type: Transform pos: 13.5,-12.5 parent: 2 - - uid: 7167 + - uid: 7104 components: - type: Transform pos: 6.5,-8.5 parent: 2 - - uid: 7168 + - uid: 7105 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 7169 + - uid: 7106 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 7170 + - uid: 7107 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 7171 + - uid: 7108 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 7172 + - uid: 7109 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 7173 + - uid: 7110 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 7174 + - uid: 7111 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 7175 + - uid: 7112 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 7176 + - uid: 7113 components: - type: Transform pos: -7.5,-8.5 parent: 2 - - uid: 7177 + - uid: 7114 components: - type: Transform pos: 11.5,-8.5 parent: 2 - - uid: 7178 + - uid: 7115 components: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 7179 + - uid: 7116 components: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 7180 + - uid: 7117 components: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 7181 + - uid: 7118 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 7182 + - uid: 7119 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 7183 + - uid: 7120 components: - type: Transform pos: -11.5,-8.5 parent: 2 - - uid: 7184 + - uid: 7121 components: - type: Transform pos: 12.5,-8.5 parent: 2 - - uid: 7185 + - uid: 7122 components: - type: Transform pos: -13.5,-8.5 parent: 2 - - uid: 7186 + - uid: 7123 components: - type: Transform pos: -10.5,-8.5 parent: 2 - - uid: 7187 + - uid: 7124 components: - type: Transform pos: -14.5,-8.5 parent: 2 - - uid: 7188 + - uid: 7125 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 7189 + - uid: 7126 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 7190 + - uid: 7127 components: - type: Transform pos: -12.5,-8.5 parent: 2 - - uid: 7191 + - uid: 7128 components: - type: Transform pos: 14.5,-8.5 parent: 2 - - uid: 7192 + - uid: 7129 components: - type: Transform pos: -85.5,14.5 parent: 2 - - uid: 7193 + - uid: 7130 components: - type: Transform pos: -110.5,23.5 parent: 2 - - uid: 7194 + - uid: 7131 components: - type: Transform pos: -109.5,23.5 parent: 2 - - uid: 7195 + - uid: 7132 components: - type: Transform pos: -108.5,23.5 parent: 2 - - uid: 7196 + - uid: 7133 components: - type: Transform pos: -107.5,23.5 parent: 2 - - uid: 7197 + - uid: 7134 components: - type: Transform pos: -106.5,23.5 parent: 2 - - uid: 7198 + - uid: 7135 components: - type: Transform pos: -84.5,14.5 parent: 2 - - uid: 7199 + - uid: 7136 components: - type: Transform pos: -83.5,14.5 parent: 2 - - uid: 7200 + - uid: 7137 components: - type: Transform pos: -82.5,14.5 parent: 2 - - uid: 7201 + - uid: 7138 components: - type: Transform pos: 54.5,32.5 parent: 2 - - uid: 7202 + - uid: 7139 components: - type: Transform pos: 54.5,31.5 parent: 2 - - uid: 7203 + - uid: 7140 components: - type: Transform pos: 54.5,33.5 parent: 2 - - uid: 7204 + - uid: 7141 components: - type: Transform pos: 65.5,29.5 parent: 2 - - uid: 7205 + - uid: 7142 components: - type: Transform pos: 66.5,30.5 parent: 2 - - uid: 7206 + - uid: 7143 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 7207 + - uid: 7144 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 7208 + - uid: 7145 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 7209 + - uid: 7146 components: - type: Transform pos: -66.5,46.5 parent: 2 - - uid: 7210 + - uid: 7147 components: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 7211 + - uid: 7148 components: - type: Transform pos: -20.5,-37.5 parent: 2 - - uid: 7212 + - uid: 7149 components: - type: Transform pos: -20.5,-38.5 parent: 2 - - uid: 7213 + - uid: 7150 components: - type: Transform pos: -20.5,-38.5 parent: 2 - - uid: 7214 + - uid: 7151 components: - type: Transform pos: -19.5,-38.5 parent: 2 - - uid: 7215 + - uid: 7152 components: - type: Transform pos: -18.5,-38.5 parent: 2 - - uid: 7216 + - uid: 7153 components: - type: Transform pos: -18.5,-39.5 parent: 2 - - uid: 7217 + - uid: 7154 components: - type: Transform pos: -18.5,-40.5 parent: 2 - - uid: 7218 + - uid: 7155 components: - type: Transform pos: -18.5,-41.5 parent: 2 - - uid: 7219 + - uid: 7156 components: - type: Transform pos: -18.5,-42.5 parent: 2 - - uid: 7220 + - uid: 7157 components: - type: Transform pos: -18.5,-43.5 parent: 2 - - uid: 7221 + - uid: 7158 components: - type: Transform pos: -18.5,-44.5 parent: 2 - - uid: 7222 + - uid: 7159 components: - type: Transform pos: -18.5,-45.5 parent: 2 - - uid: 7223 + - uid: 7160 components: - type: Transform pos: -18.5,-46.5 parent: 2 - - uid: 7224 + - uid: 7161 components: - type: Transform pos: -18.5,-47.5 parent: 2 - - uid: 7225 + - uid: 7162 components: - type: Transform pos: -17.5,-46.5 parent: 2 - - uid: 7226 + - uid: 7163 components: - type: Transform pos: -20.5,-46.5 parent: 2 - - uid: 7227 + - uid: 7164 components: - type: Transform pos: -16.5,-46.5 parent: 2 - - uid: 7228 + - uid: 7165 components: - type: Transform pos: -19.5,-46.5 parent: 2 - - uid: 7229 + - uid: 7166 components: - type: Transform pos: -20.5,-48.5 parent: 2 - - uid: 7230 + - uid: 7167 components: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 7231 + - uid: 7168 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 7232 + - uid: 7169 components: - type: Transform pos: -19.5,-50.5 parent: 2 - - uid: 7233 + - uid: 7170 components: - type: Transform pos: -19.5,-50.5 parent: 2 - - uid: 7234 + - uid: 7171 components: - type: Transform pos: -19.5,-51.5 parent: 2 - - uid: 7235 + - uid: 7172 components: - type: Transform pos: -19.5,-52.5 parent: 2 - - uid: 7236 + - uid: 7173 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - uid: 7237 + - uid: 7174 components: - type: Transform pos: -16.5,-39.5 parent: 2 - - uid: 7238 + - uid: 7175 components: - type: Transform pos: -18.5,-37.5 parent: 2 - - uid: 7239 + - uid: 7176 components: - type: Transform pos: -20.5,-30.5 parent: 2 - - uid: 7240 + - uid: 7177 components: - type: Transform pos: -19.5,-30.5 parent: 2 - - uid: 7241 + - uid: 7178 components: - type: Transform pos: -18.5,-30.5 parent: 2 - - uid: 7242 + - uid: 7179 components: - type: Transform pos: -18.5,-29.5 parent: 2 - - uid: 7243 + - uid: 7180 components: - type: Transform pos: -66.5,45.5 parent: 2 - - uid: 7244 + - uid: 7181 components: - type: Transform pos: -66.5,44.5 parent: 2 - - uid: 7245 + - uid: 7182 components: - type: Transform pos: -66.5,48.5 parent: 2 - - uid: 7246 + - uid: 7183 components: - type: Transform pos: -66.5,49.5 parent: 2 - - uid: 7247 + - uid: 7184 components: - type: Transform pos: -66.5,50.5 parent: 2 - - uid: 7248 + - uid: 7185 components: - type: Transform pos: -66.5,42.5 parent: 2 - - uid: 7249 + - uid: 7186 components: - type: Transform pos: -66.5,41.5 parent: 2 - - uid: 7250 + - uid: 7187 components: - type: Transform pos: -66.5,40.5 parent: 2 - - uid: 7251 + - uid: 7188 components: - type: Transform pos: -67.5,41.5 parent: 2 - - uid: 7252 + - uid: 7189 components: - type: Transform pos: -68.5,41.5 parent: 2 - - uid: 7253 + - uid: 7190 components: - type: Transform pos: -69.5,41.5 parent: 2 - - uid: 7254 + - uid: 7191 components: - type: Transform pos: -70.5,41.5 parent: 2 - - uid: 7255 + - uid: 7192 components: - type: Transform pos: -71.5,41.5 parent: 2 - - uid: 7256 + - uid: 7193 components: - type: Transform pos: -72.5,41.5 parent: 2 - - uid: 7257 + - uid: 7194 components: - type: Transform pos: -67.5,45.5 parent: 2 - - uid: 7258 + - uid: 7195 components: - type: Transform pos: -68.5,45.5 parent: 2 - - uid: 7259 + - uid: 7196 components: - type: Transform pos: -69.5,45.5 parent: 2 - - uid: 7260 + - uid: 7197 components: - type: Transform pos: -70.5,45.5 parent: 2 - - uid: 7261 + - uid: 7198 components: - type: Transform pos: -71.5,45.5 parent: 2 - - uid: 7262 + - uid: 7199 components: - type: Transform pos: -72.5,45.5 parent: 2 - - uid: 7263 + - uid: 7200 components: - type: Transform pos: -67.5,49.5 parent: 2 - - uid: 7264 + - uid: 7201 components: - type: Transform pos: -68.5,49.5 parent: 2 - - uid: 7265 + - uid: 7202 components: - type: Transform pos: -69.5,49.5 parent: 2 - - uid: 7266 + - uid: 7203 components: - type: Transform pos: -70.5,49.5 parent: 2 - - uid: 7267 + - uid: 7204 components: - type: Transform pos: -71.5,49.5 parent: 2 - - uid: 7268 + - uid: 7205 components: - type: Transform pos: -72.5,49.5 parent: 2 - - uid: 7269 + - uid: 7206 components: - type: Transform pos: -62.5,38.5 parent: 2 - - uid: 7270 + - uid: 7207 components: - type: Transform pos: -63.5,38.5 parent: 2 - - uid: 7271 + - uid: 7208 components: - type: Transform pos: -64.5,38.5 parent: 2 - - uid: 7272 + - uid: 7209 components: - type: Transform pos: -65.5,38.5 parent: 2 - - uid: 7273 + - uid: 7210 components: - type: Transform pos: -66.5,38.5 parent: 2 - - uid: 7274 + - uid: 7211 components: - type: Transform pos: -66.5,37.5 parent: 2 - - uid: 7275 + - uid: 7212 components: - type: Transform pos: -66.5,36.5 parent: 2 - - uid: 7276 + - uid: 7213 components: - type: Transform pos: -66.5,35.5 parent: 2 - - uid: 7277 + - uid: 7214 components: - type: Transform pos: -66.5,34.5 parent: 2 - - uid: 7278 + - uid: 7215 components: - type: Transform pos: -66.5,33.5 parent: 2 - - uid: 7279 + - uid: 7216 components: - type: Transform pos: -66.5,32.5 parent: 2 - - uid: 7280 + - uid: 7217 components: - type: Transform pos: -66.5,31.5 parent: 2 - - uid: 7281 + - uid: 7218 components: - type: Transform pos: -66.5,30.5 parent: 2 - - uid: 7282 + - uid: 7219 components: - type: Transform pos: -66.5,29.5 parent: 2 - - uid: 7283 + - uid: 7220 components: - type: Transform pos: -66.5,28.5 parent: 2 - - uid: 7284 + - uid: 7221 components: - type: Transform pos: -66.5,27.5 parent: 2 - - uid: 7285 + - uid: 7222 components: - type: Transform pos: -66.5,26.5 parent: 2 - - uid: 7286 + - uid: 7223 components: - type: Transform pos: -66.5,25.5 parent: 2 - - uid: 7287 + - uid: 7224 components: - type: Transform pos: -67.5,29.5 parent: 2 - - uid: 7288 + - uid: 7225 components: - type: Transform pos: -68.5,29.5 parent: 2 - - uid: 7289 + - uid: 7226 components: - type: Transform pos: -69.5,29.5 parent: 2 - - uid: 7290 + - uid: 7227 components: - type: Transform pos: -70.5,29.5 parent: 2 - - uid: 7291 + - uid: 7228 components: - type: Transform pos: -71.5,29.5 parent: 2 - - uid: 7292 + - uid: 7229 components: - type: Transform pos: -72.5,29.5 parent: 2 - - uid: 7293 + - uid: 7230 components: - type: Transform pos: -67.5,33.5 parent: 2 - - uid: 7294 + - uid: 7231 components: - type: Transform pos: -68.5,33.5 parent: 2 - - uid: 7295 + - uid: 7232 components: - type: Transform pos: -69.5,33.5 parent: 2 - - uid: 7296 + - uid: 7233 components: - type: Transform pos: -70.5,33.5 parent: 2 - - uid: 7297 + - uid: 7234 components: - type: Transform pos: -71.5,33.5 parent: 2 - - uid: 7298 + - uid: 7235 components: - type: Transform pos: -72.5,33.5 parent: 2 - - uid: 7299 + - uid: 7236 components: - type: Transform pos: -67.5,37.5 parent: 2 - - uid: 7300 + - uid: 7237 components: - type: Transform pos: -68.5,37.5 parent: 2 - - uid: 7301 + - uid: 7238 components: - type: Transform pos: -69.5,37.5 parent: 2 - - uid: 7302 + - uid: 7239 components: - type: Transform pos: -70.5,37.5 parent: 2 - - uid: 7303 + - uid: 7240 components: - type: Transform pos: -71.5,37.5 parent: 2 - - uid: 7304 + - uid: 7241 components: - type: Transform pos: -72.5,37.5 parent: 2 - - uid: 7305 + - uid: 7242 components: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 7306 + - uid: 7243 components: - type: Transform pos: -25.5,-43.5 parent: 2 - - uid: 7307 + - uid: 7244 components: - type: Transform pos: -25.5,-44.5 parent: 2 - - uid: 7308 + - uid: 7245 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 7309 + - uid: 7246 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 7310 + - uid: 7247 components: - type: Transform pos: -27.5,-45.5 parent: 2 - - uid: 7311 + - uid: 7248 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 7312 + - uid: 7249 components: - type: Transform pos: -23.5,-46.5 parent: 2 - - uid: 7313 + - uid: 7250 components: - type: Transform pos: -23.5,-47.5 parent: 2 - - uid: 7314 + - uid: 7251 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 7315 + - uid: 7252 components: - type: Transform pos: -24.5,-45.5 parent: 2 - - uid: 7316 + - uid: 7253 components: - type: Transform pos: -23.5,-45.5 parent: 2 - - uid: 7317 + - uid: 7254 components: - type: Transform pos: -23.5,-44.5 parent: 2 - - uid: 7318 + - uid: 7255 components: - type: Transform pos: -23.5,-43.5 parent: 2 - - uid: 7319 + - uid: 7256 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 7320 + - uid: 7257 components: - type: Transform pos: -23.5,-41.5 parent: 2 - - uid: 7321 + - uid: 7258 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 7322 + - uid: 7259 components: - type: Transform pos: -23.5,-39.5 parent: 2 - - uid: 7323 + - uid: 7260 components: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 7324 + - uid: 7261 components: - type: Transform pos: -23.5,-37.5 parent: 2 - - uid: 7325 + - uid: 7262 components: - type: Transform pos: -25.5,-39.5 parent: 2 - - uid: 7326 + - uid: 7263 components: - type: Transform pos: -24.5,-39.5 parent: 2 - - uid: 7327 + - uid: 7264 components: - type: Transform pos: -22.5,-39.5 parent: 2 - - uid: 7328 + - uid: 7265 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 7329 + - uid: 7266 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 7330 + - uid: 7267 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 7331 + - uid: 7268 components: - type: Transform pos: -28.5,-40.5 parent: 2 - - uid: 7332 + - uid: 7269 components: - type: Transform pos: -28.5,-41.5 parent: 2 - - uid: 7333 + - uid: 7270 components: - type: Transform pos: -29.5,-40.5 parent: 2 - - uid: 7334 + - uid: 7271 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 7335 + - uid: 7272 components: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 7336 + - uid: 7273 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 7337 + - uid: 7274 components: - type: Transform pos: -29.5,-45.5 parent: 2 - - uid: 7338 + - uid: 7275 components: - type: Transform pos: -29.5,-38.5 parent: 2 - - uid: 7339 + - uid: 7276 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 7340 + - uid: 7277 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 7341 + - uid: 7278 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 7342 + - uid: 7279 components: - type: Transform pos: 6.5,-37.5 parent: 2 - - uid: 7343 + - uid: 7280 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 7344 + - uid: 7281 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 7345 + - uid: 7282 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 7346 + - uid: 7283 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 7347 + - uid: 7284 components: - type: Transform pos: 4.5,-40.5 parent: 2 - - uid: 7348 + - uid: 7285 components: - type: Transform pos: 3.5,-37.5 parent: 2 - - uid: 7349 + - uid: 7286 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 7350 + - uid: 7287 components: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 7351 + - uid: 7288 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 7352 + - uid: 7289 components: - type: Transform pos: 23.5,32.5 parent: 2 - - uid: 7353 + - uid: 7290 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 7354 + - uid: 7291 components: - type: Transform pos: 23.5,30.5 parent: 2 - - uid: 7355 + - uid: 7292 components: - type: Transform pos: 23.5,29.5 parent: 2 - - uid: 7356 + - uid: 7293 components: - type: Transform pos: 22.5,29.5 parent: 2 - - uid: 7357 + - uid: 7294 components: - type: Transform pos: 21.5,29.5 parent: 2 - - uid: 7358 + - uid: 7295 components: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 7359 + - uid: 7296 components: - type: Transform pos: 21.5,27.5 parent: 2 - - uid: 7360 + - uid: 7297 components: - type: Transform pos: 21.5,26.5 parent: 2 - - uid: 7361 + - uid: 7298 components: - type: Transform pos: 24.5,31.5 parent: 2 - - uid: 7362 + - uid: 7299 components: - type: Transform pos: 25.5,31.5 parent: 2 - - uid: 7363 + - uid: 7300 components: - type: Transform pos: 26.5,31.5 parent: 2 - - uid: 7364 + - uid: 7301 components: - type: Transform pos: 27.5,31.5 parent: 2 - - uid: 7365 + - uid: 7302 components: - type: Transform pos: 21.5,32.5 parent: 2 - - uid: 7366 + - uid: 7303 components: - type: Transform pos: 21.5,31.5 parent: 2 - - uid: 7367 + - uid: 7304 components: - type: Transform pos: 21.5,30.5 parent: 2 - - uid: 7368 + - uid: 7305 components: - type: Transform pos: 20.5,32.5 parent: 2 - - uid: 7369 + - uid: 7306 components: - type: Transform pos: 19.5,32.5 parent: 2 - - uid: 7370 + - uid: 7307 components: - type: Transform pos: 24.5,29.5 parent: 2 - - uid: 7371 + - uid: 7308 components: - type: Transform pos: 24.5,28.5 parent: 2 - - uid: 7372 + - uid: 7309 components: - type: Transform pos: 24.5,27.5 parent: 2 - - uid: 7373 + - uid: 7310 components: - type: Transform pos: 24.5,26.5 parent: 2 - - uid: 7374 + - uid: 7311 components: - type: Transform pos: 25.5,29.5 parent: 2 - - uid: 7375 + - uid: 7312 components: - type: Transform pos: 26.5,29.5 parent: 2 - - uid: 7376 + - uid: 7313 components: - type: Transform pos: 27.5,29.5 parent: 2 - - uid: 7377 + - uid: 7314 components: - type: Transform pos: 7.5,57.5 parent: 2 - - uid: 7378 + - uid: 7315 components: - type: Transform pos: 8.5,57.5 parent: 2 - - uid: 7379 + - uid: 7316 components: - type: Transform pos: 9.5,57.5 parent: 2 - - uid: 7380 + - uid: 7317 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 7381 + - uid: 7318 components: - type: Transform pos: 10.5,56.5 parent: 2 - - uid: 7382 + - uid: 7319 components: - type: Transform pos: 11.5,56.5 parent: 2 - - uid: 7383 + - uid: 7320 components: - type: Transform pos: 12.5,56.5 parent: 2 - - uid: 7384 + - uid: 7321 components: - type: Transform pos: 13.5,56.5 parent: 2 - - uid: 7385 + - uid: 7322 components: - type: Transform pos: 14.5,56.5 parent: 2 - - uid: 7386 + - uid: 7323 components: - type: Transform pos: 15.5,56.5 parent: 2 - - uid: 7387 + - uid: 7324 components: - type: Transform pos: 16.5,56.5 parent: 2 - - uid: 7388 + - uid: 7325 components: - type: Transform pos: 17.5,56.5 parent: 2 - - uid: 7389 + - uid: 7326 components: - type: Transform pos: 18.5,56.5 parent: 2 - - uid: 7390 + - uid: 7327 components: - type: Transform pos: 19.5,56.5 parent: 2 - - uid: 7391 + - uid: 7328 components: - type: Transform pos: 20.5,56.5 parent: 2 - - uid: 7392 + - uid: 7329 components: - type: Transform pos: 21.5,56.5 parent: 2 - - uid: 7393 + - uid: 7330 components: - type: Transform pos: -65.5,22.5 parent: 2 - - uid: 7394 + - uid: 7331 components: - type: Transform pos: -66.5,22.5 parent: 2 - - uid: 7395 + - uid: 7332 components: - type: Transform pos: -67.5,22.5 parent: 2 - - uid: 7396 + - uid: 7333 components: - type: Transform pos: -68.5,22.5 parent: 2 - - uid: 7397 + - uid: 7334 components: - type: Transform pos: -69.5,22.5 parent: 2 - - uid: 7398 + - uid: 7335 components: - type: Transform pos: -70.5,22.5 parent: 2 - - uid: 7399 + - uid: 7336 components: - type: Transform pos: -71.5,22.5 parent: 2 - - uid: 7400 + - uid: 7337 components: - type: Transform pos: -72.5,22.5 parent: 2 - - uid: 7401 + - uid: 7338 components: - type: Transform pos: -73.5,22.5 parent: 2 - - uid: 7402 + - uid: 7339 components: - type: Transform pos: -74.5,22.5 parent: 2 - - uid: 7403 + - uid: 7340 components: - type: Transform pos: -75.5,22.5 parent: 2 - - uid: 7404 + - uid: 7341 components: - type: Transform pos: -76.5,22.5 parent: 2 - - uid: 7405 + - uid: 7342 components: - type: Transform pos: 36.5,42.5 parent: 2 - - uid: 7406 + - uid: 7343 components: - type: Transform pos: 36.5,43.5 parent: 2 - - uid: 7407 + - uid: 7344 components: - type: Transform pos: 19.5,39.5 parent: 2 - - uid: 7408 + - uid: 7345 components: - type: Transform pos: 36.5,39.5 parent: 2 - - uid: 7409 + - uid: 7346 components: - type: Transform pos: 20.5,39.5 parent: 2 - - uid: 7410 + - uid: 7347 components: - type: Transform pos: 37.5,39.5 parent: 2 - - uid: 7411 + - uid: 7348 components: - type: Transform pos: 33.5,40.5 parent: 2 - - uid: 7412 + - uid: 7349 components: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 7413 + - uid: 7350 components: - type: Transform pos: 17.5,39.5 parent: 2 - - uid: 7414 + - uid: 7351 components: - type: Transform pos: 16.5,39.5 parent: 2 - - uid: 7415 + - uid: 7352 components: - type: Transform pos: 15.5,39.5 parent: 2 - - uid: 7416 + - uid: 7353 components: - type: Transform pos: 14.5,39.5 parent: 2 - - uid: 7417 + - uid: 7354 components: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 7418 + - uid: 7355 components: - type: Transform pos: 92.5,23.5 parent: 2 - - uid: 7419 + - uid: 7356 components: - type: Transform pos: 92.5,24.5 parent: 2 - - uid: 7420 + - uid: 7357 components: - type: Transform pos: 92.5,25.5 parent: 2 - - uid: 7421 + - uid: 7358 components: - type: Transform pos: 92.5,26.5 parent: 2 - - uid: 7422 + - uid: 7359 components: - type: Transform pos: 92.5,22.5 parent: 2 - - uid: 7423 + - uid: 7360 components: - type: Transform pos: 92.5,23.5 parent: 2 - - uid: 7424 + - uid: 7361 components: - type: Transform pos: 92.5,22.5 parent: 2 - - uid: 7425 + - uid: 7362 components: - type: Transform pos: 92.5,21.5 parent: 2 - - uid: 7426 + - uid: 7363 components: - type: Transform pos: 69.5,22.5 parent: 2 - - uid: 7427 + - uid: 7364 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 7428 + - uid: 7365 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 7429 + - uid: 7366 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 7430 + - uid: 7367 components: - type: Transform pos: 69.5,21.5 parent: 2 - - uid: 7431 + - uid: 7368 components: - type: Transform pos: 67.5,21.5 parent: 2 - - uid: 7432 + - uid: 7369 components: - type: Transform pos: 62.5,22.5 parent: 2 - - uid: 7433 + - uid: 7370 components: - type: Transform pos: 62.5,23.5 parent: 2 - - uid: 7434 + - uid: 7371 components: - type: Transform pos: 62.5,24.5 parent: 2 - - uid: 7435 + - uid: 7372 components: - type: Transform pos: 64.5,25.5 parent: 2 - - uid: 7436 + - uid: 7373 components: - type: Transform pos: 70.5,26.5 parent: 2 - - uid: 7437 + - uid: 7374 components: - type: Transform pos: 70.5,25.5 parent: 2 - - uid: 7438 + - uid: 7375 components: - type: Transform pos: 67.5,29.5 parent: 2 - - uid: 7439 + - uid: 7376 components: - type: Transform pos: 68.5,25.5 parent: 2 - - uid: 7440 + - uid: 7377 components: - type: Transform pos: 66.5,21.5 parent: 2 - - uid: 7441 + - uid: 7378 components: - type: Transform pos: 66.5,29.5 parent: 2 - - uid: 7442 + - uid: 7379 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 7443 + - uid: 7380 components: - type: Transform pos: 63.5,29.5 parent: 2 - - uid: 7444 + - uid: 7381 components: - type: Transform pos: 65.5,21.5 parent: 2 - - uid: 7445 + - uid: 7382 components: - type: Transform pos: 62.5,28.5 parent: 2 - - uid: 7446 + - uid: 7383 components: - type: Transform pos: 62.5,29.5 parent: 2 - - uid: 7447 + - uid: 7384 components: - type: Transform pos: 61.5,29.5 parent: 2 - - uid: 7448 + - uid: 7385 components: - type: Transform pos: 68.5,21.5 parent: 2 - - uid: 7449 + - uid: 7386 components: - type: Transform pos: 69.5,23.5 parent: 2 - - uid: 7450 + - uid: 7387 components: - type: Transform pos: 71.5,26.5 parent: 2 - - uid: 7451 + - uid: 7388 components: - type: Transform pos: 69.5,24.5 parent: 2 - - uid: 7452 + - uid: 7389 components: - type: Transform pos: 64.5,29.5 parent: 2 - - uid: 7453 + - uid: 7390 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 7454 + - uid: 7391 components: - type: Transform pos: 63.5,21.5 parent: 2 - - uid: 7455 + - uid: 7392 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 7456 + - uid: 7393 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 7457 + - uid: 7394 components: - type: Transform pos: 62.5,23.5 parent: 2 - - uid: 7458 + - uid: 7395 components: - type: Transform pos: 62.5,22.5 parent: 2 - - uid: 7459 + - uid: 7396 components: - type: Transform pos: 62.5,24.5 parent: 2 - - uid: 7460 + - uid: 7397 components: - type: Transform pos: -35.5,-44.5 parent: 2 - - uid: 7461 + - uid: 7398 components: - type: Transform pos: -36.5,-44.5 parent: 2 - - uid: 7462 + - uid: 7399 components: - type: Transform pos: -37.5,-44.5 parent: 2 - - uid: 7463 + - uid: 7400 components: - type: Transform pos: -35.5,-39.5 parent: 2 - - uid: 7464 + - uid: 7401 components: - type: Transform pos: -36.5,-39.5 parent: 2 - - uid: 7465 + - uid: 7402 components: - type: Transform pos: -37.5,-39.5 parent: 2 - - uid: 7466 + - uid: 7403 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 7467 + - uid: 7404 components: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 7468 + - uid: 7405 components: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 7469 + - uid: 7406 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 7470 + - uid: 7407 components: - type: Transform pos: -2.5,-0.5 parent: 2 - - uid: 7471 + - uid: 7408 components: - type: Transform pos: -3.5,-0.5 parent: 2 - - uid: 7472 + - uid: 7409 components: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 7473 + - uid: 7410 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 7474 + - uid: 7411 components: - type: Transform pos: -30.5,-40.5 parent: 2 - - uid: 7475 + - uid: 7412 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 7476 + - uid: 7413 components: - type: Transform pos: 43.5,-5.5 parent: 2 - - uid: 7477 + - uid: 7414 components: - type: Transform pos: 51.5,-4.5 parent: 2 - - uid: 7478 + - uid: 7415 components: - type: Transform pos: 51.5,-5.5 parent: 2 - - uid: 7479 + - uid: 7416 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 7480 + - uid: 7417 components: - type: Transform pos: 47.5,-8.5 parent: 2 - - uid: 7481 + - uid: 7418 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 7482 + - uid: 7419 components: - type: Transform pos: 24.5,13.5 parent: 2 - - uid: 7483 + - uid: 7420 components: - type: Transform pos: 25.5,14.5 parent: 2 - - uid: 7484 + - uid: 7421 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 7485 + - uid: 7422 components: - type: Transform pos: 25.5,15.5 parent: 2 - - uid: 7486 + - uid: 7423 components: - type: Transform pos: 24.5,14.5 parent: 2 - - uid: 7487 + - uid: 7424 components: - type: Transform pos: 26.5,15.5 parent: 2 - - uid: 7488 + - uid: 7425 components: - type: Transform pos: 24.5,12.5 parent: 2 - - uid: 7489 + - uid: 7426 components: - type: Transform pos: 20.5,14.5 parent: 2 - - uid: 7490 + - uid: 7427 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 7491 + - uid: 7428 components: - type: Transform pos: 23.5,14.5 parent: 2 - - uid: 7492 + - uid: 7429 components: - type: Transform pos: 28.5,22.5 parent: 2 - - uid: 7493 + - uid: 7430 components: - type: Transform pos: 24.5,15.5 parent: 2 - - uid: 7494 + - uid: 7431 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 7495 + - uid: 7432 components: - type: Transform pos: 27.5,22.5 parent: 2 - - uid: 7496 + - uid: 7433 components: - type: Transform pos: 24.5,9.5 parent: 2 - - uid: 7497 + - uid: 7434 components: - type: Transform pos: 24.5,18.5 parent: 2 - - uid: 7498 + - uid: 7435 components: - type: Transform pos: 22.5,14.5 parent: 2 - - uid: 7499 + - uid: 7436 components: - type: Transform pos: 26.5,22.5 parent: 2 - - uid: 7500 + - uid: 7437 components: - type: Transform pos: 21.5,9.5 parent: 2 - - uid: 7501 + - uid: 7438 components: - type: Transform pos: 20.5,9.5 parent: 2 - - uid: 7502 + - uid: 7439 components: - type: Transform pos: 20.5,22.5 parent: 2 - - uid: 7503 + - uid: 7440 components: - type: Transform pos: 25.5,22.5 parent: 2 - - uid: 7504 + - uid: 7441 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 7505 + - uid: 7442 components: - type: Transform pos: 23.5,9.5 parent: 2 - - uid: 7506 + - uid: 7443 components: - type: Transform pos: 24.5,22.5 parent: 2 - - uid: 7507 + - uid: 7444 components: - type: Transform pos: 22.5,22.5 parent: 2 - - uid: 7508 + - uid: 7445 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 7509 + - uid: 7446 components: - type: Transform pos: 23.5,22.5 parent: 2 - - uid: 7510 + - uid: 7447 components: - type: Transform pos: 21.5,22.5 parent: 2 - - uid: 7511 + - uid: 7448 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 7512 + - uid: 7449 components: - type: Transform pos: 22.5,13.5 parent: 2 - - uid: 7513 + - uid: 7450 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 7514 + - uid: 7451 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 7515 + - uid: 7452 components: - type: Transform pos: 26.5,13.5 parent: 2 - - uid: 7516 + - uid: 7453 components: - type: Transform pos: 26.5,12.5 parent: 2 - - uid: 7517 + - uid: 7454 components: - type: Transform pos: 22.5,12.5 parent: 2 - - uid: 7518 + - uid: 7455 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 7519 + - uid: 7456 components: - type: Transform pos: 26.5,17.5 parent: 2 - - uid: 7520 + - uid: 7457 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 7521 + - uid: 7458 components: - type: Transform pos: -22.5,-21.5 parent: 2 - - uid: 7522 + - uid: 7459 components: - type: Transform pos: -21.5,-19.5 parent: 2 - - uid: 7523 + - uid: 7460 components: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 13148 + - uid: 7461 components: - type: Transform pos: -61.5,-27.5 parent: 2 - - uid: 38491 + - uid: 38318 components: - type: Transform pos: -0.5,-0.5 - parent: 38484 - - uid: 38492 + parent: 38311 + - uid: 38319 components: - type: Transform pos: -0.5,0.5 - parent: 38484 - - uid: 38493 + parent: 38311 + - uid: 38320 components: - type: Transform pos: -0.5,1.5 - parent: 38484 - - uid: 38494 + parent: 38311 + - uid: 38321 components: - type: Transform pos: 1.5,1.5 - parent: 38484 - - uid: 38495 + parent: 38311 + - uid: 38322 components: - type: Transform pos: 0.5,1.5 - parent: 38484 - - uid: 38496 + parent: 38311 + - uid: 38323 components: - type: Transform pos: 1.5,0.5 - parent: 38484 - - uid: 38497 + parent: 38311 + - uid: 38324 components: - type: Transform pos: 1.5,-0.5 - parent: 38484 - - uid: 38498 + parent: 38311 + - uid: 38325 components: - type: Transform pos: 1.5,2.5 - parent: 38484 - - uid: 38499 + parent: 38311 + - uid: 38326 components: - type: Transform pos: 1.5,3.5 - parent: 38484 - - uid: 38500 + parent: 38311 + - uid: 38327 components: - type: Transform pos: 2.5,1.5 - parent: 38484 - - uid: 38501 + parent: 38311 + - uid: 38328 components: - type: Transform pos: 3.5,1.5 - parent: 38484 - - uid: 38502 + parent: 38311 + - uid: 38329 components: - type: Transform pos: 3.5,0.5 - parent: 38484 - - uid: 38682 + parent: 38311 + - uid: 38509 components: - type: Transform pos: -12.5,7.5 - parent: 38584 - - uid: 38683 + parent: 38411 + - uid: 38510 components: - type: Transform pos: -21.5,4.5 - parent: 38584 - - uid: 38684 + parent: 38411 + - uid: 38511 components: - type: Transform pos: -19.5,5.5 - parent: 38584 - - uid: 38685 + parent: 38411 + - uid: 38512 components: - type: Transform pos: -18.5,8.5 - parent: 38584 - - uid: 38686 + parent: 38411 + - uid: 38513 components: - type: Transform pos: -12.5,10.5 - parent: 38584 - - uid: 38687 + parent: 38411 + - uid: 38514 components: - type: Transform pos: -11.5,-4.5 - parent: 38584 - - uid: 38688 + parent: 38411 + - uid: 38515 components: - type: Transform pos: -16.5,-4.5 - parent: 38584 - - uid: 38689 + parent: 38411 + - uid: 38516 components: - type: Transform pos: -21.5,1.5 - parent: 38584 - - uid: 38690 + parent: 38411 + - uid: 38517 components: - type: Transform pos: -8.5,2.5 - parent: 38584 - - uid: 38691 + parent: 38411 + - uid: 38518 components: - type: Transform pos: 0.5,2.5 - parent: 38584 - - uid: 38692 + parent: 38411 + - uid: 38519 components: - type: Transform pos: 3.5,3.5 - parent: 38584 - - uid: 38693 + parent: 38411 + - uid: 38520 components: - type: Transform pos: -11.5,-6.5 - parent: 38584 - - uid: 38694 + parent: 38411 + - uid: 38521 components: - type: Transform pos: -5.5,1.5 - parent: 38584 - - uid: 38695 + parent: 38411 + - uid: 38522 components: - type: Transform pos: -4.5,3.5 - parent: 38584 - - uid: 38696 + parent: 38411 + - uid: 38523 components: - type: Transform pos: -21.5,6.5 - parent: 38584 - - uid: 38697 + parent: 38411 + - uid: 38524 components: - type: Transform pos: -9.5,6.5 - parent: 38584 - - uid: 38698 + parent: 38411 + - uid: 38525 components: - type: Transform pos: -15.5,2.5 - parent: 38584 - - uid: 38699 + parent: 38411 + - uid: 38526 components: - type: Transform pos: -9.5,9.5 - parent: 38584 - - uid: 38700 + parent: 38411 + - uid: 38527 components: - type: Transform pos: -6.5,9.5 - parent: 38584 - - uid: 38701 + parent: 38411 + - uid: 38528 components: - type: Transform pos: -4.5,2.5 - parent: 38584 - - uid: 38702 + parent: 38411 + - uid: 38529 components: - type: Transform pos: -1.5,1.5 - parent: 38584 - - uid: 38703 + parent: 38411 + - uid: 38530 components: - type: Transform pos: -18.5,9.5 - parent: 38584 - - uid: 38704 + parent: 38411 + - uid: 38531 components: - type: Transform pos: -20.5,28.5 - parent: 38584 - - uid: 38705 + parent: 38411 + - uid: 38532 components: - type: Transform pos: -22.5,28.5 - parent: 38584 - - uid: 38706 + parent: 38411 + - uid: 38533 components: - type: Transform pos: -19.5,28.5 - parent: 38584 - - uid: 38707 + parent: 38411 + - uid: 38534 components: - type: Transform pos: -23.5,28.5 - parent: 38584 - - uid: 38708 + parent: 38411 + - uid: 38535 components: - type: Transform pos: -24.5,28.5 - parent: 38584 - - uid: 38709 + parent: 38411 + - uid: 38536 components: - type: Transform pos: -21.5,29.5 - parent: 38584 - - uid: 38710 + parent: 38411 + - uid: 38537 components: - type: Transform pos: -21.5,32.5 - parent: 38584 - - uid: 38711 + parent: 38411 + - uid: 38538 components: - type: Transform pos: -20.5,31.5 - parent: 38584 - - uid: 38712 + parent: 38411 + - uid: 38539 components: - type: Transform pos: -19.5,31.5 - parent: 38584 - - uid: 38713 + parent: 38411 + - uid: 38540 components: - type: Transform pos: -18.5,31.5 - parent: 38584 - - uid: 38714 + parent: 38411 + - uid: 38541 components: - type: Transform pos: -17.5,31.5 - parent: 38584 - - uid: 38715 + parent: 38411 + - uid: 38542 components: - type: Transform pos: -17.5,32.5 - parent: 38584 - - uid: 38716 + parent: 38411 + - uid: 38543 components: - type: Transform pos: -17.5,33.5 - parent: 38584 - - uid: 38717 + parent: 38411 + - uid: 38544 components: - type: Transform pos: -17.5,34.5 - parent: 38584 - - uid: 38718 + parent: 38411 + - uid: 38545 components: - type: Transform pos: -17.5,35.5 - parent: 38584 - - uid: 38719 + parent: 38411 + - uid: 38546 components: - type: Transform pos: -15.5,35.5 - parent: 38584 - - uid: 38720 + parent: 38411 + - uid: 38547 components: - type: Transform pos: -14.5,35.5 - parent: 38584 - - uid: 38721 + parent: 38411 + - uid: 38548 components: - type: Transform pos: -21.5,33.5 - parent: 38584 - - uid: 38722 + parent: 38411 + - uid: 38549 components: - type: Transform pos: -21.5,27.5 - parent: 38584 - - uid: 38723 + parent: 38411 + - uid: 38550 components: - type: Transform pos: 7.5,3.5 - parent: 38584 - - uid: 38724 + parent: 38411 + - uid: 38551 components: - type: Transform pos: 7.5,1.5 - parent: 38584 - - uid: 38725 + parent: 38411 + - uid: 38552 components: - type: Transform pos: 1.5,-2.5 - parent: 38584 - - uid: 38726 + parent: 38411 + - uid: 38553 components: - type: Transform pos: 5.5,-4.5 - parent: 38584 - - uid: 38727 + parent: 38411 + - uid: 38554 components: - type: Transform pos: -5.5,-2.5 - parent: 38584 - - uid: 38728 + parent: 38411 + - uid: 38555 components: - type: Transform pos: 7.5,-2.5 - parent: 38584 - - uid: 38729 + parent: 38411 + - uid: 38556 components: - type: Transform pos: -7.5,-0.5 - parent: 38584 - - uid: 38730 + parent: 38411 + - uid: 38557 components: - type: Transform pos: -7.5,-3.5 - parent: 38584 - - uid: 38731 + parent: 38411 + - uid: 38558 components: - type: Transform pos: 10.5,-6.5 - parent: 38584 - - uid: 38732 + parent: 38411 + - uid: 38559 components: - type: Transform pos: 4.5,-4.5 - parent: 38584 - - uid: 38733 + parent: 38411 + - uid: 38560 components: - type: Transform pos: 4.5,1.5 - parent: 38584 - - uid: 38734 + parent: 38411 + - uid: 38561 components: - type: Transform pos: 3.5,1.5 - parent: 38584 - - uid: 38735 + parent: 38411 + - uid: 38562 components: - type: Transform pos: -0.5,-8.5 - parent: 38584 - - uid: 38736 + parent: 38411 + - uid: 38563 components: - type: Transform pos: -0.5,-7.5 - parent: 38584 - - uid: 38737 + parent: 38411 + - uid: 38564 components: - type: Transform pos: 12.5,3.5 - parent: 38584 - - uid: 38738 + parent: 38411 + - uid: 38565 components: - type: Transform pos: 12.5,4.5 - parent: 38584 - - uid: 38739 + parent: 38411 + - uid: 38566 components: - type: Transform pos: 12.5,5.5 - parent: 38584 - - uid: 38740 + parent: 38411 + - uid: 38567 components: - type: Transform pos: -0.5,-3.5 - parent: 38584 - - uid: 38741 + parent: 38411 + - uid: 38568 components: - type: Transform pos: -1.5,-10.5 - parent: 38584 - - uid: 38742 + parent: 38411 + - uid: 38569 components: - type: Transform pos: -0.5,-1.5 - parent: 38584 - - uid: 38743 + parent: 38411 + - uid: 38570 components: - type: Transform pos: -2.5,-4.5 - parent: 38584 - - uid: 38744 + parent: 38411 + - uid: 38571 components: - type: Transform pos: -1.5,-4.5 - parent: 38584 - - uid: 38745 + parent: 38411 + - uid: 38572 components: - type: Transform pos: 0.5,-1.5 - parent: 38584 - - uid: 38746 + parent: 38411 + - uid: 38573 components: - type: Transform pos: 1.5,-1.5 - parent: 38584 - - uid: 38747 + parent: 38411 + - uid: 38574 components: - type: Transform pos: -0.5,-9.5 - parent: 38584 - - uid: 38748 + parent: 38411 + - uid: 38575 components: - type: Transform pos: 0.5,-10.5 - parent: 38584 - - uid: 38749 + parent: 38411 + - uid: 38576 components: - type: Transform pos: 7.5,2.5 - parent: 38584 - - uid: 38750 + parent: 38411 + - uid: 38577 components: - type: Transform pos: 8.5,3.5 - parent: 38584 - - uid: 38751 + parent: 38411 + - uid: 38578 components: - type: Transform pos: 11.5,3.5 - parent: 38584 - - uid: 38752 + parent: 38411 + - uid: 38579 components: - type: Transform pos: -5.5,2.5 - parent: 38584 - - uid: 38753 + parent: 38411 + - uid: 38580 components: - type: Transform pos: -6.5,2.5 - parent: 38584 - - uid: 38754 + parent: 38411 + - uid: 38581 components: - type: Transform pos: 7.5,4.5 - parent: 38584 - - uid: 38755 + parent: 38411 + - uid: 38582 components: - type: Transform pos: 12.5,1.5 - parent: 38584 - - uid: 38756 + parent: 38411 + - uid: 38583 components: - type: Transform pos: -4.5,2.5 - parent: 38584 - - uid: 38757 + parent: 38411 + - uid: 38584 components: - type: Transform pos: -5.5,0.5 - parent: 38584 - - uid: 38758 + parent: 38411 + - uid: 38585 components: - type: Transform pos: -3.5,2.5 - parent: 38584 - - uid: 38759 + parent: 38411 + - uid: 38586 components: - type: Transform pos: 10.5,-2.5 - parent: 38584 - - uid: 38760 + parent: 38411 + - uid: 38587 components: - type: Transform pos: -5.5,-3.5 - parent: 38584 - - uid: 38761 + parent: 38411 + - uid: 38588 components: - type: Transform pos: 4.5,-6.5 - parent: 38584 - - uid: 38762 + parent: 38411 + - uid: 38589 components: - type: Transform pos: 9.5,3.5 - parent: 38584 - - uid: 38763 + parent: 38411 + - uid: 38590 components: - type: Transform pos: 0.5,-7.5 - parent: 38584 - - uid: 38764 + parent: 38411 + - uid: 38591 components: - type: Transform pos: 4.5,-8.5 - parent: 38584 - - uid: 38765 + parent: 38411 + - uid: 38592 components: - type: Transform pos: -0.5,-10.5 - parent: 38584 - - uid: 38766 + parent: 38411 + - uid: 38593 components: - type: Transform pos: 7.5,-3.5 - parent: 38584 - - uid: 38767 + parent: 38411 + - uid: 38594 components: - type: Transform pos: 4.5,4.5 - parent: 38584 - - uid: 38768 + parent: 38411 + - uid: 38595 components: - type: Transform pos: 10.5,3.5 - parent: 38584 - - uid: 38769 + parent: 38411 + - uid: 38596 components: - type: Transform pos: 4.5,-9.5 - parent: 38584 - - uid: 38770 + parent: 38411 + - uid: 38597 components: - type: Transform pos: 10.5,-0.5 - parent: 38584 - - uid: 38771 + parent: 38411 + - uid: 38598 components: - type: Transform pos: 4.5,0.5 - parent: 38584 - - uid: 38772 + parent: 38411 + - uid: 38599 components: - type: Transform pos: 4.5,-1.5 - parent: 38584 - - uid: 38773 + parent: 38411 + - uid: 38600 components: - type: Transform pos: -0.5,-5.5 - parent: 38584 - - uid: 38774 + parent: 38411 + - uid: 38601 components: - type: Transform pos: -0.5,-4.5 - parent: 38584 - - uid: 38775 + parent: 38411 + - uid: 38602 components: - type: Transform pos: 4.5,3.5 - parent: 38584 - - uid: 38776 + parent: 38411 + - uid: 38603 components: - type: Transform pos: 4.5,4.5 - parent: 38584 - - uid: 38777 + parent: 38411 + - uid: 38604 components: - type: Transform pos: 6.5,-4.5 - parent: 38584 - - uid: 38778 + parent: 38411 + - uid: 38605 components: - type: Transform pos: -5.5,-5.5 - parent: 38584 - - uid: 38779 + parent: 38411 + - uid: 38606 components: - type: Transform pos: -6.5,-2.5 - parent: 38584 - - uid: 38780 + parent: 38411 + - uid: 38607 components: - type: Transform pos: -7.5,-1.5 - parent: 38584 - - uid: 38781 + parent: 38411 + - uid: 38608 components: - type: Transform pos: 4.5,-2.5 - parent: 38584 - - uid: 38782 + parent: 38411 + - uid: 38609 components: - type: Transform pos: -0.5,-2.5 - parent: 38584 - - uid: 38783 + parent: 38411 + - uid: 38610 components: - type: Transform pos: 12.5,6.5 - parent: 38584 - - uid: 38784 + parent: 38411 + - uid: 38611 components: - type: Transform pos: -1.5,-7.5 - parent: 38584 - - uid: 38785 + parent: 38411 + - uid: 38612 components: - type: Transform pos: 4.5,5.5 - parent: 38584 - - uid: 38786 + parent: 38411 + - uid: 38613 components: - type: Transform pos: 9.5,-4.5 - parent: 38584 - - uid: 38787 + parent: 38411 + - uid: 38614 components: - type: Transform pos: 4.5,-5.5 - parent: 38584 - - uid: 38788 + parent: 38411 + - uid: 38615 components: - type: Transform pos: -5.5,-4.5 - parent: 38584 - - uid: 38789 + parent: 38411 + - uid: 38616 components: - type: Transform pos: -0.5,-6.5 - parent: 38584 - - uid: 38790 + parent: 38411 + - uid: 38617 components: - type: Transform pos: 10.5,-1.5 - parent: 38584 - - uid: 38791 + parent: 38411 + - uid: 38618 components: - type: Transform pos: 10.5,-4.5 - parent: 38584 - - uid: 38792 + parent: 38411 + - uid: 38619 components: - type: Transform pos: 10.5,-3.5 - parent: 38584 - - uid: 38793 + parent: 38411 + - uid: 38620 components: - type: Transform pos: 10.5,-5.5 - parent: 38584 - - uid: 38794 + parent: 38411 + - uid: 38621 components: - type: Transform pos: 12.5,2.5 - parent: 38584 - - uid: 38795 + parent: 38411 + - uid: 38622 components: - type: Transform pos: 4.5,2.5 - parent: 38584 - - uid: 38796 + parent: 38411 + - uid: 38623 components: - type: Transform pos: 10.5,-7.5 - parent: 38584 - - uid: 38797 + parent: 38411 + - uid: 38624 components: - type: Transform pos: 7.5,-4.5 - parent: 38584 - - uid: 38798 + parent: 38411 + - uid: 38625 components: - type: Transform pos: 4.5,-7.5 - parent: 38584 - - uid: 38799 + parent: 38411 + - uid: 38626 components: - type: Transform pos: 5.5,1.5 - parent: 38584 - - uid: 38800 + parent: 38411 + - uid: 38627 components: - type: Transform pos: 7.5,5.5 - parent: 38584 - - uid: 38801 + parent: 38411 + - uid: 38628 components: - type: Transform pos: -7.5,-2.5 - parent: 38584 - - uid: 38802 + parent: 38411 + - uid: 38629 components: - type: Transform pos: 4.5,-3.5 - parent: 38584 - - uid: 38803 + parent: 38411 + - uid: 38630 components: - type: Transform pos: -9.5,2.5 - parent: 38584 - - uid: 38804 + parent: 38411 + - uid: 38631 components: - type: Transform pos: -4.5,5.5 - parent: 38584 - - uid: 38805 + parent: 38411 + - uid: 38632 components: - type: Transform pos: -1.5,1.5 - parent: 38584 - - uid: 38806 + parent: 38411 + - uid: 38633 components: - type: Transform pos: -1.5,0.5 - parent: 38584 - - uid: 38807 + parent: 38411 + - uid: 38634 components: - type: Transform pos: -2.5,-1.5 - parent: 38584 - - uid: 38808 + parent: 38411 + - uid: 38635 components: - type: Transform pos: -2.5,-2.5 - parent: 38584 - - uid: 38809 + parent: 38411 + - uid: 38636 components: - type: Transform pos: 3.5,-2.5 - parent: 38584 - - uid: 38810 + parent: 38411 + - uid: 38637 components: - type: Transform pos: -1.5,-1.5 - parent: 38584 - - uid: 38811 + parent: 38411 + - uid: 38638 components: - type: Transform pos: -4.5,4.5 - parent: 38584 - - uid: 38812 + parent: 38411 + - uid: 38639 components: - type: Transform pos: -11.5,-3.5 - parent: 38584 - - uid: 38813 + parent: 38411 + - uid: 38640 components: - type: Transform pos: -0.5,2.5 - parent: 38584 - - uid: 38814 + parent: 38411 + - uid: 38641 components: - type: Transform pos: -1.5,2.5 - parent: 38584 - - uid: 38815 + parent: 38411 + - uid: 38642 components: - type: Transform pos: -7.5,10.5 - parent: 38584 - - uid: 38816 + parent: 38411 + - uid: 38643 components: - type: Transform pos: -10.5,-4.5 - parent: 38584 - - uid: 38817 + parent: 38411 + - uid: 38644 components: - type: Transform pos: -12.5,-3.5 - parent: 38584 - - uid: 38818 + parent: 38411 + - uid: 38645 components: - type: Transform pos: -12.5,2.5 - parent: 38584 - - uid: 38819 + parent: 38411 + - uid: 38646 components: - type: Transform pos: 0.5,3.5 - parent: 38584 - - uid: 38820 + parent: 38411 + - uid: 38647 components: - type: Transform pos: -7.5,7.5 - parent: 38584 - - uid: 38821 + parent: 38411 + - uid: 38648 components: - type: Transform pos: -7.5,8.5 - parent: 38584 - - uid: 38822 + parent: 38411 + - uid: 38649 components: - type: Transform pos: -12.5,-2.5 - parent: 38584 - - uid: 38823 + parent: 38411 + - uid: 38650 components: - type: Transform pos: -11.5,-7.5 - parent: 38584 - - uid: 38824 + parent: 38411 + - uid: 38651 components: - type: Transform pos: -12.5,-1.5 - parent: 38584 - - uid: 38825 + parent: 38411 + - uid: 38652 components: - type: Transform pos: -1.5,8.5 - parent: 38584 - - uid: 38826 + parent: 38411 + - uid: 38653 components: - type: Transform pos: 0.5,4.5 - parent: 38584 - - uid: 38827 + parent: 38411 + - uid: 38654 components: - type: Transform pos: 3.5,-8.5 - parent: 38584 - - uid: 38828 + parent: 38411 + - uid: 38655 components: - type: Transform pos: -20.5,5.5 - parent: 38584 - - uid: 38829 + parent: 38411 + - uid: 38656 components: - type: Transform pos: -21.5,3.5 - parent: 38584 - - uid: 38830 + parent: 38411 + - uid: 38657 components: - type: Transform pos: -21.5,2.5 - parent: 38584 - - uid: 38831 + parent: 38411 + - uid: 38658 components: - type: Transform pos: -21.5,5.5 - parent: 38584 - - uid: 38832 + parent: 38411 + - uid: 38659 components: - type: Transform pos: -5.5,9.5 - parent: 38584 - - uid: 38833 + parent: 38411 + - uid: 38660 components: - type: Transform pos: -1.5,5.5 - parent: 38584 - - uid: 38834 + parent: 38411 + - uid: 38661 components: - type: Transform pos: 0.5,8.5 - parent: 38584 - - uid: 38835 + parent: 38411 + - uid: 38662 components: - type: Transform pos: -12.5,9.5 - parent: 38584 - - uid: 38836 + parent: 38411 + - uid: 38663 components: - type: Transform pos: -12.5,8.5 - parent: 38584 - - uid: 38837 + parent: 38411 + - uid: 38664 components: - type: Transform pos: -1.5,6.5 - parent: 38584 - - uid: 38838 + parent: 38411 + - uid: 38665 components: - type: Transform pos: -9.5,8.5 - parent: 38584 - - uid: 38839 + parent: 38411 + - uid: 38666 components: - type: Transform pos: -12.5,7.5 - parent: 38584 - - uid: 38840 + parent: 38411 + - uid: 38667 components: - type: Transform pos: -11.5,-5.5 - parent: 38584 - - uid: 38841 + parent: 38411 + - uid: 38668 components: - type: Transform pos: -7.5,2.5 - parent: 38584 - - uid: 38842 + parent: 38411 + - uid: 38669 components: - type: Transform pos: -2.5,2.5 - parent: 38584 - - uid: 38843 + parent: 38411 + - uid: 38670 components: - type: Transform pos: -22.5,5.5 - parent: 38584 - - uid: 38844 + parent: 38411 + - uid: 38671 components: - type: Transform pos: -18.5,4.5 - parent: 38584 - - uid: 38845 + parent: 38411 + - uid: 38672 components: - type: Transform pos: -5.5,8.5 - parent: 38584 - - uid: 38846 + parent: 38411 + - uid: 38673 components: - type: Transform pos: -15.5,8.5 - parent: 38584 - - uid: 38847 + parent: 38411 + - uid: 38674 components: - type: Transform pos: -19.5,-4.5 - parent: 38584 - - uid: 38848 + parent: 38411 + - uid: 38675 components: - type: Transform pos: -13.5,5.5 - parent: 38584 - - uid: 38849 + parent: 38411 + - uid: 38676 components: - type: Transform pos: 0.5,1.5 - parent: 38584 - - uid: 38850 + parent: 38411 + - uid: 38677 components: - type: Transform pos: -12.5,4.5 - parent: 38584 - - uid: 38851 + parent: 38411 + - uid: 38678 components: - type: Transform pos: -16.5,-3.5 - parent: 38584 - - uid: 38852 + parent: 38411 + - uid: 38679 components: - type: Transform pos: 0.5,0.5 - parent: 38584 - - uid: 38853 + parent: 38411 + - uid: 38680 components: - type: Transform pos: -15.5,6.5 - parent: 38584 - - uid: 38854 + parent: 38411 + - uid: 38681 components: - type: Transform pos: -18.5,3.5 - parent: 38584 - - uid: 38855 + parent: 38411 + - uid: 38682 components: - type: Transform pos: -20.5,-2.5 - parent: 38584 - - uid: 38856 + parent: 38411 + - uid: 38683 components: - type: Transform pos: -18.5,2.5 - parent: 38584 - - uid: 38857 + parent: 38411 + - uid: 38684 components: - type: Transform pos: -18.5,1.5 - parent: 38584 - - uid: 38858 + parent: 38411 + - uid: 38685 components: - type: Transform pos: -15.5,4.5 - parent: 38584 - - uid: 38859 + parent: 38411 + - uid: 38686 components: - type: Transform pos: -15.5,7.5 - parent: 38584 - - uid: 38860 + parent: 38411 + - uid: 38687 components: - type: Transform pos: -8.5,9.5 - parent: 38584 - - uid: 38861 + parent: 38411 + - uid: 38688 components: - type: Transform pos: -7.5,6.5 - parent: 38584 - - uid: 38862 + parent: 38411 + - uid: 38689 components: - type: Transform pos: -9.5,7.5 - parent: 38584 - - uid: 38863 + parent: 38411 + - uid: 38690 components: - type: Transform pos: 0.5,7.5 - parent: 38584 - - uid: 38864 + parent: 38411 + - uid: 38691 components: - type: Transform pos: -16.5,5.5 - parent: 38584 - - uid: 38865 + parent: 38411 + - uid: 38692 components: - type: Transform pos: -17.5,5.5 - parent: 38584 - - uid: 38866 + parent: 38411 + - uid: 38693 components: - type: Transform pos: -12.5,6.5 - parent: 38584 - - uid: 38867 + parent: 38411 + - uid: 38694 components: - type: Transform pos: -15.5,3.5 - parent: 38584 - - uid: 38868 + parent: 38411 + - uid: 38695 components: - type: Transform pos: -15.5,1.5 - parent: 38584 - - uid: 38869 + parent: 38411 + - uid: 38696 components: - type: Transform pos: -21.5,7.5 - parent: 38584 - - uid: 38870 + parent: 38411 + - uid: 38697 components: - type: Transform pos: -18.5,6.5 - parent: 38584 - - uid: 38871 + parent: 38411 + - uid: 38698 components: - type: Transform pos: -5.5,7.5 - parent: 38584 - - uid: 38872 + parent: 38411 + - uid: 38699 components: - type: Transform pos: -5.5,6.5 - parent: 38584 - - uid: 38873 + parent: 38411 + - uid: 38700 components: - type: Transform pos: -12.5,12.5 - parent: 38584 - - uid: 38874 + parent: 38411 + - uid: 38701 components: - type: Transform pos: -12.5,3.5 - parent: 38584 - - uid: 38875 + parent: 38411 + - uid: 38702 components: - type: Transform pos: -14.5,5.5 - parent: 38584 - - uid: 38876 + parent: 38411 + - uid: 38703 components: - type: Transform pos: -20.5,-4.5 - parent: 38584 - - uid: 38877 + parent: 38411 + - uid: 38704 components: - type: Transform pos: -15.5,5.5 - parent: 38584 - - uid: 38878 + parent: 38411 + - uid: 38705 components: - type: Transform pos: -15.5,-3.5 - parent: 38584 - - uid: 38879 + parent: 38411 + - uid: 38706 components: - type: Transform pos: -20.5,-3.5 - parent: 38584 - - uid: 38880 + parent: 38411 + - uid: 38707 components: - type: Transform pos: -16.5,-6.5 - parent: 38584 - - uid: 38881 + parent: 38411 + - uid: 38708 components: - type: Transform pos: -16.5,-4.5 - parent: 38584 - - uid: 38882 + parent: 38411 + - uid: 38709 components: - type: Transform pos: -16.5,-5.5 - parent: 38584 - - uid: 38883 + parent: 38411 + - uid: 38710 components: - type: Transform pos: -21.5,-2.5 - parent: 38584 - - uid: 38884 + parent: 38411 + - uid: 38711 components: - type: Transform pos: -15.5,9.5 - parent: 38584 - - uid: 38885 + parent: 38411 + - uid: 38712 components: - type: Transform pos: -18.5,7.5 - parent: 38584 - - uid: 38886 + parent: 38411 + - uid: 38713 components: - type: Transform pos: -14.5,-3.5 - parent: 38584 - - uid: 38887 + parent: 38411 + - uid: 38714 components: - type: Transform pos: -16.5,-7.5 - parent: 38584 - - uid: 38888 + parent: 38411 + - uid: 38715 components: - type: Transform pos: -1.5,7.5 - parent: 38584 - - uid: 38889 + parent: 38411 + - uid: 38716 components: - type: Transform pos: -7.5,11.5 - parent: 38584 - - uid: 38890 + parent: 38411 + - uid: 38717 components: - type: Transform pos: -12.5,11.5 - parent: 38584 - - uid: 38891 + parent: 38411 + - uid: 38718 components: - type: Transform pos: -12.5,5.5 - parent: 38584 - - uid: 38892 + parent: 38411 + - uid: 38719 components: - type: Transform pos: -1.5,3.5 - parent: 38584 - - uid: 38893 + parent: 38411 + - uid: 38720 components: - type: Transform pos: -1.5,4.5 - parent: 38584 - - uid: 38894 + parent: 38411 + - uid: 38721 components: - type: Transform pos: 0.5,5.5 - parent: 38584 - - uid: 38895 + parent: 38411 + - uid: 38722 components: - type: Transform pos: 0.5,6.5 - parent: 38584 - - uid: 38896 + parent: 38411 + - uid: 38723 components: - type: Transform pos: -18.5,5.5 - parent: 38584 - - uid: 38897 + parent: 38411 + - uid: 38724 components: - type: Transform pos: -12.5,0.5 - parent: 38584 - - uid: 38898 + parent: 38411 + - uid: 38725 components: - type: Transform pos: -13.5,-3.5 - parent: 38584 - - uid: 38899 + parent: 38411 + - uid: 38726 components: - type: Transform pos: -17.5,-4.5 - parent: 38584 - - uid: 38900 + parent: 38411 + - uid: 38727 components: - type: Transform pos: -16.5,-0.5 - parent: 38584 - - uid: 38901 + parent: 38411 + - uid: 38728 components: - type: Transform pos: -21.5,8.5 - parent: 38584 - - uid: 38902 + parent: 38411 + - uid: 38729 components: - type: Transform pos: -21.5,9.5 - parent: 38584 - - uid: 38903 + parent: 38411 + - uid: 38730 components: - type: Transform pos: -18.5,-4.5 - parent: 38584 - - uid: 38904 + parent: 38411 + - uid: 38731 components: - type: Transform pos: -16.5,-1.5 - parent: 38584 - - uid: 38905 + parent: 38411 + - uid: 38732 components: - type: Transform pos: -16.5,-2.5 - parent: 38584 - - uid: 38906 + parent: 38411 + - uid: 38733 components: - type: Transform pos: -7.5,9.5 - parent: 38584 - - uid: 38907 + parent: 38411 + - uid: 38734 components: - type: Transform pos: -12.5,1.5 - parent: 38584 - - uid: 38908 + parent: 38411 + - uid: 38735 components: - type: Transform pos: -10.5,7.5 - parent: 38584 - - uid: 38909 + parent: 38411 + - uid: 38736 components: - type: Transform pos: -11.5,7.5 - parent: 38584 + parent: 38411 - proto: CableApcStack entities: - - uid: 7524 + - uid: 7462 components: - type: Transform pos: -48.414772,11.637162 parent: 2 - proto: CableApcStack1 entities: - - uid: 7525 + - uid: 7463 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.722485,-61.630287 parent: 2 - - uid: 7526 + - uid: 7464 components: - type: Transform pos: -33.208797,-61.324524 parent: 2 - - uid: 7527 + - uid: 7465 components: - type: Transform rot: -1.5707953085339508 rad pos: 10.239218,72.56352 parent: 2 - - uid: 7528 + - uid: 7466 components: - type: Transform rot: 1.5707973450558423 rad pos: 59.479244,-40.83658 parent: 2 - - uid: 7529 + - uid: 7467 components: - type: Transform rot: 1.5707973450558423 rad @@ -75983,7 +75988,7 @@ entities: parent: 2 - proto: CableApcStackLingering10 entities: - - uid: 7530 + - uid: 7468 components: - type: Transform rot: -1.5707953085339508 rad @@ -75991,9250 +75996,9250 @@ entities: parent: 2 - proto: CablecuffsBroken entities: - - uid: 7531 + - uid: 7469 components: - type: Transform pos: -38.590115,0.39123595 parent: 2 - - uid: 7532 + - uid: 7470 components: - type: Transform pos: -36.569214,0.9812069 parent: 2 - - uid: 7533 + - uid: 7471 components: - type: Transform pos: -33.064873,-74.243935 parent: 2 - - uid: 38910 + - uid: 38737 components: - type: Transform pos: -6.5,22.5 - parent: 38584 + parent: 38411 - proto: CableHV entities: - - uid: 7534 + - uid: 7472 components: - type: Transform pos: 52.5,-2.5 parent: 2 - - uid: 7535 + - uid: 7473 components: - type: Transform pos: 50.5,-7.5 parent: 2 - - uid: 7536 + - uid: 7474 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 7537 + - uid: 7475 components: - type: Transform pos: 70.5,25.5 parent: 2 - - uid: 7538 + - uid: 7476 components: - type: Transform pos: -18.5,-29.5 parent: 2 - - uid: 7539 + - uid: 7477 components: - type: Transform pos: 15.5,87.5 parent: 2 - - uid: 7540 + - uid: 7478 components: - type: Transform pos: 28.5,103.5 parent: 2 - - uid: 7541 + - uid: 7479 components: - type: Transform pos: 28.5,101.5 parent: 2 - - uid: 7542 + - uid: 7480 components: - type: Transform pos: 32.5,94.5 parent: 2 - - uid: 7543 + - uid: 7481 components: - type: Transform pos: 15.5,88.5 parent: 2 - - uid: 7544 + - uid: 7482 components: - type: Transform pos: 33.5,94.5 parent: 2 - - uid: 7545 + - uid: 7483 components: - type: Transform pos: 16.5,87.5 parent: 2 - - uid: 7546 + - uid: 7484 components: - type: Transform pos: 30.5,95.5 parent: 2 - - uid: 7547 + - uid: 7485 components: - type: Transform pos: 3.5,-39.5 parent: 2 - - uid: 7548 + - uid: 7486 components: - type: Transform pos: 28.5,95.5 parent: 2 - - uid: 7549 + - uid: 7487 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 7550 + - uid: 7488 components: - type: Transform pos: 29.5,95.5 parent: 2 - - uid: 7551 + - uid: 7489 components: - type: Transform pos: -41.5,-73.5 parent: 2 - - uid: 7552 + - uid: 7490 components: - type: Transform pos: 23.5,92.5 parent: 2 - - uid: 7553 + - uid: 7491 components: - type: Transform pos: 31.5,96.5 parent: 2 - - uid: 7554 + - uid: 7492 components: - type: Transform pos: 22.5,90.5 parent: 2 - - uid: 7555 + - uid: 7493 components: - type: Transform pos: 24.5,96.5 parent: 2 - - uid: 7556 + - uid: 7494 components: - type: Transform pos: 25.5,90.5 parent: 2 - - uid: 7557 + - uid: 7495 components: - type: Transform pos: 22.5,98.5 parent: 2 - - uid: 7558 + - uid: 7496 components: - type: Transform pos: 21.5,94.5 parent: 2 - - uid: 7559 + - uid: 7497 components: - type: Transform pos: 26.5,90.5 parent: 2 - - uid: 7560 + - uid: 7498 components: - type: Transform pos: 31.5,100.5 parent: 2 - - uid: 7561 + - uid: 7499 components: - type: Transform pos: 25.5,98.5 parent: 2 - - uid: 7562 + - uid: 7500 components: - type: Transform pos: 26.5,99.5 parent: 2 - - uid: 7563 + - uid: 7501 components: - type: Transform pos: 25.5,96.5 parent: 2 - - uid: 7564 + - uid: 7502 components: - type: Transform pos: 22.5,100.5 parent: 2 - - uid: 7565 + - uid: 7503 components: - type: Transform pos: 33.5,100.5 parent: 2 - - uid: 7566 + - uid: 7504 components: - type: Transform pos: 34.5,100.5 parent: 2 - - uid: 7567 + - uid: 7505 components: - type: Transform pos: 26.5,98.5 parent: 2 - - uid: 7568 + - uid: 7506 components: - type: Transform pos: 31.5,94.5 parent: 2 - - uid: 7569 + - uid: 7507 components: - type: Transform pos: 25.5,95.5 parent: 2 - - uid: 7570 + - uid: 7508 components: - type: Transform pos: 24.5,98.5 parent: 2 - - uid: 7571 + - uid: 7509 components: - type: Transform pos: 35.5,96.5 parent: 2 - - uid: 7572 + - uid: 7510 components: - type: Transform pos: 34.5,94.5 parent: 2 - - uid: 7573 + - uid: 7511 components: - type: Transform pos: 33.5,96.5 parent: 2 - - uid: 7574 + - uid: 7512 components: - type: Transform pos: 32.5,92.5 parent: 2 - - uid: 7575 + - uid: 7513 components: - type: Transform pos: 33.5,92.5 parent: 2 - - uid: 7576 + - uid: 7514 components: - type: Transform pos: 24.5,92.5 parent: 2 - - uid: 7577 + - uid: 7515 components: - type: Transform pos: 31.5,92.5 parent: 2 - - uid: 7578 + - uid: 7516 components: - type: Transform pos: 32.5,100.5 parent: 2 - - uid: 7579 + - uid: 7517 components: - type: Transform pos: 32.5,98.5 parent: 2 - - uid: 7580 + - uid: 7518 components: - type: Transform pos: 32.5,96.5 parent: 2 - - uid: 7581 + - uid: 7519 components: - type: Transform pos: -42.5,-73.5 parent: 2 - - uid: 7582 + - uid: 7520 components: - type: Transform pos: -41.5,-74.5 parent: 2 - - uid: 7583 + - uid: 7521 components: - type: Transform pos: 23.5,90.5 parent: 2 - - uid: 7584 + - uid: 7522 components: - type: Transform pos: 28.5,94.5 parent: 2 - - uid: 7585 + - uid: 7523 components: - type: Transform pos: 28.5,92.5 parent: 2 - - uid: 7586 + - uid: 7524 components: - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 7587 + - uid: 7525 components: - type: Transform pos: 29.5,99.5 parent: 2 - - uid: 7588 + - uid: 7526 components: - type: Transform pos: 17.5,87.5 parent: 2 - - uid: 7589 + - uid: 7527 components: - type: Transform pos: 23.5,100.5 parent: 2 - - uid: 7590 + - uid: 7528 components: - type: Transform pos: 28.5,89.5 parent: 2 - - uid: 7591 + - uid: 7529 components: - type: Transform pos: 30.5,92.5 parent: 2 - - uid: 7592 + - uid: 7530 components: - type: Transform pos: 26.5,87.5 parent: 2 - - uid: 7593 + - uid: 7531 components: - type: Transform pos: 23.5,87.5 parent: 2 - - uid: 7594 + - uid: 7532 components: - type: Transform pos: 20.5,87.5 parent: 2 - - uid: 7595 + - uid: 7533 components: - type: Transform pos: 25.5,87.5 parent: 2 - - uid: 7596 + - uid: 7534 components: - type: Transform pos: 23.5,96.5 parent: 2 - - uid: 7597 + - uid: 7535 components: - type: Transform pos: 22.5,87.5 parent: 2 - - uid: 7598 + - uid: 7536 components: - type: Transform pos: 24.5,87.5 parent: 2 - - uid: 7599 + - uid: 7537 components: - type: Transform pos: 28.5,96.5 parent: 2 - - uid: 7600 + - uid: 7538 components: - type: Transform pos: 28.5,97.5 parent: 2 - - uid: 7601 + - uid: 7539 components: - type: Transform pos: 28.5,98.5 parent: 2 - - uid: 7602 + - uid: 7540 components: - type: Transform pos: 22.5,96.5 parent: 2 - - uid: 7603 + - uid: 7541 components: - type: Transform pos: 21.5,96.5 parent: 2 - - uid: 7604 + - uid: 7542 components: - type: Transform pos: 18.5,87.5 parent: 2 - - uid: 7605 + - uid: 7543 components: - type: Transform pos: 14.5,88.5 parent: 2 - - uid: 7606 + - uid: 7544 components: - type: Transform pos: 32.5,90.5 parent: 2 - - uid: 7607 + - uid: 7545 components: - type: Transform pos: 31.5,90.5 parent: 2 - - uid: 7608 + - uid: 7546 components: - type: Transform pos: -44.5,1.5 parent: 2 - - uid: 7609 + - uid: 7547 components: - type: Transform pos: 23.5,98.5 parent: 2 - - uid: 7610 + - uid: 7548 components: - type: Transform pos: 28.5,100.5 parent: 2 - - uid: 7611 + - uid: 7549 components: - type: Transform pos: 24.5,94.5 parent: 2 - - uid: 7612 + - uid: 7550 components: - type: Transform pos: 25.5,92.5 parent: 2 - - uid: 7613 + - uid: 7551 components: - type: Transform pos: 29.5,91.5 parent: 2 - - uid: 7614 + - uid: 7552 components: - type: Transform pos: 22.5,94.5 parent: 2 - - uid: 7615 + - uid: 7553 components: - type: Transform pos: 23.5,94.5 parent: 2 - - uid: 7616 + - uid: 7554 components: - type: Transform pos: 25.5,94.5 parent: 2 - - uid: 7617 + - uid: 7555 components: - type: Transform pos: 28.5,93.5 parent: 2 - - uid: 7618 + - uid: 7556 components: - type: Transform pos: -45.5,2.5 parent: 2 - - uid: 7619 + - uid: 7557 components: - type: Transform pos: 22.5,92.5 parent: 2 - - uid: 7620 + - uid: 7558 components: - type: Transform pos: 28.5,88.5 parent: 2 - - uid: 7621 + - uid: 7559 components: - type: Transform pos: 24.5,100.5 parent: 2 - - uid: 7622 + - uid: 7560 components: - type: Transform pos: 35.5,94.5 parent: 2 - - uid: 7623 + - uid: 7561 components: - type: Transform pos: 21.5,87.5 parent: 2 - - uid: 7624 + - uid: 7562 components: - type: Transform pos: 26.5,95.5 parent: 2 - - uid: 7625 + - uid: 7563 components: - type: Transform pos: 27.5,95.5 parent: 2 - - uid: 7626 + - uid: 7564 components: - type: Transform pos: -44.5,2.5 parent: 2 - - uid: 7627 + - uid: 7565 components: - type: Transform pos: 31.5,98.5 parent: 2 - - uid: 7628 + - uid: 7566 components: - type: Transform pos: -43.5,-74.5 parent: 2 - - uid: 7629 + - uid: 7567 components: - type: Transform pos: -43.5,-75.5 parent: 2 - - uid: 7630 + - uid: 7568 components: - type: Transform pos: 27.5,99.5 parent: 2 - - uid: 7631 + - uid: 7569 components: - type: Transform pos: 30.5,100.5 parent: 2 - - uid: 7632 + - uid: 7570 components: - type: Transform pos: 28.5,90.5 parent: 2 - - uid: 7633 + - uid: 7571 components: - type: Transform pos: -45.5,0.5 parent: 2 - - uid: 7634 + - uid: 7572 components: - type: Transform pos: -45.5,1.5 parent: 2 - - uid: 7635 + - uid: 7573 components: - type: Transform pos: 19.5,87.5 parent: 2 - - uid: 7636 + - uid: 7574 components: - type: Transform pos: 26.5,91.5 parent: 2 - - uid: 7637 + - uid: 7575 components: - type: Transform pos: 33.5,98.5 parent: 2 - - uid: 7638 + - uid: 7576 components: - type: Transform pos: -43.5,-73.5 parent: 2 - - uid: 7639 + - uid: 7577 components: - type: Transform pos: 31.5,95.5 parent: 2 - - uid: 7640 + - uid: 7578 components: - type: Transform pos: 28.5,87.5 parent: 2 - - uid: 7641 + - uid: 7579 components: - type: Transform pos: 34.5,90.5 parent: 2 - - uid: 7642 + - uid: 7580 components: - type: Transform pos: 28.5,91.5 parent: 2 - - uid: 7643 + - uid: 7581 components: - type: Transform pos: 30.5,99.5 parent: 2 - - uid: 7644 + - uid: 7582 components: - type: Transform pos: -45.5,-74.5 parent: 2 - - uid: 7645 + - uid: 7583 components: - type: Transform pos: 34.5,92.5 parent: 2 - - uid: 7646 + - uid: 7584 components: - type: Transform pos: 13.5,87.5 parent: 2 - - uid: 7647 + - uid: 7585 components: - type: Transform pos: 30.5,90.5 parent: 2 - - uid: 7648 + - uid: 7586 components: - type: Transform pos: 33.5,90.5 parent: 2 - - uid: 7649 + - uid: 7587 components: - type: Transform pos: -44.5,-74.5 parent: 2 - - uid: 7650 + - uid: 7588 components: - type: Transform pos: 28.5,102.5 parent: 2 - - uid: 7651 + - uid: 7589 components: - type: Transform pos: 30.5,91.5 parent: 2 - - uid: 7652 + - uid: 7590 components: - type: Transform pos: 13.5,88.5 parent: 2 - - uid: 7653 + - uid: 7591 components: - type: Transform pos: 28.5,99.5 parent: 2 - - uid: 7654 + - uid: 7592 components: - type: Transform pos: 24.5,90.5 parent: 2 - - uid: 7655 + - uid: 7593 components: - type: Transform pos: 26.5,92.5 parent: 2 - - uid: 7656 + - uid: 7594 components: - type: Transform pos: 27.5,91.5 parent: 2 - - uid: 7657 + - uid: 7595 components: - type: Transform pos: 30.5,98.5 parent: 2 - - uid: 7658 + - uid: 7596 components: - type: Transform pos: 34.5,98.5 parent: 2 - - uid: 7659 + - uid: 7597 components: - type: Transform pos: 15.5,88.5 parent: 2 - - uid: 7660 + - uid: 7598 components: - type: Transform pos: -44.5,-0.5 parent: 2 - - uid: 7661 + - uid: 7599 components: - type: Transform pos: 27.5,87.5 parent: 2 - - uid: 7662 + - uid: 7600 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 7663 + - uid: 7601 components: - type: Transform pos: -45.5,-0.5 parent: 2 - - uid: 7664 + - uid: 7602 components: - type: Transform pos: 26.5,100.5 parent: 2 - - uid: 7665 + - uid: 7603 components: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 7666 + - uid: 7604 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 7667 + - uid: 7605 components: - type: Transform pos: 6.5,-40.5 parent: 2 - - uid: 7668 + - uid: 7606 components: - type: Transform pos: 34.5,96.5 parent: 2 - - uid: 7669 + - uid: 7607 components: - type: Transform pos: 4.5,-40.5 parent: 2 - - uid: 7670 + - uid: 7608 components: - type: Transform pos: 3.5,-40.5 parent: 2 - - uid: 7671 + - uid: 7609 components: - type: Transform pos: 25.5,100.5 parent: 2 - - uid: 7672 + - uid: 7610 components: - type: Transform pos: 15.5,86.5 parent: 2 - - uid: 7673 + - uid: 7611 components: - type: Transform pos: -41.5,-2.5 parent: 2 - - uid: 7674 + - uid: 7612 components: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 7675 + - uid: 7613 components: - type: Transform pos: -45.5,-3.5 parent: 2 - - uid: 7676 + - uid: 7614 components: - type: Transform pos: -44.5,-3.5 parent: 2 - - uid: 7677 + - uid: 7615 components: - type: Transform pos: 76.5,-1.5 parent: 2 - - uid: 7678 + - uid: 7616 components: - type: Transform pos: -61.5,-5.5 parent: 2 - - uid: 7679 + - uid: 7617 components: - type: Transform pos: -41.5,-9.5 parent: 2 - - uid: 7680 + - uid: 7618 components: - type: Transform pos: -60.5,-5.5 parent: 2 - - uid: 7681 + - uid: 7619 components: - type: Transform pos: -59.5,-5.5 parent: 2 - - uid: 7682 + - uid: 7620 components: - type: Transform pos: -60.5,-7.5 parent: 2 - - uid: 7683 + - uid: 7621 components: - type: Transform pos: -55.5,-5.5 parent: 2 - - uid: 7684 + - uid: 7622 components: - type: Transform pos: 76.5,-2.5 parent: 2 - - uid: 7685 + - uid: 7623 components: - type: Transform pos: -50.5,53.5 parent: 2 - - uid: 7686 + - uid: 7624 components: - type: Transform pos: 76.5,-2.5 parent: 2 - - uid: 7687 + - uid: 7625 components: - type: Transform pos: -44.5,-2.5 parent: 2 - - uid: 7688 + - uid: 7626 components: - type: Transform pos: 77.5,-2.5 parent: 2 - - uid: 7689 + - uid: 7627 components: - type: Transform pos: -47.5,-2.5 parent: 2 - - uid: 7690 + - uid: 7628 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 7691 + - uid: 7629 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 7692 + - uid: 7630 components: - type: Transform pos: 11.5,87.5 parent: 2 - - uid: 7693 + - uid: 7631 components: - type: Transform pos: 12.5,87.5 parent: 2 - - uid: 7694 + - uid: 7632 components: - type: Transform pos: 10.5,87.5 parent: 2 - - uid: 7695 + - uid: 7633 components: - type: Transform pos: 10.5,86.5 parent: 2 - - uid: 7696 + - uid: 7634 components: - type: Transform pos: 10.5,84.5 parent: 2 - - uid: 7697 + - uid: 7635 components: - type: Transform pos: 10.5,83.5 parent: 2 - - uid: 7698 + - uid: 7636 components: - type: Transform pos: 10.5,82.5 parent: 2 - - uid: 7699 + - uid: 7637 components: - type: Transform pos: 10.5,85.5 parent: 2 - - uid: 7700 + - uid: 7638 components: - type: Transform pos: 10.5,81.5 parent: 2 - - uid: 7701 + - uid: 7639 components: - type: Transform pos: 11.5,81.5 parent: 2 - - uid: 7702 + - uid: 7640 components: - type: Transform pos: 11.5,80.5 parent: 2 - - uid: 7703 + - uid: 7641 components: - type: Transform pos: 11.5,79.5 parent: 2 - - uid: 7704 + - uid: 7642 components: - type: Transform pos: 11.5,78.5 parent: 2 - - uid: 7705 + - uid: 7643 components: - type: Transform pos: 11.5,77.5 parent: 2 - - uid: 7706 + - uid: 7644 components: - type: Transform pos: 11.5,76.5 parent: 2 - - uid: 7707 + - uid: 7645 components: - type: Transform pos: 11.5,75.5 parent: 2 - - uid: 7708 + - uid: 7646 components: - type: Transform pos: 11.5,74.5 parent: 2 - - uid: 7709 + - uid: 7647 components: - type: Transform pos: 12.5,74.5 parent: 2 - - uid: 7710 + - uid: 7648 components: - type: Transform pos: 12.5,73.5 parent: 2 - - uid: 7711 + - uid: 7649 components: - type: Transform pos: 12.5,72.5 parent: 2 - - uid: 7712 + - uid: 7650 components: - type: Transform pos: 13.5,72.5 parent: 2 - - uid: 7713 + - uid: 7651 components: - type: Transform pos: 14.5,72.5 parent: 2 - - uid: 7714 + - uid: 7652 components: - type: Transform pos: 14.5,71.5 parent: 2 - - uid: 7715 + - uid: 7653 components: - type: Transform pos: 14.5,70.5 parent: 2 - - uid: 7716 + - uid: 7654 components: - type: Transform pos: 14.5,69.5 parent: 2 - - uid: 7717 + - uid: 7655 components: - type: Transform pos: 14.5,68.5 parent: 2 - - uid: 7718 + - uid: 7656 components: - type: Transform pos: 7.5,60.5 parent: 2 - - uid: 7719 + - uid: 7657 components: - type: Transform pos: 7.5,59.5 parent: 2 - - uid: 7720 + - uid: 7658 components: - type: Transform pos: 7.5,58.5 parent: 2 - - uid: 7721 + - uid: 7659 components: - type: Transform pos: 7.5,57.5 parent: 2 - - uid: 7722 + - uid: 7660 components: - type: Transform pos: 8.5,57.5 parent: 2 - - uid: 7723 + - uid: 7661 components: - type: Transform pos: 9.5,57.5 parent: 2 - - uid: 7724 + - uid: 7662 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 7725 + - uid: 7663 components: - type: Transform pos: 10.5,58.5 parent: 2 - - uid: 7726 + - uid: 7664 components: - type: Transform pos: 10.5,59.5 parent: 2 - - uid: 7727 + - uid: 7665 components: - type: Transform pos: 10.5,60.5 parent: 2 - - uid: 7728 + - uid: 7666 components: - type: Transform pos: 10.5,61.5 parent: 2 - - uid: 7729 + - uid: 7667 components: - type: Transform pos: 10.5,62.5 parent: 2 - - uid: 7730 + - uid: 7668 components: - type: Transform pos: 10.5,63.5 parent: 2 - - uid: 7731 + - uid: 7669 components: - type: Transform pos: 10.5,64.5 parent: 2 - - uid: 7732 + - uid: 7670 components: - type: Transform pos: 11.5,64.5 parent: 2 - - uid: 7733 + - uid: 7671 components: - type: Transform pos: 12.5,64.5 parent: 2 - - uid: 7734 + - uid: 7672 components: - type: Transform pos: 13.5,64.5 parent: 2 - - uid: 7735 + - uid: 7673 components: - type: Transform pos: 14.5,64.5 parent: 2 - - uid: 7736 + - uid: 7674 components: - type: Transform pos: 14.5,65.5 parent: 2 - - uid: 7737 + - uid: 7675 components: - type: Transform pos: 14.5,66.5 parent: 2 - - uid: 7738 + - uid: 7676 components: - type: Transform pos: 14.5,67.5 parent: 2 - - uid: 7739 + - uid: 7677 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 7740 + - uid: 7678 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 7741 + - uid: 7679 components: - type: Transform pos: 25.5,31.5 parent: 2 - - uid: 7742 + - uid: 7680 components: - type: Transform pos: -1.5,34.5 parent: 2 - - uid: 7743 + - uid: 7681 components: - type: Transform pos: -2.5,34.5 parent: 2 - - uid: 7744 + - uid: 7682 components: - type: Transform pos: -2.5,33.5 parent: 2 - - uid: 7745 + - uid: 7683 components: - type: Transform pos: -2.5,32.5 parent: 2 - - uid: 7746 + - uid: 7684 components: - type: Transform pos: -2.5,31.5 parent: 2 - - uid: 7747 + - uid: 7685 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 7748 + - uid: 7686 components: - type: Transform pos: -2.5,29.5 parent: 2 - - uid: 7749 + - uid: 7687 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 7750 + - uid: 7688 components: - type: Transform pos: -2.5,27.5 parent: 2 - - uid: 7751 + - uid: 7689 components: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 7752 + - uid: 7690 components: - type: Transform pos: -1.5,26.5 parent: 2 - - uid: 7753 + - uid: 7691 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 7754 + - uid: 7692 components: - type: Transform pos: 0.50000006,26.5 parent: 2 - - uid: 7755 + - uid: 7693 components: - type: Transform pos: 0.50000006,25.5 parent: 2 - - uid: 7756 + - uid: 7694 components: - type: Transform pos: 0.50000006,24.5 parent: 2 - - uid: 7757 + - uid: 7695 components: - type: Transform pos: 0.49999997,23.5 parent: 2 - - uid: 7758 + - uid: 7696 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 7759 + - uid: 7697 components: - type: Transform pos: -25.5,25.5 parent: 2 - - uid: 7760 + - uid: 7698 components: - type: Transform pos: -24.5,25.5 parent: 2 - - uid: 7761 + - uid: 7699 components: - type: Transform pos: -26.5,26.5 parent: 2 - - uid: 7762 + - uid: 7700 components: - type: Transform pos: -26.5,27.5 parent: 2 - - uid: 7763 + - uid: 7701 components: - type: Transform pos: -26.5,27.5 parent: 2 - - uid: 7764 + - uid: 7702 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 7765 + - uid: 7703 components: - type: Transform pos: -23.5,26.5 parent: 2 - - uid: 7766 + - uid: 7704 components: - type: Transform pos: -22.5,26.5 parent: 2 - - uid: 7767 + - uid: 7705 components: - type: Transform pos: -21.5,26.5 parent: 2 - - uid: 7768 + - uid: 7706 components: - type: Transform pos: -20.5,26.5 parent: 2 - - uid: 7769 + - uid: 7707 components: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 7770 + - uid: 7708 components: - type: Transform pos: -18.5,26.5 parent: 2 - - uid: 7771 + - uid: 7709 components: - type: Transform pos: -18.5,25.5 parent: 2 - - uid: 7772 + - uid: 7710 components: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 7773 + - uid: 7711 components: - type: Transform pos: -18.5,23.5 parent: 2 - - uid: 7774 + - uid: 7712 components: - type: Transform pos: -18.5,22.5 parent: 2 - - uid: 7775 + - uid: 7713 components: - type: Transform pos: -18.5,21.5 parent: 2 - - uid: 7776 + - uid: 7714 components: - type: Transform pos: -18.5,20.5 parent: 2 - - uid: 7777 + - uid: 7715 components: - type: Transform pos: -17.5,23.5 parent: 2 - - uid: 7778 + - uid: 7716 components: - type: Transform pos: -16.5,23.5 parent: 2 - - uid: 7779 + - uid: 7717 components: - type: Transform pos: -15.5,23.5 parent: 2 - - uid: 7780 + - uid: 7718 components: - type: Transform pos: -14.5,23.5 parent: 2 - - uid: 7781 + - uid: 7719 components: - type: Transform pos: -13.5,23.5 parent: 2 - - uid: 7782 + - uid: 7720 components: - type: Transform pos: -12.5,23.5 parent: 2 - - uid: 7783 + - uid: 7721 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 7784 + - uid: 7722 components: - type: Transform pos: -10.5,23.5 parent: 2 - - uid: 7785 + - uid: 7723 components: - type: Transform pos: -9.5,23.5 parent: 2 - - uid: 7786 + - uid: 7724 components: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 7787 + - uid: 7725 components: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 7788 + - uid: 7726 components: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 7789 + - uid: 7727 components: - type: Transform pos: -5.5,23.5 parent: 2 - - uid: 7790 + - uid: 7728 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 7791 + - uid: 7729 components: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 7792 + - uid: 7730 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 7793 + - uid: 7731 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 7794 + - uid: 7732 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 7795 + - uid: 7733 components: - type: Transform pos: 14.5,-1.5 parent: 2 - - uid: 7796 + - uid: 7734 components: - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 7797 + - uid: 7735 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 7798 + - uid: 7736 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 7799 + - uid: 7737 components: - type: Transform pos: 12.5,-3.5 parent: 2 - - uid: 7800 + - uid: 7738 components: - type: Transform pos: 12.5,-4.5 parent: 2 - - uid: 7801 + - uid: 7739 components: - type: Transform pos: 13.5,-4.5 parent: 2 - - uid: 7802 + - uid: 7740 components: - type: Transform pos: 14.5,-4.5 parent: 2 - - uid: 7803 + - uid: 7741 components: - type: Transform pos: 14.5,-3.5 parent: 2 - - uid: 7804 + - uid: 7742 components: - type: Transform pos: 15.5,-3.5 parent: 2 - - uid: 7805 + - uid: 7743 components: - type: Transform pos: 16.5,-3.5 parent: 2 - - uid: 7806 + - uid: 7744 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 7807 + - uid: 7745 components: - type: Transform pos: -39.5,-6.5 parent: 2 - - uid: 7808 + - uid: 7746 components: - type: Transform pos: -39.5,-5.5 parent: 2 - - uid: 7809 + - uid: 7747 components: - type: Transform pos: -39.5,-4.5 parent: 2 - - uid: 7810 + - uid: 7748 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 7811 + - uid: 7749 components: - type: Transform pos: -39.5,-2.5 parent: 2 - - uid: 7812 + - uid: 7750 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 7813 + - uid: 7751 components: - type: Transform pos: -40.5,-1.5 parent: 2 - - uid: 7814 + - uid: 7752 components: - type: Transform pos: -41.5,-1.5 parent: 2 - - uid: 7815 + - uid: 7753 components: - type: Transform pos: -43.5,-13.5 parent: 2 - - uid: 7816 + - uid: 7754 components: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 7817 + - uid: 7755 components: - type: Transform pos: -43.5,-12.5 parent: 2 - - uid: 7818 + - uid: 7756 components: - type: Transform pos: -43.5,-11.5 parent: 2 - - uid: 7819 + - uid: 7757 components: - type: Transform pos: -42.5,-11.5 parent: 2 - - uid: 7820 + - uid: 7758 components: - type: Transform pos: -41.5,-11.5 parent: 2 - - uid: 7821 + - uid: 7759 components: - type: Transform pos: -41.5,-10.5 parent: 2 - - uid: 7822 + - uid: 7760 components: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 7823 + - uid: 7761 components: - type: Transform pos: -41.5,-7.5 parent: 2 - - uid: 7824 + - uid: 7762 components: - type: Transform pos: -41.5,-8.5 parent: 2 - - uid: 7825 + - uid: 7763 components: - type: Transform pos: -46.5,-0.5 parent: 2 - - uid: 7826 + - uid: 7764 components: - type: Transform pos: -44.5,-1.5 parent: 2 - - uid: 7827 + - uid: 7765 components: - type: Transform pos: -49.5,-2.5 parent: 2 - - uid: 7828 + - uid: 7766 components: - type: Transform pos: -48.5,-2.5 parent: 2 - - uid: 7829 + - uid: 7767 components: - type: Transform pos: -50.5,-2.5 parent: 2 - - uid: 7830 + - uid: 7768 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 7831 + - uid: 7769 components: - type: Transform pos: -51.5,-2.5 parent: 2 - - uid: 7832 + - uid: 7770 components: - type: Transform pos: -51.5,-2.5 parent: 2 - - uid: 7833 + - uid: 7771 components: - type: Transform pos: -43.5,-14.5 parent: 2 - - uid: 7834 + - uid: 7772 components: - type: Transform pos: -43.5,-15.5 parent: 2 - - uid: 7835 + - uid: 7773 components: - type: Transform pos: -43.5,-16.5 parent: 2 - - uid: 7836 + - uid: 7774 components: - type: Transform pos: -43.5,-17.5 parent: 2 - - uid: 7837 + - uid: 7775 components: - type: Transform pos: -43.5,-18.5 parent: 2 - - uid: 7838 + - uid: 7776 components: - type: Transform pos: -43.5,-19.5 parent: 2 - - uid: 7839 + - uid: 7777 components: - type: Transform pos: -44.5,-19.5 parent: 2 - - uid: 7840 + - uid: 7778 components: - type: Transform pos: -45.5,-19.5 parent: 2 - - uid: 7841 + - uid: 7779 components: - type: Transform pos: -46.5,-19.5 parent: 2 - - uid: 7842 + - uid: 7780 components: - type: Transform pos: -47.5,-19.5 parent: 2 - - uid: 7843 + - uid: 7781 components: - type: Transform pos: -48.5,-19.5 parent: 2 - - uid: 7844 + - uid: 7782 components: - type: Transform pos: -49.5,-19.5 parent: 2 - - uid: 7845 + - uid: 7783 components: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 7846 + - uid: 7784 components: - type: Transform pos: -49.5,-21.5 parent: 2 - - uid: 7847 + - uid: 7785 components: - type: Transform pos: -50.5,-21.5 parent: 2 - - uid: 7848 + - uid: 7786 components: - type: Transform pos: -51.5,-21.5 parent: 2 - - uid: 7849 + - uid: 7787 components: - type: Transform pos: -52.5,-21.5 parent: 2 - - uid: 7850 + - uid: 7788 components: - type: Transform pos: -53.5,-21.5 parent: 2 - - uid: 7851 + - uid: 7789 components: - type: Transform pos: -53.5,-20.5 parent: 2 - - uid: 7852 + - uid: 7790 components: - type: Transform pos: -53.5,-19.5 parent: 2 - - uid: 7853 + - uid: 7791 components: - type: Transform pos: -53.5,-18.5 parent: 2 - - uid: 7854 + - uid: 7792 components: - type: Transform pos: -53.5,-17.5 parent: 2 - - uid: 7855 + - uid: 7793 components: - type: Transform pos: -53.5,-16.5 parent: 2 - - uid: 7856 + - uid: 7794 components: - type: Transform pos: -53.5,-15.5 parent: 2 - - uid: 7857 + - uid: 7795 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 7858 + - uid: 7796 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 7859 + - uid: 7797 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 7860 + - uid: 7798 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 7861 + - uid: 7799 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 7862 + - uid: 7800 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 7863 + - uid: 7801 components: - type: Transform pos: -52.5,-9.5 parent: 2 - - uid: 7864 + - uid: 7802 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 7865 + - uid: 7803 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 7866 + - uid: 7804 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 7867 + - uid: 7805 components: - type: Transform pos: -52.5,-5.5 parent: 2 - - uid: 7868 + - uid: 7806 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 7869 + - uid: 7807 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 7870 + - uid: 7808 components: - type: Transform pos: -80.5,-3.5 parent: 2 - - uid: 7871 + - uid: 7809 components: - type: Transform pos: -80.5,-2.5 parent: 2 - - uid: 7872 + - uid: 7810 components: - type: Transform pos: -81.5,-2.5 parent: 2 - - uid: 7873 + - uid: 7811 components: - type: Transform pos: -82.5,-2.5 parent: 2 - - uid: 7874 + - uid: 7812 components: - type: Transform pos: -82.5,-1.5 parent: 2 - - uid: 7875 + - uid: 7813 components: - type: Transform pos: -97.5,-2.5 parent: 2 - - uid: 7876 + - uid: 7814 components: - type: Transform pos: -96.5,-2.5 parent: 2 - - uid: 7877 + - uid: 7815 components: - type: Transform pos: -95.5,-2.5 parent: 2 - - uid: 7878 + - uid: 7816 components: - type: Transform pos: -94.5,-2.5 parent: 2 - - uid: 7879 + - uid: 7817 components: - type: Transform pos: -93.5,-2.5 parent: 2 - - uid: 7880 + - uid: 7818 components: - type: Transform pos: -92.5,-2.5 parent: 2 - - uid: 7881 + - uid: 7819 components: - type: Transform pos: -91.5,-2.5 parent: 2 - - uid: 7882 + - uid: 7820 components: - type: Transform pos: -90.5,-2.5 parent: 2 - - uid: 7883 + - uid: 7821 components: - type: Transform pos: -89.5,-2.5 parent: 2 - - uid: 7884 + - uid: 7822 components: - type: Transform pos: -88.5,-2.5 parent: 2 - - uid: 7885 + - uid: 7823 components: - type: Transform pos: -87.5,-2.5 parent: 2 - - uid: 7886 + - uid: 7824 components: - type: Transform pos: -87.5,-3.5 parent: 2 - - uid: 7887 + - uid: 7825 components: - type: Transform pos: -87.5,-4.5 parent: 2 - - uid: 7888 + - uid: 7826 components: - type: Transform pos: -87.5,-5.5 parent: 2 - - uid: 7889 + - uid: 7827 components: - type: Transform pos: -87.5,-6.5 parent: 2 - - uid: 7890 + - uid: 7828 components: - type: Transform pos: -87.5,-7.5 parent: 2 - - uid: 7891 + - uid: 7829 components: - type: Transform pos: -87.5,-8.5 parent: 2 - - uid: 7892 + - uid: 7830 components: - type: Transform pos: -87.5,-9.5 parent: 2 - - uid: 7893 + - uid: 7831 components: - type: Transform pos: -87.5,-10.5 parent: 2 - - uid: 7894 + - uid: 7832 components: - type: Transform pos: -87.5,-11.5 parent: 2 - - uid: 7895 + - uid: 7833 components: - type: Transform pos: -87.5,-12.5 parent: 2 - - uid: 7896 + - uid: 7834 components: - type: Transform pos: -88.5,-12.5 parent: 2 - - uid: 7897 + - uid: 7835 components: - type: Transform pos: -89.5,-12.5 parent: 2 - - uid: 7898 + - uid: 7836 components: - type: Transform pos: -90.5,-12.5 parent: 2 - - uid: 7899 + - uid: 7837 components: - type: Transform pos: -91.5,-12.5 parent: 2 - - uid: 7900 + - uid: 7838 components: - type: Transform pos: -92.5,-12.5 parent: 2 - - uid: 7901 + - uid: 7839 components: - type: Transform pos: -93.5,-12.5 parent: 2 - - uid: 7902 + - uid: 7840 components: - type: Transform pos: -94.5,-12.5 parent: 2 - - uid: 7903 + - uid: 7841 components: - type: Transform pos: -95.5,-12.5 parent: 2 - - uid: 7904 + - uid: 7842 components: - type: Transform pos: -96.5,-12.5 parent: 2 - - uid: 7905 + - uid: 7843 components: - type: Transform pos: -97.5,-12.5 parent: 2 - - uid: 7906 + - uid: 7844 components: - type: Transform pos: -97.5,-11.5 parent: 2 - - uid: 7907 + - uid: 7845 components: - type: Transform pos: -97.5,-10.5 parent: 2 - - uid: 7908 + - uid: 7846 components: - type: Transform pos: -97.5,-9.5 parent: 2 - - uid: 7909 + - uid: 7847 components: - type: Transform pos: -97.5,-8.5 parent: 2 - - uid: 7910 + - uid: 7848 components: - type: Transform pos: -97.5,-7.5 parent: 2 - - uid: 7911 + - uid: 7849 components: - type: Transform pos: -97.5,-6.5 parent: 2 - - uid: 7912 + - uid: 7850 components: - type: Transform pos: -97.5,-5.5 parent: 2 - - uid: 7913 + - uid: 7851 components: - type: Transform pos: -97.5,-4.5 parent: 2 - - uid: 7914 + - uid: 7852 components: - type: Transform pos: -97.5,-3.5 parent: 2 - - uid: 7915 + - uid: 7853 components: - type: Transform pos: -86.5,-1.5 parent: 2 - - uid: 7916 + - uid: 7854 components: - type: Transform pos: -87.5,-1.5 parent: 2 - - uid: 7917 + - uid: 7855 components: - type: Transform pos: -85.5,-1.5 parent: 2 - - uid: 7918 + - uid: 7856 components: - type: Transform pos: -84.5,-1.5 parent: 2 - - uid: 7919 + - uid: 7857 components: - type: Transform pos: -83.5,-1.5 parent: 2 - - uid: 7920 + - uid: 7858 components: - type: Transform pos: -78.5,-6.5 parent: 2 - - uid: 7921 + - uid: 7859 components: - type: Transform pos: -79.5,-3.5 parent: 2 - - uid: 7922 + - uid: 7860 components: - type: Transform pos: -79.5,-4.5 parent: 2 - - uid: 7923 + - uid: 7861 components: - type: Transform pos: -79.5,-5.5 parent: 2 - - uid: 7924 + - uid: 7862 components: - type: Transform pos: -79.5,-6.5 parent: 2 - - uid: 7925 + - uid: 7863 components: - type: Transform pos: -77.5,-6.5 parent: 2 - - uid: 7926 + - uid: 7864 components: - type: Transform pos: -76.5,-6.5 parent: 2 - - uid: 7927 + - uid: 7865 components: - type: Transform pos: -75.5,-6.5 parent: 2 - - uid: 7928 + - uid: 7866 components: - type: Transform pos: -74.5,-6.5 parent: 2 - - uid: 7929 + - uid: 7867 components: - type: Transform pos: -73.5,-6.5 parent: 2 - - uid: 7930 + - uid: 7868 components: - type: Transform pos: -72.5,-6.5 parent: 2 - - uid: 7931 + - uid: 7869 components: - type: Transform pos: -71.5,-6.5 parent: 2 - - uid: 7932 + - uid: 7870 components: - type: Transform pos: -70.5,-6.5 parent: 2 - - uid: 7933 + - uid: 7871 components: - type: Transform pos: -69.5,-6.5 parent: 2 - - uid: 7934 + - uid: 7872 components: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 7935 + - uid: 7873 components: - type: Transform pos: -67.5,-6.5 parent: 2 - - uid: 7936 + - uid: 7874 components: - type: Transform pos: -66.5,-6.5 parent: 2 - - uid: 7937 + - uid: 7875 components: - type: Transform pos: -65.5,-6.5 parent: 2 - - uid: 7938 + - uid: 7876 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 7939 + - uid: 7877 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 7940 + - uid: 7878 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 7941 + - uid: 7879 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 7942 + - uid: 7880 components: - type: Transform pos: -18.5,19.5 parent: 2 - - uid: 7943 + - uid: 7881 components: - type: Transform pos: -55.5,-6.5 parent: 2 - - uid: 7944 + - uid: 7882 components: - type: Transform pos: -54.5,-6.5 parent: 2 - - uid: 7945 + - uid: 7883 components: - type: Transform pos: -53.5,-6.5 parent: 2 - - uid: 7946 + - uid: 7884 components: - type: Transform pos: -46.5,1.5 parent: 2 - - uid: 7947 + - uid: 7885 components: - type: Transform pos: -47.5,1.5 parent: 2 - - uid: 7948 + - uid: 7886 components: - type: Transform pos: -48.5,1.5 parent: 2 - - uid: 7949 + - uid: 7887 components: - type: Transform pos: -49.5,1.5 parent: 2 - - uid: 7950 + - uid: 7888 components: - type: Transform pos: -50.5,1.5 parent: 2 - - uid: 7951 + - uid: 7889 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 7952 + - uid: 7890 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 7953 + - uid: 7891 components: - type: Transform pos: -53.5,1.5 parent: 2 - - uid: 7954 + - uid: 7892 components: - type: Transform pos: -54.5,1.5 parent: 2 - - uid: 7955 + - uid: 7893 components: - type: Transform pos: -55.5,1.5 parent: 2 - - uid: 7956 + - uid: 7894 components: - type: Transform pos: -56.5,1.5 parent: 2 - - uid: 7957 + - uid: 7895 components: - type: Transform pos: -57.5,1.5 parent: 2 - - uid: 7958 + - uid: 7896 components: - type: Transform pos: -58.5,1.5 parent: 2 - - uid: 7959 + - uid: 7897 components: - type: Transform pos: -59.5,1.5 parent: 2 - - uid: 7960 + - uid: 7898 components: - type: Transform pos: -60.5,1.5 parent: 2 - - uid: 7961 + - uid: 7899 components: - type: Transform pos: -61.5,1.5 parent: 2 - - uid: 7962 + - uid: 7900 components: - type: Transform pos: -62.5,1.5 parent: 2 - - uid: 7963 + - uid: 7901 components: - type: Transform pos: -63.5,1.5 parent: 2 - - uid: 7964 + - uid: 7902 components: - type: Transform pos: -64.5,1.5 parent: 2 - - uid: 7965 + - uid: 7903 components: - type: Transform pos: -65.5,1.5 parent: 2 - - uid: 7966 + - uid: 7904 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 7967 + - uid: 7905 components: - type: Transform pos: -69.5,-0.5 parent: 2 - - uid: 7968 + - uid: 7906 components: - type: Transform pos: -69.5,-1.5 parent: 2 - - uid: 7969 + - uid: 7907 components: - type: Transform pos: -71.5,0.5 parent: 2 - - uid: 7970 + - uid: 7908 components: - type: Transform pos: -71.5,-0.5 parent: 2 - - uid: 7971 + - uid: 7909 components: - type: Transform pos: -71.5,-1.5 parent: 2 - - uid: 7972 + - uid: 7910 components: - type: Transform pos: -70.5,-0.5 parent: 2 - - uid: 7973 + - uid: 7911 components: - type: Transform pos: -68.5,-0.5 parent: 2 - - uid: 7974 + - uid: 7912 components: - type: Transform pos: -67.5,0.5 parent: 2 - - uid: 7975 + - uid: 7913 components: - type: Transform pos: -67.5,-0.5 parent: 2 - - uid: 7976 + - uid: 7914 components: - type: Transform pos: -67.5,-1.5 parent: 2 - - uid: 7977 + - uid: 7915 components: - type: Transform pos: -67.5,1.5 parent: 2 - - uid: 7978 + - uid: 7916 components: - type: Transform pos: -66.5,1.5 parent: 2 - - uid: 7979 + - uid: 7917 components: - type: Transform pos: -50.5,52.5 parent: 2 - - uid: 7980 + - uid: 7918 components: - type: Transform pos: -50.5,51.5 parent: 2 - - uid: 7981 + - uid: 7919 components: - type: Transform pos: -50.5,50.5 parent: 2 - - uid: 7982 + - uid: 7920 components: - type: Transform pos: -50.5,49.5 parent: 2 - - uid: 7983 + - uid: 7921 components: - type: Transform pos: -51.5,51.5 parent: 2 - - uid: 7984 + - uid: 7922 components: - type: Transform pos: -49.5,51.5 parent: 2 - - uid: 7985 + - uid: 7923 components: - type: Transform pos: -65.5,66.5 parent: 2 - - uid: 7986 + - uid: 7924 components: - type: Transform pos: -18.5,18.5 parent: 2 - - uid: 7987 + - uid: 7925 components: - type: Transform pos: -18.5,17.5 parent: 2 - - uid: 7988 + - uid: 7926 components: - type: Transform pos: -18.5,16.5 parent: 2 - - uid: 7989 + - uid: 7927 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 7990 + - uid: 7928 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 7991 + - uid: 7929 components: - type: Transform pos: -18.5,13.5 parent: 2 - - uid: 7992 + - uid: 7930 components: - type: Transform pos: -18.5,12.5 parent: 2 - - uid: 7993 + - uid: 7931 components: - type: Transform pos: -18.5,11.5 parent: 2 - - uid: 7994 + - uid: 7932 components: - type: Transform pos: -18.5,10.5 parent: 2 - - uid: 7995 + - uid: 7933 components: - type: Transform pos: -18.5,9.5 parent: 2 - - uid: 7996 + - uid: 7934 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 7997 + - uid: 7935 components: - type: Transform pos: -18.5,7.5 parent: 2 - - uid: 7998 + - uid: 7936 components: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 7999 + - uid: 7937 components: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 8000 + - uid: 7938 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 8001 + - uid: 7939 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 8002 + - uid: 7940 components: - type: Transform pos: -21.5,5.5 parent: 2 - - uid: 8003 + - uid: 7941 components: - type: Transform pos: -22.5,5.5 parent: 2 - - uid: 8004 + - uid: 7942 components: - type: Transform pos: -23.5,5.5 parent: 2 - - uid: 8005 + - uid: 7943 components: - type: Transform pos: -24.5,5.5 parent: 2 - - uid: 8006 + - uid: 7944 components: - type: Transform pos: -25.5,5.5 parent: 2 - - uid: 8007 + - uid: 7945 components: - type: Transform pos: -26.5,5.5 parent: 2 - - uid: 8008 + - uid: 7946 components: - type: Transform pos: -27.5,5.5 parent: 2 - - uid: 8009 + - uid: 7947 components: - type: Transform pos: -28.5,5.5 parent: 2 - - uid: 8010 + - uid: 7948 components: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 8011 + - uid: 7949 components: - type: Transform pos: -30.5,5.5 parent: 2 - - uid: 8012 + - uid: 7950 components: - type: Transform pos: -31.5,5.5 parent: 2 - - uid: 8013 + - uid: 7951 components: - type: Transform pos: -32.5,5.5 parent: 2 - - uid: 8014 + - uid: 7952 components: - type: Transform pos: -33.5,5.5 parent: 2 - - uid: 8015 + - uid: 7953 components: - type: Transform pos: -34.5,5.5 parent: 2 - - uid: 8016 + - uid: 7954 components: - type: Transform pos: -35.5,5.5 parent: 2 - - uid: 8017 + - uid: 7955 components: - type: Transform pos: -36.5,5.5 parent: 2 - - uid: 8018 + - uid: 7956 components: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 8019 + - uid: 7957 components: - type: Transform pos: -38.5,5.5 parent: 2 - - uid: 8020 + - uid: 7958 components: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 8021 + - uid: 7959 components: - type: Transform pos: -40.5,5.5 parent: 2 - - uid: 8022 + - uid: 7960 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 8023 + - uid: 7961 components: - type: Transform pos: -41.5,-0.5 parent: 2 - - uid: 8024 + - uid: 7962 components: - type: Transform pos: -41.5,0.5 parent: 2 - - uid: 8025 + - uid: 7963 components: - type: Transform pos: -41.5,1.5 parent: 2 - - uid: 8026 + - uid: 7964 components: - type: Transform pos: -41.5,2.5 parent: 2 - - uid: 8027 + - uid: 7965 components: - type: Transform pos: -41.5,3.5 parent: 2 - - uid: 8028 + - uid: 7966 components: - type: Transform pos: -41.5,4.5 parent: 2 - - uid: 8029 + - uid: 7967 components: - type: Transform pos: -48.5,6.5 parent: 2 - - uid: 8030 + - uid: 7968 components: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 8031 + - uid: 7969 components: - type: Transform pos: -46.5,6.5 parent: 2 - - uid: 8032 + - uid: 7970 components: - type: Transform pos: -45.5,6.5 parent: 2 - - uid: 8033 + - uid: 7971 components: - type: Transform pos: -44.5,6.5 parent: 2 - - uid: 8034 + - uid: 7972 components: - type: Transform pos: -47.5,7.5 parent: 2 - - uid: 8035 + - uid: 7973 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 8036 + - uid: 7974 components: - type: Transform pos: -47.5,9.5 parent: 2 - - uid: 8037 + - uid: 7975 components: - type: Transform pos: -46.5,9.5 parent: 2 - - uid: 8038 + - uid: 7976 components: - type: Transform pos: -45.5,9.5 parent: 2 - - uid: 8039 + - uid: 7977 components: - type: Transform pos: -44.5,9.5 parent: 2 - - uid: 8040 + - uid: 7978 components: - type: Transform pos: -43.5,9.5 parent: 2 - - uid: 8041 + - uid: 7979 components: - type: Transform pos: -42.5,9.5 parent: 2 - - uid: 8042 + - uid: 7980 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 8043 + - uid: 7981 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 8044 + - uid: 7982 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 8045 + - uid: 7983 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 8046 + - uid: 7984 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 8047 + - uid: 7985 components: - type: Transform pos: -49.5,9.5 parent: 2 - - uid: 8048 + - uid: 7986 components: - type: Transform pos: -50.5,9.5 parent: 2 - - uid: 8049 + - uid: 7987 components: - type: Transform pos: -51.5,9.5 parent: 2 - - uid: 8050 + - uid: 7988 components: - type: Transform pos: -48.5,9.5 parent: 2 - - uid: 8051 + - uid: 7989 components: - type: Transform pos: -72.5,12.5 parent: 2 - - uid: 8052 + - uid: 7990 components: - type: Transform pos: -71.5,12.5 parent: 2 - - uid: 8053 + - uid: 7991 components: - type: Transform pos: -71.5,13.5 parent: 2 - - uid: 8054 + - uid: 7992 components: - type: Transform pos: -71.5,14.5 parent: 2 - - uid: 8055 + - uid: 7993 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 8056 + - uid: 7994 components: - type: Transform pos: -73.5,12.5 parent: 2 - - uid: 8057 + - uid: 7995 components: - type: Transform pos: -73.5,11.5 parent: 2 - - uid: 8058 + - uid: 7996 components: - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 8059 + - uid: 7997 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 8060 + - uid: 7998 components: - type: Transform pos: -70.5,15.5 parent: 2 - - uid: 8061 + - uid: 7999 components: - type: Transform pos: -69.5,15.5 parent: 2 - - uid: 8062 + - uid: 8000 components: - type: Transform pos: -68.5,15.5 parent: 2 - - uid: 8063 + - uid: 8001 components: - type: Transform pos: -67.5,15.5 parent: 2 - - uid: 8064 + - uid: 8002 components: - type: Transform pos: -66.5,15.5 parent: 2 - - uid: 8065 + - uid: 8003 components: - type: Transform pos: -65.5,15.5 parent: 2 - - uid: 8066 + - uid: 8004 components: - type: Transform pos: -64.5,15.5 parent: 2 - - uid: 8067 + - uid: 8005 components: - type: Transform pos: -63.5,15.5 parent: 2 - - uid: 8068 + - uid: 8006 components: - type: Transform pos: -62.5,15.5 parent: 2 - - uid: 8069 + - uid: 8007 components: - type: Transform pos: -62.5,14.5 parent: 2 - - uid: 8070 + - uid: 8008 components: - type: Transform pos: -61.5,14.5 parent: 2 - - uid: 8071 + - uid: 8009 components: - type: Transform pos: -60.5,14.5 parent: 2 - - uid: 8072 + - uid: 8010 components: - type: Transform pos: -59.5,14.5 parent: 2 - - uid: 8073 + - uid: 8011 components: - type: Transform pos: -58.5,14.5 parent: 2 - - uid: 8074 + - uid: 8012 components: - type: Transform pos: -57.5,14.5 parent: 2 - - uid: 8075 + - uid: 8013 components: - type: Transform pos: -56.5,14.5 parent: 2 - - uid: 8076 + - uid: 8014 components: - type: Transform pos: -55.5,14.5 parent: 2 - - uid: 8077 + - uid: 8015 components: - type: Transform pos: -54.5,14.5 parent: 2 - - uid: 8078 + - uid: 8016 components: - type: Transform pos: -53.5,14.5 parent: 2 - - uid: 8079 + - uid: 8017 components: - type: Transform pos: -52.5,14.5 parent: 2 - - uid: 8080 + - uid: 8018 components: - type: Transform pos: -52.5,13.5 parent: 2 - - uid: 8081 + - uid: 8019 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 8082 + - uid: 8020 components: - type: Transform pos: -52.5,11.5 parent: 2 - - uid: 8083 + - uid: 8021 components: - type: Transform pos: -52.5,10.5 parent: 2 - - uid: 8084 + - uid: 8022 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 8085 + - uid: 8023 components: - type: Transform pos: -53.5,15.5 parent: 2 - - uid: 8086 + - uid: 8024 components: - type: Transform pos: -53.5,16.5 parent: 2 - - uid: 8087 + - uid: 8025 components: - type: Transform pos: -53.5,17.5 parent: 2 - - uid: 8088 + - uid: 8026 components: - type: Transform pos: -53.5,18.5 parent: 2 - - uid: 8089 + - uid: 8027 components: - type: Transform pos: -53.5,19.5 parent: 2 - - uid: 8090 + - uid: 8028 components: - type: Transform pos: -53.5,20.5 parent: 2 - - uid: 8091 + - uid: 8029 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 8092 + - uid: 8030 components: - type: Transform pos: -53.5,22.5 parent: 2 - - uid: 8093 + - uid: 8031 components: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 8094 + - uid: 8032 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 8095 + - uid: 8033 components: - type: Transform pos: -54.5,24.5 parent: 2 - - uid: 8096 + - uid: 8034 components: - type: Transform pos: -55.5,24.5 parent: 2 - - uid: 8097 + - uid: 8035 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 8098 + - uid: 8036 components: - type: Transform pos: -58.5,44.5 parent: 2 - - uid: 8099 + - uid: 8037 components: - type: Transform pos: -44.5,44.5 parent: 2 - - uid: 8100 + - uid: 8038 components: - type: Transform pos: -47.5,45.5 parent: 2 - - uid: 8101 + - uid: 8039 components: - type: Transform pos: -48.5,45.5 parent: 2 - - uid: 8102 + - uid: 8040 components: - type: Transform pos: -49.5,45.5 parent: 2 - - uid: 8103 + - uid: 8041 components: - type: Transform pos: -50.5,45.5 parent: 2 - - uid: 8104 + - uid: 8042 components: - type: Transform pos: -51.5,45.5 parent: 2 - - uid: 8105 + - uid: 8043 components: - type: Transform pos: -52.5,45.5 parent: 2 - - uid: 8106 + - uid: 8044 components: - type: Transform pos: -53.5,45.5 parent: 2 - - uid: 8107 + - uid: 8045 components: - type: Transform pos: -54.5,45.5 parent: 2 - - uid: 8108 + - uid: 8046 components: - type: Transform pos: -55.5,45.5 parent: 2 - - uid: 8109 + - uid: 8047 components: - type: Transform pos: -56.5,45.5 parent: 2 - - uid: 8110 + - uid: 8048 components: - type: Transform pos: -57.5,45.5 parent: 2 - - uid: 8111 + - uid: 8049 components: - type: Transform pos: -57.5,46.5 parent: 2 - - uid: 8112 + - uid: 8050 components: - type: Transform pos: -57.5,47.5 parent: 2 - - uid: 8113 + - uid: 8051 components: - type: Transform pos: -57.5,48.5 parent: 2 - - uid: 8114 + - uid: 8052 components: - type: Transform pos: -57.5,49.5 parent: 2 - - uid: 8115 + - uid: 8053 components: - type: Transform pos: -57.5,50.5 parent: 2 - - uid: 8116 + - uid: 8054 components: - type: Transform pos: -57.5,51.5 parent: 2 - - uid: 8117 + - uid: 8055 components: - type: Transform pos: -57.5,52.5 parent: 2 - - uid: 8118 + - uid: 8056 components: - type: Transform pos: -57.5,53.5 parent: 2 - - uid: 8119 + - uid: 8057 components: - type: Transform pos: -58.5,53.5 parent: 2 - - uid: 8120 + - uid: 8058 components: - type: Transform pos: -58.5,54.5 parent: 2 - - uid: 8121 + - uid: 8059 components: - type: Transform pos: -58.5,55.5 parent: 2 - - uid: 8122 + - uid: 8060 components: - type: Transform pos: -58.5,56.5 parent: 2 - - uid: 8123 + - uid: 8061 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 8124 + - uid: 8062 components: - type: Transform pos: -58.5,58.5 parent: 2 - - uid: 8125 + - uid: 8063 components: - type: Transform pos: -58.5,61.5 parent: 2 - - uid: 8126 + - uid: 8064 components: - type: Transform pos: -58.5,62.5 parent: 2 - - uid: 8127 + - uid: 8065 components: - type: Transform pos: -58.5,63.5 parent: 2 - - uid: 8128 + - uid: 8066 components: - type: Transform pos: -59.5,63.5 parent: 2 - - uid: 8129 + - uid: 8067 components: - type: Transform pos: -57.5,63.5 parent: 2 - - uid: 8130 + - uid: 8068 components: - type: Transform pos: -60.5,63.5 parent: 2 - - uid: 8131 + - uid: 8069 components: - type: Transform pos: -57.5,61.5 parent: 2 - - uid: 8132 + - uid: 8070 components: - type: Transform pos: -57.5,60.5 parent: 2 - - uid: 8133 + - uid: 8071 components: - type: Transform pos: -57.5,59.5 parent: 2 - - uid: 8134 + - uid: 8072 components: - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 8135 + - uid: 8073 components: - type: Transform pos: -59.5,59.5 parent: 2 - - uid: 8136 + - uid: 8074 components: - type: Transform pos: -59.5,60.5 parent: 2 - - uid: 8137 + - uid: 8075 components: - type: Transform pos: -75.5,67.5 parent: 2 - - uid: 8138 + - uid: 8076 components: - type: Transform pos: -58.5,64.5 parent: 2 - - uid: 8139 + - uid: 8077 components: - type: Transform pos: -58.5,65.5 parent: 2 - - uid: 8140 + - uid: 8078 components: - type: Transform pos: -58.5,66.5 parent: 2 - - uid: 8141 + - uid: 8079 components: - type: Transform pos: -59.5,66.5 parent: 2 - - uid: 8142 + - uid: 8080 components: - type: Transform pos: -60.5,66.5 parent: 2 - - uid: 8143 + - uid: 8081 components: - type: Transform pos: -61.5,66.5 parent: 2 - - uid: 8144 + - uid: 8082 components: - type: Transform pos: -62.5,66.5 parent: 2 - - uid: 8145 + - uid: 8083 components: - type: Transform pos: -63.5,66.5 parent: 2 - - uid: 8146 + - uid: 8084 components: - type: Transform pos: -66.5,66.5 parent: 2 - - uid: 8147 + - uid: 8085 components: - type: Transform pos: -67.5,66.5 parent: 2 - - uid: 8148 + - uid: 8086 components: - type: Transform pos: -68.5,66.5 parent: 2 - - uid: 8149 + - uid: 8087 components: - type: Transform pos: -69.5,66.5 parent: 2 - - uid: 8150 + - uid: 8088 components: - type: Transform pos: -70.5,66.5 parent: 2 - - uid: 8151 + - uid: 8089 components: - type: Transform pos: -71.5,66.5 parent: 2 - - uid: 8152 + - uid: 8090 components: - type: Transform pos: -72.5,66.5 parent: 2 - - uid: 8153 + - uid: 8091 components: - type: Transform pos: -73.5,66.5 parent: 2 - - uid: 8154 + - uid: 8092 components: - type: Transform pos: -74.5,66.5 parent: 2 - - uid: 8155 + - uid: 8093 components: - type: Transform pos: -75.5,66.5 parent: 2 - - uid: 8156 + - uid: 8094 components: - type: Transform pos: -75.5,68.5 parent: 2 - - uid: 8157 + - uid: 8095 components: - type: Transform pos: -75.5,69.5 parent: 2 - - uid: 8158 + - uid: 8096 components: - type: Transform pos: -75.5,70.5 parent: 2 - - uid: 8159 + - uid: 8097 components: - type: Transform pos: -75.5,71.5 parent: 2 - - uid: 8160 + - uid: 8098 components: - type: Transform pos: -75.5,72.5 parent: 2 - - uid: 8161 + - uid: 8099 components: - type: Transform pos: -75.5,73.5 parent: 2 - - uid: 8162 + - uid: 8100 components: - type: Transform pos: -75.5,74.5 parent: 2 - - uid: 8163 + - uid: 8101 components: - type: Transform pos: -75.5,75.5 parent: 2 - - uid: 8164 + - uid: 8102 components: - type: Transform pos: -75.5,76.5 parent: 2 - - uid: 8165 + - uid: 8103 components: - type: Transform pos: -75.5,77.5 parent: 2 - - uid: 8166 + - uid: 8104 components: - type: Transform pos: -75.5,78.5 parent: 2 - - uid: 8167 + - uid: 8105 components: - type: Transform pos: -75.5,79.5 parent: 2 - - uid: 8168 + - uid: 8106 components: - type: Transform pos: -75.5,80.5 parent: 2 - - uid: 8169 + - uid: 8107 components: - type: Transform pos: -75.5,81.5 parent: 2 - - uid: 8170 + - uid: 8108 components: - type: Transform pos: -75.5,82.5 parent: 2 - - uid: 8171 + - uid: 8109 components: - type: Transform pos: -75.5,83.5 parent: 2 - - uid: 8172 + - uid: 8110 components: - type: Transform pos: -75.5,84.5 parent: 2 - - uid: 8173 + - uid: 8111 components: - type: Transform pos: -76.5,81.5 parent: 2 - - uid: 8174 + - uid: 8112 components: - type: Transform pos: -77.5,81.5 parent: 2 - - uid: 8175 + - uid: 8113 components: - type: Transform pos: -78.5,81.5 parent: 2 - - uid: 8176 + - uid: 8114 components: - type: Transform pos: -79.5,81.5 parent: 2 - - uid: 8177 + - uid: 8115 components: - type: Transform pos: -80.5,81.5 parent: 2 - - uid: 8178 + - uid: 8116 components: - type: Transform pos: -81.5,81.5 parent: 2 - - uid: 8179 + - uid: 8117 components: - type: Transform pos: -81.5,82.5 parent: 2 - - uid: 8180 + - uid: 8118 components: - type: Transform pos: -81.5,81.5 parent: 2 - - uid: 8181 + - uid: 8119 components: - type: Transform pos: -81.5,80.5 parent: 2 - - uid: 8182 + - uid: 8120 components: - type: Transform pos: -80.5,82.5 parent: 2 - - uid: 8183 + - uid: 8121 components: - type: Transform pos: -80.5,81.5 parent: 2 - - uid: 8184 + - uid: 8122 components: - type: Transform pos: -80.5,80.5 parent: 2 - - uid: 8185 + - uid: 8123 components: - type: Transform pos: -79.5,82.5 parent: 2 - - uid: 8186 + - uid: 8124 components: - type: Transform pos: -79.5,81.5 parent: 2 - - uid: 8187 + - uid: 8125 components: - type: Transform pos: -79.5,80.5 parent: 2 - - uid: 8188 + - uid: 8126 components: - type: Transform pos: -78.5,82.5 parent: 2 - - uid: 8189 + - uid: 8127 components: - type: Transform pos: -78.5,81.5 parent: 2 - - uid: 8190 + - uid: 8128 components: - type: Transform pos: -78.5,80.5 parent: 2 - - uid: 8191 + - uid: 8129 components: - type: Transform pos: -77.5,82.5 parent: 2 - - uid: 8192 + - uid: 8130 components: - type: Transform pos: -77.5,81.5 parent: 2 - - uid: 8193 + - uid: 8131 components: - type: Transform pos: -77.5,80.5 parent: 2 - - uid: 8194 + - uid: 8132 components: - type: Transform pos: -73.5,82.5 parent: 2 - - uid: 8195 + - uid: 8133 components: - type: Transform pos: -73.5,81.5 parent: 2 - - uid: 8196 + - uid: 8134 components: - type: Transform pos: -73.5,80.5 parent: 2 - - uid: 8197 + - uid: 8135 components: - type: Transform pos: -72.5,82.5 parent: 2 - - uid: 8198 + - uid: 8136 components: - type: Transform pos: -72.5,81.5 parent: 2 - - uid: 8199 + - uid: 8137 components: - type: Transform pos: -72.5,80.5 parent: 2 - - uid: 8200 + - uid: 8138 components: - type: Transform pos: -71.5,82.5 parent: 2 - - uid: 8201 + - uid: 8139 components: - type: Transform pos: -71.5,81.5 parent: 2 - - uid: 8202 + - uid: 8140 components: - type: Transform pos: -71.5,80.5 parent: 2 - - uid: 8203 + - uid: 8141 components: - type: Transform pos: -70.5,82.5 parent: 2 - - uid: 8204 + - uid: 8142 components: - type: Transform pos: -70.5,81.5 parent: 2 - - uid: 8205 + - uid: 8143 components: - type: Transform pos: -70.5,80.5 parent: 2 - - uid: 8206 + - uid: 8144 components: - type: Transform pos: -69.5,82.5 parent: 2 - - uid: 8207 + - uid: 8145 components: - type: Transform pos: -69.5,81.5 parent: 2 - - uid: 8208 + - uid: 8146 components: - type: Transform pos: -69.5,80.5 parent: 2 - - uid: 8209 + - uid: 8147 components: - type: Transform pos: -69.5,78.5 parent: 2 - - uid: 8210 + - uid: 8148 components: - type: Transform pos: -69.5,77.5 parent: 2 - - uid: 8211 + - uid: 8149 components: - type: Transform pos: -69.5,76.5 parent: 2 - - uid: 8212 + - uid: 8150 components: - type: Transform pos: -70.5,78.5 parent: 2 - - uid: 8213 + - uid: 8151 components: - type: Transform pos: -70.5,77.5 parent: 2 - - uid: 8214 + - uid: 8152 components: - type: Transform pos: -70.5,76.5 parent: 2 - - uid: 8215 + - uid: 8153 components: - type: Transform pos: -71.5,78.5 parent: 2 - - uid: 8216 + - uid: 8154 components: - type: Transform pos: -71.5,77.5 parent: 2 - - uid: 8217 + - uid: 8155 components: - type: Transform pos: -71.5,76.5 parent: 2 - - uid: 8218 + - uid: 8156 components: - type: Transform pos: -72.5,78.5 parent: 2 - - uid: 8219 + - uid: 8157 components: - type: Transform pos: -72.5,77.5 parent: 2 - - uid: 8220 + - uid: 8158 components: - type: Transform pos: -72.5,76.5 parent: 2 - - uid: 8221 + - uid: 8159 components: - type: Transform pos: -73.5,78.5 parent: 2 - - uid: 8222 + - uid: 8160 components: - type: Transform pos: -73.5,77.5 parent: 2 - - uid: 8223 + - uid: 8161 components: - type: Transform pos: -73.5,76.5 parent: 2 - - uid: 8224 + - uid: 8162 components: - type: Transform pos: -74.5,77.5 parent: 2 - - uid: 8225 + - uid: 8163 components: - type: Transform pos: -74.5,81.5 parent: 2 - - uid: 8226 + - uid: 8164 components: - type: Transform pos: -81.5,78.5 parent: 2 - - uid: 8227 + - uid: 8165 components: - type: Transform pos: -81.5,77.5 parent: 2 - - uid: 8228 + - uid: 8166 components: - type: Transform pos: -81.5,76.5 parent: 2 - - uid: 8229 + - uid: 8167 components: - type: Transform pos: -80.5,78.5 parent: 2 - - uid: 8230 + - uid: 8168 components: - type: Transform pos: -80.5,77.5 parent: 2 - - uid: 8231 + - uid: 8169 components: - type: Transform pos: -80.5,76.5 parent: 2 - - uid: 8232 + - uid: 8170 components: - type: Transform pos: -79.5,78.5 parent: 2 - - uid: 8233 + - uid: 8171 components: - type: Transform pos: -79.5,77.5 parent: 2 - - uid: 8234 + - uid: 8172 components: - type: Transform pos: -79.5,76.5 parent: 2 - - uid: 8235 + - uid: 8173 components: - type: Transform pos: -78.5,78.5 parent: 2 - - uid: 8236 + - uid: 8174 components: - type: Transform pos: -78.5,77.5 parent: 2 - - uid: 8237 + - uid: 8175 components: - type: Transform pos: -78.5,76.5 parent: 2 - - uid: 8238 + - uid: 8176 components: - type: Transform pos: -77.5,78.5 parent: 2 - - uid: 8239 + - uid: 8177 components: - type: Transform pos: -77.5,77.5 parent: 2 - - uid: 8240 + - uid: 8178 components: - type: Transform pos: -77.5,76.5 parent: 2 - - uid: 8241 + - uid: 8179 components: - type: Transform pos: -76.5,77.5 parent: 2 - - uid: 8242 + - uid: 8180 components: - type: Transform pos: -82.5,74.5 parent: 2 - - uid: 8243 + - uid: 8181 components: - type: Transform pos: -82.5,73.5 parent: 2 - - uid: 8244 + - uid: 8182 components: - type: Transform pos: -82.5,72.5 parent: 2 - - uid: 8245 + - uid: 8183 components: - type: Transform pos: -81.5,74.5 parent: 2 - - uid: 8246 + - uid: 8184 components: - type: Transform pos: -81.5,73.5 parent: 2 - - uid: 8247 + - uid: 8185 components: - type: Transform pos: -81.5,72.5 parent: 2 - - uid: 8248 + - uid: 8186 components: - type: Transform pos: -80.5,74.5 parent: 2 - - uid: 8249 + - uid: 8187 components: - type: Transform pos: -80.5,73.5 parent: 2 - - uid: 8250 + - uid: 8188 components: - type: Transform pos: -80.5,72.5 parent: 2 - - uid: 8251 + - uid: 8189 components: - type: Transform pos: -79.5,74.5 parent: 2 - - uid: 8252 + - uid: 8190 components: - type: Transform pos: -79.5,73.5 parent: 2 - - uid: 8253 + - uid: 8191 components: - type: Transform pos: -79.5,72.5 parent: 2 - - uid: 8254 + - uid: 8192 components: - type: Transform pos: -78.5,74.5 parent: 2 - - uid: 8255 + - uid: 8193 components: - type: Transform pos: -78.5,73.5 parent: 2 - - uid: 8256 + - uid: 8194 components: - type: Transform pos: -78.5,72.5 parent: 2 - - uid: 8257 + - uid: 8195 components: - type: Transform pos: -77.5,73.5 parent: 2 - - uid: 8258 + - uid: 8196 components: - type: Transform pos: -76.5,73.5 parent: 2 - - uid: 8259 + - uid: 8197 components: - type: Transform pos: -81.5,70.5 parent: 2 - - uid: 8260 + - uid: 8198 components: - type: Transform pos: -81.5,69.5 parent: 2 - - uid: 8261 + - uid: 8199 components: - type: Transform pos: -81.5,68.5 parent: 2 - - uid: 8262 + - uid: 8200 components: - type: Transform pos: -80.5,70.5 parent: 2 - - uid: 8263 + - uid: 8201 components: - type: Transform pos: -80.5,69.5 parent: 2 - - uid: 8264 + - uid: 8202 components: - type: Transform pos: -80.5,68.5 parent: 2 - - uid: 8265 + - uid: 8203 components: - type: Transform pos: -79.5,70.5 parent: 2 - - uid: 8266 + - uid: 8204 components: - type: Transform pos: -79.5,69.5 parent: 2 - - uid: 8267 + - uid: 8205 components: - type: Transform pos: -79.5,68.5 parent: 2 - - uid: 8268 + - uid: 8206 components: - type: Transform pos: -78.5,70.5 parent: 2 - - uid: 8269 + - uid: 8207 components: - type: Transform pos: -78.5,69.5 parent: 2 - - uid: 8270 + - uid: 8208 components: - type: Transform pos: -78.5,68.5 parent: 2 - - uid: 8271 + - uid: 8209 components: - type: Transform pos: -77.5,70.5 parent: 2 - - uid: 8272 + - uid: 8210 components: - type: Transform pos: -77.5,69.5 parent: 2 - - uid: 8273 + - uid: 8211 components: - type: Transform pos: -77.5,68.5 parent: 2 - - uid: 8274 + - uid: 8212 components: - type: Transform pos: -76.5,69.5 parent: 2 - - uid: 8275 + - uid: 8213 components: - type: Transform pos: -73.5,70.5 parent: 2 - - uid: 8276 + - uid: 8214 components: - type: Transform pos: -73.5,69.5 parent: 2 - - uid: 8277 + - uid: 8215 components: - type: Transform pos: -73.5,68.5 parent: 2 - - uid: 8278 + - uid: 8216 components: - type: Transform pos: -72.5,70.5 parent: 2 - - uid: 8279 + - uid: 8217 components: - type: Transform pos: -72.5,69.5 parent: 2 - - uid: 8280 + - uid: 8218 components: - type: Transform pos: -72.5,68.5 parent: 2 - - uid: 8281 + - uid: 8219 components: - type: Transform pos: -71.5,70.5 parent: 2 - - uid: 8282 + - uid: 8220 components: - type: Transform pos: -71.5,69.5 parent: 2 - - uid: 8283 + - uid: 8221 components: - type: Transform pos: -71.5,68.5 parent: 2 - - uid: 8284 + - uid: 8222 components: - type: Transform pos: -70.5,70.5 parent: 2 - - uid: 8285 + - uid: 8223 components: - type: Transform pos: -70.5,69.5 parent: 2 - - uid: 8286 + - uid: 8224 components: - type: Transform pos: -70.5,68.5 parent: 2 - - uid: 8287 + - uid: 8225 components: - type: Transform pos: -69.5,70.5 parent: 2 - - uid: 8288 + - uid: 8226 components: - type: Transform pos: -69.5,69.5 parent: 2 - - uid: 8289 + - uid: 8227 components: - type: Transform pos: -69.5,68.5 parent: 2 - - uid: 8290 + - uid: 8228 components: - type: Transform pos: -74.5,69.5 parent: 2 - - uid: 8291 + - uid: 8229 components: - type: Transform pos: -74.5,73.5 parent: 2 - - uid: 8292 + - uid: 8230 components: - type: Transform pos: -73.5,73.5 parent: 2 - - uid: 8293 + - uid: 8231 components: - type: Transform pos: -72.5,74.5 parent: 2 - - uid: 8294 + - uid: 8232 components: - type: Transform pos: -72.5,73.5 parent: 2 - - uid: 8295 + - uid: 8233 components: - type: Transform pos: -72.5,72.5 parent: 2 - - uid: 8296 + - uid: 8234 components: - type: Transform pos: -71.5,74.5 parent: 2 - - uid: 8297 + - uid: 8235 components: - type: Transform pos: -71.5,73.5 parent: 2 - - uid: 8298 + - uid: 8236 components: - type: Transform pos: -71.5,72.5 parent: 2 - - uid: 8299 + - uid: 8237 components: - type: Transform pos: -70.5,74.5 parent: 2 - - uid: 8300 + - uid: 8238 components: - type: Transform pos: -70.5,73.5 parent: 2 - - uid: 8301 + - uid: 8239 components: - type: Transform pos: -70.5,72.5 parent: 2 - - uid: 8302 + - uid: 8240 components: - type: Transform pos: -69.5,74.5 parent: 2 - - uid: 8303 + - uid: 8241 components: - type: Transform pos: -69.5,73.5 parent: 2 - - uid: 8304 + - uid: 8242 components: - type: Transform pos: -69.5,72.5 parent: 2 - - uid: 8305 + - uid: 8243 components: - type: Transform pos: -68.5,74.5 parent: 2 - - uid: 8306 + - uid: 8244 components: - type: Transform pos: -68.5,73.5 parent: 2 - - uid: 8307 + - uid: 8245 components: - type: Transform pos: -68.5,72.5 parent: 2 - - uid: 8308 + - uid: 8246 components: - type: Transform pos: -49.5,42.5 parent: 2 - - uid: 8309 + - uid: 8247 components: - type: Transform pos: -48.5,42.5 parent: 2 - - uid: 8310 + - uid: 8248 components: - type: Transform pos: -47.5,42.5 parent: 2 - - uid: 8311 + - uid: 8249 components: - type: Transform pos: -47.5,43.5 parent: 2 - - uid: 8312 + - uid: 8250 components: - type: Transform pos: -47.5,44.5 parent: 2 - - uid: 8313 + - uid: 8251 components: - type: Transform pos: -55.5,44.5 parent: 2 - - uid: 8314 + - uid: 8252 components: - type: Transform pos: -55.5,43.5 parent: 2 - - uid: 8315 + - uid: 8253 components: - type: Transform pos: -55.5,42.5 parent: 2 - - uid: 8316 + - uid: 8254 components: - type: Transform pos: -54.5,42.5 parent: 2 - - uid: 8317 + - uid: 8255 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 8318 + - uid: 8256 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 8319 + - uid: 8257 components: - type: Transform pos: -54.5,39.5 parent: 2 - - uid: 8320 + - uid: 8258 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 8321 + - uid: 8259 components: - type: Transform pos: -54.5,37.5 parent: 2 - - uid: 8322 + - uid: 8260 components: - type: Transform pos: -54.5,36.5 parent: 2 - - uid: 8323 + - uid: 8261 components: - type: Transform pos: -54.5,35.5 parent: 2 - - uid: 8324 + - uid: 8262 components: - type: Transform pos: -54.5,34.5 parent: 2 - - uid: 8325 + - uid: 8263 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 8326 + - uid: 8264 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 8327 + - uid: 8265 components: - type: Transform pos: -54.5,31.5 parent: 2 - - uid: 8328 + - uid: 8266 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 8329 + - uid: 8267 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 8330 + - uid: 8268 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 8331 + - uid: 8269 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 8332 + - uid: 8270 components: - type: Transform pos: -50.5,30.5 parent: 2 - - uid: 8333 + - uid: 8271 components: - type: Transform pos: -49.5,30.5 parent: 2 - - uid: 8334 + - uid: 8272 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 8335 + - uid: 8273 components: - type: Transform pos: -47.5,30.5 parent: 2 - - uid: 8336 + - uid: 8274 components: - type: Transform pos: -46.5,30.5 parent: 2 - - uid: 8337 + - uid: 8275 components: - type: Transform pos: -46.5,31.5 parent: 2 - - uid: 8338 + - uid: 8276 components: - type: Transform pos: -46.5,32.5 parent: 2 - - uid: 8339 + - uid: 8277 components: - type: Transform pos: -46.5,33.5 parent: 2 - - uid: 8340 + - uid: 8278 components: - type: Transform pos: -46.5,34.5 parent: 2 - - uid: 8341 + - uid: 8279 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 8342 + - uid: 8280 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 8343 + - uid: 8281 components: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 8344 + - uid: 8282 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 8345 + - uid: 8283 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 8346 + - uid: 8284 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 8347 + - uid: 8285 components: - type: Transform pos: -56.5,25.5 parent: 2 - - uid: 8348 + - uid: 8286 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 8349 + - uid: 8287 components: - type: Transform pos: -60.5,-9.5 parent: 2 - - uid: 8350 + - uid: 8288 components: - type: Transform pos: -60.5,-8.5 parent: 2 - - uid: 8351 + - uid: 8289 components: - type: Transform pos: -53.5,-11.5 parent: 2 - - uid: 8352 + - uid: 8290 components: - type: Transform pos: -59.5,-9.5 parent: 2 - - uid: 8353 + - uid: 8291 components: - type: Transform pos: -54.5,-11.5 parent: 2 - - uid: 8354 + - uid: 8292 components: - type: Transform pos: -58.5,-5.5 parent: 2 - - uid: 8355 + - uid: 8293 components: - type: Transform pos: -55.5,-11.5 parent: 2 - - uid: 8356 + - uid: 8294 components: - type: Transform pos: -57.5,-11.5 parent: 2 - - uid: 8357 + - uid: 8295 components: - type: Transform pos: -56.5,-11.5 parent: 2 - - uid: 8358 + - uid: 8296 components: - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 8359 + - uid: 8297 components: - type: Transform pos: -59.5,-10.5 parent: 2 - - uid: 8360 + - uid: 8298 components: - type: Transform pos: -59.5,-11.5 parent: 2 - - uid: 8361 + - uid: 8299 components: - type: Transform pos: -58.5,-11.5 parent: 2 - - uid: 8362 + - uid: 8300 components: - type: Transform pos: -57.5,-5.5 parent: 2 - - uid: 8363 + - uid: 8301 components: - type: Transform pos: -56.5,-5.5 parent: 2 - - uid: 8364 + - uid: 8302 components: - type: Transform pos: -59.5,-7.5 parent: 2 - - uid: 8365 + - uid: 8303 components: - type: Transform pos: -58.5,-7.5 parent: 2 - - uid: 8366 + - uid: 8304 components: - type: Transform pos: -57.5,-7.5 parent: 2 - - uid: 8367 + - uid: 8305 components: - type: Transform pos: -56.5,-7.5 parent: 2 - - uid: 8368 + - uid: 8306 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 8369 + - uid: 8307 components: - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 8370 + - uid: 8308 components: - type: Transform pos: -31.5,-55.5 parent: 2 - - uid: 8371 + - uid: 8309 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 8372 + - uid: 8310 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 8373 + - uid: 8311 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 8374 + - uid: 8312 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 8375 + - uid: 8313 components: - type: Transform pos: -33.5,-56.5 parent: 2 - - uid: 8376 + - uid: 8314 components: - type: Transform pos: -33.5,-55.5 parent: 2 - - uid: 8377 + - uid: 8315 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - uid: 8378 + - uid: 8316 components: - type: Transform pos: -33.5,-53.5 parent: 2 - - uid: 8379 + - uid: 8317 components: - type: Transform pos: -33.5,-52.5 parent: 2 - - uid: 8380 + - uid: 8318 components: - type: Transform pos: -33.5,-51.5 parent: 2 - - uid: 8381 + - uid: 8319 components: - type: Transform pos: -33.5,-50.5 parent: 2 - - uid: 8382 + - uid: 8320 components: - type: Transform pos: -33.5,-49.5 parent: 2 - - uid: 8383 + - uid: 8321 components: - type: Transform pos: -33.5,-48.5 parent: 2 - - uid: 8384 + - uid: 8322 components: - type: Transform pos: -34.5,-48.5 parent: 2 - - uid: 8385 + - uid: 8323 components: - type: Transform pos: -35.5,-48.5 parent: 2 - - uid: 8386 + - uid: 8324 components: - type: Transform pos: -36.5,-48.5 parent: 2 - - uid: 8387 + - uid: 8325 components: - type: Transform pos: -37.5,-48.5 parent: 2 - - uid: 8388 + - uid: 8326 components: - type: Transform pos: -38.5,-48.5 parent: 2 - - uid: 8389 + - uid: 8327 components: - type: Transform pos: -39.5,-48.5 parent: 2 - - uid: 8390 + - uid: 8328 components: - type: Transform pos: -40.5,-48.5 parent: 2 - - uid: 8391 + - uid: 8329 components: - type: Transform pos: -41.5,-48.5 parent: 2 - - uid: 8392 + - uid: 8330 components: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 8393 + - uid: 8331 components: - type: Transform pos: -42.5,-47.5 parent: 2 - - uid: 8394 + - uid: 8332 components: - type: Transform pos: -42.5,-46.5 parent: 2 - - uid: 8395 + - uid: 8333 components: - type: Transform pos: -42.5,-45.5 parent: 2 - - uid: 8396 + - uid: 8334 components: - type: Transform pos: -42.5,-44.5 parent: 2 - - uid: 8397 + - uid: 8335 components: - type: Transform pos: -42.5,-43.5 parent: 2 - - uid: 8398 + - uid: 8336 components: - type: Transform pos: -42.5,-42.5 parent: 2 - - uid: 8399 + - uid: 8337 components: - type: Transform pos: -42.5,-41.5 parent: 2 - - uid: 8400 + - uid: 8338 components: - type: Transform pos: -42.5,-40.5 parent: 2 - - uid: 8401 + - uid: 8339 components: - type: Transform pos: -42.5,-40.5 parent: 2 - - uid: 8402 + - uid: 8340 components: - type: Transform pos: -43.5,-40.5 parent: 2 - - uid: 8403 + - uid: 8341 components: - type: Transform pos: -44.5,-40.5 parent: 2 - - uid: 8404 + - uid: 8342 components: - type: Transform pos: -45.5,-40.5 parent: 2 - - uid: 8405 + - uid: 8343 components: - type: Transform pos: -46.5,-40.5 parent: 2 - - uid: 8406 + - uid: 8344 components: - type: Transform pos: -47.5,-40.5 parent: 2 - - uid: 8407 + - uid: 8345 components: - type: Transform pos: -48.5,-40.5 parent: 2 - - uid: 8408 + - uid: 8346 components: - type: Transform pos: -49.5,-40.5 parent: 2 - - uid: 8409 + - uid: 8347 components: - type: Transform pos: -50.5,-40.5 parent: 2 - - uid: 8410 + - uid: 8348 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 8411 + - uid: 8349 components: - type: Transform pos: -52.5,-40.5 parent: 2 - - uid: 8412 + - uid: 8350 components: - type: Transform pos: -53.5,-40.5 parent: 2 - - uid: 8413 + - uid: 8351 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 8414 + - uid: 8352 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 8415 + - uid: 8353 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 8416 + - uid: 8354 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 8417 + - uid: 8355 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - uid: 8418 + - uid: 8356 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 8419 + - uid: 8357 components: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 8420 + - uid: 8358 components: - type: Transform pos: -54.5,-34.5 parent: 2 - - uid: 8421 + - uid: 8359 components: - type: Transform pos: -54.5,-33.5 parent: 2 - - uid: 8422 + - uid: 8360 components: - type: Transform pos: -54.5,-32.5 parent: 2 - - uid: 8423 + - uid: 8361 components: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 8424 + - uid: 8362 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 8425 + - uid: 8363 components: - type: Transform pos: -54.5,-29.5 parent: 2 - - uid: 8426 + - uid: 8364 components: - type: Transform pos: -54.5,-28.5 parent: 2 - - uid: 8427 + - uid: 8365 components: - type: Transform pos: -54.5,-27.5 parent: 2 - - uid: 8428 + - uid: 8366 components: - type: Transform pos: -54.5,-26.5 parent: 2 - - uid: 8429 + - uid: 8367 components: - type: Transform pos: -54.5,-25.5 parent: 2 - - uid: 8430 + - uid: 8368 components: - type: Transform pos: -54.5,-24.5 parent: 2 - - uid: 8431 + - uid: 8369 components: - type: Transform pos: -54.5,-23.5 parent: 2 - - uid: 8432 + - uid: 8370 components: - type: Transform pos: -54.5,-22.5 parent: 2 - - uid: 8433 + - uid: 8371 components: - type: Transform pos: -54.5,-21.5 parent: 2 - - uid: 8434 + - uid: 8372 components: - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 8435 + - uid: 8373 components: - type: Transform pos: -25.5,-78.5 parent: 2 - - uid: 8436 + - uid: 8374 components: - type: Transform pos: -25.5,-77.5 parent: 2 - - uid: 8437 + - uid: 8375 components: - type: Transform pos: -25.5,-76.5 parent: 2 - - uid: 8438 + - uid: 8376 components: - type: Transform pos: -25.5,-75.5 parent: 2 - - uid: 8439 + - uid: 8377 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 8440 + - uid: 8378 components: - type: Transform pos: -25.5,-73.5 parent: 2 - - uid: 8441 + - uid: 8379 components: - type: Transform pos: -25.5,-72.5 parent: 2 - - uid: 8442 + - uid: 8380 components: - type: Transform pos: -25.5,-71.5 parent: 2 - - uid: 8443 + - uid: 8381 components: - type: Transform pos: -26.5,-71.5 parent: 2 - - uid: 8444 + - uid: 8382 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 8445 + - uid: 8383 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 8446 + - uid: 8384 components: - type: Transform pos: -26.5,-68.5 parent: 2 - - uid: 8447 + - uid: 8385 components: - type: Transform pos: -26.5,-67.5 parent: 2 - - uid: 8448 + - uid: 8386 components: - type: Transform pos: -26.5,-66.5 parent: 2 - - uid: 8449 + - uid: 8387 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 8450 + - uid: 8388 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 8451 + - uid: 8389 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 8452 + - uid: 8390 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 8453 + - uid: 8391 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 8454 + - uid: 8392 components: - type: Transform pos: -26.5,-60.5 parent: 2 - - uid: 8455 + - uid: 8393 components: - type: Transform pos: -26.5,-59.5 parent: 2 - - uid: 8456 + - uid: 8394 components: - type: Transform pos: -26.5,-58.5 parent: 2 - - uid: 8457 + - uid: 8395 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 8458 + - uid: 8396 components: - type: Transform pos: -27.5,-57.5 parent: 2 - - uid: 8459 + - uid: 8397 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 8460 + - uid: 8398 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 8461 + - uid: 8399 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 8462 + - uid: 8400 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 8463 + - uid: 8401 components: - type: Transform pos: -16.5,-30.5 parent: 2 - - uid: 8464 + - uid: 8402 components: - type: Transform pos: -15.5,-30.5 parent: 2 - - uid: 8465 + - uid: 8403 components: - type: Transform pos: -14.5,-29.5 parent: 2 - - uid: 8466 + - uid: 8404 components: - type: Transform pos: -14.5,-30.5 parent: 2 - - uid: 8467 + - uid: 8405 components: - type: Transform pos: -14.5,-31.5 parent: 2 - - uid: 8468 + - uid: 8406 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - uid: 8469 + - uid: 8407 components: - type: Transform pos: -14.5,-33.5 parent: 2 - - uid: 8470 + - uid: 8408 components: - type: Transform pos: -14.5,-34.5 parent: 2 - - uid: 8471 + - uid: 8409 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 8472 + - uid: 8410 components: - type: Transform pos: -16.5,-34.5 parent: 2 - - uid: 8473 + - uid: 8411 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 8474 + - uid: 8412 components: - type: Transform pos: -18.5,-34.5 parent: 2 - - uid: 8475 + - uid: 8413 components: - type: Transform pos: -19.5,-34.5 parent: 2 - - uid: 8476 + - uid: 8414 components: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 8477 + - uid: 8415 components: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 8478 + - uid: 8416 components: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 8479 + - uid: 8417 components: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 8480 + - uid: 8418 components: - type: Transform pos: -24.5,-34.5 parent: 2 - - uid: 8481 + - uid: 8419 components: - type: Transform pos: -25.5,-34.5 parent: 2 - - uid: 8482 + - uid: 8420 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 8483 + - uid: 8421 components: - type: Transform pos: -27.5,-34.5 parent: 2 - - uid: 8484 + - uid: 8422 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 8485 + - uid: 8423 components: - type: Transform pos: -28.5,-35.5 parent: 2 - - uid: 8486 + - uid: 8424 components: - type: Transform pos: -28.5,-36.5 parent: 2 - - uid: 8487 + - uid: 8425 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 8488 + - uid: 8426 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 8489 + - uid: 8427 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 8490 + - uid: 8428 components: - type: Transform pos: -28.5,-40.5 parent: 2 - - uid: 8491 + - uid: 8429 components: - type: Transform pos: -28.5,-41.5 parent: 2 - - uid: 8492 + - uid: 8430 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 8493 + - uid: 8431 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 8494 + - uid: 8432 components: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 8495 + - uid: 8433 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 8496 + - uid: 8434 components: - type: Transform pos: -27.5,-45.5 parent: 2 - - uid: 8497 + - uid: 8435 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 8498 + - uid: 8436 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 8499 + - uid: 8437 components: - type: Transform pos: -24.5,-45.5 parent: 2 - - uid: 8500 + - uid: 8438 components: - type: Transform pos: -23.5,-45.5 parent: 2 - - uid: 8501 + - uid: 8439 components: - type: Transform pos: -23.5,-46.5 parent: 2 - - uid: 8502 + - uid: 8440 components: - type: Transform pos: -23.5,-47.5 parent: 2 - - uid: 8503 + - uid: 8441 components: - type: Transform pos: -23.5,-48.5 parent: 2 - - uid: 8504 + - uid: 8442 components: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 8505 + - uid: 8443 components: - type: Transform pos: -23.5,-50.5 parent: 2 - - uid: 8506 + - uid: 8444 components: - type: Transform pos: -23.5,-51.5 parent: 2 - - uid: 8507 + - uid: 8445 components: - type: Transform pos: -23.5,-52.5 parent: 2 - - uid: 8508 + - uid: 8446 components: - type: Transform pos: -24.5,-52.5 parent: 2 - - uid: 8509 + - uid: 8447 components: - type: Transform pos: -25.5,-52.5 parent: 2 - - uid: 8510 + - uid: 8448 components: - type: Transform pos: -26.5,-52.5 parent: 2 - - uid: 8511 + - uid: 8449 components: - type: Transform pos: -27.5,-52.5 parent: 2 - - uid: 8512 + - uid: 8450 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 8513 + - uid: 8451 components: - type: Transform pos: -29.5,-52.5 parent: 2 - - uid: 8514 + - uid: 8452 components: - type: Transform pos: -30.5,-52.5 parent: 2 - - uid: 8515 + - uid: 8453 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 8516 + - uid: 8454 components: - type: Transform pos: -32.5,-52.5 parent: 2 - - uid: 8517 + - uid: 8455 components: - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 8518 + - uid: 8456 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 8519 + - uid: 8457 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 8520 + - uid: 8458 components: - type: Transform pos: -74.5,-22.5 parent: 2 - - uid: 8521 + - uid: 8459 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 8522 + - uid: 8460 components: - type: Transform pos: -74.5,-20.5 parent: 2 - - uid: 8523 + - uid: 8461 components: - type: Transform pos: -74.5,-19.5 parent: 2 - - uid: 8524 + - uid: 8462 components: - type: Transform pos: -73.5,-19.5 parent: 2 - - uid: 8525 + - uid: 8463 components: - type: Transform pos: -72.5,-19.5 parent: 2 - - uid: 8526 + - uid: 8464 components: - type: Transform pos: -71.5,-19.5 parent: 2 - - uid: 8527 + - uid: 8465 components: - type: Transform pos: -70.5,-19.5 parent: 2 - - uid: 8528 + - uid: 8466 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 8529 + - uid: 8467 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 8530 + - uid: 8468 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 8531 + - uid: 8469 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 8532 + - uid: 8470 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 8533 + - uid: 8471 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 8534 + - uid: 8472 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 8535 + - uid: 8473 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 8536 + - uid: 8474 components: - type: Transform pos: -62.5,-20.5 parent: 2 - - uid: 8537 + - uid: 8475 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 8538 + - uid: 8476 components: - type: Transform pos: -61.5,-19.5 parent: 2 - - uid: 8539 + - uid: 8477 components: - type: Transform pos: -60.5,-19.5 parent: 2 - - uid: 8540 + - uid: 8478 components: - type: Transform pos: -59.5,-19.5 parent: 2 - - uid: 8541 + - uid: 8479 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 8542 + - uid: 8480 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 8543 + - uid: 8481 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 8544 + - uid: 8482 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 8545 + - uid: 8483 components: - type: Transform pos: -54.5,-19.5 parent: 2 - - uid: 8546 + - uid: 8484 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 8547 + - uid: 8485 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 8548 + - uid: 8486 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 8549 + - uid: 8487 components: - type: Transform pos: -41.5,13.5 parent: 2 - - uid: 8550 + - uid: 8488 components: - type: Transform pos: -41.5,14.5 parent: 2 - - uid: 8551 + - uid: 8489 components: - type: Transform pos: -41.5,15.5 parent: 2 - - uid: 8552 + - uid: 8490 components: - type: Transform pos: -41.5,16.5 parent: 2 - - uid: 8553 + - uid: 8491 components: - type: Transform pos: -41.5,17.5 parent: 2 - - uid: 8554 + - uid: 8492 components: - type: Transform pos: -41.5,18.5 parent: 2 - - uid: 8555 + - uid: 8493 components: - type: Transform pos: -41.5,19.5 parent: 2 - - uid: 8556 + - uid: 8494 components: - type: Transform pos: -41.5,20.5 parent: 2 - - uid: 8557 + - uid: 8495 components: - type: Transform pos: -41.5,21.5 parent: 2 - - uid: 8558 + - uid: 8496 components: - type: Transform pos: -41.5,22.5 parent: 2 - - uid: 8559 + - uid: 8497 components: - type: Transform pos: -41.5,23.5 parent: 2 - - uid: 8560 + - uid: 8498 components: - type: Transform pos: -41.5,24.5 parent: 2 - - uid: 8561 + - uid: 8499 components: - type: Transform pos: -41.5,25.5 parent: 2 - - uid: 8562 + - uid: 8500 components: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 8563 + - uid: 8501 components: - type: Transform pos: -42.5,26.5 parent: 2 - - uid: 8564 + - uid: 8502 components: - type: Transform pos: -42.5,27.5 parent: 2 - - uid: 8565 + - uid: 8503 components: - type: Transform pos: -42.5,28.5 parent: 2 - - uid: 8566 + - uid: 8504 components: - type: Transform pos: -42.5,29.5 parent: 2 - - uid: 8567 + - uid: 8505 components: - type: Transform pos: -42.5,30.5 parent: 2 - - uid: 8568 + - uid: 8506 components: - type: Transform pos: -42.5,31.5 parent: 2 - - uid: 8569 + - uid: 8507 components: - type: Transform pos: -42.5,32.5 parent: 2 - - uid: 8570 + - uid: 8508 components: - type: Transform pos: -42.5,33.5 parent: 2 - - uid: 8571 + - uid: 8509 components: - type: Transform pos: -42.5,34.5 parent: 2 - - uid: 8572 + - uid: 8510 components: - type: Transform pos: -42.5,35.5 parent: 2 - - uid: 8573 + - uid: 8511 components: - type: Transform pos: -42.5,36.5 parent: 2 - - uid: 8574 + - uid: 8512 components: - type: Transform pos: -42.5,37.5 parent: 2 - - uid: 8575 + - uid: 8513 components: - type: Transform pos: -43.5,37.5 parent: 2 - - uid: 8576 + - uid: 8514 components: - type: Transform pos: -44.5,37.5 parent: 2 - - uid: 8577 + - uid: 8515 components: - type: Transform pos: -44.5,38.5 parent: 2 - - uid: 8578 + - uid: 8516 components: - type: Transform pos: -44.5,39.5 parent: 2 - - uid: 8579 + - uid: 8517 components: - type: Transform pos: -43.5,39.5 parent: 2 - - uid: 8580 + - uid: 8518 components: - type: Transform pos: -42.5,39.5 parent: 2 - - uid: 8581 + - uid: 8519 components: - type: Transform pos: -41.5,39.5 parent: 2 - - uid: 8582 + - uid: 8520 components: - type: Transform pos: -40.5,39.5 parent: 2 - - uid: 8583 + - uid: 8521 components: - type: Transform pos: -40.5,40.5 parent: 2 - - uid: 8584 + - uid: 8522 components: - type: Transform pos: -37.5,40.5 parent: 2 - - uid: 8585 + - uid: 8523 components: - type: Transform pos: -37.5,39.5 parent: 2 - - uid: 8586 + - uid: 8524 components: - type: Transform pos: -36.5,39.5 parent: 2 - - uid: 8587 + - uid: 8525 components: - type: Transform pos: -35.5,39.5 parent: 2 - - uid: 8588 + - uid: 8526 components: - type: Transform pos: -35.5,38.5 parent: 2 - - uid: 8589 + - uid: 8527 components: - type: Transform pos: -35.5,37.5 parent: 2 - - uid: 8590 + - uid: 8528 components: - type: Transform pos: -36.5,37.5 parent: 2 - - uid: 8591 + - uid: 8529 components: - type: Transform pos: -37.5,37.5 parent: 2 - - uid: 8592 + - uid: 8530 components: - type: Transform pos: -38.5,37.5 parent: 2 - - uid: 8593 + - uid: 8531 components: - type: Transform pos: -39.5,37.5 parent: 2 - - uid: 8594 + - uid: 8532 components: - type: Transform pos: -40.5,37.5 parent: 2 - - uid: 8595 + - uid: 8533 components: - type: Transform pos: -41.5,37.5 parent: 2 - - uid: 8596 + - uid: 8534 components: - type: Transform pos: -42.5,37.5 parent: 2 - - uid: 8597 + - uid: 8535 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 8598 + - uid: 8536 components: - type: Transform pos: 24.5,24.5 parent: 2 - - uid: 8599 + - uid: 8537 components: - type: Transform pos: 23.5,24.5 parent: 2 - - uid: 8600 + - uid: 8538 components: - type: Transform pos: 22.5,24.5 parent: 2 - - uid: 8601 + - uid: 8539 components: - type: Transform pos: 21.5,24.5 parent: 2 - - uid: 8602 + - uid: 8540 components: - type: Transform pos: 20.5,24.5 parent: 2 - - uid: 8603 + - uid: 8541 components: - type: Transform pos: 19.5,24.5 parent: 2 - - uid: 8604 + - uid: 8542 components: - type: Transform pos: 18.5,24.5 parent: 2 - - uid: 8605 + - uid: 8543 components: - type: Transform pos: 17.5,24.5 parent: 2 - - uid: 8606 + - uid: 8544 components: - type: Transform pos: 17.5,23.5 parent: 2 - - uid: 8607 + - uid: 8545 components: - type: Transform pos: 17.5,22.5 parent: 2 - - uid: 8608 + - uid: 8546 components: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 8609 + - uid: 8547 components: - type: Transform pos: 17.5,20.5 parent: 2 - - uid: 8610 + - uid: 8548 components: - type: Transform pos: 17.5,19.5 parent: 2 - - uid: 8611 + - uid: 8549 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 8612 + - uid: 8550 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 8613 + - uid: 8551 components: - type: Transform pos: 17.5,16.5 parent: 2 - - uid: 8614 + - uid: 8552 components: - type: Transform pos: 17.5,15.5 parent: 2 - - uid: 8615 + - uid: 8553 components: - type: Transform pos: 17.5,14.5 parent: 2 - - uid: 8616 + - uid: 8554 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 8617 + - uid: 8555 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 8618 + - uid: 8556 components: - type: Transform pos: 17.5,11.5 parent: 2 - - uid: 8619 + - uid: 8557 components: - type: Transform pos: 17.5,10.5 parent: 2 - - uid: 8620 + - uid: 8558 components: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 8621 + - uid: 8559 components: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 8622 + - uid: 8560 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 8623 + - uid: 8561 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 8624 + - uid: 8562 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 8625 + - uid: 8563 components: - type: Transform pos: 69.5,-0.5 parent: 2 - - uid: 8626 + - uid: 8564 components: - type: Transform pos: 68.5,-0.5 parent: 2 - - uid: 8627 + - uid: 8565 components: - type: Transform pos: 67.5,-0.5 parent: 2 - - uid: 8628 + - uid: 8566 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 8629 + - uid: 8567 components: - type: Transform pos: 76.5,-0.5 parent: 2 - - uid: 8630 + - uid: 8568 components: - type: Transform pos: 75.5,-0.5 parent: 2 - - uid: 8631 + - uid: 8569 components: - type: Transform pos: 74.5,-0.5 parent: 2 - - uid: 8632 + - uid: 8570 components: - type: Transform pos: 73.5,-0.5 parent: 2 - - uid: 8633 + - uid: 8571 components: - type: Transform pos: 72.5,-0.5 parent: 2 - - uid: 8634 + - uid: 8572 components: - type: Transform pos: 71.5,-0.5 parent: 2 - - uid: 8635 + - uid: 8573 components: - type: Transform pos: 70.5,-0.5 parent: 2 - - uid: 8636 + - uid: 8574 components: - type: Transform pos: 73.5,-2.5 parent: 2 - - uid: 8637 + - uid: 8575 components: - type: Transform pos: 74.5,-2.5 parent: 2 - - uid: 8638 + - uid: 8576 components: - type: Transform pos: 73.5,-3.5 parent: 2 - - uid: 8639 + - uid: 8577 components: - type: Transform pos: 72.5,-3.5 parent: 2 - - uid: 8640 + - uid: 8578 components: - type: Transform pos: 71.5,-3.5 parent: 2 - - uid: 8641 + - uid: 8579 components: - type: Transform pos: 70.5,-3.5 parent: 2 - - uid: 8642 + - uid: 8580 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 8643 + - uid: 8581 components: - type: Transform pos: 70.5,26.5 parent: 2 - - uid: 8644 + - uid: 8582 components: - type: Transform pos: 71.5,26.5 parent: 2 - - uid: 8645 + - uid: 8583 components: - type: Transform pos: 69.5,25.5 parent: 2 - - uid: 8646 + - uid: 8584 components: - type: Transform pos: 68.5,25.5 parent: 2 - - uid: 8647 + - uid: 8585 components: - type: Transform pos: 67.5,25.5 parent: 2 - - uid: 8648 + - uid: 8586 components: - type: Transform pos: 66.5,25.5 parent: 2 - - uid: 8649 + - uid: 8587 components: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 8650 + - uid: 8588 components: - type: Transform pos: 64.5,25.5 parent: 2 - - uid: 8651 + - uid: 8589 components: - type: Transform pos: 63.5,25.5 parent: 2 - - uid: 8652 + - uid: 8590 components: - type: Transform pos: 62.5,25.5 parent: 2 - - uid: 8653 + - uid: 8591 components: - type: Transform pos: 61.5,25.5 parent: 2 - - uid: 8654 + - uid: 8592 components: - type: Transform pos: 60.5,25.5 parent: 2 - - uid: 8655 + - uid: 8593 components: - type: Transform pos: 59.5,25.5 parent: 2 - - uid: 8656 + - uid: 8594 components: - type: Transform pos: 58.5,25.5 parent: 2 - - uid: 8657 + - uid: 8595 components: - type: Transform pos: 57.5,25.5 parent: 2 - - uid: 8658 + - uid: 8596 components: - type: Transform pos: 56.5,25.5 parent: 2 - - uid: 8659 + - uid: 8597 components: - type: Transform pos: 55.5,25.5 parent: 2 - - uid: 8660 + - uid: 8598 components: - type: Transform pos: 54.5,25.5 parent: 2 - - uid: 8661 + - uid: 8599 components: - type: Transform pos: 53.5,25.5 parent: 2 - - uid: 8662 + - uid: 8600 components: - type: Transform pos: 52.5,25.5 parent: 2 - - uid: 8663 + - uid: 8601 components: - type: Transform pos: 51.5,25.5 parent: 2 - - uid: 8664 + - uid: 8602 components: - type: Transform pos: 50.5,25.5 parent: 2 - - uid: 8665 + - uid: 8603 components: - type: Transform pos: 50.5,24.5 parent: 2 - - uid: 8666 + - uid: 8604 components: - type: Transform pos: 50.5,23.5 parent: 2 - - uid: 8667 + - uid: 8605 components: - type: Transform pos: 50.5,22.5 parent: 2 - - uid: 8668 + - uid: 8606 components: - type: Transform pos: 49.5,22.5 parent: 2 - - uid: 8669 + - uid: 8607 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 8670 + - uid: 8608 components: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 8671 + - uid: 8609 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 8672 + - uid: 8610 components: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 8673 + - uid: 8611 components: - type: Transform pos: 47.5,20.5 parent: 2 - - uid: 8674 + - uid: 8612 components: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 8675 + - uid: 8613 components: - type: Transform pos: 47.5,18.5 parent: 2 - - uid: 8676 + - uid: 8614 components: - type: Transform pos: 47.5,17.5 parent: 2 - - uid: 8677 + - uid: 8615 components: - type: Transform pos: 47.5,16.5 parent: 2 - - uid: 8678 + - uid: 8616 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 8679 + - uid: 8617 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 8680 + - uid: 8618 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 8681 + - uid: 8619 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 8682 + - uid: 8620 components: - type: Transform pos: 47.5,11.5 parent: 2 - - uid: 8683 + - uid: 8621 components: - type: Transform pos: 47.5,10.5 parent: 2 - - uid: 8684 + - uid: 8622 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 8685 + - uid: 8623 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 8686 + - uid: 8624 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 8687 + - uid: 8625 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 8688 + - uid: 8626 components: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 8689 + - uid: 8627 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 8690 + - uid: 8628 components: - type: Transform pos: 46.5,4.5 parent: 2 - - uid: 8691 + - uid: 8629 components: - type: Transform pos: 45.5,4.5 parent: 2 - - uid: 8692 + - uid: 8630 components: - type: Transform pos: 44.5,4.5 parent: 2 - - uid: 8693 + - uid: 8631 components: - type: Transform pos: 43.5,4.5 parent: 2 - - uid: 8694 + - uid: 8632 components: - type: Transform pos: 42.5,4.5 parent: 2 - - uid: 8695 + - uid: 8633 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 8696 + - uid: 8634 components: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 8697 + - uid: 8635 components: - type: Transform pos: 39.5,4.5 parent: 2 - - uid: 8698 + - uid: 8636 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 8699 + - uid: 8637 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 8700 + - uid: 8638 components: - type: Transform pos: 36.5,4.5 parent: 2 - - uid: 8701 + - uid: 8639 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 8702 + - uid: 8640 components: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 8703 + - uid: 8641 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 8704 + - uid: 8642 components: - type: Transform pos: 32.5,4.5 parent: 2 - - uid: 8705 + - uid: 8643 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 8706 + - uid: 8644 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 8707 + - uid: 8645 components: - type: Transform pos: 31.5,5.5 parent: 2 - - uid: 8708 + - uid: 8646 components: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 8709 + - uid: 8647 components: - type: Transform pos: 29.5,5.5 parent: 2 - - uid: 8710 + - uid: 8648 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 8711 + - uid: 8649 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 8712 + - uid: 8650 components: - type: Transform pos: 26.5,5.5 parent: 2 - - uid: 8713 + - uid: 8651 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 8714 + - uid: 8652 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 8715 + - uid: 8653 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 8716 + - uid: 8654 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 8717 + - uid: 8655 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 8718 + - uid: 8656 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 8719 + - uid: 8657 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 8720 + - uid: 8658 components: - type: Transform pos: 18.5,5.5 parent: 2 - - uid: 8721 + - uid: 8659 components: - type: Transform pos: 17.5,5.5 parent: 2 - - uid: 8722 + - uid: 8660 components: - type: Transform pos: 17.5,5.5 parent: 2 - - uid: 8723 + - uid: 8661 components: - type: Transform pos: 17.5,5.5 parent: 2 - - uid: 8724 + - uid: 8662 components: - type: Transform pos: 17.5,6.5 parent: 2 - - uid: 8725 + - uid: 8663 components: - type: Transform pos: 17.5,7.5 parent: 2 - - uid: 8726 + - uid: 8664 components: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 8727 + - uid: 8665 components: - type: Transform pos: 17.5,4.5 parent: 2 - - uid: 8728 + - uid: 8666 components: - type: Transform pos: 17.5,3.5 parent: 2 - - uid: 8729 + - uid: 8667 components: - type: Transform pos: 17.5,2.5 parent: 2 - - uid: 8730 + - uid: 8668 components: - type: Transform pos: 17.5,1.5 parent: 2 - - uid: 8731 + - uid: 8669 components: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 8732 + - uid: 8670 components: - type: Transform pos: 17.5,-0.5 parent: 2 - - uid: 8733 + - uid: 8671 components: - type: Transform pos: 17.5,-1.5 parent: 2 - - uid: 8734 + - uid: 8672 components: - type: Transform pos: 17.5,-2.5 parent: 2 - - uid: 8735 + - uid: 8673 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 8736 + - uid: 8674 components: - type: Transform pos: 17.5,-4.5 parent: 2 - - uid: 8737 + - uid: 8675 components: - type: Transform pos: 17.5,-5.5 parent: 2 - - uid: 8738 + - uid: 8676 components: - type: Transform pos: 17.5,-6.5 parent: 2 - - uid: 8739 + - uid: 8677 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 8740 + - uid: 8678 components: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 8741 + - uid: 8679 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - uid: 8742 + - uid: 8680 components: - type: Transform pos: 17.5,-10.5 parent: 2 - - uid: 8743 + - uid: 8681 components: - type: Transform pos: 17.5,-11.5 parent: 2 - - uid: 8744 + - uid: 8682 components: - type: Transform pos: 17.5,-12.5 parent: 2 - - uid: 8745 + - uid: 8683 components: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 8746 + - uid: 8684 components: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 8747 + - uid: 8685 components: - type: Transform pos: 17.5,-15.5 parent: 2 - - uid: 8748 + - uid: 8686 components: - type: Transform pos: 17.5,-16.5 parent: 2 - - uid: 8749 + - uid: 8687 components: - type: Transform pos: 17.5,-17.5 parent: 2 - - uid: 8750 + - uid: 8688 components: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 8751 + - uid: 8689 components: - type: Transform pos: 17.5,-19.5 parent: 2 - - uid: 8752 + - uid: 8690 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 8753 + - uid: 8691 components: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 8754 + - uid: 8692 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 8755 + - uid: 8693 components: - type: Transform pos: 13.5,-19.5 parent: 2 - - uid: 8756 + - uid: 8694 components: - type: Transform pos: 12.5,-19.5 parent: 2 - - uid: 8757 + - uid: 8695 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 8758 + - uid: 8696 components: - type: Transform pos: 10.5,-19.5 parent: 2 - - uid: 8759 + - uid: 8697 components: - type: Transform pos: 9.5,-19.5 parent: 2 - - uid: 8760 + - uid: 8698 components: - type: Transform pos: 8.5,-19.5 parent: 2 - - uid: 8761 + - uid: 8699 components: - type: Transform pos: 7.5,-19.5 parent: 2 - - uid: 8762 + - uid: 8700 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 8763 + - uid: 8701 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 8764 + - uid: 8702 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 8765 + - uid: 8703 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 8766 + - uid: 8704 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 8767 + - uid: 8705 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 8768 + - uid: 8706 components: - type: Transform pos: 0.49999997,-19.5 parent: 2 - - uid: 8769 + - uid: 8707 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 8770 + - uid: 8708 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 8771 + - uid: 8709 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 8772 + - uid: 8710 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 8773 + - uid: 8711 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 8774 + - uid: 8712 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 8775 + - uid: 8713 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 8776 + - uid: 8714 components: - type: Transform pos: -7.5,-19.5 parent: 2 - - uid: 8777 + - uid: 8715 components: - type: Transform pos: -8.5,-19.5 parent: 2 - - uid: 8778 + - uid: 8716 components: - type: Transform pos: -9.5,-19.5 parent: 2 - - uid: 8779 + - uid: 8717 components: - type: Transform pos: -10.5,-19.5 parent: 2 - - uid: 8780 + - uid: 8718 components: - type: Transform pos: -11.5,-19.5 parent: 2 - - uid: 8781 + - uid: 8719 components: - type: Transform pos: -12.5,-19.5 parent: 2 - - uid: 8782 + - uid: 8720 components: - type: Transform pos: -13.5,-19.5 parent: 2 - - uid: 8783 + - uid: 8721 components: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 8784 + - uid: 8722 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 8785 + - uid: 8723 components: - type: Transform pos: -16.5,-19.5 parent: 2 - - uid: 8786 + - uid: 8724 components: - type: Transform pos: -17.5,-19.5 parent: 2 - - uid: 8787 + - uid: 8725 components: - type: Transform pos: -18.5,-19.5 parent: 2 - - uid: 8788 + - uid: 8726 components: - type: Transform pos: -18.5,-18.5 parent: 2 - - uid: 8789 + - uid: 8727 components: - type: Transform pos: -18.5,-17.5 parent: 2 - - uid: 8790 + - uid: 8728 components: - type: Transform pos: -18.5,-16.5 parent: 2 - - uid: 8791 + - uid: 8729 components: - type: Transform pos: -18.5,-15.5 parent: 2 - - uid: 8792 + - uid: 8730 components: - type: Transform pos: -18.5,-14.5 parent: 2 - - uid: 8793 + - uid: 8731 components: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 8794 + - uid: 8732 components: - type: Transform pos: -18.5,-12.5 parent: 2 - - uid: 8795 + - uid: 8733 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 8796 + - uid: 8734 components: - type: Transform pos: -18.5,-10.5 parent: 2 - - uid: 8797 + - uid: 8735 components: - type: Transform pos: -18.5,-9.5 parent: 2 - - uid: 8798 + - uid: 8736 components: - type: Transform pos: -18.5,-8.5 parent: 2 - - uid: 8799 + - uid: 8737 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 8800 + - uid: 8738 components: - type: Transform pos: -18.5,-6.5 parent: 2 - - uid: 8801 + - uid: 8739 components: - type: Transform pos: -18.5,-5.5 parent: 2 - - uid: 8802 + - uid: 8740 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 8803 + - uid: 8741 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 8804 + - uid: 8742 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 8805 + - uid: 8743 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 8806 + - uid: 8744 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 8807 + - uid: 8745 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 8808 + - uid: 8746 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 8809 + - uid: 8747 components: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 8810 + - uid: 8748 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 8811 + - uid: 8749 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 8812 + - uid: 8750 components: - type: Transform pos: -42.5,-19.5 parent: 2 - - uid: 8813 + - uid: 8751 components: - type: Transform pos: -41.5,-19.5 parent: 2 - - uid: 8814 + - uid: 8752 components: - type: Transform pos: -40.5,-19.5 parent: 2 - - uid: 8815 + - uid: 8753 components: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 8816 + - uid: 8754 components: - type: Transform pos: -38.5,-19.5 parent: 2 - - uid: 8817 + - uid: 8755 components: - type: Transform pos: -37.5,-19.5 parent: 2 - - uid: 8818 + - uid: 8756 components: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 8819 + - uid: 8757 components: - type: Transform pos: -35.5,-19.5 parent: 2 - - uid: 8820 + - uid: 8758 components: - type: Transform pos: -34.5,-19.5 parent: 2 - - uid: 8821 + - uid: 8759 components: - type: Transform pos: -33.5,-19.5 parent: 2 - - uid: 8822 + - uid: 8760 components: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 8823 + - uid: 8761 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 8824 + - uid: 8762 components: - type: Transform pos: -30.5,-19.5 parent: 2 - - uid: 8825 + - uid: 8763 components: - type: Transform pos: -29.5,-19.5 parent: 2 - - uid: 8826 + - uid: 8764 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 8827 + - uid: 8765 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 8828 + - uid: 8766 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 8829 + - uid: 8767 components: - type: Transform pos: -25.5,-19.5 parent: 2 - - uid: 8830 + - uid: 8768 components: - type: Transform pos: -24.5,-19.5 parent: 2 - - uid: 8831 + - uid: 8769 components: - type: Transform pos: -23.5,-19.5 parent: 2 - - uid: 8832 + - uid: 8770 components: - type: Transform pos: -22.5,-19.5 parent: 2 - - uid: 8833 + - uid: 8771 components: - type: Transform pos: -21.5,-19.5 parent: 2 - - uid: 8834 + - uid: 8772 components: - type: Transform pos: -20.5,-19.5 parent: 2 - - uid: 8835 + - uid: 8773 components: - type: Transform pos: -19.5,-19.5 parent: 2 - - uid: 8836 + - uid: 8774 components: - type: Transform pos: -14.5,-28.5 parent: 2 - - uid: 8837 + - uid: 8775 components: - type: Transform pos: -14.5,-27.5 parent: 2 - - uid: 8838 + - uid: 8776 components: - type: Transform pos: -14.5,-26.5 parent: 2 - - uid: 8839 + - uid: 8777 components: - type: Transform pos: -14.5,-25.5 parent: 2 - - uid: 8840 + - uid: 8778 components: - type: Transform pos: -14.5,-24.5 parent: 2 - - uid: 8841 + - uid: 8779 components: - type: Transform pos: -13.5,-24.5 parent: 2 - - uid: 8842 + - uid: 8780 components: - type: Transform pos: -13.5,-23.5 parent: 2 - - uid: 8843 + - uid: 8781 components: - type: Transform pos: -13.5,-22.5 parent: 2 - - uid: 8844 + - uid: 8782 components: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 8845 + - uid: 8783 components: - type: Transform pos: -13.5,-20.5 parent: 2 - - uid: 8846 + - uid: 8784 components: - type: Transform pos: 55.5,-42.5 parent: 2 - - uid: 8847 + - uid: 8785 components: - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 8848 + - uid: 8786 components: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 8849 + - uid: 8787 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 8850 + - uid: 8788 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 8851 + - uid: 8789 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 8852 + - uid: 8790 components: - type: Transform pos: 51.5,-42.5 parent: 2 - - uid: 8853 + - uid: 8791 components: - type: Transform pos: 51.5,-41.5 parent: 2 - - uid: 8854 + - uid: 8792 components: - type: Transform pos: 51.5,-40.5 parent: 2 - - uid: 8855 + - uid: 8793 components: - type: Transform pos: 51.5,-39.5 parent: 2 - - uid: 8856 + - uid: 8794 components: - type: Transform pos: 51.5,-38.5 parent: 2 - - uid: 8857 + - uid: 8795 components: - type: Transform pos: 51.5,-37.5 parent: 2 - - uid: 8858 + - uid: 8796 components: - type: Transform pos: 51.5,-36.5 parent: 2 - - uid: 8859 + - uid: 8797 components: - type: Transform pos: 51.5,-35.5 parent: 2 - - uid: 8860 + - uid: 8798 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 8861 + - uid: 8799 components: - type: Transform pos: 51.5,-33.5 parent: 2 - - uid: 8862 + - uid: 8800 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 8863 + - uid: 8801 components: - type: Transform pos: 51.5,-31.5 parent: 2 - - uid: 8864 + - uid: 8802 components: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 8865 + - uid: 8803 components: - type: Transform pos: 51.5,-29.5 parent: 2 - - uid: 8866 + - uid: 8804 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 8867 + - uid: 8805 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 8868 + - uid: 8806 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 8869 + - uid: 8807 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 8870 + - uid: 8808 components: - type: Transform pos: 48.5,-28.5 parent: 2 - - uid: 8871 + - uid: 8809 components: - type: Transform pos: 47.5,-28.5 parent: 2 - - uid: 8872 + - uid: 8810 components: - type: Transform pos: 46.5,-28.5 parent: 2 - - uid: 8873 + - uid: 8811 components: - type: Transform pos: 45.5,-28.5 parent: 2 - - uid: 8874 + - uid: 8812 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 8875 + - uid: 8813 components: - type: Transform pos: 43.5,-28.5 parent: 2 - - uid: 8876 + - uid: 8814 components: - type: Transform pos: 42.5,-28.5 parent: 2 - - uid: 8877 + - uid: 8815 components: - type: Transform pos: 41.5,-28.5 parent: 2 - - uid: 8878 + - uid: 8816 components: - type: Transform pos: 40.5,-28.5 parent: 2 - - uid: 8879 + - uid: 8817 components: - type: Transform pos: 40.5,-28.5 parent: 2 - - uid: 8880 + - uid: 8818 components: - type: Transform pos: 40.5,-27.5 parent: 2 - - uid: 8881 + - uid: 8819 components: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 8882 + - uid: 8820 components: - type: Transform pos: 40.5,-22.5 parent: 2 - - uid: 8883 + - uid: 8821 components: - type: Transform pos: 40.5,-23.5 parent: 2 - - uid: 8884 + - uid: 8822 components: - type: Transform pos: 40.5,-24.5 parent: 2 - - uid: 8885 + - uid: 8823 components: - type: Transform pos: 40.5,-25.5 parent: 2 - - uid: 8886 + - uid: 8824 components: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 8887 + - uid: 8825 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 8888 + - uid: 8826 components: - type: Transform pos: 38.5,-22.5 parent: 2 - - uid: 8889 + - uid: 8827 components: - type: Transform pos: 37.5,-22.5 parent: 2 - - uid: 8890 + - uid: 8828 components: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 8891 + - uid: 8829 components: - type: Transform pos: 35.5,-22.5 parent: 2 - - uid: 8892 + - uid: 8830 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 8893 + - uid: 8831 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 8894 + - uid: 8832 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 8895 + - uid: 8833 components: - type: Transform pos: 34.5,-20.5 parent: 2 - - uid: 8896 + - uid: 8834 components: - type: Transform pos: 34.5,-19.5 parent: 2 - - uid: 8897 + - uid: 8835 components: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 8898 + - uid: 8836 components: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 8899 + - uid: 8837 components: - type: Transform pos: 31.5,-19.5 parent: 2 - - uid: 8900 + - uid: 8838 components: - type: Transform pos: 30.5,-19.5 parent: 2 - - uid: 8901 + - uid: 8839 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 8902 + - uid: 8840 components: - type: Transform pos: 28.5,-19.5 parent: 2 - - uid: 8903 + - uid: 8841 components: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 8904 + - uid: 8842 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 8905 + - uid: 8843 components: - type: Transform pos: 25.5,-19.5 parent: 2 - - uid: 8906 + - uid: 8844 components: - type: Transform pos: 25.5,-20.5 parent: 2 - - uid: 8907 + - uid: 8845 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 8908 + - uid: 8846 components: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 8909 + - uid: 8847 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 8910 + - uid: 8848 components: - type: Transform pos: 22.5,-19.5 parent: 2 - - uid: 8911 + - uid: 8849 components: - type: Transform pos: 21.5,-19.5 parent: 2 - - uid: 8912 + - uid: 8850 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 8913 + - uid: 8851 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 8914 + - uid: 8852 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 8915 + - uid: 8853 components: - type: Transform pos: 18.5,-19.5 parent: 2 - - uid: 8916 + - uid: 8854 components: - type: Transform pos: 53.5,-6.5 parent: 2 - - uid: 8917 + - uid: 8855 components: - type: Transform pos: 53.5,-7.5 parent: 2 - - uid: 8918 + - uid: 8856 components: - type: Transform pos: 53.5,-8.5 parent: 2 - - uid: 8919 + - uid: 8857 components: - type: Transform pos: 53.5,-9.5 parent: 2 - - uid: 8920 + - uid: 8858 components: - type: Transform pos: 53.5,-10.5 parent: 2 - - uid: 8921 + - uid: 8859 components: - type: Transform pos: 53.5,-10.5 parent: 2 - - uid: 8922 + - uid: 8860 components: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 8923 + - uid: 8861 components: - type: Transform pos: 51.5,-10.5 parent: 2 - - uid: 8924 + - uid: 8862 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 8925 + - uid: 8863 components: - type: Transform pos: 49.5,-10.5 parent: 2 - - uid: 8926 + - uid: 8864 components: - type: Transform pos: 48.5,-10.5 parent: 2 - - uid: 8927 + - uid: 8865 components: - type: Transform pos: 47.5,-10.5 parent: 2 - - uid: 8928 + - uid: 8866 components: - type: Transform pos: 46.5,-10.5 parent: 2 - - uid: 8929 + - uid: 8867 components: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 8930 + - uid: 8868 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 8931 + - uid: 8869 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 8932 + - uid: 8870 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 8933 + - uid: 8871 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 8934 + - uid: 8872 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 8935 + - uid: 8873 components: - type: Transform pos: 43.5,-7.5 parent: 2 - - uid: 8936 + - uid: 8874 components: - type: Transform pos: 42.5,-7.5 parent: 2 - - uid: 8937 + - uid: 8875 components: - type: Transform pos: 41.5,-7.5 parent: 2 - - uid: 8938 + - uid: 8876 components: - type: Transform pos: 40.5,-7.5 parent: 2 - - uid: 8939 + - uid: 8877 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 8940 + - uid: 8878 components: - type: Transform pos: 38.5,-7.5 parent: 2 - - uid: 8941 + - uid: 8879 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 8942 + - uid: 8880 components: - type: Transform pos: 37.5,-8.5 parent: 2 - - uid: 8943 + - uid: 8881 components: - type: Transform pos: 37.5,-9.5 parent: 2 - - uid: 8944 + - uid: 8882 components: - type: Transform pos: 37.5,-10.5 parent: 2 - - uid: 8945 + - uid: 8883 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 8946 + - uid: 8884 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 8947 + - uid: 8885 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 8948 + - uid: 8886 components: - type: Transform pos: 35.5,-11.5 parent: 2 - - uid: 8949 + - uid: 8887 components: - type: Transform pos: 34.5,-11.5 parent: 2 - - uid: 8950 + - uid: 8888 components: - type: Transform pos: 33.5,-11.5 parent: 2 - - uid: 8951 + - uid: 8889 components: - type: Transform pos: 32.5,-11.5 parent: 2 - - uid: 8952 + - uid: 8890 components: - type: Transform pos: 31.5,-11.5 parent: 2 - - uid: 8953 + - uid: 8891 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 8954 + - uid: 8892 components: - type: Transform pos: 30.5,-10.5 parent: 2 - - uid: 8955 + - uid: 8893 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 8956 + - uid: 8894 components: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 8957 + - uid: 8895 components: - type: Transform pos: 27.5,-10.5 parent: 2 - - uid: 8958 + - uid: 8896 components: - type: Transform pos: 26.5,-10.5 parent: 2 - - uid: 8959 + - uid: 8897 components: - type: Transform pos: 25.5,-10.5 parent: 2 - - uid: 8960 + - uid: 8898 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 8961 + - uid: 8899 components: - type: Transform pos: 23.5,-10.5 parent: 2 - - uid: 8962 + - uid: 8900 components: - type: Transform pos: 22.5,-10.5 parent: 2 - - uid: 8963 + - uid: 8901 components: - type: Transform pos: 21.5,-10.5 parent: 2 - - uid: 8964 + - uid: 8902 components: - type: Transform pos: 20.5,-10.5 parent: 2 - - uid: 8965 + - uid: 8903 components: - type: Transform pos: 19.5,-10.5 parent: 2 - - uid: 8966 + - uid: 8904 components: - type: Transform pos: 18.5,-10.5 parent: 2 - - uid: 8967 + - uid: 8905 components: - type: Transform pos: 79.5,-44.5 parent: 2 - - uid: 8968 + - uid: 8906 components: - type: Transform pos: 79.5,-43.5 parent: 2 - - uid: 8969 + - uid: 8907 components: - type: Transform pos: 79.5,-42.5 parent: 2 - - uid: 8970 + - uid: 8908 components: - type: Transform pos: 78.5,-46.5 parent: 2 - - uid: 8971 + - uid: 8909 components: - type: Transform pos: 78.5,-45.5 parent: 2 - - uid: 8972 + - uid: 8910 components: - type: Transform pos: 78.5,-44.5 parent: 2 - - uid: 8973 + - uid: 8911 components: - type: Transform pos: 79.5,-46.5 parent: 2 - - uid: 8974 + - uid: 8912 components: - type: Transform pos: 80.5,-46.5 parent: 2 - - uid: 8975 + - uid: 8913 components: - type: Transform pos: 81.5,-46.5 parent: 2 - - uid: 8976 + - uid: 8914 components: - type: Transform pos: 81.5,-45.5 parent: 2 - - uid: 8977 + - uid: 8915 components: - type: Transform pos: 81.5,-44.5 parent: 2 - - uid: 8978 + - uid: 8916 components: - type: Transform pos: 81.5,-43.5 parent: 2 - - uid: 8979 + - uid: 8917 components: - type: Transform pos: 81.5,-42.5 parent: 2 - - uid: 8980 + - uid: 8918 components: - type: Transform pos: 82.5,-44.5 parent: 2 - - uid: 8981 + - uid: 8919 components: - type: Transform pos: 83.5,-44.5 parent: 2 - - uid: 8982 + - uid: 8920 components: - type: Transform pos: 84.5,-44.5 parent: 2 - - uid: 8983 + - uid: 8921 components: - type: Transform pos: 85.5,-44.5 parent: 2 - - uid: 8984 + - uid: 8922 components: - type: Transform pos: 86.5,-44.5 parent: 2 - - uid: 8985 + - uid: 8923 components: - type: Transform pos: 87.5,-44.5 parent: 2 - - uid: 8986 + - uid: 8924 components: - type: Transform pos: 88.5,-44.5 parent: 2 - - uid: 8987 + - uid: 8925 components: - type: Transform pos: 86.5,-43.5 parent: 2 - - uid: 8988 + - uid: 8926 components: - type: Transform pos: 84.5,-42.5 parent: 2 - - uid: 8989 + - uid: 8927 components: - type: Transform pos: 85.5,-42.5 parent: 2 - - uid: 8990 + - uid: 8928 components: - type: Transform pos: 86.5,-42.5 parent: 2 - - uid: 8991 + - uid: 8929 components: - type: Transform pos: 87.5,-42.5 parent: 2 - - uid: 8992 + - uid: 8930 components: - type: Transform pos: 88.5,-42.5 parent: 2 - - uid: 8993 + - uid: 8931 components: - type: Transform pos: 88.5,-46.5 parent: 2 - - uid: 8994 + - uid: 8932 components: - type: Transform pos: 87.5,-46.5 parent: 2 - - uid: 8995 + - uid: 8933 components: - type: Transform pos: 86.5,-46.5 parent: 2 - - uid: 8996 + - uid: 8934 components: - type: Transform pos: 85.5,-46.5 parent: 2 - - uid: 8997 + - uid: 8935 components: - type: Transform pos: 84.5,-46.5 parent: 2 - - uid: 8998 + - uid: 8936 components: - type: Transform pos: 86.5,-45.5 parent: 2 - - uid: 8999 + - uid: 8937 components: - type: Transform pos: 78.5,-48.5 parent: 2 - - uid: 9000 + - uid: 8938 components: - type: Transform pos: 78.5,-49.5 parent: 2 - - uid: 9001 + - uid: 8939 components: - type: Transform pos: 78.5,-50.5 parent: 2 - - uid: 9002 + - uid: 8940 components: - type: Transform pos: 78.5,-51.5 parent: 2 - - uid: 9003 + - uid: 8941 components: - type: Transform pos: 78.5,-52.5 parent: 2 - - uid: 9004 + - uid: 8942 components: - type: Transform pos: 79.5,-50.5 parent: 2 - - uid: 9005 + - uid: 8943 components: - type: Transform pos: 80.5,-48.5 parent: 2 - - uid: 9006 + - uid: 8944 components: - type: Transform pos: 80.5,-49.5 parent: 2 - - uid: 9007 + - uid: 8945 components: - type: Transform pos: 80.5,-50.5 parent: 2 - - uid: 9008 + - uid: 8946 components: - type: Transform pos: 80.5,-51.5 parent: 2 - - uid: 9009 + - uid: 8947 components: - type: Transform pos: 80.5,-52.5 parent: 2 - - uid: 9010 + - uid: 8948 components: - type: Transform pos: 82.5,-48.5 parent: 2 - - uid: 9011 + - uid: 8949 components: - type: Transform pos: 82.5,-49.5 parent: 2 - - uid: 9012 + - uid: 8950 components: - type: Transform pos: 82.5,-50.5 parent: 2 - - uid: 9013 + - uid: 8951 components: - type: Transform pos: 82.5,-51.5 parent: 2 - - uid: 9014 + - uid: 8952 components: - type: Transform pos: 82.5,-52.5 parent: 2 - - uid: 9015 + - uid: 8953 components: - type: Transform pos: 81.5,-50.5 parent: 2 - - uid: 9016 + - uid: 8954 components: - type: Transform pos: 80.5,-47.5 parent: 2 - - uid: 9017 + - uid: 8955 components: - type: Transform pos: 81.5,-41.5 parent: 2 - - uid: 9018 + - uid: 8956 components: - type: Transform pos: 80.5,-41.5 parent: 2 - - uid: 9019 + - uid: 8957 components: - type: Transform pos: 80.5,-40.5 parent: 2 - - uid: 9020 + - uid: 8958 components: - type: Transform pos: 80.5,-39.5 parent: 2 - - uid: 9021 + - uid: 8959 components: - type: Transform pos: 80.5,-38.5 parent: 2 - - uid: 9022 + - uid: 8960 components: - type: Transform pos: 80.5,-37.5 parent: 2 - - uid: 9023 + - uid: 8961 components: - type: Transform pos: 80.5,-36.5 parent: 2 - - uid: 9024 + - uid: 8962 components: - type: Transform pos: 79.5,-38.5 parent: 2 - - uid: 9025 + - uid: 8963 components: - type: Transform pos: 82.5,-36.5 parent: 2 - - uid: 9026 + - uid: 8964 components: - type: Transform pos: 82.5,-37.5 parent: 2 - - uid: 9027 + - uid: 8965 components: - type: Transform pos: 82.5,-38.5 parent: 2 - - uid: 9028 + - uid: 8966 components: - type: Transform pos: 82.5,-39.5 parent: 2 - - uid: 9029 + - uid: 8967 components: - type: Transform pos: 82.5,-40.5 parent: 2 - - uid: 9030 + - uid: 8968 components: - type: Transform pos: 81.5,-38.5 parent: 2 - - uid: 9031 + - uid: 8969 components: - type: Transform pos: 78.5,-36.5 parent: 2 - - uid: 9032 + - uid: 8970 components: - type: Transform pos: 78.5,-37.5 parent: 2 - - uid: 9033 + - uid: 8971 components: - type: Transform pos: 78.5,-38.5 parent: 2 - - uid: 9034 + - uid: 8972 components: - type: Transform pos: 78.5,-39.5 parent: 2 - - uid: 9035 + - uid: 8973 components: - type: Transform pos: 78.5,-40.5 parent: 2 - - uid: 9036 + - uid: 8974 components: - type: Transform pos: 52.5,-40.5 parent: 2 - - uid: 9037 + - uid: 8975 components: - type: Transform pos: 53.5,-40.5 parent: 2 - - uid: 9038 + - uid: 8976 components: - type: Transform pos: 54.5,-40.5 parent: 2 - - uid: 9039 + - uid: 8977 components: - type: Transform pos: 55.5,-40.5 parent: 2 - - uid: 9040 + - uid: 8978 components: - type: Transform pos: 56.5,-40.5 parent: 2 - - uid: 9041 + - uid: 8979 components: - type: Transform pos: 57.5,-40.5 parent: 2 - - uid: 9042 + - uid: 8980 components: - type: Transform pos: 58.5,-40.5 parent: 2 - - uid: 9043 + - uid: 8981 components: - type: Transform pos: 21.5,25.5 parent: 2 - - uid: 9044 + - uid: 8982 components: - type: Transform pos: 21.5,26.5 parent: 2 - - uid: 9045 + - uid: 8983 components: - type: Transform pos: 21.5,27.5 parent: 2 - - uid: 9046 + - uid: 8984 components: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 9047 + - uid: 8985 components: - type: Transform pos: 21.5,29.5 parent: 2 - - uid: 9048 + - uid: 8986 components: - type: Transform pos: 21.5,30.5 parent: 2 - - uid: 9049 + - uid: 8987 components: - type: Transform pos: 21.5,31.5 parent: 2 - - uid: 9050 + - uid: 8988 components: - type: Transform pos: 22.5,31.5 parent: 2 - - uid: 9051 + - uid: 8989 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 9052 + - uid: 8990 components: - type: Transform pos: 24.5,31.5 parent: 2 - - uid: 9053 + - uid: 8991 components: - type: Transform pos: 25.5,31.5 parent: 2 - - uid: 9054 + - uid: 8992 components: - type: Transform pos: 21.5,32.5 parent: 2 - - uid: 9055 + - uid: 8993 components: - type: Transform pos: 21.5,33.5 parent: 2 - - uid: 9056 + - uid: 8994 components: - type: Transform pos: 21.5,34.5 parent: 2 - - uid: 9057 + - uid: 8995 components: - type: Transform pos: 21.5,35.5 parent: 2 - - uid: 9058 + - uid: 8996 components: - type: Transform pos: 21.5,36.5 parent: 2 - - uid: 9059 + - uid: 8997 components: - type: Transform pos: 20.5,36.5 parent: 2 - - uid: 9060 + - uid: 8998 components: - type: Transform pos: 19.5,36.5 parent: 2 - - uid: 9061 + - uid: 8999 components: - type: Transform pos: 18.5,36.5 parent: 2 - - uid: 9062 + - uid: 9000 components: - type: Transform pos: 17.5,36.5 parent: 2 - - uid: 9063 + - uid: 9001 components: - type: Transform pos: 16.5,36.5 parent: 2 - - uid: 9064 + - uid: 9002 components: - type: Transform pos: 15.5,36.5 parent: 2 - - uid: 9065 + - uid: 9003 components: - type: Transform pos: 14.5,36.5 parent: 2 - - uid: 9066 + - uid: 9004 components: - type: Transform pos: 13.5,36.5 parent: 2 - - uid: 9067 + - uid: 9005 components: - type: Transform pos: 12.5,36.5 parent: 2 - - uid: 9068 + - uid: 9006 components: - type: Transform pos: 11.5,36.5 parent: 2 - - uid: 9069 + - uid: 9007 components: - type: Transform pos: 10.5,36.5 parent: 2 - - uid: 9070 + - uid: 9008 components: - type: Transform pos: 10.5,37.5 parent: 2 - - uid: 9071 + - uid: 9009 components: - type: Transform pos: 10.5,38.5 parent: 2 - - uid: 9072 + - uid: 9010 components: - type: Transform pos: 10.5,39.5 parent: 2 - - uid: 9073 + - uid: 9011 components: - type: Transform pos: 9.5,40.5 parent: 2 - - uid: 9074 + - uid: 9012 components: - type: Transform pos: 10.5,40.5 parent: 2 - - uid: 9075 + - uid: 9013 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 9076 + - uid: 9014 components: - type: Transform pos: 26.5,32.5 parent: 2 - - uid: 9077 + - uid: 9015 components: - type: Transform pos: 27.5,32.5 parent: 2 - - uid: 9078 + - uid: 9016 components: - type: Transform pos: 27.5,31.5 parent: 2 - - uid: 9079 + - uid: 9017 components: - type: Transform pos: 27.5,30.5 parent: 2 - - uid: 9080 + - uid: 9018 components: - type: Transform pos: 27.5,29.5 parent: 2 - - uid: 9081 + - uid: 9019 components: - type: Transform pos: 27.5,28.5 parent: 2 - - uid: 9082 + - uid: 9020 components: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 9083 + - uid: 9021 components: - type: Transform pos: 27.5,26.5 parent: 2 - - uid: 9084 + - uid: 9022 components: - type: Transform pos: -46.5,-3.5 parent: 2 - - uid: 9085 + - uid: 9023 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 9086 + - uid: 9024 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 9087 + - uid: 9025 components: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 9088 + - uid: 9026 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 9089 + - uid: 9027 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 9090 + - uid: 9028 components: - type: Transform pos: 62.5,0.5 parent: 2 - - uid: 9091 + - uid: 9029 components: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 9092 + - uid: 9030 components: - type: Transform pos: 60.5,0.5 parent: 2 - - uid: 9093 + - uid: 9031 components: - type: Transform pos: 59.5,0.5 parent: 2 - - uid: 9094 + - uid: 9032 components: - type: Transform pos: 58.5,0.5 parent: 2 - - uid: 9095 + - uid: 9033 components: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 9096 + - uid: 9034 components: - type: Transform pos: 56.5,0.5 parent: 2 - - uid: 9097 + - uid: 9035 components: - type: Transform pos: 55.5,0.5 parent: 2 - - uid: 9098 + - uid: 9036 components: - type: Transform pos: 54.5,0.5 parent: 2 - - uid: 9099 + - uid: 9037 components: - type: Transform pos: 53.5,0.5 parent: 2 - - uid: 9100 + - uid: 9038 components: - type: Transform pos: 52.5,0.5 parent: 2 - - uid: 9101 + - uid: 9039 components: - type: Transform pos: 51.5,0.5 parent: 2 - - uid: 9102 + - uid: 9040 components: - type: Transform pos: 50.5,0.5 parent: 2 - - uid: 9103 + - uid: 9041 components: - type: Transform pos: 49.5,0.5 parent: 2 - - uid: 9104 + - uid: 9042 components: - type: Transform pos: 48.5,0.5 parent: 2 - - uid: 9105 + - uid: 9043 components: - type: Transform pos: 47.5,0.5 parent: 2 - - uid: 9106 + - uid: 9044 components: - type: Transform pos: 47.5,1.5 parent: 2 - - uid: 9107 + - uid: 9045 components: - type: Transform pos: 47.5,2.5 parent: 2 - - uid: 9108 + - uid: 9046 components: - type: Transform pos: 47.5,3.5 parent: 2 - - uid: 9109 + - uid: 9047 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 9110 + - uid: 9048 components: - type: Transform pos: -123.5,26.5 parent: 2 - - uid: 9111 + - uid: 9049 components: - type: Transform pos: -122.5,26.5 parent: 2 - - uid: 9112 + - uid: 9050 components: - type: Transform pos: -121.5,26.5 parent: 2 - - uid: 9113 + - uid: 9051 components: - type: Transform pos: -121.5,25.5 parent: 2 - - uid: 9114 + - uid: 9052 components: - type: Transform pos: -121.5,24.5 parent: 2 - - uid: 9115 + - uid: 9053 components: - type: Transform pos: -122.5,24.5 parent: 2 - - uid: 9116 + - uid: 9054 components: - type: Transform pos: -123.5,24.5 parent: 2 - - uid: 9117 + - uid: 9055 components: - type: Transform pos: -48.5,-84.5 parent: 2 - - uid: 9118 + - uid: 9056 components: - type: Transform pos: -49.5,-80.5 parent: 2 - - uid: 9119 + - uid: 9057 components: - type: Transform pos: -49.5,-81.5 parent: 2 - - uid: 9120 + - uid: 9058 components: - type: Transform pos: -49.5,-82.5 parent: 2 - - uid: 9121 + - uid: 9059 components: - type: Transform pos: -48.5,-80.5 parent: 2 - - uid: 9122 + - uid: 9060 components: - type: Transform pos: -48.5,-81.5 parent: 2 - - uid: 9123 + - uid: 9061 components: - type: Transform pos: -48.5,-82.5 parent: 2 - - uid: 9124 + - uid: 9062 components: - type: Transform pos: -47.5,-80.5 parent: 2 - - uid: 9125 + - uid: 9063 components: - type: Transform pos: -47.5,-81.5 parent: 2 - - uid: 9126 + - uid: 9064 components: - type: Transform pos: -47.5,-82.5 parent: 2 - - uid: 9127 + - uid: 9065 components: - type: Transform pos: -46.5,-80.5 parent: 2 - - uid: 9128 + - uid: 9066 components: - type: Transform pos: -46.5,-81.5 parent: 2 - - uid: 9129 + - uid: 9067 components: - type: Transform pos: -46.5,-82.5 parent: 2 - - uid: 9130 + - uid: 9068 components: - type: Transform pos: -45.5,-80.5 parent: 2 - - uid: 9131 + - uid: 9069 components: - type: Transform pos: -45.5,-81.5 parent: 2 - - uid: 9132 + - uid: 9070 components: - type: Transform pos: -45.5,-82.5 parent: 2 - - uid: 9133 + - uid: 9071 components: - type: Transform pos: -48.5,-85.5 parent: 2 - - uid: 9134 + - uid: 9072 components: - type: Transform pos: -48.5,-86.5 parent: 2 - - uid: 9135 + - uid: 9073 components: - type: Transform pos: -47.5,-84.5 parent: 2 - - uid: 9136 + - uid: 9074 components: - type: Transform pos: -47.5,-85.5 parent: 2 - - uid: 9137 + - uid: 9075 components: - type: Transform pos: -47.5,-86.5 parent: 2 - - uid: 9138 + - uid: 9076 components: - type: Transform pos: -46.5,-84.5 parent: 2 - - uid: 9139 + - uid: 9077 components: - type: Transform pos: -46.5,-85.5 parent: 2 - - uid: 9140 + - uid: 9078 components: - type: Transform pos: -46.5,-86.5 parent: 2 - - uid: 9141 + - uid: 9079 components: - type: Transform pos: -45.5,-84.5 parent: 2 - - uid: 9142 + - uid: 9080 components: - type: Transform pos: -45.5,-85.5 parent: 2 - - uid: 9143 + - uid: 9081 components: - type: Transform pos: -45.5,-86.5 parent: 2 - - uid: 9144 + - uid: 9082 components: - type: Transform pos: -44.5,-84.5 parent: 2 - - uid: 9145 + - uid: 9083 components: - type: Transform pos: -44.5,-85.5 parent: 2 - - uid: 9146 + - uid: 9084 components: - type: Transform pos: -44.5,-86.5 parent: 2 - - uid: 9147 + - uid: 9085 components: - type: Transform pos: -49.5,-88.5 parent: 2 - - uid: 9148 + - uid: 9086 components: - type: Transform pos: -49.5,-89.5 parent: 2 - - uid: 9149 + - uid: 9087 components: - type: Transform pos: -49.5,-90.5 parent: 2 - - uid: 9150 + - uid: 9088 components: - type: Transform pos: -48.5,-88.5 parent: 2 - - uid: 9151 + - uid: 9089 components: - type: Transform pos: -48.5,-89.5 parent: 2 - - uid: 9152 + - uid: 9090 components: - type: Transform pos: -48.5,-90.5 parent: 2 - - uid: 9153 + - uid: 9091 components: - type: Transform pos: -47.5,-88.5 parent: 2 - - uid: 9154 + - uid: 9092 components: - type: Transform pos: -47.5,-89.5 parent: 2 - - uid: 9155 + - uid: 9093 components: - type: Transform pos: -47.5,-90.5 parent: 2 - - uid: 9156 + - uid: 9094 components: - type: Transform pos: -46.5,-88.5 parent: 2 - - uid: 9157 + - uid: 9095 components: - type: Transform pos: -46.5,-89.5 parent: 2 - - uid: 9158 + - uid: 9096 components: - type: Transform pos: -46.5,-90.5 parent: 2 - - uid: 9159 + - uid: 9097 components: - type: Transform pos: -45.5,-88.5 parent: 2 - - uid: 9160 + - uid: 9098 components: - type: Transform pos: -45.5,-89.5 parent: 2 - - uid: 9161 + - uid: 9099 components: - type: Transform pos: -45.5,-90.5 parent: 2 - - uid: 9162 + - uid: 9100 components: - type: Transform pos: -50.5,-89.5 parent: 2 - - uid: 9163 + - uid: 9101 components: - type: Transform pos: -51.5,-93.5 parent: 2 - - uid: 9164 + - uid: 9102 components: - type: Transform pos: -51.5,-92.5 parent: 2 - - uid: 9165 + - uid: 9103 components: - type: Transform pos: -51.5,-91.5 parent: 2 - - uid: 9166 + - uid: 9104 components: - type: Transform pos: -51.5,-90.5 parent: 2 - - uid: 9167 + - uid: 9105 components: - type: Transform pos: -51.5,-89.5 parent: 2 - - uid: 9168 + - uid: 9106 components: - type: Transform pos: -51.5,-88.5 parent: 2 - - uid: 9169 + - uid: 9107 components: - type: Transform pos: -51.5,-87.5 parent: 2 - - uid: 9170 + - uid: 9108 components: - type: Transform pos: -51.5,-86.5 parent: 2 - - uid: 9171 + - uid: 9109 components: - type: Transform pos: -51.5,-85.5 parent: 2 - - uid: 9172 + - uid: 9110 components: - type: Transform pos: -51.5,-84.5 parent: 2 - - uid: 9173 + - uid: 9111 components: - type: Transform pos: -51.5,-83.5 parent: 2 - - uid: 9174 + - uid: 9112 components: - type: Transform pos: -51.5,-82.5 parent: 2 - - uid: 9175 + - uid: 9113 components: - type: Transform pos: -51.5,-81.5 parent: 2 - - uid: 9176 + - uid: 9114 components: - type: Transform pos: -51.5,-80.5 parent: 2 - - uid: 9177 + - uid: 9115 components: - type: Transform pos: -51.5,-79.5 parent: 2 - - uid: 9178 + - uid: 9116 components: - type: Transform pos: -51.5,-78.5 parent: 2 - - uid: 9179 + - uid: 9117 components: - type: Transform pos: -51.5,-77.5 parent: 2 - - uid: 9180 + - uid: 9118 components: - type: Transform pos: -51.5,-76.5 parent: 2 - - uid: 9181 + - uid: 9119 components: - type: Transform pos: -51.5,-75.5 parent: 2 - - uid: 9182 + - uid: 9120 components: - type: Transform pos: -51.5,-74.5 parent: 2 - - uid: 9183 + - uid: 9121 components: - type: Transform pos: -50.5,-74.5 parent: 2 - - uid: 9184 + - uid: 9122 components: - type: Transform pos: -50.5,-74.5 parent: 2 - - uid: 9185 + - uid: 9123 components: - type: Transform pos: -47.5,-74.5 parent: 2 - - uid: 9186 + - uid: 9124 components: - type: Transform pos: -46.5,-74.5 parent: 2 - - uid: 9187 + - uid: 9125 components: - type: Transform pos: -48.5,-74.5 parent: 2 - - uid: 9188 + - uid: 9126 components: - type: Transform pos: -58.5,-84.5 parent: 2 - - uid: 9189 + - uid: 9127 components: - type: Transform pos: -58.5,-85.5 parent: 2 - - uid: 9190 + - uid: 9128 components: - type: Transform pos: -58.5,-86.5 parent: 2 - - uid: 9191 + - uid: 9129 components: - type: Transform pos: -57.5,-84.5 parent: 2 - - uid: 9192 + - uid: 9130 components: - type: Transform pos: -57.5,-85.5 parent: 2 - - uid: 9193 + - uid: 9131 components: - type: Transform pos: -57.5,-86.5 parent: 2 - - uid: 9194 + - uid: 9132 components: - type: Transform pos: -56.5,-84.5 parent: 2 - - uid: 9195 + - uid: 9133 components: - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 9196 + - uid: 9134 components: - type: Transform pos: -56.5,-86.5 parent: 2 - - uid: 9197 + - uid: 9135 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 9198 + - uid: 9136 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 9199 + - uid: 9137 components: - type: Transform pos: -55.5,-86.5 parent: 2 - - uid: 9200 + - uid: 9138 components: - type: Transform pos: -54.5,-84.5 parent: 2 - - uid: 9201 + - uid: 9139 components: - type: Transform pos: -54.5,-85.5 parent: 2 - - uid: 9202 + - uid: 9140 components: - type: Transform pos: -54.5,-86.5 parent: 2 - - uid: 9203 + - uid: 9141 components: - type: Transform pos: -53.5,-82.5 parent: 2 - - uid: 9204 + - uid: 9142 components: - type: Transform pos: -53.5,-81.5 parent: 2 - - uid: 9205 + - uid: 9143 components: - type: Transform pos: -53.5,-80.5 parent: 2 - - uid: 9206 + - uid: 9144 components: - type: Transform pos: -54.5,-82.5 parent: 2 - - uid: 9207 + - uid: 9145 components: - type: Transform pos: -54.5,-81.5 parent: 2 - - uid: 9208 + - uid: 9146 components: - type: Transform pos: -54.5,-80.5 parent: 2 - - uid: 9209 + - uid: 9147 components: - type: Transform pos: -55.5,-82.5 parent: 2 - - uid: 9210 + - uid: 9148 components: - type: Transform pos: -55.5,-81.5 parent: 2 - - uid: 9211 + - uid: 9149 components: - type: Transform pos: -55.5,-80.5 parent: 2 - - uid: 9212 + - uid: 9150 components: - type: Transform pos: -56.5,-82.5 parent: 2 - - uid: 9213 + - uid: 9151 components: - type: Transform pos: -56.5,-81.5 parent: 2 - - uid: 9214 + - uid: 9152 components: - type: Transform pos: -56.5,-80.5 parent: 2 - - uid: 9215 + - uid: 9153 components: - type: Transform pos: -57.5,-82.5 parent: 2 - - uid: 9216 + - uid: 9154 components: - type: Transform pos: -57.5,-81.5 parent: 2 - - uid: 9217 + - uid: 9155 components: - type: Transform pos: -57.5,-80.5 parent: 2 - - uid: 9218 + - uid: 9156 components: - type: Transform pos: -57.5,-88.5 parent: 2 - - uid: 9219 + - uid: 9157 components: - type: Transform pos: -57.5,-89.5 parent: 2 - - uid: 9220 + - uid: 9158 components: - type: Transform pos: -57.5,-90.5 parent: 2 - - uid: 9221 + - uid: 9159 components: - type: Transform pos: -56.5,-88.5 parent: 2 - - uid: 9222 + - uid: 9160 components: - type: Transform pos: -56.5,-89.5 parent: 2 - - uid: 9223 + - uid: 9161 components: - type: Transform pos: -56.5,-90.5 parent: 2 - - uid: 9224 + - uid: 9162 components: - type: Transform pos: -55.5,-88.5 parent: 2 - - uid: 9225 + - uid: 9163 components: - type: Transform pos: -55.5,-89.5 parent: 2 - - uid: 9226 + - uid: 9164 components: - type: Transform pos: -55.5,-90.5 parent: 2 - - uid: 9227 + - uid: 9165 components: - type: Transform pos: -54.5,-88.5 parent: 2 - - uid: 9228 + - uid: 9166 components: - type: Transform pos: -54.5,-89.5 parent: 2 - - uid: 9229 + - uid: 9167 components: - type: Transform pos: -54.5,-90.5 parent: 2 - - uid: 9230 + - uid: 9168 components: - type: Transform pos: -53.5,-88.5 parent: 2 - - uid: 9231 + - uid: 9169 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 9232 + - uid: 9170 components: - type: Transform pos: -53.5,-90.5 parent: 2 - - uid: 9233 + - uid: 9171 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 9234 + - uid: 9172 components: - type: Transform pos: -52.5,-89.5 parent: 2 - - uid: 9235 + - uid: 9173 components: - type: Transform pos: -53.5,-85.5 parent: 2 - - uid: 9236 + - uid: 9174 components: - type: Transform pos: -52.5,-85.5 parent: 2 - - uid: 9237 + - uid: 9175 components: - type: Transform pos: -52.5,-81.5 parent: 2 - - uid: 9238 + - uid: 9176 components: - type: Transform pos: -50.5,-81.5 parent: 2 - - uid: 9239 + - uid: 9177 components: - type: Transform pos: -50.5,-85.5 parent: 2 - - uid: 9240 + - uid: 9178 components: - type: Transform pos: -49.5,-85.5 parent: 2 - - uid: 9241 + - uid: 9179 components: - type: Transform pos: -40.5,-74.5 parent: 2 - - uid: 9242 + - uid: 9180 components: - type: Transform pos: -39.5,-74.5 parent: 2 - - uid: 9243 + - uid: 9181 components: - type: Transform pos: -38.5,-74.5 parent: 2 - - uid: 9244 + - uid: 9182 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 9245 + - uid: 9183 components: - type: Transform pos: 24.5,-22.5 parent: 2 - - uid: 9246 + - uid: 9184 components: - type: Transform pos: 25.5,-22.5 parent: 2 - - uid: 9247 + - uid: 9185 components: - type: Transform pos: 26.5,-22.5 parent: 2 - - uid: 9248 + - uid: 9186 components: - type: Transform pos: -46.5,-2.5 parent: 2 - - uid: 9249 + - uid: 9187 components: - type: Transform pos: -46.5,-3.5 parent: 2 - - uid: 9250 + - uid: 9188 components: - type: Transform pos: -17.5,-29.5 parent: 2 - - uid: 9251 + - uid: 9189 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 9252 + - uid: 9190 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 9253 + - uid: 9191 components: - type: Transform pos: -19.5,-29.5 parent: 2 - - uid: 9254 + - uid: 9192 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 9255 + - uid: 9193 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 9256 + - uid: 9194 components: - type: Transform pos: 6.5,57.5 parent: 2 - - uid: 9257 + - uid: 9195 components: - type: Transform pos: 6.5,56.5 parent: 2 - - uid: 9258 + - uid: 9196 components: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 9259 + - uid: 9197 components: - type: Transform pos: 6.5,54.5 parent: 2 - - uid: 9260 + - uid: 9198 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 9261 + - uid: 9199 components: - type: Transform pos: 6.5,52.5 parent: 2 - - uid: 9262 + - uid: 9200 components: - type: Transform pos: 6.5,51.5 parent: 2 - - uid: 9263 + - uid: 9201 components: - type: Transform pos: 6.5,50.5 parent: 2 - - uid: 9264 + - uid: 9202 components: - type: Transform pos: 6.5,49.5 parent: 2 - - uid: 9265 + - uid: 9203 components: - type: Transform pos: 6.5,48.5 parent: 2 - - uid: 9266 + - uid: 9204 components: - type: Transform pos: 6.5,47.5 parent: 2 - - uid: 9267 + - uid: 9205 components: - type: Transform pos: 5.5,47.5 parent: 2 - - uid: 9268 + - uid: 9206 components: - type: Transform pos: 4.5,47.5 parent: 2 - - uid: 9269 + - uid: 9207 components: - type: Transform pos: 3.5,47.5 parent: 2 - - uid: 9270 + - uid: 9208 components: - type: Transform pos: 2.5,47.5 parent: 2 - - uid: 9271 + - uid: 9209 components: - type: Transform pos: 1.5,47.5 parent: 2 - - uid: 9272 + - uid: 9210 components: - type: Transform pos: 1.5,46.5 parent: 2 - - uid: 9273 + - uid: 9211 components: - type: Transform pos: 1.5,45.5 parent: 2 - - uid: 9274 + - uid: 9212 components: - type: Transform pos: 1.5,44.5 parent: 2 - - uid: 9275 + - uid: 9213 components: - type: Transform pos: 1.5,43.5 parent: 2 - - uid: 9276 + - uid: 9214 components: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 9277 + - uid: 9215 components: - type: Transform pos: 1.5,41.5 parent: 2 - - uid: 9278 + - uid: 9216 components: - type: Transform pos: 1.5,40.5 parent: 2 - - uid: 9279 + - uid: 9217 components: - type: Transform pos: 1.5,39.5 parent: 2 - - uid: 9280 + - uid: 9218 components: - type: Transform pos: 0.5,39.5 parent: 2 - - uid: 9281 + - uid: 9219 components: - type: Transform pos: 0.5,39.5 parent: 2 - - uid: 9282 + - uid: 9220 components: - type: Transform pos: 0.5,38.5 parent: 2 - - uid: 9283 + - uid: 9221 components: - type: Transform pos: 0.5,37.5 parent: 2 - - uid: 9284 + - uid: 9222 components: - type: Transform pos: 0.5,36.5 parent: 2 - - uid: 9285 + - uid: 9223 components: - type: Transform pos: 0.5,35.5 parent: 2 - - uid: 9286 + - uid: 9224 components: - type: Transform pos: 0.5,34.5 parent: 2 - - uid: 9287 + - uid: 9225 components: - type: Transform pos: 0.5,33.5 parent: 2 - - uid: 9288 + - uid: 9226 components: - type: Transform pos: 0.5,32.5 parent: 2 - - uid: 9289 + - uid: 9227 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 9290 + - uid: 9228 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 9291 + - uid: 9229 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 9292 + - uid: 9230 components: - type: Transform pos: 6.5,-37.5 parent: 2 - - uid: 9293 + - uid: 9231 components: - type: Transform pos: 6.5,-38.5 parent: 2 - - uid: 9294 + - uid: 9232 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 9295 + - uid: 9233 components: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 9296 + - uid: 9234 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 9297 + - uid: 9235 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 9298 + - uid: 9236 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 9299 + - uid: 9237 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 9300 + - uid: 9238 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - uid: 9301 + - uid: 9239 components: - type: Transform pos: -0.5,-35.5 parent: 2 - - uid: 9302 + - uid: 9240 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 9303 + - uid: 9241 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 9304 + - uid: 9242 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 9305 + - uid: 9243 components: - type: Transform pos: -0.5,-31.5 parent: 2 - - uid: 9306 + - uid: 9244 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 9307 + - uid: 9245 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 9308 + - uid: 9246 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 9309 + - uid: 9247 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 9310 + - uid: 9248 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 9311 + - uid: 9249 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 9312 + - uid: 9250 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 9313 + - uid: 9251 components: - type: Transform pos: -0.5,-23.5 parent: 2 - - uid: 9314 + - uid: 9252 components: - type: Transform pos: -0.5,-22.5 parent: 2 - - uid: 9315 + - uid: 9253 components: - type: Transform pos: -0.5,-21.5 parent: 2 - - uid: 9316 + - uid: 9254 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 9317 + - uid: 9255 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 9318 + - uid: 9256 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 9319 + - uid: 9257 components: - type: Transform pos: 51.5,-5.5 parent: 2 - - uid: 9320 + - uid: 9258 components: - type: Transform pos: 51.5,-7.5 parent: 2 - - uid: 9321 + - uid: 9259 components: - type: Transform pos: 47.5,-7.5 parent: 2 - - uid: 9322 + - uid: 9260 components: - type: Transform pos: 49.5,-7.5 parent: 2 - - uid: 9323 + - uid: 9261 components: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 9324 + - uid: 9262 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 9325 + - uid: 9263 components: - type: Transform pos: 45.5,-7.5 parent: 2 - - uid: 9326 + - uid: 9264 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 9327 + - uid: 9265 components: - type: Transform pos: 47.5,-7.5 parent: 2 - - uid: 9328 + - uid: 9266 components: - type: Transform pos: 46.5,-7.5 parent: 2 - - uid: 9329 + - uid: 9267 components: - type: Transform pos: 51.5,-4.5 parent: 2 - - uid: 9330 + - uid: 9268 components: - type: Transform pos: 52.5,-3.5 parent: 2 - - uid: 9331 + - uid: 9269 components: - type: Transform pos: 52.5,-0.5 parent: 2 - - uid: 9332 + - uid: 9270 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 9333 + - uid: 9271 components: - type: Transform pos: 52.5,-1.5 parent: 2 - - uid: 9334 + - uid: 9272 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 9335 + - uid: 9273 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 9336 + - uid: 9274 components: - type: Transform pos: 20.5,17.5 parent: 2 - - uid: 9337 + - uid: 9275 components: - type: Transform pos: 23.5,20.5 parent: 2 - - uid: 9338 + - uid: 9276 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 9339 + - uid: 9277 components: - type: Transform pos: 21.5,21.5 parent: 2 - - uid: 9340 + - uid: 9278 components: - type: Transform pos: 24.5,20.5 parent: 2 - - uid: 9341 + - uid: 9279 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 9342 + - uid: 9280 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 9343 + - uid: 9281 components: - type: Transform pos: 18.5,15.5 parent: 2 - - uid: 9344 + - uid: 9282 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 9345 + - uid: 9283 components: - type: Transform pos: 19.5,15.5 parent: 2 - - uid: 9346 + - uid: 9284 components: - type: Transform pos: 21.5,23.5 parent: 2 - - uid: 9347 + - uid: 9285 components: - type: Transform pos: 21.5,22.5 parent: 2 - - uid: 9348 + - uid: 9286 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 9349 + - uid: 9287 components: - type: Transform pos: 22.5,15.5 parent: 2 - - uid: 9350 + - uid: 9288 components: - type: Transform pos: 26.5,20.5 parent: 2 - - uid: 9351 + - uid: 9289 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 9352 + - uid: 9290 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 9353 + - uid: 9291 components: - type: Transform pos: 20.5,14.5 parent: 2 - - uid: 9354 + - uid: 9292 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 9355 + - uid: 9293 components: - type: Transform pos: 20.5,12.5 parent: 2 - - uid: 38503 + - uid: 38330 components: - type: Transform pos: 0.5,2.5 - parent: 38484 - - uid: 38504 + parent: 38311 + - uid: 38331 components: - type: Transform pos: 1.5,1.5 - parent: 38484 - - uid: 38505 + parent: 38311 + - uid: 38332 components: - type: Transform pos: 0.5,1.5 - parent: 38484 - - uid: 38506 + parent: 38311 + - uid: 38333 components: - type: Transform pos: 2.5,1.5 - parent: 38484 - - uid: 38507 + parent: 38311 + - uid: 38334 components: - type: Transform pos: 3.5,1.5 - parent: 38484 - - uid: 38508 + parent: 38311 + - uid: 38335 components: - type: Transform pos: 3.5,0.5 - parent: 38484 - - uid: 38509 + parent: 38311 + - uid: 38336 components: - type: Transform pos: 3.5,-0.5 - parent: 38484 - - uid: 38911 + parent: 38311 + - uid: 38738 components: - type: Transform pos: -22.5,25.5 - parent: 38584 - - uid: 38912 + parent: 38411 + - uid: 38739 components: - type: Transform pos: -21.5,25.5 - parent: 38584 - - uid: 38913 + parent: 38411 + - uid: 38740 components: - type: Transform pos: 8.5,7.5 - parent: 38584 - - uid: 38914 + parent: 38411 + - uid: 38741 components: - type: Transform pos: 10.5,7.5 - parent: 38584 - - uid: 38915 + parent: 38411 + - uid: 38742 components: - type: Transform pos: 8.5,6.5 - parent: 38584 - - uid: 38916 + parent: 38411 + - uid: 38743 components: - type: Transform pos: 9.5,7.5 - parent: 38584 - - uid: 38917 + parent: 38411 + - uid: 38744 components: - type: Transform pos: 9.5,6.5 - parent: 38584 - - uid: 38918 + parent: 38411 + - uid: 38745 components: - type: Transform pos: 8.5,5.5 - parent: 38584 - - uid: 38919 + parent: 38411 + - uid: 38746 components: - type: Transform pos: 9.5,5.5 - parent: 38584 - - uid: 38920 + parent: 38411 + - uid: 38747 components: - type: Transform pos: 8.5,4.5 - parent: 38584 + parent: 38411 - proto: CableHVStack entities: - - uid: 9356 + - uid: 9294 components: - type: Transform pos: -48.086647,11.574663 parent: 2 - - uid: 9357 + - uid: 9295 components: - type: Transform pos: -49.51845,47.584435 parent: 2 - proto: CableHVStack1 entities: - - uid: 9358 + - uid: 9296 components: - type: Transform rot: -1.5707953085339508 rad pos: 77.64752,-1.6855047 parent: 2 - - uid: 9359 + - uid: 9297 components: - type: Transform rot: -1.5707953085339508 rad pos: 58.58862,-40.883453 parent: 2 - - uid: 9360 + - uid: 9298 components: - type: Transform rot: 3.141593671850739 rad @@ -85242,16484 +85247,16484 @@ entities: parent: 2 - proto: CableMV entities: - - uid: 286 + - uid: 9299 components: - type: Transform pos: -56.5,-22.5 parent: 2 - - uid: 6732 + - uid: 9300 components: - type: Transform pos: -55.5,-20.5 parent: 2 - - uid: 9361 + - uid: 9301 components: - type: Transform pos: 26.5,22.5 parent: 2 - - uid: 9362 + - uid: 9302 components: - type: Transform pos: 70.5,27.5 parent: 2 - - uid: 9363 + - uid: 9303 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 9364 + - uid: 9304 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 9365 + - uid: 9305 components: - type: Transform pos: 70.5,26.5 parent: 2 - - uid: 9366 + - uid: 9306 components: - type: Transform pos: 33.5,40.5 parent: 2 - - uid: 9367 + - uid: 9307 components: - type: Transform pos: 34.5,-51.5 parent: 2 - - uid: 9368 + - uid: 9308 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 9369 + - uid: 9309 components: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 9370 + - uid: 9310 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 9371 + - uid: 9311 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 9372 + - uid: 9312 components: - type: Transform pos: -4.5,-9.5 parent: 2 - - uid: 9373 + - uid: 9313 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 9374 + - uid: 9314 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 9375 + - uid: 9315 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 9376 + - uid: 9316 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 9377 + - uid: 9317 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 9378 + - uid: 9318 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 9379 + - uid: 9319 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 9380 + - uid: 9320 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 9381 + - uid: 9321 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 9382 + - uid: 9322 components: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 9383 + - uid: 9323 components: - type: Transform pos: 4.5,-12.5 parent: 2 - - uid: 9384 + - uid: 9324 components: - type: Transform pos: 3.5,-11.5 parent: 2 - - uid: 9385 + - uid: 9325 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 9386 + - uid: 9326 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 9387 + - uid: 9327 components: - type: Transform pos: -58.5,-37.5 parent: 2 - - uid: 9388 + - uid: 9328 components: - type: Transform pos: 93.5,-5.5 parent: 2 - - uid: 9389 + - uid: 9329 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 9390 + - uid: 9330 components: - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 9391 + - uid: 9331 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 9392 + - uid: 9332 components: - type: Transform pos: 14.5,-1.5 parent: 2 - - uid: 9393 + - uid: 9333 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 9394 + - uid: 9334 components: - type: Transform pos: 12.5,-3.5 parent: 2 - - uid: 9395 + - uid: 9335 components: - type: Transform pos: 10.5,-4.5 parent: 2 - - uid: 9396 + - uid: 9336 components: - type: Transform pos: 11.5,-4.5 parent: 2 - - uid: 9397 + - uid: 9337 components: - type: Transform pos: -67.5,-42.5 parent: 2 - - uid: 9398 + - uid: 9338 components: - type: Transform pos: 84.5,1.5 parent: 2 - - uid: 9399 + - uid: 9339 components: - type: Transform pos: -61.5,-47.5 parent: 2 - - uid: 9400 + - uid: 9340 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 9401 + - uid: 9341 components: - type: Transform pos: -60.5,-47.5 parent: 2 - - uid: 9402 + - uid: 9342 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 9403 + - uid: 9343 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 9404 + - uid: 9344 components: - type: Transform pos: 87.5,-5.5 parent: 2 - - uid: 9405 + - uid: 9345 components: - type: Transform pos: 86.5,-5.5 parent: 2 - - uid: 9406 + - uid: 9346 components: - type: Transform pos: 83.5,-5.5 parent: 2 - - uid: 9407 + - uid: 9347 components: - type: Transform pos: 82.5,-5.5 parent: 2 - - uid: 9408 + - uid: 9348 components: - type: Transform pos: 97.5,-4.5 parent: 2 - - uid: 9409 + - uid: 9349 components: - type: Transform pos: 82.5,-5.5 parent: 2 - - uid: 9410 + - uid: 9350 components: - type: Transform pos: -32.5,37.5 parent: 2 - - uid: 9411 + - uid: 9351 components: - type: Transform pos: 89.5,-5.5 parent: 2 - - uid: 9412 + - uid: 9352 components: - type: Transform pos: 20.5,67.5 parent: 2 - - uid: 9413 + - uid: 9353 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 9414 + - uid: 9354 components: - type: Transform pos: 96.5,-4.5 parent: 2 - - uid: 9415 + - uid: 9355 components: - type: Transform pos: 98.5,6.5 parent: 2 - - uid: 9416 + - uid: 9356 components: - type: Transform pos: 98.5,5.5 parent: 2 - - uid: 9417 + - uid: 9357 components: - type: Transform pos: 84.5,-5.5 parent: 2 - - uid: 9418 + - uid: 9358 components: - type: Transform pos: 88.5,-5.5 parent: 2 - - uid: 9419 + - uid: 9359 components: - type: Transform pos: 98.5,7.5 parent: 2 - - uid: 9420 + - uid: 9360 components: - type: Transform pos: 92.5,9.5 parent: 2 - - uid: 9421 + - uid: 9361 components: - type: Transform pos: 76.5,-3.5 parent: 2 - - uid: 9422 + - uid: 9362 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 9423 + - uid: 9363 components: - type: Transform pos: 76.5,-2.5 parent: 2 - - uid: 9424 + - uid: 9364 components: - type: Transform pos: 80.5,-5.5 parent: 2 - - uid: 9425 + - uid: 9365 components: - type: Transform pos: 79.5,-5.5 parent: 2 - - uid: 9426 + - uid: 9366 components: - type: Transform pos: 81.5,-5.5 parent: 2 - - uid: 9427 + - uid: 9367 components: - type: Transform pos: 85.5,-5.5 parent: 2 - - uid: 9428 + - uid: 9368 components: - type: Transform pos: 86.5,-5.5 parent: 2 - - uid: 9429 + - uid: 9369 components: - type: Transform pos: -66.5,-42.5 parent: 2 - - uid: 9430 + - uid: 9370 components: - type: Transform pos: -67.5,-38.5 parent: 2 - - uid: 9431 + - uid: 9371 components: - type: Transform pos: -65.5,-42.5 parent: 2 - - uid: 9432 + - uid: 9372 components: - type: Transform pos: 75.5,1.5 parent: 2 - - uid: 9433 + - uid: 9373 components: - type: Transform pos: 78.5,1.5 parent: 2 - - uid: 9434 + - uid: 9374 components: - type: Transform pos: 77.5,1.5 parent: 2 - - uid: 9435 + - uid: 9375 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 9436 + - uid: 9376 components: - type: Transform pos: 98.5,8.5 parent: 2 - - uid: 9437 + - uid: 9377 components: - type: Transform pos: 93.5,8.5 parent: 2 - - uid: 9438 + - uid: 9378 components: - type: Transform pos: 92.5,8.5 parent: 2 - - uid: 9439 + - uid: 9379 components: - type: Transform pos: 81.5,-0.5 parent: 2 - - uid: 9440 + - uid: 9380 components: - type: Transform pos: 85.5,0.5 parent: 2 - - uid: 9441 + - uid: 9381 components: - type: Transform pos: 82.5,-1.5 parent: 2 - - uid: 9442 + - uid: 9382 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 9443 + - uid: 9383 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 9444 + - uid: 9384 components: - type: Transform pos: 94.5,8.5 parent: 2 - - uid: 9445 + - uid: 9385 components: - type: Transform pos: 94.5,9.5 parent: 2 - - uid: 9446 + - uid: 9386 components: - type: Transform pos: 96.5,-5.5 parent: 2 - - uid: 9447 + - uid: 9387 components: - type: Transform pos: 92.5,-5.5 parent: 2 - - uid: 9448 + - uid: 9388 components: - type: Transform pos: -41.5,48.5 parent: 2 - - uid: 9449 + - uid: 9389 components: - type: Transform pos: 95.5,-5.5 parent: 2 - - uid: 9450 + - uid: 9390 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 9451 + - uid: 9391 components: - type: Transform pos: -35.5,57.5 parent: 2 - - uid: 9452 + - uid: 9392 components: - type: Transform pos: -38.5,62.5 parent: 2 - - uid: 9453 + - uid: 9393 components: - type: Transform pos: -37.5,57.5 parent: 2 - - uid: 9454 + - uid: 9394 components: - type: Transform pos: -38.5,57.5 parent: 2 - - uid: 9455 + - uid: 9395 components: - type: Transform pos: -37.5,58.5 parent: 2 - - uid: 9456 + - uid: 9396 components: - type: Transform pos: -41.5,56.5 parent: 2 - - uid: 9457 + - uid: 9397 components: - type: Transform pos: -41.5,57.5 parent: 2 - - uid: 9458 + - uid: 9398 components: - type: Transform pos: 94.5,1.5 parent: 2 - - uid: 9459 + - uid: 9399 components: - type: Transform pos: -41.5,53.5 parent: 2 - - uid: 9460 + - uid: 9400 components: - type: Transform pos: 80.5,1.5 parent: 2 - - uid: 9461 + - uid: 9401 components: - type: Transform pos: -56.5,-48.5 parent: 2 - - uid: 9462 + - uid: 9402 components: - type: Transform pos: -41.5,50.5 parent: 2 - - uid: 9463 + - uid: 9403 components: - type: Transform pos: -37.5,42.5 parent: 2 - - uid: 9464 + - uid: 9404 components: - type: Transform pos: -38.5,42.5 parent: 2 - - uid: 9465 + - uid: 9405 components: - type: Transform pos: 27.5,52.5 parent: 2 - - uid: 9466 + - uid: 9406 components: - type: Transform pos: 27.5,50.5 parent: 2 - - uid: 9467 + - uid: 9407 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 9468 + - uid: 9408 components: - type: Transform pos: 41.5,-4.5 parent: 2 - - uid: 9469 + - uid: 9409 components: - type: Transform pos: 39.5,-4.5 parent: 2 - - uid: 9470 + - uid: 9410 components: - type: Transform pos: 38.5,-4.5 parent: 2 - - uid: 9471 + - uid: 9411 components: - type: Transform pos: 42.5,-4.5 parent: 2 - - uid: 9472 + - uid: 9412 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 9473 + - uid: 9413 components: - type: Transform pos: -36.5,42.5 parent: 2 - - uid: 9474 + - uid: 9414 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 9475 + - uid: 9415 components: - type: Transform pos: -41.5,49.5 parent: 2 - - uid: 9476 + - uid: 9416 components: - type: Transform pos: 90.5,1.5 parent: 2 - - uid: 9477 + - uid: 9417 components: - type: Transform pos: 23.5,32.5 parent: 2 - - uid: 9478 + - uid: 9418 components: - type: Transform pos: 91.5,1.5 parent: 2 - - uid: 9479 + - uid: 9419 components: - type: Transform pos: 79.5,1.5 parent: 2 - - uid: 9480 + - uid: 9420 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 9481 + - uid: 9421 components: - type: Transform pos: 98.5,1.5 parent: 2 - - uid: 9482 + - uid: 9422 components: - type: Transform pos: 89.5,1.5 parent: 2 - - uid: 9483 + - uid: 9423 components: - type: Transform pos: 86.5,1.5 parent: 2 - - uid: 9484 + - uid: 9424 components: - type: Transform pos: 94.5,4.5 parent: 2 - - uid: 9485 + - uid: 9425 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 9486 + - uid: 9426 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 9487 + - uid: 9427 components: - type: Transform pos: 95.5,0.5 parent: 2 - - uid: 9488 + - uid: 9428 components: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 9489 + - uid: 9429 components: - type: Transform pos: 89.5,0.5 parent: 2 - - uid: 9490 + - uid: 9430 components: - type: Transform pos: 95.5,1.5 parent: 2 - - uid: 9491 + - uid: 9431 components: - type: Transform pos: 95.5,-0.5 parent: 2 - - uid: 9492 + - uid: 9432 components: - type: Transform pos: 78.5,1.5 parent: 2 - - uid: 9493 + - uid: 9433 components: - type: Transform pos: 97.5,-0.5 parent: 2 - - uid: 9494 + - uid: 9434 components: - type: Transform pos: 97.5,-0.5 parent: 2 - - uid: 9495 + - uid: 9435 components: - type: Transform pos: 78.5,-4.5 parent: 2 - - uid: 9496 + - uid: 9436 components: - type: Transform pos: 77.5,-4.5 parent: 2 - - uid: 9497 + - uid: 9437 components: - type: Transform pos: 78.5,-5.5 parent: 2 - - uid: 9498 + - uid: 9438 components: - type: Transform pos: -58.5,-36.5 parent: 2 - - uid: 9499 + - uid: 9439 components: - type: Transform pos: 76.5,1.5 parent: 2 - - uid: 9500 + - uid: 9440 components: - type: Transform pos: 98.5,-4.5 parent: 2 - - uid: 9501 + - uid: 9441 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 9502 + - uid: 9442 components: - type: Transform pos: 74.5,-6.5 parent: 2 - - uid: 9503 + - uid: 9443 components: - type: Transform pos: 83.5,1.5 parent: 2 - - uid: 9504 + - uid: 9444 components: - type: Transform pos: 81.5,0.5 parent: 2 - - uid: 9505 + - uid: 9445 components: - type: Transform pos: 80.5,3.5 parent: 2 - - uid: 9506 + - uid: 9446 components: - type: Transform pos: 90.5,-1.5 parent: 2 - - uid: 9507 + - uid: 9447 components: - type: Transform pos: 92.5,10.5 parent: 2 - - uid: 9508 + - uid: 9448 components: - type: Transform pos: 82.5,1.5 parent: 2 - - uid: 9509 + - uid: 9449 components: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 9510 + - uid: 9450 components: - type: Transform pos: 1.5,-14.5 parent: 2 - - uid: 9511 + - uid: 9451 components: - type: Transform pos: -41.5,46.5 parent: 2 - - uid: 9512 + - uid: 9452 components: - type: Transform pos: -41.5,43.5 parent: 2 - - uid: 9513 + - uid: 9453 components: - type: Transform pos: -40.5,39.5 parent: 2 - - uid: 9514 + - uid: 9454 components: - type: Transform pos: -40.5,40.5 parent: 2 - - uid: 9515 + - uid: 9455 components: - type: Transform pos: -40.5,63.5 parent: 2 - - uid: 9516 + - uid: 9456 components: - type: Transform pos: -40.5,62.5 parent: 2 - - uid: 9517 + - uid: 9457 components: - type: Transform pos: -34.5,57.5 parent: 2 - - uid: 9518 + - uid: 9458 components: - type: Transform pos: -39.5,62.5 parent: 2 - - uid: 9519 + - uid: 9459 components: - type: Transform pos: -41.5,47.5 parent: 2 - - uid: 9520 + - uid: 9460 components: - type: Transform pos: -41.5,45.5 parent: 2 - - uid: 9521 + - uid: 9461 components: - type: Transform pos: -41.5,52.5 parent: 2 - - uid: 9522 + - uid: 9462 components: - type: Transform pos: 27.5,53.5 parent: 2 - - uid: 9523 + - uid: 9463 components: - type: Transform pos: 27.5,51.5 parent: 2 - - uid: 9524 + - uid: 9464 components: - type: Transform pos: 26.5,50.5 parent: 2 - - uid: 9525 + - uid: 9465 components: - type: Transform pos: -58.5,-34.5 parent: 2 - - uid: 9526 + - uid: 9466 components: - type: Transform pos: -41.5,51.5 parent: 2 - - uid: 9527 + - uid: 9467 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 9528 + - uid: 9468 components: - type: Transform pos: -7.5,69.5 parent: 2 - - uid: 9529 + - uid: 9469 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 9530 + - uid: 9470 components: - type: Transform pos: -41.5,54.5 parent: 2 - - uid: 9531 + - uid: 9471 components: - type: Transform pos: -39.5,42.5 parent: 2 - - uid: 9532 + - uid: 9472 components: - type: Transform pos: -40.5,42.5 parent: 2 - - uid: 9533 + - uid: 9473 components: - type: Transform pos: -41.5,44.5 parent: 2 - - uid: 9534 + - uid: 9474 components: - type: Transform pos: -36.5,57.5 parent: 2 - - uid: 9535 + - uid: 9475 components: - type: Transform pos: 74.5,1.5 parent: 2 - - uid: 9536 + - uid: 9476 components: - type: Transform pos: -39.5,57.5 parent: 2 - - uid: 9537 + - uid: 9477 components: - type: Transform pos: -37.5,60.5 parent: 2 - - uid: 9538 + - uid: 9478 components: - type: Transform pos: 94.5,13.5 parent: 2 - - uid: 9539 + - uid: 9479 components: - type: Transform pos: 91.5,8.5 parent: 2 - - uid: 9540 + - uid: 9480 components: - type: Transform pos: 2.5,-11.5 parent: 2 - - uid: 9541 + - uid: 9481 components: - type: Transform pos: -18.5,-30.5 parent: 2 - - uid: 9542 + - uid: 9482 components: - type: Transform pos: -19.5,-30.5 parent: 2 - - uid: 9543 + - uid: 9483 components: - type: Transform pos: 9.5,-4.5 parent: 2 - - uid: 9544 + - uid: 9484 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 9545 + - uid: 9485 components: - type: Transform pos: 98.5,-3.5 parent: 2 - - uid: 9546 + - uid: 9486 components: - type: Transform pos: 91.5,-5.5 parent: 2 - - uid: 9547 + - uid: 9487 components: - type: Transform pos: 98.5,-0.5 parent: 2 - - uid: 9548 + - uid: 9488 components: - type: Transform pos: -62.5,-46.5 parent: 2 - - uid: 9549 + - uid: 9489 components: - type: Transform pos: 98.5,-2.5 parent: 2 - - uid: 9550 + - uid: 9490 components: - type: Transform pos: 97.5,8.5 parent: 2 - - uid: 9551 + - uid: 9491 components: - type: Transform pos: 96.5,8.5 parent: 2 - - uid: 9552 + - uid: 9492 components: - type: Transform pos: 95.5,8.5 parent: 2 - - uid: 9553 + - uid: 9493 components: - type: Transform pos: 96.5,-0.5 parent: 2 - - uid: 9554 + - uid: 9494 components: - type: Transform pos: 94.5,-5.5 parent: 2 - - uid: 9555 + - uid: 9495 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 9556 + - uid: 9496 components: - type: Transform pos: -11.5,5.5 parent: 2 - - uid: 9557 + - uid: 9497 components: - type: Transform pos: 81.5,-1.5 parent: 2 - - uid: 9558 + - uid: 9498 components: - type: Transform pos: -67.5,-41.5 parent: 2 - - uid: 9559 + - uid: 9499 components: - type: Transform pos: 80.5,2.5 parent: 2 - - uid: 9560 + - uid: 9500 components: - type: Transform pos: 92.5,1.5 parent: 2 - - uid: 9561 + - uid: 9501 components: - type: Transform pos: 87.5,1.5 parent: 2 - - uid: 9562 + - uid: 9502 components: - type: Transform pos: 94.5,2.5 parent: 2 - - uid: 9563 + - uid: 9503 components: - type: Transform pos: 85.5,-0.5 parent: 2 - - uid: 9564 + - uid: 9504 components: - type: Transform pos: 94.5,3.5 parent: 2 - - uid: 9565 + - uid: 9505 components: - type: Transform pos: 93.5,1.5 parent: 2 - - uid: 9566 + - uid: 9506 components: - type: Transform pos: 88.5,1.5 parent: 2 - - uid: 9567 + - uid: 9507 components: - type: Transform pos: 86.5,-1.5 parent: 2 - - uid: 9568 + - uid: 9508 components: - type: Transform pos: -59.5,-42.5 parent: 2 - - uid: 9569 + - uid: 9509 components: - type: Transform pos: -59.5,-47.5 parent: 2 - - uid: 9570 + - uid: 9510 components: - type: Transform pos: -61.5,-46.5 parent: 2 - - uid: 9571 + - uid: 9511 components: - type: Transform pos: 89.5,-1.5 parent: 2 - - uid: 9572 + - uid: 9512 components: - type: Transform pos: 93.5,13.5 parent: 2 - - uid: 9573 + - uid: 9513 components: - type: Transform pos: -67.5,-40.5 parent: 2 - - uid: 9574 + - uid: 9514 components: - type: Transform pos: 89.5,-0.5 parent: 2 - - uid: 9575 + - uid: 9515 components: - type: Transform pos: -57.5,-48.5 parent: 2 - - uid: 9576 + - uid: 9516 components: - type: Transform pos: 85.5,3.5 parent: 2 - - uid: 9577 + - uid: 9517 components: - type: Transform pos: 85.5,2.5 parent: 2 - - uid: 9578 + - uid: 9518 components: - type: Transform pos: 85.5,1.5 parent: 2 - - uid: 9579 + - uid: 9519 components: - type: Transform pos: 0.49999997,-14.5 parent: 2 - - uid: 9580 + - uid: 9520 components: - type: Transform pos: 98.5,3.5 parent: 2 - - uid: 9581 + - uid: 9521 components: - type: Transform pos: -41.5,42.5 parent: 2 - - uid: 9582 + - uid: 9522 components: - type: Transform pos: -41.5,55.5 parent: 2 - - uid: 9583 + - uid: 9523 components: - type: Transform pos: 13.5,88.5 parent: 2 - - uid: 9584 + - uid: 9524 components: - type: Transform pos: 13.5,87.5 parent: 2 - - uid: 9585 + - uid: 9525 components: - type: Transform pos: 12.5,87.5 parent: 2 - - uid: 9586 + - uid: 9526 components: - type: Transform pos: 11.5,87.5 parent: 2 - - uid: 9587 + - uid: 9527 components: - type: Transform pos: 11.5,88.5 parent: 2 - - uid: 9588 + - uid: 9528 components: - type: Transform pos: 11.5,89.5 parent: 2 - - uid: 9589 + - uid: 9529 components: - type: Transform pos: 20.5,66.5 parent: 2 - - uid: 9590 + - uid: 9530 components: - type: Transform pos: 19.5,66.5 parent: 2 - - uid: 9591 + - uid: 9531 components: - type: Transform pos: 18.5,66.5 parent: 2 - - uid: 9592 + - uid: 9532 components: - type: Transform pos: 17.5,66.5 parent: 2 - - uid: 9593 + - uid: 9533 components: - type: Transform pos: 16.5,66.5 parent: 2 - - uid: 9594 + - uid: 9534 components: - type: Transform pos: 15.5,66.5 parent: 2 - - uid: 9595 + - uid: 9535 components: - type: Transform pos: 14.5,66.5 parent: 2 - - uid: 9596 + - uid: 9536 components: - type: Transform pos: 14.5,65.5 parent: 2 - - uid: 9597 + - uid: 9537 components: - type: Transform pos: 14.5,64.5 parent: 2 - - uid: 9598 + - uid: 9538 components: - type: Transform pos: 13.5,64.5 parent: 2 - - uid: 9599 + - uid: 9539 components: - type: Transform pos: 12.5,64.5 parent: 2 - - uid: 9600 + - uid: 9540 components: - type: Transform pos: 11.5,64.5 parent: 2 - - uid: 9601 + - uid: 9541 components: - type: Transform pos: 10.5,64.5 parent: 2 - - uid: 9602 + - uid: 9542 components: - type: Transform pos: 10.5,63.5 parent: 2 - - uid: 9603 + - uid: 9543 components: - type: Transform pos: 10.5,62.5 parent: 2 - - uid: 9604 + - uid: 9544 components: - type: Transform pos: 10.5,61.5 parent: 2 - - uid: 9605 + - uid: 9545 components: - type: Transform pos: 10.5,60.5 parent: 2 - - uid: 9606 + - uid: 9546 components: - type: Transform pos: 10.5,59.5 parent: 2 - - uid: 9607 + - uid: 9547 components: - type: Transform pos: 10.5,58.5 parent: 2 - - uid: 9608 + - uid: 9548 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 9609 + - uid: 9549 components: - type: Transform pos: 9.5,57.5 parent: 2 - - uid: 9610 + - uid: 9550 components: - type: Transform pos: 8.5,57.5 parent: 2 - - uid: 9611 + - uid: 9551 components: - type: Transform pos: 7.5,57.5 parent: 2 - - uid: 9612 + - uid: 9552 components: - type: Transform pos: 7.5,58.5 parent: 2 - - uid: 9613 + - uid: 9553 components: - type: Transform pos: 7.5,59.5 parent: 2 - - uid: 9614 + - uid: 9554 components: - type: Transform pos: 7.5,60.5 parent: 2 - - uid: 9615 + - uid: 9555 components: - type: Transform pos: 24.5,58.5 parent: 2 - - uid: 9616 + - uid: 9556 components: - type: Transform pos: 24.5,57.5 parent: 2 - - uid: 9617 + - uid: 9557 components: - type: Transform pos: 24.5,56.5 parent: 2 - - uid: 9618 + - uid: 9558 components: - type: Transform pos: 23.5,56.5 parent: 2 - - uid: 9619 + - uid: 9559 components: - type: Transform pos: 22.5,56.5 parent: 2 - - uid: 9620 + - uid: 9560 components: - type: Transform pos: 21.5,56.5 parent: 2 - - uid: 9621 + - uid: 9561 components: - type: Transform pos: 20.5,56.5 parent: 2 - - uid: 9622 + - uid: 9562 components: - type: Transform pos: 19.5,56.5 parent: 2 - - uid: 9623 + - uid: 9563 components: - type: Transform pos: 18.5,56.5 parent: 2 - - uid: 9624 + - uid: 9564 components: - type: Transform pos: 17.5,56.5 parent: 2 - - uid: 9625 + - uid: 9565 components: - type: Transform pos: 16.5,56.5 parent: 2 - - uid: 9626 + - uid: 9566 components: - type: Transform pos: 15.5,56.5 parent: 2 - - uid: 9627 + - uid: 9567 components: - type: Transform pos: 14.5,56.5 parent: 2 - - uid: 9628 + - uid: 9568 components: - type: Transform pos: 13.5,56.5 parent: 2 - - uid: 9629 + - uid: 9569 components: - type: Transform pos: 12.5,56.5 parent: 2 - - uid: 9630 + - uid: 9570 components: - type: Transform pos: 11.5,56.5 parent: 2 - - uid: 9631 + - uid: 9571 components: - type: Transform pos: 10.5,56.5 parent: 2 - - uid: 9632 + - uid: 9572 components: - type: Transform pos: 17.5,64.5 parent: 2 - - uid: 9633 + - uid: 9573 components: - type: Transform pos: 17.5,63.5 parent: 2 - - uid: 9634 + - uid: 9574 components: - type: Transform pos: 17.5,62.5 parent: 2 - - uid: 9635 + - uid: 9575 components: - type: Transform pos: 17.5,61.5 parent: 2 - - uid: 9636 + - uid: 9576 components: - type: Transform pos: 16.5,61.5 parent: 2 - - uid: 9637 + - uid: 9577 components: - type: Transform pos: 15.5,61.5 parent: 2 - - uid: 9638 + - uid: 9578 components: - type: Transform pos: 14.5,61.5 parent: 2 - - uid: 9639 + - uid: 9579 components: - type: Transform pos: 13.5,61.5 parent: 2 - - uid: 9640 + - uid: 9580 components: - type: Transform pos: 12.5,61.5 parent: 2 - - uid: 9641 + - uid: 9581 components: - type: Transform pos: 11.5,61.5 parent: 2 - - uid: 9642 + - uid: 9582 components: - type: Transform pos: 10.5,61.5 parent: 2 - - uid: 9643 + - uid: 9583 components: - type: Transform pos: 6.5,57.5 parent: 2 - - uid: 9644 + - uid: 9584 components: - type: Transform pos: 5.5,57.5 parent: 2 - - uid: 9645 + - uid: 9585 components: - type: Transform pos: 5.5,58.5 parent: 2 - - uid: 9646 + - uid: 9586 components: - type: Transform pos: 5.5,59.5 parent: 2 - - uid: 9647 + - uid: 9587 components: - type: Transform pos: 5.5,60.5 parent: 2 - - uid: 9648 + - uid: 9588 components: - type: Transform pos: 4.5,60.5 parent: 2 - - uid: 9649 + - uid: 9589 components: - type: Transform pos: 3.5,60.5 parent: 2 - - uid: 9650 + - uid: 9590 components: - type: Transform pos: 2.5,60.5 parent: 2 - - uid: 9651 + - uid: 9591 components: - type: Transform pos: 1.5,60.5 parent: 2 - - uid: 9652 + - uid: 9592 components: - type: Transform pos: 1.5,61.5 parent: 2 - - uid: 9653 + - uid: 9593 components: - type: Transform pos: 1.5,62.5 parent: 2 - - uid: 9654 + - uid: 9594 components: - type: Transform pos: 1.5,63.5 parent: 2 - - uid: 9655 + - uid: 9595 components: - type: Transform pos: 1.5,64.5 parent: 2 - - uid: 9656 + - uid: 9596 components: - type: Transform pos: 1.5,65.5 parent: 2 - - uid: 9657 + - uid: 9597 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 9658 + - uid: 9598 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 9659 + - uid: 9599 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 9660 + - uid: 9600 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 9661 + - uid: 9601 components: - type: Transform pos: -1.5,34.5 parent: 2 - - uid: 9662 + - uid: 9602 components: - type: Transform pos: -2.5,34.5 parent: 2 - - uid: 9663 + - uid: 9603 components: - type: Transform pos: -2.5,33.5 parent: 2 - - uid: 9664 + - uid: 9604 components: - type: Transform pos: -2.5,32.5 parent: 2 - - uid: 9665 + - uid: 9605 components: - type: Transform pos: -2.5,31.5 parent: 2 - - uid: 9666 + - uid: 9606 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 9667 + - uid: 9607 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 9668 + - uid: 9608 components: - type: Transform pos: 0.49999997,31.5 parent: 2 - - uid: 9669 + - uid: 9609 components: - type: Transform pos: 0.49999997,32.5 parent: 2 - - uid: 9670 + - uid: 9610 components: - type: Transform pos: 0.49999997,33.5 parent: 2 - - uid: 9671 + - uid: 9611 components: - type: Transform pos: 0.49999997,34.5 parent: 2 - - uid: 9672 + - uid: 9612 components: - type: Transform pos: 0.49999997,35.5 parent: 2 - - uid: 9673 + - uid: 9613 components: - type: Transform pos: 0.50000006,36.5 parent: 2 - - uid: 9674 + - uid: 9614 components: - type: Transform pos: 0.50000006,37.5 parent: 2 - - uid: 9675 + - uid: 9615 components: - type: Transform pos: 0.50000006,38.5 parent: 2 - - uid: 9676 + - uid: 9616 components: - type: Transform pos: 0.49999997,40.5 parent: 2 - - uid: 9677 + - uid: 9617 components: - type: Transform pos: 1.5,39.5 parent: 2 - - uid: 9678 + - uid: 9618 components: - type: Transform pos: 1.5,40.5 parent: 2 - - uid: 9679 + - uid: 9619 components: - type: Transform pos: 1.5,41.5 parent: 2 - - uid: 9680 + - uid: 9620 components: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 9681 + - uid: 9621 components: - type: Transform pos: 1.5,43.5 parent: 2 - - uid: 9682 + - uid: 9622 components: - type: Transform pos: 1.5,44.5 parent: 2 - - uid: 9683 + - uid: 9623 components: - type: Transform pos: 1.5,45.5 parent: 2 - - uid: 9684 + - uid: 9624 components: - type: Transform pos: 1.5,46.5 parent: 2 - - uid: 9685 + - uid: 9625 components: - type: Transform pos: 1.5,47.5 parent: 2 - - uid: 9686 + - uid: 9626 components: - type: Transform pos: 2.5,47.5 parent: 2 - - uid: 9687 + - uid: 9627 components: - type: Transform pos: 3.5,47.5 parent: 2 - - uid: 9688 + - uid: 9628 components: - type: Transform pos: 3.5,48.5 parent: 2 - - uid: 9689 + - uid: 9629 components: - type: Transform pos: 3.5,49.5 parent: 2 - - uid: 9690 + - uid: 9630 components: - type: Transform pos: 3.5,50.5 parent: 2 - - uid: 9691 + - uid: 9631 components: - type: Transform pos: 3.5,51.5 parent: 2 - - uid: 9692 + - uid: 9632 components: - type: Transform pos: 3.5,52.5 parent: 2 - - uid: 9693 + - uid: 9633 components: - type: Transform pos: 3.5,53.5 parent: 2 - - uid: 9694 + - uid: 9634 components: - type: Transform pos: 3.5,54.5 parent: 2 - - uid: 9695 + - uid: 9635 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 9696 + - uid: 9636 components: - type: Transform pos: 2.5,51.5 parent: 2 - - uid: 9697 + - uid: 9637 components: - type: Transform pos: 1.5,51.5 parent: 2 - - uid: 9698 + - uid: 9638 components: - type: Transform pos: 0.50000006,51.5 parent: 2 - - uid: 9699 + - uid: 9639 components: - type: Transform pos: -0.5,51.5 parent: 2 - - uid: 9700 + - uid: 9640 components: - type: Transform pos: -1.5,51.5 parent: 2 - - uid: 9701 + - uid: 9641 components: - type: Transform pos: -2.5,51.5 parent: 2 - - uid: 9702 + - uid: 9642 components: - type: Transform pos: -2.5,50.5 parent: 2 - - uid: 9703 + - uid: 9643 components: - type: Transform pos: -2.5,49.5 parent: 2 - - uid: 9704 + - uid: 9644 components: - type: Transform pos: -3.5,49.5 parent: 2 - - uid: 9705 + - uid: 9645 components: - type: Transform pos: -4.5,49.5 parent: 2 - - uid: 9706 + - uid: 9646 components: - type: Transform pos: -7.5,50.5 parent: 2 - - uid: 9707 + - uid: 9647 components: - type: Transform pos: -7.5,51.5 parent: 2 - - uid: 9708 + - uid: 9648 components: - type: Transform pos: -5.5,49.5 parent: 2 - - uid: 9709 + - uid: 9649 components: - type: Transform pos: -6.5,49.5 parent: 2 - - uid: 9710 + - uid: 9650 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 9711 + - uid: 9651 components: - type: Transform pos: 0.49999997,40.5 parent: 2 - - uid: 9712 + - uid: 9652 components: - type: Transform pos: -0.5,40.5 parent: 2 - - uid: 9713 + - uid: 9653 components: - type: Transform pos: 1.5,38.5 parent: 2 - - uid: 9714 + - uid: 9654 components: - type: Transform pos: -1.5,40.5 parent: 2 - - uid: 9715 + - uid: 9655 components: - type: Transform pos: -2.5,40.5 parent: 2 - - uid: 9716 + - uid: 9656 components: - type: Transform pos: -2.5,40.5 parent: 2 - - uid: 9717 + - uid: 9657 components: - type: Transform pos: -2.5,39.5 parent: 2 - - uid: 9718 + - uid: 9658 components: - type: Transform pos: -2.5,38.5 parent: 2 - - uid: 9719 + - uid: 9659 components: - type: Transform pos: -2.5,37.5 parent: 2 - - uid: 9720 + - uid: 9660 components: - type: Transform pos: -3.5,37.5 parent: 2 - - uid: 9721 + - uid: 9661 components: - type: Transform pos: -4.5,37.5 parent: 2 - - uid: 9722 + - uid: 9662 components: - type: Transform pos: -5.5,37.5 parent: 2 - - uid: 9723 + - uid: 9663 components: - type: Transform pos: -6.5,38.5 parent: 2 - - uid: 9724 + - uid: 9664 components: - type: Transform pos: -6.5,39.5 parent: 2 - - uid: 9725 + - uid: 9665 components: - type: Transform pos: -6.5,40.5 parent: 2 - - uid: 9726 + - uid: 9666 components: - type: Transform pos: -6.5,41.5 parent: 2 - - uid: 9727 + - uid: 9667 components: - type: Transform pos: -6.5,42.5 parent: 2 - - uid: 9728 + - uid: 9668 components: - type: Transform pos: -6.5,43.5 parent: 2 - - uid: 9729 + - uid: 9669 components: - type: Transform pos: -6.5,44.5 parent: 2 - - uid: 9730 + - uid: 9670 components: - type: Transform pos: -6.5,45.5 parent: 2 - - uid: 9731 + - uid: 9671 components: - type: Transform pos: -6.5,46.5 parent: 2 - - uid: 9732 + - uid: 9672 components: - type: Transform pos: -6.5,47.5 parent: 2 - - uid: 9733 + - uid: 9673 components: - type: Transform pos: -6.5,37.5 parent: 2 - - uid: 9734 + - uid: 9674 components: - type: Transform pos: -6.5,37.5 parent: 2 - - uid: 9735 + - uid: 9675 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 9736 + - uid: 9676 components: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 9737 + - uid: 9677 components: - type: Transform pos: -4.5,30.5 parent: 2 - - uid: 9738 + - uid: 9678 components: - type: Transform pos: -5.5,30.5 parent: 2 - - uid: 9739 + - uid: 9679 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 9740 + - uid: 9680 components: - type: Transform pos: -37.5,61.5 parent: 2 - - uid: 9741 + - uid: 9681 components: - type: Transform pos: -37.5,40.5 parent: 2 - - uid: 9742 + - uid: 9682 components: - type: Transform pos: -37.5,39.5 parent: 2 - - uid: 9743 + - uid: 9683 components: - type: Transform pos: -36.5,39.5 parent: 2 - - uid: 9744 + - uid: 9684 components: - type: Transform pos: -35.5,39.5 parent: 2 - - uid: 9745 + - uid: 9685 components: - type: Transform pos: -35.5,40.5 parent: 2 - - uid: 9746 + - uid: 9686 components: - type: Transform pos: -35.5,41.5 parent: 2 - - uid: 9747 + - uid: 9687 components: - type: Transform pos: -35.5,42.5 parent: 2 - - uid: 9748 + - uid: 9688 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 9749 + - uid: 9689 components: - type: Transform pos: 12.5,-4.5 parent: 2 - - uid: 9750 + - uid: 9690 components: - type: Transform pos: 11.5,-1.5 parent: 2 - - uid: 9751 + - uid: 9691 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 9752 + - uid: 9692 components: - type: Transform pos: -37.5,59.5 parent: 2 - - uid: 9753 + - uid: 9693 components: - type: Transform pos: -40.5,57.5 parent: 2 - - uid: 9754 + - uid: 9694 components: - type: Transform pos: 9.5,-3.5 parent: 2 - - uid: 9755 + - uid: 9695 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 9756 + - uid: 9696 components: - type: Transform pos: 10.5,0.5 parent: 2 - - uid: 9757 + - uid: 9697 components: - type: Transform pos: 10.5,-0.5 parent: 2 - - uid: 9758 + - uid: 9698 components: - type: Transform pos: 10.5,1.5 parent: 2 - - uid: 9759 + - uid: 9699 components: - type: Transform pos: 11.5,1.5 parent: 2 - - uid: 9760 + - uid: 9700 components: - type: Transform pos: 12.5,1.5 parent: 2 - - uid: 9761 + - uid: 9701 components: - type: Transform pos: 13.5,1.5 parent: 2 - - uid: 9762 + - uid: 9702 components: - type: Transform pos: 14.5,1.5 parent: 2 - - uid: 9763 + - uid: 9703 components: - type: Transform pos: 14.5,2.5 parent: 2 - - uid: 9764 + - uid: 9704 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 9765 + - uid: 9705 components: - type: Transform pos: 9.5,1.5 parent: 2 - - uid: 9766 + - uid: 9706 components: - type: Transform pos: 8.5,1.5 parent: 2 - - uid: 9767 + - uid: 9707 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 9768 + - uid: 9708 components: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 9769 + - uid: 9709 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 9770 + - uid: 9710 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 9771 + - uid: 9711 components: - type: Transform pos: 9.5,5.5 parent: 2 - - uid: 9772 + - uid: 9712 components: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 9773 + - uid: 9713 components: - type: Transform pos: 10.5,6.5 parent: 2 - - uid: 9774 + - uid: 9714 components: - type: Transform pos: 10.5,7.5 parent: 2 - - uid: 9775 + - uid: 9715 components: - type: Transform pos: 10.5,8.5 parent: 2 - - uid: 9776 + - uid: 9716 components: - type: Transform pos: 10.5,9.5 parent: 2 - - uid: 9777 + - uid: 9717 components: - type: Transform pos: 10.5,10.5 parent: 2 - - uid: 9778 + - uid: 9718 components: - type: Transform pos: 10.5,11.5 parent: 2 - - uid: 9779 + - uid: 9719 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 9780 + - uid: 9720 components: - type: Transform pos: 9.5,11.5 parent: 2 - - uid: 9781 + - uid: 9721 components: - type: Transform pos: 8.5,11.5 parent: 2 - - uid: 9782 + - uid: 9722 components: - type: Transform pos: 8.5,12.5 parent: 2 - - uid: 9783 + - uid: 9723 components: - type: Transform pos: 8.5,13.5 parent: 2 - - uid: 9784 + - uid: 9724 components: - type: Transform pos: 8.5,14.5 parent: 2 - - uid: 9785 + - uid: 9725 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 9786 + - uid: 9726 components: - type: Transform pos: 10.5,14.5 parent: 2 - - uid: 9787 + - uid: 9727 components: - type: Transform pos: 11.5,14.5 parent: 2 - - uid: 9788 + - uid: 9728 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 9789 + - uid: 9729 components: - type: Transform pos: 11.5,16.5 parent: 2 - - uid: 9790 + - uid: 9730 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 9791 + - uid: 9731 components: - type: Transform pos: -4.5,16.5 parent: 2 - - uid: 9792 + - uid: 9732 components: - type: Transform pos: -3.5,16.5 parent: 2 - - uid: 9793 + - uid: 9733 components: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 9794 + - uid: 9734 components: - type: Transform pos: -1.5,16.5 parent: 2 - - uid: 9795 + - uid: 9735 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 9796 + - uid: 9736 components: - type: Transform pos: 0.49999997,16.5 parent: 2 - - uid: 9797 + - uid: 9737 components: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 9798 + - uid: 9738 components: - type: Transform pos: 2.5,16.5 parent: 2 - - uid: 9799 + - uid: 9739 components: - type: Transform pos: 3.5,16.5 parent: 2 - - uid: 9800 + - uid: 9740 components: - type: Transform pos: 3.5,15.5 parent: 2 - - uid: 9801 + - uid: 9741 components: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 9802 + - uid: 9742 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 9803 + - uid: 9743 components: - type: Transform pos: 5.5,14.5 parent: 2 - - uid: 9804 + - uid: 9744 components: - type: Transform pos: 6.5,14.5 parent: 2 - - uid: 9805 + - uid: 9745 components: - type: Transform pos: 7.5,14.5 parent: 2 - - uid: 9806 + - uid: 9746 components: - type: Transform pos: -4.5,15.5 parent: 2 - - uid: 9807 + - uid: 9747 components: - type: Transform pos: -4.5,14.5 parent: 2 - - uid: 9808 + - uid: 9748 components: - type: Transform pos: -5.5,14.5 parent: 2 - - uid: 9809 + - uid: 9749 components: - type: Transform pos: -6.5,14.5 parent: 2 - - uid: 9810 + - uid: 9750 components: - type: Transform pos: -7.5,14.5 parent: 2 - - uid: 9811 + - uid: 9751 components: - type: Transform pos: -8.5,14.5 parent: 2 - - uid: 9812 + - uid: 9752 components: - type: Transform pos: -9.5,14.5 parent: 2 - - uid: 9813 + - uid: 9753 components: - type: Transform pos: -9.5,13.5 parent: 2 - - uid: 9814 + - uid: 9754 components: - type: Transform pos: -9.5,12.5 parent: 2 - - uid: 9815 + - uid: 9755 components: - type: Transform pos: -9.5,11.5 parent: 2 - - uid: 9816 + - uid: 9756 components: - type: Transform pos: -10.5,11.5 parent: 2 - - uid: 9817 + - uid: 9757 components: - type: Transform pos: -11.5,11.5 parent: 2 - - uid: 9818 + - uid: 9758 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 9819 + - uid: 9759 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 9820 + - uid: 9760 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 9821 + - uid: 9761 components: - type: Transform pos: -10.5,7.5 parent: 2 - - uid: 9822 + - uid: 9762 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 9823 + - uid: 9763 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 9824 + - uid: 9764 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 9825 + - uid: 9765 components: - type: Transform pos: -10.5,6.5 parent: 2 - - uid: 9826 + - uid: 9766 components: - type: Transform pos: -10.5,5.5 parent: 2 - - uid: 9827 + - uid: 9767 components: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 9828 + - uid: 9768 components: - type: Transform pos: -12.5,5.5 parent: 2 - - uid: 9829 + - uid: 9769 components: - type: Transform pos: -0.5,9.5 parent: 2 - - uid: 9830 + - uid: 9770 components: - type: Transform pos: -0.5,8.5 parent: 2 - - uid: 9831 + - uid: 9771 components: - type: Transform pos: -0.5,7.5 parent: 2 - - uid: 9832 + - uid: 9772 components: - type: Transform pos: -0.5,6.5 parent: 2 - - uid: 9833 + - uid: 9773 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 9834 + - uid: 9774 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 9835 + - uid: 9775 components: - type: Transform pos: -0.5,3.5 parent: 2 - - uid: 9836 + - uid: 9776 components: - type: Transform pos: -0.5,2.5 parent: 2 - - uid: 9837 + - uid: 9777 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 9838 + - uid: 9778 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 9839 + - uid: 9779 components: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 9840 + - uid: 9780 components: - type: Transform pos: -0.5,-1.5 parent: 2 - - uid: 9841 + - uid: 9781 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 9842 + - uid: 9782 components: - type: Transform pos: -0.5,-3.5 parent: 2 - - uid: 9843 + - uid: 9783 components: - type: Transform pos: -0.5,-4.5 parent: 2 - - uid: 9844 + - uid: 9784 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 9845 + - uid: 9785 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 9846 + - uid: 9786 components: - type: Transform pos: -0.5,-7.5 parent: 2 - - uid: 9847 + - uid: 9787 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 9848 + - uid: 9788 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 9849 + - uid: 9789 components: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 9850 + - uid: 9790 components: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 9851 + - uid: 9791 components: - type: Transform pos: 8.5,-11.5 parent: 2 - - uid: 9852 + - uid: 9792 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 9853 + - uid: 9793 components: - type: Transform pos: -10.5,3.5 parent: 2 - - uid: 9854 + - uid: 9794 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 9855 + - uid: 9795 components: - type: Transform pos: -10.5,2.5 parent: 2 - - uid: 9856 + - uid: 9796 components: - type: Transform pos: -10.5,1.5 parent: 2 - - uid: 9857 + - uid: 9797 components: - type: Transform pos: -10.5,0.5 parent: 2 - - uid: 9858 + - uid: 9798 components: - type: Transform pos: -10.5,-0.5 parent: 2 - - uid: 9859 + - uid: 9799 components: - type: Transform pos: -9.5,-0.5 parent: 2 - - uid: 9860 + - uid: 9800 components: - type: Transform pos: -9.5,-1.5 parent: 2 - - uid: 9861 + - uid: 9801 components: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 9862 + - uid: 9802 components: - type: Transform pos: -9.5,-3.5 parent: 2 - - uid: 9863 + - uid: 9803 components: - type: Transform pos: -9.5,-4.5 parent: 2 - - uid: 9864 + - uid: 9804 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 9865 + - uid: 9805 components: - type: Transform pos: -9.5,-6.5 parent: 2 - - uid: 9866 + - uid: 9806 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 9867 + - uid: 9807 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 9868 + - uid: 9808 components: - type: Transform pos: -9.5,-9.5 parent: 2 - - uid: 9869 + - uid: 9809 components: - type: Transform pos: -10.5,-11.5 parent: 2 - - uid: 9870 + - uid: 9810 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 9871 + - uid: 9811 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 9872 + - uid: 9812 components: - type: Transform pos: 8.5,-6.5 parent: 2 - - uid: 9873 + - uid: 9813 components: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 9874 + - uid: 9814 components: - type: Transform pos: 8.5,-4.5 parent: 2 - - uid: 9875 + - uid: 9815 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 9876 + - uid: 9816 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 9877 + - uid: 9817 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 9878 + - uid: 9818 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 9879 + - uid: 9819 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 9880 + - uid: 9820 components: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 9881 + - uid: 9821 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 9882 + - uid: 9822 components: - type: Transform pos: 6.5,-8.5 parent: 2 - - uid: 9883 + - uid: 9823 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 9884 + - uid: 9824 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 9885 + - uid: 9825 components: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 9886 + - uid: 9826 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 9887 + - uid: 9827 components: - type: Transform pos: -7.5,-8.5 parent: 2 - - uid: 9888 + - uid: 9828 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 9889 + - uid: 9829 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 9890 + - uid: 9830 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 9891 + - uid: 9831 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 9892 + - uid: 9832 components: - type: Transform pos: 0.50000006,-13.5 parent: 2 - - uid: 9893 + - uid: 9833 components: - type: Transform pos: 0.49999997,-12.5 parent: 2 - - uid: 9894 + - uid: 9834 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 9895 + - uid: 9835 components: - type: Transform pos: -39.5,-6.5 parent: 2 - - uid: 9896 + - uid: 9836 components: - type: Transform pos: -39.5,-5.5 parent: 2 - - uid: 9897 + - uid: 9837 components: - type: Transform pos: -39.5,-4.5 parent: 2 - - uid: 9898 + - uid: 9838 components: - type: Transform pos: -39.5,-2.5 parent: 2 - - uid: 9899 + - uid: 9839 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 9900 + - uid: 9840 components: - type: Transform pos: -39.5,-0.5 parent: 2 - - uid: 9901 + - uid: 9841 components: - type: Transform pos: -38.5,-1.5 parent: 2 - - uid: 9902 + - uid: 9842 components: - type: Transform pos: -37.5,-1.5 parent: 2 - - uid: 9903 + - uid: 9843 components: - type: Transform pos: -36.5,-1.5 parent: 2 - - uid: 9904 + - uid: 9844 components: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 9905 + - uid: 9845 components: - type: Transform pos: -36.5,-3.5 parent: 2 - - uid: 9906 + - uid: 9846 components: - type: Transform pos: -35.5,-3.5 parent: 2 - - uid: 9907 + - uid: 9847 components: - type: Transform pos: -34.5,-3.5 parent: 2 - - uid: 9908 + - uid: 9848 components: - type: Transform pos: -33.5,-3.5 parent: 2 - - uid: 9909 + - uid: 9849 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 9910 + - uid: 9850 components: - type: Transform pos: -26.5,-0.5 parent: 2 - - uid: 9911 + - uid: 9851 components: - type: Transform pos: -26.5,-1.5 parent: 2 - - uid: 9912 + - uid: 9852 components: - type: Transform pos: -27.5,-1.5 parent: 2 - - uid: 9913 + - uid: 9853 components: - type: Transform pos: -28.5,-1.5 parent: 2 - - uid: 9914 + - uid: 9854 components: - type: Transform pos: -29.5,-1.5 parent: 2 - - uid: 9915 + - uid: 9855 components: - type: Transform pos: -30.5,-1.5 parent: 2 - - uid: 9916 + - uid: 9856 components: - type: Transform pos: -31.5,-1.5 parent: 2 - - uid: 9917 + - uid: 9857 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 9918 + - uid: 9858 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 9919 + - uid: 9859 components: - type: Transform pos: -28.5,-2.5 parent: 2 - - uid: 9920 + - uid: 9860 components: - type: Transform pos: -28.5,-3.5 parent: 2 - - uid: 9921 + - uid: 9861 components: - type: Transform pos: -28.5,-4.5 parent: 2 - - uid: 9922 + - uid: 9862 components: - type: Transform pos: -28.5,-5.5 parent: 2 - - uid: 9923 + - uid: 9863 components: - type: Transform pos: -27.5,-5.5 parent: 2 - - uid: 9924 + - uid: 9864 components: - type: Transform pos: -26.5,-5.5 parent: 2 - - uid: 9925 + - uid: 9865 components: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 9926 + - uid: 9866 components: - type: Transform pos: -24.5,-5.5 parent: 2 - - uid: 9927 + - uid: 9867 components: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 9928 + - uid: 9868 components: - type: Transform pos: -23.5,-6.5 parent: 2 - - uid: 9929 + - uid: 9869 components: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 9930 + - uid: 9870 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 9931 + - uid: 9871 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 9932 + - uid: 9872 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 9933 + - uid: 9873 components: - type: Transform pos: -22.5,-10.5 parent: 2 - - uid: 9934 + - uid: 9874 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 9935 + - uid: 9875 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 9936 + - uid: 9876 components: - type: Transform pos: -22.5,-13.5 parent: 2 - - uid: 9937 + - uid: 9877 components: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 9938 + - uid: 9878 components: - type: Transform pos: -22.5,-15.5 parent: 2 - - uid: 9939 + - uid: 9879 components: - type: Transform pos: -23.5,-15.5 parent: 2 - - uid: 9940 + - uid: 9880 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 9941 + - uid: 9881 components: - type: Transform pos: 32.5,28.5 parent: 2 - - uid: 9942 + - uid: 9882 components: - type: Transform pos: -31.5,37.5 parent: 2 - - uid: 9943 + - uid: 9883 components: - type: Transform pos: -37.5,62.5 parent: 2 - - uid: 9944 + - uid: 9884 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 9945 + - uid: 9885 components: - type: Transform pos: 77.5,-42.5 parent: 2 - - uid: 9946 + - uid: 9886 components: - type: Transform pos: 78.5,-42.5 parent: 2 - - uid: 9947 + - uid: 9887 components: - type: Transform pos: 79.5,-42.5 parent: 2 - - uid: 9948 + - uid: 9888 components: - type: Transform pos: 71.5,-14.5 parent: 2 - - uid: 9949 + - uid: 9889 components: - type: Transform pos: 71.5,-15.5 parent: 2 - - uid: 9950 + - uid: 9890 components: - type: Transform pos: 71.5,-16.5 parent: 2 - - uid: 9951 + - uid: 9891 components: - type: Transform pos: 71.5,-17.5 parent: 2 - - uid: 9952 + - uid: 9892 components: - type: Transform pos: 71.5,-18.5 parent: 2 - - uid: 9953 + - uid: 9893 components: - type: Transform pos: 70.5,-18.5 parent: 2 - - uid: 9954 + - uid: 9894 components: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 9955 + - uid: 9895 components: - type: Transform pos: 68.5,-18.5 parent: 2 - - uid: 9956 + - uid: 9896 components: - type: Transform pos: 67.5,-18.5 parent: 2 - - uid: 9957 + - uid: 9897 components: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 9958 + - uid: 9898 components: - type: Transform pos: 65.5,-18.5 parent: 2 - - uid: 9959 + - uid: 9899 components: - type: Transform pos: 64.5,-18.5 parent: 2 - - uid: 9960 + - uid: 9900 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 9981 + - uid: 9901 components: - type: Transform pos: -26.5,27.5 parent: 2 - - uid: 9982 + - uid: 9902 components: - type: Transform pos: -26.5,26.5 parent: 2 - - uid: 9983 + - uid: 9903 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 9984 + - uid: 9904 components: - type: Transform pos: -27.5,25.5 parent: 2 - - uid: 9985 + - uid: 9905 components: - type: Transform pos: -28.5,25.5 parent: 2 - - uid: 9986 + - uid: 9906 components: - type: Transform pos: -28.5,24.5 parent: 2 - - uid: 9987 + - uid: 9907 components: - type: Transform pos: -28.5,23.5 parent: 2 - - uid: 9988 + - uid: 9908 components: - type: Transform pos: -29.5,23.5 parent: 2 - - uid: 9989 + - uid: 9909 components: - type: Transform pos: -30.5,23.5 parent: 2 - - uid: 9990 + - uid: 9910 components: - type: Transform pos: -31.5,23.5 parent: 2 - - uid: 9991 + - uid: 9911 components: - type: Transform pos: -32.5,23.5 parent: 2 - - uid: 9992 + - uid: 9912 components: - type: Transform pos: -33.5,23.5 parent: 2 - - uid: 9993 + - uid: 9913 components: - type: Transform pos: -34.5,23.5 parent: 2 - - uid: 9994 + - uid: 9914 components: - type: Transform pos: -35.5,23.5 parent: 2 - - uid: 9995 + - uid: 9915 components: - type: Transform pos: -35.5,24.5 parent: 2 - - uid: 9996 + - uid: 9916 components: - type: Transform pos: -35.5,25.5 parent: 2 - - uid: 9997 + - uid: 9917 components: - type: Transform pos: -35.5,26.5 parent: 2 - - uid: 9998 + - uid: 9918 components: - type: Transform pos: -34.5,26.5 parent: 2 - - uid: 9999 + - uid: 9919 components: - type: Transform pos: -33.5,26.5 parent: 2 - - uid: 10000 + - uid: 9920 components: - type: Transform pos: -32.5,26.5 parent: 2 - - uid: 10001 + - uid: 9921 components: - type: Transform pos: -31.5,26.5 parent: 2 - - uid: 10002 + - uid: 9922 components: - type: Transform pos: -30.5,26.5 parent: 2 - - uid: 10003 + - uid: 9923 components: - type: Transform pos: -30.5,27.5 parent: 2 - - uid: 10004 + - uid: 9924 components: - type: Transform pos: -30.5,28.5 parent: 2 - - uid: 10005 + - uid: 9925 components: - type: Transform pos: -30.5,29.5 parent: 2 - - uid: 10006 + - uid: 9926 components: - type: Transform pos: -30.5,30.5 parent: 2 - - uid: 10007 + - uid: 9927 components: - type: Transform pos: -30.5,31.5 parent: 2 - - uid: 10008 + - uid: 9928 components: - type: Transform pos: -30.5,32.5 parent: 2 - - uid: 10009 + - uid: 9929 components: - type: Transform pos: -30.5,33.5 parent: 2 - - uid: 10010 + - uid: 9930 components: - type: Transform pos: -30.5,34.5 parent: 2 - - uid: 10011 + - uid: 9931 components: - type: Transform pos: -30.5,35.5 parent: 2 - - uid: 10012 + - uid: 9932 components: - type: Transform pos: -30.5,36.5 parent: 2 - - uid: 10013 + - uid: 9933 components: - type: Transform pos: -30.5,37.5 parent: 2 - - uid: 10014 + - uid: 9934 components: - type: Transform pos: -32.5,38.5 parent: 2 - - uid: 10015 + - uid: 9935 components: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 10016 + - uid: 9936 components: - type: Transform pos: -29.5,37.5 parent: 2 - - uid: 10017 + - uid: 9937 components: - type: Transform pos: -29.5,38.5 parent: 2 - - uid: 10018 + - uid: 9938 components: - type: Transform pos: -29.5,39.5 parent: 2 - - uid: 10019 + - uid: 9939 components: - type: Transform pos: -29.5,40.5 parent: 2 - - uid: 10020 + - uid: 9940 components: - type: Transform pos: -29.5,41.5 parent: 2 - - uid: 10021 + - uid: 9941 components: - type: Transform pos: -29.5,42.5 parent: 2 - - uid: 10022 + - uid: 9942 components: - type: Transform pos: -28.5,42.5 parent: 2 - - uid: 10023 + - uid: 9943 components: - type: Transform pos: -28.5,43.5 parent: 2 - - uid: 10024 + - uid: 9944 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 10025 + - uid: 9945 components: - type: Transform pos: -30.5,42.5 parent: 2 - - uid: 10026 + - uid: 9946 components: - type: Transform pos: -31.5,42.5 parent: 2 - - uid: 10027 + - uid: 9947 components: - type: Transform pos: -31.5,43.5 parent: 2 - - uid: 10028 + - uid: 9948 components: - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 10029 + - uid: 9949 components: - type: Transform pos: -33.5,30.5 parent: 2 - - uid: 10030 + - uid: 9950 components: - type: Transform pos: -33.5,29.5 parent: 2 - - uid: 10031 + - uid: 9951 components: - type: Transform pos: -33.5,28.5 parent: 2 - - uid: 10032 + - uid: 9952 components: - type: Transform pos: -33.5,27.5 parent: 2 - - uid: 10033 + - uid: 9953 components: - type: Transform pos: -41.5,39.5 parent: 2 - - uid: 10034 + - uid: 9954 components: - type: Transform pos: -42.5,39.5 parent: 2 - - uid: 10035 + - uid: 9955 components: - type: Transform pos: -43.5,39.5 parent: 2 - - uid: 10036 + - uid: 9956 components: - type: Transform pos: -44.5,39.5 parent: 2 - - uid: 10037 + - uid: 9957 components: - type: Transform pos: -44.5,38.5 parent: 2 - - uid: 10038 + - uid: 9958 components: - type: Transform pos: -44.5,37.5 parent: 2 - - uid: 10039 + - uid: 9959 components: - type: Transform pos: -43.5,37.5 parent: 2 - - uid: 10040 + - uid: 9960 components: - type: Transform pos: -42.5,37.5 parent: 2 - - uid: 10041 + - uid: 9961 components: - type: Transform pos: -42.5,36.5 parent: 2 - - uid: 10042 + - uid: 9962 components: - type: Transform pos: -42.5,35.5 parent: 2 - - uid: 10043 + - uid: 9963 components: - type: Transform pos: -42.5,34.5 parent: 2 - - uid: 10044 + - uid: 9964 components: - type: Transform pos: -41.5,34.5 parent: 2 - - uid: 10045 + - uid: 9965 components: - type: Transform pos: -40.5,34.5 parent: 2 - - uid: 10046 + - uid: 9966 components: - type: Transform pos: -39.5,34.5 parent: 2 - - uid: 10047 + - uid: 9967 components: - type: Transform pos: -38.5,34.5 parent: 2 - - uid: 10048 + - uid: 9968 components: - type: Transform pos: -38.5,35.5 parent: 2 - - uid: 10049 + - uid: 9969 components: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 10050 + - uid: 9970 components: - type: Transform pos: -42.5,33.5 parent: 2 - - uid: 10051 + - uid: 9971 components: - type: Transform pos: -42.5,32.5 parent: 2 - - uid: 10052 + - uid: 9972 components: - type: Transform pos: -42.5,31.5 parent: 2 - - uid: 10053 + - uid: 9973 components: - type: Transform pos: -42.5,30.5 parent: 2 - - uid: 10054 + - uid: 9974 components: - type: Transform pos: -42.5,29.5 parent: 2 - - uid: 10055 + - uid: 9975 components: - type: Transform pos: -42.5,28.5 parent: 2 - - uid: 10056 + - uid: 9976 components: - type: Transform pos: -41.5,28.5 parent: 2 - - uid: 10057 + - uid: 9977 components: - type: Transform pos: -40.5,28.5 parent: 2 - - uid: 10058 + - uid: 9978 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 10059 + - uid: 9979 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 10060 + - uid: 9980 components: - type: Transform pos: -41.5,37.5 parent: 2 - - uid: 10061 + - uid: 9981 components: - type: Transform pos: -39.5,37.5 parent: 2 - - uid: 10062 + - uid: 9982 components: - type: Transform pos: -40.5,37.5 parent: 2 - - uid: 10063 + - uid: 9983 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 10064 + - uid: 9984 components: - type: Transform pos: -33.5,57.5 parent: 2 - - uid: 10065 + - uid: 9985 components: - type: Transform pos: -32.5,57.5 parent: 2 - - uid: 10066 + - uid: 9986 components: - type: Transform pos: -31.5,57.5 parent: 2 - - uid: 10067 + - uid: 9987 components: - type: Transform pos: -30.5,57.5 parent: 2 - - uid: 10068 + - uid: 9988 components: - type: Transform pos: -29.5,57.5 parent: 2 - - uid: 10069 + - uid: 9989 components: - type: Transform pos: -28.5,57.5 parent: 2 - - uid: 10070 + - uid: 9990 components: - type: Transform pos: -27.5,57.5 parent: 2 - - uid: 10071 + - uid: 9991 components: - type: Transform pos: -26.5,66.5 parent: 2 - - uid: 10072 + - uid: 9992 components: - type: Transform pos: -26.5,65.5 parent: 2 - - uid: 10073 + - uid: 9993 components: - type: Transform pos: -26.5,64.5 parent: 2 - - uid: 10074 + - uid: 9994 components: - type: Transform pos: -26.5,63.5 parent: 2 - - uid: 10075 + - uid: 9995 components: - type: Transform pos: -26.5,62.5 parent: 2 - - uid: 10076 + - uid: 9996 components: - type: Transform pos: -26.5,61.5 parent: 2 - - uid: 10077 + - uid: 9997 components: - type: Transform pos: -26.5,60.5 parent: 2 - - uid: 10078 + - uid: 9998 components: - type: Transform pos: -27.5,60.5 parent: 2 - - uid: 10079 + - uid: 9999 components: - type: Transform pos: -27.5,59.5 parent: 2 - - uid: 10080 + - uid: 10000 components: - type: Transform pos: -27.5,58.5 parent: 2 - - uid: 10081 + - uid: 10001 components: - type: Transform pos: -30.5,66.5 parent: 2 - - uid: 10082 + - uid: 10002 components: - type: Transform pos: -30.5,65.5 parent: 2 - - uid: 10083 + - uid: 10003 components: - type: Transform pos: -30.5,64.5 parent: 2 - - uid: 10084 + - uid: 10004 components: - type: Transform pos: -30.5,63.5 parent: 2 - - uid: 10085 + - uid: 10005 components: - type: Transform pos: -30.5,62.5 parent: 2 - - uid: 10086 + - uid: 10006 components: - type: Transform pos: -30.5,61.5 parent: 2 - - uid: 10087 + - uid: 10007 components: - type: Transform pos: -30.5,60.5 parent: 2 - - uid: 10088 + - uid: 10008 components: - type: Transform pos: -30.5,59.5 parent: 2 - - uid: 10089 + - uid: 10009 components: - type: Transform pos: -30.5,58.5 parent: 2 - - uid: 10090 + - uid: 10010 components: - type: Transform pos: -31.5,83.5 parent: 2 - - uid: 10091 + - uid: 10011 components: - type: Transform pos: -30.5,83.5 parent: 2 - - uid: 10092 + - uid: 10012 components: - type: Transform pos: -29.5,83.5 parent: 2 - - uid: 10093 + - uid: 10013 components: - type: Transform pos: -29.5,82.5 parent: 2 - - uid: 10094 + - uid: 10014 components: - type: Transform pos: -29.5,81.5 parent: 2 - - uid: 10095 + - uid: 10015 components: - type: Transform pos: -29.5,80.5 parent: 2 - - uid: 10096 + - uid: 10016 components: - type: Transform pos: -29.5,79.5 parent: 2 - - uid: 10097 + - uid: 10017 components: - type: Transform pos: -29.5,78.5 parent: 2 - - uid: 10098 + - uid: 10018 components: - type: Transform pos: -29.5,77.5 parent: 2 - - uid: 10099 + - uid: 10019 components: - type: Transform pos: -29.5,76.5 parent: 2 - - uid: 10100 + - uid: 10020 components: - type: Transform pos: -29.5,75.5 parent: 2 - - uid: 10101 + - uid: 10021 components: - type: Transform pos: -29.5,74.5 parent: 2 - - uid: 10102 + - uid: 10022 components: - type: Transform pos: -29.5,73.5 parent: 2 - - uid: 10103 + - uid: 10023 components: - type: Transform pos: -29.5,72.5 parent: 2 - - uid: 10104 + - uid: 10024 components: - type: Transform pos: -29.5,71.5 parent: 2 - - uid: 10105 + - uid: 10025 components: - type: Transform pos: -29.5,70.5 parent: 2 - - uid: 10106 + - uid: 10026 components: - type: Transform pos: -29.5,69.5 parent: 2 - - uid: 10107 + - uid: 10027 components: - type: Transform pos: -29.5,68.5 parent: 2 - - uid: 10108 + - uid: 10028 components: - type: Transform pos: -28.5,68.5 parent: 2 - - uid: 10109 + - uid: 10029 components: - type: Transform pos: -27.5,68.5 parent: 2 - - uid: 10110 + - uid: 10030 components: - type: Transform pos: -26.5,68.5 parent: 2 - - uid: 10111 + - uid: 10031 components: - type: Transform pos: -25.5,68.5 parent: 2 - - uid: 10112 + - uid: 10032 components: - type: Transform pos: -24.5,68.5 parent: 2 - - uid: 10113 + - uid: 10033 components: - type: Transform pos: -23.5,68.5 parent: 2 - - uid: 10114 + - uid: 10034 components: - type: Transform pos: -22.5,68.5 parent: 2 - - uid: 10115 + - uid: 10035 components: - type: Transform pos: -21.5,68.5 parent: 2 - - uid: 10116 + - uid: 10036 components: - type: Transform pos: -20.5,68.5 parent: 2 - - uid: 10117 + - uid: 10037 components: - type: Transform pos: -19.5,68.5 parent: 2 - - uid: 10118 + - uid: 10038 components: - type: Transform pos: -18.5,68.5 parent: 2 - - uid: 10119 + - uid: 10039 components: - type: Transform pos: -17.5,68.5 parent: 2 - - uid: 10120 + - uid: 10040 components: - type: Transform pos: -16.5,68.5 parent: 2 - - uid: 10121 + - uid: 10041 components: - type: Transform pos: -15.5,68.5 parent: 2 - - uid: 10122 + - uid: 10042 components: - type: Transform pos: -14.5,68.5 parent: 2 - - uid: 10123 + - uid: 10043 components: - type: Transform pos: -13.5,68.5 parent: 2 - - uid: 10124 + - uid: 10044 components: - type: Transform pos: -12.5,68.5 parent: 2 - - uid: 10125 + - uid: 10045 components: - type: Transform pos: -11.5,68.5 parent: 2 - - uid: 10126 + - uid: 10046 components: - type: Transform pos: -11.5,69.5 parent: 2 - - uid: 10127 + - uid: 10047 components: - type: Transform pos: -11.5,70.5 parent: 2 - - uid: 10128 + - uid: 10048 components: - type: Transform pos: -11.5,71.5 parent: 2 - - uid: 10129 + - uid: 10049 components: - type: Transform pos: -11.5,72.5 parent: 2 - - uid: 10130 + - uid: 10050 components: - type: Transform pos: -11.5,73.5 parent: 2 - - uid: 10131 + - uid: 10051 components: - type: Transform pos: -11.5,74.5 parent: 2 - - uid: 10132 + - uid: 10052 components: - type: Transform pos: -11.5,75.5 parent: 2 - - uid: 10133 + - uid: 10053 components: - type: Transform pos: -11.5,76.5 parent: 2 - - uid: 10134 + - uid: 10054 components: - type: Transform pos: -11.5,77.5 parent: 2 - - uid: 10135 + - uid: 10055 components: - type: Transform pos: -11.5,78.5 parent: 2 - - uid: 10136 + - uid: 10056 components: - type: Transform pos: -11.5,79.5 parent: 2 - - uid: 10137 + - uid: 10057 components: - type: Transform pos: -11.5,80.5 parent: 2 - - uid: 10138 + - uid: 10058 components: - type: Transform pos: -11.5,81.5 parent: 2 - - uid: 10139 + - uid: 10059 components: - type: Transform pos: -11.5,82.5 parent: 2 - - uid: 10140 + - uid: 10060 components: - type: Transform pos: -11.5,83.5 parent: 2 - - uid: 10141 + - uid: 10061 components: - type: Transform pos: -12.5,83.5 parent: 2 - - uid: 10142 + - uid: 10062 components: - type: Transform pos: -13.5,83.5 parent: 2 - - uid: 10143 + - uid: 10063 components: - type: Transform pos: 2.5,64.5 parent: 2 - - uid: 10144 + - uid: 10064 components: - type: Transform pos: 3.5,64.5 parent: 2 - - uid: 10145 + - uid: 10065 components: - type: Transform pos: 4.5,64.5 parent: 2 - - uid: 10146 + - uid: 10066 components: - type: Transform pos: 5.5,64.5 parent: 2 - - uid: 10147 + - uid: 10067 components: - type: Transform pos: 6.5,64.5 parent: 2 - - uid: 10148 + - uid: 10068 components: - type: Transform pos: 6.5,65.5 parent: 2 - - uid: 10149 + - uid: 10069 components: - type: Transform pos: 6.5,66.5 parent: 2 - - uid: 10150 + - uid: 10070 components: - type: Transform pos: 6.5,67.5 parent: 2 - - uid: 10151 + - uid: 10071 components: - type: Transform pos: 6.5,68.5 parent: 2 - - uid: 10152 + - uid: 10072 components: - type: Transform pos: 5.5,68.5 parent: 2 - - uid: 10153 + - uid: 10073 components: - type: Transform pos: 4.5,68.5 parent: 2 - - uid: 10154 + - uid: 10074 components: - type: Transform pos: 3.5,68.5 parent: 2 - - uid: 10155 + - uid: 10075 components: - type: Transform pos: 2.5,68.5 parent: 2 - - uid: 10156 + - uid: 10076 components: - type: Transform pos: 1.5,68.5 parent: 2 - - uid: 10157 + - uid: 10077 components: - type: Transform pos: 0.49999997,68.5 parent: 2 - - uid: 10158 + - uid: 10078 components: - type: Transform pos: -0.5,68.5 parent: 2 - - uid: 10159 + - uid: 10079 components: - type: Transform pos: -1.5,68.5 parent: 2 - - uid: 10160 + - uid: 10080 components: - type: Transform pos: -2.5,68.5 parent: 2 - - uid: 10161 + - uid: 10081 components: - type: Transform pos: -3.5,68.5 parent: 2 - - uid: 10162 + - uid: 10082 components: - type: Transform pos: -4.5,68.5 parent: 2 - - uid: 10163 + - uid: 10083 components: - type: Transform pos: -5.5,68.5 parent: 2 - - uid: 10164 + - uid: 10084 components: - type: Transform pos: -6.5,68.5 parent: 2 - - uid: 10165 + - uid: 10085 components: - type: Transform pos: -7.5,68.5 parent: 2 - - uid: 10166 + - uid: 10086 components: - type: Transform pos: -8.5,68.5 parent: 2 - - uid: 10167 + - uid: 10087 components: - type: Transform pos: -9.5,68.5 parent: 2 - - uid: 10168 + - uid: 10088 components: - type: Transform pos: -10.5,68.5 parent: 2 - - uid: 10169 + - uid: 10089 components: - type: Transform pos: -11.5,68.5 parent: 2 - - uid: 10170 + - uid: 10090 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 10171 + - uid: 10091 components: - type: Transform pos: -4.5,67.5 parent: 2 - - uid: 10172 + - uid: 10092 components: - type: Transform pos: -4.5,66.5 parent: 2 - - uid: 10173 + - uid: 10093 components: - type: Transform pos: -4.5,65.5 parent: 2 - - uid: 10174 + - uid: 10094 components: - type: Transform pos: -4.5,64.5 parent: 2 - - uid: 10175 + - uid: 10095 components: - type: Transform pos: -4.5,63.5 parent: 2 - - uid: 10176 + - uid: 10096 components: - type: Transform pos: -4.5,62.5 parent: 2 - - uid: 10177 + - uid: 10097 components: - type: Transform pos: -4.5,61.5 parent: 2 - - uid: 10178 + - uid: 10098 components: - type: Transform pos: -4.5,60.5 parent: 2 - - uid: 10179 + - uid: 10099 components: - type: Transform pos: -4.5,59.5 parent: 2 - - uid: 10180 + - uid: 10100 components: - type: Transform pos: -4.5,58.5 parent: 2 - - uid: 10181 + - uid: 10101 components: - type: Transform pos: -4.5,57.5 parent: 2 - - uid: 10182 + - uid: 10102 components: - type: Transform pos: -3.5,57.5 parent: 2 - - uid: 10183 + - uid: 10103 components: - type: Transform pos: -2.5,57.5 parent: 2 - - uid: 10184 + - uid: 10104 components: - type: Transform pos: -1.5,57.5 parent: 2 - - uid: 10185 + - uid: 10105 components: - type: Transform pos: -0.5,57.5 parent: 2 - - uid: 10186 + - uid: 10106 components: - type: Transform pos: -0.5,58.5 parent: 2 - - uid: 10187 + - uid: 10107 components: - type: Transform pos: -0.5,59.5 parent: 2 - - uid: 10188 + - uid: 10108 components: - type: Transform pos: -31.5,44.5 parent: 2 - - uid: 10189 + - uid: 10109 components: - type: Transform pos: -31.5,45.5 parent: 2 - - uid: 10190 + - uid: 10110 components: - type: Transform pos: -31.5,46.5 parent: 2 - - uid: 10191 + - uid: 10111 components: - type: Transform pos: -30.5,46.5 parent: 2 - - uid: 10192 + - uid: 10112 components: - type: Transform pos: -29.5,46.5 parent: 2 - - uid: 10193 + - uid: 10113 components: - type: Transform pos: -28.5,46.5 parent: 2 - - uid: 10194 + - uid: 10114 components: - type: Transform pos: -27.5,46.5 parent: 2 - - uid: 10195 + - uid: 10115 components: - type: Transform pos: -26.5,46.5 parent: 2 - - uid: 10196 + - uid: 10116 components: - type: Transform pos: -26.5,47.5 parent: 2 - - uid: 10197 + - uid: 10117 components: - type: Transform pos: -25.5,47.5 parent: 2 - - uid: 10198 + - uid: 10118 components: - type: Transform pos: -25.5,48.5 parent: 2 - - uid: 10199 + - uid: 10119 components: - type: Transform pos: -25.5,49.5 parent: 2 - - uid: 10200 + - uid: 10120 components: - type: Transform pos: -25.5,50.5 parent: 2 - - uid: 10201 + - uid: 10121 components: - type: Transform pos: -25.5,51.5 parent: 2 - - uid: 10202 + - uid: 10122 components: - type: Transform pos: -25.5,52.5 parent: 2 - - uid: 10203 + - uid: 10123 components: - type: Transform pos: -25.5,53.5 parent: 2 - - uid: 10204 + - uid: 10124 components: - type: Transform pos: -24.5,53.5 parent: 2 - - uid: 10205 + - uid: 10125 components: - type: Transform pos: -24.5,54.5 parent: 2 - - uid: 10206 + - uid: 10126 components: - type: Transform pos: -32.5,46.5 parent: 2 - - uid: 10207 + - uid: 10127 components: - type: Transform pos: -33.5,46.5 parent: 2 - - uid: 10208 + - uid: 10128 components: - type: Transform pos: -33.5,47.5 parent: 2 - - uid: 10209 + - uid: 10129 components: - type: Transform pos: -33.5,48.5 parent: 2 - - uid: 10210 + - uid: 10130 components: - type: Transform pos: -33.5,49.5 parent: 2 - - uid: 10211 + - uid: 10131 components: - type: Transform pos: -34.5,49.5 parent: 2 - - uid: 10212 + - uid: 10132 components: - type: Transform pos: -35.5,49.5 parent: 2 - - uid: 10213 + - uid: 10133 components: - type: Transform pos: -36.5,49.5 parent: 2 - - uid: 10214 + - uid: 10134 components: - type: Transform pos: -37.5,49.5 parent: 2 - - uid: 10215 + - uid: 10135 components: - type: Transform pos: -36.5,50.5 parent: 2 - - uid: 10216 + - uid: 10136 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 10217 + - uid: 10137 components: - type: Transform pos: -36.5,56.5 parent: 2 - - uid: 10218 + - uid: 10138 components: - type: Transform pos: -36.5,55.5 parent: 2 - - uid: 10219 + - uid: 10139 components: - type: Transform pos: -36.5,54.5 parent: 2 - - uid: 10220 + - uid: 10140 components: - type: Transform pos: -37.5,54.5 parent: 2 - - uid: 10221 + - uid: 10141 components: - type: Transform pos: -38.5,54.5 parent: 2 - - uid: 10222 + - uid: 10142 components: - type: Transform pos: -39.5,54.5 parent: 2 - - uid: 10223 + - uid: 10143 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 10224 + - uid: 10144 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 10225 + - uid: 10145 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 10226 + - uid: 10146 components: - type: Transform pos: -15.5,52.5 parent: 2 - - uid: 10227 + - uid: 10147 components: - type: Transform pos: -16.5,52.5 parent: 2 - - uid: 10228 + - uid: 10148 components: - type: Transform pos: -17.5,52.5 parent: 2 - - uid: 10229 + - uid: 10149 components: - type: Transform pos: -18.5,52.5 parent: 2 - - uid: 10230 + - uid: 10150 components: - type: Transform pos: -18.5,51.5 parent: 2 - - uid: 10231 + - uid: 10151 components: - type: Transform pos: -18.5,50.5 parent: 2 - - uid: 10232 + - uid: 10152 components: - type: Transform pos: -18.5,49.5 parent: 2 - - uid: 10233 + - uid: 10153 components: - type: Transform pos: -18.5,48.5 parent: 2 - - uid: 10234 + - uid: 10154 components: - type: Transform pos: -18.5,47.5 parent: 2 - - uid: 10235 + - uid: 10155 components: - type: Transform pos: -18.5,46.5 parent: 2 - - uid: 10236 + - uid: 10156 components: - type: Transform pos: -19.5,46.5 parent: 2 - - uid: 10237 + - uid: 10157 components: - type: Transform pos: -20.5,46.5 parent: 2 - - uid: 10238 + - uid: 10158 components: - type: Transform pos: -21.5,46.5 parent: 2 - - uid: 10239 + - uid: 10159 components: - type: Transform pos: -21.5,45.5 parent: 2 - - uid: 10240 + - uid: 10160 components: - type: Transform pos: -21.5,44.5 parent: 2 - - uid: 10241 + - uid: 10161 components: - type: Transform pos: -21.5,43.5 parent: 2 - - uid: 10242 + - uid: 10162 components: - type: Transform pos: -21.5,42.5 parent: 2 - - uid: 10243 + - uid: 10163 components: - type: Transform pos: -21.5,41.5 parent: 2 - - uid: 10244 + - uid: 10164 components: - type: Transform pos: -21.5,40.5 parent: 2 - - uid: 10245 + - uid: 10165 components: - type: Transform pos: -21.5,39.5 parent: 2 - - uid: 10246 + - uid: 10166 components: - type: Transform pos: -21.5,38.5 parent: 2 - - uid: 10247 + - uid: 10167 components: - type: Transform pos: -21.5,37.5 parent: 2 - - uid: 10248 + - uid: 10168 components: - type: Transform pos: -21.5,36.5 parent: 2 - - uid: 10249 + - uid: 10169 components: - type: Transform pos: -20.5,36.5 parent: 2 - - uid: 10250 + - uid: 10170 components: - type: Transform pos: -19.5,36.5 parent: 2 - - uid: 10251 + - uid: 10171 components: - type: Transform pos: -18.5,36.5 parent: 2 - - uid: 10252 + - uid: 10172 components: - type: Transform pos: -18.5,35.5 parent: 2 - - uid: 10253 + - uid: 10173 components: - type: Transform pos: -18.5,34.5 parent: 2 - - uid: 10254 + - uid: 10174 components: - type: Transform pos: -18.5,33.5 parent: 2 - - uid: 10255 + - uid: 10175 components: - type: Transform pos: -18.5,32.5 parent: 2 - - uid: 10256 + - uid: 10176 components: - type: Transform pos: -18.5,31.5 parent: 2 - - uid: 10257 + - uid: 10177 components: - type: Transform pos: -18.5,30.5 parent: 2 - - uid: 10258 + - uid: 10178 components: - type: Transform pos: -18.5,29.5 parent: 2 - - uid: 10259 + - uid: 10179 components: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 10260 + - uid: 10180 components: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 10261 + - uid: 10181 components: - type: Transform pos: -18.5,26.5 parent: 2 - - uid: 10262 + - uid: 10182 components: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 10263 + - uid: 10183 components: - type: Transform pos: -20.5,26.5 parent: 2 - - uid: 10264 + - uid: 10184 components: - type: Transform pos: -21.5,26.5 parent: 2 - - uid: 10265 + - uid: 10185 components: - type: Transform pos: -22.5,26.5 parent: 2 - - uid: 10266 + - uid: 10186 components: - type: Transform pos: -23.5,26.5 parent: 2 - - uid: 10267 + - uid: 10187 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 10268 + - uid: 10188 components: - type: Transform pos: -24.5,25.5 parent: 2 - - uid: 10269 + - uid: 10189 components: - type: Transform pos: -25.5,25.5 parent: 2 - - uid: 10270 + - uid: 10190 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 10271 + - uid: 10191 components: - type: Transform pos: -30.5,22.5 parent: 2 - - uid: 10272 + - uid: 10192 components: - type: Transform pos: -30.5,21.5 parent: 2 - - uid: 10273 + - uid: 10193 components: - type: Transform pos: -30.5,20.5 parent: 2 - - uid: 10274 + - uid: 10194 components: - type: Transform pos: -30.5,19.5 parent: 2 - - uid: 10275 + - uid: 10195 components: - type: Transform pos: -30.5,18.5 parent: 2 - - uid: 10276 + - uid: 10196 components: - type: Transform pos: -30.5,17.5 parent: 2 - - uid: 10277 + - uid: 10197 components: - type: Transform pos: -29.5,17.5 parent: 2 - - uid: 10278 + - uid: 10198 components: - type: Transform pos: -28.5,17.5 parent: 2 - - uid: 10279 + - uid: 10199 components: - type: Transform pos: -27.5,17.5 parent: 2 - - uid: 10280 + - uid: 10200 components: - type: Transform pos: -26.5,17.5 parent: 2 - - uid: 10281 + - uid: 10201 components: - type: Transform pos: -25.5,17.5 parent: 2 - - uid: 10282 + - uid: 10202 components: - type: Transform pos: -24.5,17.5 parent: 2 - - uid: 10283 + - uid: 10203 components: - type: Transform pos: -24.5,18.5 parent: 2 - - uid: 10284 + - uid: 10204 components: - type: Transform pos: -24.5,19.5 parent: 2 - - uid: 10285 + - uid: 10205 components: - type: Transform pos: -24.5,20.5 parent: 2 - - uid: 10286 + - uid: 10206 components: - type: Transform pos: -25.5,20.5 parent: 2 - - uid: 10287 + - uid: 10207 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 10288 + - uid: 10208 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 10289 + - uid: 10209 components: - type: Transform pos: -27.5,21.5 parent: 2 - - uid: 10290 + - uid: 10210 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 10291 + - uid: 10211 components: - type: Transform pos: -25.5,16.5 parent: 2 - - uid: 10292 + - uid: 10212 components: - type: Transform pos: -25.5,15.5 parent: 2 - - uid: 10293 + - uid: 10213 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 10294 + - uid: 10214 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 10295 + - uid: 10215 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 10296 + - uid: 10216 components: - type: Transform pos: -4.5,25.5 parent: 2 - - uid: 10297 + - uid: 10217 components: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 10298 + - uid: 10218 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 10299 + - uid: 10219 components: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 10300 + - uid: 10220 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 10301 + - uid: 10221 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 10302 + - uid: 10222 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 10303 + - uid: 10223 components: - type: Transform pos: 0.49999997,23.5 parent: 2 - - uid: 10304 + - uid: 10224 components: - type: Transform pos: 0.50000006,24.5 parent: 2 - - uid: 10305 + - uid: 10225 components: - type: Transform pos: 0.50000006,25.5 parent: 2 - - uid: 10306 + - uid: 10226 components: - type: Transform pos: 0.50000006,26.5 parent: 2 - - uid: 10307 + - uid: 10227 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 10308 + - uid: 10228 components: - type: Transform pos: -1.5,26.5 parent: 2 - - uid: 10309 + - uid: 10229 components: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 10310 + - uid: 10230 components: - type: Transform pos: -2.5,27.5 parent: 2 - - uid: 10311 + - uid: 10231 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 10312 + - uid: 10232 components: - type: Transform pos: -2.5,29.5 parent: 2 - - uid: 10313 + - uid: 10233 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 10314 + - uid: 10234 components: - type: Transform pos: 25.5,50.5 parent: 2 - - uid: 10315 + - uid: 10235 components: - type: Transform pos: 33.5,28.5 parent: 2 - - uid: 10316 + - uid: 10236 components: - type: Transform pos: 22.5,31.5 parent: 2 - - uid: 10317 + - uid: 10237 components: - type: Transform pos: 22.5,30.5 parent: 2 - - uid: 10318 + - uid: 10238 components: - type: Transform pos: 22.5,29.5 parent: 2 - - uid: 10319 + - uid: 10239 components: - type: Transform pos: 23.5,29.5 parent: 2 - - uid: 10320 + - uid: 10240 components: - type: Transform pos: 24.5,29.5 parent: 2 - - uid: 10321 + - uid: 10241 components: - type: Transform pos: 25.5,29.5 parent: 2 - - uid: 10322 + - uid: 10242 components: - type: Transform pos: 26.5,29.5 parent: 2 - - uid: 10323 + - uid: 10243 components: - type: Transform pos: 26.5,28.5 parent: 2 - - uid: 10324 + - uid: 10244 components: - type: Transform pos: 26.5,27.5 parent: 2 - - uid: 10325 + - uid: 10245 components: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 10326 + - uid: 10246 components: - type: Transform pos: 27.5,26.5 parent: 2 - - uid: 10327 + - uid: 10247 components: - type: Transform pos: 26.5,30.5 parent: 2 - - uid: 10328 + - uid: 10248 components: - type: Transform pos: 26.5,31.5 parent: 2 - - uid: 10329 + - uid: 10249 components: - type: Transform pos: 27.5,31.5 parent: 2 - - uid: 10330 + - uid: 10250 components: - type: Transform pos: 28.5,31.5 parent: 2 - - uid: 10331 + - uid: 10251 components: - type: Transform pos: 29.5,31.5 parent: 2 - - uid: 10332 + - uid: 10252 components: - type: Transform pos: 30.5,31.5 parent: 2 - - uid: 10333 + - uid: 10253 components: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 10334 + - uid: 10254 components: - type: Transform pos: 31.5,30.5 parent: 2 - - uid: 10335 + - uid: 10255 components: - type: Transform pos: 31.5,29.5 parent: 2 - - uid: 10336 + - uid: 10256 components: - type: Transform pos: 31.5,28.5 parent: 2 - - uid: 10337 + - uid: 10257 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 10338 + - uid: 10258 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 10339 + - uid: 10259 components: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 10340 + - uid: 10260 components: - type: Transform pos: 32.5,31.5 parent: 2 - - uid: 10341 + - uid: 10261 components: - type: Transform pos: 33.5,31.5 parent: 2 - - uid: 10342 + - uid: 10262 components: - type: Transform pos: 34.5,31.5 parent: 2 - - uid: 10343 + - uid: 10263 components: - type: Transform pos: 35.5,31.5 parent: 2 - - uid: 10344 + - uid: 10264 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 10345 + - uid: 10265 components: - type: Transform pos: 36.5,30.5 parent: 2 - - uid: 10346 + - uid: 10266 components: - type: Transform pos: 37.5,30.5 parent: 2 - - uid: 10347 + - uid: 10267 components: - type: Transform pos: 38.5,30.5 parent: 2 - - uid: 10348 + - uid: 10268 components: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 10349 + - uid: 10269 components: - type: Transform pos: 33.5,39.5 parent: 2 - - uid: 10350 + - uid: 10270 components: - type: Transform pos: 33.5,38.5 parent: 2 - - uid: 10351 + - uid: 10271 components: - type: Transform pos: 34.5,37.5 parent: 2 - - uid: 10352 + - uid: 10272 components: - type: Transform pos: 33.5,37.5 parent: 2 - - uid: 10353 + - uid: 10273 components: - type: Transform pos: 35.5,37.5 parent: 2 - - uid: 10354 + - uid: 10274 components: - type: Transform pos: 35.5,37.5 parent: 2 - - uid: 10355 + - uid: 10275 components: - type: Transform pos: 35.5,36.5 parent: 2 - - uid: 10356 + - uid: 10276 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 10357 + - uid: 10277 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 10358 + - uid: 10278 components: - type: Transform pos: 35.5,33.5 parent: 2 - - uid: 10359 + - uid: 10279 components: - type: Transform pos: 35.5,32.5 parent: 2 - - uid: 10360 + - uid: 10280 components: - type: Transform pos: 29.5,39.5 parent: 2 - - uid: 10361 + - uid: 10281 components: - type: Transform pos: 29.5,38.5 parent: 2 - - uid: 10362 + - uid: 10282 components: - type: Transform pos: 29.5,37.5 parent: 2 - - uid: 10363 + - uid: 10283 components: - type: Transform pos: 29.5,36.5 parent: 2 - - uid: 10364 + - uid: 10284 components: - type: Transform pos: 28.5,36.5 parent: 2 - - uid: 10365 + - uid: 10285 components: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 10366 + - uid: 10286 components: - type: Transform pos: 26.5,36.5 parent: 2 - - uid: 10367 + - uid: 10287 components: - type: Transform pos: 25.5,36.5 parent: 2 - - uid: 10368 + - uid: 10288 components: - type: Transform pos: 24.5,36.5 parent: 2 - - uid: 10369 + - uid: 10289 components: - type: Transform pos: 23.5,36.5 parent: 2 - - uid: 10370 + - uid: 10290 components: - type: Transform pos: 22.5,36.5 parent: 2 - - uid: 10371 + - uid: 10291 components: - type: Transform pos: 21.5,36.5 parent: 2 - - uid: 10372 + - uid: 10292 components: - type: Transform pos: 21.5,35.5 parent: 2 - - uid: 10373 + - uid: 10293 components: - type: Transform pos: 21.5,34.5 parent: 2 - - uid: 10374 + - uid: 10294 components: - type: Transform pos: 21.5,33.5 parent: 2 - - uid: 10375 + - uid: 10295 components: - type: Transform pos: 21.5,32.5 parent: 2 - - uid: 10376 + - uid: 10296 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 10377 + - uid: 10297 components: - type: Transform pos: 9.5,54.5 parent: 2 - - uid: 10378 + - uid: 10298 components: - type: Transform pos: 9.5,53.5 parent: 2 - - uid: 10379 + - uid: 10299 components: - type: Transform pos: 10.5,53.5 parent: 2 - - uid: 10380 + - uid: 10300 components: - type: Transform pos: 20.5,50.5 parent: 2 - - uid: 10381 + - uid: 10301 components: - type: Transform pos: 20.5,49.5 parent: 2 - - uid: 10382 + - uid: 10302 components: - type: Transform pos: 20.5,48.5 parent: 2 - - uid: 10383 + - uid: 10303 components: - type: Transform pos: 20.5,47.5 parent: 2 - - uid: 10384 + - uid: 10304 components: - type: Transform pos: 20.5,46.5 parent: 2 - - uid: 10385 + - uid: 10305 components: - type: Transform pos: 20.5,45.5 parent: 2 - - uid: 10386 + - uid: 10306 components: - type: Transform pos: 19.5,45.5 parent: 2 - - uid: 10387 + - uid: 10307 components: - type: Transform pos: 18.5,45.5 parent: 2 - - uid: 10388 + - uid: 10308 components: - type: Transform pos: 17.5,45.5 parent: 2 - - uid: 10389 + - uid: 10309 components: - type: Transform pos: 16.5,45.5 parent: 2 - - uid: 10390 + - uid: 10310 components: - type: Transform pos: 15.5,45.5 parent: 2 - - uid: 10391 + - uid: 10311 components: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 10392 + - uid: 10312 components: - type: Transform pos: 13.5,45.5 parent: 2 - - uid: 10393 + - uid: 10313 components: - type: Transform pos: 12.5,45.5 parent: 2 - - uid: 10394 + - uid: 10314 components: - type: Transform pos: 11.5,45.5 parent: 2 - - uid: 10395 + - uid: 10315 components: - type: Transform pos: 10.5,45.5 parent: 2 - - uid: 10396 + - uid: 10316 components: - type: Transform pos: 9.5,45.5 parent: 2 - - uid: 10397 + - uid: 10317 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 10398 + - uid: 10318 components: - type: Transform pos: 9.5,47.5 parent: 2 - - uid: 10399 + - uid: 10319 components: - type: Transform pos: 10.5,44.5 parent: 2 - - uid: 10400 + - uid: 10320 components: - type: Transform pos: 10.5,43.5 parent: 2 - - uid: 10401 + - uid: 10321 components: - type: Transform pos: 10.5,42.5 parent: 2 - - uid: 10402 + - uid: 10322 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 10403 + - uid: 10323 components: - type: Transform pos: 10.5,40.5 parent: 2 - - uid: 10404 + - uid: 10324 components: - type: Transform pos: 9.5,40.5 parent: 2 - - uid: 10405 + - uid: 10325 components: - type: Transform pos: 10.5,39.5 parent: 2 - - uid: 10406 + - uid: 10326 components: - type: Transform pos: 10.5,38.5 parent: 2 - - uid: 10407 + - uid: 10327 components: - type: Transform pos: 10.5,37.5 parent: 2 - - uid: 10408 + - uid: 10328 components: - type: Transform pos: 10.5,36.5 parent: 2 - - uid: 10409 + - uid: 10329 components: - type: Transform pos: 10.5,35.5 parent: 2 - - uid: 10410 + - uid: 10330 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 10411 + - uid: 10331 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 10412 + - uid: 10332 components: - type: Transform pos: 7.5,36.5 parent: 2 - - uid: 10413 + - uid: 10333 components: - type: Transform pos: 7.5,35.5 parent: 2 - - uid: 10414 + - uid: 10334 components: - type: Transform pos: 8.5,35.5 parent: 2 - - uid: 10415 + - uid: 10335 components: - type: Transform pos: 9.5,35.5 parent: 2 - - uid: 10416 + - uid: 10336 components: - type: Transform pos: 6.5,35.5 parent: 2 - - uid: 10417 + - uid: 10337 components: - type: Transform pos: 5.5,35.5 parent: 2 - - uid: 10418 + - uid: 10338 components: - type: Transform pos: 4.5,35.5 parent: 2 - - uid: 10419 + - uid: 10339 components: - type: Transform pos: 4.5,34.5 parent: 2 - - uid: 10420 + - uid: 10340 components: - type: Transform pos: 4.5,33.5 parent: 2 - - uid: 10421 + - uid: 10341 components: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 10422 + - uid: 10342 components: - type: Transform pos: 4.5,31.5 parent: 2 - - uid: 10423 + - uid: 10343 components: - type: Transform pos: 4.5,30.5 parent: 2 - - uid: 10424 + - uid: 10344 components: - type: Transform pos: 4.5,29.5 parent: 2 - - uid: 10425 + - uid: 10345 components: - type: Transform pos: 6.5,29.5 parent: 2 - - uid: 10426 + - uid: 10346 components: - type: Transform pos: 7.5,29.5 parent: 2 - - uid: 10427 + - uid: 10347 components: - type: Transform pos: 5.5,29.5 parent: 2 - - uid: 10428 + - uid: 10348 components: - type: Transform pos: 7.5,30.5 parent: 2 - - uid: 10429 + - uid: 10349 components: - type: Transform pos: 7.5,31.5 parent: 2 - - uid: 10430 + - uid: 10350 components: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 10431 + - uid: 10351 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 10432 + - uid: 10352 components: - type: Transform pos: 24.5,24.5 parent: 2 - - uid: 10433 + - uid: 10353 components: - type: Transform pos: 23.5,24.5 parent: 2 - - uid: 10434 + - uid: 10354 components: - type: Transform pos: 22.5,24.5 parent: 2 - - uid: 10435 + - uid: 10355 components: - type: Transform pos: 21.5,24.5 parent: 2 - - uid: 10436 + - uid: 10356 components: - type: Transform pos: 21.5,25.5 parent: 2 - - uid: 10437 + - uid: 10357 components: - type: Transform pos: 21.5,26.5 parent: 2 - - uid: 10438 + - uid: 10358 components: - type: Transform pos: 21.5,27.5 parent: 2 - - uid: 10439 + - uid: 10359 components: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 10440 + - uid: 10360 components: - type: Transform pos: 21.5,29.5 parent: 2 - - uid: 10441 + - uid: 10361 components: - type: Transform pos: 24.5,50.5 parent: 2 - - uid: 10442 + - uid: 10362 components: - type: Transform pos: 23.5,50.5 parent: 2 - - uid: 10443 + - uid: 10363 components: - type: Transform pos: 22.5,50.5 parent: 2 - - uid: 10444 + - uid: 10364 components: - type: Transform pos: 21.5,50.5 parent: 2 - - uid: 10445 + - uid: 10365 components: - type: Transform pos: 20.5,50.5 parent: 2 - - uid: 10446 + - uid: 10366 components: - type: Transform pos: 11.5,53.5 parent: 2 - - uid: 10447 + - uid: 10367 components: - type: Transform pos: 12.5,53.5 parent: 2 - - uid: 10448 + - uid: 10368 components: - type: Transform pos: 13.5,53.5 parent: 2 - - uid: 10449 + - uid: 10369 components: - type: Transform pos: 14.5,53.5 parent: 2 - - uid: 10450 + - uid: 10370 components: - type: Transform pos: 15.5,53.5 parent: 2 - - uid: 10451 + - uid: 10371 components: - type: Transform pos: 16.5,53.5 parent: 2 - - uid: 10452 + - uid: 10372 components: - type: Transform pos: 17.5,53.5 parent: 2 - - uid: 10453 + - uid: 10373 components: - type: Transform pos: 18.5,53.5 parent: 2 - - uid: 10454 + - uid: 10374 components: - type: Transform pos: 19.5,53.5 parent: 2 - - uid: 10455 + - uid: 10375 components: - type: Transform pos: 20.5,52.5 parent: 2 - - uid: 10456 + - uid: 10376 components: - type: Transform pos: 20.5,51.5 parent: 2 - - uid: 10457 + - uid: 10377 components: - type: Transform pos: 20.5,53.5 parent: 2 - - uid: 10458 + - uid: 10378 components: - type: Transform pos: -20.5,-30.5 parent: 2 - - uid: 10459 + - uid: 10379 components: - type: Transform pos: 76.5,-1.5 parent: 2 - - uid: 10460 + - uid: 10380 components: - type: Transform pos: 76.5,-0.5 parent: 2 - - uid: 10461 + - uid: 10381 components: - type: Transform pos: 75.5,-0.5 parent: 2 - - uid: 10462 + - uid: 10382 components: - type: Transform pos: 74.5,-0.5 parent: 2 - - uid: 10463 + - uid: 10383 components: - type: Transform pos: 73.5,-0.5 parent: 2 - - uid: 10464 + - uid: 10384 components: - type: Transform pos: 73.5,0.5 parent: 2 - - uid: 10465 + - uid: 10385 components: - type: Transform pos: 73.5,1.5 parent: 2 - - uid: 10466 + - uid: 10386 components: - type: Transform pos: 73.5,2.5 parent: 2 - - uid: 10467 + - uid: 10387 components: - type: Transform pos: 73.5,3.5 parent: 2 - - uid: 10468 + - uid: 10388 components: - type: Transform pos: 72.5,3.5 parent: 2 - - uid: 10469 + - uid: 10389 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 10470 + - uid: 10390 components: - type: Transform pos: 93.5,24.5 parent: 2 - - uid: 10471 + - uid: 10391 components: - type: Transform pos: 93.5,23.5 parent: 2 - - uid: 10472 + - uid: 10392 components: - type: Transform pos: 92.5,23.5 parent: 2 - - uid: 10473 + - uid: 10393 components: - type: Transform pos: 92.5,22.5 parent: 2 - - uid: 10474 + - uid: 10394 components: - type: Transform pos: 92.5,21.5 parent: 2 - - uid: 10475 + - uid: 10395 components: - type: Transform pos: 92.5,20.5 parent: 2 - - uid: 10476 + - uid: 10396 components: - type: Transform pos: 92.5,19.5 parent: 2 - - uid: 10477 + - uid: 10397 components: - type: Transform pos: 92.5,18.5 parent: 2 - - uid: 10478 + - uid: 10398 components: - type: Transform pos: 92.5,17.5 parent: 2 - - uid: 10479 + - uid: 10399 components: - type: Transform pos: 92.5,16.5 parent: 2 - - uid: 10480 + - uid: 10400 components: - type: Transform pos: 92.5,15.5 parent: 2 - - uid: 10481 + - uid: 10401 components: - type: Transform pos: 92.5,14.5 parent: 2 - - uid: 10482 + - uid: 10402 components: - type: Transform pos: 92.5,13.5 parent: 2 - - uid: 10483 + - uid: 10403 components: - type: Transform pos: 91.5,13.5 parent: 2 - - uid: 10484 + - uid: 10404 components: - type: Transform pos: 90.5,13.5 parent: 2 - - uid: 10485 + - uid: 10405 components: - type: Transform pos: 89.5,13.5 parent: 2 - - uid: 10486 + - uid: 10406 components: - type: Transform pos: 88.5,13.5 parent: 2 - - uid: 10487 + - uid: 10407 components: - type: Transform pos: 87.5,13.5 parent: 2 - - uid: 10488 + - uid: 10408 components: - type: Transform pos: 86.5,13.5 parent: 2 - - uid: 10489 + - uid: 10409 components: - type: Transform pos: 85.5,13.5 parent: 2 - - uid: 10490 + - uid: 10410 components: - type: Transform pos: 84.5,13.5 parent: 2 - - uid: 10491 + - uid: 10411 components: - type: Transform pos: 83.5,13.5 parent: 2 - - uid: 10492 + - uid: 10412 components: - type: Transform pos: 83.5,12.5 parent: 2 - - uid: 10493 + - uid: 10413 components: - type: Transform pos: 83.5,11.5 parent: 2 - - uid: 10494 + - uid: 10414 components: - type: Transform pos: 83.5,10.5 parent: 2 - - uid: 10495 + - uid: 10415 components: - type: Transform pos: 84.5,10.5 parent: 2 - - uid: 10496 + - uid: 10416 components: - type: Transform pos: 85.5,10.5 parent: 2 - - uid: 10497 + - uid: 10417 components: - type: Transform pos: 86.5,10.5 parent: 2 - - uid: 10498 + - uid: 10418 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 10499 + - uid: 10419 components: - type: Transform pos: 82.5,10.5 parent: 2 - - uid: 10500 + - uid: 10420 components: - type: Transform pos: 82.5,9.5 parent: 2 - - uid: 10501 + - uid: 10421 components: - type: Transform pos: 80.5,9.5 parent: 2 - - uid: 10502 + - uid: 10422 components: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 10503 + - uid: 10423 components: - type: Transform pos: 78.5,9.5 parent: 2 - - uid: 10504 + - uid: 10424 components: - type: Transform pos: 77.5,9.5 parent: 2 - - uid: 10505 + - uid: 10425 components: - type: Transform pos: 76.5,9.5 parent: 2 - - uid: 10506 + - uid: 10426 components: - type: Transform pos: 75.5,9.5 parent: 2 - - uid: 10507 + - uid: 10427 components: - type: Transform pos: 74.5,9.5 parent: 2 - - uid: 10508 + - uid: 10428 components: - type: Transform pos: 73.5,9.5 parent: 2 - - uid: 10509 + - uid: 10429 components: - type: Transform pos: 81.5,9.5 parent: 2 - - uid: 10510 + - uid: 10430 components: - type: Transform pos: 73.5,10.5 parent: 2 - - uid: 10511 + - uid: 10431 components: - type: Transform pos: 73.5,11.5 parent: 2 - - uid: 10512 + - uid: 10432 components: - type: Transform pos: 73.5,12.5 parent: 2 - - uid: 10513 + - uid: 10433 components: - type: Transform pos: 73.5,13.5 parent: 2 - - uid: 10514 + - uid: 10434 components: - type: Transform pos: 72.5,13.5 parent: 2 - - uid: 10515 + - uid: 10435 components: - type: Transform pos: 71.5,13.5 parent: 2 - - uid: 10516 + - uid: 10436 components: - type: Transform pos: 70.5,13.5 parent: 2 - - uid: 10517 + - uid: 10437 components: - type: Transform pos: 69.5,13.5 parent: 2 - - uid: 10518 + - uid: 10438 components: - type: Transform pos: 69.5,14.5 parent: 2 - - uid: 10519 + - uid: 10439 components: - type: Transform pos: 69.5,15.5 parent: 2 - - uid: 10520 + - uid: 10440 components: - type: Transform pos: 69.5,16.5 parent: 2 - - uid: 10521 + - uid: 10441 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 10522 + - uid: 10442 components: - type: Transform pos: 72.5,5.5 parent: 2 - - uid: 10523 + - uid: 10443 components: - type: Transform pos: 73.5,5.5 parent: 2 - - uid: 10524 + - uid: 10444 components: - type: Transform pos: 73.5,6.5 parent: 2 - - uid: 10525 + - uid: 10445 components: - type: Transform pos: 73.5,7.5 parent: 2 - - uid: 10526 + - uid: 10446 components: - type: Transform pos: 73.5,8.5 parent: 2 - - uid: 10527 + - uid: 10447 components: - type: Transform pos: 73.5,9.5 parent: 2 - - uid: 10528 + - uid: 10448 components: - type: Transform pos: 73.5,4.5 parent: 2 - - uid: 10529 + - uid: 10449 components: - type: Transform pos: 73.5,14.5 parent: 2 - - uid: 10530 + - uid: 10450 components: - type: Transform pos: 73.5,15.5 parent: 2 - - uid: 10531 + - uid: 10451 components: - type: Transform pos: 73.5,16.5 parent: 2 - - uid: 10532 + - uid: 10452 components: - type: Transform pos: 73.5,17.5 parent: 2 - - uid: 10533 + - uid: 10453 components: - type: Transform pos: 73.5,18.5 parent: 2 - - uid: 10534 + - uid: 10454 components: - type: Transform pos: 73.5,19.5 parent: 2 - - uid: 10535 + - uid: 10455 components: - type: Transform pos: 73.5,20.5 parent: 2 - - uid: 10536 + - uid: 10456 components: - type: Transform pos: 73.5,21.5 parent: 2 - - uid: 10537 + - uid: 10457 components: - type: Transform pos: 73.5,22.5 parent: 2 - - uid: 10538 + - uid: 10458 components: - type: Transform pos: 73.5,23.5 parent: 2 - - uid: 10539 + - uid: 10459 components: - type: Transform pos: 73.5,24.5 parent: 2 - - uid: 10540 + - uid: 10460 components: - type: Transform pos: 85.5,7.5 parent: 2 - - uid: 10541 + - uid: 10461 components: - type: Transform pos: 86.5,10.5 parent: 2 - - uid: 10542 + - uid: 10462 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 10543 + - uid: 10463 components: - type: Transform pos: 98.5,5.5 parent: 2 - - uid: 10544 + - uid: 10464 components: - type: Transform pos: 85.5,5.5 parent: 2 - - uid: 10545 + - uid: 10465 components: - type: Transform pos: 98.5,4.5 parent: 2 - - uid: 10546 + - uid: 10466 components: - type: Transform pos: 98.5,2.5 parent: 2 - - uid: 10547 + - uid: 10467 components: - type: Transform pos: 98.5,0.5 parent: 2 - - uid: 10548 + - uid: 10468 components: - type: Transform pos: 92.5,10.5 parent: 2 - - uid: 10549 + - uid: 10469 components: - type: Transform pos: 98.5,-1.5 parent: 2 - - uid: 10550 + - uid: 10470 components: - type: Transform pos: 85.5,4.5 parent: 2 - - uid: 10551 + - uid: 10471 components: - type: Transform pos: 85.5,8.5 parent: 2 - - uid: 10552 + - uid: 10472 components: - type: Transform pos: 85.5,6.5 parent: 2 - - uid: 10553 + - uid: 10473 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 10554 + - uid: 10474 components: - type: Transform pos: -22.5,-70.5 parent: 2 - - uid: 10555 + - uid: 10475 components: - type: Transform pos: -58.5,-38.5 parent: 2 - - uid: 10556 + - uid: 10476 components: - type: Transform pos: -58.5,-41.5 parent: 2 - - uid: 10557 + - uid: 10477 components: - type: Transform pos: -58.5,-39.5 parent: 2 - - uid: 10558 + - uid: 10478 components: - type: Transform pos: -58.5,-40.5 parent: 2 - - uid: 10559 + - uid: 10479 components: - type: Transform pos: -58.5,-42.5 parent: 2 - - uid: 10560 + - uid: 10480 components: - type: Transform pos: 74.5,-2.5 parent: 2 - - uid: 10561 + - uid: 10481 components: - type: Transform pos: 74.5,-3.5 parent: 2 - - uid: 10562 + - uid: 10482 components: - type: Transform pos: 73.5,-3.5 parent: 2 - - uid: 10563 + - uid: 10483 components: - type: Transform pos: 72.5,-3.5 parent: 2 - - uid: 10564 + - uid: 10484 components: - type: Transform pos: 71.5,-3.5 parent: 2 - - uid: 10565 + - uid: 10485 components: - type: Transform pos: 70.5,-3.5 parent: 2 - - uid: 10566 + - uid: 10486 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 10567 + - uid: 10487 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 10568 + - uid: 10488 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 10569 + - uid: 10489 components: - type: Transform pos: 69.5,-0.5 parent: 2 - - uid: 10570 + - uid: 10490 components: - type: Transform pos: 68.5,-0.5 parent: 2 - - uid: 10571 + - uid: 10491 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 10572 + - uid: 10492 components: - type: Transform pos: 67.5,-0.5 parent: 2 - - uid: 10573 + - uid: 10493 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 10574 + - uid: 10494 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 10575 + - uid: 10495 components: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 10576 + - uid: 10496 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 10577 + - uid: 10497 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 10578 + - uid: 10498 components: - type: Transform pos: 65.5,28.5 parent: 2 - - uid: 10579 + - uid: 10499 components: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 10580 + - uid: 10500 components: - type: Transform pos: 66.5,25.5 parent: 2 - - uid: 10581 + - uid: 10501 components: - type: Transform pos: 67.5,25.5 parent: 2 - - uid: 10582 + - uid: 10502 components: - type: Transform pos: 68.5,25.5 parent: 2 - - uid: 10583 + - uid: 10503 components: - type: Transform pos: 69.5,25.5 parent: 2 - - uid: 10584 + - uid: 10504 components: - type: Transform pos: 70.5,25.5 parent: 2 - - uid: 10585 + - uid: 10505 components: - type: Transform pos: 71.5,26.5 parent: 2 - - uid: 10586 + - uid: 10506 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 10587 + - uid: 10507 components: - type: Transform pos: 64.5,25.5 parent: 2 - - uid: 10588 + - uid: 10508 components: - type: Transform pos: 63.5,25.5 parent: 2 - - uid: 10589 + - uid: 10509 components: - type: Transform pos: 62.5,25.5 parent: 2 - - uid: 10590 + - uid: 10510 components: - type: Transform pos: 61.5,25.5 parent: 2 - - uid: 10591 + - uid: 10511 components: - type: Transform pos: 60.5,25.5 parent: 2 - - uid: 10592 + - uid: 10512 components: - type: Transform pos: 59.5,25.5 parent: 2 - - uid: 10593 + - uid: 10513 components: - type: Transform pos: 58.5,25.5 parent: 2 - - uid: 10594 + - uid: 10514 components: - type: Transform pos: 57.5,25.5 parent: 2 - - uid: 10595 + - uid: 10515 components: - type: Transform pos: 56.5,25.5 parent: 2 - - uid: 10596 + - uid: 10516 components: - type: Transform pos: 55.5,25.5 parent: 2 - - uid: 10597 + - uid: 10517 components: - type: Transform pos: 54.5,25.5 parent: 2 - - uid: 10598 + - uid: 10518 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 10599 + - uid: 10519 components: - type: Transform pos: 36.5,22.5 parent: 2 - - uid: 10600 + - uid: 10520 components: - type: Transform pos: 36.5,21.5 parent: 2 - - uid: 10601 + - uid: 10521 components: - type: Transform pos: 36.5,20.5 parent: 2 - - uid: 10602 + - uid: 10522 components: - type: Transform pos: 38.5,20.5 parent: 2 - - uid: 10603 + - uid: 10523 components: - type: Transform pos: 37.5,20.5 parent: 2 - - uid: 10604 + - uid: 10524 components: - type: Transform pos: 38.5,20.5 parent: 2 - - uid: 10605 + - uid: 10525 components: - type: Transform pos: 39.5,20.5 parent: 2 - - uid: 10606 + - uid: 10526 components: - type: Transform pos: 40.5,20.5 parent: 2 - - uid: 10607 + - uid: 10527 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 10608 + - uid: 10528 components: - type: Transform pos: 42.5,20.5 parent: 2 - - uid: 10609 + - uid: 10529 components: - type: Transform pos: 43.5,20.5 parent: 2 - - uid: 10610 + - uid: 10530 components: - type: Transform pos: 44.5,20.5 parent: 2 - - uid: 10611 + - uid: 10531 components: - type: Transform pos: 45.5,20.5 parent: 2 - - uid: 10612 + - uid: 10532 components: - type: Transform pos: 46.5,20.5 parent: 2 - - uid: 10613 + - uid: 10533 components: - type: Transform pos: 54.5,26.5 parent: 2 - - uid: 10614 + - uid: 10534 components: - type: Transform pos: 54.5,29.5 parent: 2 - - uid: 10615 + - uid: 10535 components: - type: Transform pos: 54.5,28.5 parent: 2 - - uid: 10616 + - uid: 10536 components: - type: Transform pos: 54.5,25.5 parent: 2 - - uid: 10617 + - uid: 10537 components: - type: Transform pos: 54.5,27.5 parent: 2 - - uid: 10618 + - uid: 10538 components: - type: Transform pos: 26.5,10.5 parent: 2 - - uid: 10619 + - uid: 10539 components: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 10620 + - uid: 10540 components: - type: Transform pos: 27.5,9.5 parent: 2 - - uid: 10621 + - uid: 10541 components: - type: Transform pos: 28.5,9.5 parent: 2 - - uid: 10622 + - uid: 10542 components: - type: Transform pos: 29.5,9.5 parent: 2 - - uid: 10623 + - uid: 10543 components: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 10624 + - uid: 10544 components: - type: Transform pos: 29.5,7.5 parent: 2 - - uid: 10625 + - uid: 10545 components: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 10626 + - uid: 10546 components: - type: Transform pos: 29.5,5.5 parent: 2 - - uid: 10627 + - uid: 10547 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 10628 + - uid: 10548 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 10629 + - uid: 10549 components: - type: Transform pos: 26.5,5.5 parent: 2 - - uid: 10630 + - uid: 10550 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 10631 + - uid: 10551 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 10632 + - uid: 10552 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 10633 + - uid: 10553 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 10634 + - uid: 10554 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 10635 + - uid: 10555 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 10636 + - uid: 10556 components: - type: Transform pos: 20.5,6.5 parent: 2 - - uid: 10637 + - uid: 10557 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 10638 + - uid: 10558 components: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 10639 + - uid: 10559 components: - type: Transform pos: 31.5,5.5 parent: 2 - - uid: 10640 + - uid: 10560 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 10641 + - uid: 10561 components: - type: Transform pos: 32.5,4.5 parent: 2 - - uid: 10642 + - uid: 10562 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 10643 + - uid: 10563 components: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 10644 + - uid: 10564 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 10645 + - uid: 10565 components: - type: Transform pos: 36.5,4.5 parent: 2 - - uid: 10646 + - uid: 10566 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 10647 + - uid: 10567 components: - type: Transform pos: 38.5,4.5 parent: 2 - - uid: 10648 + - uid: 10568 components: - type: Transform pos: 39.5,4.5 parent: 2 - - uid: 10649 + - uid: 10569 components: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 10650 + - uid: 10570 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 10651 + - uid: 10571 components: - type: Transform pos: 42.5,4.5 parent: 2 - - uid: 10652 + - uid: 10572 components: - type: Transform pos: 43.5,4.5 parent: 2 - - uid: 10653 + - uid: 10573 components: - type: Transform pos: 44.5,4.5 parent: 2 - - uid: 10654 + - uid: 10574 components: - type: Transform pos: 45.5,4.5 parent: 2 - - uid: 10655 + - uid: 10575 components: - type: Transform pos: 46.5,4.5 parent: 2 - - uid: 10656 + - uid: 10576 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 10657 + - uid: 10577 components: - type: Transform pos: 47.5,3.5 parent: 2 - - uid: 10658 + - uid: 10578 components: - type: Transform pos: 47.5,2.5 parent: 2 - - uid: 10659 + - uid: 10579 components: - type: Transform pos: 47.5,1.5 parent: 2 - - uid: 10660 + - uid: 10580 components: - type: Transform pos: 47.5,0.5 parent: 2 - - uid: 10661 + - uid: 10581 components: - type: Transform pos: 48.5,0.5 parent: 2 - - uid: 10662 + - uid: 10582 components: - type: Transform pos: 49.5,0.5 parent: 2 - - uid: 10663 + - uid: 10583 components: - type: Transform pos: 50.5,0.5 parent: 2 - - uid: 10664 + - uid: 10584 components: - type: Transform pos: 51.5,0.5 parent: 2 - - uid: 10665 + - uid: 10585 components: - type: Transform pos: 52.5,0.5 parent: 2 - - uid: 10666 + - uid: 10586 components: - type: Transform pos: 53.5,0.5 parent: 2 - - uid: 10667 + - uid: 10587 components: - type: Transform pos: 54.5,0.5 parent: 2 - - uid: 10668 + - uid: 10588 components: - type: Transform pos: 55.5,0.5 parent: 2 - - uid: 10669 + - uid: 10589 components: - type: Transform pos: 56.5,0.5 parent: 2 - - uid: 10670 + - uid: 10590 components: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 10671 + - uid: 10591 components: - type: Transform pos: 58.5,0.5 parent: 2 - - uid: 10672 + - uid: 10592 components: - type: Transform pos: 59.5,0.5 parent: 2 - - uid: 10673 + - uid: 10593 components: - type: Transform pos: 60.5,0.5 parent: 2 - - uid: 10674 + - uid: 10594 components: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 10675 + - uid: 10595 components: - type: Transform pos: 62.5,0.5 parent: 2 - - uid: 10676 + - uid: 10596 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 10677 + - uid: 10597 components: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 10678 + - uid: 10598 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 10679 + - uid: 10599 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 10680 + - uid: 10600 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 10681 + - uid: 10601 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 10682 + - uid: 10602 components: - type: Transform pos: 47.5,10.5 parent: 2 - - uid: 10683 + - uid: 10603 components: - type: Transform pos: 47.5,11.5 parent: 2 - - uid: 10684 + - uid: 10604 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 10685 + - uid: 10605 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 10686 + - uid: 10606 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 10687 + - uid: 10607 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 10688 + - uid: 10608 components: - type: Transform pos: 47.5,16.5 parent: 2 - - uid: 10689 + - uid: 10609 components: - type: Transform pos: 47.5,17.5 parent: 2 - - uid: 10690 + - uid: 10610 components: - type: Transform pos: 47.5,18.5 parent: 2 - - uid: 10691 + - uid: 10611 components: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 10692 + - uid: 10612 components: - type: Transform pos: 47.5,20.5 parent: 2 - - uid: 10693 + - uid: 10613 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 10694 + - uid: 10614 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 10695 + - uid: 10615 components: - type: Transform pos: 45.5,23.5 parent: 2 - - uid: 10696 + - uid: 10616 components: - type: Transform pos: 45.5,22.5 parent: 2 - - uid: 10697 + - uid: 10617 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 10698 + - uid: 10618 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 10699 + - uid: 10619 components: - type: Transform pos: 56.5,20.5 parent: 2 - - uid: 10700 + - uid: 10620 components: - type: Transform pos: 56.5,19.5 parent: 2 - - uid: 10701 + - uid: 10621 components: - type: Transform pos: 56.5,18.5 parent: 2 - - uid: 10702 + - uid: 10622 components: - type: Transform pos: 56.5,17.5 parent: 2 - - uid: 10703 + - uid: 10623 components: - type: Transform pos: 55.5,17.5 parent: 2 - - uid: 10704 + - uid: 10624 components: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 10705 + - uid: 10625 components: - type: Transform pos: 53.5,17.5 parent: 2 - - uid: 10706 + - uid: 10626 components: - type: Transform pos: 52.5,17.5 parent: 2 - - uid: 10707 + - uid: 10627 components: - type: Transform pos: 51.5,17.5 parent: 2 - - uid: 10708 + - uid: 10628 components: - type: Transform pos: 51.5,16.5 parent: 2 - - uid: 10709 + - uid: 10629 components: - type: Transform pos: 50.5,16.5 parent: 2 - - uid: 10710 + - uid: 10630 components: - type: Transform pos: 49.5,16.5 parent: 2 - - uid: 10711 + - uid: 10631 components: - type: Transform pos: 48.5,16.5 parent: 2 - - uid: 10712 + - uid: 10632 components: - type: Transform pos: 48.5,12.5 parent: 2 - - uid: 10713 + - uid: 10633 components: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 10714 + - uid: 10634 components: - type: Transform pos: 50.5,12.5 parent: 2 - - uid: 10715 + - uid: 10635 components: - type: Transform pos: 51.5,12.5 parent: 2 - - uid: 10716 + - uid: 10636 components: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 10717 + - uid: 10637 components: - type: Transform pos: 53.5,12.5 parent: 2 - - uid: 10718 + - uid: 10638 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 10719 + - uid: 10639 components: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 10720 + - uid: 10640 components: - type: Transform pos: 55.5,13.5 parent: 2 - - uid: 10721 + - uid: 10641 components: - type: Transform pos: 55.5,13.5 parent: 2 - - uid: 10722 + - uid: 10642 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 10723 + - uid: 10643 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 10724 + - uid: 10644 components: - type: Transform pos: 55.5,9.5 parent: 2 - - uid: 10725 + - uid: 10645 components: - type: Transform pos: 55.5,8.5 parent: 2 - - uid: 10726 + - uid: 10646 components: - type: Transform pos: 55.5,7.5 parent: 2 - - uid: 10727 + - uid: 10647 components: - type: Transform pos: 55.5,6.5 parent: 2 - - uid: 10728 + - uid: 10648 components: - type: Transform pos: 55.5,5.5 parent: 2 - - uid: 10729 + - uid: 10649 components: - type: Transform pos: 55.5,4.5 parent: 2 - - uid: 10730 + - uid: 10650 components: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 10731 + - uid: 10651 components: - type: Transform pos: 53.5,4.5 parent: 2 - - uid: 10732 + - uid: 10652 components: - type: Transform pos: 52.5,4.5 parent: 2 - - uid: 10733 + - uid: 10653 components: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 10734 + - uid: 10654 components: - type: Transform pos: 50.5,4.5 parent: 2 - - uid: 10735 + - uid: 10655 components: - type: Transform pos: 49.5,4.5 parent: 2 - - uid: 10736 + - uid: 10656 components: - type: Transform pos: 48.5,4.5 parent: 2 - - uid: 10737 + - uid: 10657 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 10738 + - uid: 10658 components: - type: Transform pos: 56.5,4.5 parent: 2 - - uid: 10739 + - uid: 10659 components: - type: Transform pos: 57.5,4.5 parent: 2 - - uid: 10740 + - uid: 10660 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 10741 + - uid: 10661 components: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 10742 + - uid: 10662 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 10743 + - uid: 10663 components: - type: Transform pos: 43.5,6.5 parent: 2 - - uid: 10744 + - uid: 10664 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 10745 + - uid: 10665 components: - type: Transform pos: 55.5,-9.5 parent: 2 - - uid: 10746 + - uid: 10666 components: - type: Transform pos: 55.5,-10.5 parent: 2 - - uid: 10747 + - uid: 10667 components: - type: Transform pos: 56.5,-10.5 parent: 2 - - uid: 10748 + - uid: 10668 components: - type: Transform pos: 57.5,-10.5 parent: 2 - - uid: 10749 + - uid: 10669 components: - type: Transform pos: 58.5,-10.5 parent: 2 - - uid: 10750 + - uid: 10670 components: - type: Transform pos: 59.5,-10.5 parent: 2 - - uid: 10751 + - uid: 10671 components: - type: Transform pos: 60.5,-10.5 parent: 2 - - uid: 10752 + - uid: 10672 components: - type: Transform pos: 61.5,-10.5 parent: 2 - - uid: 10753 + - uid: 10673 components: - type: Transform pos: 62.5,-10.5 parent: 2 - - uid: 10754 + - uid: 10674 components: - type: Transform pos: 63.5,-10.5 parent: 2 - - uid: 10755 + - uid: 10675 components: - type: Transform pos: 63.5,-11.5 parent: 2 - - uid: 10756 + - uid: 10676 components: - type: Transform pos: 63.5,-12.5 parent: 2 - - uid: 10757 + - uid: 10677 components: - type: Transform pos: 63.5,-13.5 parent: 2 - - uid: 10758 + - uid: 10678 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 10759 + - uid: 10679 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 10760 + - uid: 10680 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 10761 + - uid: 10681 components: - type: Transform pos: 63.5,-17.5 parent: 2 - - uid: 10762 + - uid: 10682 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 10763 + - uid: 10683 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 10764 + - uid: 10684 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 10765 + - uid: 10685 components: - type: Transform pos: 63.5,-21.5 parent: 2 - - uid: 10766 + - uid: 10686 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 10767 + - uid: 10687 components: - type: Transform pos: 63.5,-23.5 parent: 2 - - uid: 10768 + - uid: 10688 components: - type: Transform pos: 63.5,-24.5 parent: 2 - - uid: 10769 + - uid: 10689 components: - type: Transform pos: 63.5,-25.5 parent: 2 - - uid: 10770 + - uid: 10690 components: - type: Transform pos: 63.5,-26.5 parent: 2 - - uid: 10771 + - uid: 10691 components: - type: Transform pos: 63.5,-27.5 parent: 2 - - uid: 10772 + - uid: 10692 components: - type: Transform pos: 63.5,-28.5 parent: 2 - - uid: 10773 + - uid: 10693 components: - type: Transform pos: 62.5,-28.5 parent: 2 - - uid: 10774 + - uid: 10694 components: - type: Transform pos: 61.5,-28.5 parent: 2 - - uid: 10775 + - uid: 10695 components: - type: Transform pos: 60.5,-28.5 parent: 2 - - uid: 10776 + - uid: 10696 components: - type: Transform pos: 59.5,-28.5 parent: 2 - - uid: 10777 + - uid: 10697 components: - type: Transform pos: 58.5,-28.5 parent: 2 - - uid: 10778 + - uid: 10698 components: - type: Transform pos: 57.5,-28.5 parent: 2 - - uid: 10779 + - uid: 10699 components: - type: Transform pos: 56.5,-28.5 parent: 2 - - uid: 10780 + - uid: 10700 components: - type: Transform pos: 55.5,-28.5 parent: 2 - - uid: 10781 + - uid: 10701 components: - type: Transform pos: 54.5,-28.5 parent: 2 - - uid: 10782 + - uid: 10702 components: - type: Transform pos: 53.5,-28.5 parent: 2 - - uid: 10783 + - uid: 10703 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 10784 + - uid: 10704 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 10785 + - uid: 10705 components: - type: Transform pos: 51.5,-29.5 parent: 2 - - uid: 10786 + - uid: 10706 components: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 10787 + - uid: 10707 components: - type: Transform pos: 51.5,-31.5 parent: 2 - - uid: 10788 + - uid: 10708 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 10789 + - uid: 10709 components: - type: Transform pos: 51.5,-33.5 parent: 2 - - uid: 10790 + - uid: 10710 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 10791 + - uid: 10711 components: - type: Transform pos: 51.5,-35.5 parent: 2 - - uid: 10792 + - uid: 10712 components: - type: Transform pos: 51.5,-36.5 parent: 2 - - uid: 10793 + - uid: 10713 components: - type: Transform pos: 51.5,-37.5 parent: 2 - - uid: 10794 + - uid: 10714 components: - type: Transform pos: 51.5,-38.5 parent: 2 - - uid: 10795 + - uid: 10715 components: - type: Transform pos: 51.5,-39.5 parent: 2 - - uid: 10796 + - uid: 10716 components: - type: Transform pos: 51.5,-40.5 parent: 2 - - uid: 10797 + - uid: 10717 components: - type: Transform pos: 51.5,-41.5 parent: 2 - - uid: 10798 + - uid: 10718 components: - type: Transform pos: 51.5,-42.5 parent: 2 - - uid: 10799 + - uid: 10719 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 10800 + - uid: 10720 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 10801 + - uid: 10721 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 10802 + - uid: 10722 components: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 10803 + - uid: 10723 components: - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 10804 + - uid: 10724 components: - type: Transform pos: 55.5,-42.5 parent: 2 - - uid: 10805 + - uid: 10725 components: - type: Transform pos: 62.5,-16.5 parent: 2 - - uid: 10806 + - uid: 10726 components: - type: Transform pos: 61.5,-16.5 parent: 2 - - uid: 10807 + - uid: 10727 components: - type: Transform pos: 60.5,-16.5 parent: 2 - - uid: 10808 + - uid: 10728 components: - type: Transform pos: 59.5,-16.5 parent: 2 - - uid: 10809 + - uid: 10729 components: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 10810 + - uid: 10730 components: - type: Transform pos: 57.5,-16.5 parent: 2 - - uid: 10811 + - uid: 10731 components: - type: Transform pos: 56.5,-16.5 parent: 2 - - uid: 10812 + - uid: 10732 components: - type: Transform pos: 56.5,-17.5 parent: 2 - - uid: 10813 + - uid: 10733 components: - type: Transform pos: 56.5,-18.5 parent: 2 - - uid: 10814 + - uid: 10734 components: - type: Transform pos: 55.5,-18.5 parent: 2 - - uid: 10815 + - uid: 10735 components: - type: Transform pos: 54.5,-18.5 parent: 2 - - uid: 10816 + - uid: 10736 components: - type: Transform pos: 53.5,-18.5 parent: 2 - - uid: 10817 + - uid: 10737 components: - type: Transform pos: 52.5,-18.5 parent: 2 - - uid: 10818 + - uid: 10738 components: - type: Transform pos: 51.5,-18.5 parent: 2 - - uid: 10819 + - uid: 10739 components: - type: Transform pos: 50.5,-18.5 parent: 2 - - uid: 10820 + - uid: 10740 components: - type: Transform pos: 49.5,-18.5 parent: 2 - - uid: 10821 + - uid: 10741 components: - type: Transform pos: 48.5,-18.5 parent: 2 - - uid: 10822 + - uid: 10742 components: - type: Transform pos: 47.5,-18.5 parent: 2 - - uid: 10823 + - uid: 10743 components: - type: Transform pos: 46.5,-18.5 parent: 2 - - uid: 10824 + - uid: 10744 components: - type: Transform pos: 45.5,-18.5 parent: 2 - - uid: 10825 + - uid: 10745 components: - type: Transform pos: 44.5,-18.5 parent: 2 - - uid: 10826 + - uid: 10746 components: - type: Transform pos: 43.5,-18.5 parent: 2 - - uid: 10827 + - uid: 10747 components: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 10828 + - uid: 10748 components: - type: Transform pos: 41.5,-18.5 parent: 2 - - uid: 10829 + - uid: 10749 components: - type: Transform pos: 41.5,-17.5 parent: 2 - - uid: 10830 + - uid: 10750 components: - type: Transform pos: 41.5,-16.5 parent: 2 - - uid: 10831 + - uid: 10751 components: - type: Transform pos: 41.5,-15.5 parent: 2 - - uid: 10832 + - uid: 10752 components: - type: Transform pos: 41.5,-14.5 parent: 2 - - uid: 10833 + - uid: 10753 components: - type: Transform pos: 41.5,-13.5 parent: 2 - - uid: 10834 + - uid: 10754 components: - type: Transform pos: 41.5,-12.5 parent: 2 - - uid: 10835 + - uid: 10755 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 10836 + - uid: 10756 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 10837 + - uid: 10757 components: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 10838 + - uid: 10758 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 10839 + - uid: 10759 components: - type: Transform pos: 25.5,-10.5 parent: 2 - - uid: 10840 + - uid: 10760 components: - type: Transform pos: 26.5,-10.5 parent: 2 - - uid: 10841 + - uid: 10761 components: - type: Transform pos: 27.5,-10.5 parent: 2 - - uid: 10842 + - uid: 10762 components: - type: Transform pos: 28.5,-10.5 parent: 2 - - uid: 10843 + - uid: 10763 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 10844 + - uid: 10764 components: - type: Transform pos: 30.5,-10.5 parent: 2 - - uid: 10845 + - uid: 10765 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 10846 + - uid: 10766 components: - type: Transform pos: 31.5,-11.5 parent: 2 - - uid: 10847 + - uid: 10767 components: - type: Transform pos: 32.5,-11.5 parent: 2 - - uid: 10848 + - uid: 10768 components: - type: Transform pos: 33.5,-11.5 parent: 2 - - uid: 10849 + - uid: 10769 components: - type: Transform pos: 34.5,-11.5 parent: 2 - - uid: 10850 + - uid: 10770 components: - type: Transform pos: 35.5,-11.5 parent: 2 - - uid: 10851 + - uid: 10771 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 10852 + - uid: 10772 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 10853 + - uid: 10773 components: - type: Transform pos: 38.5,-11.5 parent: 2 - - uid: 10854 + - uid: 10774 components: - type: Transform pos: 39.5,-11.5 parent: 2 - - uid: 10855 + - uid: 10775 components: - type: Transform pos: 40.5,-11.5 parent: 2 - - uid: 10856 + - uid: 10776 components: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 10857 + - uid: 10777 components: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 10858 + - uid: 10778 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 10859 + - uid: 10779 components: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 10860 + - uid: 10780 components: - type: Transform pos: 37.5,0.5 parent: 2 - - uid: 10861 + - uid: 10781 components: - type: Transform pos: 36.5,0.5 parent: 2 - - uid: 10862 + - uid: 10782 components: - type: Transform pos: 36.5,-0.5 parent: 2 - - uid: 10863 + - uid: 10783 components: - type: Transform pos: 36.5,-1.5 parent: 2 - - uid: 10864 + - uid: 10784 components: - type: Transform pos: 36.5,-2.5 parent: 2 - - uid: 10865 + - uid: 10785 components: - type: Transform pos: 36.5,-3.5 parent: 2 - - uid: 10866 + - uid: 10786 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 10867 + - uid: 10787 components: - type: Transform pos: 38.5,-3.5 parent: 2 - - uid: 10868 + - uid: 10788 components: - type: Transform pos: 37.5,-3.5 parent: 2 - - uid: 10869 + - uid: 10789 components: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 10870 + - uid: 10790 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 10871 + - uid: 10791 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 10872 + - uid: 10792 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 10873 + - uid: 10793 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 10874 + - uid: 10794 components: - type: Transform pos: 45.5,-10.5 parent: 2 - - uid: 10875 + - uid: 10795 components: - type: Transform pos: 46.5,-10.5 parent: 2 - - uid: 10876 + - uid: 10796 components: - type: Transform pos: 47.5,-10.5 parent: 2 - - uid: 10877 + - uid: 10797 components: - type: Transform pos: 48.5,-10.5 parent: 2 - - uid: 10878 + - uid: 10798 components: - type: Transform pos: 49.5,-10.5 parent: 2 - - uid: 10879 + - uid: 10799 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 10880 + - uid: 10800 components: - type: Transform pos: 51.5,-10.5 parent: 2 - - uid: 10881 + - uid: 10801 components: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 10882 + - uid: 10802 components: - type: Transform pos: 53.5,-10.5 parent: 2 - - uid: 10883 + - uid: 10803 components: - type: Transform pos: 53.5,-9.5 parent: 2 - - uid: 10884 + - uid: 10804 components: - type: Transform pos: 53.5,-8.5 parent: 2 - - uid: 10885 + - uid: 10805 components: - type: Transform pos: 53.5,-7.5 parent: 2 - - uid: 10886 + - uid: 10806 components: - type: Transform pos: 53.5,-6.5 parent: 2 - - uid: 10887 + - uid: 10807 components: - type: Transform pos: 37.5,1.5 parent: 2 - - uid: 10888 + - uid: 10808 components: - type: Transform pos: 35.5,1.5 parent: 2 - - uid: 10889 + - uid: 10809 components: - type: Transform pos: 34.5,1.5 parent: 2 - - uid: 10890 + - uid: 10810 components: - type: Transform pos: 33.5,1.5 parent: 2 - - uid: 10891 + - uid: 10811 components: - type: Transform pos: 32.5,1.5 parent: 2 - - uid: 10892 + - uid: 10812 components: - type: Transform pos: 31.5,1.5 parent: 2 - - uid: 10893 + - uid: 10813 components: - type: Transform pos: 30.5,1.5 parent: 2 - - uid: 10894 + - uid: 10814 components: - type: Transform pos: 29.5,1.5 parent: 2 - - uid: 10895 + - uid: 10815 components: - type: Transform pos: 28.5,1.5 parent: 2 - - uid: 10896 + - uid: 10816 components: - type: Transform pos: 27.5,1.5 parent: 2 - - uid: 10897 + - uid: 10817 components: - type: Transform pos: 26.5,2.5 parent: 2 - - uid: 10898 + - uid: 10818 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 10899 + - uid: 10819 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 10900 + - uid: 10820 components: - type: Transform pos: -48.5,6.5 parent: 2 - - uid: 10901 + - uid: 10821 components: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 10902 + - uid: 10822 components: - type: Transform pos: 52.5,-0.5 parent: 2 - - uid: 10903 + - uid: 10823 components: - type: Transform pos: 52.5,-1.5 parent: 2 - - uid: 10904 + - uid: 10824 components: - type: Transform pos: 52.5,-2.5 parent: 2 - - uid: 10905 + - uid: 10825 components: - type: Transform pos: 52.5,-3.5 parent: 2 - - uid: 10906 + - uid: 10826 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 10907 + - uid: 10827 components: - type: Transform pos: 50.5,-3.5 parent: 2 - - uid: 10908 + - uid: 10828 components: - type: Transform pos: 50.5,-2.5 parent: 2 - - uid: 10909 + - uid: 10829 components: - type: Transform pos: 50.5,-1.5 parent: 2 - - uid: 10910 + - uid: 10830 components: - type: Transform pos: 61.5,-0.5 parent: 2 - - uid: 10911 + - uid: 10831 components: - type: Transform pos: 61.5,-1.5 parent: 2 - - uid: 10912 + - uid: 10832 components: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 10913 + - uid: 10833 components: - type: Transform pos: 61.5,-3.5 parent: 2 - - uid: 10914 + - uid: 10834 components: - type: Transform pos: 62.5,-3.5 parent: 2 - - uid: 10915 + - uid: 10835 components: - type: Transform pos: 63.5,-3.5 parent: 2 - - uid: 10916 + - uid: 10836 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 10917 + - uid: 10837 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 10918 + - uid: 10838 components: - type: Transform pos: 25.5,-11.5 parent: 2 - - uid: 10919 + - uid: 10839 components: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 10920 + - uid: 10840 components: - type: Transform pos: 25.5,-13.5 parent: 2 - - uid: 10921 + - uid: 10841 components: - type: Transform pos: 25.5,-14.5 parent: 2 - - uid: 10922 + - uid: 10842 components: - type: Transform pos: 26.5,-14.5 parent: 2 - - uid: 10923 + - uid: 10843 components: - type: Transform pos: 27.5,-14.5 parent: 2 - - uid: 10924 + - uid: 10844 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 10925 + - uid: 10845 components: - type: Transform pos: 28.5,-13.5 parent: 2 - - uid: 10926 + - uid: 10846 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 10927 + - uid: 10847 components: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 10928 + - uid: 10848 components: - type: Transform pos: -47.5,7.5 parent: 2 - - uid: 10929 + - uid: 10849 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 10930 + - uid: 10850 components: - type: Transform pos: -47.5,9.5 parent: 2 - - uid: 10931 + - uid: 10851 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 10932 + - uid: 10852 components: - type: Transform pos: -44.5,6.5 parent: 2 - - uid: 10933 + - uid: 10853 components: - type: Transform pos: -44.5,5.5 parent: 2 - - uid: 10934 + - uid: 10854 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 10935 + - uid: 10855 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 10936 + - uid: 10856 components: - type: Transform pos: -46.5,4.5 parent: 2 - - uid: 10937 + - uid: 10857 components: - type: Transform pos: -47.5,4.5 parent: 2 - - uid: 10938 + - uid: 10858 components: - type: Transform pos: -48.5,4.5 parent: 2 - - uid: 10939 + - uid: 10859 components: - type: Transform pos: -48.5,3.5 parent: 2 - - uid: 10940 + - uid: 10860 components: - type: Transform pos: -48.5,2.5 parent: 2 - - uid: 10941 + - uid: 10861 components: - type: Transform pos: -48.5,1.5 parent: 2 - - uid: 10942 + - uid: 10862 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 10943 + - uid: 10863 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 10944 + - uid: 10864 components: - type: Transform pos: -59.5,-0.5 parent: 2 - - uid: 10945 + - uid: 10865 components: - type: Transform pos: -58.5,-0.5 parent: 2 - - uid: 10946 + - uid: 10866 components: - type: Transform pos: -57.5,-0.5 parent: 2 - - uid: 10947 + - uid: 10867 components: - type: Transform pos: -56.5,-0.5 parent: 2 - - uid: 10948 + - uid: 10868 components: - type: Transform pos: -55.5,-0.5 parent: 2 - - uid: 10949 + - uid: 10869 components: - type: Transform pos: -54.5,-0.5 parent: 2 - - uid: 10950 + - uid: 10870 components: - type: Transform pos: -53.5,-0.5 parent: 2 - - uid: 10951 + - uid: 10871 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 10952 + - uid: 10872 components: - type: Transform pos: -52.5,0.5 parent: 2 - - uid: 10953 + - uid: 10873 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 10954 + - uid: 10874 components: - type: Transform pos: -52.5,2.5 parent: 2 - - uid: 10955 + - uid: 10875 components: - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 10956 + - uid: 10876 components: - type: Transform pos: -52.5,4.5 parent: 2 - - uid: 10957 + - uid: 10877 components: - type: Transform pos: -52.5,5.5 parent: 2 - - uid: 10958 + - uid: 10878 components: - type: Transform pos: -52.5,6.5 parent: 2 - - uid: 10959 + - uid: 10879 components: - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 10960 + - uid: 10880 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 10961 + - uid: 10881 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 10962 + - uid: 10882 components: - type: Transform pos: -52.5,10.5 parent: 2 - - uid: 10963 + - uid: 10883 components: - type: Transform pos: -52.5,11.5 parent: 2 - - uid: 10964 + - uid: 10884 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 10965 + - uid: 10885 components: - type: Transform pos: -51.5,12.5 parent: 2 - - uid: 10966 + - uid: 10886 components: - type: Transform pos: -50.5,12.5 parent: 2 - - uid: 10967 + - uid: 10887 components: - type: Transform pos: -49.5,12.5 parent: 2 - - uid: 10968 + - uid: 10888 components: - type: Transform pos: -48.5,12.5 parent: 2 - - uid: 10969 + - uid: 10889 components: - type: Transform pos: -47.5,12.5 parent: 2 - - uid: 10970 + - uid: 10890 components: - type: Transform pos: -46.5,12.5 parent: 2 - - uid: 10971 + - uid: 10891 components: - type: Transform pos: -46.5,13.5 parent: 2 - - uid: 10972 + - uid: 10892 components: - type: Transform pos: -46.5,14.5 parent: 2 - - uid: 10973 + - uid: 10893 components: - type: Transform pos: -46.5,15.5 parent: 2 - - uid: 10974 + - uid: 10894 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 10975 + - uid: 10895 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 10976 + - uid: 10896 components: - type: Transform pos: -62.5,11.5 parent: 2 - - uid: 10977 + - uid: 10897 components: - type: Transform pos: -62.5,10.5 parent: 2 - - uid: 10978 + - uid: 10898 components: - type: Transform pos: -61.5,10.5 parent: 2 - - uid: 10979 + - uid: 10899 components: - type: Transform pos: -60.5,10.5 parent: 2 - - uid: 10980 + - uid: 10900 components: - type: Transform pos: -59.5,10.5 parent: 2 - - uid: 10981 + - uid: 10901 components: - type: Transform pos: -58.5,10.5 parent: 2 - - uid: 10982 + - uid: 10902 components: - type: Transform pos: -57.5,10.5 parent: 2 - - uid: 10983 + - uid: 10903 components: - type: Transform pos: -56.5,10.5 parent: 2 - - uid: 10984 + - uid: 10904 components: - type: Transform pos: -55.5,10.5 parent: 2 - - uid: 10985 + - uid: 10905 components: - type: Transform pos: -54.5,10.5 parent: 2 - - uid: 10986 + - uid: 10906 components: - type: Transform pos: -53.5,10.5 parent: 2 - - uid: 10987 + - uid: 10907 components: - type: Transform pos: -60.5,-4.5 parent: 2 - - uid: 10988 + - uid: 10908 components: - type: Transform pos: -60.5,-5.5 parent: 2 - - uid: 10989 + - uid: 10909 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 10990 + - uid: 10910 components: - type: Transform pos: -60.5,-7.5 parent: 2 - - uid: 10991 + - uid: 10911 components: - type: Transform pos: -60.5,-8.5 parent: 2 - - uid: 10992 + - uid: 10912 components: - type: Transform pos: -59.5,-8.5 parent: 2 - - uid: 10993 + - uid: 10913 components: - type: Transform pos: -58.5,-8.5 parent: 2 - - uid: 10994 + - uid: 10914 components: - type: Transform pos: -57.5,-8.5 parent: 2 - - uid: 10995 + - uid: 10915 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 10996 + - uid: 10916 components: - type: Transform pos: -55.5,-8.5 parent: 2 - - uid: 10997 + - uid: 10917 components: - type: Transform pos: -54.5,-8.5 parent: 2 - - uid: 10998 + - uid: 10918 components: - type: Transform pos: -53.5,-8.5 parent: 2 - - uid: 10999 + - uid: 10919 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 11000 + - uid: 10920 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 11001 + - uid: 10921 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 11002 + - uid: 10922 components: - type: Transform pos: -52.5,-5.5 parent: 2 - - uid: 11003 + - uid: 10923 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 11004 + - uid: 10924 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 11005 + - uid: 10925 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 11006 + - uid: 10926 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 11007 + - uid: 10927 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 11008 + - uid: 10928 components: - type: Transform pos: -65.5,-4.5 parent: 2 - - uid: 11009 + - uid: 10929 components: - type: Transform pos: -65.5,-5.5 parent: 2 - - uid: 11010 + - uid: 10930 components: - type: Transform pos: -65.5,-6.5 parent: 2 - - uid: 11011 + - uid: 10931 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 11012 + - uid: 10932 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 11013 + - uid: 10933 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 11014 + - uid: 10934 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 11015 + - uid: 10935 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 11016 + - uid: 10936 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 11017 + - uid: 10937 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 11018 + - uid: 10938 components: - type: Transform pos: -68.5,2.5 parent: 2 - - uid: 11019 + - uid: 10939 components: - type: Transform pos: -68.5,1.5 parent: 2 - - uid: 11020 + - uid: 10940 components: - type: Transform pos: -68.5,0.5 parent: 2 - - uid: 11021 + - uid: 10941 components: - type: Transform pos: -68.5,-0.5 parent: 2 - - uid: 11022 + - uid: 10942 components: - type: Transform pos: -68.5,-1.5 parent: 2 - - uid: 11023 + - uid: 10943 components: - type: Transform pos: -68.5,-2.5 parent: 2 - - uid: 11024 + - uid: 10944 components: - type: Transform pos: -68.5,-4.5 parent: 2 - - uid: 11025 + - uid: 10945 components: - type: Transform pos: -68.5,-3.5 parent: 2 - - uid: 11026 + - uid: 10946 components: - type: Transform pos: -67.5,-6.5 parent: 2 - - uid: 11027 + - uid: 10947 components: - type: Transform pos: -66.5,-6.5 parent: 2 - - uid: 11028 + - uid: 10948 components: - type: Transform pos: -68.5,-5.5 parent: 2 - - uid: 11029 + - uid: 10949 components: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 11030 + - uid: 10950 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 11031 + - uid: 10951 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 11032 + - uid: 10952 components: - type: Transform pos: -50.5,1.5 parent: 2 - - uid: 11033 + - uid: 10953 components: - type: Transform pos: -49.5,1.5 parent: 2 - - uid: 11034 + - uid: 10954 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 11035 + - uid: 10955 components: - type: Transform pos: -56.5,20.5 parent: 2 - - uid: 11036 + - uid: 10956 components: - type: Transform pos: -57.5,20.5 parent: 2 - - uid: 11037 + - uid: 10957 components: - type: Transform pos: -57.5,19.5 parent: 2 - - uid: 11038 + - uid: 10958 components: - type: Transform pos: -57.5,18.5 parent: 2 - - uid: 11039 + - uid: 10959 components: - type: Transform pos: -57.5,17.5 parent: 2 - - uid: 11040 + - uid: 10960 components: - type: Transform pos: -57.5,16.5 parent: 2 - - uid: 11041 + - uid: 10961 components: - type: Transform pos: -57.5,15.5 parent: 2 - - uid: 11042 + - uid: 10962 components: - type: Transform pos: -57.5,14.5 parent: 2 - - uid: 11043 + - uid: 10963 components: - type: Transform pos: -57.5,13.5 parent: 2 - - uid: 11044 + - uid: 10964 components: - type: Transform pos: -57.5,12.5 parent: 2 - - uid: 11045 + - uid: 10965 components: - type: Transform pos: -57.5,11.5 parent: 2 - - uid: 11046 + - uid: 10966 components: - type: Transform pos: -58.5,14.5 parent: 2 - - uid: 11047 + - uid: 10967 components: - type: Transform pos: -59.5,14.5 parent: 2 - - uid: 11048 + - uid: 10968 components: - type: Transform pos: -60.5,14.5 parent: 2 - - uid: 11049 + - uid: 10969 components: - type: Transform pos: -61.5,14.5 parent: 2 - - uid: 11050 + - uid: 10970 components: - type: Transform pos: -62.5,14.5 parent: 2 - - uid: 11051 + - uid: 10971 components: - type: Transform pos: -62.5,15.5 parent: 2 - - uid: 11052 + - uid: 10972 components: - type: Transform pos: -62.5,16.5 parent: 2 - - uid: 11053 + - uid: 10973 components: - type: Transform pos: -62.5,17.5 parent: 2 - - uid: 11054 + - uid: 10974 components: - type: Transform pos: -62.5,18.5 parent: 2 - - uid: 11055 + - uid: 10975 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 11056 + - uid: 10976 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 11057 + - uid: 10977 components: - type: Transform pos: -77.5,16.5 parent: 2 - - uid: 11058 + - uid: 10978 components: - type: Transform pos: -77.5,15.5 parent: 2 - - uid: 11059 + - uid: 10979 components: - type: Transform pos: -76.5,15.5 parent: 2 - - uid: 11060 + - uid: 10980 components: - type: Transform pos: -75.5,15.5 parent: 2 - - uid: 11061 + - uid: 10981 components: - type: Transform pos: -74.5,15.5 parent: 2 - - uid: 11062 + - uid: 10982 components: - type: Transform pos: -73.5,15.5 parent: 2 - - uid: 11063 + - uid: 10983 components: - type: Transform pos: -72.5,15.5 parent: 2 - - uid: 11064 + - uid: 10984 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 11065 + - uid: 10985 components: - type: Transform pos: -70.5,15.5 parent: 2 - - uid: 11066 + - uid: 10986 components: - type: Transform pos: -69.5,15.5 parent: 2 - - uid: 11067 + - uid: 10987 components: - type: Transform pos: -68.5,15.5 parent: 2 - - uid: 11068 + - uid: 10988 components: - type: Transform pos: -67.5,15.5 parent: 2 - - uid: 11069 + - uid: 10989 components: - type: Transform pos: -66.5,15.5 parent: 2 - - uid: 11070 + - uid: 10990 components: - type: Transform pos: -65.5,15.5 parent: 2 - - uid: 11071 + - uid: 10991 components: - type: Transform pos: -64.5,15.5 parent: 2 - - uid: 11072 + - uid: 10992 components: - type: Transform pos: -63.5,15.5 parent: 2 - - uid: 11073 + - uid: 10993 components: - type: Transform pos: -123.5,24.5 parent: 2 - - uid: 11074 + - uid: 10994 components: - type: Transform pos: -123.5,23.5 parent: 2 - - uid: 11075 + - uid: 10995 components: - type: Transform pos: -122.5,23.5 parent: 2 - - uid: 11076 + - uid: 10996 components: - type: Transform pos: -121.5,23.5 parent: 2 - - uid: 11077 + - uid: 10997 components: - type: Transform pos: -120.5,23.5 parent: 2 - - uid: 11078 + - uid: 10998 components: - type: Transform pos: -119.5,23.5 parent: 2 - - uid: 11079 + - uid: 10999 components: - type: Transform pos: -118.5,23.5 parent: 2 - - uid: 11080 + - uid: 11000 components: - type: Transform pos: -118.5,23.5 parent: 2 - - uid: 11081 + - uid: 11001 components: - type: Transform pos: -118.5,22.5 parent: 2 - - uid: 11082 + - uid: 11002 components: - type: Transform pos: -118.5,21.5 parent: 2 - - uid: 11083 + - uid: 11003 components: - type: Transform pos: -118.5,20.5 parent: 2 - - uid: 11084 + - uid: 11004 components: - type: Transform pos: -118.5,24.5 parent: 2 - - uid: 11085 + - uid: 11005 components: - type: Transform pos: -118.5,25.5 parent: 2 - - uid: 11086 + - uid: 11006 components: - type: Transform pos: -118.5,26.5 parent: 2 - - uid: 11087 + - uid: 11007 components: - type: Transform pos: -118.5,27.5 parent: 2 - - uid: 11088 + - uid: 11008 components: - type: Transform pos: -118.5,28.5 parent: 2 - - uid: 11089 + - uid: 11009 components: - type: Transform pos: -118.5,29.5 parent: 2 - - uid: 11090 + - uid: 11010 components: - type: Transform pos: -118.5,30.5 parent: 2 - - uid: 11091 + - uid: 11011 components: - type: Transform pos: -118.5,31.5 parent: 2 - - uid: 11092 + - uid: 11012 components: - type: Transform pos: -118.5,32.5 parent: 2 - - uid: 11093 + - uid: 11013 components: - type: Transform pos: -118.5,33.5 parent: 2 - - uid: 11094 + - uid: 11014 components: - type: Transform pos: -118.5,34.5 parent: 2 - - uid: 11095 + - uid: 11015 components: - type: Transform pos: -118.5,35.5 parent: 2 - - uid: 11096 + - uid: 11016 components: - type: Transform pos: -118.5,36.5 parent: 2 - - uid: 11097 + - uid: 11017 components: - type: Transform pos: -118.5,37.5 parent: 2 - - uid: 11098 + - uid: 11018 components: - type: Transform pos: -118.5,38.5 parent: 2 - - uid: 11099 + - uid: 11019 components: - type: Transform pos: -118.5,39.5 parent: 2 - - uid: 11100 + - uid: 11020 components: - type: Transform pos: -118.5,40.5 parent: 2 - - uid: 11101 + - uid: 11021 components: - type: Transform pos: -118.5,41.5 parent: 2 - - uid: 11102 + - uid: 11022 components: - type: Transform pos: -118.5,42.5 parent: 2 - - uid: 11103 + - uid: 11023 components: - type: Transform pos: -118.5,43.5 parent: 2 - - uid: 11104 + - uid: 11024 components: - type: Transform pos: -118.5,44.5 parent: 2 - - uid: 11105 + - uid: 11025 components: - type: Transform pos: -118.5,45.5 parent: 2 - - uid: 11106 + - uid: 11026 components: - type: Transform pos: -118.5,46.5 parent: 2 - - uid: 11107 + - uid: 11027 components: - type: Transform pos: -118.5,47.5 parent: 2 - - uid: 11108 + - uid: 11028 components: - type: Transform pos: -118.5,48.5 parent: 2 - - uid: 11109 + - uid: 11029 components: - type: Transform pos: -118.5,49.5 parent: 2 - - uid: 11110 + - uid: 11030 components: - type: Transform pos: -118.5,50.5 parent: 2 - - uid: 11111 + - uid: 11031 components: - type: Transform pos: -118.5,51.5 parent: 2 - - uid: 11112 + - uid: 11032 components: - type: Transform pos: -119.5,40.5 parent: 2 - - uid: 11113 + - uid: 11033 components: - type: Transform pos: -120.5,40.5 parent: 2 - - uid: 11114 + - uid: 11034 components: - type: Transform pos: -121.5,40.5 parent: 2 - - uid: 11115 + - uid: 11035 components: - type: Transform pos: -122.5,40.5 parent: 2 - - uid: 11116 + - uid: 11036 components: - type: Transform pos: -123.5,40.5 parent: 2 - - uid: 11117 + - uid: 11037 components: - type: Transform pos: -123.5,41.5 parent: 2 - - uid: 11118 + - uid: 11038 components: - type: Transform pos: -123.5,42.5 parent: 2 - - uid: 11119 + - uid: 11039 components: - type: Transform pos: -123.5,43.5 parent: 2 - - uid: 11120 + - uid: 11040 components: - type: Transform pos: -123.5,44.5 parent: 2 - - uid: 11121 + - uid: 11041 components: - type: Transform pos: -117.5,40.5 parent: 2 - - uid: 11122 + - uid: 11042 components: - type: Transform pos: -116.5,40.5 parent: 2 - - uid: 11123 + - uid: 11043 components: - type: Transform pos: -115.5,40.5 parent: 2 - - uid: 11124 + - uid: 11044 components: - type: Transform pos: -114.5,40.5 parent: 2 - - uid: 11125 + - uid: 11045 components: - type: Transform pos: -113.5,40.5 parent: 2 - - uid: 11126 + - uid: 11046 components: - type: Transform pos: -113.5,41.5 parent: 2 - - uid: 11127 + - uid: 11047 components: - type: Transform pos: -113.5,42.5 parent: 2 - - uid: 11128 + - uid: 11048 components: - type: Transform pos: -113.5,43.5 parent: 2 - - uid: 11129 + - uid: 11049 components: - type: Transform pos: -113.5,44.5 parent: 2 - - uid: 11130 + - uid: 11050 components: - type: Transform pos: -69.5,13.5 parent: 2 - - uid: 11131 + - uid: 11051 components: - type: Transform pos: -69.5,12.5 parent: 2 - - uid: 11132 + - uid: 11052 components: - type: Transform pos: -69.5,11.5 parent: 2 - - uid: 11133 + - uid: 11053 components: - type: Transform pos: -69.5,10.5 parent: 2 - - uid: 11134 + - uid: 11054 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 11135 + - uid: 11055 components: - type: Transform pos: -71.5,10.5 parent: 2 - - uid: 11136 + - uid: 11056 components: - type: Transform pos: -72.5,10.5 parent: 2 - - uid: 11137 + - uid: 11057 components: - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 11138 + - uid: 11058 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 11139 + - uid: 11059 components: - type: Transform pos: -65.5,56.5 parent: 2 - - uid: 11140 + - uid: 11060 components: - type: Transform pos: -65.5,55.5 parent: 2 - - uid: 11141 + - uid: 11061 components: - type: Transform pos: -64.5,55.5 parent: 2 - - uid: 11142 + - uid: 11062 components: - type: Transform pos: -63.5,55.5 parent: 2 - - uid: 11143 + - uid: 11063 components: - type: Transform pos: -62.5,55.5 parent: 2 - - uid: 11144 + - uid: 11064 components: - type: Transform pos: -61.5,55.5 parent: 2 - - uid: 11145 + - uid: 11065 components: - type: Transform pos: -61.5,56.5 parent: 2 - - uid: 11146 + - uid: 11066 components: - type: Transform pos: -61.5,57.5 parent: 2 - - uid: 11147 + - uid: 11067 components: - type: Transform pos: -60.5,57.5 parent: 2 - - uid: 11148 + - uid: 11068 components: - type: Transform pos: -59.5,57.5 parent: 2 - - uid: 11149 + - uid: 11069 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 11150 + - uid: 11070 components: - type: Transform pos: -57.5,60.5 parent: 2 - - uid: 11151 + - uid: 11071 components: - type: Transform pos: -58.5,60.5 parent: 2 - - uid: 11152 + - uid: 11072 components: - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 11153 + - uid: 11073 components: - type: Transform pos: -58.5,58.5 parent: 2 - - uid: 11154 + - uid: 11074 components: - type: Transform pos: -58.5,56.5 parent: 2 - - uid: 11155 + - uid: 11075 components: - type: Transform pos: -58.5,55.5 parent: 2 - - uid: 11156 + - uid: 11076 components: - type: Transform pos: -58.5,54.5 parent: 2 - - uid: 11157 + - uid: 11077 components: - type: Transform pos: -58.5,53.5 parent: 2 - - uid: 11158 + - uid: 11078 components: - type: Transform pos: -58.5,52.5 parent: 2 - - uid: 11159 + - uid: 11079 components: - type: Transform pos: -58.5,51.5 parent: 2 - - uid: 11160 + - uid: 11080 components: - type: Transform pos: -58.5,50.5 parent: 2 - - uid: 11161 + - uid: 11081 components: - type: Transform pos: -58.5,49.5 parent: 2 - - uid: 11162 + - uid: 11082 components: - type: Transform pos: -58.5,48.5 parent: 2 - - uid: 11163 + - uid: 11083 components: - type: Transform pos: -58.5,47.5 parent: 2 - - uid: 11164 + - uid: 11084 components: - type: Transform pos: -58.5,46.5 parent: 2 - - uid: 11165 + - uid: 11085 components: - type: Transform pos: -58.5,45.5 parent: 2 - - uid: 11166 + - uid: 11086 components: - type: Transform pos: -57.5,45.5 parent: 2 - - uid: 11167 + - uid: 11087 components: - type: Transform pos: -56.5,45.5 parent: 2 - - uid: 11168 + - uid: 11088 components: - type: Transform pos: -55.5,45.5 parent: 2 - - uid: 11169 + - uid: 11089 components: - type: Transform pos: -54.5,45.5 parent: 2 - - uid: 11170 + - uid: 11090 components: - type: Transform pos: -53.5,45.5 parent: 2 - - uid: 11171 + - uid: 11091 components: - type: Transform pos: -52.5,45.5 parent: 2 - - uid: 11172 + - uid: 11092 components: - type: Transform pos: -51.5,45.5 parent: 2 - - uid: 11173 + - uid: 11093 components: - type: Transform pos: -50.5,45.5 parent: 2 - - uid: 11174 + - uid: 11094 components: - type: Transform pos: -49.5,45.5 parent: 2 - - uid: 11175 + - uid: 11095 components: - type: Transform pos: -48.5,45.5 parent: 2 - - uid: 11176 + - uid: 11096 components: - type: Transform pos: -47.5,45.5 parent: 2 - - uid: 11177 + - uid: 11097 components: - type: Transform pos: -46.5,45.5 parent: 2 - - uid: 11178 + - uid: 11098 components: - type: Transform pos: -45.5,45.5 parent: 2 - - uid: 11179 + - uid: 11099 components: - type: Transform pos: -44.5,45.5 parent: 2 - - uid: 11180 + - uid: 11100 components: - type: Transform pos: -44.5,49.5 parent: 2 - - uid: 11181 + - uid: 11101 components: - type: Transform pos: -44.5,48.5 parent: 2 - - uid: 11182 + - uid: 11102 components: - type: Transform pos: -44.5,47.5 parent: 2 - - uid: 11183 + - uid: 11103 components: - type: Transform pos: -44.5,46.5 parent: 2 - - uid: 11184 + - uid: 11104 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 11185 + - uid: 11105 components: - type: Transform pos: -49.5,39.5 parent: 2 - - uid: 11186 + - uid: 11106 components: - type: Transform pos: -49.5,40.5 parent: 2 - - uid: 11187 + - uid: 11107 components: - type: Transform pos: -49.5,41.5 parent: 2 - - uid: 11188 + - uid: 11108 components: - type: Transform pos: -49.5,42.5 parent: 2 - - uid: 11189 + - uid: 11109 components: - type: Transform pos: -50.5,41.5 parent: 2 - - uid: 11190 + - uid: 11110 components: - type: Transform pos: -51.5,41.5 parent: 2 - - uid: 11191 + - uid: 11111 components: - type: Transform pos: -52.5,41.5 parent: 2 - - uid: 11192 + - uid: 11112 components: - type: Transform pos: -53.5,41.5 parent: 2 - - uid: 11193 + - uid: 11113 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 11194 + - uid: 11114 components: - type: Transform pos: -55.5,41.5 parent: 2 - - uid: 11195 + - uid: 11115 components: - type: Transform pos: -56.5,41.5 parent: 2 - - uid: 11196 + - uid: 11116 components: - type: Transform pos: -57.5,41.5 parent: 2 - - uid: 11197 + - uid: 11117 components: - type: Transform pos: -58.5,41.5 parent: 2 - - uid: 11198 + - uid: 11118 components: - type: Transform pos: -59.5,41.5 parent: 2 - - uid: 11199 + - uid: 11119 components: - type: Transform pos: -60.5,41.5 parent: 2 - - uid: 11200 + - uid: 11120 components: - type: Transform pos: -60.5,42.5 parent: 2 - - uid: 11201 + - uid: 11121 components: - type: Transform pos: -60.5,43.5 parent: 2 - - uid: 11202 + - uid: 11122 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 11203 + - uid: 11123 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 11204 + - uid: 11124 components: - type: Transform pos: -56.5,38.5 parent: 2 - - uid: 11205 + - uid: 11125 components: - type: Transform pos: -55.5,38.5 parent: 2 - - uid: 11206 + - uid: 11126 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 11207 + - uid: 11127 components: - type: Transform pos: -54.5,37.5 parent: 2 - - uid: 11208 + - uid: 11128 components: - type: Transform pos: -54.5,36.5 parent: 2 - - uid: 11209 + - uid: 11129 components: - type: Transform pos: -54.5,35.5 parent: 2 - - uid: 11210 + - uid: 11130 components: - type: Transform pos: -54.5,34.5 parent: 2 - - uid: 11211 + - uid: 11131 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 11212 + - uid: 11132 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 11213 + - uid: 11133 components: - type: Transform pos: -54.5,31.5 parent: 2 - - uid: 11214 + - uid: 11134 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 11215 + - uid: 11135 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 11216 + - uid: 11136 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 11217 + - uid: 11137 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 11218 + - uid: 11138 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 11219 + - uid: 11139 components: - type: Transform pos: -50.5,30.5 parent: 2 - - uid: 11220 + - uid: 11140 components: - type: Transform pos: -49.5,30.5 parent: 2 - - uid: 11221 + - uid: 11141 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 11222 + - uid: 11142 components: - type: Transform pos: -47.5,30.5 parent: 2 - - uid: 11223 + - uid: 11143 components: - type: Transform pos: -46.5,30.5 parent: 2 - - uid: 11224 + - uid: 11144 components: - type: Transform pos: -46.5,31.5 parent: 2 - - uid: 11225 + - uid: 11145 components: - type: Transform pos: -46.5,32.5 parent: 2 - - uid: 11226 + - uid: 11146 components: - type: Transform pos: -46.5,33.5 parent: 2 - - uid: 11227 + - uid: 11147 components: - type: Transform pos: -46.5,34.5 parent: 2 - - uid: 11228 + - uid: 11148 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 11229 + - uid: 11149 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 11230 + - uid: 11150 components: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 11231 + - uid: 11151 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 11232 + - uid: 11152 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 11233 + - uid: 11153 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 11234 + - uid: 11154 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 11235 + - uid: 11155 components: - type: Transform pos: -56.5,25.5 parent: 2 - - uid: 11236 + - uid: 11156 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 11237 + - uid: 11157 components: - type: Transform pos: -55.5,24.5 parent: 2 - - uid: 11238 + - uid: 11158 components: - type: Transform pos: -54.5,24.5 parent: 2 - - uid: 11239 + - uid: 11159 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 11240 + - uid: 11160 components: - type: Transform pos: -52.5,24.5 parent: 2 - - uid: 11241 + - uid: 11161 components: - type: Transform pos: -51.5,24.5 parent: 2 - - uid: 11242 + - uid: 11162 components: - type: Transform pos: -51.5,25.5 parent: 2 - - uid: 11243 + - uid: 11163 components: - type: Transform pos: -51.5,26.5 parent: 2 - - uid: 11244 + - uid: 11164 components: - type: Transform pos: -53.5,23.5 parent: 2 - - uid: 11245 + - uid: 11165 components: - type: Transform pos: -53.5,22.5 parent: 2 - - uid: 11246 + - uid: 11166 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 11247 + - uid: 11167 components: - type: Transform pos: -52.5,21.5 parent: 2 - - uid: 11248 + - uid: 11168 components: - type: Transform pos: -51.5,21.5 parent: 2 - - uid: 11249 + - uid: 11169 components: - type: Transform pos: -50.5,21.5 parent: 2 - - uid: 11250 + - uid: 11170 components: - type: Transform pos: -49.5,21.5 parent: 2 - - uid: 11251 + - uid: 11171 components: - type: Transform pos: -48.5,21.5 parent: 2 - - uid: 11252 + - uid: 11172 components: - type: Transform pos: -47.5,21.5 parent: 2 - - uid: 11253 + - uid: 11173 components: - type: Transform pos: -47.5,22.5 parent: 2 - - uid: 11254 + - uid: 11174 components: - type: Transform pos: -47.5,23.5 parent: 2 - - uid: 11255 + - uid: 11175 components: - type: Transform pos: -46.5,23.5 parent: 2 - - uid: 11256 + - uid: 11176 components: - type: Transform pos: -45.5,23.5 parent: 2 - - uid: 11257 + - uid: 11177 components: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 11258 + - uid: 11178 components: - type: Transform pos: -22.5,-71.5 parent: 2 - - uid: 11259 + - uid: 11179 components: - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 11260 + - uid: 11180 components: - type: Transform pos: -25.5,-78.5 parent: 2 - - uid: 11261 + - uid: 11181 components: - type: Transform pos: -25.5,-77.5 parent: 2 - - uid: 11262 + - uid: 11182 components: - type: Transform pos: -25.5,-76.5 parent: 2 - - uid: 11263 + - uid: 11183 components: - type: Transform pos: -25.5,-75.5 parent: 2 - - uid: 11264 + - uid: 11184 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 11265 + - uid: 11185 components: - type: Transform pos: -25.5,-73.5 parent: 2 - - uid: 11266 + - uid: 11186 components: - type: Transform pos: -25.5,-72.5 parent: 2 - - uid: 11267 + - uid: 11187 components: - type: Transform pos: -25.5,-71.5 parent: 2 - - uid: 11268 + - uid: 11188 components: - type: Transform pos: -26.5,-71.5 parent: 2 - - uid: 11269 + - uid: 11189 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 11270 + - uid: 11190 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 11271 + - uid: 11191 components: - type: Transform pos: -26.5,-68.5 parent: 2 - - uid: 11272 + - uid: 11192 components: - type: Transform pos: -26.5,-67.5 parent: 2 - - uid: 11273 + - uid: 11193 components: - type: Transform pos: -26.5,-66.5 parent: 2 - - uid: 11274 + - uid: 11194 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 11275 + - uid: 11195 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 11276 + - uid: 11196 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 11277 + - uid: 11197 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 11278 + - uid: 11198 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 11279 + - uid: 11199 components: - type: Transform pos: -25.5,-61.5 parent: 2 - - uid: 11280 + - uid: 11200 components: - type: Transform pos: -24.5,-61.5 parent: 2 - - uid: 11281 + - uid: 11201 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 11282 + - uid: 11202 components: - type: Transform pos: -23.5,-62.5 parent: 2 - - uid: 11283 + - uid: 11203 components: - type: Transform pos: -23.5,-63.5 parent: 2 - - uid: 11284 + - uid: 11204 components: - type: Transform pos: -23.5,-64.5 parent: 2 - - uid: 11285 + - uid: 11205 components: - type: Transform pos: -23.5,-65.5 parent: 2 - - uid: 11286 + - uid: 11206 components: - type: Transform pos: -23.5,-66.5 parent: 2 - - uid: 11287 + - uid: 11207 components: - type: Transform pos: -23.5,-67.5 parent: 2 - - uid: 11288 + - uid: 11208 components: - type: Transform pos: -23.5,-68.5 parent: 2 - - uid: 11289 + - uid: 11209 components: - type: Transform pos: -23.5,-69.5 parent: 2 - - uid: 11290 + - uid: 11210 components: - type: Transform pos: -22.5,-69.5 parent: 2 - - uid: 11291 + - uid: 11211 components: - type: Transform pos: -22.5,-72.5 parent: 2 - - uid: 11292 + - uid: 11212 components: - type: Transform pos: -22.5,-73.5 parent: 2 - - uid: 11293 + - uid: 11213 components: - type: Transform pos: -22.5,-74.5 parent: 2 - - uid: 11294 + - uid: 11214 components: - type: Transform pos: -22.5,-75.5 parent: 2 - - uid: 11295 + - uid: 11215 components: - type: Transform pos: -22.5,-76.5 parent: 2 - - uid: 11296 + - uid: 11216 components: - type: Transform pos: -22.5,-77.5 parent: 2 - - uid: 11297 + - uid: 11217 components: - type: Transform pos: -22.5,-78.5 parent: 2 - - uid: 11298 + - uid: 11218 components: - type: Transform pos: -22.5,-79.5 parent: 2 - - uid: 11299 + - uid: 11219 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 11300 + - uid: 11220 components: - type: Transform pos: -20.5,-79.5 parent: 2 - - uid: 11301 + - uid: 11221 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 11302 + - uid: 11222 components: - type: Transform pos: -22.5,-65.5 parent: 2 - - uid: 11303 + - uid: 11223 components: - type: Transform pos: -21.5,-65.5 parent: 2 - - uid: 11304 + - uid: 11224 components: - type: Transform pos: -20.5,-65.5 parent: 2 - - uid: 11305 + - uid: 11225 components: - type: Transform pos: -19.5,-65.5 parent: 2 - - uid: 11306 + - uid: 11226 components: - type: Transform pos: -18.5,-65.5 parent: 2 - - uid: 11307 + - uid: 11227 components: - type: Transform pos: -17.5,-65.5 parent: 2 - - uid: 11308 + - uid: 11228 components: - type: Transform pos: -16.5,-65.5 parent: 2 - - uid: 11309 + - uid: 11229 components: - type: Transform pos: -15.5,-65.5 parent: 2 - - uid: 11310 + - uid: 11230 components: - type: Transform pos: -15.5,-64.5 parent: 2 - - uid: 11311 + - uid: 11231 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 11312 + - uid: 11232 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 11313 + - uid: 11233 components: - type: Transform pos: -22.5,-61.5 parent: 2 - - uid: 11314 + - uid: 11234 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 11315 + - uid: 11235 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 11316 + - uid: 11236 components: - type: Transform pos: -19.5,-61.5 parent: 2 - - uid: 11317 + - uid: 11237 components: - type: Transform pos: -18.5,-61.5 parent: 2 - - uid: 11318 + - uid: 11238 components: - type: Transform pos: -18.5,-60.5 parent: 2 - - uid: 11319 + - uid: 11239 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 11320 + - uid: 11240 components: - type: Transform pos: -26.5,-60.5 parent: 2 - - uid: 11321 + - uid: 11241 components: - type: Transform pos: -26.5,-59.5 parent: 2 - - uid: 11322 + - uid: 11242 components: - type: Transform pos: -26.5,-58.5 parent: 2 - - uid: 11323 + - uid: 11243 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 11324 + - uid: 11244 components: - type: Transform pos: -27.5,-57.5 parent: 2 - - uid: 11325 + - uid: 11245 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 11326 + - uid: 11246 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 11327 + - uid: 11247 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 11328 + - uid: 11248 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 11329 + - uid: 11249 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 11330 + - uid: 11250 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 11331 + - uid: 11251 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - uid: 11332 + - uid: 11252 components: - type: Transform pos: -35.5,-57.5 parent: 2 - - uid: 11333 + - uid: 11253 components: - type: Transform pos: -36.5,-57.5 parent: 2 - - uid: 11334 + - uid: 11254 components: - type: Transform pos: -36.5,-58.5 parent: 2 - - uid: 11335 + - uid: 11255 components: - type: Transform pos: -36.5,-59.5 parent: 2 - - uid: 11336 + - uid: 11256 components: - type: Transform pos: -36.5,-60.5 parent: 2 - - uid: 11337 + - uid: 11257 components: - type: Transform pos: -36.5,-61.5 parent: 2 - - uid: 11338 + - uid: 11258 components: - type: Transform pos: -36.5,-62.5 parent: 2 - - uid: 11339 + - uid: 11259 components: - type: Transform pos: -36.5,-63.5 parent: 2 - - uid: 11340 + - uid: 11260 components: - type: Transform pos: -36.5,-64.5 parent: 2 - - uid: 11341 + - uid: 11261 components: - type: Transform pos: -36.5,-65.5 parent: 2 - - uid: 11342 + - uid: 11262 components: - type: Transform pos: -37.5,-65.5 parent: 2 - - uid: 11343 + - uid: 11263 components: - type: Transform pos: -38.5,-65.5 parent: 2 - - uid: 11344 + - uid: 11264 components: - type: Transform pos: -39.5,-65.5 parent: 2 - - uid: 11345 + - uid: 11265 components: - type: Transform pos: -39.5,-64.5 parent: 2 - - uid: 11346 + - uid: 11266 components: - type: Transform pos: -39.5,-63.5 parent: 2 - - uid: 11347 + - uid: 11267 components: - type: Transform pos: -28.5,-70.5 parent: 2 - - uid: 11348 + - uid: 11268 components: - type: Transform pos: -27.5,-70.5 parent: 2 - - uid: 11349 + - uid: 11269 components: - type: Transform pos: -29.5,-70.5 parent: 2 - - uid: 11350 + - uid: 11270 components: - type: Transform pos: -30.5,-70.5 parent: 2 - - uid: 11351 + - uid: 11271 components: - type: Transform pos: -31.5,-70.5 parent: 2 - - uid: 11352 + - uid: 11272 components: - type: Transform pos: -32.5,-70.5 parent: 2 - - uid: 11353 + - uid: 11273 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 11354 + - uid: 11274 components: - type: Transform pos: -32.5,-72.5 parent: 2 - - uid: 11355 + - uid: 11275 components: - type: Transform pos: -32.5,-73.5 parent: 2 - - uid: 11356 + - uid: 11276 components: - type: Transform pos: -32.5,-74.5 parent: 2 - - uid: 11357 + - uid: 11277 components: - type: Transform pos: -31.5,-74.5 parent: 2 - - uid: 11358 + - uid: 11278 components: - type: Transform pos: -30.5,-74.5 parent: 2 - - uid: 11359 + - uid: 11279 components: - type: Transform pos: -29.5,-74.5 parent: 2 - - uid: 11360 + - uid: 11280 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 11361 + - uid: 11281 components: - type: Transform pos: -28.5,-69.5 parent: 2 - - uid: 11362 + - uid: 11282 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 11363 + - uid: 11283 components: - type: Transform pos: -31.5,-55.5 parent: 2 - - uid: 11364 + - uid: 11284 components: - type: Transform pos: -33.5,-56.5 parent: 2 - - uid: 11365 + - uid: 11285 components: - type: Transform pos: -33.5,-55.5 parent: 2 - - uid: 11366 + - uid: 11286 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - uid: 11367 + - uid: 11287 components: - type: Transform pos: -33.5,-53.5 parent: 2 - - uid: 11368 + - uid: 11288 components: - type: Transform pos: -33.5,-52.5 parent: 2 - - uid: 11369 + - uid: 11289 components: - type: Transform pos: -32.5,-52.5 parent: 2 - - uid: 11370 + - uid: 11290 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 11371 + - uid: 11291 components: - type: Transform pos: -30.5,-52.5 parent: 2 - - uid: 11372 + - uid: 11292 components: - type: Transform pos: -29.5,-52.5 parent: 2 - - uid: 11373 + - uid: 11293 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 11374 + - uid: 11294 components: - type: Transform pos: -28.5,-51.5 parent: 2 - - uid: 11375 + - uid: 11295 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 11376 + - uid: 11296 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 11377 + - uid: 11297 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 11378 + - uid: 11298 components: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 11379 + - uid: 11299 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 11380 + - uid: 11300 components: - type: Transform pos: -36.5,-51.5 parent: 2 - - uid: 11381 + - uid: 11301 components: - type: Transform pos: -36.5,-52.5 parent: 2 - - uid: 11382 + - uid: 11302 components: - type: Transform pos: -35.5,-52.5 parent: 2 - - uid: 11383 + - uid: 11303 components: - type: Transform pos: -34.5,-52.5 parent: 2 - - uid: 11384 + - uid: 11304 components: - type: Transform pos: -33.5,-52.5 parent: 2 - - uid: 11385 + - uid: 11305 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 11386 + - uid: 11306 components: - type: Transform pos: -22.5,-30.5 parent: 2 - - uid: 11387 + - uid: 11307 components: - type: Transform pos: -22.5,-31.5 parent: 2 - - uid: 11388 + - uid: 11308 components: - type: Transform pos: -22.5,-32.5 parent: 2 - - uid: 11389 + - uid: 11309 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 11390 + - uid: 11310 components: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 11391 + - uid: 11311 components: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 11392 + - uid: 11312 components: - type: Transform pos: -24.5,-34.5 parent: 2 - - uid: 11393 + - uid: 11313 components: - type: Transform pos: -25.5,-34.5 parent: 2 - - uid: 11394 + - uid: 11314 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 11395 + - uid: 11315 components: - type: Transform pos: -27.5,-34.5 parent: 2 - - uid: 11396 + - uid: 11316 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 11397 + - uid: 11317 components: - type: Transform pos: -28.5,-33.5 parent: 2 - - uid: 11398 + - uid: 11318 components: - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 11399 + - uid: 11319 components: - type: Transform pos: -28.5,-31.5 parent: 2 - - uid: 11400 + - uid: 11320 components: - type: Transform pos: -28.5,-30.5 parent: 2 - - uid: 11401 + - uid: 11321 components: - type: Transform pos: -28.5,-29.5 parent: 2 - - uid: 11402 + - uid: 11322 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 11403 + - uid: 11323 components: - type: Transform pos: -28.5,-27.5 parent: 2 - - uid: 11404 + - uid: 11324 components: - type: Transform pos: -28.5,-26.5 parent: 2 - - uid: 11405 + - uid: 11325 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 11406 + - uid: 11326 components: - type: Transform pos: -27.5,-25.5 parent: 2 - - uid: 11407 + - uid: 11327 components: - type: Transform pos: -26.5,-25.5 parent: 2 - - uid: 11408 + - uid: 11328 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 11409 + - uid: 11329 components: - type: Transform pos: -32.5,-47.5 parent: 2 - - uid: 11410 + - uid: 11330 components: - type: Transform pos: -32.5,-46.5 parent: 2 - - uid: 11411 + - uid: 11331 components: - type: Transform pos: -32.5,-45.5 parent: 2 - - uid: 11412 + - uid: 11332 components: - type: Transform pos: -32.5,-44.5 parent: 2 - - uid: 11413 + - uid: 11333 components: - type: Transform pos: -32.5,-43.5 parent: 2 - - uid: 11414 + - uid: 11334 components: - type: Transform pos: -32.5,-42.5 parent: 2 - - uid: 11415 + - uid: 11335 components: - type: Transform pos: -32.5,-41.5 parent: 2 - - uid: 11416 + - uid: 11336 components: - type: Transform pos: -32.5,-40.5 parent: 2 - - uid: 11417 + - uid: 11337 components: - type: Transform pos: -32.5,-39.5 parent: 2 - - uid: 11418 + - uid: 11338 components: - type: Transform pos: -32.5,-38.5 parent: 2 - - uid: 11419 + - uid: 11339 components: - type: Transform pos: -31.5,-38.5 parent: 2 - - uid: 11420 + - uid: 11340 components: - type: Transform pos: -30.5,-38.5 parent: 2 - - uid: 11421 + - uid: 11341 components: - type: Transform pos: -29.5,-38.5 parent: 2 - - uid: 11422 + - uid: 11342 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 11423 + - uid: 11343 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 11424 + - uid: 11344 components: - type: Transform pos: -28.5,-40.5 parent: 2 - - uid: 11425 + - uid: 11345 components: - type: Transform pos: -30.5,-40.5 parent: 2 - - uid: 11426 + - uid: 11346 components: - type: Transform pos: -29.5,-40.5 parent: 2 - - uid: 11427 + - uid: 11347 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 11428 + - uid: 11348 components: - type: Transform pos: -28.5,-36.5 parent: 2 - - uid: 11429 + - uid: 11349 components: - type: Transform pos: -28.5,-35.5 parent: 2 - - uid: 11430 + - uid: 11350 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 11431 + - uid: 11351 components: - type: Transform pos: -23.5,-35.5 parent: 2 - - uid: 11432 + - uid: 11352 components: - type: Transform pos: -23.5,-36.5 parent: 2 - - uid: 11433 + - uid: 11353 components: - type: Transform pos: -23.5,-37.5 parent: 2 - - uid: 11434 + - uid: 11354 components: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 11435 + - uid: 11355 components: - type: Transform pos: -23.5,-39.5 parent: 2 - - uid: 11436 + - uid: 11356 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 11437 + - uid: 11357 components: - type: Transform pos: -23.5,-41.5 parent: 2 - - uid: 11438 + - uid: 11358 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 11439 + - uid: 11359 components: - type: Transform pos: -23.5,-43.5 parent: 2 - - uid: 11440 + - uid: 11360 components: - type: Transform pos: -23.5,-44.5 parent: 2 - - uid: 11441 + - uid: 11361 components: - type: Transform pos: -23.5,-45.5 parent: 2 - - uid: 11442 + - uid: 11362 components: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 11443 + - uid: 11363 components: - type: Transform pos: -25.5,-43.5 parent: 2 - - uid: 11444 + - uid: 11364 components: - type: Transform pos: -25.5,-44.5 parent: 2 - - uid: 11445 + - uid: 11365 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 11446 + - uid: 11366 components: - type: Transform pos: -24.5,-45.5 parent: 2 - - uid: 11447 + - uid: 11367 components: - type: Transform pos: -31.5,-45.5 parent: 2 - - uid: 11448 + - uid: 11368 components: - type: Transform pos: -30.5,-45.5 parent: 2 - - uid: 11449 + - uid: 11369 components: - type: Transform pos: -29.5,-45.5 parent: 2 - - uid: 11450 + - uid: 11370 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 11451 + - uid: 11371 components: - type: Transform pos: -27.5,-45.5 parent: 2 - - uid: 11452 + - uid: 11372 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 11453 + - uid: 11373 components: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 11454 + - uid: 11374 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 11455 + - uid: 11375 components: - type: Transform pos: -28.5,-41.5 parent: 2 - - uid: 11456 + - uid: 11376 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 11457 + - uid: 11377 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 11458 + - uid: 11378 components: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 11459 + - uid: 11379 components: - type: Transform pos: -20.5,-37.5 parent: 2 - - uid: 11460 + - uid: 11380 components: - type: Transform pos: -20.5,-38.5 parent: 2 - - uid: 11461 + - uid: 11381 components: - type: Transform pos: -19.5,-38.5 parent: 2 - - uid: 11462 + - uid: 11382 components: - type: Transform pos: -18.5,-38.5 parent: 2 - - uid: 11463 + - uid: 11383 components: - type: Transform pos: -18.5,-39.5 parent: 2 - - uid: 11464 + - uid: 11384 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - uid: 11465 + - uid: 11385 components: - type: Transform pos: -16.5,-39.5 parent: 2 - - uid: 11466 + - uid: 11386 components: - type: Transform pos: -15.5,-39.5 parent: 2 - - uid: 11467 + - uid: 11387 components: - type: Transform pos: -14.5,-39.5 parent: 2 - - uid: 11468 + - uid: 11388 components: - type: Transform pos: -13.5,-39.5 parent: 2 - - uid: 11469 + - uid: 11389 components: - type: Transform pos: -13.5,-38.5 parent: 2 - - uid: 11470 + - uid: 11390 components: - type: Transform pos: -13.5,-37.5 parent: 2 - - uid: 11471 + - uid: 11391 components: - type: Transform pos: -13.5,-36.5 parent: 2 - - uid: 11472 + - uid: 11392 components: - type: Transform pos: -13.5,-35.5 parent: 2 - - uid: 11473 + - uid: 11393 components: - type: Transform pos: -13.5,-34.5 parent: 2 - - uid: 11474 + - uid: 11394 components: - type: Transform pos: -14.5,-34.5 parent: 2 - - uid: 11475 + - uid: 11395 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 11476 + - uid: 11396 components: - type: Transform pos: -16.5,-34.5 parent: 2 - - uid: 11477 + - uid: 11397 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 11478 + - uid: 11398 components: - type: Transform pos: -18.5,-34.5 parent: 2 - - uid: 11479 + - uid: 11399 components: - type: Transform pos: -19.5,-34.5 parent: 2 - - uid: 11480 + - uid: 11400 components: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 11481 + - uid: 11401 components: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 11482 + - uid: 11402 components: - type: Transform pos: -13.5,-40.5 parent: 2 - - uid: 11483 + - uid: 11403 components: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 11484 + - uid: 11404 components: - type: Transform pos: -11.5,-34.5 parent: 2 - - uid: 11485 + - uid: 11405 components: - type: Transform pos: -10.5,-34.5 parent: 2 - - uid: 11486 + - uid: 11406 components: - type: Transform pos: -9.5,-34.5 parent: 2 - - uid: 11487 + - uid: 11407 components: - type: Transform pos: -8.5,-34.5 parent: 2 - - uid: 11488 + - uid: 11408 components: - type: Transform pos: -8.5,-33.5 parent: 2 - - uid: 11489 + - uid: 11409 components: - type: Transform pos: -8.5,-32.5 parent: 2 - - uid: 11490 + - uid: 11410 components: - type: Transform pos: -8.5,-31.5 parent: 2 - - uid: 11491 + - uid: 11411 components: - type: Transform pos: -8.5,-30.5 parent: 2 - - uid: 11492 + - uid: 11412 components: - type: Transform pos: -8.5,-29.5 parent: 2 - - uid: 11493 + - uid: 11413 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 11494 + - uid: 11414 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 11495 + - uid: 11415 components: - type: Transform pos: -12.5,-40.5 parent: 2 - - uid: 11496 + - uid: 11416 components: - type: Transform pos: -11.5,-40.5 parent: 2 - - uid: 11497 + - uid: 11417 components: - type: Transform pos: -10.5,-40.5 parent: 2 - - uid: 11498 + - uid: 11418 components: - type: Transform pos: -13.5,-41.5 parent: 2 - - uid: 11499 + - uid: 11419 components: - type: Transform pos: -10.5,-39.5 parent: 2 - - uid: 11500 + - uid: 11420 components: - type: Transform pos: -10.5,-38.5 parent: 2 - - uid: 11501 + - uid: 11421 components: - type: Transform pos: -10.5,-37.5 parent: 2 - - uid: 11502 + - uid: 11422 components: - type: Transform pos: -10.5,-36.5 parent: 2 - - uid: 11503 + - uid: 11423 components: - type: Transform pos: -13.5,-42.5 parent: 2 - - uid: 11504 + - uid: 11424 components: - type: Transform pos: -13.5,-43.5 parent: 2 - - uid: 11505 + - uid: 11425 components: - type: Transform pos: -13.5,-44.5 parent: 2 - - uid: 11506 + - uid: 11426 components: - type: Transform pos: -13.5,-45.5 parent: 2 - - uid: 11507 + - uid: 11427 components: - type: Transform pos: -13.5,-46.5 parent: 2 - - uid: 11508 + - uid: 11428 components: - type: Transform pos: -13.5,-47.5 parent: 2 - - uid: 11509 + - uid: 11429 components: - type: Transform pos: -13.5,-48.5 parent: 2 - - uid: 11510 + - uid: 11430 components: - type: Transform pos: -13.5,-49.5 parent: 2 - - uid: 11511 + - uid: 11431 components: - type: Transform pos: -12.5,-49.5 parent: 2 - - uid: 11512 + - uid: 11432 components: - type: Transform pos: -11.5,-49.5 parent: 2 - - uid: 11513 + - uid: 11433 components: - type: Transform pos: -10.5,-49.5 parent: 2 - - uid: 11514 + - uid: 11434 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 11515 + - uid: 11435 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - uid: 11516 + - uid: 11436 components: - type: Transform pos: -7.5,-49.5 parent: 2 - - uid: 11517 + - uid: 11437 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 11518 + - uid: 11438 components: - type: Transform pos: -5.5,-49.5 parent: 2 - - uid: 11519 + - uid: 11439 components: - type: Transform pos: -5.5,-48.5 parent: 2 - - uid: 11520 + - uid: 11440 components: - type: Transform pos: -5.5,-47.5 parent: 2 - - uid: 11521 + - uid: 11441 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 11522 + - uid: 11442 components: - type: Transform pos: -5.5,-45.5 parent: 2 - - uid: 11523 + - uid: 11443 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 11524 + - uid: 11444 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 11525 + - uid: 11445 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 11526 + - uid: 11446 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 11527 + - uid: 11447 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 11528 + - uid: 11448 components: - type: Transform pos: -5.5,-42.5 parent: 2 - - uid: 11529 + - uid: 11449 components: - type: Transform pos: -5.5,-41.5 parent: 2 - - uid: 11530 + - uid: 11450 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 11531 + - uid: 11451 components: - type: Transform pos: -6.5,-40.5 parent: 2 - - uid: 11532 + - uid: 11452 components: - type: Transform pos: -7.5,-40.5 parent: 2 - - uid: 11533 + - uid: 11453 components: - type: Transform pos: -8.5,-40.5 parent: 2 - - uid: 11534 + - uid: 11454 components: - type: Transform pos: -9.5,-40.5 parent: 2 - - uid: 11535 + - uid: 11455 components: - type: Transform pos: -25.5,-33.5 parent: 2 - - uid: 11536 + - uid: 11456 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 11537 + - uid: 11457 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 11538 + - uid: 11458 components: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 11539 + - uid: 11459 components: - type: Transform pos: -18.5,-23.5 parent: 2 - - uid: 11540 + - uid: 11460 components: - type: Transform pos: -18.5,-24.5 parent: 2 - - uid: 11541 + - uid: 11461 components: - type: Transform pos: -18.5,-25.5 parent: 2 - - uid: 11542 + - uid: 11462 components: - type: Transform pos: -19.5,-25.5 parent: 2 - - uid: 11543 + - uid: 11463 components: - type: Transform pos: -20.5,-25.5 parent: 2 - - uid: 11544 + - uid: 11464 components: - type: Transform pos: -22.5,-25.5 parent: 2 - - uid: 11545 + - uid: 11465 components: - type: Transform pos: -21.5,-25.5 parent: 2 - - uid: 11546 + - uid: 11466 components: - type: Transform pos: -22.5,-26.5 parent: 2 - - uid: 11547 + - uid: 11467 components: - type: Transform pos: -22.5,-27.5 parent: 2 - - uid: 11548 + - uid: 11468 components: - type: Transform pos: -22.5,-28.5 parent: 2 - - uid: 11549 + - uid: 11469 components: - type: Transform pos: -22.5,-29.5 parent: 2 - - uid: 11550 + - uid: 11470 components: - type: Transform pos: -22.5,-30.5 parent: 2 - - uid: 11551 + - uid: 11471 components: - type: Transform pos: -22.5,-31.5 parent: 2 - - uid: 11552 + - uid: 11472 components: - type: Transform pos: -22.5,-32.5 parent: 2 - - uid: 11553 + - uid: 11473 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - uid: 11554 + - uid: 11474 components: - type: Transform pos: -13.5,-50.5 parent: 2 - - uid: 11555 + - uid: 11475 components: - type: Transform pos: -14.5,-50.5 parent: 2 - - uid: 11556 + - uid: 11476 components: - type: Transform pos: -15.5,-50.5 parent: 2 - - uid: 11557 + - uid: 11477 components: - type: Transform pos: -16.5,-50.5 parent: 2 - - uid: 11558 + - uid: 11478 components: - type: Transform pos: -15.5,-51.5 parent: 2 - - uid: 11559 + - uid: 11479 components: - type: Transform pos: -15.5,-52.5 parent: 2 - - uid: 11560 + - uid: 11480 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 11561 + - uid: 11481 components: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 11562 + - uid: 11482 components: - type: Transform pos: -20.5,-48.5 parent: 2 - - uid: 11563 + - uid: 11483 components: - type: Transform pos: -15.5,-53.5 parent: 2 - - uid: 11564 + - uid: 11484 components: - type: Transform pos: -15.5,-54.5 parent: 2 - - uid: 11565 + - uid: 11485 components: - type: Transform pos: -15.5,-55.5 parent: 2 - - uid: 11566 + - uid: 11486 components: - type: Transform pos: -15.5,-56.5 parent: 2 - - uid: 11567 + - uid: 11487 components: - type: Transform pos: -16.5,-56.5 parent: 2 - - uid: 11568 + - uid: 11488 components: - type: Transform pos: -17.5,-56.5 parent: 2 - - uid: 11569 + - uid: 11489 components: - type: Transform pos: -18.5,-56.5 parent: 2 - - uid: 11570 + - uid: 11490 components: - type: Transform pos: -19.5,-56.5 parent: 2 - - uid: 11571 + - uid: 11491 components: - type: Transform pos: -19.5,-55.5 parent: 2 - - uid: 11572 + - uid: 11492 components: - type: Transform pos: -19.5,-54.5 parent: 2 - - uid: 11573 + - uid: 11493 components: - type: Transform pos: -3.5,-57.5 parent: 2 - - uid: 11574 + - uid: 11494 components: - type: Transform pos: -4.5,-57.5 parent: 2 - - uid: 11575 + - uid: 11495 components: - type: Transform pos: -5.5,-57.5 parent: 2 - - uid: 11576 + - uid: 11496 components: - type: Transform pos: -6.5,-57.5 parent: 2 - - uid: 11577 + - uid: 11497 components: - type: Transform pos: -14.5,-65.5 parent: 2 - - uid: 11578 + - uid: 11498 components: - type: Transform pos: -13.5,-65.5 parent: 2 - - uid: 11579 + - uid: 11499 components: - type: Transform pos: -12.5,-65.5 parent: 2 - - uid: 11580 + - uid: 11500 components: - type: Transform pos: -11.5,-65.5 parent: 2 - - uid: 11581 + - uid: 11501 components: - type: Transform pos: -10.5,-65.5 parent: 2 - - uid: 11582 + - uid: 11502 components: - type: Transform pos: -9.5,-65.5 parent: 2 - - uid: 11583 + - uid: 11503 components: - type: Transform pos: -8.5,-65.5 parent: 2 - - uid: 11584 + - uid: 11504 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 11585 + - uid: 11505 components: - type: Transform pos: -7.5,-64.5 parent: 2 - - uid: 11586 + - uid: 11506 components: - type: Transform pos: -6.5,-64.5 parent: 2 - - uid: 11587 + - uid: 11507 components: - type: Transform pos: -5.5,-64.5 parent: 2 - - uid: 11588 + - uid: 11508 components: - type: Transform pos: -4.5,-64.5 parent: 2 - - uid: 11589 + - uid: 11509 components: - type: Transform pos: -3.5,-64.5 parent: 2 - - uid: 11590 + - uid: 11510 components: - type: Transform pos: -3.5,-63.5 parent: 2 - - uid: 11591 + - uid: 11511 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 11592 + - uid: 11512 components: - type: Transform pos: -6.5,-56.5 parent: 2 - - uid: 11593 + - uid: 11513 components: - type: Transform pos: -6.5,-55.5 parent: 2 - - uid: 11594 + - uid: 11514 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 11595 + - uid: 11515 components: - type: Transform pos: -8.5,-55.5 parent: 2 - - uid: 11596 + - uid: 11516 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 11597 + - uid: 11517 components: - type: Transform pos: -9.5,-56.5 parent: 2 - - uid: 11598 + - uid: 11518 components: - type: Transform pos: -9.5,-57.5 parent: 2 - - uid: 11599 + - uid: 11519 components: - type: Transform pos: -9.5,-58.5 parent: 2 - - uid: 11600 + - uid: 11520 components: - type: Transform pos: -9.5,-59.5 parent: 2 - - uid: 11601 + - uid: 11521 components: - type: Transform pos: -9.5,-60.5 parent: 2 - - uid: 11602 + - uid: 11522 components: - type: Transform pos: -9.5,-61.5 parent: 2 - - uid: 11603 + - uid: 11523 components: - type: Transform pos: -9.5,-62.5 parent: 2 - - uid: 11604 + - uid: 11524 components: - type: Transform pos: -9.5,-63.5 parent: 2 - - uid: 11605 + - uid: 11525 components: - type: Transform pos: -9.5,-64.5 parent: 2 - - uid: 11606 + - uid: 11526 components: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 11607 + - uid: 11527 components: - type: Transform pos: 6.5,-75.5 parent: 2 - - uid: 11608 + - uid: 11528 components: - type: Transform pos: 5.5,-75.5 parent: 2 - - uid: 11609 + - uid: 11529 components: - type: Transform pos: 5.5,-74.5 parent: 2 - - uid: 11610 + - uid: 11530 components: - type: Transform pos: 5.5,-73.5 parent: 2 - - uid: 11611 + - uid: 11531 components: - type: Transform pos: 5.5,-72.5 parent: 2 - - uid: 11612 + - uid: 11532 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 11613 + - uid: 11533 components: - type: Transform pos: 5.5,-70.5 parent: 2 - - uid: 11614 + - uid: 11534 components: - type: Transform pos: 5.5,-69.5 parent: 2 - - uid: 11615 + - uid: 11535 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 11616 + - uid: 11536 components: - type: Transform pos: 5.5,-67.5 parent: 2 - - uid: 11617 + - uid: 11537 components: - type: Transform pos: 5.5,-66.5 parent: 2 - - uid: 11618 + - uid: 11538 components: - type: Transform pos: 5.5,-65.5 parent: 2 - - uid: 11619 + - uid: 11539 components: - type: Transform pos: 4.5,-65.5 parent: 2 - - uid: 11620 + - uid: 11540 components: - type: Transform pos: 3.5,-65.5 parent: 2 - - uid: 11621 + - uid: 11541 components: - type: Transform pos: 2.5,-65.5 parent: 2 - - uid: 11622 + - uid: 11542 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 11623 + - uid: 11543 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 11624 + - uid: 11544 components: - type: Transform pos: 0.49999997,-64.5 parent: 2 - - uid: 11625 + - uid: 11545 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 11626 + - uid: 11546 components: - type: Transform pos: -1.5,-64.5 parent: 2 - - uid: 11627 + - uid: 11547 components: - type: Transform pos: -2.5,-64.5 parent: 2 - - uid: 11628 + - uid: 11548 components: - type: Transform pos: 26.5,-22.5 parent: 2 - - uid: 11629 + - uid: 11549 components: - type: Transform pos: 25.5,-22.5 parent: 2 - - uid: 11630 + - uid: 11550 components: - type: Transform pos: 24.5,-22.5 parent: 2 - - uid: 11631 + - uid: 11551 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 11632 + - uid: 11552 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 11633 + - uid: 11553 components: - type: Transform pos: 24.5,-19.5 parent: 2 - - uid: 11634 + - uid: 11554 components: - type: Transform pos: 25.5,-19.5 parent: 2 - - uid: 11635 + - uid: 11555 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 11636 + - uid: 11556 components: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 11637 + - uid: 11557 components: - type: Transform pos: 28.5,-19.5 parent: 2 - - uid: 11638 + - uid: 11558 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 11639 + - uid: 11559 components: - type: Transform pos: 30.5,-19.5 parent: 2 - - uid: 11640 + - uid: 11560 components: - type: Transform pos: 31.5,-19.5 parent: 2 - - uid: 11641 + - uid: 11561 components: - type: Transform pos: 32.5,-19.5 parent: 2 - - uid: 11642 + - uid: 11562 components: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 11643 + - uid: 11563 components: - type: Transform pos: 34.5,-19.5 parent: 2 - - uid: 11644 + - uid: 11564 components: - type: Transform pos: 34.5,-20.5 parent: 2 - - uid: 11645 + - uid: 11565 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 11646 + - uid: 11566 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 11647 + - uid: 11567 components: - type: Transform pos: 33.5,-22.5 parent: 2 - - uid: 11648 + - uid: 11568 components: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 11649 + - uid: 11569 components: - type: Transform pos: 31.5,-22.5 parent: 2 - - uid: 11650 + - uid: 11570 components: - type: Transform pos: 30.5,-22.5 parent: 2 - - uid: 11651 + - uid: 11571 components: - type: Transform pos: 29.5,-22.5 parent: 2 - - uid: 11652 + - uid: 11572 components: - type: Transform pos: 29.5,-23.5 parent: 2 - - uid: 11653 + - uid: 11573 components: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 11654 + - uid: 11574 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 11655 + - uid: 11575 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 11656 + - uid: 11576 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 11657 + - uid: 11577 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 11658 + - uid: 11578 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 11659 + - uid: 11579 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 11660 + - uid: 11580 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 11661 + - uid: 11581 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 11662 + - uid: 11582 components: - type: Transform pos: 29.5,-33.5 parent: 2 - - uid: 11663 + - uid: 11583 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - uid: 11664 + - uid: 11584 components: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 11665 + - uid: 11585 components: - type: Transform pos: 31.5,-29.5 parent: 2 - - uid: 11666 + - uid: 11586 components: - type: Transform pos: 31.5,-28.5 parent: 2 - - uid: 11667 + - uid: 11587 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 11668 + - uid: 11588 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - uid: 11669 + - uid: 11589 components: - type: Transform pos: 30.5,-34.5 parent: 2 - - uid: 11670 + - uid: 11590 components: - type: Transform pos: 31.5,-34.5 parent: 2 - - uid: 11671 + - uid: 11591 components: - type: Transform pos: 32.5,-34.5 parent: 2 - - uid: 11672 + - uid: 11592 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 11673 + - uid: 11593 components: - type: Transform pos: 34.5,-34.5 parent: 2 - - uid: 11674 + - uid: 11594 components: - type: Transform pos: 35.5,-34.5 parent: 2 - - uid: 11675 + - uid: 11595 components: - type: Transform pos: 36.5,-34.5 parent: 2 - - uid: 11676 + - uid: 11596 components: - type: Transform pos: 37.5,-34.5 parent: 2 - - uid: 11677 + - uid: 11597 components: - type: Transform pos: 36.5,-33.5 parent: 2 - - uid: 11678 + - uid: 11598 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 11679 + - uid: 11599 components: - type: Transform pos: 36.5,-31.5 parent: 2 - - uid: 11680 + - uid: 11600 components: - type: Transform pos: 36.5,-30.5 parent: 2 - - uid: 11681 + - uid: 11601 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 11682 + - uid: 11602 components: - type: Transform pos: 35.5,-29.5 parent: 2 - - uid: 11683 + - uid: 11603 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 11684 + - uid: 11604 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 11685 + - uid: 11605 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 11686 + - uid: 11606 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 11687 + - uid: 11607 components: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 11688 + - uid: 11608 components: - type: Transform pos: 27.5,-37.5 parent: 2 - - uid: 11689 + - uid: 11609 components: - type: Transform pos: 27.5,-38.5 parent: 2 - - uid: 11690 + - uid: 11610 components: - type: Transform pos: 27.5,-39.5 parent: 2 - - uid: 11691 + - uid: 11611 components: - type: Transform pos: 29.5,-39.5 parent: 2 - - uid: 11692 + - uid: 11612 components: - type: Transform pos: 30.5,-39.5 parent: 2 - - uid: 11693 + - uid: 11613 components: - type: Transform pos: 31.5,-39.5 parent: 2 - - uid: 11694 + - uid: 11614 components: - type: Transform pos: 32.5,-39.5 parent: 2 - - uid: 11695 + - uid: 11615 components: - type: Transform pos: 33.5,-39.5 parent: 2 - - uid: 11696 + - uid: 11616 components: - type: Transform pos: 34.5,-39.5 parent: 2 - - uid: 11697 + - uid: 11617 components: - type: Transform pos: 28.5,-39.5 parent: 2 - - uid: 11698 + - uid: 11618 components: - type: Transform pos: 33.5,-38.5 parent: 2 - - uid: 11699 + - uid: 11619 components: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 11700 + - uid: 11620 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 11701 + - uid: 11621 components: - type: Transform pos: 26.5,-34.5 parent: 2 - - uid: 11702 + - uid: 11622 components: - type: Transform pos: 25.5,-34.5 parent: 2 - - uid: 11703 + - uid: 11623 components: - type: Transform pos: 24.5,-34.5 parent: 2 - - uid: 11704 + - uid: 11624 components: - type: Transform pos: 23.5,-34.5 parent: 2 - - uid: 11705 + - uid: 11625 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 11706 + - uid: 11626 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 11707 + - uid: 11627 components: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 11708 + - uid: 11628 components: - type: Transform pos: 19.5,-34.5 parent: 2 - - uid: 11709 + - uid: 11629 components: - type: Transform pos: 18.5,-34.5 parent: 2 - - uid: 11710 + - uid: 11630 components: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 11711 + - uid: 11631 components: - type: Transform pos: 16.5,-34.5 parent: 2 - - uid: 11712 + - uid: 11632 components: - type: Transform pos: 15.5,-34.5 parent: 2 - - uid: 11713 + - uid: 11633 components: - type: Transform pos: 14.5,-34.5 parent: 2 - - uid: 11714 + - uid: 11634 components: - type: Transform pos: 13.5,-34.5 parent: 2 - - uid: 11715 + - uid: 11635 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 11716 + - uid: 11636 components: - type: Transform pos: 11.5,-34.5 parent: 2 - - uid: 11717 + - uid: 11637 components: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 11718 + - uid: 11638 components: - type: Transform pos: 10.5,-35.5 parent: 2 - - uid: 11719 + - uid: 11639 components: - type: Transform pos: 9.5,-35.5 parent: 2 - - uid: 11720 + - uid: 11640 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 11721 + - uid: 11641 components: - type: Transform pos: 9.5,-29.5 parent: 2 - - uid: 11722 + - uid: 11642 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 11723 + - uid: 11643 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 11724 + - uid: 11644 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 11725 + - uid: 11645 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 11726 + - uid: 11646 components: - type: Transform pos: 7.5,-32.5 parent: 2 - - uid: 11727 + - uid: 11647 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 11728 + - uid: 11648 components: - type: Transform pos: 7.5,-34.5 parent: 2 - - uid: 11729 + - uid: 11649 components: - type: Transform pos: 7.5,-35.5 parent: 2 - - uid: 11730 + - uid: 11650 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 11731 + - uid: 11651 components: - type: Transform pos: 6.5,-37.5 parent: 2 - - uid: 11732 + - uid: 11652 components: - type: Transform pos: 6.5,-38.5 parent: 2 - - uid: 11733 + - uid: 11653 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 11734 + - uid: 11654 components: - type: Transform pos: 5.5,-38.5 parent: 2 - - uid: 11735 + - uid: 11655 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 11736 + - uid: 11656 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 11737 + - uid: 11657 components: - type: Transform pos: 4.5,-40.5 parent: 2 - - uid: 11738 + - uid: 11658 components: - type: Transform pos: 4.5,-41.5 parent: 2 - - uid: 11739 + - uid: 11659 components: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 11740 + - uid: 11660 components: - type: Transform pos: 4.5,-43.5 parent: 2 - - uid: 11741 + - uid: 11661 components: - type: Transform pos: 4.5,-44.5 parent: 2 - - uid: 11742 + - uid: 11662 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 11743 + - uid: 11663 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 11744 + - uid: 11664 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 11745 + - uid: 11665 components: - type: Transform pos: 4.5,-48.5 parent: 2 - - uid: 11746 + - uid: 11666 components: - type: Transform pos: 4.5,-49.5 parent: 2 - - uid: 11747 + - uid: 11667 components: - type: Transform pos: 4.5,-50.5 parent: 2 - - uid: 11748 + - uid: 11668 components: - type: Transform pos: 7.5,-48.5 parent: 2 - - uid: 11749 + - uid: 11669 components: - type: Transform pos: 7.5,-49.5 parent: 2 - - uid: 11750 + - uid: 11670 components: - type: Transform pos: 7.5,-50.5 parent: 2 - - uid: 11751 + - uid: 11671 components: - type: Transform pos: 6.5,-50.5 parent: 2 - - uid: 11752 + - uid: 11672 components: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 11753 + - uid: 11673 components: - type: Transform pos: 4.5,-50.5 parent: 2 - - uid: 11754 + - uid: 11674 components: - type: Transform pos: 14.5,-36.5 parent: 2 - - uid: 11755 + - uid: 11675 components: - type: Transform pos: 14.5,-37.5 parent: 2 - - uid: 11756 + - uid: 11676 components: - type: Transform pos: 14.5,-38.5 parent: 2 - - uid: 11757 + - uid: 11677 components: - type: Transform pos: 14.5,-39.5 parent: 2 - - uid: 11758 + - uid: 11678 components: - type: Transform pos: 13.5,-39.5 parent: 2 - - uid: 11759 + - uid: 11679 components: - type: Transform pos: 12.5,-39.5 parent: 2 - - uid: 11760 + - uid: 11680 components: - type: Transform pos: 11.5,-39.5 parent: 2 - - uid: 11761 + - uid: 11681 components: - type: Transform pos: 10.5,-39.5 parent: 2 - - uid: 11762 + - uid: 11682 components: - type: Transform pos: 9.5,-39.5 parent: 2 - - uid: 11763 + - uid: 11683 components: - type: Transform pos: 9.5,-40.5 parent: 2 - - uid: 11764 + - uid: 11684 components: - type: Transform pos: 9.5,-41.5 parent: 2 - - uid: 11765 + - uid: 11685 components: - type: Transform pos: 9.5,-42.5 parent: 2 - - uid: 11766 + - uid: 11686 components: - type: Transform pos: 9.5,-43.5 parent: 2 - - uid: 11767 + - uid: 11687 components: - type: Transform pos: 9.5,-44.5 parent: 2 - - uid: 11768 + - uid: 11688 components: - type: Transform pos: 9.5,-45.5 parent: 2 - - uid: 11769 + - uid: 11689 components: - type: Transform pos: 8.5,-45.5 parent: 2 - - uid: 11770 + - uid: 11690 components: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 11771 + - uid: 11691 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 11772 + - uid: 11692 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 11773 + - uid: 11693 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 11774 + - uid: 11694 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 11775 + - uid: 11695 components: - type: Transform pos: 24.5,-50.5 parent: 2 - - uid: 11776 + - uid: 11696 components: - type: Transform pos: 24.5,-51.5 parent: 2 - - uid: 11777 + - uid: 11697 components: - type: Transform pos: 23.5,-51.5 parent: 2 - - uid: 11778 + - uid: 11698 components: - type: Transform pos: 22.5,-51.5 parent: 2 - - uid: 11779 + - uid: 11699 components: - type: Transform pos: 22.5,-50.5 parent: 2 - - uid: 11780 + - uid: 11700 components: - type: Transform pos: 22.5,-49.5 parent: 2 - - uid: 11781 + - uid: 11701 components: - type: Transform pos: 22.5,-48.5 parent: 2 - - uid: 11782 + - uid: 11702 components: - type: Transform pos: 22.5,-47.5 parent: 2 - - uid: 11783 + - uid: 11703 components: - type: Transform pos: 22.5,-46.5 parent: 2 - - uid: 11784 + - uid: 11704 components: - type: Transform pos: 22.5,-45.5 parent: 2 - - uid: 11785 + - uid: 11705 components: - type: Transform pos: 22.5,-44.5 parent: 2 - - uid: 11786 + - uid: 11706 components: - type: Transform pos: 22.5,-43.5 parent: 2 - - uid: 11787 + - uid: 11707 components: - type: Transform pos: 22.5,-43.5 parent: 2 - - uid: 11788 + - uid: 11708 components: - type: Transform pos: 21.5,-43.5 parent: 2 - - uid: 11789 + - uid: 11709 components: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 11790 + - uid: 11710 components: - type: Transform pos: 19.5,-43.5 parent: 2 - - uid: 11791 + - uid: 11711 components: - type: Transform pos: 18.5,-43.5 parent: 2 - - uid: 11792 + - uid: 11712 components: - type: Transform pos: 17.5,-43.5 parent: 2 - - uid: 11793 + - uid: 11713 components: - type: Transform pos: 17.5,-42.5 parent: 2 - - uid: 11794 + - uid: 11714 components: - type: Transform pos: 17.5,-41.5 parent: 2 - - uid: 11795 + - uid: 11715 components: - type: Transform pos: 17.5,-40.5 parent: 2 - - uid: 11796 + - uid: 11716 components: - type: Transform pos: 17.5,-39.5 parent: 2 - - uid: 11797 + - uid: 11717 components: - type: Transform pos: 16.5,-39.5 parent: 2 - - uid: 11798 + - uid: 11718 components: - type: Transform pos: 15.5,-39.5 parent: 2 - - uid: 11799 + - uid: 11719 components: - type: Transform pos: 14.5,-39.5 parent: 2 - - uid: 11800 + - uid: 11720 components: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 11801 + - uid: 11721 components: - type: Transform pos: 12.5,-57.5 parent: 2 - - uid: 11802 + - uid: 11722 components: - type: Transform pos: 12.5,-58.5 parent: 2 - - uid: 11803 + - uid: 11723 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 11804 + - uid: 11724 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 11805 + - uid: 11725 components: - type: Transform pos: 11.5,-59.5 parent: 2 - - uid: 11806 + - uid: 11726 components: - type: Transform pos: 10.5,-59.5 parent: 2 - - uid: 11807 + - uid: 11727 components: - type: Transform pos: 10.5,-58.5 parent: 2 - - uid: 11808 + - uid: 11728 components: - type: Transform pos: 10.5,-57.5 parent: 2 - - uid: 11809 + - uid: 11729 components: - type: Transform pos: 10.5,-56.5 parent: 2 - - uid: 11810 + - uid: 11730 components: - type: Transform pos: 10.5,-55.5 parent: 2 - - uid: 11811 + - uid: 11731 components: - type: Transform pos: 10.5,-54.5 parent: 2 - - uid: 11812 + - uid: 11732 components: - type: Transform pos: 10.5,-53.5 parent: 2 - - uid: 11813 + - uid: 11733 components: - type: Transform pos: 10.5,-52.5 parent: 2 - - uid: 11814 + - uid: 11734 components: - type: Transform pos: 10.5,-51.5 parent: 2 - - uid: 11815 + - uid: 11735 components: - type: Transform pos: 10.5,-50.5 parent: 2 - - uid: 11816 + - uid: 11736 components: - type: Transform pos: 9.5,-50.5 parent: 2 - - uid: 11817 + - uid: 11737 components: - type: Transform pos: 8.5,-50.5 parent: 2 - - uid: 11818 + - uid: 11738 components: - type: Transform pos: 7.5,-50.5 parent: 2 - - uid: 11819 + - uid: 11739 components: - type: Transform pos: 16.5,-43.5 parent: 2 - - uid: 11820 + - uid: 11740 components: - type: Transform pos: 15.5,-43.5 parent: 2 - - uid: 11821 + - uid: 11741 components: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 11822 + - uid: 11742 components: - type: Transform pos: 14.5,-42.5 parent: 2 - - uid: 11823 + - uid: 11743 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 11824 + - uid: 11744 components: - type: Transform pos: 17.5,-44.5 parent: 2 - - uid: 11825 + - uid: 11745 components: - type: Transform pos: 17.5,-45.5 parent: 2 - - uid: 11826 + - uid: 11746 components: - type: Transform pos: 17.5,-46.5 parent: 2 - - uid: 11827 + - uid: 11747 components: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 11828 + - uid: 11748 components: - type: Transform pos: 17.5,-48.5 parent: 2 - - uid: 11829 + - uid: 11749 components: - type: Transform pos: 17.5,-49.5 parent: 2 - - uid: 11830 + - uid: 11750 components: - type: Transform pos: 16.5,-49.5 parent: 2 - - uid: 11831 + - uid: 11751 components: - type: Transform pos: 15.5,-49.5 parent: 2 - - uid: 11832 + - uid: 11752 components: - type: Transform pos: 14.5,-49.5 parent: 2 - - uid: 11833 + - uid: 11753 components: - type: Transform pos: 13.5,-49.5 parent: 2 - - uid: 11834 + - uid: 11754 components: - type: Transform pos: 8.5,-48.5 parent: 2 - - uid: 11835 + - uid: 11755 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 11836 + - uid: 11756 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 11837 + - uid: 11757 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 11838 + - uid: 11758 components: - type: Transform pos: 12.5,-29.5 parent: 2 - - uid: 11839 + - uid: 11759 components: - type: Transform pos: 12.5,-30.5 parent: 2 - - uid: 11840 + - uid: 11760 components: - type: Transform pos: 13.5,-30.5 parent: 2 - - uid: 11841 + - uid: 11761 components: - type: Transform pos: 14.5,-30.5 parent: 2 - - uid: 11842 + - uid: 11762 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 11843 + - uid: 11763 components: - type: Transform pos: 16.5,-30.5 parent: 2 - - uid: 11844 + - uid: 11764 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 11845 + - uid: 11765 components: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 11846 + - uid: 11766 components: - type: Transform pos: 17.5,-32.5 parent: 2 - - uid: 11847 + - uid: 11767 components: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 11848 + - uid: 11768 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 11849 + - uid: 11769 components: - type: Transform pos: 48.5,-28.5 parent: 2 - - uid: 11850 + - uid: 11770 components: - type: Transform pos: 47.5,-28.5 parent: 2 - - uid: 11851 + - uid: 11771 components: - type: Transform pos: 46.5,-28.5 parent: 2 - - uid: 11852 + - uid: 11772 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 11853 + - uid: 11773 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 11854 + - uid: 11774 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 11855 + - uid: 11775 components: - type: Transform pos: 43.5,-46.5 parent: 2 - - uid: 11856 + - uid: 11776 components: - type: Transform pos: 44.5,-46.5 parent: 2 - - uid: 11857 + - uid: 11777 components: - type: Transform pos: 45.5,-46.5 parent: 2 - - uid: 11858 + - uid: 11778 components: - type: Transform pos: 46.5,-46.5 parent: 2 - - uid: 11859 + - uid: 11779 components: - type: Transform pos: 47.5,-46.5 parent: 2 - - uid: 11860 + - uid: 11780 components: - type: Transform pos: 48.5,-46.5 parent: 2 - - uid: 11861 + - uid: 11781 components: - type: Transform pos: 49.5,-46.5 parent: 2 - - uid: 11862 + - uid: 11782 components: - type: Transform pos: 50.5,-46.5 parent: 2 - - uid: 11863 + - uid: 11783 components: - type: Transform pos: 51.5,-46.5 parent: 2 - - uid: 11864 + - uid: 11784 components: - type: Transform pos: 51.5,-45.5 parent: 2 - - uid: 11865 + - uid: 11785 components: - type: Transform pos: 51.5,-44.5 parent: 2 - - uid: 11866 + - uid: 11786 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 11867 + - uid: 11787 components: - type: Transform pos: 43.5,-19.5 parent: 2 - - uid: 11868 + - uid: 11788 components: - type: Transform pos: 43.5,-20.5 parent: 2 - - uid: 11869 + - uid: 11789 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 11870 + - uid: 11790 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 11871 + - uid: 11791 components: - type: Transform pos: 47.5,-20.5 parent: 2 - - uid: 11872 + - uid: 11792 components: - type: Transform pos: 47.5,-19.5 parent: 2 - - uid: 11873 + - uid: 11793 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 11874 + - uid: 11794 components: - type: Transform pos: 53.5,-20.5 parent: 2 - - uid: 11875 + - uid: 11795 components: - type: Transform pos: 53.5,-19.5 parent: 2 - - uid: 11876 + - uid: 11796 components: - type: Transform pos: 53.5,-18.5 parent: 2 - - uid: 11877 + - uid: 11797 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 11878 + - uid: 11798 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 11879 + - uid: 11799 components: - type: Transform pos: 51.5,-14.5 parent: 2 - - uid: 11880 + - uid: 11800 components: - type: Transform pos: 51.5,-15.5 parent: 2 - - uid: 11881 + - uid: 11801 components: - type: Transform pos: 51.5,-16.5 parent: 2 - - uid: 11882 + - uid: 11802 components: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 11883 + - uid: 11803 components: - type: Transform pos: 51.5,-18.5 parent: 2 - - uid: 11884 + - uid: 11804 components: - type: Transform pos: 45.5,-12.5 parent: 2 - - uid: 11885 + - uid: 11805 components: - type: Transform pos: 45.5,-13.5 parent: 2 - - uid: 11886 + - uid: 11806 components: - type: Transform pos: 45.5,-14.5 parent: 2 - - uid: 11887 + - uid: 11807 components: - type: Transform pos: 45.5,-15.5 parent: 2 - - uid: 11888 + - uid: 11808 components: - type: Transform pos: 46.5,-15.5 parent: 2 - - uid: 11889 + - uid: 11809 components: - type: Transform pos: 46.5,-16.5 parent: 2 - - uid: 11890 + - uid: 11810 components: - type: Transform pos: 46.5,-17.5 parent: 2 - - uid: 11891 + - uid: 11811 components: - type: Transform pos: 46.5,-18.5 parent: 2 - - uid: 11892 + - uid: 11812 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 11893 + - uid: 11813 components: - type: Transform pos: -4.5,-55.5 parent: 2 - - uid: 11894 + - uid: 11814 components: - type: Transform pos: -3.5,-55.5 parent: 2 - - uid: 11895 + - uid: 11815 components: - type: Transform pos: -2.5,-55.5 parent: 2 - - uid: 11896 + - uid: 11816 components: - type: Transform pos: -1.5,-55.5 parent: 2 - - uid: 11897 + - uid: 11817 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 11898 + - uid: 11818 components: - type: Transform pos: 0.49999997,-55.5 parent: 2 - - uid: 11899 + - uid: 11819 components: - type: Transform pos: 0.50000006,-56.5 parent: 2 - - uid: 11900 + - uid: 11820 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 11901 + - uid: 11821 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 11902 + - uid: 11822 components: - type: Transform pos: 0.50000006,-44.5 parent: 2 - - uid: 11903 + - uid: 11823 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 11904 + - uid: 11824 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 11905 + - uid: 11825 components: - type: Transform pos: -0.49999997,-47.5 parent: 2 - - uid: 11906 + - uid: 11826 components: - type: Transform pos: -0.5,-48.5 parent: 2 - - uid: 11907 + - uid: 11827 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 11908 + - uid: 11828 components: - type: Transform pos: -0.5,-50.5 parent: 2 - - uid: 11909 + - uid: 11829 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 11910 + - uid: 11830 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 11911 + - uid: 11831 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 11912 + - uid: 11832 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 11913 + - uid: 11833 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 11914 + - uid: 11834 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 11915 + - uid: 11835 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 11916 + - uid: 11836 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 11917 + - uid: 11837 components: - type: Transform pos: 23.5,-19.5 parent: 2 - - uid: 11918 + - uid: 11838 components: - type: Transform pos: 22.5,-19.5 parent: 2 - - uid: 11919 + - uid: 11839 components: - type: Transform pos: 21.5,-19.5 parent: 2 - - uid: 11920 + - uid: 11840 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 11921 + - uid: 11841 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 11922 + - uid: 11842 components: - type: Transform pos: 18.5,-19.5 parent: 2 - - uid: 11923 + - uid: 11843 components: - type: Transform pos: 17.5,-19.5 parent: 2 - - uid: 11924 + - uid: 11844 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 11925 + - uid: 11845 components: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 11926 + - uid: 11846 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 11927 + - uid: 11847 components: - type: Transform pos: 13.5,-19.5 parent: 2 - - uid: 11928 + - uid: 11848 components: - type: Transform pos: 12.5,-19.5 parent: 2 - - uid: 11929 + - uid: 11849 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 11930 + - uid: 11850 components: - type: Transform pos: 10.5,-19.5 parent: 2 - - uid: 11931 + - uid: 11851 components: - type: Transform pos: 9.5,-19.5 parent: 2 - - uid: 11932 + - uid: 11852 components: - type: Transform pos: 8.5,-19.5 parent: 2 - - uid: 11933 + - uid: 11853 components: - type: Transform pos: 7.5,-19.5 parent: 2 - - uid: 11934 + - uid: 11854 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 11935 + - uid: 11855 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 11936 + - uid: 11856 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 11937 + - uid: 11857 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 11938 + - uid: 11858 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 11939 + - uid: 11859 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 11940 + - uid: 11860 components: - type: Transform pos: -9.5,-22.5 parent: 2 - - uid: 11941 + - uid: 11861 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 11942 + - uid: 11862 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 11943 + - uid: 11863 components: - type: Transform pos: -9.5,-25.5 parent: 2 - - uid: 11944 + - uid: 11864 components: - type: Transform pos: -10.5,-25.5 parent: 2 - - uid: 11945 + - uid: 11865 components: - type: Transform pos: -11.5,-25.5 parent: 2 - - uid: 11946 + - uid: 11866 components: - type: Transform pos: -12.5,-25.5 parent: 2 - - uid: 11947 + - uid: 11867 components: - type: Transform pos: -12.5,-26.5 parent: 2 - - uid: 11948 + - uid: 11868 components: - type: Transform pos: -12.5,-27.5 parent: 2 - - uid: 11949 + - uid: 11869 components: - type: Transform pos: -12.5,-28.5 parent: 2 - - uid: 11950 + - uid: 11870 components: - type: Transform pos: -12.5,-29.5 parent: 2 - - uid: 11951 + - uid: 11871 components: - type: Transform pos: -12.5,-30.5 parent: 2 - - uid: 11952 + - uid: 11872 components: - type: Transform pos: -12.5,-31.5 parent: 2 - - uid: 11953 + - uid: 11873 components: - type: Transform pos: -12.5,-32.5 parent: 2 - - uid: 11954 + - uid: 11874 components: - type: Transform pos: -12.5,-33.5 parent: 2 - - uid: 11955 + - uid: 11875 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 11956 + - uid: 11876 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 11957 + - uid: 11877 components: - type: Transform pos: 8.5,-23.5 parent: 2 - - uid: 11958 + - uid: 11878 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 11959 + - uid: 11879 components: - type: Transform pos: 8.5,-25.5 parent: 2 - - uid: 11960 + - uid: 11880 components: - type: Transform pos: 9.5,-25.5 parent: 2 - - uid: 11961 + - uid: 11881 components: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 11962 + - uid: 11882 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 11963 + - uid: 11883 components: - type: Transform pos: 12.5,-25.5 parent: 2 - - uid: 11964 + - uid: 11884 components: - type: Transform pos: 13.5,-25.5 parent: 2 - - uid: 11965 + - uid: 11885 components: - type: Transform pos: 14.5,-25.5 parent: 2 - - uid: 11966 + - uid: 11886 components: - type: Transform pos: 15.5,-25.5 parent: 2 - - uid: 11967 + - uid: 11887 components: - type: Transform pos: 16.5,-25.5 parent: 2 - - uid: 11968 + - uid: 11888 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 11969 + - uid: 11889 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 11970 + - uid: 11890 components: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 11971 + - uid: 11891 components: - type: Transform pos: 17.5,-27.5 parent: 2 - - uid: 11972 + - uid: 11892 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 11973 + - uid: 11893 components: - type: Transform pos: 17.5,-29.5 parent: 2 - - uid: 11974 + - uid: 11894 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 11975 + - uid: 11895 components: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 11976 + - uid: 11896 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 11977 + - uid: 11897 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 11978 + - uid: 11898 components: - type: Transform pos: -5.5,-21.5 parent: 2 - - uid: 11979 + - uid: 11899 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 11980 + - uid: 11900 components: - type: Transform pos: -5.5,-23.5 parent: 2 - - uid: 11981 + - uid: 11901 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - uid: 11982 + - uid: 11902 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 11983 + - uid: 11903 components: - type: Transform pos: -6.5,-25.5 parent: 2 - - uid: 11984 + - uid: 11904 components: - type: Transform pos: -7.5,-25.5 parent: 2 - - uid: 11985 + - uid: 11905 components: - type: Transform pos: -8.5,-25.5 parent: 2 - - uid: 11986 + - uid: 11906 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 11987 + - uid: 11907 components: - type: Transform pos: -25.5,-1.5 parent: 2 - - uid: 11988 + - uid: 11908 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 11989 + - uid: 11909 components: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 11990 + - uid: 11910 components: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 11991 + - uid: 11911 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 11992 + - uid: 11912 components: - type: Transform pos: -20.5,-1.5 parent: 2 - - uid: 11993 + - uid: 11913 components: - type: Transform pos: -19.5,-1.5 parent: 2 - - uid: 11994 + - uid: 11914 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 11995 + - uid: 11915 components: - type: Transform pos: -17.5,-1.5 parent: 2 - - uid: 11996 + - uid: 11916 components: - type: Transform pos: -17.5,-2.5 parent: 2 - - uid: 11997 + - uid: 11917 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - uid: 11998 + - uid: 11918 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 11999 + - uid: 11919 components: - type: Transform pos: -45.5,12.5 parent: 2 - - uid: 12000 + - uid: 11920 components: - type: Transform pos: -44.5,12.5 parent: 2 - - uid: 12001 + - uid: 11921 components: - type: Transform pos: -43.5,12.5 parent: 2 - - uid: 12002 + - uid: 11922 components: - type: Transform pos: -42.5,12.5 parent: 2 - - uid: 12003 + - uid: 11923 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 12004 + - uid: 11924 components: - type: Transform pos: -40.5,11.5 parent: 2 - - uid: 12005 + - uid: 11925 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 12006 + - uid: 11926 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 12007 + - uid: 11927 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 12008 + - uid: 11928 components: - type: Transform pos: -34.5,16.5 parent: 2 - - uid: 12009 + - uid: 11929 components: - type: Transform pos: -35.5,16.5 parent: 2 - - uid: 12010 + - uid: 11930 components: - type: Transform pos: -35.5,15.5 parent: 2 - - uid: 12011 + - uid: 11931 components: - type: Transform pos: -35.5,14.5 parent: 2 - - uid: 12012 + - uid: 11932 components: - type: Transform pos: -35.5,13.5 parent: 2 - - uid: 12013 + - uid: 11933 components: - type: Transform pos: -35.5,12.5 parent: 2 - - uid: 12014 + - uid: 11934 components: - type: Transform pos: -35.5,11.5 parent: 2 - - uid: 12015 + - uid: 11935 components: - type: Transform pos: -35.5,10.5 parent: 2 - - uid: 12016 + - uid: 11936 components: - type: Transform pos: -35.5,9.5 parent: 2 - - uid: 12017 + - uid: 11937 components: - type: Transform pos: -35.5,8.5 parent: 2 - - uid: 12018 + - uid: 11938 components: - type: Transform pos: -35.5,7.5 parent: 2 - - uid: 12019 + - uid: 11939 components: - type: Transform pos: -35.5,6.5 parent: 2 - - uid: 12020 + - uid: 11940 components: - type: Transform pos: -35.5,5.5 parent: 2 - - uid: 12021 + - uid: 11941 components: - type: Transform pos: -36.5,5.5 parent: 2 - - uid: 12022 + - uid: 11942 components: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 12023 + - uid: 11943 components: - type: Transform pos: -38.5,5.5 parent: 2 - - uid: 12024 + - uid: 11944 components: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 12025 + - uid: 11945 components: - type: Transform pos: -40.5,5.5 parent: 2 - - uid: 12026 + - uid: 11946 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 12027 + - uid: 11947 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 12028 + - uid: 11948 components: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 12029 + - uid: 11949 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 12030 + - uid: 11950 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 12031 + - uid: 11951 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 12032 + - uid: 11952 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 12033 + - uid: 11953 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 12034 + - uid: 11954 components: - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 12035 + - uid: 11955 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 12036 + - uid: 11956 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 12037 + - uid: 11957 components: - type: Transform pos: -74.5,-22.5 parent: 2 - - uid: 12038 + - uid: 11958 components: - type: Transform pos: -73.5,-19.5 parent: 2 - - uid: 12039 + - uid: 11959 components: - type: Transform pos: -72.5,-19.5 parent: 2 - - uid: 12040 + - uid: 11960 components: - type: Transform pos: -71.5,-19.5 parent: 2 - - uid: 12041 + - uid: 11961 components: - type: Transform pos: -70.5,-19.5 parent: 2 - - uid: 12042 + - uid: 11962 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 12043 + - uid: 11963 components: - type: Transform pos: -74.5,-19.5 parent: 2 - - uid: 12044 + - uid: 11964 components: - type: Transform pos: -74.5,-20.5 parent: 2 - - uid: 12045 + - uid: 11965 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 12046 + - uid: 11966 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 12047 + - uid: 11967 components: - type: Transform pos: -69.5,-20.5 parent: 2 - - uid: 12048 + - uid: 11968 components: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 12049 + - uid: 11969 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 12051 + - uid: 11970 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 12052 + - uid: 11971 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 12053 + - uid: 11972 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 12054 + - uid: 11973 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 12055 + - uid: 11974 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 12056 + - uid: 11975 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 12057 + - uid: 11976 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 12058 + - uid: 11977 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 12059 + - uid: 11978 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 12060 + - uid: 11979 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 12061 + - uid: 11980 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 12062 + - uid: 11981 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 12063 + - uid: 11982 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 12064 + - uid: 11983 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 12065 + - uid: 11984 components: - type: Transform pos: -67.5,-20.5 parent: 2 - - uid: 12066 + - uid: 11985 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 12067 + - uid: 11986 components: - type: Transform pos: -67.5,-30.5 parent: 2 - - uid: 12068 + - uid: 11987 components: - type: Transform pos: -68.5,-30.5 parent: 2 - - uid: 12069 + - uid: 11988 components: - type: Transform pos: -69.5,-30.5 parent: 2 - - uid: 12070 + - uid: 11989 components: - type: Transform pos: -70.5,-30.5 parent: 2 - - uid: 12071 + - uid: 11990 components: - type: Transform pos: -71.5,-30.5 parent: 2 - - uid: 12072 + - uid: 11991 components: - type: Transform pos: -72.5,-30.5 parent: 2 - - uid: 12073 + - uid: 11992 components: - type: Transform pos: -73.5,-30.5 parent: 2 - - uid: 12074 + - uid: 11993 components: - type: Transform pos: -73.5,-29.5 parent: 2 - - uid: 12075 + - uid: 11994 components: - type: Transform pos: -73.5,-28.5 parent: 2 - - uid: 12076 + - uid: 11995 components: - type: Transform pos: -73.5,-27.5 parent: 2 - - uid: 12077 + - uid: 11996 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 12078 + - uid: 11997 components: - type: Transform pos: -73.5,-25.5 parent: 2 - - uid: 12079 + - uid: 11998 components: - type: Transform pos: -73.5,-24.5 parent: 2 - - uid: 12080 + - uid: 11999 components: - type: Transform pos: -73.5,-23.5 parent: 2 - - uid: 12081 + - uid: 12000 components: - type: Transform pos: -73.5,-22.5 parent: 2 - - uid: 12082 + - uid: 12001 components: - type: Transform pos: -69.5,-32.5 parent: 2 - - uid: 12083 + - uid: 12002 components: - type: Transform pos: -67.5,-45.5 parent: 2 - - uid: 12084 + - uid: 12003 components: - type: Transform pos: -64.5,-42.5 parent: 2 - - uid: 12085 + - uid: 12004 components: - type: Transform pos: -61.5,-42.5 parent: 2 - - uid: 12086 + - uid: 12005 components: - type: Transform pos: -59.5,-42.5 parent: 2 - - uid: 12087 + - uid: 12006 components: - type: Transform pos: -64.5,-46.5 parent: 2 - - uid: 12088 + - uid: 12007 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 12089 + - uid: 12008 components: - type: Transform pos: -58.5,-35.5 parent: 2 - - uid: 12090 + - uid: 12009 components: - type: Transform pos: -67.5,-43.5 parent: 2 - - uid: 12091 + - uid: 12010 components: - type: Transform pos: -58.5,-33.5 parent: 2 - - uid: 12092 + - uid: 12011 components: - type: Transform pos: -58.5,-32.5 parent: 2 - - uid: 12093 + - uid: 12012 components: - type: Transform pos: -58.5,-31.5 parent: 2 - - uid: 12094 + - uid: 12013 components: - type: Transform pos: -58.5,-30.5 parent: 2 - - uid: 12095 + - uid: 12014 components: - type: Transform pos: -59.5,-30.5 parent: 2 - - uid: 12096 + - uid: 12015 components: - type: Transform pos: -60.5,-30.5 parent: 2 - - uid: 12097 + - uid: 12016 components: - type: Transform pos: -61.5,-30.5 parent: 2 - - uid: 12098 + - uid: 12017 components: - type: Transform pos: -62.5,-30.5 parent: 2 - - uid: 12099 + - uid: 12018 components: - type: Transform pos: -63.5,-30.5 parent: 2 - - uid: 12100 + - uid: 12019 components: - type: Transform pos: -64.5,-30.5 parent: 2 - - uid: 12101 + - uid: 12020 components: - type: Transform pos: -65.5,-30.5 parent: 2 - - uid: 12102 + - uid: 12021 components: - type: Transform pos: -66.5,-30.5 parent: 2 - - uid: 12103 + - uid: 12022 components: - type: Transform pos: -67.5,-30.5 parent: 2 - - uid: 12104 + - uid: 12023 components: - type: Transform pos: -48.5,-40.5 parent: 2 - - uid: 12105 + - uid: 12024 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 12106 + - uid: 12025 components: - type: Transform pos: -49.5,-39.5 parent: 2 - - uid: 12107 + - uid: 12026 components: - type: Transform pos: -49.5,-40.5 parent: 2 - - uid: 12108 + - uid: 12027 components: - type: Transform pos: -47.5,-40.5 parent: 2 - - uid: 12109 + - uid: 12028 components: - type: Transform pos: -46.5,-40.5 parent: 2 - - uid: 12110 + - uid: 12029 components: - type: Transform pos: -46.5,-41.5 parent: 2 - - uid: 12111 + - uid: 12030 components: - type: Transform pos: -46.5,-42.5 parent: 2 - - uid: 12112 + - uid: 12031 components: - type: Transform pos: -46.5,-43.5 parent: 2 - - uid: 12113 + - uid: 12032 components: - type: Transform pos: -46.5,-44.5 parent: 2 - - uid: 12114 + - uid: 12033 components: - type: Transform pos: -46.5,-45.5 parent: 2 - - uid: 12115 + - uid: 12034 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 12116 + - uid: 12035 components: - type: Transform pos: -50.5,-40.5 parent: 2 - - uid: 12117 + - uid: 12036 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 12118 + - uid: 12037 components: - type: Transform pos: -52.5,-40.5 parent: 2 - - uid: 12119 + - uid: 12038 components: - type: Transform pos: -53.5,-40.5 parent: 2 - - uid: 12120 + - uid: 12039 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 12121 + - uid: 12040 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 12122 + - uid: 12041 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 12123 + - uid: 12042 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - uid: 12124 + - uid: 12043 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 12125 + - uid: 12044 components: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 12126 + - uid: 12045 components: - type: Transform pos: -54.5,-34.5 parent: 2 - - uid: 12127 + - uid: 12046 components: - type: Transform pos: -54.5,-33.5 parent: 2 - - uid: 12128 + - uid: 12047 components: - type: Transform pos: -54.5,-32.5 parent: 2 - - uid: 12129 + - uid: 12048 components: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 12130 + - uid: 12049 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 12131 + - uid: 12050 components: - type: Transform pos: -55.5,-30.5 parent: 2 - - uid: 12132 + - uid: 12051 components: - type: Transform pos: -56.5,-30.5 parent: 2 - - uid: 12133 + - uid: 12052 components: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 12134 + - uid: 12053 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 12135 + - uid: 12054 components: - type: Transform pos: -51.5,-19.5 parent: 2 - - uid: 12136 + - uid: 12055 components: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 12137 + - uid: 12056 components: - type: Transform pos: -53.5,-19.5 parent: 2 - - uid: 12138 + - uid: 12057 components: - type: Transform pos: -54.5,-19.5 parent: 2 - - uid: 12139 + - uid: 12058 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 12140 + - uid: 12059 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 12141 + - uid: 12060 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 12142 + - uid: 12061 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 12143 + - uid: 12062 components: - type: Transform pos: -59.5,-19.5 parent: 2 - - uid: 12144 + - uid: 12063 components: - type: Transform pos: -60.5,-19.5 parent: 2 - - uid: 12145 + - uid: 12064 components: - type: Transform pos: -61.5,-19.5 parent: 2 - - uid: 12146 + - uid: 12065 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 12147 + - uid: 12066 components: - type: Transform pos: -62.5,-20.5 parent: 2 - - uid: 12148 + - uid: 12067 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 12149 + - uid: 12068 components: - type: Transform pos: -62.5,-42.5 parent: 2 - - uid: 12150 + - uid: 12069 components: - type: Transform pos: -63.5,-42.5 parent: 2 - - uid: 12151 + - uid: 12070 components: - type: Transform pos: -66.5,-45.5 parent: 2 - - uid: 12152 + - uid: 12071 components: - type: Transform pos: -67.5,-45.5 parent: 2 - - uid: 12153 + - uid: 12072 components: - type: Transform pos: -67.5,-39.5 parent: 2 - - uid: 12154 + - uid: 12073 components: - type: Transform pos: -67.5,-44.5 parent: 2 - - uid: 12155 + - uid: 12074 components: - type: Transform pos: -60.5,-42.5 parent: 2 - - uid: 12156 + - uid: 12075 components: - type: Transform pos: -63.5,-46.5 parent: 2 - - uid: 12157 + - uid: 12076 components: - type: Transform pos: -65.5,-45.5 parent: 2 - - uid: 12158 + - uid: 12077 components: - type: Transform pos: -64.5,-45.5 parent: 2 - - uid: 12159 + - uid: 12078 components: - type: Transform pos: 27.5,-34.5 parent: 2 - - uid: 12160 + - uid: 12079 components: - type: Transform pos: 28.5,-34.5 parent: 2 - - uid: 12161 + - uid: 12080 components: - type: Transform pos: 29.5,-34.5 parent: 2 - - uid: 12162 + - uid: 12081 components: - type: Transform pos: 31.5,-33.5 parent: 2 - - uid: 12163 + - uid: 12082 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 12164 + - uid: 12083 components: - type: Transform pos: -32.5,-4.5 parent: 2 - - uid: 12165 + - uid: 12084 components: - type: Transform pos: -32.5,-5.5 parent: 2 - - uid: 12166 + - uid: 12085 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 12167 + - uid: 12086 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 12168 + - uid: 12087 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 12169 + - uid: 12088 components: - type: Transform pos: -32.5,-9.5 parent: 2 - - uid: 12170 + - uid: 12089 components: - type: Transform pos: -32.5,-10.5 parent: 2 - - uid: 12171 + - uid: 12090 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 12172 + - uid: 12091 components: - type: Transform pos: -32.5,-12.5 parent: 2 - - uid: 12173 + - uid: 12092 components: - type: Transform pos: -32.5,-13.5 parent: 2 - - uid: 12174 + - uid: 12093 components: - type: Transform pos: -31.5,-13.5 parent: 2 - - uid: 12175 + - uid: 12094 components: - type: Transform pos: -30.5,-13.5 parent: 2 - - uid: 12176 + - uid: 12095 components: - type: Transform pos: -29.5,-13.5 parent: 2 - - uid: 12177 + - uid: 12096 components: - type: Transform pos: -28.5,-13.5 parent: 2 - - uid: 12178 + - uid: 12097 components: - type: Transform pos: -27.5,-13.5 parent: 2 - - uid: 12179 + - uid: 12098 components: - type: Transform pos: -27.5,-14.5 parent: 2 - - uid: 12180 + - uid: 12099 components: - type: Transform pos: -27.5,-15.5 parent: 2 - - uid: 12181 + - uid: 12100 components: - type: Transform pos: -27.5,-16.5 parent: 2 - - uid: 12182 + - uid: 12101 components: - type: Transform pos: -27.5,-17.5 parent: 2 - - uid: 12183 + - uid: 12102 components: - type: Transform pos: -27.5,-18.5 parent: 2 - - uid: 12184 + - uid: 12103 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 12185 + - uid: 12104 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 12186 + - uid: 12105 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 12187 + - uid: 12106 components: - type: Transform pos: -25.5,-19.5 parent: 2 - - uid: 12188 + - uid: 12107 components: - type: Transform pos: -24.5,-19.5 parent: 2 - - uid: 12189 + - uid: 12108 components: - type: Transform pos: -23.5,-19.5 parent: 2 - - uid: 12190 + - uid: 12109 components: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 12191 + - uid: 12110 components: - type: Transform pos: -23.5,-17.5 parent: 2 - - uid: 12192 + - uid: 12111 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 12193 + - uid: 12112 components: - type: Transform pos: 95.5,13.5 parent: 2 - - uid: 12194 + - uid: 12113 components: - type: Transform pos: 96.5,13.5 parent: 2 - - uid: 12195 + - uid: 12114 components: - type: Transform pos: 96.5,14.5 parent: 2 - - uid: 12196 + - uid: 12115 components: - type: Transform pos: 97.5,14.5 parent: 2 - - uid: 12197 + - uid: 12116 components: - type: Transform pos: 97.5,15.5 parent: 2 - - uid: 12198 + - uid: 12117 components: - type: Transform pos: 77.5,-4.5 parent: 2 - - uid: 12199 + - uid: 12118 components: - type: Transform pos: 103.5,-8.5 parent: 2 - - uid: 12200 + - uid: 12119 components: - type: Transform pos: 101.5,-7.5 parent: 2 - - uid: 12201 + - uid: 12120 components: - type: Transform pos: 99.5,-7.5 parent: 2 - - uid: 12202 + - uid: 12121 components: - type: Transform pos: 76.5,-4.5 parent: 2 - - uid: 12203 + - uid: 12122 components: - type: Transform pos: 75.5,-4.5 parent: 2 - - uid: 12204 + - uid: 12123 components: - type: Transform pos: 75.5,-5.5 parent: 2 - - uid: 12205 + - uid: 12124 components: - type: Transform pos: 74.5,-5.5 parent: 2 - - uid: 12206 + - uid: 12125 components: - type: Transform pos: 74.5,-6.5 parent: 2 - - uid: 12207 + - uid: 12126 components: - type: Transform pos: 76.5,-8.5 parent: 2 - - uid: 12208 + - uid: 12127 components: - type: Transform pos: 77.5,-8.5 parent: 2 - - uid: 12209 + - uid: 12128 components: - type: Transform pos: 78.5,-8.5 parent: 2 - - uid: 12210 + - uid: 12129 components: - type: Transform pos: 79.5,-8.5 parent: 2 - - uid: 12211 + - uid: 12130 components: - type: Transform pos: 80.5,-8.5 parent: 2 - - uid: 12212 + - uid: 12131 components: - type: Transform pos: 81.5,-8.5 parent: 2 - - uid: 12213 + - uid: 12132 components: - type: Transform pos: 82.5,-8.5 parent: 2 - - uid: 12214 + - uid: 12133 components: - type: Transform pos: 83.5,-8.5 parent: 2 - - uid: 12215 + - uid: 12134 components: - type: Transform pos: 84.5,-8.5 parent: 2 - - uid: 12216 + - uid: 12135 components: - type: Transform pos: 86.5,-9.5 parent: 2 - - uid: 12217 + - uid: 12136 components: - type: Transform pos: 87.5,-9.5 parent: 2 - - uid: 12218 + - uid: 12137 components: - type: Transform pos: 93.5,-9.5 parent: 2 - - uid: 12219 + - uid: 12138 components: - type: Transform pos: 92.5,-9.5 parent: 2 - - uid: 12220 + - uid: 12139 components: - type: Transform pos: 88.5,-9.5 parent: 2 - - uid: 12221 + - uid: 12140 components: - type: Transform pos: 89.5,-9.5 parent: 2 - - uid: 12222 + - uid: 12141 components: - type: Transform pos: 90.5,-9.5 parent: 2 - - uid: 12223 + - uid: 12142 components: - type: Transform pos: 91.5,-9.5 parent: 2 - - uid: 12224 + - uid: 12143 components: - type: Transform pos: 93.5,-8.5 parent: 2 - - uid: 12225 + - uid: 12144 components: - type: Transform pos: 94.5,-8.5 parent: 2 - - uid: 12226 + - uid: 12145 components: - type: Transform pos: 95.5,-8.5 parent: 2 - - uid: 12227 + - uid: 12146 components: - type: Transform pos: 96.5,-8.5 parent: 2 - - uid: 12228 + - uid: 12147 components: - type: Transform pos: 97.5,-8.5 parent: 2 - - uid: 12229 + - uid: 12148 components: - type: Transform pos: 98.5,-7.5 parent: 2 - - uid: 12230 + - uid: 12149 components: - type: Transform pos: 98.5,-8.5 parent: 2 - - uid: 12231 + - uid: 12150 components: - type: Transform pos: 102.5,-8.5 parent: 2 - - uid: 12232 + - uid: 12151 components: - type: Transform pos: 103.5,-8.5 parent: 2 - - uid: 12233 + - uid: 12152 components: - type: Transform pos: 104.5,-8.5 parent: 2 - - uid: 12234 + - uid: 12153 components: - type: Transform pos: 104.5,-7.5 parent: 2 - - uid: 12235 + - uid: 12154 components: - type: Transform pos: 104.5,-6.5 parent: 2 - - uid: 12236 + - uid: 12155 components: - type: Transform pos: 104.5,-5.5 parent: 2 - - uid: 12237 + - uid: 12156 components: - type: Transform pos: 104.5,-4.5 parent: 2 - - uid: 12238 + - uid: 12157 components: - type: Transform pos: 104.5,-3.5 parent: 2 - - uid: 12239 + - uid: 12158 components: - type: Transform pos: 104.5,-2.5 parent: 2 - - uid: 12240 + - uid: 12159 components: - type: Transform pos: 104.5,-1.5 parent: 2 - - uid: 12241 + - uid: 12160 components: - type: Transform pos: 104.5,-0.5 parent: 2 - - uid: 12242 + - uid: 12161 components: - type: Transform pos: 104.5,0.5 parent: 2 - - uid: 12243 + - uid: 12162 components: - type: Transform pos: 104.5,1.5 parent: 2 - - uid: 12244 + - uid: 12163 components: - type: Transform pos: 104.5,2.5 parent: 2 - - uid: 12245 + - uid: 12164 components: - type: Transform pos: 104.5,3.5 parent: 2 - - uid: 12246 + - uid: 12165 components: - type: Transform pos: 103.5,3.5 parent: 2 - - uid: 12247 + - uid: 12166 components: - type: Transform pos: 102.5,3.5 parent: 2 - - uid: 12248 + - uid: 12167 components: - type: Transform pos: 102.5,4.5 parent: 2 - - uid: 12249 + - uid: 12168 components: - type: Transform pos: 102.5,5.5 parent: 2 - - uid: 12250 + - uid: 12169 components: - type: Transform pos: 102.5,6.5 parent: 2 - - uid: 12251 + - uid: 12170 components: - type: Transform pos: 102.5,6.5 parent: 2 - - uid: 12252 + - uid: 12171 components: - type: Transform pos: 101.5,7.5 parent: 2 - - uid: 12253 + - uid: 12172 components: - type: Transform pos: 100.5,7.5 parent: 2 - - uid: 12254 + - uid: 12173 components: - type: Transform pos: 99.5,7.5 parent: 2 - - uid: 12255 + - uid: 12174 components: - type: Transform pos: 102.5,7.5 parent: 2 - - uid: 12256 + - uid: 12175 components: - type: Transform pos: 84.5,-9.5 parent: 2 - - uid: 12257 + - uid: 12176 components: - type: Transform pos: 84.5,-8.5 parent: 2 - - uid: 12258 + - uid: 12177 components: - type: Transform pos: 85.5,-9.5 parent: 2 - - uid: 12259 + - uid: 12178 components: - type: Transform pos: 100.5,-7.5 parent: 2 - - uid: 12260 + - uid: 12179 components: - type: Transform pos: 102.5,-8.5 parent: 2 - - uid: 12261 + - uid: 12180 components: - type: Transform pos: 102.5,-7.5 parent: 2 - - uid: 12262 + - uid: 12181 components: - type: Transform pos: 75.5,2.5 parent: 2 - - uid: 12263 + - uid: 12182 components: - type: Transform pos: 75.5,0.5 parent: 2 - - uid: 12264 + - uid: 12183 components: - type: Transform pos: 93.5,10.5 parent: 2 - - uid: 12265 + - uid: 12184 components: - type: Transform pos: 94.5,10.5 parent: 2 - - uid: 12266 + - uid: 12185 components: - type: Transform pos: 94.5,9.5 parent: 2 - - uid: 12267 + - uid: 12186 components: - type: Transform pos: -62.5,-31.5 parent: 2 - - uid: 12268 + - uid: 12187 components: - type: Transform pos: -62.5,-32.5 parent: 2 - - uid: 12269 + - uid: 12188 components: - type: Transform pos: -62.5,-33.5 parent: 2 - - uid: 12270 + - uid: 12189 components: - type: Transform pos: -62.5,-34.5 parent: 2 - - uid: 12271 + - uid: 12190 components: - type: Transform pos: -62.5,-35.5 parent: 2 - - uid: 12272 + - uid: 12191 components: - type: Transform pos: -63.5,-35.5 parent: 2 - - uid: 12273 + - uid: 12192 components: - type: Transform pos: -69.5,-34.5 parent: 2 - - uid: 12274 + - uid: 12193 components: - type: Transform pos: -69.5,-35.5 parent: 2 - - uid: 12275 + - uid: 12194 components: - type: Transform pos: -69.5,-33.5 parent: 2 - - uid: 12276 + - uid: 12195 components: - type: Transform pos: -68.5,-35.5 parent: 2 - - uid: 12277 + - uid: 12196 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 12278 + - uid: 12197 components: - type: Transform pos: 7.5,-44.5 parent: 2 - - uid: 12279 + - uid: 12198 components: - type: Transform pos: -77.5,4.5 parent: 2 - - uid: 12280 + - uid: 12199 components: - type: Transform pos: -76.5,14.5 parent: 2 - - uid: 12281 + - uid: 12200 components: - type: Transform pos: -76.5,8.5 parent: 2 - - uid: 12282 + - uid: 12201 components: - type: Transform pos: -76.5,10.5 parent: 2 - - uid: 12283 + - uid: 12202 components: - type: Transform pos: -76.5,7.5 parent: 2 - - uid: 12284 + - uid: 12203 components: - type: Transform pos: -78.5,4.5 parent: 2 - - uid: 12285 + - uid: 12204 components: - type: Transform pos: -76.5,12.5 parent: 2 - - uid: 12286 + - uid: 12205 components: - type: Transform pos: -76.5,5.5 parent: 2 - - uid: 12287 + - uid: 12206 components: - type: Transform pos: -76.5,4.5 parent: 2 - - uid: 12288 + - uid: 12207 components: - type: Transform pos: -76.5,6.5 parent: 2 - - uid: 12289 + - uid: 12208 components: - type: Transform pos: -76.5,11.5 parent: 2 - - uid: 12290 + - uid: 12209 components: - type: Transform pos: -76.5,9.5 parent: 2 - - uid: 12291 + - uid: 12210 components: - type: Transform pos: -76.5,13.5 parent: 2 - - uid: 12292 + - uid: 12211 components: - type: Transform pos: -79.5,4.5 parent: 2 - - uid: 12293 + - uid: 12212 components: - type: Transform pos: -80.5,4.5 parent: 2 - - uid: 12294 + - uid: 12213 components: - type: Transform pos: -81.5,4.5 parent: 2 - - uid: 12295 + - uid: 12214 components: - type: Transform pos: -82.5,4.5 parent: 2 - - uid: 12296 + - uid: 12215 components: - type: Transform pos: -83.5,4.5 parent: 2 - - uid: 12297 + - uid: 12216 components: - type: Transform pos: -84.5,4.5 parent: 2 - - uid: 12298 + - uid: 12217 components: - type: Transform pos: -85.5,4.5 parent: 2 - - uid: 12299 + - uid: 12218 components: - type: Transform pos: -86.5,4.5 parent: 2 - - uid: 12300 + - uid: 12219 components: - type: Transform pos: -87.5,4.5 parent: 2 - - uid: 12301 + - uid: 12220 components: - type: Transform pos: -88.5,4.5 parent: 2 - - uid: 12302 + - uid: 12221 components: - type: Transform pos: -89.5,4.5 parent: 2 - - uid: 12303 + - uid: 12222 components: - type: Transform pos: -90.5,4.5 parent: 2 - - uid: 12304 + - uid: 12223 components: - type: Transform pos: -91.5,4.5 parent: 2 - - uid: 12305 + - uid: 12224 components: - type: Transform pos: -92.5,4.5 parent: 2 - - uid: 12306 + - uid: 12225 components: - type: Transform pos: -93.5,4.5 parent: 2 - - uid: 12307 + - uid: 12226 components: - type: Transform pos: -94.5,4.5 parent: 2 - - uid: 12308 + - uid: 12227 components: - type: Transform pos: -95.5,4.5 parent: 2 - - uid: 12309 + - uid: 12228 components: - type: Transform pos: -96.5,4.5 parent: 2 - - uid: 12310 + - uid: 12229 components: - type: Transform pos: -97.5,4.5 parent: 2 - - uid: 12311 + - uid: 12230 components: - type: Transform pos: -98.5,4.5 parent: 2 - - uid: 12312 + - uid: 12231 components: - type: Transform pos: -99.5,4.5 parent: 2 - - uid: 12313 + - uid: 12232 components: - type: Transform pos: -100.5,4.5 parent: 2 - - uid: 12314 + - uid: 12233 components: - type: Transform pos: -102.5,4.5 parent: 2 - - uid: 12315 + - uid: 12234 components: - type: Transform pos: -100.5,6.5 parent: 2 - - uid: 12316 + - uid: 12235 components: - type: Transform pos: -99.5,6.5 parent: 2 - - uid: 12317 + - uid: 12236 components: - type: Transform pos: -98.5,6.5 parent: 2 - - uid: 12318 + - uid: 12237 components: - type: Transform pos: -97.5,6.5 parent: 2 - - uid: 12319 + - uid: 12238 components: - type: Transform pos: -96.5,6.5 parent: 2 - - uid: 12320 + - uid: 12239 components: - type: Transform pos: -95.5,6.5 parent: 2 - - uid: 12321 + - uid: 12240 components: - type: Transform pos: -94.5,6.5 parent: 2 - - uid: 12322 + - uid: 12241 components: - type: Transform pos: -93.5,6.5 parent: 2 - - uid: 12323 + - uid: 12242 components: - type: Transform pos: -92.5,6.5 parent: 2 - - uid: 12324 + - uid: 12243 components: - type: Transform pos: -91.5,6.5 parent: 2 - - uid: 12325 + - uid: 12244 components: - type: Transform pos: -90.5,6.5 parent: 2 - - uid: 12326 + - uid: 12245 components: - type: Transform pos: -89.5,6.5 parent: 2 - - uid: 12327 + - uid: 12246 components: - type: Transform pos: -88.5,6.5 parent: 2 - - uid: 12328 + - uid: 12247 components: - type: Transform pos: -87.5,6.5 parent: 2 - - uid: 12329 + - uid: 12248 components: - type: Transform pos: -86.5,6.5 parent: 2 - - uid: 12330 + - uid: 12249 components: - type: Transform pos: -85.5,6.5 parent: 2 - - uid: 12331 + - uid: 12250 components: - type: Transform pos: -84.5,6.5 parent: 2 - - uid: 12332 + - uid: 12251 components: - type: Transform pos: -83.5,6.5 parent: 2 - - uid: 12333 + - uid: 12252 components: - type: Transform pos: -82.5,6.5 parent: 2 - - uid: 12334 + - uid: 12253 components: - type: Transform pos: -81.5,6.5 parent: 2 - - uid: 12335 + - uid: 12254 components: - type: Transform pos: -80.5,6.5 parent: 2 - - uid: 12336 + - uid: 12255 components: - type: Transform pos: -79.5,6.5 parent: 2 - - uid: 12337 + - uid: 12256 components: - type: Transform pos: -78.5,6.5 parent: 2 - - uid: 12338 + - uid: 12257 components: - type: Transform pos: -77.5,6.5 parent: 2 - - uid: 12339 + - uid: 12258 components: - type: Transform pos: -102.5,3.5 parent: 2 - - uid: 12340 + - uid: 12259 components: - type: Transform pos: -102.5,5.5 parent: 2 - - uid: 12341 + - uid: 12260 components: - type: Transform pos: -103.5,3.5 parent: 2 - - uid: 12342 + - uid: 12261 components: - type: Transform pos: -100.5,2.5 parent: 2 - - uid: 12343 + - uid: 12262 components: - type: Transform pos: -100.5,1.5 parent: 2 - - uid: 12344 + - uid: 12263 components: - type: Transform pos: -101.5,1.5 parent: 2 - - uid: 12345 + - uid: 12264 components: - type: Transform pos: -100.5,3.5 parent: 2 - - uid: 12346 + - uid: 12265 components: - type: Transform pos: -102.5,1.5 parent: 2 - - uid: 12347 + - uid: 12266 components: - type: Transform pos: -103.5,1.5 parent: 2 - - uid: 12348 + - uid: 12267 components: - type: Transform pos: -103.5,0.5 parent: 2 - - uid: 12349 + - uid: 12268 components: - type: Transform pos: -103.5,-0.5 parent: 2 - - uid: 12350 + - uid: 12269 components: - type: Transform pos: -104.5,3.5 parent: 2 - - uid: 12351 + - uid: 12270 components: - type: Transform pos: -105.5,3.5 parent: 2 - - uid: 12352 + - uid: 12271 components: - type: Transform pos: -105.5,2.5 parent: 2 - - uid: 12353 + - uid: 12272 components: - type: Transform pos: -105.5,1.5 parent: 2 - - uid: 12354 + - uid: 12273 components: - type: Transform pos: -105.5,0.5 parent: 2 - - uid: 12355 + - uid: 12274 components: - type: Transform pos: -105.5,-0.5 parent: 2 - - uid: 12356 + - uid: 12275 components: - type: Transform pos: -105.5,-0.5 parent: 2 - - uid: 12357 + - uid: 12276 components: - type: Transform pos: -105.5,-1.5 parent: 2 - - uid: 12358 + - uid: 12277 components: - type: Transform pos: -105.5,-2.5 parent: 2 - - uid: 12359 + - uid: 12278 components: - type: Transform pos: -105.5,-3.5 parent: 2 - - uid: 12360 + - uid: 12279 components: - type: Transform pos: -105.5,-4.5 parent: 2 - - uid: 12361 + - uid: 12280 components: - type: Transform pos: -105.5,-5.5 parent: 2 - - uid: 12362 + - uid: 12281 components: - type: Transform pos: -105.5,-6.5 parent: 2 - - uid: 12363 + - uid: 12282 components: - type: Transform pos: -105.5,-7.5 parent: 2 - - uid: 12364 + - uid: 12283 components: - type: Transform pos: -105.5,-8.5 parent: 2 - - uid: 12365 + - uid: 12284 components: - type: Transform pos: -105.5,-9.5 parent: 2 - - uid: 12366 + - uid: 12285 components: - type: Transform pos: -105.5,-10.5 parent: 2 - - uid: 12367 + - uid: 12286 components: - type: Transform pos: -105.5,-11.5 parent: 2 - - uid: 12368 + - uid: 12287 components: - type: Transform pos: -105.5,-12.5 parent: 2 - - uid: 12369 + - uid: 12288 components: - type: Transform pos: -105.5,-13.5 parent: 2 - - uid: 12370 + - uid: 12289 components: - type: Transform pos: -105.5,-14.5 parent: 2 - - uid: 12371 + - uid: 12290 components: - type: Transform pos: -105.5,-15.5 parent: 2 - - uid: 12372 + - uid: 12291 components: - type: Transform pos: -105.5,-16.5 parent: 2 - - uid: 12373 + - uid: 12292 components: - type: Transform pos: -105.5,-17.5 parent: 2 - - uid: 12374 + - uid: 12293 components: - type: Transform pos: -105.5,-18.5 parent: 2 - - uid: 12375 + - uid: 12294 components: - type: Transform pos: -104.5,-18.5 parent: 2 - - uid: 12376 + - uid: 12295 components: - type: Transform pos: -103.5,-18.5 parent: 2 - - uid: 12377 + - uid: 12296 components: - type: Transform pos: -102.5,-18.5 parent: 2 - - uid: 12378 + - uid: 12297 components: - type: Transform pos: -102.5,-19.5 parent: 2 - - uid: 12379 + - uid: 12298 components: - type: Transform pos: -102.5,-19.5 parent: 2 - - uid: 12380 + - uid: 12299 components: - type: Transform pos: -102.5,-20.5 parent: 2 - - uid: 12381 + - uid: 12300 components: - type: Transform pos: -102.5,-21.5 parent: 2 - - uid: 12382 + - uid: 12301 components: - type: Transform pos: -102.5,-21.5 parent: 2 - - uid: 12383 + - uid: 12302 components: - type: Transform pos: -102.5,-21.5 parent: 2 - - uid: 12384 + - uid: 12303 components: - type: Transform pos: -101.5,-21.5 parent: 2 - - uid: 12385 + - uid: 12304 components: - type: Transform pos: -100.5,-21.5 parent: 2 - - uid: 12386 + - uid: 12305 components: - type: Transform pos: -99.5,-21.5 parent: 2 - - uid: 12387 + - uid: 12306 components: - type: Transform pos: -98.5,-21.5 parent: 2 - - uid: 12388 + - uid: 12307 components: - type: Transform pos: -97.5,-21.5 parent: 2 - - uid: 12389 + - uid: 12308 components: - type: Transform pos: -96.5,-21.5 parent: 2 - - uid: 12390 + - uid: 12309 components: - type: Transform pos: -95.5,-21.5 parent: 2 - - uid: 12391 + - uid: 12310 components: - type: Transform pos: -94.5,-21.5 parent: 2 - - uid: 12392 + - uid: 12311 components: - type: Transform pos: -93.5,-21.5 parent: 2 - - uid: 12393 + - uid: 12312 components: - type: Transform pos: -92.5,-21.5 parent: 2 - - uid: 12394 + - uid: 12313 components: - type: Transform pos: -91.5,-21.5 parent: 2 - - uid: 12395 + - uid: 12314 components: - type: Transform pos: -90.5,-21.5 parent: 2 - - uid: 12396 + - uid: 12315 components: - type: Transform pos: -89.5,-21.5 parent: 2 - - uid: 12397 + - uid: 12316 components: - type: Transform pos: -88.5,-21.5 parent: 2 - - uid: 12398 + - uid: 12317 components: - type: Transform pos: -87.5,-21.5 parent: 2 - - uid: 12399 + - uid: 12318 components: - type: Transform pos: -86.5,-21.5 parent: 2 - - uid: 12400 + - uid: 12319 components: - type: Transform pos: -85.5,-21.5 parent: 2 - - uid: 12401 + - uid: 12320 components: - type: Transform pos: -84.5,-21.5 parent: 2 - - uid: 12402 + - uid: 12321 components: - type: Transform pos: -83.5,-21.5 parent: 2 - - uid: 12403 + - uid: 12322 components: - type: Transform pos: -82.5,-21.5 parent: 2 - - uid: 12404 + - uid: 12323 components: - type: Transform pos: -78.5,-21.5 parent: 2 - - uid: 12405 + - uid: 12324 components: - type: Transform pos: -78.5,-19.5 parent: 2 - - uid: 12406 + - uid: 12325 components: - type: Transform pos: -83.5,-19.5 parent: 2 - - uid: 12407 + - uid: 12326 components: - type: Transform pos: -84.5,-19.5 parent: 2 - - uid: 12408 + - uid: 12327 components: - type: Transform pos: -85.5,-19.5 parent: 2 - - uid: 12409 + - uid: 12328 components: - type: Transform pos: -86.5,-19.5 parent: 2 - - uid: 12410 + - uid: 12329 components: - type: Transform pos: -87.5,-19.5 parent: 2 - - uid: 12411 + - uid: 12330 components: - type: Transform pos: -88.5,-19.5 parent: 2 - - uid: 12412 + - uid: 12331 components: - type: Transform pos: -89.5,-19.5 parent: 2 - - uid: 12413 + - uid: 12332 components: - type: Transform pos: -90.5,-19.5 parent: 2 - - uid: 12414 + - uid: 12333 components: - type: Transform pos: -91.5,-19.5 parent: 2 - - uid: 12415 + - uid: 12334 components: - type: Transform pos: -92.5,-19.5 parent: 2 - - uid: 12416 + - uid: 12335 components: - type: Transform pos: -93.5,-19.5 parent: 2 - - uid: 12417 + - uid: 12336 components: - type: Transform pos: -94.5,-19.5 parent: 2 - - uid: 12418 + - uid: 12337 components: - type: Transform pos: -95.5,-19.5 parent: 2 - - uid: 12419 + - uid: 12338 components: - type: Transform pos: -96.5,-19.5 parent: 2 - - uid: 12420 + - uid: 12339 components: - type: Transform pos: -97.5,-19.5 parent: 2 - - uid: 12421 + - uid: 12340 components: - type: Transform pos: -98.5,-19.5 parent: 2 - - uid: 12422 + - uid: 12341 components: - type: Transform pos: -99.5,-19.5 parent: 2 - - uid: 12423 + - uid: 12342 components: - type: Transform pos: -100.5,-19.5 parent: 2 - - uid: 12424 + - uid: 12343 components: - type: Transform pos: -100.5,-18.5 parent: 2 - - uid: 12425 + - uid: 12344 components: - type: Transform pos: -100.5,-17.5 parent: 2 - - uid: 12426 + - uid: 12345 components: - type: Transform pos: -100.5,-16.5 parent: 2 - - uid: 12427 + - uid: 12346 components: - type: Transform pos: -101.5,-16.5 parent: 2 - - uid: 12428 + - uid: 12347 components: - type: Transform pos: -102.5,-16.5 parent: 2 - - uid: 12429 + - uid: 12348 components: - type: Transform pos: -103.5,-16.5 parent: 2 - - uid: 12430 + - uid: 12349 components: - type: Transform pos: -103.5,-15.5 parent: 2 - - uid: 12431 + - uid: 12350 components: - type: Transform pos: -103.5,-14.5 parent: 2 - - uid: 12432 + - uid: 12351 components: - type: Transform pos: -103.5,-13.5 parent: 2 - - uid: 12433 + - uid: 12352 components: - type: Transform pos: -103.5,-12.5 parent: 2 - - uid: 12434 + - uid: 12353 components: - type: Transform pos: -103.5,-11.5 parent: 2 - - uid: 12435 + - uid: 12354 components: - type: Transform pos: -103.5,-10.5 parent: 2 - - uid: 12436 + - uid: 12355 components: - type: Transform pos: -103.5,-9.5 parent: 2 - - uid: 12437 + - uid: 12356 components: - type: Transform pos: -103.5,-8.5 parent: 2 - - uid: 12438 + - uid: 12357 components: - type: Transform pos: -103.5,-7.5 parent: 2 - - uid: 12439 + - uid: 12358 components: - type: Transform pos: -103.5,-6.5 parent: 2 - - uid: 12440 + - uid: 12359 components: - type: Transform pos: -103.5,-5.5 parent: 2 - - uid: 12441 + - uid: 12360 components: - type: Transform pos: -103.5,-4.5 parent: 2 - - uid: 12442 + - uid: 12361 components: - type: Transform pos: -103.5,-3.5 parent: 2 - - uid: 12443 + - uid: 12362 components: - type: Transform pos: -103.5,-2.5 parent: 2 - - uid: 12444 + - uid: 12363 components: - type: Transform pos: -103.5,-1.5 parent: 2 - - uid: 12445 + - uid: 12364 components: - type: Transform pos: -103.5,-0.5 parent: 2 - - uid: 12446 + - uid: 12365 components: - type: Transform pos: -103.5,0.5 parent: 2 - - uid: 12447 + - uid: 12366 components: - type: Transform pos: -103.5,1.5 parent: 2 - - uid: 12448 + - uid: 12367 components: - type: Transform pos: -102.5,6.5 parent: 2 - - uid: 12449 + - uid: 12368 components: - type: Transform pos: -101.5,6.5 parent: 2 - - uid: 12450 + - uid: 12369 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 12451 + - uid: 12370 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 12452 + - uid: 12371 components: - type: Transform pos: 9.5,-11.5 parent: 2 - - uid: 12453 + - uid: 12372 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 12454 + - uid: 12373 components: - type: Transform pos: 10.5,-11.5 parent: 2 - - uid: 12455 + - uid: 12374 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 12456 + - uid: 12375 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 12457 + - uid: 12376 components: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 12458 + - uid: 12377 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 12459 + - uid: 12378 components: - type: Transform pos: 79.5,7.5 parent: 2 - - uid: 12460 + - uid: 12379 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 12461 + - uid: 12380 components: - type: Transform pos: 78.5,6.5 parent: 2 - - uid: 12462 + - uid: 12381 components: - type: Transform pos: 78.5,5.5 parent: 2 - - uid: 12463 + - uid: 12382 components: - type: Transform pos: 78.5,4.5 parent: 2 - - uid: 12464 + - uid: 12383 components: - type: Transform pos: 78.5,3.5 parent: 2 - - uid: 12465 + - uid: 12384 components: - type: Transform pos: 78.5,2.5 parent: 2 - - uid: 12466 + - uid: 12385 components: - type: Transform pos: 54.5,30.5 parent: 2 - - uid: 12467 + - uid: 12386 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 12468 + - uid: 12387 components: - type: Transform pos: 65.5,30.5 parent: 2 - - uid: 12469 + - uid: 12388 components: - type: Transform pos: 66.5,30.5 parent: 2 - - uid: 12470 + - uid: 12389 components: - type: Transform pos: 65.5,29.5 parent: 2 - - uid: 12471 + - uid: 12390 components: - type: Transform pos: 54.5,32.5 parent: 2 - - uid: 12472 + - uid: 12391 components: - type: Transform pos: 54.5,31.5 parent: 2 - - uid: 12473 + - uid: 12392 components: - type: Transform pos: 54.5,33.5 parent: 2 - - uid: 12474 + - uid: 12393 components: - type: Transform pos: 34.5,-51.5 parent: 2 - - uid: 12475 + - uid: 12394 components: - type: Transform pos: 35.5,-51.5 parent: 2 - - uid: 12476 + - uid: 12395 components: - type: Transform pos: -17.5,-50.5 parent: 2 - - uid: 12477 + - uid: 12396 components: - type: Transform pos: -18.5,-50.5 parent: 2 - - uid: 12478 + - uid: 12397 components: - type: Transform pos: -19.5,-50.5 parent: 2 - - uid: 12479 + - uid: 12398 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 12480 + - uid: 12399 components: - type: Transform pos: 34.5,-50.5 parent: 2 - - uid: 12481 + - uid: 12400 components: - type: Transform pos: 34.5,-49.5 parent: 2 - - uid: 12482 + - uid: 12401 components: - type: Transform pos: 33.5,-49.5 parent: 2 - - uid: 12483 + - uid: 12402 components: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 12484 + - uid: 12403 components: - type: Transform pos: 31.5,-49.5 parent: 2 - - uid: 12485 + - uid: 12404 components: - type: Transform pos: 30.5,-49.5 parent: 2 - - uid: 12486 + - uid: 12405 components: - type: Transform pos: 29.5,-49.5 parent: 2 - - uid: 12487 + - uid: 12406 components: - type: Transform pos: 28.5,-49.5 parent: 2 - - uid: 12488 + - uid: 12407 components: - type: Transform pos: 27.5,-49.5 parent: 2 - - uid: 12489 + - uid: 12408 components: - type: Transform pos: 27.5,-48.5 parent: 2 - - uid: 12490 + - uid: 12409 components: - type: Transform pos: 27.5,-47.5 parent: 2 - - uid: 12491 + - uid: 12410 components: - type: Transform pos: 27.5,-46.5 parent: 2 - - uid: 12492 + - uid: 12411 components: - type: Transform pos: 27.5,-45.5 parent: 2 - - uid: 12493 + - uid: 12412 components: - type: Transform pos: 27.5,-44.5 parent: 2 - - uid: 12494 + - uid: 12413 components: - type: Transform pos: 27.5,-43.5 parent: 2 - - uid: 12495 + - uid: 12414 components: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 12496 + - uid: 12415 components: - type: Transform pos: 27.5,-41.5 parent: 2 - - uid: 12497 + - uid: 12416 components: - type: Transform pos: 27.5,-40.5 parent: 2 - - uid: 12498 + - uid: 12417 components: - type: Transform pos: 27.5,-39.5 parent: 2 - - uid: 12499 + - uid: 12418 components: - type: Transform pos: 5.5,-64.5 parent: 2 - - uid: 12500 + - uid: 12419 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 12501 + - uid: 12420 components: - type: Transform pos: 5.5,-62.5 parent: 2 - - uid: 12502 + - uid: 12421 components: - type: Transform pos: 5.5,-61.5 parent: 2 - - uid: 12503 + - uid: 12422 components: - type: Transform pos: 5.5,-60.5 parent: 2 - - uid: 12504 + - uid: 12423 components: - type: Transform pos: 5.5,-59.5 parent: 2 - - uid: 12505 + - uid: 12424 components: - type: Transform pos: 5.5,-58.5 parent: 2 - - uid: 12506 + - uid: 12425 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 12507 + - uid: 12426 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 12508 + - uid: 12427 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 12509 + - uid: 12428 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 12510 + - uid: 12429 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 12511 + - uid: 12430 components: - type: Transform pos: 62.5,28.5 parent: 2 - - uid: 12512 + - uid: 12431 components: - type: Transform pos: 64.5,28.5 parent: 2 - - uid: 12513 + - uid: 12432 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 12514 + - uid: 12433 components: - type: Transform pos: 63.5,28.5 parent: 2 - - uid: 12515 + - uid: 12434 components: - type: Transform pos: 43.5,-6.5 parent: 2 - - uid: 12516 + - uid: 12435 components: - type: Transform pos: 43.5,-5.5 parent: 2 - - uid: 12517 + - uid: 12436 components: - type: Transform pos: 25.5,22.5 parent: 2 - - uid: 12518 + - uid: 12437 components: - type: Transform pos: 22.5,22.5 parent: 2 - - uid: 12519 + - uid: 12438 components: - type: Transform pos: 21.5,22.5 parent: 2 - - uid: 12520 + - uid: 12439 components: - type: Transform pos: 24.5,22.5 parent: 2 - - uid: 12521 + - uid: 12440 components: - type: Transform pos: 23.5,22.5 parent: 2 - - uid: 12522 + - uid: 12441 components: - type: Transform pos: 23.5,16.5 parent: 2 - - uid: 12523 + - uid: 12442 components: - type: Transform pos: 21.5,23.5 parent: 2 - - uid: 12524 + - uid: 12443 components: - type: Transform pos: 24.5,18.5 parent: 2 - - uid: 12525 + - uid: 12444 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 12526 + - uid: 12445 components: - type: Transform pos: 24.5,17.5 parent: 2 - - uid: 12527 + - uid: 12446 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 12528 + - uid: 12447 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 12529 + - uid: 12448 components: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 33762 + - uid: 12449 components: - type: Transform pos: -55.5,-22.5 parent: 2 - - uid: 34832 + - uid: 12450 components: - type: Transform pos: -55.5,-21.5 parent: 2 - - uid: 38510 + - uid: 38337 components: - type: Transform pos: 0.5,1.5 - parent: 38484 - - uid: 38511 + parent: 38311 + - uid: 38338 components: - type: Transform pos: 3.5,-0.5 - parent: 38484 - - uid: 38512 + parent: 38311 + - uid: 38339 components: - type: Transform pos: 3.5,0.5 - parent: 38484 - - uid: 38513 + parent: 38311 + - uid: 38340 components: - type: Transform pos: 3.5,1.5 - parent: 38484 - - uid: 38514 + parent: 38311 + - uid: 38341 components: - type: Transform pos: 2.5,1.5 - parent: 38484 - - uid: 38515 + parent: 38311 + - uid: 38342 components: - type: Transform pos: 1.5,1.5 - parent: 38484 - - uid: 38516 + parent: 38311 + - uid: 38343 components: - type: Transform pos: -0.5,1.5 - parent: 38484 - - uid: 38517 + parent: 38311 + - uid: 38344 components: - type: Transform pos: -0.5,0.5 - parent: 38484 - - uid: 38518 + parent: 38311 + - uid: 38345 components: - type: Transform pos: -0.5,-0.5 - parent: 38484 - - uid: 38921 + parent: 38311 + - uid: 38748 components: - type: Transform pos: -1.5,-0.5 - parent: 38584 - - uid: 38922 + parent: 38411 + - uid: 38749 components: - type: Transform pos: 4.5,0.5 - parent: 38584 - - uid: 38923 + parent: 38411 + - uid: 38750 components: - type: Transform pos: 4.5,-1.5 - parent: 38584 - - uid: 38924 + parent: 38411 + - uid: 38751 components: - type: Transform pos: -12.5,-1.5 - parent: 38584 - - uid: 38925 + parent: 38411 + - uid: 38752 components: - type: Transform pos: -4.5,3.5 - parent: 38584 - - uid: 38926 + parent: 38411 + - uid: 38753 components: - type: Transform pos: 4.5,-2.5 - parent: 38584 - - uid: 38927 + parent: 38411 + - uid: 38754 components: - type: Transform pos: -12.5,6.5 - parent: 38584 - - uid: 38928 + parent: 38411 + - uid: 38755 components: - type: Transform pos: -12.5,3.5 - parent: 38584 - - uid: 38929 + parent: 38411 + - uid: 38756 components: - type: Transform pos: 8.5,1.5 - parent: 38584 - - uid: 38930 + parent: 38411 + - uid: 38757 components: - type: Transform pos: -7.5,-0.5 - parent: 38584 - - uid: 38931 + parent: 38411 + - uid: 38758 components: - type: Transform pos: -12.5,0.5 - parent: 38584 - - uid: 38932 + parent: 38411 + - uid: 38759 components: - type: Transform pos: -12.5,1.5 - parent: 38584 - - uid: 38933 + parent: 38411 + - uid: 38760 components: - type: Transform pos: -12.5,-3.5 - parent: 38584 - - uid: 38934 + parent: 38411 + - uid: 38761 components: - type: Transform pos: -12.5,9.5 - parent: 38584 - - uid: 38935 + parent: 38411 + - uid: 38762 components: - type: Transform pos: -10.5,9.5 - parent: 38584 - - uid: 38936 + parent: 38411 + - uid: 38763 components: - type: Transform pos: -9.5,9.5 - parent: 38584 - - uid: 38937 + parent: 38411 + - uid: 38764 components: - type: Transform pos: -7.5,9.5 - parent: 38584 - - uid: 38938 + parent: 38411 + - uid: 38765 components: - type: Transform pos: -7.5,10.5 - parent: 38584 - - uid: 38939 + parent: 38411 + - uid: 38766 components: - type: Transform pos: 10.5,-3.5 - parent: 38584 - - uid: 38940 + parent: 38411 + - uid: 38767 components: - type: Transform pos: -7.5,11.5 - parent: 38584 - - uid: 38941 + parent: 38411 + - uid: 38768 components: - type: Transform pos: 8.5,-4.5 - parent: 38584 - - uid: 38942 + parent: 38411 + - uid: 38769 components: - type: Transform pos: -5.5,1.5 - parent: 38584 - - uid: 38943 + parent: 38411 + - uid: 38770 components: - type: Transform pos: -5.5,0.5 - parent: 38584 - - uid: 38944 + parent: 38411 + - uid: 38771 components: - type: Transform pos: -5.5,-0.5 - parent: 38584 - - uid: 38945 + parent: 38411 + - uid: 38772 components: - type: Transform pos: 10.5,-4.5 - parent: 38584 - - uid: 38946 + parent: 38411 + - uid: 38773 components: - type: Transform pos: -8.5,9.5 - parent: 38584 - - uid: 38947 + parent: 38411 + - uid: 38774 components: - type: Transform pos: -21.5,25.5 - parent: 38584 - - uid: 38948 + parent: 38411 + - uid: 38775 components: - type: Transform pos: -21.5,26.5 - parent: 38584 - - uid: 38949 + parent: 38411 + - uid: 38776 components: - type: Transform pos: -21.5,27.5 - parent: 38584 - - uid: 38950 + parent: 38411 + - uid: 38777 components: - type: Transform pos: -20.5,28.5 - parent: 38584 - - uid: 38951 + parent: 38411 + - uid: 38778 components: - type: Transform pos: -19.5,28.5 - parent: 38584 - - uid: 38952 + parent: 38411 + - uid: 38779 components: - type: Transform pos: 8.5,2.5 - parent: 38584 - - uid: 38953 + parent: 38411 + - uid: 38780 components: - type: Transform pos: -6.5,2.5 - parent: 38584 - - uid: 38954 + parent: 38411 + - uid: 38781 components: - type: Transform pos: -10.5,2.5 - parent: 38584 - - uid: 38955 + parent: 38411 + - uid: 38782 components: - type: Transform pos: -4.5,2.5 - parent: 38584 - - uid: 38956 + parent: 38411 + - uid: 38783 components: - type: Transform pos: -5.5,2.5 - parent: 38584 - - uid: 38957 + parent: 38411 + - uid: 38784 components: - type: Transform pos: 2.5,3.5 - parent: 38584 - - uid: 38958 + parent: 38411 + - uid: 38785 components: - type: Transform pos: -2.5,2.5 - parent: 38584 - - uid: 38959 + parent: 38411 + - uid: 38786 components: - type: Transform pos: -3.5,2.5 - parent: 38584 - - uid: 38960 + parent: 38411 + - uid: 38787 components: - type: Transform pos: -1.5,2.5 - parent: 38584 - - uid: 38961 + parent: 38411 + - uid: 38788 components: - type: Transform pos: -1.5,3.5 - parent: 38584 - - uid: 38962 + parent: 38411 + - uid: 38789 components: - type: Transform pos: 4.5,-4.5 - parent: 38584 - - uid: 38963 + parent: 38411 + - uid: 38790 components: - type: Transform pos: -8.5,2.5 - parent: 38584 - - uid: 38964 + parent: 38411 + - uid: 38791 components: - type: Transform pos: -12.5,5.5 - parent: 38584 - - uid: 38965 + parent: 38411 + - uid: 38792 components: - type: Transform pos: -11.5,2.5 - parent: 38584 - - uid: 38966 + parent: 38411 + - uid: 38793 components: - type: Transform pos: -7.5,2.5 - parent: 38584 - - uid: 38967 + parent: 38411 + - uid: 38794 components: - type: Transform pos: 4.5,-0.5 - parent: 38584 - - uid: 38968 + parent: 38411 + - uid: 38795 components: - type: Transform pos: -16.5,-2.5 - parent: 38584 - - uid: 38969 + parent: 38411 + - uid: 38796 components: - type: Transform pos: -7.5,-1.5 - parent: 38584 - - uid: 38970 + parent: 38411 + - uid: 38797 components: - type: Transform pos: -12.5,8.5 - parent: 38584 - - uid: 38971 + parent: 38411 + - uid: 38798 components: - type: Transform pos: -6.5,-1.5 - parent: 38584 - - uid: 38972 + parent: 38411 + - uid: 38799 components: - type: Transform pos: 9.5,-4.5 - parent: 38584 - - uid: 38973 + parent: 38411 + - uid: 38800 components: - type: Transform pos: -12.5,4.5 - parent: 38584 - - uid: 38974 + parent: 38411 + - uid: 38801 components: - type: Transform pos: -12.5,-2.5 - parent: 38584 - - uid: 38975 + parent: 38411 + - uid: 38802 components: - type: Transform pos: -12.5,-0.5 - parent: 38584 - - uid: 38976 + parent: 38411 + - uid: 38803 components: - type: Transform pos: 0.5,3.5 - parent: 38584 - - uid: 38977 + parent: 38411 + - uid: 38804 components: - type: Transform pos: 4.5,1.5 - parent: 38584 - - uid: 38978 + parent: 38411 + - uid: 38805 components: - type: Transform pos: 10.5,-0.5 - parent: 38584 - - uid: 38979 + parent: 38411 + - uid: 38806 components: - type: Transform pos: 10.5,-1.5 - parent: 38584 - - uid: 38980 + parent: 38411 + - uid: 38807 components: - type: Transform pos: -5.5,-1.5 - parent: 38584 - - uid: 38981 + parent: 38411 + - uid: 38808 components: - type: Transform pos: 10.5,-2.5 - parent: 38584 - - uid: 38982 + parent: 38411 + - uid: 38809 components: - type: Transform pos: -11.5,9.5 - parent: 38584 - - uid: 38983 + parent: 38411 + - uid: 38810 components: - type: Transform pos: 7.5,1.5 - parent: 38584 - - uid: 38984 + parent: 38411 + - uid: 38811 components: - type: Transform pos: 8.5,3.5 - parent: 38584 - - uid: 38985 + parent: 38411 + - uid: 38812 components: - type: Transform pos: 4.5,3.5 - parent: 38584 - - uid: 38986 + parent: 38411 + - uid: 38813 components: - type: Transform pos: -12.5,2.5 - parent: 38584 - - uid: 38987 + parent: 38411 + - uid: 38814 components: - type: Transform pos: -4.5,4.5 - parent: 38584 - - uid: 38988 + parent: 38411 + - uid: 38815 components: - type: Transform pos: 5.5,1.5 - parent: 38584 - - uid: 38989 + parent: 38411 + - uid: 38816 components: - type: Transform pos: -9.5,2.5 - parent: 38584 - - uid: 38990 + parent: 38411 + - uid: 38817 components: - type: Transform pos: -4.5,5.5 - parent: 38584 - - uid: 38991 + parent: 38411 + - uid: 38818 components: - type: Transform pos: -7.5,9.5 - parent: 38584 - - uid: 38992 + parent: 38411 + - uid: 38819 components: - type: Transform pos: 3.5,3.5 - parent: 38584 - - uid: 38993 + parent: 38411 + - uid: 38820 components: - type: Transform pos: -1.5,-2.5 - parent: 38584 - - uid: 38994 + parent: 38411 + - uid: 38821 components: - type: Transform pos: -16.5,-1.5 - parent: 38584 - - uid: 38995 + parent: 38411 + - uid: 38822 components: - type: Transform pos: 5.5,-4.5 - parent: 38584 - - uid: 38996 + parent: 38411 + - uid: 38823 components: - type: Transform pos: 4.5,-3.5 - parent: 38584 - - uid: 38997 + parent: 38411 + - uid: 38824 components: - type: Transform pos: 6.5,-4.5 - parent: 38584 - - uid: 38998 + parent: 38411 + - uid: 38825 components: - type: Transform pos: 7.5,-3.5 - parent: 38584 - - uid: 38999 + parent: 38411 + - uid: 38826 components: - type: Transform pos: -16.5,-3.5 - parent: 38584 - - uid: 39000 + parent: 38411 + - uid: 38827 components: - type: Transform pos: -14.5,-3.5 - parent: 38584 - - uid: 39001 + parent: 38411 + - uid: 38828 components: - type: Transform pos: -1.5,-4.5 - parent: 38584 - - uid: 39002 + parent: 38411 + - uid: 38829 components: - type: Transform pos: -0.5,-5.5 - parent: 38584 - - uid: 39003 + parent: 38411 + - uid: 38830 components: - type: Transform pos: -1.5,1.5 - parent: 38584 - - uid: 39004 + parent: 38411 + - uid: 38831 components: - type: Transform pos: -13.5,-3.5 - parent: 38584 - - uid: 39005 + parent: 38411 + - uid: 38832 components: - type: Transform pos: -0.5,-6.5 - parent: 38584 - - uid: 39006 + parent: 38411 + - uid: 38833 components: - type: Transform pos: 7.5,-4.5 - parent: 38584 - - uid: 39007 + parent: 38411 + - uid: 38834 components: - type: Transform pos: 7.5,-2.5 - parent: 38584 - - uid: 39008 + parent: 38411 + - uid: 38835 components: - type: Transform pos: -1.5,-5.5 - parent: 38584 - - uid: 39009 + parent: 38411 + - uid: 38836 components: - type: Transform pos: 6.5,1.5 - parent: 38584 - - uid: 39010 + parent: 38411 + - uid: 38837 components: - type: Transform pos: 4.5,4.5 - parent: 38584 - - uid: 39011 + parent: 38411 + - uid: 38838 components: - type: Transform pos: 4.5,5.5 - parent: 38584 - - uid: 39012 + parent: 38411 + - uid: 38839 components: - type: Transform pos: -0.5,3.5 - parent: 38584 - - uid: 39013 + parent: 38411 + - uid: 38840 components: - type: Transform pos: -1.5,-1.5 - parent: 38584 - - uid: 39014 + parent: 38411 + - uid: 38841 components: - type: Transform pos: -1.5,-3.5 - parent: 38584 - - uid: 39015 + parent: 38411 + - uid: 38842 components: - type: Transform pos: -15.5,-3.5 - parent: 38584 - - uid: 39016 + parent: 38411 + - uid: 38843 components: - type: Transform pos: -1.5,0.5 - parent: 38584 - - uid: 39017 + parent: 38411 + - uid: 38844 components: - type: Transform pos: -16.5,-0.5 - parent: 38584 - - uid: 39018 + parent: 38411 + - uid: 38845 components: - type: Transform pos: -10.5,7.5 - parent: 38584 - - uid: 39019 + parent: 38411 + - uid: 38846 components: - type: Transform pos: -12.5,7.5 - parent: 38584 - - uid: 39020 + parent: 38411 + - uid: 38847 components: - type: Transform pos: -11.5,7.5 - parent: 38584 - - uid: 39021 + parent: 38411 + - uid: 38848 components: - type: Transform pos: 8.5,4.5 - parent: 38584 - - uid: 39022 + parent: 38411 + - uid: 38849 components: - type: Transform pos: 7.5,5.5 - parent: 38584 - - uid: 39023 + parent: 38411 + - uid: 38850 components: - type: Transform pos: 7.5,4.5 - parent: 38584 - - uid: 39024 + parent: 38411 + - uid: 38851 components: - type: Transform pos: 1.5,3.5 - parent: 38584 - - uid: 39025 + parent: 38411 + - uid: 38852 components: - type: Transform pos: 4.5,2.5 - parent: 38584 - - uid: 39026 + parent: 38411 + - uid: 38853 components: - type: Transform pos: -10.5,2.5 - parent: 38584 - - uid: 39027 + parent: 38411 + - uid: 38854 components: - type: Transform pos: -10.5,1.5 - parent: 38584 - - uid: 39028 + parent: 38411 + - uid: 38855 components: - type: Transform pos: -10.5,0.5 - parent: 38584 - - uid: 39029 + parent: 38411 + - uid: 38856 components: - type: Transform pos: -10.5,-0.5 - parent: 38584 - - uid: 39030 + parent: 38411 + - uid: 38857 components: - type: Transform pos: -9.5,-0.5 - parent: 38584 - - uid: 39031 + parent: 38411 + - uid: 38858 components: - type: Transform pos: -9.5,-1.5 - parent: 38584 - - uid: 39032 + parent: 38411 + - uid: 38859 components: - type: Transform pos: -9.5,-2.5 - parent: 38584 - - uid: 39033 + parent: 38411 + - uid: 38860 components: - type: Transform pos: -9.5,-3.5 - parent: 38584 - - uid: 39034 + parent: 38411 + - uid: 38861 components: - type: Transform pos: -9.5,-4.5 - parent: 38584 - - uid: 39035 + parent: 38411 + - uid: 38862 components: - type: Transform pos: -8.5,-4.5 - parent: 38584 - - uid: 39036 + parent: 38411 + - uid: 38863 components: - type: Transform pos: -8.5,-5.5 - parent: 38584 - - uid: 39037 + parent: 38411 + - uid: 38864 components: - type: Transform pos: -8.5,-6.5 - parent: 38584 - - uid: 39038 + parent: 38411 + - uid: 38865 components: - type: Transform pos: -8.5,-6.5 - parent: 38584 - - uid: 39039 + parent: 38411 + - uid: 38866 components: - type: Transform pos: -8.5,-7.5 - parent: 38584 - - uid: 39040 + parent: 38411 + - uid: 38867 components: - type: Transform pos: -9.5,-7.5 - parent: 38584 - - uid: 39041 + parent: 38411 + - uid: 38868 components: - type: Transform pos: -10.5,-8.5 - parent: 38584 - - uid: 39042 + parent: 38411 + - uid: 38869 components: - type: Transform pos: -11.5,-8.5 - parent: 38584 - - uid: 39043 + parent: 38411 + - uid: 38870 components: - type: Transform pos: -12.5,-8.5 - parent: 38584 - - uid: 39044 + parent: 38411 + - uid: 38871 components: - type: Transform pos: -13.5,-8.5 - parent: 38584 - - uid: 39045 + parent: 38411 + - uid: 38872 components: - type: Transform pos: -14.5,-8.5 - parent: 38584 - - uid: 39046 + parent: 38411 + - uid: 38873 components: - type: Transform pos: -15.5,-8.5 - parent: 38584 - - uid: 39047 + parent: 38411 + - uid: 38874 components: - type: Transform pos: -16.5,-8.5 - parent: 38584 - - uid: 39048 + parent: 38411 + - uid: 38875 components: - type: Transform pos: -17.5,-8.5 - parent: 38584 - - uid: 39049 + parent: 38411 + - uid: 38876 components: - type: Transform pos: -18.5,-8.5 - parent: 38584 + parent: 38411 - proto: CableMVStack entities: - - uid: 12530 + - uid: 12451 components: - type: Transform pos: -47.789772,11.574663 parent: 2 - proto: CableMVStack1 entities: - - uid: 12531 + - uid: 12452 components: - type: Transform rot: 3.141593671850739 rad pos: 9.176718,72.34477 parent: 2 - - uid: 12532 + - uid: 12453 components: - type: Transform rot: -1.5707953085339508 rad pos: 74.60467,-7.6676617 parent: 2 - - uid: 12533 + - uid: 12454 components: - type: Transform rot: 3.141593671850739 rad pos: 75.66717,-8.480163 parent: 2 - - uid: 12534 + - uid: 12455 components: - type: Transform rot: 1.5707973450558423 rad @@ -101727,37 +101732,37 @@ entities: parent: 2 - proto: CableTerminal entities: - - uid: 12535 + - uid: 12456 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-29.5 parent: 2 - - uid: 12536 + - uid: 12457 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,61.5 parent: 2 - - uid: 12537 + - uid: 12458 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,31.5 parent: 2 - - uid: 12538 + - uid: 12459 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-3.5 parent: 2 - - uid: 12539 + - uid: 12460 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-9.5 parent: 2 - - uid: 12540 + - uid: 12461 components: - type: Transform rot: 1.5707963267948966 rad @@ -101767,13 +101772,13 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 12541 + - uid: 12462 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,1.5 parent: 2 - - uid: 12542 + - uid: 12463 components: - type: Transform pos: -59.5,61.5 @@ -101782,13 +101787,13 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 12543 + - uid: 12464 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,12.5 parent: 2 - - uid: 12544 + - uid: 12465 components: - type: Transform rot: -1.5707963267948966 rad @@ -101798,25 +101803,25 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 12545 + - uid: 12466 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,2.5 parent: 2 - - uid: 12546 + - uid: 12467 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,0.5 parent: 2 - - uid: 12547 + - uid: 12468 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-0.5 parent: 2 - - uid: 12548 + - uid: 12469 components: - type: Transform rot: 1.5707963267948966 rad @@ -101826,42 +101831,42 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 12549 + - uid: 12470 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-12.5 parent: 2 - - uid: 12550 + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-44.5 parent: 2 - - uid: 12551 + - uid: 12472 components: - type: Transform pos: -121.5,25.5 parent: 2 - - uid: 12552 + - uid: 12473 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-2.5 parent: 2 - - uid: 39050 + - uid: 38877 components: - type: Transform pos: 9.5,6.5 - parent: 38584 - - uid: 39051 + parent: 38411 + - uid: 38878 components: - type: Transform pos: 8.5,6.5 - parent: 38584 + parent: 38411 - proto: CandleGreenSmallInfinite entities: - - uid: 12553 + - uid: 12474 components: - type: Transform rot: 3.141593671850739 rad @@ -101869,7 +101874,7 @@ entities: parent: 2 - proto: CandleInfinite entities: - - uid: 12554 + - uid: 12475 components: - type: Transform rot: 3.141593671850739 rad @@ -101877,7 +101882,7 @@ entities: parent: 2 - proto: CandleRedInfinite entities: - - uid: 12555 + - uid: 12476 components: - type: Transform rot: 3.141593671850739 rad @@ -101885,1095 +101890,1095 @@ entities: parent: 2 - proto: CannabisSeeds entities: - - uid: 12556 + - uid: 12477 components: - type: Transform pos: -38.5,32.5 parent: 2 - proto: CapacitorStockPart entities: - - uid: 1073 + - uid: 1063 components: - type: Transform - parent: 1071 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1074 + - uid: 1064 components: - type: Transform - parent: 1071 + parent: 1061 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 12557 + - uid: 12478 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 12558 + - uid: 12479 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 12559 + - uid: 12480 components: - type: Transform pos: -7.5,-39.5 parent: 2 - proto: CaptainIDCard entities: - - uid: 12560 + - uid: 12481 components: - type: Transform pos: 7.44547,0.9202859 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 12561 + - uid: 12482 components: - type: Transform pos: -30.5,-50.5 parent: 2 - - uid: 12562 + - uid: 12483 components: - type: Transform pos: 77.5,23.5 parent: 2 - - uid: 12563 + - uid: 12484 components: - type: Transform pos: -30.5,-49.5 parent: 2 - type: Lock locked: False - - uid: 12564 + - uid: 12485 components: - type: Transform pos: -40.5,-50.5 parent: 2 - - uid: 12565 + - uid: 12486 components: - type: Transform pos: -70.5,41.5 parent: 2 - proto: Carpet entities: - - uid: 12566 + - uid: 12487 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-16.5 parent: 2 - - uid: 12567 + - uid: 12488 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-13.5 parent: 2 - - uid: 12568 + - uid: 12489 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-15.5 parent: 2 - - uid: 12569 + - uid: 12490 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-16.5 parent: 2 - - uid: 12570 + - uid: 12491 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-14.5 parent: 2 - - uid: 12571 + - uid: 12492 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 12572 + - uid: 12493 components: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 12573 + - uid: 12494 components: - type: Transform pos: -12.5,10.5 parent: 2 - - uid: 12574 + - uid: 12495 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 12575 + - uid: 12496 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 12576 + - uid: 12497 components: - type: Transform pos: -9.5,10.5 parent: 2 - - uid: 12577 + - uid: 12498 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 12578 + - uid: 12499 components: - type: Transform pos: -11.5,8.5 parent: 2 - - uid: 12579 + - uid: 12500 components: - type: Transform pos: -12.5,8.5 parent: 2 - - uid: 12580 + - uid: 12501 components: - type: Transform pos: -13.5,8.5 parent: 2 - - uid: 12581 + - uid: 12502 components: - type: Transform pos: -13.5,9.5 parent: 2 - - uid: 12582 + - uid: 12503 components: - type: Transform pos: -13.5,10.5 parent: 2 - - uid: 12583 + - uid: 12504 components: - type: Transform pos: 33.5,8.5 parent: 2 - - uid: 12584 + - uid: 12505 components: - type: Transform pos: 32.5,9.5 parent: 2 - - uid: 12585 + - uid: 12506 components: - type: Transform pos: 31.5,8.5 parent: 2 - - uid: 12586 + - uid: 12507 components: - type: Transform pos: 8.5,7.5 parent: 2 - - uid: 12587 + - uid: 12508 components: - type: Transform pos: -1.5,13.5 parent: 2 - - uid: 12588 + - uid: 12509 components: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 12589 + - uid: 12510 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 12590 + - uid: 12511 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 12591 + - uid: 12512 components: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 12592 + - uid: 12513 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-13.5 parent: 2 - - uid: 12593 + - uid: 12514 components: - type: Transform pos: -1.5,12.5 parent: 2 - - uid: 12594 + - uid: 12515 components: - type: Transform pos: -0.5,12.5 parent: 2 - - uid: 12595 + - uid: 12516 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-13.5 parent: 2 - - uid: 12596 + - uid: 12517 components: - type: Transform pos: 32.5,10.5 parent: 2 - - uid: 12597 + - uid: 12518 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-14.5 parent: 2 - - uid: 12598 + - uid: 12519 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-15.5 parent: 2 - - uid: 12599 + - uid: 12520 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-14.5 parent: 2 - - uid: 12600 + - uid: 12521 components: - type: Transform pos: 33.5,10.5 parent: 2 - - uid: 12601 + - uid: 12522 components: - type: Transform pos: 0.5,12.5 parent: 2 - - uid: 12602 + - uid: 12523 components: - type: Transform pos: 31.5,10.5 parent: 2 - - uid: 12603 + - uid: 12524 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 - - uid: 12604 + - uid: 12525 components: - type: Transform pos: 31.5,9.5 parent: 2 - - uid: 12605 + - uid: 12526 components: - type: Transform pos: 0.5,13.5 parent: 2 - - uid: 12606 + - uid: 12527 components: - type: Transform pos: 33.5,9.5 parent: 2 - - uid: 12607 + - uid: 12528 components: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 12608 + - uid: 12529 components: - type: Transform pos: 8.5,6.5 parent: 2 - - uid: 12609 + - uid: 12530 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 12610 + - uid: 12531 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 - - uid: 12611 + - uid: 12532 components: - type: Transform pos: 32.5,8.5 parent: 2 - - uid: 12612 + - uid: 12533 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-16.5 parent: 2 - - uid: 12613 + - uid: 12534 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 12614 + - uid: 12535 components: - type: Transform pos: -32.5,-67.5 parent: 2 - - uid: 12615 + - uid: 12536 components: - type: Transform pos: -31.5,-66.5 parent: 2 - - uid: 12616 + - uid: 12537 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 12617 + - uid: 12538 components: - type: Transform pos: -32.5,-66.5 parent: 2 - - uid: 12618 + - uid: 12539 components: - type: Transform pos: -30.5,-66.5 parent: 2 - - uid: 12619 + - uid: 12540 components: - type: Transform pos: -30.5,-67.5 parent: 2 - - uid: 12620 + - uid: 12541 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 12621 + - uid: 12542 components: - type: Transform pos: -9.5,8.5 parent: 2 - - uid: 12622 + - uid: 12543 components: - type: Transform pos: -113.5,32.5 parent: 2 - - uid: 12623 + - uid: 12544 components: - type: Transform pos: -112.5,32.5 parent: 2 - proto: CarpetBlack entities: - - uid: 12624 + - uid: 12545 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 - - uid: 12625 + - uid: 12546 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,10.5 parent: 2 - - uid: 12626 + - uid: 12547 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,9.5 parent: 2 - - uid: 12627 + - uid: 12548 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,10.5 parent: 2 - - uid: 12628 + - uid: 12549 components: - type: Transform pos: -29.5,-7.5 parent: 2 - - uid: 12629 + - uid: 12550 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 - - uid: 12630 + - uid: 12551 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 - - uid: 12631 + - uid: 12552 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,9.5 parent: 2 - - uid: 12632 + - uid: 12553 components: - type: Transform pos: -27.5,-7.5 parent: 2 - - uid: 12633 + - uid: 12554 components: - type: Transform pos: -22.5,-11.5 parent: 2 - - uid: 12634 + - uid: 12555 components: - type: Transform pos: 42.5,20.5 parent: 2 - - uid: 12635 + - uid: 12556 components: - type: Transform pos: 40.5,20.5 parent: 2 - - uid: 12636 + - uid: 12557 components: - type: Transform pos: 40.5,19.5 parent: 2 - - uid: 12637 + - uid: 12558 components: - type: Transform pos: 42.5,21.5 parent: 2 - - uid: 12638 + - uid: 12559 components: - type: Transform pos: 40.5,21.5 parent: 2 - - uid: 12639 + - uid: 12560 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 12640 + - uid: 12561 components: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 12641 + - uid: 12562 components: - type: Transform pos: 42.5,19.5 parent: 2 - - uid: 12642 + - uid: 12563 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-44.5 parent: 2 - - uid: 12643 + - uid: 12564 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-45.5 parent: 2 - - uid: 12644 + - uid: 12565 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 12645 + - uid: 12566 components: - type: Transform pos: 15.5,-51.5 parent: 2 - - uid: 12646 + - uid: 12567 components: - type: Transform pos: -28.5,-8.5 parent: 2 - - uid: 12647 + - uid: 12568 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-45.5 parent: 2 - - uid: 12648 + - uid: 12569 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 12649 + - uid: 12570 components: - type: Transform pos: 18.5,-51.5 parent: 2 - - uid: 12650 + - uid: 12571 components: - type: Transform pos: 16.5,-52.5 parent: 2 - - uid: 12651 + - uid: 12572 components: - type: Transform pos: 17.5,-51.5 parent: 2 - - uid: 12652 + - uid: 12573 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-44.5 parent: 2 - - uid: 12653 + - uid: 12574 components: - type: Transform pos: -27.5,-8.5 parent: 2 - - uid: 12654 + - uid: 12575 components: - type: Transform pos: 15.5,-52.5 parent: 2 - - uid: 12655 + - uid: 12576 components: - type: Transform pos: 17.5,-52.5 parent: 2 - - uid: 12656 + - uid: 12577 components: - type: Transform pos: 18.5,-52.5 parent: 2 - - uid: 12657 + - uid: 12578 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-51.5 parent: 2 - - uid: 12658 + - uid: 12579 components: - type: Transform pos: 16.5,-51.5 parent: 2 - - uid: 12659 + - uid: 12580 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-45.5 parent: 2 - - uid: 12660 + - uid: 12581 components: - type: Transform pos: -21.5,-11.5 parent: 2 - - uid: 12661 + - uid: 12582 components: - type: Transform pos: -21.5,-10.5 parent: 2 - - uid: 12662 + - uid: 12583 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-8.5 parent: 2 - - uid: 12663 + - uid: 12584 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-8.5 parent: 2 - - uid: 12664 + - uid: 12585 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-7.5 parent: 2 - - uid: 12665 + - uid: 12586 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-7.5 parent: 2 - - uid: 12666 + - uid: 12587 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-44.5 parent: 2 - - uid: 12667 + - uid: 12588 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-52.5 parent: 2 - - uid: 12668 + - uid: 12589 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,10.5 parent: 2 - - uid: 12669 + - uid: 12590 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,9.5 parent: 2 - - uid: 12670 + - uid: 12591 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 2 - - uid: 12671 + - uid: 12592 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,10.5 parent: 2 - - uid: 12672 + - uid: 12593 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 - - uid: 12673 + - uid: 12594 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,10.5 parent: 2 - - uid: 12674 + - uid: 12595 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,9.5 parent: 2 - - uid: 12675 + - uid: 12596 components: - type: Transform pos: -29.5,-8.5 parent: 2 - - uid: 39052 + - uid: 38879 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,27.5 - parent: 38584 - - uid: 39053 + parent: 38411 + - uid: 38880 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,27.5 - parent: 38584 + parent: 38411 - proto: CarpetChapel entities: - - uid: 12676 + - uid: 12597 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-69.5 parent: 2 - - uid: 12677 + - uid: 12598 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-73.5 parent: 2 - - uid: 12678 + - uid: 12599 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-69.5 parent: 2 - - uid: 12679 + - uid: 12600 components: - type: Transform pos: -20.5,-74.5 parent: 2 - - uid: 12680 + - uid: 12601 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 12681 + - uid: 12602 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-72.5 parent: 2 - - uid: 12682 + - uid: 12603 components: - type: Transform pos: -15.5,-72.5 parent: 2 - - uid: 12683 + - uid: 12604 components: - type: Transform pos: -18.5,-72.5 parent: 2 - - uid: 12684 + - uid: 12605 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-67.5 parent: 2 - - uid: 12685 + - uid: 12606 components: - type: Transform pos: -20.5,-72.5 parent: 2 - - uid: 12686 + - uid: 12607 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-72.5 parent: 2 - - uid: 12687 + - uid: 12608 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-73.5 parent: 2 - - uid: 12688 + - uid: 12609 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-68.5 parent: 2 - - uid: 12689 + - uid: 12610 components: - type: Transform pos: -13.5,-68.5 parent: 2 - - uid: 12690 + - uid: 12611 components: - type: Transform pos: -15.5,-68.5 parent: 2 - - uid: 12691 + - uid: 12612 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-71.5 parent: 2 - - uid: 12692 + - uid: 12613 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-71.5 parent: 2 - - uid: 12693 + - uid: 12614 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-68.5 parent: 2 - - uid: 12694 + - uid: 12615 components: - type: Transform pos: -15.5,-70.5 parent: 2 - - uid: 12695 + - uid: 12616 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-71.5 parent: 2 - - uid: 12696 + - uid: 12617 components: - type: Transform pos: -13.5,-72.5 parent: 2 - - uid: 12697 + - uid: 12618 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-70.5 parent: 2 - - uid: 12698 + - uid: 12619 components: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 12699 + - uid: 12620 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-72.5 parent: 2 - - uid: 12700 + - uid: 12621 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 12701 + - uid: 12622 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-67.5 parent: 2 - - uid: 12702 + - uid: 12623 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 12703 + - uid: 12624 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-71.5 parent: 2 - - uid: 12704 + - uid: 12625 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-67.5 parent: 2 - - uid: 12705 + - uid: 12626 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-69.5 parent: 2 - - uid: 12706 + - uid: 12627 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-69.5 parent: 2 - - uid: 12707 + - uid: 12628 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-71.5 parent: 2 - - uid: 12708 + - uid: 12629 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-74.5 parent: 2 - - uid: 12709 + - uid: 12630 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 - - uid: 12710 + - uid: 12631 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-74.5 parent: 2 - - uid: 12711 + - uid: 12632 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-72.5 parent: 2 - - uid: 12712 + - uid: 12633 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-71.5 parent: 2 - - uid: 12713 + - uid: 12634 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-67.5 parent: 2 - - uid: 12714 + - uid: 12635 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-69.5 parent: 2 - - uid: 12715 + - uid: 12636 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-73.5 parent: 2 - - uid: 12716 + - uid: 12637 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-67.5 parent: 2 - - uid: 12717 + - uid: 12638 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-70.5 parent: 2 - - uid: 12718 + - uid: 12639 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 - - uid: 12719 + - uid: 12640 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-69.5 parent: 2 - - uid: 12720 + - uid: 12641 components: - type: Transform pos: -13.5,-74.5 parent: 2 - - uid: 12721 + - uid: 12642 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-67.5 parent: 2 - - uid: 12722 + - uid: 12643 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 - - uid: 12723 + - uid: 12644 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-69.5 parent: 2 - - uid: 12724 + - uid: 12645 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-67.5 parent: 2 - - uid: 12725 + - uid: 12646 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-69.5 parent: 2 - - uid: 12726 + - uid: 12647 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-73.5 parent: 2 - - uid: 12727 + - uid: 12648 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-70.5 parent: 2 - - uid: 12728 + - uid: 12649 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-71.5 parent: 2 - - uid: 12729 + - uid: 12650 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 - - uid: 12730 + - uid: 12651 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-71.5 parent: 2 - - uid: 12731 + - uid: 12652 components: - type: Transform pos: -20.5,-70.5 parent: 2 - proto: CarpetCyan entities: - - uid: 12732 + - uid: 12653 components: - type: Transform pos: -4.5,0.5 parent: 2 - - uid: 12733 + - uid: 12654 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 12734 + - uid: 12655 components: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 12735 + - uid: 12656 components: - type: Transform pos: -3.5,1.5 parent: 2 - proto: CarpetOrange entities: - - uid: 12736 + - uid: 12657 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-25.5 parent: 2 - - uid: 12737 + - uid: 12658 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 - - uid: 12738 + - uid: 12659 components: - type: Transform pos: -28.5,19.5 parent: 2 - - uid: 12739 + - uid: 12660 components: - type: Transform pos: -27.5,19.5 parent: 2 - - uid: 12740 + - uid: 12661 components: - type: Transform pos: -26.5,19.5 parent: 2 - - uid: 12741 + - uid: 12662 components: - type: Transform pos: -28.5,20.5 parent: 2 - - uid: 12742 + - uid: 12663 components: - type: Transform pos: -26.5,20.5 parent: 2 - - uid: 12743 + - uid: 12664 components: - type: Transform pos: -28.5,21.5 parent: 2 - - uid: 12744 + - uid: 12665 components: - type: Transform pos: -26.5,21.5 parent: 2 - - uid: 12745 + - uid: 12666 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 12746 + - uid: 12667 components: - type: Transform pos: -27.5,21.5 parent: 2 - - uid: 12747 + - uid: 12668 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-25.5 parent: 2 - - uid: 12748 + - uid: 12669 components: - type: Transform rot: 3.141592653589793 rad @@ -102981,67 +102986,67 @@ entities: parent: 2 - proto: CarpetPink entities: - - uid: 12749 + - uid: 12670 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-48.5 parent: 2 - - uid: 12750 + - uid: 12671 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-49.5 parent: 2 - - uid: 12751 + - uid: 12672 components: - type: Transform pos: -58.5,-47.5 parent: 2 - - uid: 12752 + - uid: 12673 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,62.5 parent: 2 - - uid: 12753 + - uid: 12674 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,62.5 parent: 2 - - uid: 12754 + - uid: 12675 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,62.5 parent: 2 - - uid: 12755 + - uid: 12676 components: - type: Transform pos: -59.5,-50.5 parent: 2 - - uid: 12756 + - uid: 12677 components: - type: Transform pos: -58.5,-48.5 parent: 2 - - uid: 12757 + - uid: 12678 components: - type: Transform pos: -58.5,-50.5 parent: 2 - - uid: 12758 + - uid: 12679 components: - type: Transform pos: -57.5,-49.5 parent: 2 - - uid: 12759 + - uid: 12680 components: - type: Transform pos: -57.5,-50.5 parent: 2 - - uid: 12760 + - uid: 12681 components: - type: Transform rot: 1.5707963267948966 rad @@ -103049,73 +103054,73 @@ entities: parent: 2 - proto: CarpetSBlue entities: - - uid: 12761 + - uid: 12682 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,2.5 parent: 2 - - uid: 12762 + - uid: 12683 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,3.5 parent: 2 - - uid: 12763 + - uid: 12684 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 2 - - uid: 12764 + - uid: 12685 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,1.5 parent: 2 - - uid: 12765 + - uid: 12686 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,1.5 parent: 2 - - uid: 12766 + - uid: 12687 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,1.5 parent: 2 - - uid: 12767 + - uid: 12688 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,2.5 parent: 2 - - uid: 12768 + - uid: 12689 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 2 - - uid: 12769 + - uid: 12690 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 2 - - uid: 12770 + - uid: 12691 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,3.5 parent: 2 - - uid: 12771 + - uid: 12692 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 2 - - uid: 12772 + - uid: 12693 components: - type: Transform rot: 1.5707963267948966 rad @@ -103123,8021 +103128,8021 @@ entities: parent: 2 - proto: CarpetWhite entities: - - uid: 870 + - uid: 12694 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-23.5 parent: 2 - - uid: 6734 + - uid: 12695 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-25.5 parent: 2 - - uid: 6736 + - uid: 12696 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-24.5 parent: 2 - - uid: 6737 + - uid: 12697 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 - - uid: 6738 + - uid: 12698 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-25.5 parent: 2 - - uid: 6740 + - uid: 12699 components: - type: Transform pos: -62.5,-24.5 parent: 2 - - uid: 6744 + - uid: 12700 components: - type: Transform pos: -60.5,-24.5 parent: 2 - - uid: 6747 + - uid: 12701 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-25.5 parent: 2 - - uid: 9965 + - uid: 12702 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-25.5 parent: 2 - - uid: 9970 + - uid: 12703 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-25.5 parent: 2 - - uid: 15046 + - uid: 12704 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 17440 + - uid: 12705 components: - type: Transform pos: -63.5,-23.5 parent: 2 - - uid: 17732 + - uid: 12706 components: - type: Transform pos: -63.5,-24.5 parent: 2 - - uid: 31829 + - uid: 12707 components: - type: Transform pos: -60.5,-23.5 parent: 2 - - uid: 31830 + - uid: 12708 components: - type: Transform pos: -59.5,-23.5 parent: 2 - proto: Catwalk entities: - - uid: 2846 + - uid: 12709 components: - type: Transform pos: -71.5,0.5 parent: 2 - - uid: 2847 + - uid: 12710 components: - type: Transform pos: -71.5,-0.5 parent: 2 - - uid: 2848 + - uid: 12711 components: - type: Transform pos: -71.5,-1.5 parent: 2 - - uid: 2849 + - uid: 12712 components: - type: Transform pos: -70.5,0.5 parent: 2 - - uid: 2850 + - uid: 12713 components: - type: Transform pos: -70.5,-0.5 parent: 2 - - uid: 2851 + - uid: 12714 components: - type: Transform pos: -70.5,-1.5 parent: 2 - - uid: 2852 + - uid: 12715 components: - type: Transform pos: -68.5,0.5 parent: 2 - - uid: 2853 + - uid: 12716 components: - type: Transform pos: -68.5,-0.5 parent: 2 - - uid: 2854 + - uid: 12717 components: - type: Transform pos: -68.5,-1.5 parent: 2 - - uid: 6735 + - uid: 12718 components: - type: Transform pos: -63.5,-28.5 parent: 2 - - uid: 9961 + - uid: 12719 components: - type: Transform pos: -67.5,0.5 parent: 2 - - uid: 9962 + - uid: 12720 components: - type: Transform pos: -67.5,-0.5 parent: 2 - - uid: 9963 + - uid: 12721 components: - type: Transform pos: -67.5,-1.5 parent: 2 - - uid: 12773 + - uid: 12722 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-40.5 parent: 2 - - uid: 12774 + - uid: 12723 components: - type: Transform pos: -32.5,-69.5 parent: 2 - - uid: 12775 + - uid: 12724 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-18.5 parent: 2 - - uid: 12776 + - uid: 12725 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,30.5 parent: 2 - - uid: 12777 + - uid: 12726 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,31.5 parent: 2 - - uid: 12778 + - uid: 12727 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,32.5 parent: 2 - - uid: 12779 + - uid: 12728 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-43.5 parent: 2 - - uid: 12780 + - uid: 12729 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,31.5 parent: 2 - - uid: 12781 + - uid: 12730 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,27.5 parent: 2 - - uid: 12782 + - uid: 12731 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,26.5 parent: 2 - - uid: 12783 + - uid: 12732 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,27.5 parent: 2 - - uid: 12784 + - uid: 12733 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,25.5 parent: 2 - - uid: 12785 + - uid: 12734 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,26.5 parent: 2 - - uid: 12786 + - uid: 12735 components: - type: Transform pos: -58.5,30.5 parent: 2 - - uid: 12787 + - uid: 12736 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,27.5 parent: 2 - - uid: 12788 + - uid: 12737 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,26.5 parent: 2 - - uid: 12789 + - uid: 12738 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,27.5 parent: 2 - - uid: 12790 + - uid: 12739 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,22.5 parent: 2 - - uid: 12791 + - uid: 12740 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,23.5 parent: 2 - - uid: 12792 + - uid: 12741 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,24.5 parent: 2 - - uid: 12793 + - uid: 12742 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,22.5 parent: 2 - - uid: 12794 + - uid: 12743 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,28.5 parent: 2 - - uid: 12795 + - uid: 12744 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,27.5 parent: 2 - - uid: 12796 + - uid: 12745 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 12797 + - uid: 12746 components: - type: Transform pos: -35.5,-57.5 parent: 2 - - uid: 12798 + - uid: 12747 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-41.5 parent: 2 - - uid: 12799 + - uid: 12748 components: - type: Transform pos: -57.5,27.5 parent: 2 - - uid: 12800 + - uid: 12749 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 12801 + - uid: 12750 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,29.5 parent: 2 - - uid: 12802 + - uid: 12751 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 12803 + - uid: 12752 components: - type: Transform pos: -57.5,30.5 parent: 2 - - uid: 12804 + - uid: 12753 components: - type: Transform pos: -57.5,29.5 parent: 2 - - uid: 12805 + - uid: 12754 components: - type: Transform pos: -55.5,29.5 parent: 2 - - uid: 12806 + - uid: 12755 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,34.5 parent: 2 - - uid: 12807 + - uid: 12756 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,34.5 parent: 2 - - uid: 12808 + - uid: 12757 components: - type: Transform pos: -56.5,29.5 parent: 2 - - uid: 12809 + - uid: 12758 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,30.5 parent: 2 - - uid: 12810 + - uid: 12759 components: - type: Transform pos: -57.5,28.5 parent: 2 - - uid: 12811 + - uid: 12760 components: - type: Transform pos: -56.5,30.5 parent: 2 - - uid: 12812 + - uid: 12761 components: - type: Transform pos: -55.5,28.5 parent: 2 - - uid: 12813 + - uid: 12762 components: - type: Transform pos: -55.5,27.5 parent: 2 - - uid: 12814 + - uid: 12763 components: - type: Transform pos: -55.5,30.5 parent: 2 - - uid: 12815 + - uid: 12764 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,23.5 parent: 2 - - uid: 12816 + - uid: 12765 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,28.5 parent: 2 - - uid: 12817 + - uid: 12766 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,26.5 parent: 2 - - uid: 12818 + - uid: 12767 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,26.5 parent: 2 - - uid: 12819 + - uid: 12768 components: - type: Transform pos: -22.5,-61.5 parent: 2 - - uid: 12820 + - uid: 12769 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,26.5 parent: 2 - - uid: 12821 + - uid: 12770 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,63.5 parent: 2 - - uid: 12822 + - uid: 12771 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 12823 + - uid: 12772 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 12824 + - uid: 12773 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,99.5 parent: 2 - - uid: 12825 + - uid: 12774 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,95.5 parent: 2 - - uid: 12826 + - uid: 12775 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,23.5 parent: 2 - - uid: 12827 + - uid: 12776 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,24.5 parent: 2 - - uid: 12828 + - uid: 12777 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,24.5 parent: 2 - - uid: 12829 + - uid: 12778 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,25.5 parent: 2 - - uid: 12830 + - uid: 12779 components: - type: Transform pos: -59.5,30.5 parent: 2 - - uid: 12831 + - uid: 12780 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-16.5 parent: 2 - - uid: 12832 + - uid: 12781 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-10.5 parent: 2 - - uid: 12833 + - uid: 12782 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-11.5 parent: 2 - - uid: 12834 + - uid: 12783 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,91.5 parent: 2 - - uid: 12835 + - uid: 12784 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 12836 + - uid: 12785 components: - type: Transform pos: -54.5,27.5 parent: 2 - - uid: 12837 + - uid: 12786 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 12838 + - uid: 12787 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 12839 + - uid: 12788 components: - type: Transform pos: -52.5,30.5 parent: 2 - - uid: 12840 + - uid: 12789 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 12841 + - uid: 12790 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 12842 + - uid: 12791 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,31.5 parent: 2 - - uid: 12843 + - uid: 12792 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 12844 + - uid: 12793 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,91.5 parent: 2 - - uid: 12845 + - uid: 12794 components: - type: Transform pos: -26.5,-58.5 parent: 2 - - uid: 12846 + - uid: 12795 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-17.5 parent: 2 - - uid: 12847 + - uid: 12796 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 12848 + - uid: 12797 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,57.5 parent: 2 - - uid: 12849 + - uid: 12798 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-10.5 parent: 2 - - uid: 12850 + - uid: 12799 components: - type: Transform pos: -26.5,-59.5 parent: 2 - - uid: 12851 + - uid: 12800 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,65.5 parent: 2 - - uid: 12852 + - uid: 12801 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 12853 + - uid: 12802 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,64.5 parent: 2 - - uid: 12854 + - uid: 12803 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,57.5 parent: 2 - - uid: 12855 + - uid: 12804 components: - type: Transform pos: -26.5,-69.5 parent: 2 - - uid: 12856 + - uid: 12805 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,61.5 parent: 2 - - uid: 12857 + - uid: 12806 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-42.5 parent: 2 - - uid: 12859 + - uid: 12807 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-19.5 parent: 2 - - uid: 12860 + - uid: 12808 components: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 12861 + - uid: 12809 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-3.5 parent: 2 - - uid: 12862 + - uid: 12810 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-22.5 parent: 2 - - uid: 12863 + - uid: 12811 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,62.5 parent: 2 - - uid: 12864 + - uid: 12812 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,63.5 parent: 2 - - uid: 12865 + - uid: 12813 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,64.5 parent: 2 - - uid: 12866 + - uid: 12814 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,66.5 parent: 2 - - uid: 12867 + - uid: 12815 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 - - uid: 12868 + - uid: 12816 components: - type: Transform pos: -55.5,40.5 parent: 2 - - uid: 12869 + - uid: 12817 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-30.5 parent: 2 - - uid: 12870 + - uid: 12818 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,59.5 parent: 2 - - uid: 12871 + - uid: 12819 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,61.5 parent: 2 - - uid: 12872 + - uid: 12820 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-20.5 parent: 2 - - uid: 12873 + - uid: 12821 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,49.5 parent: 2 - - uid: 12874 + - uid: 12822 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,61.5 parent: 2 - - uid: 12875 + - uid: 12823 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,60.5 parent: 2 - - uid: 12876 + - uid: 12824 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,64.5 parent: 2 - - uid: 12877 + - uid: 12825 components: - type: Transform pos: -63.5,-20.5 parent: 2 - - uid: 12878 + - uid: 12826 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 12879 + - uid: 12827 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,44.5 parent: 2 - - uid: 12880 + - uid: 12828 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,66.5 parent: 2 - - uid: 12881 + - uid: 12829 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,99.5 parent: 2 - - uid: 12882 + - uid: 12830 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,48.5 parent: 2 - - uid: 12883 + - uid: 12831 components: - type: Transform pos: -50.5,-33.5 parent: 2 - - uid: 12884 + - uid: 12832 components: - type: Transform pos: -48.5,-33.5 parent: 2 - - uid: 12885 + - uid: 12833 components: - type: Transform pos: -45.5,-33.5 parent: 2 - - uid: 12886 + - uid: 12834 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,23.5 parent: 2 - - uid: 12887 + - uid: 12835 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-25.5 parent: 2 - - uid: 12888 + - uid: 12836 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,63.5 parent: 2 - - uid: 12889 + - uid: 12837 components: - type: Transform pos: -59.5,36.5 parent: 2 - - uid: 12890 + - uid: 12838 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,59.5 parent: 2 - - uid: 12891 + - uid: 12839 components: - type: Transform pos: 7.5,59.5 parent: 2 - - uid: 12892 + - uid: 12840 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,71.5 parent: 2 - - uid: 12893 + - uid: 12841 components: - type: Transform pos: -47.5,-75.5 parent: 2 - - uid: 12894 + - uid: 12842 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-11.5 parent: 2 - - uid: 12895 + - uid: 12843 components: - type: Transform pos: -47.5,-76.5 parent: 2 - - uid: 12896 + - uid: 12844 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-1.5 parent: 2 - - uid: 12897 + - uid: 12845 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-27.5 parent: 2 - - uid: 12898 + - uid: 12846 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-25.5 parent: 2 - - uid: 12899 + - uid: 12847 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,99.5 parent: 2 - - uid: 12900 + - uid: 12848 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-8.5 parent: 2 - - uid: 12901 + - uid: 12849 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-13.5 parent: 2 - - uid: 12902 + - uid: 12850 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-33.5 parent: 2 - - uid: 12903 + - uid: 12851 components: - type: Transform pos: -49.5,-33.5 parent: 2 - - uid: 12904 + - uid: 12852 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 - - uid: 12905 + - uid: 12853 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 12906 + - uid: 12854 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-30.5 parent: 2 - - uid: 12907 + - uid: 12855 components: - type: Transform pos: -46.5,-76.5 parent: 2 - - uid: 12908 + - uid: 12856 components: - type: Transform pos: -27.5,-67.5 parent: 2 - - uid: 12909 + - uid: 12857 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,32.5 parent: 2 - - uid: 12910 + - uid: 12858 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-3.5 parent: 2 - - uid: 12911 + - uid: 12859 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,63.5 parent: 2 - - uid: 12912 + - uid: 12860 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,62.5 parent: 2 - - uid: 12913 + - uid: 12861 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,39.5 parent: 2 - - uid: 12914 + - uid: 12862 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,45.5 parent: 2 - - uid: 12915 + - uid: 12863 components: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 12916 + - uid: 12864 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-14.5 parent: 2 - - uid: 12917 + - uid: 12865 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-20.5 parent: 2 - - uid: 12918 + - uid: 12866 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,63.5 parent: 2 - - uid: 12919 + - uid: 12867 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,31.5 parent: 2 - - uid: 12920 + - uid: 12868 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,31.5 parent: 2 - - uid: 12921 + - uid: 12869 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-26.5 parent: 2 - - uid: 12922 + - uid: 12870 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,26.5 parent: 2 - - uid: 12923 + - uid: 12871 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,64.5 parent: 2 - - uid: 12924 + - uid: 12872 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,64.5 parent: 2 - - uid: 12925 + - uid: 12873 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,63.5 parent: 2 - - uid: 12926 + - uid: 12874 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,59.5 parent: 2 - - uid: 12927 + - uid: 12875 components: - type: Transform pos: -45.5,-76.5 parent: 2 - - uid: 12928 + - uid: 12876 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-19.5 parent: 2 - - uid: 12929 + - uid: 12877 components: - type: Transform pos: -45.5,-77.5 parent: 2 - - uid: 12930 + - uid: 12878 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,59.5 parent: 2 - - uid: 12931 + - uid: 12879 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 - - uid: 12932 + - uid: 12880 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-19.5 parent: 2 - - uid: 12933 + - uid: 12881 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 12934 + - uid: 12882 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-11.5 parent: 2 - - uid: 12935 + - uid: 12883 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-24.5 parent: 2 - - uid: 12936 + - uid: 12884 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,56.5 parent: 2 - - uid: 12937 + - uid: 12885 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,29.5 parent: 2 - - uid: 12938 + - uid: 12886 components: - type: Transform pos: -27.5,-68.5 parent: 2 - - uid: 12939 + - uid: 12887 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-13.5 parent: 2 - - uid: 12940 + - uid: 12888 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 12941 + - uid: 12889 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-20.5 parent: 2 - - uid: 12942 + - uid: 12890 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 2 - - uid: 12943 + - uid: 12891 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,47.5 parent: 2 - - uid: 12944 + - uid: 12892 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,43.5 parent: 2 - - uid: 12945 + - uid: 12893 components: - type: Transform pos: -91.5,-13.5 parent: 2 - - uid: 12946 + - uid: 12894 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,31.5 parent: 2 - - uid: 12947 + - uid: 12895 components: - type: Transform pos: -44.5,-77.5 parent: 2 - - uid: 12948 + - uid: 12896 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,31.5 parent: 2 - - uid: 12949 + - uid: 12897 components: - type: Transform pos: -90.5,-13.5 parent: 2 - - uid: 12950 + - uid: 12898 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-41.5 parent: 2 - - uid: 12951 + - uid: 12899 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-30.5 parent: 2 - - uid: 12952 + - uid: 12900 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,39.5 parent: 2 - - uid: 12953 + - uid: 12901 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-30.5 parent: 2 - - uid: 12954 + - uid: 12902 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-11.5 parent: 2 - - uid: 12955 + - uid: 12903 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-30.5 parent: 2 - - uid: 12956 + - uid: 12904 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,14.5 parent: 2 - - uid: 12957 + - uid: 12905 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-5.5 parent: 2 - - uid: 12958 + - uid: 12906 components: - type: Transform pos: -61.5,-19.5 parent: 2 - - uid: 12959 + - uid: 12907 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 - - uid: 12960 + - uid: 12908 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-19.5 parent: 2 - - uid: 12961 + - uid: 12909 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-19.5 parent: 2 - - uid: 12962 + - uid: 12910 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,70.5 parent: 2 - - uid: 12963 + - uid: 12911 components: - type: Transform pos: -59.5,34.5 parent: 2 - - uid: 12964 + - uid: 12912 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-32.5 parent: 2 - - uid: 12965 + - uid: 12913 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,64.5 parent: 2 - - uid: 12966 + - uid: 12914 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-21.5 parent: 2 - - uid: 12967 + - uid: 12915 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-9.5 parent: 2 - - uid: 12968 + - uid: 12916 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - uid: 12969 + - uid: 12917 components: - type: Transform pos: -38.5,-71.5 parent: 2 - - uid: 12970 + - uid: 12918 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-19.5 parent: 2 - - uid: 12971 + - uid: 12919 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-19.5 parent: 2 - - uid: 12972 + - uid: 12920 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,53.5 parent: 2 - - uid: 12973 + - uid: 12921 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,56.5 parent: 2 - - uid: 12974 + - uid: 12922 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,47.5 parent: 2 - - uid: 12975 + - uid: 12923 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,72.5 parent: 2 - - uid: 12976 + - uid: 12924 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,25.5 parent: 2 - - uid: 12977 + - uid: 12925 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-46.5 parent: 2 - - uid: 12978 + - uid: 12926 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-50.5 parent: 2 - - uid: 12979 + - uid: 12927 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-28.5 parent: 2 - - uid: 12980 + - uid: 12928 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-30.5 parent: 2 - - uid: 12981 + - uid: 12929 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,56.5 parent: 2 - - uid: 12982 + - uid: 12930 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,44.5 parent: 2 - - uid: 12983 + - uid: 12931 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-19.5 parent: 2 - - uid: 12984 + - uid: 12932 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-19.5 parent: 2 - - uid: 12985 + - uid: 12933 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,62.5 parent: 2 - - uid: 12986 + - uid: 12934 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-30.5 parent: 2 - - uid: 12987 + - uid: 12935 components: - type: Transform pos: 55.5,-46.5 parent: 2 - - uid: 12988 + - uid: 12936 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,56.5 parent: 2 - - uid: 12989 + - uid: 12937 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,56.5 parent: 2 - - uid: 12990 + - uid: 12938 components: - type: Transform pos: -65.5,-20.5 parent: 2 - - uid: 12991 + - uid: 12939 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,57.5 parent: 2 - - uid: 12992 + - uid: 12940 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-4.5 parent: 2 - - uid: 12993 + - uid: 12941 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-23.5 parent: 2 - - uid: 12994 + - uid: 12942 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,23.5 parent: 2 - - uid: 12995 + - uid: 12943 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-21.5 parent: 2 - - uid: 12996 + - uid: 12944 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-22.5 parent: 2 - - uid: 12997 + - uid: 12945 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,47.5 parent: 2 - - uid: 12998 + - uid: 12946 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,64.5 parent: 2 - - uid: 12999 + - uid: 12947 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 - - uid: 13000 + - uid: 12948 components: - type: Transform pos: -60.5,-19.5 parent: 2 - - uid: 13001 + - uid: 12949 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,54.5 parent: 2 - - uid: 13002 + - uid: 12950 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,11.5 parent: 2 - - uid: 13003 + - uid: 12951 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-30.5 parent: 2 - - uid: 13004 + - uid: 12952 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-19.5 parent: 2 - - uid: 13005 + - uid: 12953 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-19.5 parent: 2 - - uid: 13006 + - uid: 12954 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,69.5 parent: 2 - - uid: 13007 + - uid: 12955 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,34.5 parent: 2 - - uid: 13008 + - uid: 12956 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,58.5 parent: 2 - - uid: 13009 + - uid: 12957 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 2 - - uid: 13010 + - uid: 12958 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,58.5 parent: 2 - - uid: 13011 + - uid: 12959 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-38.5 parent: 2 - - uid: 13012 + - uid: 12960 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,47.5 parent: 2 - - uid: 13013 + - uid: 12961 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,25.5 parent: 2 - - uid: 13014 + - uid: 12962 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,23.5 parent: 2 - - uid: 13015 + - uid: 12963 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-46.5 parent: 2 - - uid: 13016 + - uid: 12964 components: - type: Transform pos: -55.5,-40.5 parent: 2 - - uid: 13017 + - uid: 12965 components: - type: Transform pos: 7.5,60.5 parent: 2 - - uid: 13018 + - uid: 12966 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-46.5 parent: 2 - - uid: 13019 + - uid: 12967 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-27.5 parent: 2 - - uid: 13020 + - uid: 12968 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-51.5 parent: 2 - - uid: 13021 + - uid: 12969 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,12.5 parent: 2 - - uid: 13022 + - uid: 12970 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-19.5 parent: 2 - - uid: 13023 + - uid: 12971 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,34.5 parent: 2 - - uid: 13024 + - uid: 12972 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 - - uid: 13025 + - uid: 12973 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-31.5 parent: 2 - - uid: 13026 + - uid: 12974 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-30.5 parent: 2 - - uid: 13027 + - uid: 12975 components: - type: Transform pos: -21.5,-83.5 parent: 2 - - uid: 13028 + - uid: 12976 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,46.5 parent: 2 - - uid: 13029 + - uid: 12977 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-26.5 parent: 2 - - uid: 13030 + - uid: 12978 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-22.5 parent: 2 - - uid: 13031 + - uid: 12979 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,30.5 parent: 2 - - uid: 13032 + - uid: 12980 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,57.5 parent: 2 - - uid: 13033 + - uid: 12981 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-12.5 parent: 2 - - uid: 13034 + - uid: 12982 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-30.5 parent: 2 - - uid: 13035 + - uid: 12983 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,65.5 parent: 2 - - uid: 13036 + - uid: 12984 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,64.5 parent: 2 - - uid: 13037 + - uid: 12985 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-21.5 parent: 2 - - uid: 13038 + - uid: 12986 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-21.5 parent: 2 - - uid: 13039 + - uid: 12987 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-40.5 parent: 2 - - uid: 13040 + - uid: 12988 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-15.5 parent: 2 - - uid: 13041 + - uid: 12989 components: - type: Transform pos: -24.5,-83.5 parent: 2 - - uid: 13042 + - uid: 12990 components: - type: Transform pos: -23.5,-83.5 parent: 2 - - uid: 13043 + - uid: 12991 components: - type: Transform pos: -22.5,-83.5 parent: 2 - - uid: 13044 + - uid: 12992 components: - type: Transform pos: -89.5,-13.5 parent: 2 - - uid: 13045 + - uid: 12993 components: - type: Transform pos: -20.5,-83.5 parent: 2 - - uid: 13046 + - uid: 12994 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-19.5 parent: 2 - - uid: 13047 + - uid: 12995 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-21.5 parent: 2 - - uid: 13048 + - uid: 12996 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,33.5 parent: 2 - - uid: 13049 + - uid: 12997 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-19.5 parent: 2 - - uid: 13050 + - uid: 12998 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,99.5 parent: 2 - - uid: 13051 + - uid: 12999 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,45.5 parent: 2 - - uid: 13052 + - uid: 13000 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,60.5 parent: 2 - - uid: 13053 + - uid: 13001 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-2.5 parent: 2 - - uid: 13054 + - uid: 13002 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-42.5 parent: 2 - - uid: 13055 + - uid: 13003 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-43.5 parent: 2 - - uid: 13056 + - uid: 13004 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-19.5 parent: 2 - - uid: 13057 + - uid: 13005 components: - type: Transform pos: -66.5,-20.5 parent: 2 - - uid: 13058 + - uid: 13006 components: - type: Transform pos: -59.5,35.5 parent: 2 - - uid: 13059 + - uid: 13007 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-19.5 parent: 2 - - uid: 13060 + - uid: 13008 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 13061 + - uid: 13009 components: - type: Transform pos: -19.5,-83.5 parent: 2 - - uid: 13062 + - uid: 13010 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-19.5 parent: 2 - - uid: 13063 + - uid: 13011 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,34.5 parent: 2 - - uid: 13064 + - uid: 13012 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,64.5 parent: 2 - - uid: 13065 + - uid: 13013 components: - type: Transform pos: -18.5,-83.5 parent: 2 - - uid: 13066 + - uid: 13014 components: - type: Transform pos: -17.5,-83.5 parent: 2 - - uid: 13067 + - uid: 13015 components: - type: Transform pos: -75.5,80.5 parent: 2 - - uid: 13068 + - uid: 13016 components: - type: Transform pos: -16.5,-83.5 parent: 2 - - uid: 13069 + - uid: 13017 components: - type: Transform pos: -15.5,-84.5 parent: 2 - - uid: 13070 + - uid: 13018 components: - type: Transform pos: -14.5,-84.5 parent: 2 - - uid: 13071 + - uid: 13019 components: - type: Transform pos: -13.5,-84.5 parent: 2 - - uid: 13072 + - uid: 13020 components: - type: Transform pos: -12.5,-84.5 parent: 2 - - uid: 13073 + - uid: 13021 components: - type: Transform pos: -80.5,69.5 parent: 2 - - uid: 13074 + - uid: 13022 components: - type: Transform pos: -51.5,-62.5 parent: 2 - - uid: 13075 + - uid: 13023 components: - type: Transform pos: -75.5,78.5 parent: 2 - - uid: 13076 + - uid: 13024 components: - type: Transform pos: -51.5,-81.5 parent: 2 - - uid: 13077 + - uid: 13025 components: - type: Transform pos: -75.5,66.5 parent: 2 - - uid: 13078 + - uid: 13026 components: - type: Transform pos: -75.5,79.5 parent: 2 - - uid: 13079 + - uid: 13027 components: - type: Transform pos: -60.5,-54.5 parent: 2 - - uid: 13080 + - uid: 13028 components: - type: Transform pos: -54.5,-52.5 parent: 2 - - uid: 13081 + - uid: 13029 components: - type: Transform pos: -76.5,77.5 parent: 2 - - uid: 13082 + - uid: 13030 components: - type: Transform pos: -45.5,-85.5 parent: 2 - - uid: 13083 + - uid: 13031 components: - type: Transform pos: -43.5,-57.5 parent: 2 - - uid: 13084 + - uid: 13032 components: - type: Transform pos: 67.5,-51.5 parent: 2 - - uid: 13085 + - uid: 13033 components: - type: Transform pos: 69.5,-51.5 parent: 2 - - uid: 13086 + - uid: 13034 components: - type: Transform pos: -79.5,77.5 parent: 2 - - uid: 13087 + - uid: 13035 components: - type: Transform pos: 68.5,-51.5 parent: 2 - - uid: 13088 + - uid: 13036 components: - type: Transform pos: -88.5,13.5 parent: 2 - - uid: 13089 + - uid: 13037 components: - type: Transform pos: -43.5,-54.5 parent: 2 - - uid: 13090 + - uid: 13038 components: - type: Transform pos: -53.5,-52.5 parent: 2 - - uid: 13091 + - uid: 13039 components: - type: Transform pos: 30.5,21.5 parent: 2 - - uid: 13092 + - uid: 13040 components: - type: Transform pos: 30.5,19.5 parent: 2 - - uid: 13093 + - uid: 13041 components: - type: Transform pos: -74.5,69.5 parent: 2 - - uid: 13094 + - uid: 13042 components: - type: Transform pos: 22.5,87.5 parent: 2 - - uid: 13095 + - uid: 13043 components: - type: Transform pos: 27.5,87.5 parent: 2 - - uid: 13096 + - uid: 13044 components: - type: Transform pos: 26.5,87.5 parent: 2 - - uid: 13097 + - uid: 13045 components: - type: Transform pos: -59.5,66.5 parent: 2 - - uid: 13098 + - uid: 13046 components: - type: Transform pos: 23.5,87.5 parent: 2 - - uid: 13099 + - uid: 13047 components: - type: Transform pos: -72.5,77.5 parent: 2 - - uid: 13100 + - uid: 13048 components: - type: Transform pos: -70.5,69.5 parent: 2 - - uid: 13101 + - uid: 13049 components: - type: Transform pos: -69.5,69.5 parent: 2 - - uid: 13102 + - uid: 13050 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-8.5 parent: 2 - - uid: 13103 + - uid: 13051 components: - type: Transform pos: -85.5,14.5 parent: 2 - - uid: 13104 + - uid: 13052 components: - type: Transform pos: -63.5,66.5 parent: 2 - - uid: 13105 + - uid: 13053 components: - type: Transform pos: -54.5,-81.5 parent: 2 - - uid: 13106 + - uid: 13054 components: - type: Transform pos: -55.5,-81.5 parent: 2 - - uid: 13107 + - uid: 13055 components: - type: Transform pos: -62.5,66.5 parent: 2 - - uid: 13108 + - uid: 13056 components: - type: Transform pos: -60.5,66.5 parent: 2 - - uid: 13109 + - uid: 13057 components: - type: Transform pos: -75.5,82.5 parent: 2 - - uid: 13110 + - uid: 13058 components: - type: Transform pos: -75.5,81.5 parent: 2 - - uid: 13111 + - uid: 13059 components: - type: Transform pos: -43.5,60.5 parent: 2 - - uid: 13112 + - uid: 13060 components: - type: Transform pos: -55.5,41.5 parent: 2 - - uid: 13113 + - uid: 13061 components: - type: Transform pos: -12.5,-83.5 parent: 2 - - uid: 13114 + - uid: 13062 components: - type: Transform pos: 28.5,97.5 parent: 2 - - uid: 13115 + - uid: 13063 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,37.5 parent: 2 - - uid: 13116 + - uid: 13064 components: - type: Transform pos: -11.5,-83.5 parent: 2 - - uid: 13117 + - uid: 13065 components: - type: Transform pos: -88.5,-13.5 parent: 2 - - uid: 13118 + - uid: 13066 components: - type: Transform pos: -56.5,41.5 parent: 2 - - uid: 13119 + - uid: 13067 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,43.5 parent: 2 - - uid: 13120 + - uid: 13068 components: - type: Transform pos: -10.5,-83.5 parent: 2 - - uid: 13121 + - uid: 13069 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-44.5 parent: 2 - - uid: 13122 + - uid: 13070 components: - type: Transform pos: -94.5,-13.5 parent: 2 - - uid: 13123 + - uid: 13071 components: - type: Transform pos: -93.5,-4.5 parent: 2 - - uid: 13124 + - uid: 13072 components: - type: Transform pos: -96.5,-13.5 parent: 2 - - uid: 13125 + - uid: 13073 components: - type: Transform pos: -91.5,-3.5 parent: 2 - - uid: 13126 + - uid: 13074 components: - type: Transform pos: -86.5,-11.5 parent: 2 - - uid: 13127 + - uid: 13075 components: - type: Transform pos: -43.5,57.5 parent: 2 - - uid: 13128 + - uid: 13076 components: - type: Transform pos: -86.5,-10.5 parent: 2 - - uid: 13129 + - uid: 13077 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-71.5 parent: 2 - - uid: 13130 + - uid: 13078 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-56.5 parent: 2 - - uid: 13131 + - uid: 13079 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-11.5 parent: 2 - - uid: 13132 + - uid: 13080 components: - type: Transform pos: -89.5,-1.5 parent: 2 - - uid: 13133 + - uid: 13081 components: - type: Transform pos: -88.5,-8.5 parent: 2 - - uid: 13134 + - uid: 13082 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-54.5 parent: 2 - - uid: 13135 + - uid: 13083 components: - type: Transform pos: -88.5,-6.5 parent: 2 - - uid: 13136 + - uid: 13084 components: - type: Transform pos: -89.5,-6.5 parent: 2 - - uid: 13137 + - uid: 13085 components: - type: Transform pos: -98.5,-10.5 parent: 2 - - uid: 13138 + - uid: 13086 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-30.5 parent: 2 - - uid: 13139 + - uid: 13087 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-21.5 parent: 2 - - uid: 13140 + - uid: 13088 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-42.5 parent: 2 - - uid: 13141 + - uid: 13089 components: - type: Transform pos: -98.5,-8.5 parent: 2 - - uid: 13142 + - uid: 13090 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-54.5 parent: 2 - - uid: 13143 + - uid: 13091 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-54.5 parent: 2 - - uid: 13144 + - uid: 13092 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-55.5 parent: 2 - - uid: 13145 + - uid: 13093 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-54.5 parent: 2 - - uid: 13146 + - uid: 13094 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-35.5 parent: 2 - - uid: 13147 + - uid: 13095 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-44.5 parent: 2 - - uid: 13149 + - uid: 13096 components: - type: Transform pos: -51.5,-92.5 parent: 2 - - uid: 13150 + - uid: 13097 components: - type: Transform pos: -70.5,77.5 parent: 2 - - uid: 13151 + - uid: 13098 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-35.5 parent: 2 - - uid: 13152 + - uid: 13099 components: - type: Transform pos: -91.5,-1.5 parent: 2 - - uid: 13154 + - uid: 13100 components: - type: Transform pos: -90.5,-1.5 parent: 2 - - uid: 13156 + - uid: 13101 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-76.5 parent: 2 - - uid: 13157 + - uid: 13102 components: - type: Transform pos: -92.5,-1.5 parent: 2 - - uid: 13158 + - uid: 13103 components: - type: Transform pos: -95.5,-1.5 parent: 2 - - uid: 13159 + - uid: 13104 components: - type: Transform pos: -59.5,33.5 parent: 2 - - uid: 13160 + - uid: 13105 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,33.5 parent: 2 - - uid: 13161 + - uid: 13106 components: - type: Transform pos: -98.5,-5.5 parent: 2 - - uid: 13162 + - uid: 13107 components: - type: Transform pos: -98.5,-6.5 parent: 2 - - uid: 13163 + - uid: 13108 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-43.5 parent: 2 - - uid: 13164 + - uid: 13109 components: - type: Transform pos: -98.5,-9.5 parent: 2 - - uid: 13165 + - uid: 13110 components: - type: Transform pos: -91.5,-10.5 parent: 2 - - uid: 13166 + - uid: 13111 components: - type: Transform pos: -97.5,-1.5 parent: 2 - - uid: 13167 + - uid: 13112 components: - type: Transform pos: -93.5,-1.5 parent: 2 - - uid: 13168 + - uid: 13113 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,31.5 parent: 2 - - uid: 13169 + - uid: 13114 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-40.5 parent: 2 - - uid: 13170 + - uid: 13115 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-10.5 parent: 2 - - uid: 13171 + - uid: 13116 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-39.5 parent: 2 - - uid: 13172 + - uid: 13117 components: - type: Transform pos: -69.5,66.5 parent: 2 - - uid: 13173 + - uid: 13118 components: - type: Transform pos: -51.5,-79.5 parent: 2 - - uid: 13174 + - uid: 13119 components: - type: Transform pos: 29.5,99.5 parent: 2 - - uid: 13175 + - uid: 13120 components: - type: Transform pos: -56.5,42.5 parent: 2 - - uid: 13176 + - uid: 13121 components: - type: Transform pos: -45.5,61.5 parent: 2 - - uid: 13177 + - uid: 13122 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,42.5 parent: 2 - - uid: 13178 + - uid: 13123 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-22.5 parent: 2 - - uid: 13179 + - uid: 13124 components: - type: Transform pos: -91.5,-11.5 parent: 2 - - uid: 13181 + - uid: 13125 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-31.5 parent: 2 - - uid: 13182 + - uid: 13126 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-10.5 parent: 2 - - uid: 13183 + - uid: 13127 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,24.5 parent: 2 - - uid: 13184 + - uid: 13128 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 13185 + - uid: 13129 components: - type: Transform pos: -86.5,14.5 parent: 2 - - uid: 13186 + - uid: 13130 components: - type: Transform pos: -52.5,-81.5 parent: 2 - - uid: 13187 + - uid: 13131 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,44.5 parent: 2 - - uid: 13188 + - uid: 13132 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,33.5 parent: 2 - - uid: 13189 + - uid: 13133 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,26.5 parent: 2 - - uid: 13190 + - uid: 13134 components: - type: Transform pos: -38.5,-75.5 parent: 2 - - uid: 13191 + - uid: 13135 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-30.5 parent: 2 - - uid: 13192 + - uid: 13136 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-54.5 parent: 2 - - uid: 13193 + - uid: 13137 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-29.5 parent: 2 - - uid: 13194 + - uid: 13138 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,28.5 parent: 2 - - uid: 13195 + - uid: 13139 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 13196 + - uid: 13140 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-19.5 parent: 2 - - uid: 13197 + - uid: 13141 components: - type: Transform pos: -91.5,-4.5 parent: 2 - - uid: 13198 + - uid: 13142 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,38.5 parent: 2 - - uid: 13199 + - uid: 13143 components: - type: Transform pos: -98.5,-1.5 parent: 2 - - uid: 13200 + - uid: 13144 components: - type: Transform pos: -95.5,-6.5 parent: 2 - - uid: 13201 + - uid: 13145 components: - type: Transform pos: -86.5,-5.5 parent: 2 - - uid: 13202 + - uid: 13146 components: - type: Transform pos: -59.5,37.5 parent: 2 - - uid: 13204 + - uid: 13147 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 - - uid: 13205 + - uid: 13148 components: - type: Transform pos: -96.5,-6.5 parent: 2 - - uid: 13206 + - uid: 13149 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,42.5 parent: 2 - - uid: 13207 + - uid: 13150 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,41.5 parent: 2 - - uid: 13208 + - uid: 13151 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,32.5 parent: 2 - - uid: 13209 + - uid: 13152 components: - type: Transform pos: -86.5,-8.5 parent: 2 - - uid: 13210 + - uid: 13153 components: - type: Transform pos: -69.5,-0.5 parent: 2 - - uid: 13211 + - uid: 13154 components: - type: Transform pos: -98.5,-4.5 parent: 2 - - uid: 13212 + - uid: 13155 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,30.5 parent: 2 - - uid: 13213 + - uid: 13156 components: - type: Transform pos: -86.5,-4.5 parent: 2 - - uid: 13214 + - uid: 13157 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-18.5 parent: 2 - - uid: 13216 + - uid: 13158 components: - type: Transform pos: -86.5,-6.5 parent: 2 - - uid: 13217 + - uid: 13159 components: - type: Transform pos: -95.5,-8.5 parent: 2 - - uid: 13218 + - uid: 13160 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,37.5 parent: 2 - - uid: 13219 + - uid: 13161 components: - type: Transform pos: -51.5,-75.5 parent: 2 - - uid: 13220 + - uid: 13162 components: - type: Transform pos: -51.5,-84.5 parent: 2 - - uid: 13221 + - uid: 13163 components: - type: Transform pos: -66.5,66.5 parent: 2 - - uid: 13222 + - uid: 13164 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,99.5 parent: 2 - - uid: 13223 + - uid: 13165 components: - type: Transform pos: -67.5,66.5 parent: 2 - - uid: 13224 + - uid: 13166 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,42.5 parent: 2 - - uid: 13225 + - uid: 13167 components: - type: Transform pos: -52.5,-89.5 parent: 2 - - uid: 13226 + - uid: 13168 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 13227 + - uid: 13169 components: - type: Transform pos: -53.5,-58.5 parent: 2 - - uid: 13228 + - uid: 13170 components: - type: Transform pos: -48.5,-85.5 parent: 2 - - uid: 13229 + - uid: 13171 components: - type: Transform pos: 30.5,20.5 parent: 2 - - uid: 13230 + - uid: 13172 components: - type: Transform pos: -54.5,-58.5 parent: 2 - - uid: 13231 + - uid: 13173 components: - type: Transform pos: -70.5,73.5 parent: 2 - - uid: 13232 + - uid: 13174 components: - type: Transform pos: -56.5,-81.5 parent: 2 - - uid: 13233 + - uid: 13175 components: - type: Transform pos: -57.5,-81.5 parent: 2 - - uid: 13234 + - uid: 13176 components: - type: Transform pos: -75.5,72.5 parent: 2 - - uid: 13235 + - uid: 13177 components: - type: Transform pos: -75.5,71.5 parent: 2 - - uid: 13236 + - uid: 13178 components: - type: Transform pos: -75.5,70.5 parent: 2 - - uid: 13237 + - uid: 13179 components: - type: Transform pos: -72.5,69.5 parent: 2 - - uid: 13238 + - uid: 13180 components: - type: Transform pos: -71.5,69.5 parent: 2 - - uid: 13239 + - uid: 13181 components: - type: Transform pos: -49.5,-66.5 parent: 2 - - uid: 13240 + - uid: 13182 components: - type: Transform pos: 28.5,93.5 parent: 2 - - uid: 13241 + - uid: 13183 components: - type: Transform pos: 28.5,95.5 parent: 2 - - uid: 13242 + - uid: 13184 components: - type: Transform pos: -48.5,-89.5 parent: 2 - - uid: 13243 + - uid: 13185 components: - type: Transform pos: -47.5,-89.5 parent: 2 - - uid: 13244 + - uid: 13186 components: - type: Transform pos: -75.5,83.5 parent: 2 - - uid: 13245 + - uid: 13187 components: - type: Transform pos: 28.5,90.5 parent: 2 - - uid: 13246 + - uid: 13188 components: - type: Transform pos: 28.5,89.5 parent: 2 - - uid: 13247 + - uid: 13189 components: - type: Transform pos: 28.5,88.5 parent: 2 - - uid: 13248 + - uid: 13190 components: - type: Transform pos: 29.5,91.5 parent: 2 - - uid: 13249 + - uid: 13191 components: - type: Transform pos: 27.5,91.5 parent: 2 - - uid: 13250 + - uid: 13192 components: - type: Transform pos: 27.5,95.5 parent: 2 - - uid: 13251 + - uid: 13193 components: - type: Transform pos: -76.5,81.5 parent: 2 - - uid: 13252 + - uid: 13194 components: - type: Transform pos: -80.5,77.5 parent: 2 - - uid: 13253 + - uid: 13195 components: - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 13254 + - uid: 13196 components: - type: Transform pos: -71.5,81.5 parent: 2 - - uid: 13255 + - uid: 13197 components: - type: Transform pos: -74.5,81.5 parent: 2 - - uid: 13256 + - uid: 13198 components: - type: Transform pos: -51.5,-87.5 parent: 2 - - uid: 13257 + - uid: 13199 components: - type: Transform pos: -57.5,-85.5 parent: 2 - - uid: 13258 + - uid: 13200 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,44.5 parent: 2 - - uid: 13259 + - uid: 13201 components: - type: Transform pos: -51.5,-86.5 parent: 2 - - uid: 13260 + - uid: 13202 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-40.5 parent: 2 - - uid: 13261 + - uid: 13203 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-31.5 parent: 2 - - uid: 13262 + - uid: 13204 components: - type: Transform pos: -75.5,73.5 parent: 2 - - uid: 13263 + - uid: 13205 components: - type: Transform pos: -73.5,69.5 parent: 2 - - uid: 13264 + - uid: 13206 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,30.5 parent: 2 - - uid: 13265 + - uid: 13207 components: - type: Transform pos: -62.5,-50.5 parent: 2 - - uid: 13266 + - uid: 13208 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-10.5 parent: 2 - - uid: 13267 + - uid: 13209 components: - type: Transform pos: -73.5,73.5 parent: 2 - - uid: 13268 + - uid: 13210 components: - type: Transform pos: -57.5,-89.5 parent: 2 - - uid: 13269 + - uid: 13211 components: - type: Transform pos: -51.5,-78.5 parent: 2 - - uid: 13270 + - uid: 13212 components: - type: Transform pos: 20.5,87.5 parent: 2 - - uid: 13271 + - uid: 13213 components: - type: Transform pos: -51.5,-58.5 parent: 2 - - uid: 13272 + - uid: 13214 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,44.5 parent: 2 - - uid: 13273 + - uid: 13215 components: - type: Transform pos: -78.5,73.5 parent: 2 - - uid: 13274 + - uid: 13216 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,41.5 parent: 2 - - uid: 13275 + - uid: 13217 components: - type: Transform pos: -43.5,61.5 parent: 2 - - uid: 13276 + - uid: 13218 components: - type: Transform pos: -77.5,81.5 parent: 2 - - uid: 13277 + - uid: 13219 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,27.5 parent: 2 - - uid: 13278 + - uid: 13220 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,54.5 parent: 2 - - uid: 13279 + - uid: 13221 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-46.5 parent: 2 - - uid: 13280 + - uid: 13222 components: - type: Transform pos: -92.5,-13.5 parent: 2 - - uid: 13281 + - uid: 13223 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 - - uid: 13282 + - uid: 13224 components: - type: Transform pos: -86.5,-9.5 parent: 2 - - uid: 13283 + - uid: 13225 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-73.5 parent: 2 - - uid: 13284 + - uid: 13226 components: - type: Transform pos: -93.5,-13.5 parent: 2 - - uid: 13285 + - uid: 13227 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-54.5 parent: 2 - - uid: 13286 + - uid: 13228 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-38.5 parent: 2 - - uid: 13287 + - uid: 13229 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-46.5 parent: 2 - - uid: 13288 + - uid: 13230 components: - type: Transform pos: -35.5,45.5 parent: 2 - - uid: 13289 + - uid: 13231 components: - type: Transform pos: -39.5,-4.5 parent: 2 - - uid: 13290 + - uid: 13232 components: - type: Transform pos: -52.5,-54.5 parent: 2 - - uid: 13291 + - uid: 13233 components: - type: Transform pos: -49.5,-85.5 parent: 2 - - uid: 13292 + - uid: 13234 components: - type: Transform pos: -81.5,81.5 parent: 2 - - uid: 13293 + - uid: 13235 components: - type: Transform pos: -61.5,-50.5 parent: 2 - - uid: 13294 + - uid: 13236 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-36.5 parent: 2 - - uid: 13295 + - uid: 13237 components: - type: Transform pos: -51.5,-66.5 parent: 2 - - uid: 13296 + - uid: 13238 components: - type: Transform pos: -47.5,-74.5 parent: 2 - - uid: 13297 + - uid: 13239 components: - type: Transform pos: -81.5,73.5 parent: 2 - - uid: 13298 + - uid: 13240 components: - type: Transform pos: -49.5,-89.5 parent: 2 - - uid: 13299 + - uid: 13241 components: - type: Transform pos: -52.5,-66.5 parent: 2 - - uid: 13300 + - uid: 13242 components: - type: Transform pos: -80.5,73.5 parent: 2 - - uid: 13301 + - uid: 13243 components: - type: Transform pos: -76.5,69.5 parent: 2 - - uid: 13302 + - uid: 13244 components: - type: Transform pos: -75.5,75.5 parent: 2 - - uid: 13303 + - uid: 13245 components: - type: Transform pos: -80.5,81.5 parent: 2 - - uid: 13304 + - uid: 13246 components: - type: Transform pos: 30.5,95.5 parent: 2 - - uid: 13305 + - uid: 13247 components: - type: Transform pos: -52.5,-58.5 parent: 2 - - uid: 13306 + - uid: 13248 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,29.5 parent: 2 - - uid: 13307 + - uid: 13249 components: - type: Transform pos: 30.5,16.5 parent: 2 - - uid: 13308 + - uid: 13250 components: - type: Transform pos: 30.5,17.5 parent: 2 - - uid: 13309 + - uid: 13251 components: - type: Transform pos: -78.5,81.5 parent: 2 - - uid: 13310 + - uid: 13252 components: - type: Transform pos: -73.5,-40.5 parent: 2 - - uid: 13311 + - uid: 13253 components: - type: Transform pos: -50.5,-62.5 parent: 2 - - uid: 13312 + - uid: 13254 components: - type: Transform pos: -83.5,14.5 parent: 2 - - uid: 13313 + - uid: 13255 components: - type: Transform pos: -93.5,-10.5 parent: 2 - - uid: 13314 + - uid: 13256 components: - type: Transform pos: -84.5,14.5 parent: 2 - - uid: 13315 + - uid: 13257 components: - type: Transform pos: -74.5,-40.5 parent: 2 - - uid: 13316 + - uid: 13258 components: - type: Transform pos: -53.5,-85.5 parent: 2 - - uid: 13317 + - uid: 13259 components: - type: Transform pos: -62.5,-54.5 parent: 2 - - uid: 13318 + - uid: 13260 components: - type: Transform pos: -81.5,69.5 parent: 2 - - uid: 13319 + - uid: 13261 components: - type: Transform pos: -46.5,-81.5 parent: 2 - - uid: 13320 + - uid: 13262 components: - type: Transform pos: -54.5,-56.5 parent: 2 - - uid: 13321 + - uid: 13263 components: - type: Transform pos: -52.5,-56.5 parent: 2 - - uid: 13322 + - uid: 13264 components: - type: Transform pos: -45.5,-81.5 parent: 2 - - uid: 13323 + - uid: 13265 components: - type: Transform pos: -54.5,-54.5 parent: 2 - - uid: 13324 + - uid: 13266 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-17.5 parent: 2 - - uid: 13325 + - uid: 13267 components: - type: Transform pos: -59.5,32.5 parent: 2 - - uid: 13326 + - uid: 13268 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,30.5 parent: 2 - - uid: 13327 + - uid: 13269 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-30.5 parent: 2 - - uid: 13328 + - uid: 13270 components: - type: Transform pos: 30.5,18.5 parent: 2 - - uid: 13329 + - uid: 13271 components: - type: Transform pos: -51.5,-90.5 parent: 2 - - uid: 13330 + - uid: 13272 components: - type: Transform pos: -61.5,66.5 parent: 2 - - uid: 13331 + - uid: 13273 components: - type: Transform pos: -79.5,81.5 parent: 2 - - uid: 13332 + - uid: 13274 components: - type: Transform pos: -72.5,81.5 parent: 2 - - uid: 13333 + - uid: 13275 components: - type: Transform pos: -50.5,-69.5 parent: 2 - - uid: 13334 + - uid: 13276 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-74.5 parent: 2 - - uid: 13335 + - uid: 13277 components: - type: Transform pos: -73.5,77.5 parent: 2 - - uid: 13336 + - uid: 13278 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-55.5 parent: 2 - - uid: 13337 + - uid: 13279 components: - type: Transform pos: -96.5,-8.5 parent: 2 - - uid: 13338 + - uid: 13280 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,56.5 parent: 2 - - uid: 13339 + - uid: 13281 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-20.5 parent: 2 - - uid: 13340 + - uid: 13282 components: - type: Transform pos: -43.5,59.5 parent: 2 - - uid: 13341 + - uid: 13283 components: - type: Transform pos: -45.5,59.5 parent: 2 - - uid: 13342 + - uid: 13284 components: - type: Transform pos: -78.5,-41.5 parent: 2 - - uid: 13343 + - uid: 13285 components: - type: Transform pos: 28.5,98.5 parent: 2 - - uid: 13344 + - uid: 13286 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-46.5 parent: 2 - - uid: 13345 + - uid: 13287 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-55.5 parent: 2 - - uid: 13346 + - uid: 13288 components: - type: Transform pos: -65.5,66.5 parent: 2 - - uid: 13347 + - uid: 13289 components: - type: Transform pos: -51.5,-83.5 parent: 2 - - uid: 13348 + - uid: 13290 components: - type: Transform pos: -51.5,-69.5 parent: 2 - - uid: 13349 + - uid: 13291 components: - type: Transform pos: -75.5,69.5 parent: 2 - - uid: 13350 + - uid: 13292 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-7.5 parent: 2 - - uid: 13351 + - uid: 13293 components: - type: Transform pos: -73.5,81.5 parent: 2 - - uid: 13352 + - uid: 13294 components: - type: Transform pos: -70.5,81.5 parent: 2 - - uid: 13353 + - uid: 13295 components: - type: Transform pos: -86.5,-1.5 parent: 2 - - uid: 13354 + - uid: 13296 components: - type: Transform pos: 28.5,99.5 parent: 2 - - uid: 13355 + - uid: 13297 components: - type: Transform pos: -71.5,73.5 parent: 2 - - uid: 13356 + - uid: 13298 components: - type: Transform pos: -55.5,-89.5 parent: 2 - - uid: 13357 + - uid: 13299 components: - type: Transform pos: -54.5,-89.5 parent: 2 - - uid: 13358 + - uid: 13300 components: - type: Transform pos: -69.5,81.5 parent: 2 - - uid: 13359 + - uid: 13301 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-54.5 parent: 2 - - uid: 13360 + - uid: 13302 components: - type: Transform pos: -77.5,-41.5 parent: 2 - - uid: 13361 + - uid: 13303 components: - type: Transform pos: -88.5,-1.5 parent: 2 - - uid: 13362 + - uid: 13304 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,27.5 parent: 2 - - uid: 13363 + - uid: 13305 components: - type: Transform pos: -76.5,-41.5 parent: 2 - - uid: 13364 + - uid: 13306 components: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 13365 + - uid: 13307 components: - type: Transform pos: -46.5,-89.5 parent: 2 - - uid: 13366 + - uid: 13308 components: - type: Transform pos: -45.5,-89.5 parent: 2 - - uid: 13367 + - uid: 13309 components: - type: Transform pos: 28.5,100.5 parent: 2 - - uid: 13368 + - uid: 13310 components: - type: Transform pos: 28.5,101.5 parent: 2 - - uid: 13369 + - uid: 13311 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-40.5 parent: 2 - - uid: 13370 + - uid: 13312 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-10.5 parent: 2 - - uid: 13371 + - uid: 13313 components: - type: Transform pos: -74.5,-43.5 parent: 2 - - uid: 13372 + - uid: 13314 components: - type: Transform pos: -68.5,66.5 parent: 2 - - uid: 13373 + - uid: 13315 components: - type: Transform pos: -51.5,-76.5 parent: 2 - - uid: 13374 + - uid: 13316 components: - type: Transform pos: -88.5,11.5 parent: 2 - - uid: 13375 + - uid: 13317 components: - type: Transform pos: -59.5,31.5 parent: 2 - - uid: 13376 + - uid: 13318 components: - type: Transform pos: -98.5,-2.5 parent: 2 - - uid: 13377 + - uid: 13319 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,37.5 parent: 2 - - uid: 13378 + - uid: 13320 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-55.5 parent: 2 - - uid: 13379 + - uid: 13321 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-54.5 parent: 2 - - uid: 13380 + - uid: 13322 components: - type: Transform pos: -98.5,-7.5 parent: 2 - - uid: 13381 + - uid: 13323 components: - type: Transform pos: 28.5,96.5 parent: 2 - - uid: 13382 + - uid: 13324 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-30.5 parent: 2 - - uid: 13383 + - uid: 13325 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-12.5 parent: 2 - - uid: 13384 + - uid: 13326 components: - type: Transform pos: -50.5,-66.5 parent: 2 - - uid: 13385 + - uid: 13327 components: - type: Transform pos: -98.5,-12.5 parent: 2 - - uid: 13386 + - uid: 13328 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-13.5 parent: 2 - - uid: 13387 + - uid: 13329 components: - type: Transform pos: 28.5,87.5 parent: 2 - - uid: 13388 + - uid: 13330 components: - type: Transform pos: -87.5,14.5 parent: 2 - - uid: 13389 + - uid: 13331 components: - type: Transform pos: -43.5,-56.5 parent: 2 - - uid: 13390 + - uid: 13332 components: - type: Transform pos: -49.5,-74.5 parent: 2 - - uid: 13391 + - uid: 13333 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-55.5 parent: 2 - - uid: 13392 + - uid: 13334 components: - type: Transform pos: 21.5,87.5 parent: 2 - - uid: 13393 + - uid: 13335 components: - type: Transform pos: -86.5,-13.5 parent: 2 - - uid: 13394 + - uid: 13336 components: - type: Transform pos: -98.5,-13.5 parent: 2 - - uid: 13395 + - uid: 13337 components: - type: Transform pos: -93.5,-3.5 parent: 2 - - uid: 13396 + - uid: 13338 components: - type: Transform pos: -45.5,62.5 parent: 2 - - uid: 13397 + - uid: 13339 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-56.5 parent: 2 - - uid: 13398 + - uid: 13340 components: - type: Transform pos: -86.5,-7.5 parent: 2 - - uid: 13399 + - uid: 13341 components: - type: Transform pos: -87.5,-1.5 parent: 2 - - uid: 13400 + - uid: 13342 components: - type: Transform pos: -72.5,73.5 parent: 2 - - uid: 13401 + - uid: 13343 components: - type: Transform pos: -56.5,-89.5 parent: 2 - - uid: 13402 + - uid: 13344 components: - type: Transform pos: -51.5,-80.5 parent: 2 - - uid: 13403 + - uid: 13345 components: - type: Transform pos: -73.5,66.5 parent: 2 - - uid: 13404 + - uid: 13346 components: - type: Transform pos: 28.5,102.5 parent: 2 - - uid: 13405 + - uid: 13347 components: - type: Transform pos: -75.5,76.5 parent: 2 - - uid: 13406 + - uid: 13348 components: - type: Transform pos: -43.5,62.5 parent: 2 - - uid: 13407 + - uid: 13349 components: - type: Transform pos: -78.5,77.5 parent: 2 - - uid: 13408 + - uid: 13350 components: - type: Transform pos: -73.5,-43.5 parent: 2 - - uid: 13409 + - uid: 13351 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-23.5 parent: 2 - - uid: 13410 + - uid: 13352 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-46.5 parent: 2 - - uid: 13411 + - uid: 13353 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 2 - - uid: 13412 + - uid: 13354 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-10.5 parent: 2 - - uid: 13413 + - uid: 13355 components: - type: Transform pos: -64.5,66.5 parent: 2 - - uid: 13414 + - uid: 13356 components: - type: Transform pos: -51.5,-82.5 parent: 2 - - uid: 13415 + - uid: 13357 components: - type: Transform pos: -16.5,-84.5 parent: 2 - - uid: 13416 + - uid: 13358 components: - type: Transform pos: -52.5,-85.5 parent: 2 - - uid: 13417 + - uid: 13359 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,32.5 parent: 2 - - uid: 13418 + - uid: 13360 components: - type: Transform pos: -77.5,77.5 parent: 2 - - uid: 13419 + - uid: 13361 components: - type: Transform pos: -63.5,-50.5 parent: 2 - - uid: 13420 + - uid: 13362 components: - type: Transform pos: -45.5,60.5 parent: 2 - - uid: 13421 + - uid: 13363 components: - type: Transform pos: -51.5,-85.5 parent: 2 - - uid: 13422 + - uid: 13364 components: - type: Transform pos: -75.5,74.5 parent: 2 - - uid: 13423 + - uid: 13365 components: - type: Transform pos: 28.5,92.5 parent: 2 - - uid: 13424 + - uid: 13366 components: - type: Transform pos: -51.5,-74.5 parent: 2 - - uid: 13425 + - uid: 13367 components: - type: Transform pos: 30.5,22.5 parent: 2 - - uid: 13426 + - uid: 13368 components: - type: Transform pos: -75.5,67.5 parent: 2 - - uid: 13427 + - uid: 13369 components: - type: Transform pos: -77.5,69.5 parent: 2 - - uid: 13428 + - uid: 13370 components: - type: Transform pos: -46.5,-85.5 parent: 2 - - uid: 13429 + - uid: 13371 components: - type: Transform pos: -79.5,69.5 parent: 2 - - uid: 13430 + - uid: 13372 components: - type: Transform pos: -50.5,-89.5 parent: 2 - - uid: 13431 + - uid: 13373 components: - type: Transform pos: -69.5,73.5 parent: 2 - - uid: 13432 + - uid: 13374 components: - type: Transform pos: -50.5,-85.5 parent: 2 - - uid: 13433 + - uid: 13375 components: - type: Transform pos: -82.5,73.5 parent: 2 - - uid: 13434 + - uid: 13376 components: - type: Transform pos: -79.5,73.5 parent: 2 - - uid: 13435 + - uid: 13377 components: - type: Transform pos: -44.5,59.5 parent: 2 - - uid: 13436 + - uid: 13378 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,37.5 parent: 2 - - uid: 13437 + - uid: 13379 components: - type: Transform pos: -95.5,-13.5 parent: 2 - - uid: 13438 + - uid: 13380 components: - type: Transform pos: -98.5,-3.5 parent: 2 - - uid: 13439 + - uid: 13381 components: - type: Transform pos: -89.5,-8.5 parent: 2 - - uid: 13440 + - uid: 13382 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-72.5 parent: 2 - - uid: 13441 + - uid: 13383 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-20.5 parent: 2 - - uid: 13442 + - uid: 13384 components: - type: Transform pos: -39.5,-2.5 parent: 2 - - uid: 13443 + - uid: 13385 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,25.5 parent: 2 - - uid: 13444 + - uid: 13386 components: - type: Transform pos: 25.5,71.5 parent: 2 - - uid: 13445 + - uid: 13387 components: - type: Transform pos: -81.5,77.5 parent: 2 - - uid: 13446 + - uid: 13388 components: - type: Transform pos: -71.5,66.5 parent: 2 - - uid: 13447 + - uid: 13389 components: - type: Transform pos: -86.5,-3.5 parent: 2 - - uid: 13448 + - uid: 13390 components: - type: Transform pos: 33.5,62.5 parent: 2 - - uid: 13449 + - uid: 13391 components: - type: Transform pos: -45.5,-56.5 parent: 2 - - uid: 13450 + - uid: 13392 components: - type: Transform pos: -50.5,-81.5 parent: 2 - - uid: 13451 + - uid: 13393 components: - type: Transform pos: -86.5,-12.5 parent: 2 - - uid: 13452 + - uid: 13394 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 13453 + - uid: 13395 components: - type: Transform pos: -97.5,-13.5 parent: 2 - - uid: 13454 + - uid: 13396 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,55.5 parent: 2 - - uid: 13455 + - uid: 13397 components: - type: Transform pos: -42.5,-47.5 parent: 2 - - uid: 13456 + - uid: 13398 components: - type: Transform pos: -75.5,77.5 parent: 2 - - uid: 13457 + - uid: 13399 components: - type: Transform pos: 28.5,94.5 parent: 2 - - uid: 13458 + - uid: 13400 components: - type: Transform pos: -52.5,-62.5 parent: 2 - - uid: 13459 + - uid: 13401 components: - type: Transform pos: -51.5,-88.5 parent: 2 - - uid: 13460 + - uid: 13402 components: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 13461 + - uid: 13403 components: - type: Transform pos: 29.5,95.5 parent: 2 - - uid: 13462 + - uid: 13404 components: - type: Transform pos: -48.5,-81.5 parent: 2 - - uid: 13463 + - uid: 13405 components: - type: Transform pos: -77.5,73.5 parent: 2 - - uid: 13464 + - uid: 13406 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-20.5 parent: 2 - - uid: 13465 + - uid: 13407 components: - type: Transform pos: 23.5,60.5 parent: 2 - - uid: 13466 + - uid: 13408 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-11.5 parent: 2 - - uid: 13467 + - uid: 13409 components: - type: Transform pos: 10.5,93.5 parent: 2 - - uid: 13468 + - uid: 13410 components: - type: Transform pos: -74.5,73.5 parent: 2 - - uid: 13469 + - uid: 13411 components: - type: Transform pos: 70.5,-51.5 parent: 2 - - uid: 13470 + - uid: 13412 components: - type: Transform pos: -53.5,-62.5 parent: 2 - - uid: 13471 + - uid: 13413 components: - type: Transform pos: -76.5,73.5 parent: 2 - - uid: 13472 + - uid: 13414 components: - type: Transform pos: -45.5,-54.5 parent: 2 - - uid: 13473 + - uid: 13415 components: - type: Transform pos: -93.5,-11.5 parent: 2 - - uid: 13474 + - uid: 13416 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-11.5 parent: 2 - - uid: 13475 + - uid: 13417 components: - type: Transform pos: -72.5,66.5 parent: 2 - - uid: 13476 + - uid: 13418 components: - type: Transform pos: -49.5,-69.5 parent: 2 - - uid: 13477 + - uid: 13419 components: - type: Transform pos: 33.5,60.5 parent: 2 - - uid: 13478 + - uid: 13420 components: - type: Transform pos: 26.5,95.5 parent: 2 - - uid: 13479 + - uid: 13421 components: - type: Transform pos: -74.5,66.5 parent: 2 - - uid: 13480 + - uid: 13422 components: - type: Transform pos: -69.5,77.5 parent: 2 - - uid: 13481 + - uid: 13423 components: - type: Transform pos: -49.5,-81.5 parent: 2 - - uid: 13482 + - uid: 13424 components: - type: Transform pos: -98.5,-11.5 parent: 2 - - uid: 13483 + - uid: 13425 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 - - uid: 13484 + - uid: 13426 components: - type: Transform pos: -47.5,-85.5 parent: 2 - - uid: 13485 + - uid: 13427 components: - type: Transform pos: -68.5,73.5 parent: 2 - - uid: 13486 + - uid: 13428 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-19.5 parent: 2 - - uid: 13487 + - uid: 13429 components: - type: Transform pos: -87.5,-13.5 parent: 2 - - uid: 13488 + - uid: 13430 components: - type: Transform pos: -96.5,-1.5 parent: 2 - - uid: 13489 + - uid: 13431 components: - type: Transform pos: -50.5,-74.5 parent: 2 - - uid: 13490 + - uid: 13432 components: - type: Transform pos: -75.5,68.5 parent: 2 - - uid: 13491 + - uid: 13433 components: - type: Transform pos: 25.5,70.5 parent: 2 - - uid: 13492 + - uid: 13434 components: - type: Transform pos: -51.5,-91.5 parent: 2 - - uid: 13493 + - uid: 13435 components: - type: Transform pos: -71.5,77.5 parent: 2 - - uid: 13494 + - uid: 13436 components: - type: Transform pos: 27.5,99.5 parent: 2 - - uid: 13495 + - uid: 13437 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 13496 + - uid: 13438 components: - type: Transform pos: -44.5,-85.5 parent: 2 - - uid: 13497 + - uid: 13439 components: - type: Transform pos: -88.5,12.5 parent: 2 - - uid: 13498 + - uid: 13440 components: - type: Transform pos: 25.5,87.5 parent: 2 - - uid: 13499 + - uid: 13441 components: - type: Transform pos: 24.5,87.5 parent: 2 - - uid: 13500 + - uid: 13442 components: - type: Transform pos: -94.5,-1.5 parent: 2 - - uid: 13501 + - uid: 13443 components: - type: Transform pos: -69.5,-1.5 parent: 2 - - uid: 13502 + - uid: 13444 components: - type: Transform pos: -86.5,-2.5 parent: 2 - - uid: 13503 + - uid: 13445 components: - type: Transform pos: -74.5,77.5 parent: 2 - - uid: 13504 + - uid: 13446 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 - - uid: 13505 + - uid: 13447 components: - type: Transform pos: -88.5,15.5 parent: 2 - - uid: 13506 + - uid: 13448 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-38.5 parent: 2 - - uid: 13507 + - uid: 13449 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-10.5 parent: 2 - - uid: 13508 + - uid: 13450 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-10.5 parent: 2 - - uid: 13509 + - uid: 13451 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-36.5 parent: 2 - - uid: 13510 + - uid: 13452 components: - type: Transform pos: -88.5,14.5 parent: 2 - - uid: 13511 + - uid: 13453 components: - type: Transform pos: -53.5,-81.5 parent: 2 - - uid: 13512 + - uid: 13454 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,25.5 parent: 2 - - uid: 13513 + - uid: 13455 components: - type: Transform pos: -52.5,-33.5 parent: 2 - - uid: 13514 + - uid: 13456 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,28.5 parent: 2 - - uid: 13515 + - uid: 13457 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-34.5 parent: 2 - - uid: 13516 + - uid: 13458 components: - type: Transform pos: -55.5,-34.5 parent: 2 - - uid: 13517 + - uid: 13459 components: - type: Transform pos: -55.5,-35.5 parent: 2 - - uid: 13518 + - uid: 13460 components: - type: Transform pos: -55.5,-36.5 parent: 2 - - uid: 13519 + - uid: 13461 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 13520 + - uid: 13462 components: - type: Transform pos: -54.5,-37.5 parent: 2 - - uid: 13521 + - uid: 13463 components: - type: Transform pos: -48.5,-40.5 parent: 2 - - uid: 13522 + - uid: 13464 components: - type: Transform pos: -47.5,-39.5 parent: 2 - - uid: 13523 + - uid: 13465 components: - type: Transform pos: -46.5,-39.5 parent: 2 - - uid: 13524 + - uid: 13466 components: - type: Transform pos: -44.5,-40.5 parent: 2 - - uid: 13525 + - uid: 13467 components: - type: Transform pos: -43.5,-40.5 parent: 2 - - uid: 13526 + - uid: 13468 components: - type: Transform pos: -48.5,-74.5 parent: 2 - - uid: 13527 + - uid: 13469 components: - type: Transform pos: 28.5,91.5 parent: 2 - - uid: 13528 + - uid: 13470 components: - type: Transform pos: -58.5,-85.5 parent: 2 - - uid: 13529 + - uid: 13471 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-40.5 parent: 2 - - uid: 13530 + - uid: 13472 components: - type: Transform pos: 10.5,92.5 parent: 2 - - uid: 13531 + - uid: 13473 components: - type: Transform pos: -51.5,-77.5 parent: 2 - - uid: 13532 + - uid: 13474 components: - type: Transform pos: 19.5,87.5 parent: 2 - - uid: 13533 + - uid: 13475 components: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 13534 + - uid: 13476 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-11.5 parent: 2 - - uid: 13535 + - uid: 13477 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,53.5 parent: 2 - - uid: 13536 + - uid: 13478 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 13537 + - uid: 13479 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 13538 + - uid: 13480 components: - type: Transform pos: -54.5,-85.5 parent: 2 - - uid: 13539 + - uid: 13481 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-54.5 parent: 2 - - uid: 13540 + - uid: 13482 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-20.5 parent: 2 - - uid: 13541 + - uid: 13483 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-21.5 parent: 2 - - uid: 13542 + - uid: 13484 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-19.5 parent: 2 - - uid: 13543 + - uid: 13485 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-54.5 parent: 2 - - uid: 13544 + - uid: 13486 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-53.5 parent: 2 - - uid: 13545 + - uid: 13487 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-46.5 parent: 2 - - uid: 13546 + - uid: 13488 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-52.5 parent: 2 - - uid: 13547 + - uid: 13489 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-46.5 parent: 2 - - uid: 13548 + - uid: 13490 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-46.5 parent: 2 - - uid: 13549 + - uid: 13491 components: - type: Transform pos: -51.5,-89.5 parent: 2 - - uid: 13550 + - uid: 13492 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 - - uid: 13551 + - uid: 13493 components: - type: Transform pos: -47.5,-81.5 parent: 2 - - uid: 13552 + - uid: 13494 components: - type: Transform pos: -70.5,66.5 parent: 2 - - uid: 13553 + - uid: 13495 components: - type: Transform pos: -78.5,69.5 parent: 2 - - uid: 13554 + - uid: 13496 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-10.5 parent: 2 - - uid: 13555 + - uid: 13497 components: - type: Transform pos: -64.5,-50.5 parent: 2 - - uid: 13556 + - uid: 13498 components: - type: Transform pos: 16.5,-60.5 parent: 2 - - uid: 13557 + - uid: 13499 components: - type: Transform pos: 18.5,-58.5 parent: 2 - - uid: 13558 + - uid: 13500 components: - type: Transform pos: 19.5,-58.5 parent: 2 - - uid: 13559 + - uid: 13501 components: - type: Transform pos: 20.5,-58.5 parent: 2 - - uid: 13560 + - uid: 13502 components: - type: Transform pos: 21.5,-58.5 parent: 2 - - uid: 13561 + - uid: 13503 components: - type: Transform pos: 22.5,-58.5 parent: 2 - - uid: 13562 + - uid: 13504 components: - type: Transform pos: 23.5,-58.5 parent: 2 - - uid: 13563 + - uid: 13505 components: - type: Transform pos: 13.5,-80.5 parent: 2 - - uid: 13564 + - uid: 13506 components: - type: Transform pos: 12.5,-65.5 parent: 2 - - uid: 13565 + - uid: 13507 components: - type: Transform pos: 17.5,78.5 parent: 2 - - uid: 13566 + - uid: 13508 components: - type: Transform pos: 57.5,-40.5 parent: 2 - - uid: 13567 + - uid: 13509 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-40.5 parent: 2 - - uid: 13568 + - uid: 13510 components: - type: Transform pos: -88.5,16.5 parent: 2 - - uid: 13569 + - uid: 13511 components: - type: Transform pos: -89.5,23.5 parent: 2 - - uid: 13570 + - uid: 13512 components: - type: Transform pos: -88.5,17.5 parent: 2 - - uid: 13571 + - uid: 13513 components: - type: Transform pos: -88.5,18.5 parent: 2 - - uid: 13572 + - uid: 13514 components: - type: Transform pos: -88.5,19.5 parent: 2 - - uid: 13573 + - uid: 13515 components: - type: Transform pos: -88.5,20.5 parent: 2 - - uid: 13574 + - uid: 13516 components: - type: Transform pos: -88.5,21.5 parent: 2 - - uid: 13575 + - uid: 13517 components: - type: Transform pos: -88.5,22.5 parent: 2 - - uid: 13576 + - uid: 13518 components: - type: Transform pos: -88.5,23.5 parent: 2 - - uid: 13577 + - uid: 13519 components: - type: Transform pos: -90.5,23.5 parent: 2 - - uid: 13578 + - uid: 13520 components: - type: Transform pos: -91.5,23.5 parent: 2 - - uid: 13579 + - uid: 13521 components: - type: Transform pos: -92.5,23.5 parent: 2 - - uid: 13580 + - uid: 13522 components: - type: Transform pos: -93.5,23.5 parent: 2 - - uid: 13581 + - uid: 13523 components: - type: Transform pos: -94.5,23.5 parent: 2 - - uid: 13582 + - uid: 13524 components: - type: Transform pos: -95.5,23.5 parent: 2 - - uid: 13583 + - uid: 13525 components: - type: Transform pos: -96.5,23.5 parent: 2 - - uid: 13584 + - uid: 13526 components: - type: Transform pos: -97.5,23.5 parent: 2 - - uid: 13585 + - uid: 13527 components: - type: Transform pos: -98.5,23.5 parent: 2 - - uid: 13586 + - uid: 13528 components: - type: Transform pos: -99.5,23.5 parent: 2 - - uid: 13587 + - uid: 13529 components: - type: Transform pos: -100.5,23.5 parent: 2 - - uid: 13588 + - uid: 13530 components: - type: Transform pos: -101.5,23.5 parent: 2 - - uid: 13589 + - uid: 13531 components: - type: Transform pos: -102.5,23.5 parent: 2 - - uid: 13590 + - uid: 13532 components: - type: Transform pos: -103.5,23.5 parent: 2 - - uid: 13591 + - uid: 13533 components: - type: Transform pos: -104.5,23.5 parent: 2 - - uid: 13592 + - uid: 13534 components: - type: Transform pos: -105.5,23.5 parent: 2 - - uid: 13593 + - uid: 13535 components: - type: Transform pos: -106.5,23.5 parent: 2 - - uid: 13594 + - uid: 13536 components: - type: Transform pos: -107.5,23.5 parent: 2 - - uid: 13595 + - uid: 13537 components: - type: Transform pos: -108.5,23.5 parent: 2 - - uid: 13596 + - uid: 13538 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,0.5 parent: 2 - - uid: 13597 + - uid: 13539 components: - type: Transform pos: 5.5,44.5 parent: 2 - - uid: 13598 + - uid: 13540 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-12.5 parent: 2 - - uid: 13599 + - uid: 13541 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-13.5 parent: 2 - - uid: 13600 + - uid: 13542 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-13.5 parent: 2 - - uid: 13601 + - uid: 13543 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-12.5 parent: 2 - - uid: 13602 + - uid: 13544 components: - type: Transform pos: 8.5,-84.5 parent: 2 - - uid: 13603 + - uid: 13545 components: - type: Transform pos: 9.5,-84.5 parent: 2 - - uid: 13604 + - uid: 13546 components: - type: Transform pos: 10.5,-84.5 parent: 2 - - uid: 13605 + - uid: 13547 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,57.5 parent: 2 - - uid: 13606 + - uid: 13548 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-40.5 parent: 2 - - uid: 13607 + - uid: 13549 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-71.5 parent: 2 - - uid: 13608 + - uid: 13550 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-40.5 parent: 2 - - uid: 13609 + - uid: 13551 components: - type: Transform pos: -70.5,-19.5 parent: 2 - - uid: 13610 + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,42.5 parent: 2 - - uid: 13611 + - uid: 13553 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,26.5 parent: 2 - - uid: 13612 + - uid: 13554 components: - type: Transform pos: 35.5,-3.5 parent: 2 - - uid: 13613 + - uid: 13555 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 13614 + - uid: 13556 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,42.5 parent: 2 - - uid: 13615 + - uid: 13557 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,55.5 parent: 2 - - uid: 13616 + - uid: 13558 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,29.5 parent: 2 - - uid: 13617 + - uid: 13559 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 13618 + - uid: 13560 components: - type: Transform pos: -38.5,-74.5 parent: 2 - - uid: 13619 + - uid: 13561 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,95.5 parent: 2 - - uid: 13620 + - uid: 13562 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-38.5 parent: 2 - - uid: 13621 + - uid: 13563 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-48.5 parent: 2 - - uid: 13622 + - uid: 13564 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 13623 + - uid: 13565 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 13624 + - uid: 13566 components: - type: Transform pos: -36.5,-70.5 parent: 2 - - uid: 13625 + - uid: 13567 components: - type: Transform pos: -27.5,-58.5 parent: 2 - - uid: 13626 + - uid: 13568 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,91.5 parent: 2 - - uid: 13627 + - uid: 13569 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-26.5 parent: 2 - - uid: 13628 + - uid: 13570 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,91.5 parent: 2 - - uid: 13629 + - uid: 13571 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-49.5 parent: 2 - - uid: 13630 + - uid: 13572 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-24.5 parent: 2 - - uid: 13631 + - uid: 13573 components: - type: Transform pos: -31.5,-69.5 parent: 2 - - uid: 13632 + - uid: 13574 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,16.5 parent: 2 - - uid: 13633 + - uid: 13575 components: - type: Transform pos: -10.5,-61.5 parent: 2 - - uid: 13634 + - uid: 13576 components: - type: Transform pos: -11.5,-61.5 parent: 2 - - uid: 13635 + - uid: 13577 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,42.5 parent: 2 - - uid: 13636 + - uid: 13578 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,11.5 parent: 2 - - uid: 13637 + - uid: 13579 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,47.5 parent: 2 - - uid: 13638 + - uid: 13580 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,30.5 parent: 2 - - uid: 13639 + - uid: 13581 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,30.5 parent: 2 - - uid: 13640 + - uid: 13582 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,99.5 parent: 2 - - uid: 13641 + - uid: 13583 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,10.5 parent: 2 - - uid: 13642 + - uid: 13584 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-28.5 parent: 2 - - uid: 13643 + - uid: 13585 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,23.5 parent: 2 - - uid: 13644 + - uid: 13586 components: - type: Transform pos: 33.5,-3.5 parent: 2 - - uid: 13645 + - uid: 13587 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,95.5 parent: 2 - - uid: 13646 + - uid: 13588 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,95.5 parent: 2 - - uid: 13647 + - uid: 13589 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-23.5 parent: 2 - - uid: 13648 + - uid: 13590 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,26.5 parent: 2 - - uid: 13649 + - uid: 13591 components: - type: Transform pos: -17.5,-61.5 parent: 2 - - uid: 13650 + - uid: 13592 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,36.5 parent: 2 - - uid: 13651 + - uid: 13593 components: - type: Transform pos: -27.5,-19.5 parent: 2 - - uid: 13652 + - uid: 13594 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,34.5 parent: 2 - - uid: 13653 + - uid: 13595 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,91.5 parent: 2 - - uid: 13654 + - uid: 13596 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,50.5 parent: 2 - - uid: 13655 + - uid: 13597 components: - type: Transform pos: -27.5,-60.5 parent: 2 - - uid: 13656 + - uid: 13598 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,95.5 parent: 2 - - uid: 13657 + - uid: 13599 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,42.5 parent: 2 - - uid: 13658 + - uid: 13600 components: - type: Transform pos: -31.5,-18.5 parent: 2 - - uid: 13659 + - uid: 13601 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,91.5 parent: 2 - - uid: 13660 + - uid: 13602 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,99.5 parent: 2 - - uid: 13661 + - uid: 13603 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,91.5 parent: 2 - - uid: 13662 + - uid: 13604 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,38.5 parent: 2 - - uid: 13663 + - uid: 13605 components: - type: Transform pos: -9.5,-57.5 parent: 2 - - uid: 13664 + - uid: 13606 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,57.5 parent: 2 - - uid: 13665 + - uid: 13607 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,57.5 parent: 2 - - uid: 13666 + - uid: 13608 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,13.5 parent: 2 - - uid: 13667 + - uid: 13609 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-19.5 parent: 2 - - uid: 13668 + - uid: 13610 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,36.5 parent: 2 - - uid: 13669 + - uid: 13611 components: - type: Transform pos: -23.5,-60.5 parent: 2 - - uid: 13670 + - uid: 13612 components: - type: Transform pos: -15.5,-61.5 parent: 2 - - uid: 13671 + - uid: 13613 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,57.5 parent: 2 - - uid: 13672 + - uid: 13614 components: - type: Transform pos: -24.5,-60.5 parent: 2 - - uid: 13673 + - uid: 13615 components: - type: Transform pos: -38.5,-72.5 parent: 2 - - uid: 13674 + - uid: 13616 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-19.5 parent: 2 - - uid: 13675 + - uid: 13617 components: - type: Transform pos: 34.5,-3.5 parent: 2 - - uid: 13676 + - uid: 13618 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 13677 + - uid: 13619 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,57.5 parent: 2 - - uid: 13678 + - uid: 13620 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,52.5 parent: 2 - - uid: 13679 + - uid: 13621 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-19.5 parent: 2 - - uid: 13680 + - uid: 13622 components: - type: Transform pos: 0.49999997,31.5 parent: 2 - - uid: 13681 + - uid: 13623 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,61.5 parent: 2 - - uid: 13682 + - uid: 13624 components: - type: Transform pos: -27.5,-66.5 parent: 2 - - uid: 13683 + - uid: 13625 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,55.5 parent: 2 - - uid: 13684 + - uid: 13626 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 - - uid: 13685 + - uid: 13627 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 13686 + - uid: 13628 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,17.5 parent: 2 - - uid: 13687 + - uid: 13629 components: - type: Transform pos: -39.5,-74.5 parent: 2 - - uid: 13688 + - uid: 13630 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,57.5 parent: 2 - - uid: 13689 + - uid: 13631 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,57.5 parent: 2 - - uid: 13690 + - uid: 13632 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,91.5 parent: 2 - - uid: 13691 + - uid: 13633 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-28.5 parent: 2 - - uid: 13692 + - uid: 13634 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,17.5 parent: 2 - - uid: 13693 + - uid: 13635 components: - type: Transform pos: -9.5,-60.5 parent: 2 - - uid: 13694 + - uid: 13636 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 - - uid: 13695 + - uid: 13637 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,17.5 parent: 2 - - uid: 13696 + - uid: 13638 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-28.5 parent: 2 - - uid: 13697 + - uid: 13639 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,55.5 parent: 2 - - uid: 13698 + - uid: 13640 components: - type: Transform pos: -8.5,-55.5 parent: 2 - - uid: 13699 + - uid: 13641 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 13700 + - uid: 13642 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,56.5 parent: 2 - - uid: 13701 + - uid: 13643 components: - type: Transform pos: -9.5,-58.5 parent: 2 - - uid: 13702 + - uid: 13644 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 - - uid: 13703 + - uid: 13645 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,27.5 parent: 2 - - uid: 13704 + - uid: 13646 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,51.5 parent: 2 - - uid: 13705 + - uid: 13647 components: - type: Transform pos: -16.5,-61.5 parent: 2 - - uid: 13706 + - uid: 13648 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,95.5 parent: 2 - - uid: 13707 + - uid: 13649 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,35.5 parent: 2 - - uid: 13708 + - uid: 13650 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,41.5 parent: 2 - - uid: 13709 + - uid: 13651 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,95.5 parent: 2 - - uid: 13710 + - uid: 13652 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,95.5 parent: 2 - - uid: 13711 + - uid: 13653 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,95.5 parent: 2 - - uid: 13712 + - uid: 13654 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-22.5 parent: 2 - - uid: 13713 + - uid: 13655 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-27.5 parent: 2 - - uid: 13714 + - uid: 13656 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,29.5 parent: 2 - - uid: 13715 + - uid: 13657 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,43.5 parent: 2 - - uid: 13716 + - uid: 13658 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-28.5 parent: 2 - - uid: 13717 + - uid: 13659 components: - type: Transform pos: -27.5,-59.5 parent: 2 - - uid: 13718 + - uid: 13660 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 - - uid: 13719 + - uid: 13661 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,42.5 parent: 2 - - uid: 13720 + - uid: 13662 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - uid: 13721 + - uid: 13663 components: - type: Transform pos: -33.5,-18.5 parent: 2 - - uid: 13722 + - uid: 13664 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-19.5 parent: 2 - - uid: 13723 + - uid: 13665 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,29.5 parent: 2 - - uid: 13724 + - uid: 13666 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,17.5 parent: 2 - - uid: 13725 + - uid: 13667 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,37.5 parent: 2 - - uid: 13726 + - uid: 13668 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 13727 + - uid: 13669 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,57.5 parent: 2 - - uid: 13728 + - uid: 13670 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,99.5 parent: 2 - - uid: 13729 + - uid: 13671 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-48.5 parent: 2 - - uid: 13730 + - uid: 13672 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-48.5 parent: 2 - - uid: 13731 + - uid: 13673 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-48.5 parent: 2 - - uid: 13732 + - uid: 13674 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-45.5 parent: 2 - - uid: 13733 + - uid: 13675 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-48.5 parent: 2 - - uid: 13734 + - uid: 13676 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-48.5 parent: 2 - - uid: 13735 + - uid: 13677 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-40.5 parent: 2 - - uid: 13736 + - uid: 13678 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-40.5 parent: 2 - - uid: 13737 + - uid: 13679 components: - type: Transform pos: -27.5,-61.5 parent: 2 - - uid: 13738 + - uid: 13680 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-48.5 parent: 2 - - uid: 13739 + - uid: 13681 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,57.5 parent: 2 - - uid: 13740 + - uid: 13682 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 13741 + - uid: 13683 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,57.5 parent: 2 - - uid: 13742 + - uid: 13684 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,28.5 parent: 2 - - uid: 13743 + - uid: 13685 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,95.5 parent: 2 - - uid: 13744 + - uid: 13686 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-28.5 parent: 2 - - uid: 13745 + - uid: 13687 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,30.5 parent: 2 - - uid: 13746 + - uid: 13688 components: - type: Transform pos: -13.5,-61.5 parent: 2 - - uid: 13747 + - uid: 13689 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,29.5 parent: 2 - - uid: 13748 + - uid: 13690 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-21.5 parent: 2 - - uid: 13749 + - uid: 13691 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-19.5 parent: 2 - - uid: 13750 + - uid: 13692 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-25.5 parent: 2 - - uid: 13751 + - uid: 13693 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,99.5 parent: 2 - - uid: 13752 + - uid: 13694 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,48.5 parent: 2 - - uid: 13753 + - uid: 13695 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-28.5 parent: 2 - - uid: 13754 + - uid: 13696 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,99.5 parent: 2 - - uid: 13755 + - uid: 13697 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,30.5 parent: 2 - - uid: 13756 + - uid: 13698 components: - type: Transform pos: -12.5,-61.5 parent: 2 - - uid: 13757 + - uid: 13699 components: - type: Transform pos: -32.5,-18.5 parent: 2 - - uid: 13758 + - uid: 13700 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,91.5 parent: 2 - - uid: 13759 + - uid: 13701 components: - type: Transform pos: -25.5,-60.5 parent: 2 - - uid: 13760 + - uid: 13702 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,54.5 parent: 2 - - uid: 13761 + - uid: 13703 components: - type: Transform pos: -9.5,-59.5 parent: 2 - - uid: 13762 + - uid: 13704 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 13763 + - uid: 13705 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-19.5 parent: 2 - - uid: 13764 + - uid: 13706 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,91.5 parent: 2 - - uid: 13765 + - uid: 13707 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 2 - - uid: 13766 + - uid: 13708 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 13767 + - uid: 13709 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,42.5 parent: 2 - - uid: 13768 + - uid: 13710 components: - type: Transform pos: -71.5,-19.5 parent: 2 - - uid: 13769 + - uid: 13711 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 13770 + - uid: 13712 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-38.5 parent: 2 - - uid: 13771 + - uid: 13713 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-35.5 parent: 2 - - uid: 13772 + - uid: 13714 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-34.5 parent: 2 - - uid: 13773 + - uid: 13715 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-40.5 parent: 2 - - uid: 13774 + - uid: 13716 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-37.5 parent: 2 - - uid: 13775 + - uid: 13717 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-39.5 parent: 2 - - uid: 13776 + - uid: 13718 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-33.5 parent: 2 - - uid: 13777 + - uid: 13719 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-36.5 parent: 2 - - uid: 13778 + - uid: 13720 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,56.5 parent: 2 - - uid: 13779 + - uid: 13721 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,56.5 parent: 2 - - uid: 13780 + - uid: 13722 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,31.5 parent: 2 - - uid: 13781 + - uid: 13723 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 13782 + - uid: 13724 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-70.5 parent: 2 - - uid: 13783 + - uid: 13725 components: - type: Transform pos: -47.5,-33.5 parent: 2 - - uid: 13784 + - uid: 13726 components: - type: Transform pos: -27.5,-17.5 parent: 2 - - uid: 13785 + - uid: 13727 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-70.5 parent: 2 - - uid: 13786 + - uid: 13728 components: - type: Transform pos: -33.5,-69.5 parent: 2 - - uid: 13787 + - uid: 13729 components: - type: Transform pos: -68.5,23.5 parent: 2 - - uid: 13788 + - uid: 13730 components: - type: Transform pos: 30.5,15.5 parent: 2 - - uid: 13789 + - uid: 13731 components: - type: Transform pos: 30.5,14.5 parent: 2 - - uid: 13790 + - uid: 13732 components: - type: Transform pos: -68.5,22.5 parent: 2 - - uid: 13791 + - uid: 13733 components: - type: Transform pos: -68.5,24.5 parent: 2 - - uid: 13792 + - uid: 13734 components: - type: Transform pos: -68.5,25.5 parent: 2 - - uid: 13793 + - uid: 13735 components: - type: Transform pos: -69.5,25.5 parent: 2 - - uid: 13794 + - uid: 13736 components: - type: Transform pos: -70.5,25.5 parent: 2 - - uid: 13795 + - uid: 13737 components: - type: Transform pos: -71.5,25.5 parent: 2 - - uid: 13796 + - uid: 13738 components: - type: Transform pos: -71.5,24.5 parent: 2 - - uid: 13797 + - uid: 13739 components: - type: Transform pos: -71.5,23.5 parent: 2 - - uid: 13798 + - uid: 13740 components: - type: Transform pos: -71.5,22.5 parent: 2 - - uid: 13799 + - uid: 13741 components: - type: Transform pos: -74.5,26.5 parent: 2 - - uid: 13800 + - uid: 13742 components: - type: Transform pos: -74.5,27.5 parent: 2 - - uid: 13801 + - uid: 13743 components: - type: Transform pos: -68.5,21.5 parent: 2 - - uid: 13802 + - uid: 13744 components: - type: Transform pos: -74.5,28.5 parent: 2 - - uid: 13803 + - uid: 13745 components: - type: Transform pos: -74.5,29.5 parent: 2 - - uid: 13804 + - uid: 13746 components: - type: Transform pos: -68.5,26.5 parent: 2 - - uid: 13805 + - uid: 13747 components: - type: Transform pos: -68.5,27.5 parent: 2 - - uid: 13806 + - uid: 13748 components: - type: Transform pos: -68.5,28.5 parent: 2 - - uid: 13807 + - uid: 13749 components: - type: Transform pos: -68.5,29.5 parent: 2 - - uid: 13808 + - uid: 13750 components: - type: Transform pos: -68.5,30.5 parent: 2 - - uid: 13809 + - uid: 13751 components: - type: Transform pos: -68.5,31.5 parent: 2 - - uid: 13810 + - uid: 13752 components: - type: Transform pos: -74.5,30.5 parent: 2 - - uid: 13811 + - uid: 13753 components: - type: Transform pos: -74.5,31.5 parent: 2 - - uid: 13812 + - uid: 13754 components: - type: Transform pos: -74.5,32.5 parent: 2 - - uid: 13813 + - uid: 13755 components: - type: Transform pos: -74.5,34.5 parent: 2 - - uid: 13814 + - uid: 13756 components: - type: Transform pos: -74.5,35.5 parent: 2 - - uid: 13815 + - uid: 13757 components: - type: Transform pos: -74.5,33.5 parent: 2 - - uid: 13816 + - uid: 13758 components: - type: Transform pos: -68.5,32.5 parent: 2 - - uid: 13817 + - uid: 13759 components: - type: Transform pos: -68.5,33.5 parent: 2 - - uid: 13818 + - uid: 13760 components: - type: Transform pos: -68.5,35.5 parent: 2 - - uid: 13819 + - uid: 13761 components: - type: Transform pos: -68.5,34.5 parent: 2 - - uid: 13820 + - uid: 13762 components: - type: Transform pos: -68.5,36.5 parent: 2 - - uid: 13821 + - uid: 13763 components: - type: Transform pos: -68.5,37.5 parent: 2 - - uid: 13822 + - uid: 13764 components: - type: Transform pos: -68.5,38.5 parent: 2 - - uid: 13823 + - uid: 13765 components: - type: Transform pos: -68.5,39.5 parent: 2 - - uid: 13824 + - uid: 13766 components: - type: Transform pos: -74.5,36.5 parent: 2 - - uid: 13825 + - uid: 13767 components: - type: Transform pos: -74.5,37.5 parent: 2 - - uid: 13826 + - uid: 13768 components: - type: Transform pos: -74.5,38.5 parent: 2 - - uid: 13827 + - uid: 13769 components: - type: Transform pos: -74.5,39.5 parent: 2 - - uid: 13828 + - uid: 13770 components: - type: Transform pos: -68.5,40.5 parent: 2 - - uid: 13829 + - uid: 13771 components: - type: Transform pos: -68.5,41.5 parent: 2 - - uid: 13830 + - uid: 13772 components: - type: Transform pos: -68.5,42.5 parent: 2 - - uid: 13831 + - uid: 13773 components: - type: Transform pos: -68.5,43.5 parent: 2 - - uid: 13832 + - uid: 13774 components: - type: Transform pos: -74.5,40.5 parent: 2 - - uid: 13833 + - uid: 13775 components: - type: Transform pos: -74.5,41.5 parent: 2 - - uid: 13834 + - uid: 13776 components: - type: Transform pos: -74.5,42.5 parent: 2 - - uid: 13835 + - uid: 13777 components: - type: Transform pos: -74.5,43.5 parent: 2 - - uid: 13836 + - uid: 13778 components: - type: Transform pos: -74.5,44.5 parent: 2 - - uid: 13837 + - uid: 13779 components: - type: Transform pos: -68.5,44.5 parent: 2 - - uid: 13838 + - uid: 13780 components: - type: Transform pos: -68.5,45.5 parent: 2 - - uid: 13839 + - uid: 13781 components: - type: Transform pos: -74.5,45.5 parent: 2 - - uid: 13840 + - uid: 13782 components: - type: Transform pos: -74.5,46.5 parent: 2 - - uid: 13841 + - uid: 13783 components: - type: Transform pos: -74.5,47.5 parent: 2 - - uid: 13842 + - uid: 13784 components: - type: Transform pos: -74.5,48.5 parent: 2 - - uid: 13843 + - uid: 13785 components: - type: Transform pos: -68.5,46.5 parent: 2 - - uid: 13844 + - uid: 13786 components: - type: Transform pos: -68.5,47.5 parent: 2 - - uid: 13845 + - uid: 13787 components: - type: Transform pos: -68.5,48.5 parent: 2 - - uid: 13846 + - uid: 13788 components: - type: Transform pos: -68.5,49.5 parent: 2 - - uid: 13847 + - uid: 13789 components: - type: Transform pos: -68.5,50.5 parent: 2 - - uid: 13848 + - uid: 13790 components: - type: Transform pos: -68.5,51.5 parent: 2 - - uid: 13849 + - uid: 13791 components: - type: Transform pos: -74.5,49.5 parent: 2 - - uid: 13850 + - uid: 13792 components: - type: Transform pos: -74.5,50.5 parent: 2 - - uid: 13851 + - uid: 13793 components: - type: Transform pos: -74.5,51.5 parent: 2 - - uid: 13852 + - uid: 13794 components: - type: Transform pos: -74.5,52.5 parent: 2 - - uid: 13853 + - uid: 13795 components: - type: Transform pos: -73.5,52.5 parent: 2 - - uid: 13854 + - uid: 13796 components: - type: Transform pos: -68.5,52.5 parent: 2 - - uid: 13855 + - uid: 13797 components: - type: Transform pos: -1.5,31.5 parent: 2 - - uid: 13856 + - uid: 13798 components: - type: Transform pos: -0.5,31.5 parent: 2 - - uid: 13857 + - uid: 13799 components: - type: Transform pos: 0.49999997,32.5 parent: 2 - - uid: 13858 + - uid: 13800 components: - type: Transform pos: -2.5,30.5 parent: 2 - - uid: 13859 + - uid: 13801 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,0.5 parent: 2 - - uid: 13860 + - uid: 13802 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-0.5 parent: 2 - - uid: 13861 + - uid: 13803 components: - type: Transform pos: -23.5,17.5 parent: 2 - - uid: 13862 + - uid: 13804 components: - type: Transform pos: -21.5,17.5 parent: 2 - - uid: 13863 + - uid: 13805 components: - type: Transform pos: -22.5,17.5 parent: 2 - - uid: 13864 + - uid: 13806 components: - type: Transform pos: -24.5,26.5 parent: 2 - - uid: 13865 + - uid: 13807 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 - - uid: 13866 + - uid: 13808 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-3.5 parent: 2 - - uid: 13867 + - uid: 13809 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-3.5 parent: 2 - - uid: 13868 + - uid: 13810 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-2.5 parent: 2 - - uid: 13869 + - uid: 13811 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-2.5 parent: 2 - - uid: 13870 + - uid: 13812 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-3.5 parent: 2 - - uid: 13871 + - uid: 13813 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-1.5 parent: 2 - - uid: 13872 + - uid: 13814 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-1.5 parent: 2 - - uid: 13873 + - uid: 13815 components: - type: Transform pos: 30.5,23.5 parent: 2 - - uid: 13874 + - uid: 13816 components: - type: Transform pos: 30.5,24.5 parent: 2 - - uid: 13875 + - uid: 13817 components: - type: Transform pos: 29.5,24.5 parent: 2 - - uid: 13876 + - uid: 13818 components: - type: Transform pos: 28.5,24.5 parent: 2 - - uid: 13877 + - uid: 13819 components: - type: Transform pos: 27.5,24.5 parent: 2 - - uid: 13878 + - uid: 13820 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-8.5 parent: 2 - - uid: 13879 + - uid: 13821 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-11.5 parent: 2 - - uid: 13880 + - uid: 13822 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-35.5 parent: 2 - - uid: 13881 + - uid: 13823 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-7.5 parent: 2 - - uid: 13882 + - uid: 13824 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-10.5 parent: 2 - - uid: 13883 + - uid: 13825 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-34.5 parent: 2 - - uid: 13884 + - uid: 13826 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-9.5 parent: 2 - - uid: 13885 + - uid: 13827 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-7.5 parent: 2 - - uid: 13886 + - uid: 13828 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-6.5 parent: 2 - - uid: 13887 + - uid: 13829 components: - type: Transform pos: -54.5,-51.5 parent: 2 - - uid: 13888 + - uid: 13830 components: - type: Transform pos: -55.5,-52.5 parent: 2 - - uid: 13889 + - uid: 13831 components: - type: Transform pos: -57.5,-52.5 parent: 2 - - uid: 13890 + - uid: 13832 components: - type: Transform pos: -56.5,-52.5 parent: 2 - - uid: 13891 + - uid: 13833 components: - type: Transform pos: -58.5,-52.5 parent: 2 - - uid: 13892 + - uid: 13834 components: - type: Transform pos: -59.5,-52.5 parent: 2 - - uid: 13893 + - uid: 13835 components: - type: Transform pos: -60.5,-52.5 parent: 2 - - uid: 13894 + - uid: 13836 components: - type: Transform pos: -61.5,-52.5 parent: 2 - - uid: 13895 + - uid: 13837 components: - type: Transform pos: -61.5,-51.5 parent: 2 - - uid: 13896 + - uid: 13838 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-55.5 parent: 2 - - uid: 13897 + - uid: 13839 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-55.5 parent: 2 - - uid: 13898 + - uid: 13840 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-55.5 parent: 2 - - uid: 13899 + - uid: 13841 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-1.5 parent: 2 - - uid: 13900 + - uid: 13842 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-38.5 parent: 2 - - uid: 13901 + - uid: 13843 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-39.5 parent: 2 - - uid: 13902 + - uid: 13844 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,43.5 parent: 2 - - uid: 13903 + - uid: 13845 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 13904 + - uid: 13846 components: - type: Transform pos: 11.5,-1.5 parent: 2 - - uid: 13905 + - uid: 13847 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 25024 + - uid: 13848 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-24.5 parent: 2 - - uid: 31896 + - uid: 13849 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 - - uid: 34520 + - uid: 13850 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-29.5 parent: 2 - - uid: 34831 + - uid: 13851 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-27.5 parent: 2 - - uid: 39054 + - uid: 38881 components: - type: Transform pos: -4.5,27.5 - parent: 38584 - - uid: 39055 + parent: 38411 + - uid: 38882 components: - type: Transform pos: -6.5,26.5 - parent: 38584 - - uid: 39056 + parent: 38411 + - uid: 38883 components: - type: Transform pos: -6.5,28.5 - parent: 38584 - - uid: 39057 + parent: 38411 + - uid: 38884 components: - type: Transform pos: -5.5,28.5 - parent: 38584 - - uid: 39058 + parent: 38411 + - uid: 38885 components: - type: Transform pos: -4.5,30.5 - parent: 38584 - - uid: 39059 + parent: 38411 + - uid: 38886 components: - type: Transform pos: -6.5,29.5 - parent: 38584 - - uid: 39060 + parent: 38411 + - uid: 38887 components: - type: Transform pos: -5.5,27.5 - parent: 38584 - - uid: 39061 + parent: 38411 + - uid: 38888 components: - type: Transform pos: -2.5,22.5 - parent: 38584 - - uid: 39062 + parent: 38411 + - uid: 38889 components: - type: Transform pos: -1.5,22.5 - parent: 38584 - - uid: 39063 + parent: 38411 + - uid: 38890 components: - type: Transform pos: 0.5,17.5 - parent: 38584 - - uid: 39064 + parent: 38411 + - uid: 38891 components: - type: Transform pos: -6.5,25.5 - parent: 38584 - - uid: 39065 + parent: 38411 + - uid: 38892 components: - type: Transform pos: -22.5,25.5 - parent: 38584 - - uid: 39066 + parent: 38411 + - uid: 38893 components: - type: Transform pos: -21.5,25.5 - parent: 38584 - - uid: 39067 + parent: 38411 + - uid: 38894 components: - type: Transform pos: -8.5,15.5 - parent: 38584 - - uid: 39068 + parent: 38411 + - uid: 38895 components: - type: Transform pos: 0.5,16.5 - parent: 38584 - - uid: 39069 + parent: 38411 + - uid: 38896 components: - type: Transform pos: -8.5,14.5 - parent: 38584 - - uid: 39070 + parent: 38411 + - uid: 38897 components: - type: Transform pos: -5.5,26.5 - parent: 38584 - - uid: 39071 + parent: 38411 + - uid: 38898 components: - type: Transform pos: -5.5,34.5 - parent: 38584 - - uid: 39072 + parent: 38411 + - uid: 38899 components: - type: Transform pos: -10.5,34.5 - parent: 38584 - - uid: 39073 + parent: 38411 + - uid: 38900 components: - type: Transform pos: -8.5,34.5 - parent: 38584 - - uid: 39074 + parent: 38411 + - uid: 38901 components: - type: Transform pos: -8.5,30.5 - parent: 38584 - - uid: 39075 + parent: 38411 + - uid: 38902 components: - type: Transform pos: -6.5,34.5 - parent: 38584 - - uid: 39076 + parent: 38411 + - uid: 38903 components: - type: Transform pos: 8.5,7.5 - parent: 38584 - - uid: 39077 + parent: 38411 + - uid: 38904 components: - type: Transform pos: 9.5,6.5 - parent: 38584 - - uid: 39078 + parent: 38411 + - uid: 38905 components: - type: Transform pos: 9.5,7.5 - parent: 38584 - - uid: 39079 + parent: 38411 + - uid: 38906 components: - type: Transform pos: 8.5,6.5 - parent: 38584 - - uid: 39080 + parent: 38411 + - uid: 38907 components: - type: Transform pos: 10.5,7.5 - parent: 38584 - - uid: 39081 + parent: 38411 + - uid: 38908 components: - type: Transform pos: 10.5,6.5 - parent: 38584 - - uid: 39082 + parent: 38411 + - uid: 38909 components: - type: Transform pos: 11.5,7.5 - parent: 38584 - - uid: 39083 + parent: 38411 + - uid: 38910 components: - type: Transform pos: -6.5,35.5 - parent: 38584 + parent: 38411 - proto: Chair entities: - - uid: 13906 + - uid: 13852 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,31.5 parent: 2 - - uid: 13907 + - uid: 13853 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,32.5 parent: 2 - - uid: 13908 + - uid: 13854 components: - type: Transform pos: 57.5,-14.5 parent: 2 - - uid: 13909 + - uid: 13855 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-25.5 parent: 2 - - uid: 13910 + - uid: 13856 components: - type: Transform pos: 60.5,-15.5 parent: 2 - - uid: 13911 + - uid: 13857 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,22.5 parent: 2 - - uid: 13912 + - uid: 13858 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,23.5 parent: 2 - - uid: 13913 + - uid: 13859 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,89.5 parent: 2 - - uid: 13914 + - uid: 13860 components: - type: Transform pos: -31.5,69.5 parent: 2 - - uid: 13915 + - uid: 13861 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,66.5 parent: 2 - - uid: 13916 + - uid: 13862 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,81.5 parent: 2 - - uid: 13917 + - uid: 13863 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,81.5 parent: 2 - - uid: 13918 + - uid: 13864 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,91.5 parent: 2 - - uid: 13919 + - uid: 13865 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,80.5 parent: 2 - - uid: 13920 + - uid: 13866 components: - type: Transform pos: 58.5,-14.5 parent: 2 - - uid: 13921 + - uid: 13867 components: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 13922 + - uid: 13868 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 13923 + - uid: 13869 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-27.5 parent: 2 - - uid: 13924 + - uid: 13870 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-28.5 parent: 2 - - uid: 13925 + - uid: 13871 components: - type: Transform pos: -48.5,33.5 parent: 2 - - uid: 13926 + - uid: 13872 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,28.5 parent: 2 - - uid: 13927 + - uid: 13873 components: - type: Transform pos: 58.5,-14.5 parent: 2 - - uid: 13928 + - uid: 13874 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,29.5 parent: 2 - - uid: 13929 + - uid: 13875 components: - type: Transform pos: -47.5,33.5 parent: 2 - - uid: 13930 + - uid: 13876 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 - - uid: 13931 + - uid: 13877 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-73.5 parent: 2 - - uid: 13932 + - uid: 13878 components: - type: Transform pos: -4.5,-67.5 parent: 2 - - uid: 13933 + - uid: 13879 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,7.5 parent: 2 - - uid: 13934 + - uid: 13880 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-27.5 parent: 2 - - uid: 13935 + - uid: 13881 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,80.5 parent: 2 - - uid: 13936 + - uid: 13882 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,80.5 parent: 2 - - uid: 13937 + - uid: 13883 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-42.5 parent: 2 - - uid: 13938 + - uid: 13884 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,81.5 parent: 2 - - uid: 13939 + - uid: 13885 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-28.5 parent: 2 - - uid: 13940 + - uid: 13886 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-67.5 parent: 2 - - uid: 13942 + - uid: 13887 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,81.5 parent: 2 - - uid: 13943 + - uid: 13888 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 parent: 2 - - uid: 13944 + - uid: 13889 components: - type: Transform pos: -22.5,-38.5 parent: 2 - - uid: 13945 + - uid: 13890 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,19.5 parent: 2 - - uid: 13946 + - uid: 13891 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,89.5 parent: 2 - - uid: 13947 + - uid: 13892 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,17.5 parent: 2 - - uid: 13948 + - uid: 13893 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,24.5 parent: 2 - - uid: 13949 + - uid: 13894 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,22.5 parent: 2 - - uid: 13950 + - uid: 13895 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,24.5 parent: 2 - - uid: 13951 + - uid: 13896 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,24.5 parent: 2 - - uid: 13952 + - uid: 13897 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 13953 + - uid: 13898 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-66.5 parent: 2 - - uid: 13954 + - uid: 13899 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,80.5 parent: 2 - - uid: 13955 + - uid: 13900 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-40.5 parent: 2 - - uid: 13956 + - uid: 13901 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-71.5 parent: 2 - - uid: 13957 + - uid: 13902 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,47.5 parent: 2 - - uid: 13958 + - uid: 13903 components: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 13959 + - uid: 13904 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 - - uid: 13960 + - uid: 13905 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-4.5 parent: 2 - - uid: 13961 + - uid: 13906 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-68.5 parent: 2 - - uid: 13962 + - uid: 13907 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-7.5 parent: 2 - - uid: 13963 + - uid: 13908 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,4.5 parent: 2 - - uid: 13964 + - uid: 13909 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 - - uid: 13965 + - uid: 13910 components: - type: Transform pos: -56.5,13.5 parent: 2 - - uid: 13966 + - uid: 13911 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-6.5 parent: 2 - - uid: 13967 + - uid: 13912 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-65.5 parent: 2 - - uid: 13968 + - uid: 13913 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,79.5 parent: 2 - - uid: 13969 + - uid: 13914 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-13.5 parent: 2 - - uid: 13970 + - uid: 13915 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,89.5 parent: 2 - - uid: 13971 + - uid: 13916 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,88.5 parent: 2 - - uid: 13972 + - uid: 13917 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-66.5 parent: 2 - - uid: 13974 + - uid: 13918 components: - type: Transform pos: -55.5,13.5 parent: 2 - - uid: 13975 + - uid: 13919 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,11.5 parent: 2 - - uid: 13976 + - uid: 13920 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,11.5 parent: 2 - - uid: 13977 + - uid: 13921 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,11.5 parent: 2 - - uid: 13978 + - uid: 13922 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-40.5 parent: 2 - - uid: 13979 + - uid: 13923 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,22.5 parent: 2 - - uid: 13980 + - uid: 13924 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,22.5 parent: 2 - - uid: 13981 + - uid: 13925 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,11.5 parent: 2 - - uid: 13983 + - uid: 13926 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-24.5 parent: 2 - - uid: 13984 + - uid: 13927 components: - type: Transform pos: 34.5,-43.5 parent: 2 - - uid: 13985 + - uid: 13928 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-2.5 parent: 2 - - uid: 13986 + - uid: 13929 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,1.5 parent: 2 - - uid: 13987 + - uid: 13930 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-71.5 parent: 2 - - uid: 13988 + - uid: 13931 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,62.5 parent: 2 - - uid: 13989 + - uid: 13932 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,64.5 parent: 2 - - uid: 13990 + - uid: 13933 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-72.5 parent: 2 - - uid: 13991 + - uid: 13934 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 13992 + - uid: 13935 components: - type: Transform pos: -52.5,13.5 parent: 2 - - uid: 13993 + - uid: 13936 components: - type: Transform pos: -53.5,13.5 parent: 2 - - uid: 13994 + - uid: 13937 components: - type: Transform pos: -11.5,-22.5 parent: 2 - - uid: 13995 + - uid: 13938 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 - - uid: 13996 + - uid: 13939 components: - type: Transform pos: -51.5,13.5 parent: 2 - - uid: 13997 + - uid: 13940 components: - type: Transform pos: -14.5,-22.5 parent: 2 - - uid: 13998 + - uid: 13941 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,30.5 parent: 2 - - uid: 13999 + - uid: 13942 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-72.5 parent: 2 - - uid: 14000 + - uid: 13943 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-79.5 parent: 2 - - uid: 14001 + - uid: 13944 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,87.5 parent: 2 - - uid: 14002 + - uid: 13945 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,91.5 parent: 2 - - uid: 14003 + - uid: 13946 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,89.5 parent: 2 - - uid: 14004 + - uid: 13947 components: - type: Transform pos: 75.5,28.5 parent: 2 - - uid: 14005 + - uid: 13948 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 - - uid: 14006 + - uid: 13949 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 - - uid: 14007 + - uid: 13950 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-70.5 parent: 2 - - uid: 14008 + - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,11.5 parent: 2 - - uid: 14009 + - uid: 13952 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-80.5 parent: 2 - - uid: 14010 + - uid: 13953 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,11.5 parent: 2 - - uid: 14011 + - uid: 13954 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-16.5 parent: 2 - - uid: 14012 + - uid: 13955 components: - type: Transform pos: 13.5,-22.5 parent: 2 - - uid: 14013 + - uid: 13956 components: - type: Transform pos: 25.5,1.5 parent: 2 - - uid: 14014 + - uid: 13957 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-48.5 parent: 2 - - uid: 14015 + - uid: 13958 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-45.5 parent: 2 - - uid: 14016 + - uid: 13959 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,0.5 parent: 2 - - uid: 14017 + - uid: 13960 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-66.5 parent: 2 - - uid: 14018 + - uid: 13961 components: - type: Transform pos: 74.5,-38.5 parent: 2 - - uid: 14019 + - uid: 13962 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 14020 + - uid: 13963 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 - - uid: 14021 + - uid: 13964 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,2.5 parent: 2 - - uid: 14022 + - uid: 13965 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-4.5 parent: 2 - - uid: 14023 + - uid: 13966 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-5.5 parent: 2 - - uid: 14024 + - uid: 13967 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 - - uid: 14025 + - uid: 13968 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-0.5 parent: 2 - - uid: 14026 + - uid: 13969 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-44.5 parent: 2 - - uid: 14027 + - uid: 13970 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-72.5 parent: 2 - - uid: 14028 + - uid: 13971 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,0.5 parent: 2 - - uid: 14029 + - uid: 13972 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 - - uid: 14030 + - uid: 13973 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-0.5 parent: 2 - - uid: 14031 + - uid: 13974 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,46.5 parent: 2 - - uid: 14032 + - uid: 13975 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,46.5 parent: 2 - - uid: 14033 + - uid: 13976 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-6.5 parent: 2 - - uid: 14034 + - uid: 13977 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-6.5 parent: 2 - - uid: 14035 + - uid: 13978 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,46.5 parent: 2 - - uid: 14036 + - uid: 13979 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 14037 + - uid: 13980 components: - type: Transform pos: 7.5,49.5 parent: 2 - - uid: 14038 + - uid: 13981 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-7.5 parent: 2 - - uid: 14039 + - uid: 13982 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-65.5 parent: 2 - - uid: 14040 + - uid: 13983 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,12.5 parent: 2 - - uid: 14041 + - uid: 13984 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-15.5 parent: 2 - - uid: 14042 + - uid: 13985 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-14.5 parent: 2 - - uid: 14043 + - uid: 13986 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-72.5 parent: 2 - - uid: 14044 + - uid: 13987 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-65.5 parent: 2 - - uid: 14045 + - uid: 13988 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-73.5 parent: 2 - - uid: 14046 + - uid: 13989 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-69.5 parent: 2 - - uid: 14047 + - uid: 13990 components: - type: Transform pos: 29.5,2.5 parent: 2 - - uid: 14048 + - uid: 13991 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,91.5 parent: 2 - - uid: 14049 + - uid: 13992 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,63.5 parent: 2 - - uid: 14050 + - uid: 13993 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-65.5 parent: 2 - - uid: 14051 + - uid: 13994 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-4.5 parent: 2 - - uid: 14052 + - uid: 13995 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,63.5 parent: 2 - - uid: 14053 + - uid: 13996 components: - type: Transform pos: -5.5,-67.5 parent: 2 - - uid: 14054 + - uid: 13997 components: - type: Transform pos: -54.5,13.5 parent: 2 - - uid: 14055 + - uid: 13998 components: - type: Transform pos: 10.5,-22.5 parent: 2 - - uid: 14056 + - uid: 13999 components: - type: Transform pos: 6.5,-22.5 parent: 2 - - uid: 14057 + - uid: 14000 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,77.5 parent: 2 - - uid: 14058 + - uid: 14001 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-49.5 parent: 2 - - uid: 14059 + - uid: 14002 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,9.5 parent: 2 - - uid: 14060 + - uid: 14003 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 - - uid: 14061 + - uid: 14004 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-26.5 parent: 2 - - uid: 14062 + - uid: 14005 components: - type: Transform pos: -39.5,-8.5 parent: 2 - - uid: 14063 + - uid: 14006 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 - - uid: 14064 + - uid: 14007 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 14065 + - uid: 14008 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,78.5 parent: 2 - - uid: 14066 + - uid: 14009 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,1.5 parent: 2 - - uid: 14067 + - uid: 14010 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,22.5 parent: 2 - - uid: 14068 + - uid: 14011 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,61.5 parent: 2 - - uid: 14069 + - uid: 14012 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,8.5 parent: 2 - - uid: 14070 + - uid: 14013 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-44.5 parent: 2 - - uid: 14071 + - uid: 14014 components: - type: Transform pos: 3.5,-22.5 parent: 2 - - uid: 14072 + - uid: 14015 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-74.5 parent: 2 - - uid: 14073 + - uid: 14016 components: - type: Transform pos: 10.5,-76.5 parent: 2 - - uid: 14074 + - uid: 14017 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-71.5 parent: 2 - - uid: 14075 + - uid: 14018 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-71.5 parent: 2 - - uid: 14076 + - uid: 14019 components: - type: Transform pos: -5.5,-63.5 parent: 2 - - uid: 14077 + - uid: 14020 components: - type: Transform pos: -6.5,-63.5 parent: 2 - - uid: 14078 + - uid: 14021 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 - - uid: 14079 + - uid: 14022 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 - - uid: 14080 + - uid: 14023 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-68.5 parent: 2 - - uid: 14081 + - uid: 14024 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-69.5 parent: 2 - - uid: 14082 + - uid: 14025 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-71.5 parent: 2 - - uid: 14083 + - uid: 14026 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-70.5 parent: 2 - - uid: 14084 + - uid: 14027 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - - uid: 14085 + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-81.5 parent: 2 - - uid: 14086 + - uid: 14029 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-81.5 parent: 2 - - uid: 14087 + - uid: 14030 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-81.5 parent: 2 - - uid: 14088 + - uid: 14031 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-26.5 parent: 2 - - uid: 14089 + - uid: 14032 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-77.5 parent: 2 - - uid: 14090 + - uid: 14033 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 - - uid: 14091 + - uid: 14034 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-77.5 parent: 2 - - uid: 14092 + - uid: 14035 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-77.5 parent: 2 - - uid: 14093 + - uid: 14036 components: - type: Transform pos: 30.5,-44.5 parent: 2 - - uid: 14094 + - uid: 14037 components: - type: Transform pos: 32.5,-44.5 parent: 2 - - uid: 14095 + - uid: 14038 components: - type: Transform pos: 33.5,-44.5 parent: 2 - - uid: 14096 + - uid: 14039 components: - type: Transform pos: 31.5,-44.5 parent: 2 - - uid: 14097 + - uid: 14040 components: - type: Transform pos: 34.5,-44.5 parent: 2 - - uid: 14098 + - uid: 14041 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,18.5 parent: 2 - - uid: 14099 + - uid: 14042 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,19.5 parent: 2 - - uid: 14100 + - uid: 14043 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,18.5 parent: 2 - - uid: 14101 + - uid: 14044 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,20.5 parent: 2 - - uid: 14102 + - uid: 14045 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,20.5 parent: 2 - - uid: 14103 + - uid: 14046 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,19.5 parent: 2 - - uid: 14104 + - uid: 14047 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,18.5 parent: 2 - - uid: 14105 + - uid: 14048 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,12.5 parent: 2 - - uid: 14106 + - uid: 14049 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,12.5 parent: 2 - - uid: 14107 + - uid: 14050 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,12.5 parent: 2 - - uid: 14108 + - uid: 14051 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,12.5 parent: 2 - - uid: 14109 + - uid: 14052 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,12.5 parent: 2 - - uid: 14110 + - uid: 14053 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,19.5 parent: 2 - - uid: 14111 + - uid: 14054 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,18.5 parent: 2 - - uid: 14112 + - uid: 14055 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,17.5 parent: 2 - - uid: 14113 + - uid: 14056 components: - type: Transform pos: 58.5,-11.5 parent: 2 - - uid: 14114 + - uid: 14057 components: - type: Transform pos: 60.5,-11.5 parent: 2 - - uid: 14115 + - uid: 14058 components: - type: Transform pos: -12.5,59.5 parent: 2 - - uid: 14116 + - uid: 14059 components: - type: Transform pos: -10.5,59.5 parent: 2 - - uid: 14117 + - uid: 14060 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,66.5 parent: 2 - - uid: 14118 + - uid: 14061 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,66.5 parent: 2 - - uid: 14119 + - uid: 14062 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,89.5 parent: 2 - - uid: 14120 + - uid: 14063 components: - type: Transform pos: 7.5,85.5 parent: 2 - - uid: 14121 + - uid: 14064 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,83.5 parent: 2 - - uid: 14122 + - uid: 14065 components: - type: Transform pos: -11.5,59.5 parent: 2 - - uid: 14123 + - uid: 14066 components: - type: Transform pos: -10.5,59.5 parent: 2 - - uid: 14124 + - uid: 14067 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,66.5 parent: 2 - - uid: 14125 + - uid: 14068 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,91.5 parent: 2 - - uid: 14126 + - uid: 14069 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,67.5 parent: 2 - - uid: 14127 + - uid: 14070 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-24.5 parent: 2 - - uid: 14128 + - uid: 14071 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-24.5 parent: 2 - - uid: 14129 + - uid: 14072 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-24.5 parent: 2 - - uid: 14130 + - uid: 14073 components: - type: Transform pos: 57.5,-12.5 parent: 2 - - uid: 14131 + - uid: 14074 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-28.5 parent: 2 - - uid: 14132 + - uid: 14075 components: - type: Transform pos: 61.5,-12.5 parent: 2 - - uid: 14133 + - uid: 14076 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-28.5 parent: 2 - - uid: 14134 + - uid: 14077 components: - type: Transform pos: 59.5,-15.5 parent: 2 - - uid: 14135 + - uid: 14078 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,61.5 parent: 2 - - uid: 14136 + - uid: 14079 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-25.5 parent: 2 - - uid: 14137 + - uid: 14080 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-27.5 parent: 2 - - uid: 14138 + - uid: 14081 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-25.5 parent: 2 - - uid: 14139 + - uid: 14082 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-27.5 parent: 2 - - uid: 14140 + - uid: 14083 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,61.5 parent: 2 - - uid: 14141 + - uid: 14084 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,64.5 parent: 2 - - uid: 14142 + - uid: 14085 components: - type: Transform pos: 60.5,-15.5 parent: 2 - - uid: 14143 + - uid: 14086 components: - type: Transform pos: 59.5,-11.5 parent: 2 - - uid: 14144 + - uid: 14087 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-27.5 parent: 2 - - uid: 14145 + - uid: 14088 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-27.5 parent: 2 - - uid: 14146 + - uid: 14089 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-25.5 parent: 2 - - uid: 14147 + - uid: 14090 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-25.5 parent: 2 - - uid: 14148 + - uid: 14091 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-25.5 parent: 2 - - uid: 14149 + - uid: 14092 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-25.5 parent: 2 - - uid: 14150 + - uid: 14093 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-24.5 parent: 2 - - uid: 14151 + - uid: 14094 components: - type: Transform pos: 58.5,-15.5 parent: 2 - - uid: 14152 + - uid: 14095 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 14153 + - uid: 14096 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-25.5 parent: 2 - - uid: 14154 + - uid: 14097 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 14155 + - uid: 14098 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-26.5 parent: 2 - - uid: 14156 + - uid: 14099 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-26.5 parent: 2 - - uid: 14157 + - uid: 14100 components: - type: Transform pos: 58.5,-12.5 parent: 2 - - uid: 14158 + - uid: 14101 components: - type: Transform pos: 61.5,-14.5 parent: 2 - - uid: 14159 + - uid: 14102 components: - type: Transform pos: 60.5,-13.5 parent: 2 - - uid: 14160 + - uid: 14103 components: - type: Transform pos: 61.5,-14.5 parent: 2 - - uid: 14161 + - uid: 14104 components: - type: Transform pos: 57.5,-13.5 parent: 2 - - uid: 14162 + - uid: 14105 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 14163 + - uid: 14106 components: - type: Transform pos: 61.5,-13.5 parent: 2 - - uid: 14164 + - uid: 14107 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-26.5 parent: 2 - - uid: 14165 + - uid: 14108 components: - type: Transform pos: 58.5,-13.5 parent: 2 - - uid: 14166 + - uid: 14109 components: - type: Transform pos: 59.5,-13.5 parent: 2 - - uid: 14167 + - uid: 14110 components: - type: Transform pos: 60.5,-12.5 parent: 2 - - uid: 14168 + - uid: 14111 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 14169 + - uid: 14112 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,63.5 parent: 2 - - uid: 14170 + - uid: 14113 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-26.5 parent: 2 - - uid: 14171 + - uid: 14114 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,64.5 parent: 2 - - uid: 14172 + - uid: 14115 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,62.5 parent: 2 - - uid: 14173 + - uid: 14116 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,62.5 parent: 2 - - uid: 14174 + - uid: 14117 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 - - uid: 14175 + - uid: 14118 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,26.5 parent: 2 - - uid: 14176 + - uid: 14119 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,26.5 parent: 2 - - uid: 14177 + - uid: 14120 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,26.5 parent: 2 - - uid: 14178 + - uid: 14121 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,24.5 parent: 2 - - uid: 14179 + - uid: 14122 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,26.5 parent: 2 - - uid: 14180 + - uid: 14123 components: - type: Transform rot: -1.5707963267948966 rad @@ -111145,7 +111150,7 @@ entities: parent: 2 - proto: ChairBrass entities: - - uid: 14181 + - uid: 14124 components: - type: Transform rot: 3.141592653589793 rad @@ -111153,182 +111158,182 @@ entities: parent: 2 - proto: ChairCarp entities: - - uid: 9967 + - uid: 14125 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-24.5 parent: 2 - - uid: 9968 + - uid: 14126 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-24.5 parent: 2 - - uid: 14182 + - uid: 14127 components: - type: Transform pos: 20.5,63.5 parent: 2 - - uid: 14183 + - uid: 14128 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-31.5 parent: 2 - - uid: 25504 + - uid: 14129 components: - type: Transform pos: -61.5,-23.5 parent: 2 - proto: ChairFolding entities: - - uid: 14184 + - uid: 14130 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-1.5 parent: 2 - - uid: 14185 + - uid: 14131 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,28.5 parent: 2 - - uid: 14186 + - uid: 14132 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,1.5 parent: 2 - - uid: 14190 + - uid: 14133 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-50.5 parent: 2 - - uid: 14191 + - uid: 14134 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-16.5 parent: 2 - - uid: 14194 + - uid: 14135 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,58.5 parent: 2 - - uid: 14195 + - uid: 14136 components: - type: Transform pos: -29.5,-46.5 parent: 2 - - uid: 14196 + - uid: 14137 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-0.5 parent: 2 - - uid: 14197 + - uid: 14138 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-1.5 parent: 2 - - uid: 14198 + - uid: 14139 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,57.5 parent: 2 - - uid: 14199 + - uid: 14140 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-10.5 parent: 2 - - uid: 14200 + - uid: 14141 components: - type: Transform rot: -1.5707953085339508 rad pos: 96.3055,2.6715565 parent: 2 - - uid: 14201 + - uid: 14142 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 94.61799,3.390307 parent: 2 - - uid: 14202 + - uid: 14143 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 95.43049,3.312182 parent: 2 - - uid: 14203 + - uid: 14144 components: - type: Transform rot: 1.5707973450558423 rad pos: 93.64925,2.640307 parent: 2 - - uid: 14204 + - uid: 14145 components: - type: Transform rot: 3.141593671850739 rad pos: 94.64925,1.7809321 parent: 2 - - uid: 14205 + - uid: 14146 components: - type: Transform rot: 3.141593671850739 rad pos: 95.46175,1.9371818 parent: 2 - - uid: 14206 + - uid: 14147 components: - type: Transform rot: 3.141593671850739 rad pos: -43.48623,-65.371765 parent: 2 - - uid: 14207 + - uid: 14148 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.123295,26.821814 parent: 2 - - uid: 14208 + - uid: 14149 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.10767,25.946814 parent: 2 - - uid: 14209 + - uid: 14150 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.168484,27.644085 parent: 2 - - uid: 39084 + - uid: 38911 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,43.5 - parent: 38584 + parent: 38411 - proto: ChairFoldingSpawnFolded entities: - - uid: 14210 + - uid: 14151 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -42.516994,-6.432411 parent: 2 - - uid: 14211 + - uid: 14152 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -42.548244,-6.276161 parent: 2 - - uid: 14212 + - uid: 14153 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -111336,175 +111341,175 @@ entities: parent: 2 - proto: ChairGreyscale entities: - - uid: 14213 + - uid: 14154 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,22.5 parent: 2 - - uid: 14214 + - uid: 14155 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,22.5 parent: 2 - - uid: 14215 + - uid: 14156 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,24.5 parent: 2 - - uid: 14216 + - uid: 14157 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,23.5 parent: 2 - - uid: 14217 + - uid: 14158 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,24.5 parent: 2 - - uid: 14218 + - uid: 14159 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,21.5 parent: 2 - - uid: 14219 + - uid: 14160 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,21.5 parent: 2 - - uid: 14220 + - uid: 14161 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,23.5 parent: 2 - - uid: 14221 + - uid: 14162 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,22.5 parent: 2 - - uid: 14222 + - uid: 14163 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,22.5 parent: 2 - - uid: 14223 + - uid: 14164 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,21.5 parent: 2 - - uid: 14224 + - uid: 14165 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,37.5 parent: 2 - - uid: 14225 + - uid: 14166 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,34.5 parent: 2 - - uid: 14226 + - uid: 14167 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,32.5 parent: 2 - - uid: 14227 + - uid: 14168 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,34.5 parent: 2 - - uid: 14228 + - uid: 14169 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,37.5 parent: 2 - - uid: 14229 + - uid: 14170 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,35.5 parent: 2 - - uid: 14230 + - uid: 14171 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,31.5 parent: 2 - - uid: 14231 + - uid: 14172 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,38.5 parent: 2 - - uid: 14232 + - uid: 14173 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,32.5 parent: 2 - - uid: 14233 + - uid: 14174 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,38.5 parent: 2 - - uid: 14234 + - uid: 14175 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,35.5 parent: 2 - - uid: 14235 + - uid: 14176 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,31.5 parent: 2 - - uid: 14236 + - uid: 14177 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-10.5 parent: 2 - - uid: 14237 + - uid: 14178 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,21.5 parent: 2 - - uid: 14238 + - uid: 14179 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,24.5 parent: 2 - - uid: 14239 + - uid: 14180 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,23.5 parent: 2 - - uid: 14240 + - uid: 14181 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,23.5 parent: 2 - - uid: 14241 + - uid: 14182 components: - type: Transform rot: 1.5707963267948966 rad @@ -111512,1407 +111517,1407 @@ entities: parent: 2 - proto: ChairOfficeDark entities: - - uid: 14242 + - uid: 14183 components: - type: Transform pos: 66.51117,-3.6487164 parent: 2 - - uid: 14243 + - uid: 14184 components: - type: Transform rot: 3.141593671850739 rad pos: 88.42397,6.7841988 parent: 2 - - uid: 14244 + - uid: 14185 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.399817,0.6220567 parent: 2 - - uid: 14245 + - uid: 14186 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-1.5 parent: 2 - - uid: 14246 + - uid: 14187 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,9.5 parent: 2 - - uid: 14247 + - uid: 14188 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,22.5 parent: 2 - - uid: 14248 + - uid: 14189 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-12.5 parent: 2 - - uid: 14249 + - uid: 14190 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-13.5 parent: 2 - - uid: 14250 + - uid: 14191 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,15.5 parent: 2 - - uid: 14251 + - uid: 14192 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,8.5 parent: 2 - - uid: 14252 + - uid: 14193 components: - type: Transform pos: -31.5,-11.5 parent: 2 - - uid: 14253 + - uid: 14194 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-41.5 parent: 2 - - uid: 14254 + - uid: 14195 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,27.5 parent: 2 - - uid: 14255 + - uid: 14196 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-9.5 parent: 2 - - uid: 14256 + - uid: 14197 components: - type: Transform pos: -46.5,9.5 parent: 2 - - uid: 14257 + - uid: 14198 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-14.5 parent: 2 - - uid: 14258 + - uid: 14199 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,2.5 parent: 2 - - uid: 14259 + - uid: 14200 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-12.5 parent: 2 - - uid: 14260 + - uid: 14201 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,19.5 parent: 2 - - uid: 14261 + - uid: 14202 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-13.5 parent: 2 - - uid: 14262 + - uid: 14203 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 14263 + - uid: 14204 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-14.5 parent: 2 - - uid: 14264 + - uid: 14205 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,9.5 parent: 2 - - uid: 14265 + - uid: 14206 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-2.5 parent: 2 - - uid: 14266 + - uid: 14207 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,4.5 parent: 2 - - uid: 14267 + - uid: 14208 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,86.5 parent: 2 - - uid: 14268 + - uid: 14209 components: - type: Transform pos: 6.5,63.5 parent: 2 - - uid: 14269 + - uid: 14210 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,34.5 parent: 2 - - uid: 14270 + - uid: 14211 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-46.5 parent: 2 - - uid: 14271 + - uid: 14212 components: - type: Transform pos: 11.5,-51.5 parent: 2 - - uid: 14272 + - uid: 14213 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,1.5 parent: 2 - - uid: 14273 + - uid: 14214 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-75.5 parent: 2 - - uid: 14274 + - uid: 14215 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-29.5 parent: 2 - - uid: 14275 + - uid: 14216 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,15.5 parent: 2 - - uid: 14276 + - uid: 14217 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,17.5 parent: 2 - - uid: 14277 + - uid: 14218 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,17.5 parent: 2 - - uid: 14278 + - uid: 14219 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 2 - - uid: 14279 + - uid: 14220 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,38.5 parent: 2 - - uid: 14280 + - uid: 14221 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,17.5 parent: 2 - - uid: 14281 + - uid: 14222 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 2 - - uid: 14282 + - uid: 14223 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-59.5 parent: 2 - - uid: 14283 + - uid: 14224 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,43.5 parent: 2 - - uid: 14284 + - uid: 14225 components: - type: Transform pos: -45.5,5.5 parent: 2 - - uid: 14285 + - uid: 14226 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,18.5 parent: 2 - - uid: 14286 + - uid: 14227 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,18.5 parent: 2 - - uid: 14287 + - uid: 14228 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,17.5 parent: 2 - - uid: 14288 + - uid: 14229 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-54.5 parent: 2 - - uid: 14289 + - uid: 14230 components: - type: Transform pos: 51.5,-52.5 parent: 2 - - uid: 14290 + - uid: 14231 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,10.5 parent: 2 - - uid: 14291 + - uid: 14232 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,15.5 parent: 2 - - uid: 14292 + - uid: 14233 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,36.5 parent: 2 - - uid: 14293 + - uid: 14234 components: - type: Transform pos: 9.5,33.5 parent: 2 - - uid: 14294 + - uid: 14235 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-80.5 parent: 2 - - uid: 14295 + - uid: 14236 components: - type: Transform pos: -14.5,-78.5 parent: 2 - - uid: 14296 + - uid: 14237 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,1.5 parent: 2 - - uid: 14297 + - uid: 14238 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 2 - - uid: 14298 + - uid: 14239 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-0.5 parent: 2 - - uid: 14299 + - uid: 14240 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,21.5 parent: 2 - - uid: 14300 + - uid: 14241 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-15.5 parent: 2 - - uid: 14301 + - uid: 14242 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,17.5 parent: 2 - - uid: 14302 + - uid: 14243 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,9.5 parent: 2 - - uid: 14303 + - uid: 14244 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,20.5 parent: 2 - - uid: 14304 + - uid: 14245 components: - type: Transform pos: 50.5,-52.5 parent: 2 - - uid: 14305 + - uid: 14246 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-52.5 parent: 2 - - uid: 14306 + - uid: 14247 components: - type: Transform pos: -13.5,-78.5 parent: 2 - - uid: 14307 + - uid: 14248 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,62.5 parent: 2 - - uid: 14308 + - uid: 14249 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-50.5 parent: 2 - - uid: 14309 + - uid: 14250 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,37.5 parent: 2 - - uid: 14310 + - uid: 14251 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-26.5 parent: 2 - - uid: 14311 + - uid: 14252 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-23.5 parent: 2 - - uid: 14312 + - uid: 14253 components: - type: Transform pos: 12.5,-31.5 parent: 2 - - uid: 14313 + - uid: 14254 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-0.5 parent: 2 - - uid: 14314 + - uid: 14255 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-0.5 parent: 2 - - uid: 14315 + - uid: 14256 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-2.5 parent: 2 - - uid: 14316 + - uid: 14257 components: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 14317 + - uid: 14258 components: - type: Transform pos: 44.5,-24.5 parent: 2 - - uid: 14318 + - uid: 14259 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,20.5 parent: 2 - - uid: 14319 + - uid: 14260 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 - - uid: 14320 + - uid: 14261 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,15.5 parent: 2 - - uid: 14321 + - uid: 14262 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,37.5 parent: 2 - - uid: 14322 + - uid: 14263 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,19.5 parent: 2 - - uid: 14323 + - uid: 14264 components: - type: Transform pos: 48.5,-24.5 parent: 2 - - uid: 14324 + - uid: 14265 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,35.5 parent: 2 - - uid: 14325 + - uid: 14266 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,38.5 parent: 2 - - uid: 14326 + - uid: 14267 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,62.5 parent: 2 - - uid: 14327 + - uid: 14268 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,27.5 parent: 2 - - uid: 14328 + - uid: 14269 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,60.5 parent: 2 - - uid: 14329 + - uid: 14270 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-25.5 parent: 2 - - uid: 14330 + - uid: 14271 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 - - uid: 14331 + - uid: 14272 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-37.5 parent: 2 - - uid: 14332 + - uid: 14273 components: - type: Transform pos: -11.47343,-0.62564135 parent: 2 - - uid: 14333 + - uid: 14274 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.399817,0.6220567 parent: 2 - - uid: 14334 + - uid: 14275 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.524817,0.6220567 parent: 2 - - uid: 14335 + - uid: 14276 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.53509253,61.69526 parent: 2 - - uid: 14336 + - uid: 14277 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.496967,-39.310917 parent: 2 - - uid: 14337 + - uid: 14278 components: - type: Transform rot: 1.5707973450558423 rad pos: 88.51772,5.1279488 parent: 2 - - uid: 14338 + - uid: 14279 components: - type: Transform rot: 3.141593671850739 rad pos: -50.978703,-35.88624 parent: 2 - - uid: 14339 + - uid: 14280 components: - type: Transform pos: -46.51411,0.54027236 parent: 2 - - uid: 14340 + - uid: 14281 components: - type: Transform rot: 3.141592653589793 rad pos: 45.53433,-4.487782 parent: 2 - - uid: 14341 + - uid: 14282 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.241432,-2.815143 parent: 2 - - uid: 14342 + - uid: 14283 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.81918,-4.264469 parent: 2 - - uid: 14343 + - uid: 14284 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.241432,-3.9342427 parent: 2 - - uid: 14344 + - uid: 14285 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.69076,-2.7784514 parent: 2 - - uid: 14345 + - uid: 14286 components: - type: Transform rot: 3.141592653589793 rad pos: 46.525005,-4.3777065 parent: 2 - - uid: 14346 + - uid: 14287 components: - type: Transform pos: 45.534325,-2.2862744 parent: 2 - - uid: 14347 + - uid: 14288 components: - type: Transform pos: 46.396584,-2.3229663 parent: 2 - - uid: 14348 + - uid: 14289 components: - type: Transform pos: 57.585953,-2.5824502 parent: 2 - - uid: 14349 + - uid: 14290 components: - type: Transform pos: 58.37483,-2.398991 parent: 2 - - uid: 14350 + - uid: 14291 components: - type: Transform rot: 3.141592653589793 rad pos: 57.512573,-4.2335806 parent: 2 - - uid: 14351 + - uid: 14292 components: - type: Transform rot: 3.141592653589793 rad pos: 58.576633,-4.196889 parent: 2 - - uid: 14352 + - uid: 14293 components: - type: Transform pos: 21.748638,22.021212 parent: 2 - - uid: 14353 + - uid: 14294 components: - type: Transform pos: 22.592388,22.14621 parent: 2 - - uid: 14354 + - uid: 14295 components: - type: Transform pos: 23.436138,22.099337 parent: 2 - - uid: 14355 + - uid: 14296 components: - type: Transform pos: 25.670513,22.068085 parent: 2 - - uid: 14356 + - uid: 14297 components: - type: Transform pos: 26.592388,22.068085 parent: 2 - - uid: 14357 + - uid: 14298 components: - type: Transform pos: 27.404888,22.11496 parent: 2 - - uid: 14358 + - uid: 14299 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.0684392,38.965813 parent: 2 - - uid: 39085 + - uid: 38912 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,33.5 - parent: 38584 - - uid: 39086 + parent: 38411 + - uid: 38913 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 - parent: 38584 - - uid: 39087 + parent: 38411 + - uid: 38914 components: - type: Transform pos: 3.495472,1.5606384 - parent: 38584 + parent: 38411 - proto: ChairOfficeLight entities: - - uid: 14359 + - uid: 14300 components: - type: Transform pos: 20.5,-27.5 parent: 2 - - uid: 14360 + - uid: 14301 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,0.5 parent: 2 - - uid: 14361 + - uid: 14302 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,29.5 parent: 2 - - uid: 14362 + - uid: 14303 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-3.5 parent: 2 - - uid: 14363 + - uid: 14304 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-59.5 parent: 2 - - uid: 14364 + - uid: 14305 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-30.5 parent: 2 - - uid: 14365 + - uid: 14306 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-30.5 parent: 2 - - uid: 14366 + - uid: 14307 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-26.5 parent: 2 - - uid: 14367 + - uid: 14308 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-56.5 parent: 2 - - uid: 14368 + - uid: 14309 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-47.5 parent: 2 - - uid: 14369 + - uid: 14310 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,7.5 parent: 2 - - uid: 14370 + - uid: 14311 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-66.5 parent: 2 - - uid: 14371 + - uid: 14312 components: - type: Transform pos: 22.5,-45.5 parent: 2 - - uid: 14372 + - uid: 14313 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-68.5 parent: 2 - - uid: 14373 + - uid: 14314 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-42.5 parent: 2 - - uid: 14374 + - uid: 14315 components: - type: Transform pos: -17.5,-40.5 parent: 2 - - uid: 14375 + - uid: 14316 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-29.5 parent: 2 - - uid: 14376 + - uid: 14317 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-47.5 parent: 2 - - uid: 14377 + - uid: 14318 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,31.5 parent: 2 - - uid: 14378 + - uid: 14319 components: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 14379 + - uid: 14320 components: - type: Transform pos: -18.5,-40.5 parent: 2 - - uid: 14380 + - uid: 14321 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,8.5 parent: 2 - - uid: 14381 + - uid: 14322 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-19.5 parent: 2 - - uid: 14382 + - uid: 14323 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-60.5 parent: 2 - - uid: 14383 + - uid: 14324 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,8.5 parent: 2 - - uid: 14384 + - uid: 14325 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-29.5 parent: 2 - - uid: 14385 + - uid: 14326 components: - type: Transform pos: -24.5,50.5 parent: 2 - - uid: 14386 + - uid: 14327 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,52.5 parent: 2 - - uid: 14387 + - uid: 14328 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-49.5 parent: 2 - - uid: 14388 + - uid: 14329 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-34.5 parent: 2 - - uid: 14389 + - uid: 14330 components: - type: Transform pos: 23.5,-45.5 parent: 2 - - uid: 14390 + - uid: 14331 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-34.5 parent: 2 - - uid: 14391 + - uid: 14332 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-44.5 parent: 2 - - uid: 14392 + - uid: 14333 components: - type: Transform pos: 41.5,-73.5 parent: 2 - - uid: 14393 + - uid: 14334 components: - type: Transform pos: 35.5,-40.5 parent: 2 - - uid: 14394 + - uid: 14335 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-40.5 parent: 2 - - uid: 14395 + - uid: 14336 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-38.5 parent: 2 - - uid: 14396 + - uid: 14337 components: - type: Transform pos: 39.5,-73.5 parent: 2 - - uid: 14397 + - uid: 14338 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-44.5 parent: 2 - - uid: 14398 + - uid: 14339 components: - type: Transform pos: -28.5,46.5 parent: 2 - - uid: 14399 + - uid: 14340 components: - type: Transform pos: -26.5,46.5 parent: 2 - - uid: 14400 + - uid: 14341 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 96.438934,13.171649 parent: 2 - - uid: 14401 + - uid: 14342 components: - type: Transform rot: 3.141593671850739 rad pos: 80.04495,-1.9447366 parent: 2 - - uid: 14402 + - uid: 14343 components: - type: Transform rot: 3.141593671850739 rad pos: 84.0137,-1.9447374 parent: 2 - - uid: 14403 + - uid: 14344 components: - type: Transform rot: 3.141593671850739 rad pos: 87.99808,-1.8978634 parent: 2 - - uid: 14404 + - uid: 14345 components: - type: Transform rot: 3.141593671850739 rad pos: -58.24252,-44.004616 parent: 2 - - uid: 14405 + - uid: 14346 components: - type: Transform pos: 57.26572,30.393097 parent: 2 - - uid: 14406 + - uid: 14347 components: - type: Transform pos: 51.961086,30.41755 parent: 2 - proto: ChairPilotSeat entities: - - uid: 38519 + - uid: 38346 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 - parent: 38484 - - uid: 38520 + parent: 38311 + - uid: 38347 components: - type: Transform pos: 0.5,1.5 - parent: 38484 - - uid: 38521 + parent: 38311 + - uid: 38348 components: - type: Transform pos: 2.5,1.5 - parent: 38484 - - uid: 38522 + parent: 38311 + - uid: 38349 components: - type: Transform pos: 3.5,1.5 - parent: 38484 - - uid: 38523 + parent: 38311 + - uid: 38350 components: - type: Transform pos: -0.5,1.5 - parent: 38484 - - uid: 39088 + parent: 38311 + - uid: 38915 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,19.5 - parent: 38584 + parent: 38411 - proto: ChairRitual entities: - - uid: 14407 + - uid: 14348 components: - type: Transform pos: -34.286114,-74.28132 parent: 2 - - uid: 14408 + - uid: 14349 components: - type: Transform pos: -30.66586,-73.92663 parent: 2 - - uid: 14409 + - uid: 14350 components: - type: Transform pos: -33.063053,-73.93886 parent: 2 - - uid: 14410 + - uid: 14351 components: - type: Transform pos: -33.686817,-73.278404 parent: 2 - - uid: 14411 + - uid: 14352 components: - type: Transform pos: -31.791075,-74.41585 parent: 2 - - uid: 14412 + - uid: 14353 components: - type: Transform pos: -31.411924,-73.327324 parent: 2 - proto: ChairWood entities: - - uid: 14413 + - uid: 14354 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.8492327,53.653503 parent: 2 - - uid: 14414 + - uid: 14355 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.8965049,45.78206 parent: 2 - - uid: 14415 + - uid: 14356 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,44.5 parent: 2 - - uid: 14416 + - uid: 14357 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 14417 + - uid: 14358 components: - type: Transform pos: -15.5,-68.5 parent: 2 - - uid: 14418 + - uid: 14359 components: - type: Transform pos: -17.5,-68.5 parent: 2 - - uid: 14419 + - uid: 14360 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 14420 + - uid: 14361 components: - type: Transform pos: -20.5,-69.5 parent: 2 - - uid: 14421 + - uid: 14362 components: - type: Transform pos: -19.5,-69.5 parent: 2 - - uid: 14422 + - uid: 14363 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 14423 + - uid: 14364 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 14424 + - uid: 14365 components: - type: Transform pos: -18.5,-69.5 parent: 2 - - uid: 14425 + - uid: 14366 components: - type: Transform pos: -17.5,-69.5 parent: 2 - - uid: 14426 + - uid: 14367 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-52.5 parent: 2 - - uid: 14427 + - uid: 14368 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-53.5 parent: 2 - - uid: 14428 + - uid: 14369 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,44.5 parent: 2 - - uid: 14429 + - uid: 14370 components: - type: Transform pos: -12.5,-68.5 parent: 2 - - uid: 14430 + - uid: 14371 components: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 14431 + - uid: 14372 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.563258,46.649433 parent: 2 - - uid: 14432 + - uid: 14373 components: - type: Transform pos: -19.5,-70.5 parent: 2 - - uid: 14433 + - uid: 14374 components: - type: Transform pos: -13.5,-68.5 parent: 2 - - uid: 14434 + - uid: 14375 components: - type: Transform pos: -14.5,-69.5 parent: 2 - - uid: 14435 + - uid: 14376 components: - type: Transform pos: -3.4907331,42.184048 parent: 2 - - uid: 14436 + - uid: 14377 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.563247,36.74413 parent: 2 - - uid: 14437 + - uid: 14378 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-7.5 parent: 2 - - uid: 14438 + - uid: 14379 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-8.5 parent: 2 - - uid: 14439 + - uid: 14380 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.485122,38.76386 parent: 2 - - uid: 14440 + - uid: 14381 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.500747,36.759758 parent: 2 - - uid: 14441 + - uid: 14382 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.500759,46.665062 parent: 2 - - uid: 14442 + - uid: 14383 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.453872,38.748238 parent: 2 - - uid: 14443 + - uid: 14384 components: - type: Transform pos: -15.5,-69.5 parent: 2 - - uid: 14444 + - uid: 14385 components: - type: Transform pos: -12.5,-69.5 parent: 2 - - uid: 14445 + - uid: 14386 components: - type: Transform pos: -14.5,-70.5 parent: 2 - - uid: 14446 + - uid: 14387 components: - type: Transform pos: -12.5,-70.5 parent: 2 - - uid: 14447 + - uid: 14388 components: - type: Transform pos: -14.5,-68.5 parent: 2 - - uid: 14448 + - uid: 14389 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-51.5 parent: 2 - - uid: 14449 + - uid: 14390 components: - type: Transform pos: -13.5,-69.5 parent: 2 - - uid: 14450 + - uid: 14391 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-7.5 parent: 2 - - uid: 14451 + - uid: 14392 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-8.5 parent: 2 - - uid: 14452 + - uid: 14393 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 14453 + - uid: 14394 components: - type: Transform pos: -122.5,33.5 parent: 2 - - uid: 14454 + - uid: 14395 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,31.5 parent: 2 - - uid: 14455 + - uid: 14396 components: - type: Transform pos: -20.5,-70.5 parent: 2 - - uid: 14456 + - uid: 14397 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,27.5 parent: 2 - - uid: 14457 + - uid: 14398 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,28.5 parent: 2 - - uid: 39089 + - uid: 38916 components: - type: Transform pos: -14.365667,-4.690674 - parent: 38584 - - uid: 39090 + parent: 38411 + - uid: 38917 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.350042,-5.300049 - parent: 38584 - - uid: 39091 + parent: 38411 + - uid: 38918 components: - type: Transform pos: -13.709417,-4.721924 - parent: 38584 - - uid: 39092 + parent: 38411 + - uid: 38919 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.740667,-5.331299 - parent: 38584 - - uid: 39093 + parent: 38411 + - uid: 38920 components: - type: Transform rot: 3.141592653589793 rad pos: -13.662542,-5.909424 - parent: 38584 - - uid: 39094 + parent: 38411 + - uid: 38921 components: - type: Transform rot: 3.141592653589793 rad pos: -14.396917,-5.971924 - parent: 38584 + parent: 38411 - proto: CheapLighter entities: - - uid: 14458 + - uid: 14399 components: - type: Transform rot: -1.5707953085339508 rad pos: -74.0946,-35.44862 parent: 2 - - uid: 39095 + - uid: 38922 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.610121,5.726898 - parent: 38584 - - uid: 39096 + parent: 38411 + - uid: 38923 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.531996,5.492523 - parent: 38584 + parent: 38411 - proto: CheapRollerBed entities: - - uid: 14459 + - uid: 14400 components: - type: Transform pos: 2.5292196,-49.44199 parent: 2 - - uid: 14460 + - uid: 14401 components: - type: Transform pos: 45.5,-30.5 parent: 2 - type: Physics canCollide: False - - uid: 14461 + - uid: 14402 components: - type: Transform pos: 33.5,-41.5 parent: 2 - - uid: 14462 + - uid: 14403 components: - type: Transform pos: 47.5,-30.5 parent: 2 - type: Physics canCollide: False - - uid: 14463 + - uid: 14404 components: - type: Transform pos: 18.524715,-23.354324 parent: 2 - type: Physics canCollide: False - - uid: 14464 + - uid: 14405 components: - type: Transform pos: 17.493465,-23.354118 parent: 2 - type: Physics canCollide: False - - uid: 14465 + - uid: 14406 components: - type: Transform pos: 2.5268502,-40.29957 parent: 2 - type: Physics canCollide: False - - uid: 14466 + - uid: 14407 components: - type: Transform pos: 6.5348835,-13.351544 parent: 2 - proto: CheapRollerBedSpawnFolded entities: - - uid: 14467 + - uid: 14408 components: - type: Transform pos: 24.247139,-26.420021 parent: 2 - - uid: 14468 + - uid: 14409 components: - type: Transform pos: 24.262762,-27.091896 parent: 2 - proto: ChemDispenser entities: - - uid: 14469 + - uid: 14410 components: - type: Transform pos: 3.5,-33.5 @@ -112935,7 +112940,7 @@ entities: showEnts: False occludes: True ent: null - - uid: 14470 + - uid: 14411 components: - type: Transform pos: 6.5,-29.5 @@ -112960,46 +112965,46 @@ entities: ent: null - proto: ChemicalPayload entities: - - uid: 14471 + - uid: 14412 components: - type: Transform pos: -6.654764,-46.34208 parent: 2 - - uid: 14472 + - uid: 14413 components: - type: Transform pos: 2.7165446,-30.750381 parent: 2 - - uid: 14473 + - uid: 14414 components: - type: Transform pos: 2.7165446,-30.750381 parent: 2 - - uid: 14474 + - uid: 14415 components: - type: Transform pos: 2.7165446,-30.750381 parent: 2 - proto: ChemistryHotplate entities: - - uid: 14475 + - uid: 14416 components: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 14476 + - uid: 14417 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 14477 + - uid: 14418 components: - type: Transform pos: 63.5,30.5 parent: 2 - proto: ChemMaster entities: - - uid: 14478 + - uid: 14419 components: - type: Transform pos: 4.5,-29.5 @@ -113026,7 +113031,7 @@ entities: showEnts: False occludes: True ent: null - - uid: 14479 + - uid: 14420 components: - type: Transform pos: 3.5,-35.5 @@ -113053,51 +113058,51 @@ entities: showEnts: False occludes: True ent: null - - uid: 14480 + - uid: 14421 components: - type: Transform pos: -32.5,45.5 parent: 2 - proto: ChessBoard entities: - - uid: 14481 + - uid: 14422 components: - type: Transform pos: -31.521072,68.62613 parent: 2 - - uid: 14482 + - uid: 14423 components: - type: Transform pos: -31.999136,-13.284749 parent: 2 - - uid: 14483 + - uid: 14424 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.540379,-77.35887 parent: 2 - - uid: 14484 + - uid: 14425 components: - type: Transform pos: 63.66099,-25.833206 parent: 2 - proto: CigarCase entities: - - uid: 14485 + - uid: 14426 components: - type: Transform pos: 36.502167,-9.505364 parent: 2 - type: Physics canCollide: False - - uid: 14486 + - uid: 14427 components: - type: Transform pos: -76.360794,-0.4243784 parent: 2 - proto: Cigarette entities: - - uid: 9964 + - uid: 14428 components: - type: Transform rot: -1.5707963267948966 rad @@ -113105,74 +113110,74 @@ entities: parent: 2 - proto: CigaretteSpent entities: - - uid: 6745 + - uid: 14429 components: - type: Transform rot: 3.141592653589793 rad pos: -60.30316,-23.38285 parent: 2 - - uid: 14487 + - uid: 14430 components: - type: Transform pos: -18.792145,56.784576 parent: 2 - - uid: 14488 + - uid: 14431 components: - type: Transform pos: -4.220675,56.874905 parent: 2 - - uid: 14490 + - uid: 14432 components: - type: Transform rot: 3.141592653589793 rad pos: -27.606853,-28.286798 parent: 2 - - uid: 14491 + - uid: 14433 components: - type: Transform pos: 25.112226,-16.579811 parent: 2 - - uid: 14492 + - uid: 14434 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.874308,-30.625107 parent: 2 - - uid: 14493 + - uid: 14435 components: - type: Transform pos: 9.577554,-11.391624 parent: 2 - - uid: 14494 + - uid: 14436 components: - type: Transform rot: 3.141592653589793 rad pos: 0.25211835,-45.352993 parent: 2 - - uid: 14495 + - uid: 14437 components: - type: Transform rot: 3.141592653589793 rad pos: -1.0373211,-57.28495 parent: 2 - - uid: 14496 + - uid: 14438 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.953518,0.0045550466 parent: 2 - - uid: 14497 + - uid: 14439 components: - type: Transform pos: -46.327656,-33.127026 parent: 2 - - uid: 14498 + - uid: 14440 components: - type: Transform rot: 3.141592653589793 rad pos: -22.800909,10.6530485 parent: 2 - - uid: 14499 + - uid: 14441 components: - type: Transform pos: 52.32608,23.745909 @@ -113202,80 +113207,80 @@ entities: - type: InsideEntityStorage - proto: CigarGold entities: - - uid: 14500 + - uid: 14442 components: - type: Transform pos: -15.43277,10.848992 parent: 2 - type: Physics canCollide: False - - uid: 14501 + - uid: 14443 components: - type: Transform pos: -15.55777,10.942742 parent: 2 - type: Physics canCollide: False - - uid: 14502 + - uid: 14444 components: - type: Transform pos: 41.683758,19.570614 parent: 2 - type: Physics canCollide: False - - uid: 14503 + - uid: 14445 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.51288,-0.6245712 parent: 2 - - uid: 14504 + - uid: 14446 components: - type: Transform pos: 12.463764,9.66757 parent: 2 - type: Physics canCollide: False - - uid: 14505 + - uid: 14447 components: - type: Transform pos: -63.249516,6.58782 parent: 2 - type: Physics canCollide: False - - uid: 14506 + - uid: 14448 components: - type: Transform pos: 12.588764,9.57382 parent: 2 - type: Physics canCollide: False - - uid: 14507 + - uid: 14449 components: - type: Transform pos: 41.558758,19.633179 parent: 2 - type: Physics canCollide: False - - uid: 14508 + - uid: 14450 components: - type: Transform pos: 31.391697,10.8042965 parent: 2 - - uid: 14509 + - uid: 14451 components: - type: Transform pos: -63.374516,6.65032 parent: 2 - type: Physics canCollide: False - - uid: 14510 + - uid: 14452 components: - type: Transform rot: 3.141592653589793 rad pos: 53.501812,31.041586 parent: 2 - - uid: 14511 + - uid: 14453 components: - type: Transform rot: 3.141592653589793 rad @@ -113283,26 +113288,26 @@ entities: parent: 2 - proto: CigarGoldCase entities: - - uid: 14512 + - uid: 14454 components: - type: Transform pos: 23.613783,12.589763 parent: 2 - - uid: 14513 + - uid: 14455 components: - type: Transform pos: -2.4250343,12.791277 parent: 2 - type: Physics canCollide: False - - uid: 14515 + - uid: 14457 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14520 + - uid: 14462 components: - type: Transform rot: 1.5707963267948966 rad @@ -113310,14 +113315,14 @@ entities: parent: 2 - proto: CigarGoldSpent entities: - - uid: 14521 + - uid: 14463 components: - type: Transform pos: 59.593765,27.848354 parent: 2 - proto: CigarSpent entities: - - uid: 14522 + - uid: 14464 components: - type: Transform rot: 3.141592653589793 rad @@ -113325,452 +113330,452 @@ entities: parent: 2 - proto: CigCartonBlack entities: - - uid: 14523 + - uid: 14465 components: - type: Transform pos: -46.55135,-32.313488 parent: 2 - proto: CigCartonMixed entities: - - uid: 14524 + - uid: 14466 components: - type: Transform pos: -0.5251062,-10.303878 parent: 2 - - uid: 39097 + - uid: 38924 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.375746,6.398773 - parent: 38584 + parent: 38411 - proto: CigPackBlack entities: - - uid: 14525 + - uid: 14467 components: - type: Transform pos: -46.379475,-32.516613 parent: 2 - - uid: 14526 + - uid: 14468 components: - type: Transform pos: -46.660725,-32.532238 parent: 2 - - uid: 39098 + - uid: 38925 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.547621,6.133148 - parent: 38584 + parent: 38411 - proto: CigPackBlue entities: - - uid: 39099 + - uid: 38926 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.703871,6.398773 - parent: 38584 + parent: 38411 - proto: CigPackSyndicate entities: - - uid: 14527 + - uid: 14469 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -46.197323,-32.47747 parent: 2 - - uid: 39101 + - uid: 38928 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CircuitImprinter entities: - - uid: 14528 + - uid: 14470 components: - type: Transform pos: -3.5,-31.5 parent: 2 - proto: CleanerDispenser entities: - - uid: 14530 + - uid: 14471 components: - type: Transform pos: 0.5,55.5 parent: 2 - - uid: 39107 + - uid: 38934 components: - type: Transform pos: -12.5,14.5 - parent: 38584 + parent: 38411 - proto: ClockworkGrilleBroken entities: - - uid: 14531 + - uid: 14472 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,6.5 parent: 2 - - uid: 14532 + - uid: 14473 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,4.5 parent: 2 - - uid: 14533 + - uid: 14474 components: - type: Transform pos: -92.5,-20.5 parent: 2 - - uid: 14534 + - uid: 14475 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,3.5 parent: 2 - - uid: 14535 + - uid: 14476 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,5.5 parent: 2 - - uid: 14536 + - uid: 14477 components: - type: Transform rot: 1.5707963267948966 rad pos: -85.5,4.5 parent: 2 - - uid: 14537 + - uid: 14478 components: - type: Transform pos: -105.5,-12.5 parent: 2 - - uid: 14538 + - uid: 14479 components: - type: Transform pos: -103.5,-11.5 parent: 2 - - uid: 14539 + - uid: 14480 components: - type: Transform rot: 3.141592653589793 rad pos: -103.5,-11.5 parent: 2 - - uid: 14540 + - uid: 14481 components: - type: Transform rot: 1.5707963267948966 rad pos: -92.5,-19.5 parent: 2 - - uid: 14541 + - uid: 14482 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-21.5 parent: 2 - - uid: 14542 + - uid: 14483 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-12.5 parent: 2 - - uid: 14543 + - uid: 14484 components: - type: Transform rot: 3.141592653589793 rad pos: -105.5,-11.5 parent: 2 - - uid: 14544 + - uid: 14485 components: - type: Transform pos: 78.5,-7.5 parent: 2 - - uid: 14545 + - uid: 14486 components: - type: Transform pos: 93.5,-7.5 parent: 2 - - uid: 14546 + - uid: 14487 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,-8.5 parent: 2 - - uid: 14547 + - uid: 14488 components: - type: Transform pos: 92.5,-8.5 parent: 2 - - uid: 14548 + - uid: 14489 components: - type: Transform pos: 91.5,-8.5 parent: 2 - - uid: 14549 + - uid: 14490 components: - type: Transform pos: 89.5,-8.5 parent: 2 - - uid: 14550 + - uid: 14491 components: - type: Transform pos: 93.5,-7.5 parent: 2 - - uid: 14551 + - uid: 14492 components: - type: Transform pos: 80.5,-7.5 parent: 2 - - uid: 14552 + - uid: 14493 components: - type: Transform pos: 77.5,-7.5 parent: 2 - - uid: 14553 + - uid: 14494 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-8.5 parent: 2 - - uid: 14554 + - uid: 14495 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-6.5 parent: 2 - - uid: 14555 + - uid: 14496 components: - type: Transform rot: 3.141592653589793 rad pos: 102.5,2.5 parent: 2 - - uid: 14556 + - uid: 14497 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,3.5 parent: 2 - - uid: 14557 + - uid: 14498 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,4.5 parent: 2 - - uid: 14558 + - uid: 14499 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,5.5 parent: 2 - - uid: 14559 + - uid: 14500 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,6.5 parent: 2 - - uid: 14560 + - uid: 14501 components: - type: Transform pos: 79.5,-7.5 parent: 2 - - uid: 14561 + - uid: 14502 components: - type: Transform rot: 3.141592653589793 rad pos: 100.5,6.5 parent: 2 - - uid: 14562 + - uid: 14503 components: - type: Transform pos: 81.5,-7.5 parent: 2 - - uid: 14563 + - uid: 14504 components: - type: Transform pos: 82.5,-7.5 parent: 2 - - uid: 14564 + - uid: 14505 components: - type: Transform pos: 83.5,-7.5 parent: 2 - - uid: 14565 + - uid: 14506 components: - type: Transform pos: 84.5,-7.5 parent: 2 - - uid: 14566 + - uid: 14507 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-8.5 parent: 2 - - uid: 14567 + - uid: 14508 components: - type: Transform pos: 85.5,-8.5 parent: 2 - - uid: 14568 + - uid: 14509 components: - type: Transform pos: 86.5,-8.5 parent: 2 - - uid: 14569 + - uid: 14510 components: - type: Transform pos: 87.5,-8.5 parent: 2 - - uid: 14570 + - uid: 14511 components: - type: Transform pos: 88.5,-8.5 parent: 2 - - uid: 14571 + - uid: 14512 components: - type: Transform pos: 90.5,-8.5 parent: 2 - - uid: 14572 + - uid: 14513 components: - type: Transform pos: 94.5,-7.5 parent: 2 - - uid: 14573 + - uid: 14514 components: - type: Transform pos: 95.5,-7.5 parent: 2 - - uid: 14574 + - uid: 14515 components: - type: Transform pos: 96.5,-7.5 parent: 2 - - uid: 14575 + - uid: 14516 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,-7.5 parent: 2 - - uid: 14576 + - uid: 14517 components: - type: Transform pos: 97.5,-7.5 parent: 2 - - uid: 14577 + - uid: 14518 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-7.5 parent: 2 - - uid: 14578 + - uid: 14519 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-6.5 parent: 2 - - uid: 14579 + - uid: 14520 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-5.5 parent: 2 - - uid: 14580 + - uid: 14521 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-4.5 parent: 2 - - uid: 14581 + - uid: 14522 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-3.5 parent: 2 - - uid: 14582 + - uid: 14523 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-2.5 parent: 2 - - uid: 14583 + - uid: 14524 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-1.5 parent: 2 - - uid: 14584 + - uid: 14525 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-0.5 parent: 2 - - uid: 14585 + - uid: 14526 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,0.5 parent: 2 - - uid: 14586 + - uid: 14527 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,1.5 parent: 2 - - uid: 14587 + - uid: 14528 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,2.5 parent: 2 - - uid: 14588 + - uid: 14529 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,2.5 parent: 2 - - uid: 14589 + - uid: 14530 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,6.5 parent: 2 - - uid: 14590 + - uid: 14531 components: - type: Transform rot: 3.141592653589793 rad pos: 101.5,6.5 parent: 2 - - uid: 14591 + - uid: 14532 components: - type: Transform pos: 98.5,-6.5 parent: 2 - - uid: 14592 + - uid: 14533 components: - type: Transform pos: 99.5,-6.5 parent: 2 - - uid: 14593 + - uid: 14534 components: - type: Transform pos: 100.5,-6.5 parent: 2 - - uid: 14594 + - uid: 14535 components: - type: Transform pos: 101.5,-6.5 parent: 2 - - uid: 14595 + - uid: 14536 components: - type: Transform pos: 102.5,-6.5 parent: 2 - - uid: 14596 + - uid: 14537 components: - type: Transform pos: 103.5,-7.5 parent: 2 - - uid: 14597 + - uid: 14538 components: - type: Transform rot: -1.5707963267948966 rad @@ -113778,36 +113783,36 @@ entities: parent: 2 - proto: CloningPod entities: - - uid: 14598 + - uid: 14539 components: - type: Transform pos: 8.5,-37.5 parent: 2 - proto: ClosetBluespace entities: - - uid: 14599 + - uid: 14540 components: - type: Transform pos: -38.500004,-13.5 parent: 2 - proto: ClosetBombFilled entities: - - uid: 14600 + - uid: 14541 components: - type: Transform pos: 61.5,6.5 parent: 2 - - uid: 14601 + - uid: 14542 components: - type: Transform pos: 63.5,6.5 parent: 2 - - uid: 14602 + - uid: 14543 components: - type: Transform pos: -29.5,-43.5 parent: 2 - - uid: 14603 + - uid: 14544 components: - type: Transform pos: -7.5,-48.5 @@ -113830,19 +113835,19 @@ entities: - 0 - 0 - 0 - - uid: 14604 + - uid: 14545 components: - type: Transform pos: -29.5,-41.5 parent: 2 - - uid: 14605 + - uid: 14546 components: - type: Transform pos: 59.5,6.5 parent: 2 - proto: ClosetChefFilled entities: - - uid: 14606 + - uid: 14547 components: - type: Transform pos: -32.5,25.5 @@ -113865,14 +113870,14 @@ entities: - 0 - 0 - 0 - - uid: 14607 + - uid: 14548 components: - type: Transform pos: 61.5,30.5 parent: 2 - proto: ClosetEmergency entities: - - uid: 14608 + - uid: 14549 components: - type: Transform pos: -31.5,82.5 @@ -113895,39 +113900,39 @@ entities: - 0 - 0 - 0 - - uid: 14609 + - uid: 14550 components: - type: Transform pos: -27.5,82.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 14610 + - uid: 14551 components: - type: Transform pos: 4.5,81.5 parent: 2 - - uid: 14611 + - uid: 14552 components: - type: Transform pos: -9.5,82.5 parent: 2 - - uid: 14612 + - uid: 14553 components: - type: Transform pos: -9.5,88.5 parent: 2 - - uid: 14613 + - uid: 14554 components: - type: Transform pos: 4.5,80.5 parent: 2 - - uid: 14614 + - uid: 14555 components: - type: Transform pos: -51.5,20.5 parent: 2 - - uid: 14615 + - uid: 14556 components: - type: Transform pos: -57.5,64.5 @@ -113938,13 +113943,13 @@ entities: showEnts: False occludes: True ents: - - 14616 - - 14617 + - 14557 + - 14558 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14618 + - uid: 14559 components: - type: Transform pos: -12.5,98.5 @@ -113967,7 +113972,7 @@ entities: - 0 - 0 - 0 - - uid: 14619 + - uid: 14560 components: - type: Transform pos: -31.5,88.5 @@ -113990,7 +113995,7 @@ entities: - 0 - 0 - 0 - - uid: 14620 + - uid: 14561 components: - type: Transform pos: -18.5,-21.5 @@ -114013,7 +114018,7 @@ entities: - 0 - 0 - 0 - - uid: 14621 + - uid: 14562 components: - type: Transform pos: 4.5,-67.5 @@ -114036,7 +114041,7 @@ entities: - 0 - 0 - 0 - - uid: 14622 + - uid: 14563 components: - type: Transform pos: 4.5,-73.5 @@ -114059,7 +114064,7 @@ entities: - 0 - 0 - 0 - - uid: 14623 + - uid: 14564 components: - type: Transform pos: -10.5,-71.5 @@ -114082,7 +114087,7 @@ entities: - 0 - 0 - 0 - - uid: 14624 + - uid: 14565 components: - type: Transform pos: -76.5,-25.5 @@ -114105,17 +114110,17 @@ entities: - 0 - 0 - 0 - - uid: 14625 + - uid: 14566 components: - type: Transform pos: 29.5,32.5 parent: 2 - - uid: 14626 + - uid: 14567 components: - type: Transform pos: -43.5,8.5 parent: 2 - - uid: 14627 + - uid: 14568 components: - type: Transform pos: -43.5,41.5 @@ -114138,12 +114143,12 @@ entities: - 0 - 0 - 0 - - uid: 14628 + - uid: 14569 components: - type: Transform pos: -42.5,-0.5 parent: 2 - - uid: 14629 + - uid: 14570 components: - type: Transform pos: 28.5,-61.5 @@ -114166,7 +114171,7 @@ entities: - 0 - 0 - 0 - - uid: 14630 + - uid: 14571 components: - type: Transform pos: -1.5,27.5 @@ -114189,7 +114194,7 @@ entities: - 0 - 0 - 0 - - uid: 14631 + - uid: 14572 components: - type: Transform pos: -2.5,-60.5 @@ -114212,7 +114217,7 @@ entities: - 0 - 0 - 0 - - uid: 14632 + - uid: 14573 components: - type: Transform pos: -15.5,-29.5 @@ -114235,7 +114240,7 @@ entities: - 0 - 0 - 0 - - uid: 14633 + - uid: 14574 components: - type: Transform pos: -30.5,98.5 @@ -114258,7 +114263,7 @@ entities: - 0 - 0 - 0 - - uid: 14634 + - uid: 14575 components: - type: Transform pos: 33.5,-18.5 @@ -114281,7 +114286,7 @@ entities: - 0 - 0 - 0 - - uid: 14635 + - uid: 14576 components: - type: Transform pos: -60.5,-17.5 @@ -114304,7 +114309,7 @@ entities: - 0 - 0 - 0 - - uid: 14636 + - uid: 14577 components: - type: Transform pos: -15.5,-31.5 @@ -114327,12 +114332,12 @@ entities: - 0 - 0 - 0 - - uid: 14637 + - uid: 14578 components: - type: Transform pos: -34.5,-51.5 parent: 2 - - uid: 14638 + - uid: 14579 components: - type: Transform pos: -79.5,15.499999 @@ -114355,7 +114360,7 @@ entities: - 0 - 0 - 0 - - uid: 14639 + - uid: 14580 components: - type: Transform pos: 9.5,90.5 @@ -114378,7 +114383,7 @@ entities: - 0 - 0 - 0 - - uid: 14640 + - uid: 14581 components: - type: Transform pos: -46.5,-39.5 @@ -114401,7 +114406,7 @@ entities: - 0 - 0 - 0 - - uid: 14641 + - uid: 14582 components: - type: Transform pos: -67.5,-31.5 @@ -114424,7 +114429,7 @@ entities: - 0 - 0 - 0 - - uid: 14642 + - uid: 14583 components: - type: Transform pos: -32.5,-49.5 @@ -114447,7 +114452,7 @@ entities: - 0 - 0 - 0 - - uid: 14643 + - uid: 14584 components: - type: Transform pos: 70.5,-40.5 @@ -114470,7 +114475,7 @@ entities: - 0 - 0 - 0 - - uid: 14644 + - uid: 14585 components: - type: Transform pos: -21.5,58.5 @@ -114493,7 +114498,7 @@ entities: - 0 - 0 - 0 - - uid: 14645 + - uid: 14586 components: - type: Transform pos: 8.5,-58.5 @@ -114516,7 +114521,7 @@ entities: - 0 - 0 - 0 - - uid: 14646 + - uid: 14587 components: - type: Transform pos: -115.5,26.5 @@ -114539,76 +114544,76 @@ entities: - 0 - 0 - 0 - - uid: 14647 + - uid: 14588 components: - type: Transform pos: -57.5,-38.5 parent: 2 - - uid: 14648 + - uid: 14589 components: - type: Transform pos: -27.5,88.5 parent: 2 - - uid: 14649 + - uid: 14590 components: - type: Transform pos: -13.5,88.5 parent: 2 - - uid: 14650 + - uid: 14591 components: - type: Transform pos: -38.5,-69.5 parent: 2 - - uid: 14651 + - uid: 14592 components: - type: Transform pos: -13.5,82.5 parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 14652 + - uid: 14593 components: - type: Transform pos: -37.5,-69.5 parent: 2 - - uid: 14653 + - uid: 14594 components: - type: Transform pos: -51.5,25.5 parent: 2 - proto: ClosetFireFilled entities: - - uid: 14654 + - uid: 14595 components: - type: Transform pos: -54.5,25.5 parent: 2 - - uid: 14655 + - uid: 14596 components: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 14656 + - uid: 14597 components: - type: Transform pos: -9.5,92.5 parent: 2 - - uid: 14657 + - uid: 14598 components: - type: Transform pos: -13.5,79.5 parent: 2 - - uid: 14658 + - uid: 14599 components: - type: Transform pos: -9.5,79.5 parent: 2 - - uid: 14659 + - uid: 14600 components: - type: Transform pos: 4.5,79.5 parent: 2 - - uid: 14660 + - uid: 14601 components: - type: Transform pos: -31.5,92.5 @@ -114631,7 +114636,7 @@ entities: - 0 - 0 - 0 - - uid: 14661 + - uid: 14602 components: - type: Transform pos: -43.5,40.5 @@ -114654,7 +114659,7 @@ entities: - 0 - 0 - 0 - - uid: 14662 + - uid: 14603 components: - type: Transform pos: 4.5,-68.5 @@ -114677,7 +114682,7 @@ entities: - 0 - 0 - 0 - - uid: 14663 + - uid: 14604 components: - type: Transform pos: -44.5,44.5 @@ -114700,7 +114705,7 @@ entities: - 0 - 0 - 0 - - uid: 14664 + - uid: 14605 components: - type: Transform pos: -50.5,44.5 @@ -114723,7 +114728,7 @@ entities: - 0 - 0 - 0 - - uid: 14665 + - uid: 14606 components: - type: Transform pos: 2.5,42.5 @@ -114752,12 +114757,12 @@ entities: showEnts: False occludes: True ents: - - 14666 + - 14607 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14667 + - uid: 14608 components: - type: Transform pos: 22.5,-22.5 @@ -114780,7 +114785,7 @@ entities: - 0 - 0 - 0 - - uid: 14668 + - uid: 14609 components: - type: Transform pos: -21.5,57.5 @@ -114803,7 +114808,7 @@ entities: - 0 - 0 - 0 - - uid: 14669 + - uid: 14610 components: - type: Transform pos: -43.5,50.5 @@ -114826,7 +114831,7 @@ entities: - 0 - 0 - 0 - - uid: 14670 + - uid: 14611 components: - type: Transform pos: 4.5,82.5 @@ -114849,12 +114854,12 @@ entities: - 0 - 0 - 0 - - uid: 14671 + - uid: 14612 components: - type: Transform pos: -42.5,-1.5 parent: 2 - - uid: 14672 + - uid: 14613 components: - type: Transform pos: 53.5,-30.5 @@ -114877,7 +114882,7 @@ entities: - 0 - 0 - 0 - - uid: 14673 + - uid: 14614 components: - type: Transform pos: -11.5,-30.5 @@ -114900,7 +114905,7 @@ entities: - 0 - 0 - 0 - - uid: 14674 + - uid: 14615 components: - type: Transform pos: -31.5,61.5 @@ -114923,7 +114928,7 @@ entities: - 0 - 0 - 0 - - uid: 14675 + - uid: 14616 components: - type: Transform pos: -11.5,-29.5 @@ -114946,7 +114951,7 @@ entities: - 0 - 0 - 0 - - uid: 14676 + - uid: 14617 components: - type: Transform pos: -31.5,79.5 @@ -114969,12 +114974,12 @@ entities: - 0 - 0 - 0 - - uid: 14677 + - uid: 14618 components: - type: Transform pos: -3.5,-50.5 parent: 2 - - uid: 14678 + - uid: 14619 components: - type: Transform pos: -2.5,-61.5 @@ -114997,12 +115002,12 @@ entities: - 0 - 0 - 0 - - uid: 14679 + - uid: 14620 components: - type: Transform pos: -42.5,3.5 parent: 2 - - uid: 14680 + - uid: 14621 components: - type: Transform pos: -10.5,-74.5 @@ -115025,7 +115030,7 @@ entities: - 0 - 0 - 0 - - uid: 14681 + - uid: 14622 components: - type: Transform pos: 47.5,-41.5 @@ -115048,7 +115053,7 @@ entities: - 0 - 0 - 0 - - uid: 14682 + - uid: 14623 components: - type: Transform pos: -34.5,-49.5 @@ -115077,12 +115082,12 @@ entities: showEnts: False occludes: True ents: - - 14683 + - 14624 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14684 + - uid: 14625 components: - type: Transform pos: 1.5,-55.5 @@ -115105,7 +115110,7 @@ entities: - 0 - 0 - 0 - - uid: 14685 + - uid: 14626 components: - type: Transform pos: -19.5,-21.5 @@ -115128,51 +115133,51 @@ entities: - 0 - 0 - 0 - - uid: 14686 + - uid: 14627 components: - type: Transform pos: -57.5,-37.5 parent: 2 - - uid: 14687 + - uid: 14628 components: - type: Transform pos: -27.5,92.5 parent: 2 - - uid: 14688 + - uid: 14629 components: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 14689 + - uid: 14630 components: - type: Transform pos: -13.5,92.5 parent: 2 - - uid: 14690 + - uid: 14631 components: - type: Transform pos: -27.5,79.5 parent: 2 - - uid: 14691 + - uid: 14632 components: - type: Transform pos: -68.5,-31.5 parent: 2 - proto: ClosetJanitor entities: - - uid: 14692 + - uid: 14633 components: - type: Transform pos: 65.5,-10.5 parent: 2 - - uid: 14693 + - uid: 14634 components: - type: Transform pos: 65.5,-29.5 parent: 2 - proto: ClosetJanitorFilled entities: - - uid: 1868 + - uid: 1872 components: - type: Transform pos: 4.5,53.5 @@ -115201,40 +115206,40 @@ entities: showEnts: False occludes: True ents: - - 1871 - - 1872 - - 1870 - - 1873 - - 1878 - - 1869 - 1875 - 1876 - 1874 - 1877 + - 1882 + - 1873 + - 1879 + - 1880 + - 1878 + - 1881 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetL3JanitorFilled entities: - - uid: 14694 + - uid: 14635 components: - type: Transform pos: 4.5,54.5 parent: 2 - proto: ClosetL3ScienceFilled entities: - - uid: 14695 + - uid: 14636 components: - type: Transform pos: -27.5,-37.5 parent: 2 - - uid: 14696 + - uid: 14637 components: - type: Transform pos: -27.5,-38.5 parent: 2 - - uid: 14697 + - uid: 14638 components: - type: Transform pos: -11.5,-31.5 @@ -115259,7 +115264,7 @@ entities: - 0 - proto: ClosetL3SecurityFilled entities: - - uid: 14698 + - uid: 14639 components: - type: Transform pos: 70.5,-2.5 @@ -115282,7 +115287,7 @@ entities: - 0 - 0 - 0 - - uid: 14699 + - uid: 14640 components: - type: Transform pos: 70.5,-4.5 @@ -115305,7 +115310,7 @@ entities: - 0 - 0 - 0 - - uid: 14700 + - uid: 14641 components: - type: Transform pos: 69.5,-4.5 @@ -115330,7 +115335,7 @@ entities: - 0 - proto: ClosetL3VirologyFilled entities: - - uid: 14701 + - uid: 14642 components: - type: Transform pos: 26.5,-61.5 @@ -115353,7 +115358,7 @@ entities: - 0 - 0 - 0 - - uid: 14702 + - uid: 14643 components: - type: Transform pos: 32.5,-68.5 @@ -115376,7 +115381,7 @@ entities: - 0 - 0 - 0 - - uid: 14703 + - uid: 14644 components: - type: Transform pos: 27.5,-61.5 @@ -115401,24 +115406,24 @@ entities: - 0 - proto: ClosetLegal entities: - - uid: 14704 + - uid: 14645 components: - type: Transform pos: 65.5,-28.5 parent: 2 - - uid: 14705 + - uid: 14646 components: - type: Transform pos: 65.5,-11.5 parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 14706 + - uid: 14647 components: - type: Transform pos: -35.5,-79.5 parent: 2 - - uid: 14707 + - uid: 14648 components: - type: Transform pos: -26.5,-76.5 @@ -115447,17 +115452,17 @@ entities: showEnts: False occludes: True ents: - - 14708 + - 14649 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14709 + - uid: 14650 components: - type: Transform pos: -31.5,58.5 parent: 2 - - uid: 14710 + - uid: 14651 components: - type: Transform pos: -21.5,-21.5 @@ -115486,12 +115491,12 @@ entities: showEnts: False occludes: True ents: - - 14711 + - 14652 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14712 + - uid: 14653 components: - type: Transform pos: 5.5,56.5 @@ -115514,7 +115519,7 @@ entities: - 0 - 0 - 0 - - uid: 14713 + - uid: 14654 components: - type: Transform pos: 21.5,-55.5 @@ -115543,12 +115548,12 @@ entities: showEnts: False occludes: True ents: - - 14714 + - 14655 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14715 + - uid: 14656 components: - type: Transform pos: -24.5,27.5 @@ -115571,12 +115576,12 @@ entities: - 0 - 0 - 0 - - uid: 14716 + - uid: 14657 components: - type: Transform pos: -40.5,50.5 parent: 2 - - uid: 14717 + - uid: 14658 components: - type: Transform pos: 4.5,-55.5 @@ -115599,7 +115604,7 @@ entities: - 0 - 0 - 0 - - uid: 14718 + - uid: 14659 components: - type: Transform pos: -73.5,-22.5 @@ -115628,12 +115633,12 @@ entities: showEnts: False occludes: True ents: - - 14719 + - 14660 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14720 + - uid: 14661 components: - type: Transform pos: 41.5,-25.5 @@ -115662,12 +115667,12 @@ entities: showEnts: False occludes: True ents: - - 14721 + - 14662 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14722 + - uid: 14663 components: - type: Transform pos: 34.5,-4.5 @@ -115690,7 +115695,7 @@ entities: - 0 - 0 - 0 - - uid: 14723 + - uid: 14664 components: - type: Transform pos: -77.5,-20.5 @@ -115713,7 +115718,7 @@ entities: - 0 - 0 - 0 - - uid: 14724 + - uid: 14665 components: - type: Transform pos: -18.5,-62.5 @@ -115736,7 +115741,7 @@ entities: - 0 - 0 - 0 - - uid: 14725 + - uid: 14666 components: - type: Transform pos: 25.5,61.5 @@ -115765,12 +115770,12 @@ entities: showEnts: False occludes: True ents: - - 14726 + - 14667 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14727 + - uid: 14668 components: - type: Transform pos: 25.5,59.5 @@ -115793,7 +115798,7 @@ entities: - 0 - 0 - 0 - - uid: 14728 + - uid: 14669 components: - type: Transform pos: 40.5,-47.5 @@ -115816,7 +115821,7 @@ entities: - 0 - 0 - 0 - - uid: 14729 + - uid: 14670 components: - type: Transform pos: -38.5,2.5 @@ -115839,12 +115844,12 @@ entities: - 0 - 0 - 0 - - uid: 14730 + - uid: 14671 components: - type: Transform pos: -32.5,-53.5 parent: 2 - - uid: 14731 + - uid: 14672 components: - type: Transform pos: -52.5,-22.5 @@ -115873,12 +115878,12 @@ entities: showEnts: False occludes: True ents: - - 14732 + - 14673 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14733 + - uid: 14674 components: - type: Transform pos: -45.5,-37.5 @@ -115901,7 +115906,7 @@ entities: - 0 - 0 - 0 - - uid: 14734 + - uid: 14675 components: - type: Transform pos: -43.5,-46.5 @@ -115924,7 +115929,7 @@ entities: - 0 - 0 - 0 - - uid: 14735 + - uid: 14676 components: - type: Transform pos: -39.5,-75.5 @@ -115947,7 +115952,7 @@ entities: - 0 - 0 - 0 - - uid: 14736 + - uid: 14677 components: - type: Transform pos: 35.5,-23.5 @@ -115970,7 +115975,7 @@ entities: - 0 - 0 - 0 - - uid: 14737 + - uid: 14678 components: - type: Transform pos: 40.5,-37.5 @@ -115993,7 +115998,7 @@ entities: - 0 - 0 - 0 - - uid: 14738 + - uid: 14679 components: - type: Transform pos: 48.5,-47.5 @@ -116016,7 +116021,7 @@ entities: - 0 - 0 - 0 - - uid: 14739 + - uid: 14680 components: - type: Transform pos: 48.5,-27.5 @@ -116045,12 +116050,12 @@ entities: showEnts: False occludes: True ents: - - 14740 + - 14681 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14741 + - uid: 14682 components: - type: Transform pos: 43.5,-27.5 @@ -116073,7 +116078,7 @@ entities: - 0 - 0 - 0 - - uid: 14742 + - uid: 14683 components: - type: Transform pos: 36.5,-46.5 @@ -116096,7 +116101,7 @@ entities: - 0 - 0 - 0 - - uid: 14743 + - uid: 14684 components: - type: Transform pos: 18.5,-55.5 @@ -116119,79 +116124,79 @@ entities: - 0 - 0 - 0 - - uid: 14744 + - uid: 14685 components: - type: Transform pos: -57.5,-33.5 parent: 2 - - uid: 14745 + - uid: 14686 components: - type: Transform pos: -34.5,-69.5 parent: 2 - - uid: 14746 + - uid: 14687 components: - type: Transform pos: -35.5,-69.5 parent: 2 - - uid: 14747 + - uid: 14688 components: - type: Transform pos: -28.5,-58.5 parent: 2 - - uid: 14748 + - uid: 14689 components: - type: Transform pos: -7.5,-54.5 parent: 2 - - uid: 14749 + - uid: 14690 components: - type: Transform pos: -35.500004,-17.5 parent: 2 - - uid: 14750 + - uid: 14691 components: - type: Transform pos: -48.5,-21.5 parent: 2 - - uid: 14751 + - uid: 14692 components: - type: Transform pos: -55.500004,-24.5 parent: 2 - - uid: 14752 + - uid: 14693 components: - type: Transform pos: -60.5,-31.5 parent: 2 - - uid: 14754 + - uid: 14694 components: - type: Transform pos: -61.5,-20.5 parent: 2 - - uid: 14755 + - uid: 14695 components: - type: Transform pos: -40.500004,1.4999999 parent: 2 - - uid: 14756 + - uid: 14696 components: - type: Transform pos: 34.499996,-54.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 14757 + - uid: 14697 components: - type: Transform pos: -62.5,2.5 parent: 2 - - uid: 14758 + - uid: 14698 components: - type: Transform pos: -63.5,2.5 parent: 2 - - uid: 14759 + - uid: 14699 components: - type: Transform pos: -57.5,44.5 @@ -116214,7 +116219,7 @@ entities: - 0 - 0 - 0 - - uid: 14760 + - uid: 14700 components: - type: Transform pos: -43.5,52.5 @@ -116237,7 +116242,7 @@ entities: - 0 - 0 - 0 - - uid: 14761 + - uid: 14701 components: - type: Transform pos: -55.5,-3.5 @@ -116260,7 +116265,7 @@ entities: - 0 - 0 - 0 - - uid: 14762 + - uid: 14702 components: - type: Transform pos: -56.5,-3.5 @@ -116283,7 +116288,7 @@ entities: - 0 - 0 - 0 - - uid: 14763 + - uid: 14703 components: - type: Transform pos: -50.5,6.5 @@ -116306,7 +116311,7 @@ entities: - 0 - 0 - 0 - - uid: 14764 + - uid: 14704 components: - type: Transform pos: -58.5,44.5 @@ -116329,7 +116334,7 @@ entities: - 0 - 0 - 0 - - uid: 14765 + - uid: 14705 components: - type: Transform pos: -51.5,40.5 @@ -116352,12 +116357,12 @@ entities: - 0 - 0 - 0 - - uid: 14766 + - uid: 14706 components: - type: Transform pos: -29.5,-39.5 parent: 2 - - uid: 14767 + - uid: 14707 components: - type: Transform pos: -14.5,-55.5 @@ -116380,7 +116385,7 @@ entities: - 0 - 0 - 0 - - uid: 14768 + - uid: 14708 components: - type: Transform pos: 75.5,-45.5 @@ -116403,7 +116408,7 @@ entities: - 0 - 0 - 0 - - uid: 14769 + - uid: 14709 components: - type: Transform pos: -52.5,40.5 @@ -116426,12 +116431,12 @@ entities: - 0 - 0 - 0 - - uid: 14770 + - uid: 14710 components: - type: Transform pos: -31.5,-46.5 parent: 2 - - uid: 14771 + - uid: 14711 components: - type: Transform pos: -53.5,4.5 @@ -116454,7 +116459,7 @@ entities: - 0 - 0 - 0 - - uid: 14772 + - uid: 14712 components: - type: Transform pos: -69.5,10.5 @@ -116477,14 +116482,14 @@ entities: - 0 - 0 - 0 - - uid: 14773 + - uid: 14713 components: - type: Transform pos: -77.5,1.5 parent: 2 - proto: ClosetSteelBase entities: - - uid: 14774 + - uid: 14714 components: - type: Transform pos: 8.5,-40.5 @@ -116507,7 +116512,7 @@ entities: - 0 - 0 - 0 - - uid: 14775 + - uid: 14715 components: - type: Transform pos: 76.5,23.5 @@ -116530,7 +116535,7 @@ entities: - 0 - 0 - 0 - - uid: 14776 + - uid: 14716 components: - type: Transform pos: 35.5,-6.5 @@ -116553,7 +116558,7 @@ entities: - 0 - 0 - 0 - - uid: 14777 + - uid: 14717 components: - type: Transform pos: 36.5,-6.5 @@ -116576,7 +116581,7 @@ entities: - 0 - 0 - 0 - - uid: 14778 + - uid: 14718 components: - type: Transform pos: 38.5,-66.5 @@ -116605,13 +116610,13 @@ entities: showEnts: False occludes: True ents: - - 14779 - - 14780 + - 14719 + - 14720 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14781 + - uid: 14721 components: - type: Transform pos: 42.5,-66.5 @@ -116659,7 +116664,7 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 14782 + - uid: 14722 components: - type: Transform pos: 13.5,-57.5 @@ -116682,7 +116687,7 @@ entities: - 0 - 0 - 0 - - uid: 14783 + - uid: 14723 components: - type: Transform pos: 12.5,-57.5 @@ -116705,7 +116710,7 @@ entities: - 0 - 0 - 0 - - uid: 14784 + - uid: 14724 components: - type: Transform pos: 11.5,-57.5 @@ -116728,7 +116733,7 @@ entities: - 0 - 0 - 0 - - uid: 14785 + - uid: 14725 components: - type: Transform pos: 34.5,-49.5 @@ -116751,7 +116756,7 @@ entities: - 0 - 0 - 0 - - uid: 14786 + - uid: 14726 components: - type: Transform pos: 34.5,-6.5 @@ -116774,7 +116779,7 @@ entities: - 0 - 0 - 0 - - uid: 14787 + - uid: 14727 components: - type: Transform pos: 43.5,-35.5 @@ -116797,7 +116802,7 @@ entities: - 0 - 0 - 0 - - uid: 14788 + - uid: 14728 components: - type: Transform pos: -55.5,-43.5 @@ -116826,37 +116831,37 @@ entities: showEnts: False occludes: True ents: - - 14790 - - 14789 - - 14792 - - 14791 + - 14730 + - 14729 + - 14732 + - 14731 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14793 + - uid: 14733 components: - type: Transform pos: 65.5,-9.5 parent: 2 - - uid: 14794 + - uid: 14734 components: - type: Transform pos: 65.5,-30.5 parent: 2 - - uid: 14795 + - uid: 14735 components: - type: Transform pos: 6.5,-11.5 parent: 2 - proto: ClosetToolFilled entities: - - uid: 14796 + - uid: 14736 components: - type: Transform pos: -77.5,-25.5 parent: 2 - - uid: 14797 + - uid: 14737 components: - type: Transform pos: -56.5,17.5 @@ -116885,13 +116890,13 @@ entities: showEnts: False occludes: True ents: - - 14799 - - 14798 + - 14739 + - 14738 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14800 + - uid: 14740 components: - type: Transform pos: -55.5,-11.5 @@ -116914,7 +116919,7 @@ entities: - 0 - 0 - 0 - - uid: 14801 + - uid: 14741 components: - type: Transform pos: 11.5,85.5 @@ -116937,7 +116942,7 @@ entities: - 0 - 0 - 0 - - uid: 14802 + - uid: 14742 components: - type: Transform pos: 24.5,10.5 @@ -116960,7 +116965,7 @@ entities: - 0 - 0 - 0 - - uid: 14803 + - uid: 14743 components: - type: Transform pos: 11.5,84.5 @@ -116983,7 +116988,7 @@ entities: - 0 - 0 - 0 - - uid: 14804 + - uid: 14744 components: - type: Transform pos: -56.5,-11.5 @@ -117006,7 +117011,7 @@ entities: - 0 - 0 - 0 - - uid: 14805 + - uid: 14745 components: - type: Transform pos: -53.5,6.5 @@ -117029,7 +117034,7 @@ entities: - 0 - 0 - 0 - - uid: 14806 + - uid: 14746 components: - type: Transform pos: 23.5,10.5 @@ -117052,12 +117057,12 @@ entities: - 0 - 0 - 0 - - uid: 14807 + - uid: 14747 components: - type: Transform pos: -22.5,-47.5 parent: 2 - - uid: 14808 + - uid: 14748 components: - type: Transform pos: -50.5,4.5 @@ -117082,7 +117087,7 @@ entities: - 0 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 14809 + - uid: 14749 components: - type: Transform pos: 11.5,-2.5 @@ -117107,44 +117112,44 @@ entities: - 0 - proto: ClothingBackpackBrigmedic entities: - - uid: 14811 + - uid: 14751 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackDuffelBrigmedic entities: - - uid: 14812 + - uid: 14752 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackDuffelClown entities: - - uid: 14827 + - uid: 14767 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackDuffelMilitary entities: - - uid: 14839 + - uid: 14779 components: - type: Transform pos: -39.5,56.5 parent: 2 - proto: ClothingBackpackDuffelMime entities: - - uid: 14841 + - uid: 14781 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: GroupExamine @@ -117169,7 +117174,7 @@ entities: - type: InsideEntityStorage - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 14860 + - uid: 14801 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117177,7 +117182,7 @@ entities: parent: 2 - proto: ClothingBackpackDuffelSyndicateCarpSuit entities: - - uid: 14861 + - uid: 14802 components: - type: Transform pos: -74.452286,-31.415848 @@ -117203,7 +117208,7 @@ entities: title: null - proto: ClothingBackpackDuffelSyndicatePyjamaBundle entities: - - uid: 14862 + - uid: 14803 components: - type: Transform pos: 99.50743,-1.3897237 @@ -117229,46 +117234,46 @@ entities: title: null - proto: ClothingBackpackDuffelVirology entities: - - uid: 14863 + - uid: 14804 components: - type: Transform pos: 39.371994,-59.285408 parent: 2 - proto: ClothingBackpackIan entities: - - uid: 14864 + - uid: 14805 components: - type: Transform pos: -40.652157,-59.44616 parent: 2 - proto: ClothingBackpackMime entities: - - uid: 14842 + - uid: 14782 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackSatchelBrigmedic entities: - - uid: 14813 + - uid: 14753 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackSatchelClown entities: - - uid: 14828 + - uid: 14768 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14865 + - uid: 14806 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117276,88 +117281,88 @@ entities: parent: 2 - proto: ClothingBackpackSatchelLeather entities: - - uid: 14866 + - uid: 14807 components: - type: Transform pos: 38.42007,-13.187743 parent: 2 - proto: ClothingBackpackSatchelMime entities: - - uid: 14843 + - uid: 14783 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackSyndicate entities: - - uid: 39102 + - uid: 38929 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltChampion entities: - - uid: 14867 + - uid: 14808 components: - type: Transform pos: 63.481087,-20.497055 parent: 2 - - uid: 14868 + - uid: 14809 components: - type: Transform pos: 63.65296,-20.13768 parent: 2 - - uid: 14869 + - uid: 14810 components: - type: Transform pos: 26.459219,12.402003 parent: 2 - proto: ClothingBeltJanitorFilled entities: - - uid: 1870 + - uid: 1874 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1871 + - uid: 1875 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltMedical entities: - - uid: 14814 + - uid: 14754 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltPlantFilled entities: - - uid: 14870 + - uid: 14811 components: - type: Transform pos: -34.420864,52.3301 parent: 2 - - uid: 14871 + - uid: 14812 components: - type: Transform pos: -34.610645,52.66603 parent: 2 - - uid: 39108 + - uid: 38935 components: - type: Transform pos: -21.581953,-2.861847 - parent: 38584 + parent: 38411 - proto: ClothingBeltSecurityFilled entities: - uid: 21 @@ -117369,19 +117374,19 @@ entities: - type: InsideEntityStorage - proto: ClothingBeltStorageWaistbag entities: - - uid: 14872 + - uid: 14813 components: - type: Transform pos: 38.466946,-9.531493 parent: 2 - proto: ClothingBeltUtility entities: - - uid: 14873 + - uid: 14814 components: - type: Transform pos: 9.527449,86.09863 parent: 2 - - uid: 14874 + - uid: 14815 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117389,38 +117394,38 @@ entities: parent: 2 - proto: ClothingBeltUtilityEngineering entities: - - uid: 14875 + - uid: 14816 components: - type: Transform pos: -47.542614,28.682962 parent: 2 - proto: ClothingBeltUtilityFilled entities: - - uid: 14798 + - uid: 14738 components: - type: Transform - parent: 14797 + parent: 14737 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14876 + - uid: 14817 components: - type: Transform pos: 15.5,39.5 parent: 2 - - uid: 14877 + - uid: 14818 components: - type: Transform pos: -33.5,60.5 parent: 2 - - uid: 14878 + - uid: 14819 components: - type: Transform pos: -49.5,-16.5 parent: 2 - type: Physics canCollide: False - - uid: 14879 + - uid: 14820 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117428,64 +117433,64 @@ entities: parent: 2 - proto: ClothingEyesBinoclardLenses entities: - - uid: 14880 + - uid: 14821 components: - type: Transform pos: -21.485056,-7.1794715 parent: 2 - proto: ClothingEyesBlindfold entities: - - uid: 14881 + - uid: 14822 components: - type: Transform pos: 73.36917,23.696793 parent: 2 - proto: ClothingEyesGlasses entities: - - uid: 14882 + - uid: 14823 components: - type: Transform pos: -36.412228,63.676514 parent: 2 - - uid: 14883 + - uid: 14824 components: - type: Transform pos: 28.440517,-26.436743 parent: 2 - - uid: 14884 + - uid: 14825 components: - type: Transform pos: 28.378017,-26.327368 parent: 2 - - uid: 14885 + - uid: 14826 components: - type: Transform pos: 29.542643,-1.1786702 parent: 2 - proto: ClothingEyesGlassesCheapSunglasses entities: - - uid: 14886 + - uid: 14827 components: - type: Transform pos: 20.8171,62.763203 parent: 2 - proto: ClothingEyesGlassesMercenary entities: - - uid: 14616 + - uid: 14557 components: - type: Transform - parent: 14615 + parent: 14556 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14887 + - uid: 14828 components: - type: Transform pos: -36.385307,-54.463394 parent: 2 - proto: ClothingEyesGlassesMeson entities: - - uid: 14888 + - uid: 14829 components: - type: Transform pos: -49.5,-12.5 @@ -117501,197 +117506,197 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14889 + - uid: 14830 components: - type: Transform pos: -78.5,1.5 parent: 2 - - uid: 14890 + - uid: 14831 components: - type: Transform pos: 34.431522,0.096880555 parent: 2 - - uid: 14896 + - uid: 14843 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingEyesHudDiagnostic entities: - - uid: 14905 + - uid: 14846 components: - type: Transform pos: -75.5,9.5 parent: 2 - - uid: 14906 + - uid: 14847 components: - type: Transform pos: 15.542948,77.507545 parent: 2 - - uid: 14907 + - uid: 14848 components: - type: Transform pos: -54.45722,-9.789352 parent: 2 - - uid: 14908 + - uid: 14849 components: - type: Transform pos: -54.45722,-9.789352 parent: 2 - - uid: 14909 + - uid: 14850 components: - type: Transform pos: -54.45722,-9.789352 parent: 2 - - uid: 14910 + - uid: 14851 components: - type: Transform pos: -54.45722,-9.789352 parent: 2 - proto: ClothingEyesHudMedical entities: - - uid: 14911 + - uid: 14852 components: - type: Transform pos: 30.585972,-26.50681 parent: 2 - - uid: 14912 + - uid: 14853 components: - type: Transform pos: 22.578123,-46.395374 parent: 2 - - uid: 14913 + - uid: 14854 components: - type: Transform pos: 30.710972,-26.428684 parent: 2 - - uid: 14914 + - uid: 14855 components: - type: Transform pos: 30.804722,-26.334932 parent: 2 - proto: ClothingEyesSalesman entities: - - uid: 14915 + - uid: 14856 components: - type: Transform pos: 34.52355,-29.358326 parent: 2 - proto: ClothingHandsGlovesAerostatic entities: - - uid: 14917 + - uid: 14858 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 14923 + - uid: 14864 components: - type: Transform pos: 55.321033,-16.213081 parent: 2 - - uid: 14924 + - uid: 14865 components: - type: Transform pos: 55.696033,-16.134956 parent: 2 - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 14925 + - uid: 14866 components: - type: Transform pos: 55.33666,-15.541207 parent: 2 - - uid: 14926 + - uid: 14867 components: - type: Transform pos: 55.727283,-15.384956 parent: 2 - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 14927 + - uid: 14868 components: - type: Transform pos: 55.27416,-16.588081 parent: 2 - - uid: 14928 + - uid: 14869 components: - type: Transform pos: 55.64916,-16.509956 parent: 2 - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 14929 + - uid: 14870 components: - type: Transform pos: 55.30541,-15.884956 parent: 2 - - uid: 14930 + - uid: 14871 components: - type: Transform pos: 55.77416,-15.759956 parent: 2 - proto: ClothingHandsGlovesColorBlack entities: - - uid: 14931 + - uid: 14872 components: - type: Transform pos: 14.491442,39.55459 parent: 2 - type: Physics canCollide: False - - uid: 14932 + - uid: 14873 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 14933 + - uid: 14874 components: - type: Transform pos: 33.5,32.5 parent: 2 - - uid: 14934 + - uid: 14875 components: - type: Transform pos: 32.5,32.5 parent: 2 - - uid: 14935 + - uid: 14876 components: - type: Transform pos: 53.542866,-53.372818 parent: 2 - type: Physics canCollide: False - - uid: 14936 + - uid: 14877 components: - type: Transform pos: 49.5,-37.5 parent: 2 - type: Physics canCollide: False - - uid: 14937 + - uid: 14878 components: - type: Transform pos: 14.491442,39.71084 parent: 2 - type: Physics canCollide: False - - uid: 14938 + - uid: 14879 components: - type: Transform pos: -49.94571,-48.294197 parent: 2 - - uid: 14939 + - uid: 14880 components: - type: Transform pos: -22.50142,-44.5684 parent: 2 - - uid: 14940 + - uid: 14881 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117699,24 +117704,24 @@ entities: parent: 2 - proto: ClothingHandsGlovesColorBrown entities: - - uid: 14941 + - uid: 14882 components: - type: Transform pos: 27.46601,36.112278 parent: 2 - - uid: 14942 + - uid: 14883 components: - type: Transform pos: -35.445805,-62.467285 parent: 2 - proto: ClothingHandsGlovesColorOrange entities: - - uid: 14943 + - uid: 14884 components: - type: Transform pos: 0.6084916,50.72592 parent: 2 - - uid: 14944 + - uid: 14885 components: - type: Transform pos: -77.531624,-30.35354 @@ -117725,93 +117730,103 @@ entities: canCollide: False - proto: ClothingHandsGlovesColorPurple entities: - - uid: 14945 + - uid: 14886 components: - type: Transform pos: 0.55345386,50.3957 parent: 2 - proto: ClothingHandsGlovesColorWhite entities: - - uid: 14946 + - uid: 14887 components: - type: Transform pos: -33.5,-35.5 parent: 2 - - uid: 14948 + - uid: 14889 components: - type: Transform - parent: 14947 + parent: 14888 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 15680 + components: + - type: Transform + pos: -0.31098497,50.690018 + parent: 2 + - uid: 38308 + components: + - type: Transform + pos: 0.03276498,50.736893 + parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 14799 + - uid: 14739 components: - type: Transform - parent: 14797 + parent: 14737 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14951 + - uid: 14892 components: - type: Transform pos: -55.5,-1.5 parent: 2 - - uid: 14952 + - uid: 14893 components: - type: Transform pos: -45.44088,-13.045986 parent: 2 - - uid: 14953 + - uid: 14894 components: - type: Transform pos: -35.5,21.5 parent: 2 - - uid: 14954 + - uid: 14895 components: - type: Transform pos: -28.5,8.5 parent: 2 - - uid: 14955 + - uid: 14896 components: - type: Transform pos: -49.5,-12.5 parent: 2 - - uid: 14957 + - uid: 14898 components: - type: Transform - parent: 14956 + parent: 14897 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14961 + - uid: 14902 components: - type: Transform - parent: 14960 + parent: 14901 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14965 + - uid: 14906 components: - type: Transform - parent: 14964 + parent: 14905 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14968 + - uid: 14909 components: - type: Transform pos: 54.5,-42.5 parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 14969 + - uid: 14910 components: - type: Transform pos: -41.49198,-55.389194 parent: 2 - - uid: 14970 + - uid: 14911 components: - type: Transform pos: 20.524391,10.520571 @@ -117825,42 +117840,42 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14971 + - uid: 14912 components: - type: Transform pos: 70.5,8.5 parent: 2 - - uid: 14973 + - uid: 14913 components: - type: Transform pos: 100.565186,-1.6605401 parent: 2 - - uid: 39109 - components: - - type: Transform - pos: 13.998112,19.283295 - parent: 38584 - - uid: 40936 + - uid: 14914 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.01646,-26.201363 parent: 2 + - uid: 38936 + components: + - type: Transform + pos: 13.998112,19.283295 + parent: 38411 - proto: ClothingHandsGlovesFingerlessInsulated entities: - - uid: 14974 + - uid: 14915 components: - type: Transform pos: 29.53348,59.58545 parent: 2 - proto: ClothingHandsGlovesHop entities: - - uid: 14975 + - uid: 14916 components: - type: Transform pos: -41.5,61.5 parent: 2 - - uid: 14976 + - uid: 14917 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117868,76 +117883,76 @@ entities: parent: 2 - proto: ClothingHandsGlovesLatex entities: - - uid: 14977 + - uid: 14918 components: - type: Transform pos: 3.3556955,-52.53906 parent: 2 - - uid: 14978 + - uid: 14919 components: - type: Transform pos: 33.512875,-52.369106 parent: 2 - type: Physics canCollide: False - - uid: 14979 + - uid: 14920 components: - type: Transform pos: 26.501759,9.535522 parent: 2 - - uid: 14980 + - uid: 14921 components: - type: Transform pos: -25.48231,-31.481985 parent: 2 - type: Physics canCollide: False - - uid: 14981 + - uid: 14922 components: - type: Transform pos: 6.5106626,-42.76824 parent: 2 - - uid: 14982 + - uid: 14923 components: - type: Transform pos: 45.5,-35.5 parent: 2 - type: Physics canCollide: False - - uid: 14983 + - uid: 14924 components: - type: Transform pos: 27.495026,67.60358 parent: 2 - type: Physics canCollide: False - - uid: 14984 + - uid: 14925 components: - type: Transform pos: -3.4906864,-22.43212 parent: 2 - type: Physics canCollide: False - - uid: 14985 + - uid: 14926 components: - type: Transform pos: 3.8132644,-52.53906 parent: 2 - - uid: 14986 + - uid: 14927 components: - type: Transform pos: 3.666549,-13.525673 parent: 2 - proto: ClothingHandsGlovesLeather entities: - - uid: 14987 + - uid: 14928 components: - type: Transform pos: -25.485296,54.53175 parent: 2 - proto: ClothingHandsGlovesNitrile entities: - - uid: 14988 + - uid: 14929 components: - type: Transform rot: 3.141592653589793 rad @@ -117945,38 +117960,38 @@ entities: parent: 2 - proto: ClothingHandsMercGlovesCombat entities: - - uid: 14617 + - uid: 14558 components: - type: Transform - parent: 14615 + parent: 14556 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14990 + - uid: 14931 components: - type: Transform - parent: 14989 + parent: 14930 - type: Physics canCollide: False - proto: ClothingHeadBandBlack entities: - - uid: 14991 + - uid: 14932 components: - type: Transform pos: -50.609512,-48.24995 parent: 2 - proto: ClothingHeadBandMerc entities: - - uid: 14683 + - uid: 14624 components: - type: Transform - parent: 14682 + parent: 14623 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatAnimalCat entities: - - uid: 14992 + - uid: 14933 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -117984,7 +117999,7 @@ entities: parent: 2 - proto: ClothingHeadHatAnimalCatBlack entities: - - uid: 14993 + - uid: 14934 components: - type: Transform pos: 39.473694,-49.477642 @@ -117993,7 +118008,7 @@ entities: canCollide: False - proto: ClothingHeadHatAnimalHeadslime entities: - - uid: 14994 + - uid: 14935 components: - type: Transform pos: -51.484074,-22.45441 @@ -118002,7 +118017,7 @@ entities: canCollide: False - proto: ClothingHeadHatBeaverHat entities: - - uid: 14995 + - uid: 14936 components: - type: Transform pos: 11.610336,68.17239 @@ -118019,7 +118034,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14996 + - uid: 14937 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -118027,52 +118042,52 @@ entities: parent: 2 - proto: ClothingHeadHatBeretBrigmedic entities: - - uid: 14998 + - uid: 14939 components: - type: Transform - parent: 14997 + parent: 14938 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14999 + - uid: 14940 components: - type: Transform - parent: 14997 + parent: 14938 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15001 + - uid: 14942 components: - type: Transform - parent: 15000 + parent: 14941 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15002 + - uid: 14943 components: - type: Transform pos: 26.16902,-24.54952 parent: 2 - - uid: 15003 + - uid: 14944 components: - type: Transform pos: 25.512768,-24.26827 parent: 2 - proto: ClothingHeadHatBeretEngineering entities: - - uid: 15004 + - uid: 14945 components: - type: Transform pos: -54.4179,-9.596214 parent: 2 - - uid: 15005 + - uid: 14946 components: - type: Transform pos: -56.24604,-13.244306 parent: 2 - proto: ClothingHeadHatBeretMedic entities: - - uid: 15006 + - uid: 14947 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -118080,21 +118095,21 @@ entities: parent: 2 - proto: ClothingHeadHatBeretRND entities: - - uid: 15007 + - uid: 14948 components: - type: Transform pos: -20.530878,-38.289 parent: 2 - proto: ClothingHeadHatBeretSecurityMedic entities: - - uid: 14815 + - uid: 14755 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15008 + - uid: 14949 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -118102,86 +118117,86 @@ entities: parent: 2 - proto: ClothingHeadHatBeretWarden entities: - - uid: 15010 + - uid: 14951 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatBlacksoft entities: - - uid: 15017 + - uid: 14958 components: - type: Transform pos: 17.44001,28.793232 parent: 2 - proto: ClothingHeadHatBowlerHat entities: - - uid: 15019 + - uid: 14960 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - - uid: 15025 + - uid: 14966 components: - type: Transform pos: -23.507126,23.627884 parent: 2 - - uid: 15026 + - uid: 14967 components: - type: Transform pos: 43.480366,-50.404068 parent: 2 - type: Physics canCollide: False - - uid: 15027 + - uid: 14968 components: - type: Transform pos: 20.17384,62.727947 parent: 2 - proto: ClothingHeadHatBunny entities: - - uid: 15028 + - uid: 14969 components: - type: Transform pos: 43.54777,15.417131 parent: 2 - - uid: 15029 + - uid: 14970 components: - type: Transform pos: 25.547163,17.707092 parent: 2 - - uid: 15030 + - uid: 14971 components: - type: Transform pos: 25.547163,17.472717 parent: 2 - - uid: 39110 + - uid: 38937 components: - type: Transform pos: 7.506109,-1.439148 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatCapWardenAlt entities: - - uid: 15011 + - uid: 14952 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatCardborg entities: - - uid: 14666 + - uid: 14607 components: - type: Transform - parent: 14665 + parent: 14606 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15031 + - uid: 14972 components: - type: Transform pos: 47.511616,-54.529068 @@ -118190,65 +118205,65 @@ entities: canCollide: False - proto: ClothingHeadHatCargosoft entities: - - uid: 15032 + - uid: 14973 components: - type: Transform pos: 17.440012,28.027607 parent: 2 - proto: ClothingHeadHatCasa entities: - - uid: 15033 + - uid: 14974 components: - type: Transform pos: -50.54699,-44.048893 parent: 2 - - uid: 15034 + - uid: 14975 components: - type: Transform pos: -52.47938,-45.096096 parent: 2 - proto: ClothingHeadHatChef entities: - - uid: 15035 + - uid: 14976 components: - type: Transform pos: 22.545242,65.61058 parent: 2 - type: Physics canCollide: False - - uid: 15036 + - uid: 14977 components: - type: Transform pos: -28.69005,32.65273 parent: 2 - - uid: 39111 + - uid: 38938 components: - type: Transform pos: -15.459048,-1.2791443 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatCone entities: - - uid: 434 + - uid: 14978 components: - type: Transform pos: 75.668,-18.767076 parent: 2 - - uid: 2797 + - uid: 14979 components: - type: Transform pos: 75.60551,-21.735826 parent: 2 - - uid: 2799 + - uid: 14980 components: - type: Transform pos: 75.63676,-21.095201 parent: 2 - - uid: 2800 + - uid: 14981 components: - type: Transform pos: 75.71488,-18.063951 parent: 2 - - uid: 15040 + - uid: 14982 components: - type: Transform pos: -56.52692,-17.587082 @@ -118257,159 +118272,166 @@ entities: canCollide: False - proto: ClothingHeadHatCowboyBrown entities: - - uid: 15041 + - uid: 14983 components: - type: Transform pos: 51.58269,29.669313 parent: 2 - proto: ClothingHeadHatFedoraBrown entities: - - uid: 1838 + - uid: 1842 components: - type: Transform - parent: 1836 + parent: 1840 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatFedoraGrey entities: - - uid: 15020 + - uid: 14961 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - - uid: 15042 + - uid: 14984 components: - type: Transform pos: -21.532356,19.607018 parent: 2 - proto: ClothingHeadHatFlowerWreath entities: - - uid: 15043 + - uid: 14985 components: - type: Transform pos: 71.87246,-17.56805 parent: 2 - - uid: 15044 + - uid: 14986 components: - type: Transform pos: 71.65119,-17.641798 parent: 2 - proto: ClothingHeadHatHardhatBlue entities: - - uid: 1297 + - uid: 14987 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.3602,-23.591988 parent: 2 +- proto: ClothingHeadHatHopcap + entities: + - uid: 38310 + components: + - type: Transform + pos: -11.483725,-0.2599206 + parent: 2 - proto: ClothingHeadHatMimesoft entities: - - uid: 14844 + - uid: 14784 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatOrangesoft entities: - - uid: 15048 + - uid: 14988 components: - type: Transform pos: 17.486885,28.418232 parent: 2 - proto: ClothingHeadHatPaper entities: - - uid: 15049 + - uid: 14989 components: - type: Transform pos: -52.608284,-42.366573 parent: 2 - - uid: 15050 + - uid: 14990 components: - type: Transform pos: -52.40177,-42.51407 parent: 2 - proto: ClothingHeadHatPartyBlue entities: - - uid: 39112 + - uid: 38939 components: - type: Transform pos: -15.318423,-5.3572693 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatPartyGreen entities: - - uid: 39113 + - uid: 38940 components: - type: Transform pos: -12.724673,-5.3885193 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatPartyRed entities: - - uid: 39114 + - uid: 38941 components: - type: Transform pos: -13.724673,-4.6697693 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatPartyWaterCup entities: - - uid: 15051 + - uid: 14991 components: - type: Transform pos: -26.689962,43.860317 parent: 2 - - uid: 15052 + - uid: 14992 components: - type: Transform pos: -26.314962,43.797817 parent: 2 - - uid: 15053 + - uid: 14993 components: - type: Transform pos: -26.846212,43.641567 parent: 2 - - uid: 15054 + - uid: 14994 components: - type: Transform pos: -26.518087,43.547817 parent: 2 - proto: ClothingHeadHatPartyYellow entities: - - uid: 39115 + - uid: 38942 components: - type: Transform pos: -14.412173,-5.9822693 - parent: 38584 + parent: 38411 - proto: ClothingHeadHatPurplesoft entities: - - uid: 1872 + - uid: 1876 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatPurplesoftFlipped entities: - - uid: 1873 + - uid: 1877 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatRichard entities: - - uid: 1390 + - uid: 1394 components: - type: Transform - parent: 1388 + parent: 1392 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 34040 + - uid: 14995 components: - type: Transform pos: -61.5176,-23.48128 @@ -118419,74 +118441,74 @@ entities: radius: 3 - proto: ClothingHeadHatSecsoft entities: - - uid: 15055 + - uid: 14996 components: - type: Transform pos: 50.520054,-2.4849172 parent: 2 - proto: ClothingHeadHatSurgcapBlue entities: - - uid: 15056 + - uid: 14997 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 46.64194,-27.677853 parent: 2 - - uid: 15057 + - uid: 14998 components: - type: Transform pos: 4.0855947,-52.240982 parent: 2 - proto: ClothingHeadHatSyndie entities: - - uid: 2801 + - uid: 14999 components: - type: Transform pos: -77.52902,-3.0487504 parent: 2 - - uid: 15058 + - uid: 15000 components: - type: Transform pos: 100.429306,-1.9990987 parent: 2 - - uid: 39103 + - uid: 38930 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatUshanka entities: - - uid: 15059 + - uid: 15001 components: - type: Transform pos: 70.485535,-41.48498 parent: 2 - proto: ClothingHeadHatWarden entities: - - uid: 15012 + - uid: 14953 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatWelding entities: - - uid: 15060 + - uid: 15002 components: - type: Transform pos: -10.523207,-43.260536 parent: 2 - - uid: 15061 + - uid: 15003 components: - type: Transform pos: -49.5,-16.5 parent: 2 - type: Physics canCollide: False - - uid: 15062 + - uid: 15004 components: - type: Transform pos: -22.5,15.499999 @@ -118495,136 +118517,136 @@ entities: canCollide: False - proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 15063 + - uid: 15005 components: - type: Transform pos: -10.742213,-43.474052 parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 15064 + - uid: 15006 components: - type: Transform pos: -59.520313,42.482796 parent: 2 - type: Physics canCollide: False - - uid: 15065 + - uid: 15007 components: - type: Transform pos: 55.630886,-47.44692 parent: 2 - proto: ClothingHeadHatWeldingMaskPainted entities: - - uid: 15066 + - uid: 15008 components: - type: Transform pos: -79.500916,13.625097 parent: 2 - - uid: 15067 + - uid: 15009 components: - type: Transform pos: 11.554202,-3.2498593 parent: 2 - proto: ClothingHeadHatYellowsoft entities: - - uid: 15068 + - uid: 15010 components: - type: Transform pos: 17.533762,27.715107 parent: 2 - proto: ClothingHeadHelmetCult entities: - - uid: 15069 + - uid: 15011 components: - type: Transform pos: -30.480253,-72.3255 parent: 2 - proto: ClothingHeadHelmetERTJanitor entities: - - uid: 1874 + - uid: 1878 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetEVA entities: - - uid: 39116 + - uid: 38943 components: - type: Transform pos: -14.5,36.5 - parent: 38584 - - uid: 39117 + parent: 38411 + - uid: 38944 components: - type: Transform pos: 12.87703,19.666779 - parent: 38584 + parent: 38411 - proto: ClothingHeadHelmetEVALarge entities: - - uid: 15070 + - uid: 15012 components: - type: Transform pos: 70.5,-49.5 parent: 2 - proto: ClothingHeadHelmetFire entities: - - uid: 15071 + - uid: 15013 components: - type: Transform pos: -29.5,-44.5 parent: 2 - proto: ClothingHeadHelmetPodWars entities: - - uid: 15072 + - uid: 15014 components: - type: Transform pos: -21.007933,-81.30595 parent: 2 - proto: ClothingHeadHelmetRiot entities: - - uid: 15073 + - uid: 15015 components: - type: Transform pos: 63.387447,7.506543 parent: 2 - - uid: 15074 + - uid: 15016 components: - type: Transform pos: 63.387447,7.506543 parent: 2 - - uid: 15075 + - uid: 15017 components: - type: Transform pos: 63.387447,7.506543 parent: 2 - proto: ClothingHeadHelmetSecurityMedic entities: - - uid: 14816 + - uid: 14756 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetSwat entities: - - uid: 15076 + - uid: 15018 components: - type: Transform pos: 70.5,10.5 parent: 2 - proto: ClothingHeadNurseHat entities: - - uid: 15077 + - uid: 15019 components: - type: MetaData name: шапочка горничной - type: Transform pos: 0.027392589,50.83607 parent: 2 - - uid: 15078 + - uid: 15020 components: - type: MetaData desc: Для настоящих мужчин @@ -118634,7 +118656,7 @@ entities: parent: 2 - proto: ClothingHeadPyjamaSyndicatePink entities: - - uid: 15079 + - uid: 15021 components: - type: Transform rot: -1.5707953085339508 rad @@ -118642,7 +118664,7 @@ entities: parent: 2 - proto: ClothingHeadPyjamaSyndicateRed entities: - - uid: 15080 + - uid: 15022 components: - type: MetaData desc: Чтобы держать твою милую голову в тепле. @@ -118652,75 +118674,75 @@ entities: parent: 2 - proto: ClothingHeadsetBrigmedic entities: - - uid: 14817 + - uid: 14757 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadsetMining entities: - - uid: 15081 + - uid: 15023 components: - type: Transform pos: 33.407036,38.515415 parent: 2 - - uid: 15082 + - uid: 15024 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.662888,38.307953 parent: 2 - - uid: 39118 + - uid: 38945 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.640516,16.618439 - parent: 38584 + parent: 38411 - proto: ClothingMaskBandBlack entities: - - uid: 15083 + - uid: 15025 components: - type: Transform pos: -50.521004,-48.42694 parent: 2 - proto: ClothingMaskBat entities: - - uid: 15084 + - uid: 15026 components: - type: Transform pos: 10.709117,67.608955 parent: 2 - proto: ClothingMaskBear entities: - - uid: 15085 + - uid: 15027 components: - type: Transform pos: -3.1418045,0.1992526 parent: 2 - proto: ClothingMaskBee entities: - - uid: 15086 + - uid: 15028 components: - type: Transform pos: 48.406803,-25.420956 parent: 2 - proto: ClothingMaskBreath entities: - - uid: 15087 + - uid: 15029 components: - type: Transform pos: -40.586826,-13.385798 parent: 2 - type: Physics canCollide: False - - uid: 15088 + - uid: 15030 components: - type: Transform pos: 29.476248,60.442265 parent: 2 - - uid: 15089 + - uid: 15031 components: - type: Transform pos: -49.53151,20.5579 @@ -118729,14 +118751,14 @@ entities: canCollide: False - proto: ClothingMaskClown entities: - - uid: 14829 + - uid: 14769 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15090 + - uid: 15032 components: - type: Transform rot: -1.5707963267948966 rad @@ -118744,100 +118766,100 @@ entities: parent: 2 - proto: ClothingMaskClownBanana entities: - - uid: 14830 + - uid: 14770 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15091 + - uid: 15033 components: - type: Transform pos: -40.53833,-69.601776 parent: 2 - proto: ClothingMaskFox entities: - - uid: 15092 + - uid: 15034 components: - type: Transform pos: 10.886129,67.41721 parent: 2 - - uid: 15093 + - uid: 15035 components: - type: Transform pos: -4.823427,1.9396657 parent: 2 - proto: ClothingMaskGas entities: - - uid: 15094 + - uid: 15036 components: - type: Transform pos: -29.5,-44.5 parent: 2 - - uid: 15095 + - uid: 15037 components: - type: Transform pos: -18.498352,-32.40024 parent: 2 - - uid: 15096 + - uid: 15038 components: - type: Transform rot: 6.283185307179586 rad pos: -30.528467,-31.360748 parent: 2 - - uid: 15097 + - uid: 15039 components: - type: Transform rot: 6.283185307179586 rad pos: -29.768051,-31.44414 parent: 2 - - uid: 15098 + - uid: 15040 components: - type: Transform pos: -44.506374,-30.442978 parent: 2 - type: Physics canCollide: False - - uid: 15099 + - uid: 15041 components: - type: Transform pos: 49.5,-37.5 parent: 2 - type: Physics canCollide: False - - uid: 15100 + - uid: 15042 components: - type: Transform pos: -40.5,3.5 parent: 2 - type: Physics canCollide: False - - uid: 15101 + - uid: 15043 components: - type: Transform pos: -39.517647,-50.443714 parent: 2 - type: Physics canCollide: False - - uid: 15102 + - uid: 15044 components: - type: Transform pos: -35.451183,-35.34068 parent: 2 - proto: ClothingMaskGasAtmos entities: - - uid: 15103 + - uid: 15045 components: - type: Transform pos: -60.561146,22.612343 parent: 2 - - uid: 15105 + - uid: 15046 components: - type: Transform pos: -62.433693,8.033986 parent: 2 - - uid: 40937 + - uid: 15047 components: - type: Transform rot: -1.5707963267948966 rad @@ -118845,155 +118867,155 @@ entities: parent: 2 - proto: ClothingMaskGasMerc entities: - - uid: 15106 + - uid: 15048 components: - type: Transform pos: -34.478718,-2.3417118 parent: 2 - proto: ClothingMaskGasSwat entities: - - uid: 15107 + - uid: 15049 components: - type: Transform pos: 68.5,10.5 parent: 2 - proto: ClothingMaskGasVoiceChameleon entities: - - uid: 15108 + - uid: 15050 components: - type: Transform pos: -24.500002,15.5 parent: 2 - proto: ClothingMaskJackal entities: - - uid: 15109 + - uid: 15051 components: - type: Transform pos: 11.299159,67.653206 parent: 2 - proto: ClothingMaskMime entities: - - uid: 14845 + - uid: 14785 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskMuzzle entities: - - uid: 14779 + - uid: 14719 components: - type: Transform - parent: 14778 + parent: 14718 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15110 + - uid: 15052 components: - type: Transform pos: 42.5,-66.5 parent: 2 - - uid: 15111 + - uid: 15053 components: - type: Transform pos: 73.37959,23.53001 parent: 2 - - uid: 15112 + - uid: 15054 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.8122,19.013836 parent: 2 - - uid: 39119 + - uid: 38946 components: - type: Transform rot: 3.141592653589793 rad pos: 3.4404716,34.765015 - parent: 38584 + parent: 38411 - proto: ClothingMaskSadMime entities: - - uid: 14846 + - uid: 14786 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskScaredMime entities: - - uid: 14847 + - uid: 14787 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyClown entities: - - uid: 14831 + - uid: 14771 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15113 + - uid: 15055 components: - type: Transform pos: 47.621845,-53.26381 parent: 2 - proto: ClothingMaskSexyMime entities: - - uid: 14848 + - uid: 14788 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15114 + - uid: 15056 components: - type: Transform pos: -5.3621683,26.622637 parent: 2 - - uid: 39120 + - uid: 38947 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5029716,34.733765 - parent: 38584 + parent: 38411 - proto: ClothingMaskSterile entities: - - uid: 15115 + - uid: 15057 components: - type: Transform pos: 6.4998994,-42.29039 parent: 2 - - uid: 15116 + - uid: 15058 components: - type: Transform rot: 3.141592653589793 rad pos: 13.401516,-44.661903 parent: 2 - - uid: 15117 + - uid: 15059 components: - type: Transform pos: 45.5,-35.5 parent: 2 - type: Physics canCollide: False - - uid: 15118 + - uid: 15060 components: - type: Transform pos: 4.0884237,-13.635049 parent: 2 - - uid: 15119 + - uid: 15061 components: - type: Transform pos: 3.5965211,-52.177906 parent: 2 - - uid: 15120 + - uid: 15062 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119001,31 +119023,31 @@ entities: parent: 2 - proto: ClothingNeckBling entities: - - uid: 14516 + - uid: 14458 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15121 + - uid: 15063 components: - type: Transform pos: 25.709219,12.558254 parent: 2 - - uid: 15122 + - uid: 15064 components: - type: Transform pos: 25.599844,12.542628 parent: 2 - - uid: 15123 + - uid: 15065 components: - type: Transform pos: 25.318594,12.495754 parent: 2 - proto: ClothingNeckCloakAce entities: - - uid: 15124 + - uid: 15066 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119033,60 +119055,60 @@ entities: parent: 2 - proto: ClothingNeckCloakBi entities: - - uid: 15125 + - uid: 15067 components: - type: Transform pos: -55.703693,-37.289703 parent: 2 - - uid: 15126 + - uid: 15068 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 89.51352,-4.435248 parent: 2 - - uid: 15127 + - uid: 15069 components: - type: Transform pos: 51.496376,-25.427755 parent: 2 - proto: ClothingNeckCloakEnby entities: - - uid: 15128 + - uid: 15070 components: - type: Transform pos: 51.558907,-13.44254 parent: 2 - proto: ClothingNeckCloakGay entities: - - uid: 15129 + - uid: 15071 components: - type: Transform pos: -55.33888,-37.444935 parent: 2 - proto: ClothingNeckCloakGoliathCloak entities: - - uid: 15130 + - uid: 15072 components: - type: Transform pos: 43.456936,-24.711899 parent: 2 - proto: ClothingNeckCloakHerald entities: - - uid: 15131 + - uid: 15073 components: - type: Transform pos: 43.496037,-54.385834 parent: 2 - proto: ClothingNeckCloakIntersex entities: - - uid: 15132 + - uid: 15074 components: - type: Transform pos: -55.58888,-37.632435 parent: 2 - proto: ClothingNeckCloakLesbian entities: - - uid: 15133 + - uid: 15075 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119094,37 +119116,37 @@ entities: parent: 2 - proto: ClothingNeckCloakMiner entities: - - uid: 15134 + - uid: 15076 components: - type: Transform pos: -55.51422,-50.568737 parent: 2 - - uid: 15135 + - uid: 15077 components: - type: Transform pos: -102.4832,-18.476238 parent: 2 - - uid: 39121 + - uid: 38948 components: - type: Transform pos: -11.5,19.5 - parent: 38584 + parent: 38411 - proto: ClothingNeckCloakTrans entities: - - uid: 15136 + - uid: 15078 components: - type: Transform rot: 3.141592653589793 rad pos: -41.501427,-71.51004 parent: 2 - - uid: 15137 + - uid: 15079 components: - type: Transform pos: 49.497066,-22.42234 parent: 2 - proto: ClothingNeckCloakVoid entities: - - uid: 15138 + - uid: 15080 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119132,113 +119154,113 @@ entities: parent: 2 - proto: ClothingNeckClownmedal entities: - - uid: 15139 + - uid: 15081 components: - type: Transform pos: 40.95823,23.521482 parent: 2 - proto: ClothingNeckHeadphones entities: - - uid: 15140 + - uid: 15082 components: - type: Transform pos: 56.742912,15.760529 parent: 2 - - uid: 15141 + - uid: 15083 components: - type: Transform pos: 56.733246,15.393333 parent: 2 - - uid: 15142 + - uid: 15084 components: - type: Transform pos: 56.733246,15.393333 parent: 2 - - uid: 15143 + - uid: 15085 components: - type: Transform pos: 56.733246,15.393333 parent: 2 - - uid: 15144 + - uid: 15086 components: - type: Transform pos: 56.727287,15.588654 parent: 2 - - uid: 15145 + - uid: 15087 components: - type: Transform pos: 56.733246,15.393333 parent: 2 - - uid: 15146 + - uid: 15088 components: - type: Transform pos: 56.733246,15.377708 parent: 2 - - uid: 15147 + - uid: 15089 components: - type: Transform pos: -58.5,-49.5 parent: 2 - proto: ClothingNeckHorrific entities: - - uid: 15021 + - uid: 14962 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - proto: ClothingNeckMantleCap entities: - - uid: 15148 + - uid: 15090 components: - type: Transform pos: 13.52143,0.6648903 parent: 2 - proto: ClothingNeckMantleCE entities: - - uid: 15149 + - uid: 15091 components: - type: Transform pos: -58.490314,5.5715113 parent: 2 - proto: ClothingNeckMantleCMO entities: - - uid: 15150 + - uid: 15092 components: - type: Transform pos: 24.487383,-50.378414 parent: 2 - proto: ClothingNeckMantleHOP entities: - - uid: 15151 + - uid: 15093 components: - type: Transform pos: -15.52096,-3.4409883 parent: 2 - proto: ClothingNeckMantleHOS entities: - - uid: 15152 + - uid: 15094 components: - type: Transform pos: 36.564354,22.725296 parent: 2 - proto: ClothingNeckMantleRD entities: - - uid: 15153 + - uid: 15095 components: - type: Transform pos: -16.468708,-45.430428 parent: 2 - proto: ClothingNeckNanoTrasenPin entities: - - uid: 15154 + - uid: 15096 components: - type: Transform pos: 71.252914,-17.538551 parent: 2 - proto: ClothingNeckScarfStripedBlack entities: - - uid: 15155 + - uid: 15097 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119246,64 +119268,64 @@ entities: parent: 2 - proto: ClothingNeckScarfStripedSyndieGreen entities: - - uid: 14900 + - uid: 14837 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckScarfStripedSyndieRed entities: - - uid: 2808 - components: - - type: Transform - pos: -77.48215,-3.5331254 - parent: 2 - - uid: 14904 + - uid: 14834 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 15098 + components: + - type: Transform + pos: -77.48215,-3.5331254 + parent: 2 - proto: ClothingNeckScarfStripedZebra entities: - - uid: 9974 + - uid: 14789 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 13203 + - uid: 15099 components: - type: Transform pos: -5.6434183,26.544512 parent: 2 - proto: ClothingNeckStethoscope entities: - - uid: 15156 + - uid: 15100 components: - type: Transform pos: 14.568494,-58.43179 parent: 2 - - uid: 15157 + - uid: 15101 components: - type: Transform pos: 32.043938,-26.529804 parent: 2 - - uid: 15158 + - uid: 15102 components: - type: Transform pos: 31.84081,-26.48293 parent: 2 - - uid: 15159 + - uid: 15103 components: - type: Transform pos: 21.703972,-42.332386 parent: 2 - - uid: 15160 + - uid: 15104 components: - type: Transform pos: 47.5,-35.5 @@ -119312,36 +119334,36 @@ entities: canCollide: False - proto: ClothingNeckStoleChaplain entities: - - uid: 15161 + - uid: 15105 components: - type: Transform pos: -21.513214,-79.44685 parent: 2 - proto: ClothingNeckSyndicakePin entities: - - uid: 14893 + - uid: 14845 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39104 + - uid: 38931 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckTieDet entities: - - uid: 15022 + - uid: 14963 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - - uid: 15162 + - uid: 15106 components: - type: Transform pos: 36.449116,-50.524494 @@ -119350,30 +119372,30 @@ entities: canCollide: False - proto: ClothingNeckTieRed entities: - - uid: 15023 + - uid: 14964 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - proto: ClothingNeckTieSci entities: - - uid: 15024 + - uid: 14965 components: - type: Transform - parent: 15018 + parent: 14959 - type: Physics canCollide: False - proto: ClothingOuterAerostaticBomberJacket entities: - - uid: 14918 + - uid: 14859 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15163 + - uid: 15107 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119381,43 +119403,43 @@ entities: parent: 2 - proto: ClothingOuterApronChef entities: - - uid: 15164 + - uid: 15108 components: - type: Transform pos: 22.545242,65.64183 parent: 2 - type: Physics canCollide: False - - uid: 15165 + - uid: 15109 components: - type: Transform pos: -28.37068,32.64315 parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 15166 + - uid: 15110 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 15167 + - uid: 15111 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 15168 + - uid: 15112 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 15169 + - uid: 15113 components: - type: Transform pos: 61.5,7.5 parent: 2 - proto: ClothingOuterArmorHeavy entities: - - uid: 15170 + - uid: 15114 components: - type: Transform pos: 69.5,10.5 @@ -119453,41 +119475,41 @@ entities: title: null - proto: ClothingOuterArmorReflective entities: - - uid: 15171 + - uid: 15115 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 15172 + - uid: 15116 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 15173 + - uid: 15117 components: - type: Transform pos: 61.5,8.5 parent: 2 - proto: ClothingOuterArmorRiot entities: - - uid: 15174 + - uid: 15118 components: - type: Transform pos: 63.512447,7.569043 parent: 2 - - uid: 15175 + - uid: 15119 components: - type: Transform pos: 63.512447,7.569043 parent: 2 - - uid: 15176 + - uid: 15120 components: - type: Transform pos: 63.512447,7.569043 parent: 2 - proto: ClothingOuterCardborg entities: - - uid: 15177 + - uid: 15121 components: - type: Transform pos: 47.511616,-54.497818 @@ -119496,7 +119518,7 @@ entities: canCollide: False - proto: ClothingOuterCoatAMG entities: - - uid: 15178 + - uid: 15122 components: - type: Transform pos: 38.485973,-72.53411 @@ -119510,7 +119532,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15179 + - uid: 15123 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119518,14 +119540,14 @@ entities: parent: 2 - proto: ClothingOuterCoatExpensive entities: - - uid: 15180 + - uid: 15124 components: - type: Transform pos: 20.5,63.5 parent: 2 - proto: ClothingOuterCoatJensen entities: - - uid: 15181 + - uid: 15125 components: - type: Transform rot: -1.5707963267948966 rad @@ -119533,158 +119555,158 @@ entities: parent: 2 - proto: ClothingOuterCoatLabSecurityMedic entities: - - uid: 14818 + - uid: 14758 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCoatWardenAlt entities: - - uid: 15013 + - uid: 14954 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterDogi entities: - - uid: 15182 + - uid: 15126 components: - type: Transform pos: -55.5,-44.5 parent: 2 - proto: ClothingOuterHardsuitBrigmedic entities: - - uid: 14819 + - uid: 14759 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitClown entities: - - uid: 14832 + - uid: 14772 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitMime entities: - - uid: 14849 + - uid: 14790 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitSalvage entities: - - uid: 39122 + - uid: 38949 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,16.5 - parent: 38584 + parent: 38411 - proto: ClothingOuterHardsuitSyndicate entities: - - uid: 39123 + - uid: 38950 components: - type: Transform pos: -14.5,36.5 - parent: 38584 + parent: 38411 - proto: ClothingOuterHoodieBlack entities: - - uid: 15183 + - uid: 15127 components: - type: Transform pos: -50.255486,-48.44169 parent: 2 - proto: ClothingOuterRobesCult entities: - - uid: 15184 + - uid: 15128 components: - type: Transform pos: -30.609613,-76.48932 parent: 2 - proto: ClothingOuterStraightjacket entities: - - uid: 14780 + - uid: 14720 components: - type: Transform - parent: 14778 + parent: 14718 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15185 + - uid: 15129 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.45677,-66.6926 parent: 2 - - uid: 15186 + - uid: 15130 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.470066,2.4219537 parent: 2 - - uid: 15187 + - uid: 15131 components: - type: Transform pos: 70.371666,18.826336 parent: 2 - proto: ClothingOuterSuitCarp entities: - - uid: 15188 + - uid: 15132 components: - type: Transform pos: 25.5,67.5 parent: 2 - proto: ClothingOuterSuitEmergency entities: - - uid: 15189 + - uid: 15133 components: - type: Transform pos: 69.5,-49.5 parent: 2 - proto: ClothingOuterSuitFire entities: - - uid: 15190 + - uid: 15134 components: - type: Transform pos: -29.5,-44.5 parent: 2 - proto: ClothingOuterSuitIan entities: - - uid: 15191 + - uid: 15135 components: - type: Transform pos: -40.26674,-59.435745 parent: 2 - proto: ClothingOuterVestArmorMedSec entities: - - uid: 14820 + - uid: 14760 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterVestHazard entities: - - uid: 15192 + - uid: 15136 components: - type: Transform pos: 20.535162,10.5619135 parent: 2 - type: Physics canCollide: False - - uid: 15193 + - uid: 15137 components: - type: Transform pos: 49.5,-37.5 @@ -119693,57 +119715,57 @@ entities: canCollide: False - proto: ClothingOuterVestSecurityMedic entities: - - uid: 14821 + - uid: 14761 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterCoat entities: - - uid: 15194 + - uid: 15138 components: - type: Transform pos: -30.328856,28.425974 parent: 2 - proto: ClothingOuterWinterMime entities: - - uid: 14850 + - uid: 14791 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterSyndie entities: - - uid: 14902 + - uid: 14842 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingRandomSpawner entities: - - uid: 15195 + - uid: 15139 components: - type: Transform pos: 11.345603,70.69221 parent: 2 - - uid: 15196 + - uid: 15140 components: - type: Transform pos: 11.6524935,70.487724 parent: 2 - - uid: 15197 + - uid: 15141 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -57.70558,-20.529505 parent: 2 - - uid: 15198 + - uid: 15142 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119751,16 +119773,16 @@ entities: parent: 2 - proto: ClothingShoesAerostatic entities: - - uid: 14919 + - uid: 14860 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsCombatFilled entities: - - uid: 15199 + - uid: 15143 components: - type: Transform pos: 36.193935,21.963104 @@ -119776,48 +119798,48 @@ entities: - type: InsideEntityStorage - proto: ClothingShoesBootsLaceup entities: - - uid: 15200 + - uid: 15144 components: - type: Transform pos: -49.50318,-48.500687 parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 14958 + - uid: 14899 components: - type: Transform - parent: 14956 + parent: 14897 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14962 + - uid: 14903 components: - type: Transform - parent: 14960 + parent: 14901 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14966 + - uid: 14907 components: - type: Transform - parent: 14964 + parent: 14905 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15201 + - uid: 15145 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -15.64907,-14.485182 parent: 2 - - uid: 15202 + - uid: 15146 components: - type: Transform pos: -45.534843,-13.538627 parent: 2 - type: Physics canCollide: False - - uid: 15203 + - uid: 15147 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119825,7 +119847,7 @@ entities: parent: 2 - proto: ClothingShoesBootsPerformer entities: - - uid: 15204 + - uid: 15148 components: - type: Transform rot: 6.283185307179586 rad @@ -119833,37 +119855,37 @@ entities: parent: 2 - proto: ClothingShoesBootsWinterSyndicate entities: - - uid: 14894 + - uid: 14840 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39105 + - uid: 38932 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesChef entities: - - uid: 15205 + - uid: 15149 components: - type: Transform pos: -32.67555,29.368694 parent: 2 - proto: ClothingShoesClownBanana entities: - - uid: 15206 + - uid: 15150 components: - type: Transform pos: -40.55056,-69.51617 parent: 2 - proto: ClothingShoesColorGreen entities: - - uid: 15207 + - uid: 15151 components: - type: MetaData desc: Поношенные салатовые кеды. @@ -119873,30 +119895,30 @@ entities: parent: 2 - proto: ClothingShoesCult entities: - - uid: 15208 + - uid: 15152 components: - type: Transform pos: -35.632423,-77.37206 parent: 2 - proto: ClothingShoesGaloshes entities: - - uid: 1875 + - uid: 1879 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1876 + - uid: 1880 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesGreenLizardskin entities: - - uid: 15209 + - uid: 15153 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -119904,55 +119926,55 @@ entities: parent: 2 - proto: ClothingShoesSchoolBlack entities: - - uid: 14789 + - uid: 14729 components: - type: Transform - parent: 14788 + parent: 14728 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesSchoolWhite entities: - - uid: 14790 + - uid: 14730 components: - type: Transform - parent: 14788 + parent: 14728 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesSlippers entities: - - uid: 14897 + - uid: 14844 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15210 + - uid: 15154 components: - type: Transform pos: 49.5,-16.5 parent: 2 - proto: ClothingShoesSwat entities: - - uid: 15211 + - uid: 15155 components: - type: Transform pos: 68.5,8.5 parent: 2 - proto: ClothingShoesTourist entities: - - uid: 14949 + - uid: 14890 components: - type: Transform - parent: 14947 + parent: 14888 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesWizard entities: - - uid: 15212 + - uid: 15156 components: - type: MetaData desc: Японские деревянные сандалии. @@ -119960,7 +119982,7 @@ entities: - type: Transform pos: -45.41999,-48.686264 parent: 2 - - uid: 15213 + - uid: 15157 components: - type: MetaData desc: Японские деревянные сандалии. @@ -119968,138 +119990,138 @@ entities: - type: Transform pos: -46.688583,-48.627266 parent: 2 - - uid: 15215 + - uid: 15159 components: - type: MetaData desc: Пара удобных летних тапочек. name: сланцы - type: Transform - parent: 15214 + parent: 15158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15220 + - uid: 15164 components: - type: MetaData desc: Пара удобных летних тапочек. name: сланцы - type: Transform - parent: 15219 + parent: 15163 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15225 + - uid: 15169 components: - type: MetaData desc: Пара удобных летних тапочек. name: сланцы - type: Transform - parent: 15224 + parent: 15168 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUnderSocksCoder entities: - - uid: 15229 + - uid: 15173 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -57.679985,7.456685 parent: 2 - - uid: 15230 + - uid: 15174 components: - type: Transform pos: -58.5,-49.5 parent: 2 - - uid: 15231 + - uid: 15175 components: - type: Transform pos: -29.321905,-69.36804 parent: 2 - proto: ClothingUniformJumpskirtBrigmedic entities: - - uid: 14822 + - uid: 14762 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtDetectiveGrey entities: - - uid: 15232 + - uid: 15176 components: - type: Transform pos: -36.5,59.5 parent: 2 - proto: ClothingUniformJumpskirtElegantMaid entities: - - uid: 14950 + - uid: 14891 components: - type: Transform - parent: 14947 + parent: 14888 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15233 + - uid: 15177 components: - type: Transform pos: 0.036769398,50.45079 parent: 2 - - uid: 15234 + - uid: 15178 components: - type: Transform pos: -0.33014846,50.450794 parent: 2 - proto: ClothingUniformJumpskirtHoSParadeMale entities: - - uid: 15236 + - uid: 15180 components: - type: Transform - parent: 15235 + parent: 15179 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 15238 + - uid: 15182 components: - type: Transform pos: 53.54969,-25.345713 parent: 2 - - uid: 15239 + - uid: 15183 components: - type: Transform pos: -0.29345667,50.450794 parent: 2 - proto: ClothingUniformJumpskirtJanitor entities: - - uid: 1877 + - uid: 1881 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1878 + - uid: 1882 components: - type: Transform - parent: 1868 + parent: 1872 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtMime entities: - - uid: 14851 + - uid: 14792 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPerformer entities: - - uid: 15240 + - uid: 15184 components: - type: Transform rot: 6.283185307179586 rad @@ -120107,198 +120129,198 @@ entities: parent: 2 - proto: ClothingUniformJumpskirtPrisoner entities: - - uid: 15242 + - uid: 15186 components: - type: Transform - parent: 15241 + parent: 15185 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15243 + - uid: 15187 components: - type: Transform - parent: 15241 + parent: 15185 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15247 + - uid: 15191 components: - type: Transform - parent: 15246 + parent: 15190 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15248 + - uid: 15192 components: - type: Transform - parent: 15246 + parent: 15190 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtSchool entities: - - uid: 14791 + - uid: 14731 components: - type: Transform - parent: 14788 + parent: 14728 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14792 + - uid: 14732 components: - type: Transform - parent: 14788 + parent: 14728 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitAerostatic entities: - - uid: 14920 + - uid: 14861 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitBrigmedic entities: - - uid: 14823 + - uid: 14763 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClown entities: - - uid: 14833 + - uid: 14773 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitClownBanana entities: - - uid: 14834 + - uid: 14774 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15251 + - uid: 15195 components: - type: Transform pos: -40.58059,-69.534195 parent: 2 - proto: ClothingUniformJumpsuitColorBlack entities: - - uid: 15252 + - uid: 15196 components: - type: Transform pos: -49.827705,-48.589184 parent: 2 - proto: ClothingUniformJumpsuitDetective entities: - - uid: 1839 + - uid: 1843 components: - type: Transform - parent: 1836 + parent: 1840 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitDetectiveGrey entities: - - uid: 15253 + - uid: 15197 components: - type: Transform pos: -36.5,59.5 parent: 2 - proto: ClothingUniformJumpsuitHoSParadeMale entities: - - uid: 15237 + - uid: 15181 components: - type: Transform - parent: 15235 + parent: 15179 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitKimono entities: - - uid: 15254 + - uid: 15198 components: - type: Transform pos: -46.6148,-48.380947 parent: 2 - - uid: 15255 + - uid: 15199 components: - type: Transform pos: -45.355076,-48.42951 parent: 2 - proto: ClothingUniformJumpsuitLoungewear entities: - - uid: 15256 + - uid: 15200 components: - type: Transform pos: -55.444347,-45.36158 parent: 2 - proto: ClothingUniformJumpsuitMime entities: - - uid: 14852 + - uid: 14793 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitNanotrasen entities: - - uid: 15257 + - uid: 15201 components: - type: Transform pos: 6.542385,-83.541824 parent: 2 - proto: ClothingUniformJumpsuitPrisoner entities: - - uid: 15244 + - uid: 15188 components: - type: Transform - parent: 15241 + parent: 15185 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15245 + - uid: 15189 components: - type: Transform - parent: 15241 + parent: 15185 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15249 + - uid: 15193 components: - type: Transform - parent: 15246 + parent: 15190 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15250 + - uid: 15194 components: - type: Transform - parent: 15246 + parent: 15190 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPyjamaSyndicateBlack entities: - - uid: 2807 + - uid: 15202 components: - type: Transform pos: -77.5134,-3.5800004 parent: 2 - proto: ClothingUniformJumpsuitRepairmanNT entities: - - uid: 15258 + - uid: 15203 components: - type: Transform rot: 1.5707973450558423 rad @@ -120306,7 +120328,7 @@ entities: parent: 2 - proto: ClothingUniformJumpsuitRepairmanSyndie entities: - - uid: 15259 + - uid: 15204 components: - type: Transform pos: -34.717594,-33.68413 @@ -120322,21 +120344,21 @@ entities: - type: InsideEntityStorage - proto: ClothingUniformJumpsuitSyndieFormal entities: - - uid: 39106 + - uid: 38933 components: - type: Transform - parent: 39100 + parent: 38927 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClownRecorder entities: - - uid: 15260 + - uid: 15205 components: - type: Transform pos: -8.497296,31.748924 parent: 2 - - uid: 15261 + - uid: 15206 components: - type: Transform rot: -1.5707953085339508 rad @@ -120344,927 +120366,927 @@ entities: parent: 2 - proto: Cobweb1 entities: - - uid: 15262 + - uid: 15207 components: - type: Transform pos: -41.5,-16.5 parent: 2 - - uid: 15263 + - uid: 15208 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 - - uid: 15264 + - uid: 15209 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-16.5 parent: 2 - - uid: 15265 + - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-17.5 parent: 2 - - uid: 15266 + - uid: 15211 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-17.5 parent: 2 - - uid: 15267 + - uid: 15212 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-17.5 parent: 2 - - uid: 15268 + - uid: 15213 components: - type: Transform pos: -41.5,-13.5 parent: 2 - - uid: 15269 + - uid: 15214 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-17.5 parent: 2 - - uid: 15270 + - uid: 15215 components: - type: Transform pos: -36.5,-72.5 parent: 2 - - uid: 15271 + - uid: 15216 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-62.5 parent: 2 - - uid: 15272 + - uid: 15217 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-16.5 parent: 2 - - uid: 15273 + - uid: 15218 components: - type: Transform pos: -39.5,-17.5 parent: 2 - - uid: 15274 + - uid: 15219 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-16.5 parent: 2 - - uid: 15275 + - uid: 15220 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-16.5 parent: 2 - - uid: 15276 + - uid: 15221 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-36.5 parent: 2 - - uid: 15277 + - uid: 15222 components: - type: Transform pos: 97.5,-1.5 parent: 2 - - uid: 15278 + - uid: 15223 components: - type: Transform rot: -1.5707963267948966 rad pos: 97.5,5.5 parent: 2 - - uid: 15279 + - uid: 15224 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,6.5 parent: 2 - - uid: 15280 + - uid: 15225 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-33.5 parent: 2 - - uid: 15281 + - uid: 15226 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-36.5 parent: 2 - - uid: 15282 + - uid: 15227 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-36.5 parent: 2 - - uid: 15283 + - uid: 15228 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-35.5 parent: 2 - - uid: 15284 + - uid: 15229 components: - type: Transform pos: -70.5,-35.5 parent: 2 - - uid: 15285 + - uid: 15230 components: - type: Transform pos: -69.5,-34.5 parent: 2 - - uid: 15286 + - uid: 15231 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-34.5 parent: 2 - - uid: 15287 + - uid: 15232 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-34.5 parent: 2 - - uid: 15288 + - uid: 15233 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-34.5 parent: 2 - - uid: 15289 + - uid: 15234 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 - - uid: 15290 + - uid: 15235 components: - type: Transform pos: -71.5,-39.5 parent: 2 - - uid: 15291 + - uid: 15236 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-47.5 parent: 2 - - uid: 15292 + - uid: 15237 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-34.5 parent: 2 - - uid: 15293 + - uid: 15238 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-34.5 parent: 2 - - uid: 40983 + - uid: 15239 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-28.5 parent: 2 - - uid: 40984 + - uid: 15240 components: - type: Transform pos: -70.5,-25.5 parent: 2 - - uid: 40985 + - uid: 15241 components: - type: Transform pos: -69.5,-22.5 parent: 2 - - uid: 40986 + - uid: 15242 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-22.5 parent: 2 - - uid: 40987 + - uid: 15243 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-24.5 parent: 2 - - uid: 40994 + - uid: 15244 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-29.5 parent: 2 - - uid: 40995 + - uid: 15245 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 - - uid: 40996 + - uid: 15246 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-28.5 parent: 2 - - uid: 40997 + - uid: 15247 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 - - uid: 40998 + - uid: 15248 components: - type: Transform pos: -70.5,-29.5 parent: 2 - - uid: 40999 + - uid: 15249 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-28.5 parent: 2 - - uid: 41000 + - uid: 15250 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-26.5 parent: 2 - - uid: 41001 + - uid: 15251 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-27.5 parent: 2 - - uid: 41002 + - uid: 15252 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-26.5 parent: 2 - - uid: 41003 + - uid: 15253 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-23.5 parent: 2 - - uid: 41004 + - uid: 15254 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 - - uid: 41005 + - uid: 15255 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-23.5 parent: 2 - - uid: 41012 + - uid: 15256 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-27.5 parent: 2 - - uid: 41013 + - uid: 15257 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-27.5 parent: 2 - - uid: 41014 + - uid: 15258 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-28.5 parent: 2 - - uid: 41015 + - uid: 15259 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-27.5 parent: 2 - - uid: 41025 + - uid: 15260 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-27.5 parent: 2 - - uid: 41026 + - uid: 15261 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-27.5 parent: 2 - - uid: 41027 + - uid: 15262 components: - type: Transform pos: -70.5,-27.5 parent: 2 - - uid: 41028 + - uid: 15263 components: - type: Transform pos: -69.5,-28.5 parent: 2 - proto: Cobweb2 entities: - - uid: 15294 + - uid: 15264 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 - - uid: 15295 + - uid: 15265 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-16.5 parent: 2 - - uid: 15296 + - uid: 15266 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-14.5 parent: 2 - - uid: 15297 + - uid: 15267 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-15.5 parent: 2 - - uid: 15298 + - uid: 15268 components: - type: Transform pos: -38.5,-13.5 parent: 2 - - uid: 15299 + - uid: 15269 components: - type: Transform pos: -30.5,-59.5 parent: 2 - - uid: 15300 + - uid: 15270 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-64.5 parent: 2 - - uid: 15301 + - uid: 15271 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-78.5 parent: 2 - - uid: 15302 + - uid: 15272 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-61.5 parent: 2 - - uid: 15303 + - uid: 15273 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-15.5 parent: 2 - - uid: 15304 + - uid: 15274 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-79.5 parent: 2 - - uid: 15305 + - uid: 15275 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-16.5 parent: 2 - - uid: 15306 + - uid: 15276 components: - type: Transform pos: -41.5,-17.5 parent: 2 - - uid: 15307 + - uid: 15277 components: - type: Transform pos: -35.5,-64.5 parent: 2 - - uid: 15308 + - uid: 15278 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-62.5 parent: 2 - - uid: 15309 + - uid: 15279 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-78.5 parent: 2 - - uid: 15310 + - uid: 15280 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 - - uid: 15311 + - uid: 15281 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-34.5 parent: 2 - - uid: 15312 + - uid: 15282 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-36.5 parent: 2 - - uid: 15313 + - uid: 15283 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-34.5 parent: 2 - - uid: 15314 + - uid: 15284 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-36.5 parent: 2 - - uid: 15315 + - uid: 15285 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-33.5 parent: 2 - - uid: 15316 + - uid: 15286 components: - type: Transform pos: 100.5,-1.5 parent: 2 - - uid: 15317 + - uid: 15287 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,10.5 parent: 2 - - uid: 15318 + - uid: 15288 components: - type: Transform pos: 77.5,-1.5 parent: 2 - - uid: 15319 + - uid: 15289 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,4.5 parent: 2 - - uid: 15320 + - uid: 15290 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-34.5 parent: 2 - - uid: 15321 + - uid: 15291 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-36.5 parent: 2 - - uid: 15322 + - uid: 15292 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-35.5 parent: 2 - - uid: 15323 + - uid: 15293 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-36.5 parent: 2 - - uid: 15324 + - uid: 15294 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-35.5 parent: 2 - - uid: 15325 + - uid: 15295 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-35.5 parent: 2 - - uid: 15326 + - uid: 15296 components: - type: Transform pos: -70.5,-35.5 parent: 2 - - uid: 15327 + - uid: 15297 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-34.5 parent: 2 - - uid: 15328 + - uid: 15298 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-34.5 parent: 2 - - uid: 15329 + - uid: 15299 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-34.5 parent: 2 - - uid: 15330 + - uid: 15300 components: - type: Transform pos: -61.5,-39.5 parent: 2 - - uid: 15331 + - uid: 15301 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-42.5 parent: 2 - - uid: 15332 + - uid: 15302 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-43.5 parent: 2 - - uid: 15333 + - uid: 15303 components: - type: Transform pos: -70.5,-34.5 parent: 2 - - uid: 40988 + - uid: 15304 components: - type: Transform pos: -67.5,-25.5 parent: 2 - - uid: 40989 + - uid: 15305 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-27.5 parent: 2 - - uid: 40990 + - uid: 15306 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-28.5 parent: 2 - - uid: 40991 + - uid: 15307 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-29.5 parent: 2 - - uid: 40992 + - uid: 15308 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-29.5 parent: 2 - - uid: 40993 + - uid: 15309 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-28.5 parent: 2 - - uid: 41006 + - uid: 15310 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-24.5 parent: 2 - - uid: 41007 + - uid: 15311 components: - type: Transform pos: -69.5,-24.5 parent: 2 - - uid: 41008 + - uid: 15312 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-27.5 parent: 2 - - uid: 41009 + - uid: 15313 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-28.5 parent: 2 - - uid: 41010 + - uid: 15314 components: - type: Transform pos: -71.5,-28.5 parent: 2 - - uid: 41011 + - uid: 15315 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-26.5 parent: 2 - - uid: 41029 + - uid: 15316 components: - type: Transform pos: -70.5,-28.5 parent: 2 - proto: CombatKnife entities: - - uid: 15334 + - uid: 15317 components: - type: Transform pos: -20.695433,-81.44657 parent: 2 - proto: ComfyChair entities: - - uid: 15335 + - uid: 15318 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-9.5 parent: 2 - - uid: 15336 + - uid: 15319 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,16.5 parent: 2 - - uid: 15337 + - uid: 15320 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,16.5 parent: 2 - - uid: 15338 + - uid: 15321 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-8.5 parent: 2 - - uid: 15339 + - uid: 15322 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,16.5 parent: 2 - - uid: 15340 + - uid: 15323 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-52.5 parent: 2 - - uid: 15341 + - uid: 15324 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 2 - - uid: 15342 + - uid: 15325 components: - type: Transform pos: 8.5,8.5 parent: 2 - - uid: 15343 + - uid: 15326 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,9.5 parent: 2 - - uid: 15344 + - uid: 15327 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,10.5 parent: 2 - - uid: 15345 + - uid: 15328 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,9.5 parent: 2 - - uid: 15346 + - uid: 15329 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,10.5 parent: 2 - - uid: 15347 + - uid: 15330 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,8.5 parent: 2 - - uid: 15348 + - uid: 15331 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,8.5 parent: 2 - - uid: 15349 + - uid: 15332 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,8.5 parent: 2 - - uid: 15350 + - uid: 15333 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,9.5 parent: 2 - - uid: 15351 + - uid: 15334 components: - type: Transform pos: -12.5,10.5 parent: 2 - - uid: 15352 + - uid: 15335 components: - type: Transform pos: -11.5,10.5 parent: 2 - - uid: 15353 + - uid: 15336 components: - type: Transform pos: -10.5,10.5 parent: 2 - - uid: 15354 + - uid: 15337 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,16.5 parent: 2 - - uid: 15355 + - uid: 15338 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,61.5 parent: 2 - - uid: 15356 + - uid: 15339 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - uid: 15357 + - uid: 15340 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,47.5 parent: 2 - - uid: 15358 + - uid: 15341 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-38.5 parent: 2 - - uid: 15359 + - uid: 15342 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-77.5 parent: 2 - - uid: 15360 + - uid: 15343 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,13.5 parent: 2 - - uid: 15361 + - uid: 15344 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,46.5 parent: 2 - - uid: 15362 + - uid: 15345 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,20.5 parent: 2 - - uid: 15363 + - uid: 15346 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 - - uid: 15364 + - uid: 15347 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,1.5 parent: 2 - - uid: 15365 + - uid: 15348 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-44.5 parent: 2 - - uid: 15366 + - uid: 15349 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - - uid: 15367 + - uid: 15350 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 - - uid: 15368 + - uid: 15351 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-30.5 parent: 2 - - uid: 15369 + - uid: 15352 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-9.5 parent: 2 - - uid: 15370 + - uid: 15353 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-30.5 parent: 2 - - uid: 15371 + - uid: 15354 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-66.5 parent: 2 - - uid: 15372 + - uid: 15355 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-67.5 parent: 2 - - uid: 15373 + - uid: 15356 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-66.5 parent: 2 - - uid: 15374 + - uid: 15357 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-67.5 parent: 2 - - uid: 15375 + - uid: 15358 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-41.5 parent: 2 - - uid: 15376 + - uid: 15359 components: - type: Transform pos: -70.5,-39.5 parent: 2 - - uid: 15377 + - uid: 15360 components: - type: Transform pos: -66.5,-39.5 parent: 2 - - uid: 15378 + - uid: 15361 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-41.5 parent: 2 - - uid: 15379 + - uid: 15362 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-44.5 parent: 2 - - uid: 15380 + - uid: 15363 components: - type: Transform pos: -32.5,-17.5 parent: 2 - - uid: 15381 + - uid: 15364 components: - type: Transform pos: 54.5,31.5 parent: 2 - proto: CommsComputerCircuitboard entities: - - uid: 15382 + - uid: 15365 components: - type: Transform pos: -35.485302,19.5736 @@ -121273,29 +121295,29 @@ entities: canCollide: False - proto: ComputerAlert entities: - - uid: 15383 + - uid: 15366 components: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 15384 + - uid: 15367 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,18.5 parent: 2 - - uid: 15385 + - uid: 15368 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,6.5 parent: 2 - - uid: 15386 + - uid: 15369 components: - type: Transform pos: -59.5,20.5 parent: 2 - - uid: 15387 + - uid: 15370 components: - type: Transform rot: -1.5707963267948966 rad @@ -121303,13 +121325,13 @@ entities: parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 15388 + - uid: 15371 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-46.5 parent: 2 - - uid: 15389 + - uid: 15372 components: - type: Transform rot: 1.5707963267948966 rad @@ -121317,179 +121339,179 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 25276: + 25131: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: computerBodyScanner entities: - - uid: 15390 + - uid: 15373 components: - type: Transform pos: -1.5,-13.5 parent: 2 - - uid: 15391 + - uid: 15374 components: - type: Transform pos: 47.5,-13.5 parent: 2 - - uid: 15392 + - uid: 15375 components: - type: Transform pos: 36.5,-43.5 parent: 2 - - uid: 15393 + - uid: 15376 components: - type: Transform pos: 45.5,-37.5 parent: 2 - proto: ComputerBroken entities: - - uid: 15394 + - uid: 15377 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-76.5 parent: 2 - - uid: 15395 + - uid: 15378 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-29.5 parent: 2 - - uid: 15396 + - uid: 15379 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,62.5 parent: 2 - - uid: 15397 + - uid: 15380 components: - type: Transform pos: -40.5,-35.5 parent: 2 - - uid: 15398 + - uid: 15381 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 - - uid: 15399 + - uid: 15382 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-19.5 parent: 2 - - uid: 15400 + - uid: 15383 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-19.5 parent: 2 - - uid: 15401 + - uid: 15384 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-37.5 parent: 2 - - uid: 15402 + - uid: 15385 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-44.5 parent: 2 - - uid: 15403 + - uid: 15386 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-29.5 parent: 2 - - uid: 15404 + - uid: 15387 components: - type: Transform pos: -37.5,-59.5 parent: 2 - - uid: 15405 + - uid: 15388 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-39.5 parent: 2 - - uid: 15406 + - uid: 15389 components: - type: Transform pos: -67.5,-34.5 parent: 2 - - uid: 15407 + - uid: 15390 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-31.5 parent: 2 - - uid: 15408 + - uid: 15391 components: - type: Transform pos: 47.5,-27.5 parent: 2 - - uid: 39124 + - uid: 38951 components: - type: Transform pos: -21.5,34.5 - parent: 38584 - - uid: 39125 + parent: 38411 + - uid: 38952 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,19.5 - parent: 38584 - - uid: 39126 + parent: 38411 + - uid: 38953 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 - parent: 38584 + parent: 38411 - proto: ComputerCargoBounty entities: - - uid: 15409 + - uid: 15392 components: - type: Transform pos: 16.5,39.5 parent: 2 - proto: ComputerCargoOrders entities: - - uid: 15410 + - uid: 15393 components: - type: Transform pos: -3.5,18.5 parent: 2 - - uid: 15411 + - uid: 15394 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,50.5 parent: 2 - - uid: 15412 + - uid: 15395 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,31.5 parent: 2 - - uid: 15413 + - uid: 15396 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,33.5 parent: 2 - - uid: 15414 + - uid: 15397 components: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 15415 + - uid: 15398 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,35.5 parent: 2 - - uid: 15416 + - uid: 15399 components: - type: Transform rot: 1.5707963267948966 rad @@ -121497,7 +121519,7 @@ entities: parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 15417 + - uid: 15400 components: - type: Transform rot: -1.5707963267948966 rad @@ -121505,66 +121527,66 @@ entities: parent: 2 - proto: ComputerComms entities: - - uid: 15418 + - uid: 15401 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,5.5 parent: 2 - - uid: 15419 + - uid: 15402 components: - type: Transform pos: -0.5,14.5 parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 15420 + - uid: 15403 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-4.5 parent: 2 - - uid: 15421 + - uid: 15404 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-28.5 parent: 2 - - uid: 15422 + - uid: 15405 components: - type: Transform pos: 50.5,9.5 parent: 2 - - uid: 15423 + - uid: 15406 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,20.5 parent: 2 - - uid: 15424 + - uid: 15407 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-31.5 parent: 2 - - uid: 15425 + - uid: 15408 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-48.5 parent: 2 - - uid: 15426 + - uid: 15409 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,62.5 parent: 2 - - uid: 15427 + - uid: 15410 components: - type: Transform pos: -4.5,18.5 parent: 2 - - uid: 15428 + - uid: 15411 components: - type: Transform rot: 1.5707963267948966 rad @@ -121572,70 +121594,70 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 15429 + - uid: 15412 components: - type: Transform pos: 51.5,9.5 parent: 2 - - uid: 15430 + - uid: 15413 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,1.5 parent: 2 - - uid: 15431 + - uid: 15414 components: - type: Transform pos: -1.5,18.5 parent: 2 - - uid: 15432 + - uid: 15415 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 15433 + - uid: 15416 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-55.5 parent: 2 - - uid: 15434 + - uid: 15417 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,21.5 parent: 2 - - uid: 15435 + - uid: 15418 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-29.5 parent: 2 - - uid: 15436 + - uid: 15419 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-4.5 parent: 2 - - uid: 15437 + - uid: 15420 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,9.5 parent: 2 - - uid: 15438 + - uid: 15421 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,9.5 parent: 2 - - uid: 15439 + - uid: 15422 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 2 - - uid: 15440 + - uid: 15423 components: - type: Transform rot: 3.141592653589793 rad @@ -121643,18 +121665,18 @@ entities: parent: 2 - proto: ComputerFrame entities: - - uid: 15441 + - uid: 15424 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,45.5 parent: 2 - - uid: 15442 + - uid: 15425 components: - type: Transform pos: 47.5,-33.5 parent: 2 - - uid: 15443 + - uid: 15426 components: - type: Transform rot: 3.141592653589793 rad @@ -121662,13 +121684,13 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 15444 + - uid: 15427 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,6.5 parent: 2 - - uid: 15445 + - uid: 15428 components: - type: Transform rot: 3.141592653589793 rad @@ -121676,7 +121698,7 @@ entities: parent: 2 - proto: ComputerMassMedia entities: - - uid: 15446 + - uid: 15429 components: - type: Transform rot: -1.5707963267948966 rad @@ -121684,19 +121706,19 @@ entities: parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 15447 + - uid: 15430 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-47.5 parent: 2 - - uid: 15448 + - uid: 15431 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-58.5 parent: 2 - - uid: 15449 + - uid: 15432 components: - type: Transform rot: 3.141592653589793 rad @@ -121704,59 +121726,59 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 15450 + - uid: 15433 components: - type: Transform pos: -19.5,-29.5 parent: 2 - - uid: 15451 + - uid: 15434 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-0.5 parent: 2 - - uid: 15452 + - uid: 15435 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,63.5 parent: 2 - - uid: 15453 + - uid: 15436 components: - type: Transform pos: 3.5,18.5 parent: 2 - - uid: 15454 + - uid: 15437 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-5.5 parent: 2 - - uid: 15455 + - uid: 15438 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-40.5 parent: 2 - - uid: 15456 + - uid: 15439 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-9.5 parent: 2 - - uid: 15457 + - uid: 15440 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,88.5 parent: 2 - - uid: 15458 + - uid: 15441 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,8.5 parent: 2 - - uid: 15459 + - uid: 15442 components: - type: Transform rot: 1.5707963267948966 rad @@ -121764,69 +121786,69 @@ entities: parent: 2 - proto: ComputerRadar entities: - - uid: 15460 + - uid: 15443 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,89.5 parent: 2 - - uid: 15461 + - uid: 15444 components: - type: Transform pos: 0.5,18.5 parent: 2 - - uid: 15462 + - uid: 15445 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-81.5 parent: 2 - - uid: 15463 + - uid: 15446 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,42.5 parent: 2 - - uid: 39127 + - uid: 38954 components: - type: Transform pos: 3.5,2.5 - parent: 38584 + parent: 38411 - proto: ComputerResearchAndDevelopment entities: - - uid: 15464 + - uid: 15447 components: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 15465 + - uid: 15448 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 15466 + - uid: 15449 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-37.5 parent: 2 - - uid: 15467 + - uid: 15450 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-42.5 parent: 2 - - uid: 15468 + - uid: 15451 components: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 15469 + - uid: 15452 components: - type: Transform pos: -13.5,-55.5 parent: 2 - - uid: 15470 + - uid: 15453 components: - type: Transform rot: 1.5707963267948966 rad @@ -121834,7 +121856,7 @@ entities: parent: 2 - proto: ComputerRoboticsControl entities: - - uid: 15471 + - uid: 15454 components: - type: Transform rot: -1.5707963267948966 rad @@ -121842,7 +121864,7 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 15472 + - uid: 15455 components: - type: Transform rot: -1.5707963267948966 rad @@ -121850,21 +121872,21 @@ entities: parent: 2 - proto: ComputerShuttle entities: - - uid: 38524 + - uid: 38351 components: - type: Transform pos: 1.5,4.5 - parent: 38484 + parent: 38311 - proto: ComputerShuttleCargo entities: - - uid: 15473 + - uid: 15456 components: - type: Transform pos: 17.5,39.5 parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 15474 + - uid: 15457 components: - type: Transform rot: -1.5707963267948966 rad @@ -121872,25 +121894,25 @@ entities: parent: 2 - proto: ComputerSolarControl entities: - - uid: 15475 + - uid: 15458 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,63.5 parent: 2 - - uid: 15476 + - uid: 15459 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-75.5 parent: 2 - - uid: 15477 + - uid: 15460 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,86.5 parent: 2 - - uid: 15478 + - uid: 15461 components: - type: Transform rot: -1.5707963267948966 rad @@ -121898,53 +121920,53 @@ entities: parent: 2 - proto: ComputerStationRecords entities: - - uid: 15479 + - uid: 15462 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,2.5 parent: 2 - - uid: 15480 + - uid: 15463 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,7.5 parent: 2 - - uid: 15481 + - uid: 15464 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-4.5 parent: 2 - - uid: 15482 + - uid: 15465 components: - type: Transform pos: 2.5,18.5 parent: 2 - - uid: 15483 + - uid: 15466 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 - - uid: 15484 + - uid: 15467 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 15485 + - uid: 15468 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-54.5 parent: 2 - - uid: 15486 + - uid: 15469 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-29.5 parent: 2 - - uid: 15487 + - uid: 15470 components: - type: Transform rot: -1.5707963267948966 rad @@ -121952,70 +121974,70 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 15488 + - uid: 15471 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,62.5 parent: 2 - - uid: 15489 + - uid: 15472 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,8.5 parent: 2 - - uid: 15490 + - uid: 15473 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-59.5 parent: 2 - - uid: 15491 + - uid: 15474 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,19.5 parent: 2 - - uid: 15492 + - uid: 15475 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,31.5 parent: 2 - - uid: 15493 + - uid: 15476 components: - type: Transform pos: 11.5,44.5 parent: 2 - - uid: 15494 + - uid: 15477 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,8.5 parent: 2 - - uid: 15495 + - uid: 15478 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 15496 + - uid: 15479 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-30.5 parent: 2 - - uid: 15497 + - uid: 15480 components: - type: Transform pos: -0.5,18.5 parent: 2 - - uid: 15498 + - uid: 15481 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,8.5 parent: 2 - - uid: 15499 + - uid: 15482 components: - type: Transform rot: -1.5707963267948966 rad @@ -122023,7 +122045,7 @@ entities: parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - - uid: 15500 + - uid: 15483 components: - type: Transform rot: -1.5707963267948966 rad @@ -122031,7 +122053,7 @@ entities: parent: 2 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 15501 + - uid: 15484 components: - type: Transform rot: 1.5707963267948966 rad @@ -122039,44 +122061,44 @@ entities: parent: 2 - proto: ComputerTelevision entities: - - uid: 15502 + - uid: 15485 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,7.5 parent: 2 - - uid: 15503 + - uid: 15486 components: - type: Transform pos: 33.5,8.5 parent: 2 - - uid: 15504 + - uid: 15487 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,6.5 parent: 2 - - uid: 15505 + - uid: 15488 components: - type: Transform pos: 52.5,-25.5 parent: 2 - - uid: 15506 + - uid: 15489 components: - type: Transform pos: 47.5,-22.5 parent: 2 - - uid: 15507 + - uid: 15490 components: - type: Transform pos: 45.5,-24.5 parent: 2 - - uid: 15508 + - uid: 15491 components: - type: Transform pos: -1.5,37.5 parent: 2 - - uid: 15509 + - uid: 15492 components: - type: Transform rot: -1.5707963267948966 rad @@ -122084,30 +122106,30 @@ entities: parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 15510 + - uid: 15493 components: - type: Transform pos: 12.5,-5.5 parent: 2 - - uid: 15511 + - uid: 15494 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-9.5 parent: 2 - - uid: 15512 + - uid: 15495 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-10.5 parent: 2 - - uid: 15513 + - uid: 15496 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-9.5 parent: 2 - - uid: 15514 + - uid: 15497 components: - type: Transform rot: -1.5707963267948966 rad @@ -122115,362 +122137,362 @@ entities: parent: 2 - proto: ConvertAltarSpawner entities: - - uid: 15515 + - uid: 15498 components: - type: Transform pos: -16.5,-73.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 15516 + - uid: 15499 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,48.5 parent: 2 - - uid: 15517 + - uid: 15500 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,48.5 parent: 2 - - uid: 15518 + - uid: 15501 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,48.5 parent: 2 - - uid: 15519 + - uid: 15502 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,48.5 parent: 2 - - uid: 15520 + - uid: 15503 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,48.5 parent: 2 - - uid: 15521 + - uid: 15504 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,48.5 parent: 2 - - uid: 15522 + - uid: 15505 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,57.5 parent: 2 - - uid: 15523 + - uid: 15506 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,48.5 parent: 2 - - uid: 15524 + - uid: 15507 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,48.5 parent: 2 - - uid: 15525 + - uid: 15508 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,48.5 parent: 2 - - uid: 15526 + - uid: 15509 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,47.5 parent: 2 - - uid: 15527 + - uid: 15510 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,52.5 parent: 2 - - uid: 15528 + - uid: 15511 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,52.5 parent: 2 - - uid: 15529 + - uid: 15512 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,52.5 parent: 2 - - uid: 15530 + - uid: 15513 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,52.5 parent: 2 - - uid: 15531 + - uid: 15514 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,52.5 parent: 2 - - uid: 15532 + - uid: 15515 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,52.5 parent: 2 - - uid: 15533 + - uid: 15516 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,52.5 parent: 2 - - uid: 15534 + - uid: 15517 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,52.5 parent: 2 - - uid: 15535 + - uid: 15518 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,52.5 parent: 2 - - uid: 15536 + - uid: 15519 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,52.5 parent: 2 - - uid: 15537 + - uid: 15520 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,52.5 parent: 2 - - uid: 15538 + - uid: 15521 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,42.5 parent: 2 - - uid: 15539 + - uid: 15522 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,52.5 parent: 2 - - uid: 15540 + - uid: 15523 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,59.5 parent: 2 - - uid: 15541 + - uid: 15524 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,61.5 parent: 2 - - uid: 15542 + - uid: 15525 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,61.5 parent: 2 - - uid: 15543 + - uid: 15526 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,46.5 parent: 2 - - uid: 15544 + - uid: 15527 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,58.5 parent: 2 - - uid: 15545 + - uid: 15528 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,57.5 parent: 2 - - uid: 15546 + - uid: 15529 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,48.5 parent: 2 - - uid: 15547 + - uid: 15530 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,52.5 parent: 2 - - uid: 15548 + - uid: 15531 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,53.5 parent: 2 - - uid: 15549 + - uid: 15532 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,48.5 parent: 2 - - uid: 15550 + - uid: 15533 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,58.5 parent: 2 - - uid: 15551 + - uid: 15534 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,42.5 parent: 2 - - uid: 15552 + - uid: 15535 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,43.5 parent: 2 - - uid: 15553 + - uid: 15536 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,58.5 parent: 2 - - uid: 15554 + - uid: 15537 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,60.5 parent: 2 - - uid: 15555 + - uid: 15538 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,45.5 parent: 2 - - uid: 15556 + - uid: 15539 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,52.5 parent: 2 - - uid: 15557 + - uid: 15540 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,52.5 parent: 2 - - uid: 15558 + - uid: 15541 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,61.5 parent: 2 - - uid: 15559 + - uid: 15542 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,44.5 parent: 2 - - uid: 15560 + - uid: 15543 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,48.5 parent: 2 - - uid: 15561 + - uid: 15544 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,48.5 parent: 2 - - uid: 15562 + - uid: 15545 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,48.5 parent: 2 - - uid: 15563 + - uid: 15546 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,48.5 parent: 2 - - uid: 15564 + - uid: 15547 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,57.5 parent: 2 - - uid: 15565 + - uid: 15548 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,57.5 parent: 2 - - uid: 15566 + - uid: 15549 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,57.5 parent: 2 - - uid: 15567 + - uid: 15550 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,61.5 parent: 2 - - uid: 15568 + - uid: 15551 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,58.5 parent: 2 - - uid: 15569 + - uid: 15552 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,61.5 parent: 2 - - uid: 15570 + - uid: 15553 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,61.5 parent: 2 - - uid: 15571 + - uid: 15554 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,58.5 parent: 2 - - uid: 39128 + - uid: 38955 components: - type: Transform pos: 0.5,2.5 - parent: 38584 - - uid: 39129 + parent: 38411 + - uid: 38956 components: - type: Transform pos: 0.5,1.5 - parent: 38584 + parent: 38411 - proto: CounterWoodFrame entities: - - uid: 15572 + - uid: 15555 components: - type: Transform rot: 3.141592653589793 rad @@ -122478,12 +122500,12 @@ entities: parent: 2 - proto: CowToolboxFilled entities: - - uid: 15573 + - uid: 15556 components: - type: Transform pos: -45.2872,-42.39937 parent: 2 - - uid: 15574 + - uid: 15557 components: - type: Transform rot: 3.141592653589793 rad @@ -122491,21 +122513,21 @@ entities: parent: 2 - type: Physics canCollide: False - - uid: 15575 + - uid: 15558 components: - type: Transform pos: -29.567314,-69.63001 parent: 2 - proto: CrateArtifactContainer entities: - - uid: 15576 + - uid: 15559 components: - type: Transform pos: -32.5,-46.5 parent: 2 - proto: CrateChemistrySupplies entities: - - uid: 15577 + - uid: 15560 components: - type: Transform pos: 22.5,-30.5 @@ -122534,14 +122556,14 @@ entities: - 0 - proto: CrateEmergencyAdvancedKit entities: - - uid: 15578 + - uid: 15561 components: - type: Transform pos: -29.5,-17.5 parent: 2 - proto: CrateEmergencyInternals entities: - - uid: 15579 + - uid: 15562 components: - type: Transform pos: -24.5,15.5 @@ -122593,7 +122615,7 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 15580 + - uid: 15563 components: - type: Transform pos: 21.5,-30.5 @@ -122620,7 +122642,7 @@ entities: - 0 - 0 - 0 - - uid: 15581 + - uid: 15564 components: - type: Transform pos: 12.5,80.5 @@ -122645,55 +122667,55 @@ entities: - 0 - proto: CrateEmptySpawner entities: - - uid: 15582 + - uid: 15565 components: - type: Transform pos: 22.5,41.5 parent: 2 - - uid: 15583 + - uid: 15566 components: - type: Transform pos: 26.5,-20.5 parent: 2 - - uid: 15584 + - uid: 15567 components: - type: Transform pos: 9.5,58.5 parent: 2 - - uid: 15585 + - uid: 15568 components: - type: Transform pos: 36.5,-52.5 parent: 2 - proto: CrateEngineeringAMEControl entities: - - uid: 15586 + - uid: 15569 components: - type: Transform pos: -75.5,-3.5 parent: 2 - proto: CrateEngineeringAMEJar entities: - - uid: 15587 + - uid: 15570 components: - type: Transform pos: -71.5,-11.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 15588 + - uid: 15571 components: - type: Transform pos: -72.5,-10.5 parent: 2 - - uid: 15589 + - uid: 15572 components: - type: Transform pos: -72.5,-9.5 parent: 2 - proto: CrateEngineeringSecure entities: - - uid: 1071 + - uid: 1061 components: - type: Transform pos: 16.5,77.5 @@ -122722,14 +122744,14 @@ entities: showEnts: False occludes: True ents: - - 1074 - - 1072 - - 1073 + - 1064 + - 1062 + - 1063 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15590 + - uid: 15573 components: - type: MetaData name: ящик топлива для генераторов @@ -122760,80 +122782,80 @@ entities: showEnts: False occludes: True ents: - - 15594 - - 15593 - - 15592 - - 15591 + - 15577 + - 15576 + - 15575 + - 15574 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateEngineeringTeslaCoil entities: - - uid: 15595 + - uid: 15578 components: - type: Transform pos: -72.5,-12.5 parent: 2 - proto: CrateFilledSpawner entities: - - uid: 15596 + - uid: 15579 components: - type: Transform pos: 25.5,40.5 parent: 2 - - uid: 15597 + - uid: 15580 components: - type: Transform pos: 33.5,35.5 parent: 2 - - uid: 15598 + - uid: 15581 components: - type: Transform pos: 25.5,40.5 parent: 2 - - uid: 15599 + - uid: 15582 components: - type: Transform pos: 10.5,50.5 parent: 2 - - uid: 15600 + - uid: 15583 components: - type: Transform pos: 16.5,41.5 parent: 2 - - uid: 15601 + - uid: 15584 components: - type: Transform pos: 10.5,51.5 parent: 2 - - uid: 15602 + - uid: 15585 components: - type: Transform pos: 9.5,59.5 parent: 2 - - uid: 15603 + - uid: 15586 components: - type: Transform pos: 12.5,50.5 parent: 2 - proto: CrateFoodPizzaLarge entities: - - uid: 15604 + - uid: 15587 components: - type: Transform pos: -55.500004,-28.5 parent: 2 - proto: CrateFoodSoftdrinksLarge entities: - - uid: 15605 + - uid: 15588 components: - type: Transform pos: 17.5,29.5 parent: 2 - proto: CrateFreezer entities: - - uid: 15606 + - uid: 15589 components: - type: Transform pos: 25.5,67.5 @@ -122885,7 +122907,7 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 15607 + - uid: 15590 components: - type: Transform pos: 97.5,-3.5 @@ -122896,20 +122918,20 @@ entities: showEnts: False occludes: True ents: - - 15616 - - 15615 - - 15614 - - 15613 - - 15612 - - 15611 - - 15610 - - 15609 - - 15608 + - 15599 + - 15598 + - 15597 + - 15596 + - 15595 + - 15594 + - 15593 + - 15592 + - 15591 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15617 + - uid: 15600 components: - type: Transform pos: 32.5,-65.5 @@ -122936,7 +122958,7 @@ entities: - 0 - 0 - 0 - - uid: 15618 + - uid: 15601 components: - type: Transform pos: 44.5,-37.5 @@ -122965,13 +122987,13 @@ entities: showEnts: False occludes: True ents: - - 15620 - - 15619 + - 15603 + - 15602 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15621 + - uid: 15604 components: - type: Transform pos: -67.5,56.5 @@ -123000,24 +123022,24 @@ entities: showEnts: False occludes: True ents: - - 15624 - - 15630 - - 15629 - - 15623 - - 15628 - - 15627 - - 15626 - - 15625 - - 15622 + - 15607 + - 15613 + - 15612 + - 15606 + - 15611 + - 15610 + - 15609 + - 15608 + - 15605 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 39130 + - uid: 38957 components: - type: Transform pos: -18.5,43.5 - parent: 38584 + parent: 38411 - type: EntityStorage air: volume: 200 @@ -123042,19 +123064,19 @@ entities: showEnts: False occludes: True ents: - - 39136 - - 39135 - - 39134 - - 39133 - - 39132 - - 39131 + - 38963 + - 38962 + - 38961 + - 38960 + - 38959 + - 38958 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateFunBoardGames entities: - - uid: 15631 + - uid: 15614 components: - type: Transform pos: 3.5,-55.5 @@ -123077,69 +123099,69 @@ entities: - 0 - 0 - 0 - - uid: 15632 + - uid: 15615 components: - type: Transform pos: -31.5,-69.5 parent: 2 - proto: CrateFunDartsSet entities: - - uid: 15633 + - uid: 15616 components: - type: Transform pos: -42.500004,-9.5 parent: 2 - proto: CrateFunInstrumentsSpecial entities: - - uid: 15634 + - uid: 15617 components: - type: Transform pos: -37.5,-62.5 parent: 2 - proto: CrateFunInstrumentsVariety entities: - - uid: 39137 + - uid: 38964 components: - type: Transform pos: -10.5,-4.5 - parent: 38584 + parent: 38411 - proto: CrateFunInstrumentsWoodwind entities: - - uid: 15635 + - uid: 15618 components: - type: Transform pos: -42.5,-8.500001 parent: 2 - proto: CrateFunLizardPlushieBulk entities: - - uid: 15636 + - uid: 15619 components: - type: Transform pos: -33.5,-17.5 parent: 2 - - uid: 15637 + - uid: 15620 components: - type: Transform pos: -113.50001,33.5 parent: 2 - - uid: 15638 + - uid: 15621 components: - type: Transform pos: -112.50001,33.5 parent: 2 - - uid: 15639 + - uid: 15622 components: - type: Transform pos: 17.5,30.5 parent: 2 - proto: CrateFunParty entities: - - uid: 15640 + - uid: 15623 components: - type: Transform pos: -1.5,39.5 parent: 2 - - uid: 15641 + - uid: 15624 components: - type: Transform pos: -65.5,-47.5 @@ -123162,26 +123184,26 @@ entities: - 0 - 0 - 0 - - uid: 15642 + - uid: 15625 components: - type: Transform pos: -1.5,38.5 parent: 2 - - uid: 15643 + - uid: 15626 components: - type: Transform pos: -33.5,-60.5 parent: 2 - proto: CrateFunPlushie entities: - - uid: 15644 + - uid: 15627 components: - type: Transform pos: -44.5,-32.5 parent: 2 - proto: CrateFunToyBox entities: - - uid: 15645 + - uid: 15628 components: - type: Transform pos: 86.50001,7.5 @@ -123204,19 +123226,19 @@ entities: - 0 - 0 - 0 - - uid: 15646 + - uid: 15629 components: - type: Transform pos: -52.5,-32.5 parent: 2 - - uid: 39138 + - uid: 38965 components: - type: Transform pos: -9.5,-5.5 - parent: 38584 + parent: 38411 - proto: CrateGenericSteel entities: - - uid: 15647 + - uid: 15630 components: - type: Transform pos: -24.5,-21.5 @@ -123243,7 +123265,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15648 + - uid: 15631 components: - type: Transform pos: 13.5,-54.5 @@ -123270,7 +123292,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15649 + - uid: 15632 components: - type: Transform pos: -56.5,-17.5 @@ -123297,7 +123319,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15650 + - uid: 15633 components: - type: Transform pos: -26.5,-75.5 @@ -123326,7 +123348,7 @@ entities: showEnts: False occludes: True ents: - - 15651 + - 15634 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -123335,7 +123357,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15652 + - uid: 15635 components: - type: Transform pos: 52.5,3.5 @@ -123364,14 +123386,14 @@ entities: showEnts: False occludes: True ents: - - 15653 - - 15655 - - 15654 + - 15636 + - 15638 + - 15637 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15656 + - uid: 15639 components: - type: Transform pos: -58.5,-20.5 @@ -123398,7 +123420,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15657 + - uid: 15640 components: - type: Transform pos: 24.5,54.5 @@ -123425,7 +123447,7 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15658 + - uid: 15641 components: - type: Transform pos: 25.5,54.5 @@ -123452,66 +123474,66 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15659 + - uid: 15642 components: - type: Transform pos: 30.5,-54.5 parent: 2 - proto: CrateHydroponics entities: - - uid: 15660 + - uid: 15643 components: - type: Transform pos: -24.5,53.5 parent: 2 - proto: CrateHydroponicsSeeds entities: - - uid: 15661 + - uid: 15644 components: - type: Transform pos: -36.5,45.5 parent: 2 - proto: CrateHydroSecure entities: - - uid: 15662 + - uid: 15645 components: - type: Transform pos: -26.5,55.5 parent: 2 - - uid: 15663 + - uid: 15646 components: - type: Transform pos: -36.5,46.5 parent: 2 - proto: CrateInternals entities: - - uid: 15664 + - uid: 15647 components: - type: Transform pos: 6.5,-15.5 parent: 2 - proto: CrateMaterialCardboard entities: - - uid: 15665 + - uid: 15648 components: - type: Transform pos: 52.5,-27.5 parent: 2 - proto: CrateMaterialPaper entities: - - uid: 15666 + - uid: 15649 components: - type: Transform pos: 43.499996,-47.5 parent: 2 - - uid: 39139 + - uid: 38966 components: - type: Transform pos: 1.5,-5.5 - parent: 38584 + parent: 38411 - proto: CrateMedical entities: - - uid: 879 + - uid: 871 components: - type: Transform pos: 60.5,-3.5 @@ -123540,20 +123562,20 @@ entities: showEnts: False occludes: True ents: - - 880 - - 884 - - 881 - - 886 - - 885 - - 882 - - 883 + - 872 + - 876 + - 873 + - 878 + - 877 + - 874 + - 875 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateMedicalScrubs entities: - - uid: 15667 + - uid: 15650 components: - type: Transform pos: 11.5,-40.5 @@ -123576,7 +123598,7 @@ entities: - 0 - 0 - 0 - - uid: 15668 + - uid: 15651 components: - type: Transform pos: 20.5,-37.5 @@ -123601,31 +123623,31 @@ entities: - 0 - proto: CrateMedicalSecure entities: - - uid: 15669 + - uid: 15652 components: - type: Transform pos: 40.5,-44.5 parent: 2 - - uid: 15670 + - uid: 15653 components: - type: Transform pos: -47.5,-39.5 parent: 2 - proto: CrateMedicalSupplies entities: - - uid: 39140 + - uid: 38967 components: - type: Transform pos: -8.5,-1.5 - parent: 38584 + parent: 38411 - proto: CrateMedicalSurgery entities: - - uid: 15671 + - uid: 15654 components: - type: Transform pos: 45.5,-27.5 parent: 2 - - uid: 15672 + - uid: 15655 components: - type: Transform pos: 31.5,-46.5 @@ -123650,21 +123672,21 @@ entities: - 0 - proto: CrateNPCCow entities: - - uid: 15673 + - uid: 15656 components: - type: Transform pos: -33.5,43.5 parent: 2 - proto: CrateNPCHamlet entities: - - uid: 15674 + - uid: 15657 components: - type: Transform pos: 3.5,12.5 parent: 2 - proto: CratePlastic entities: - - uid: 15675 + - uid: 15658 components: - type: Transform pos: 27.5,59.5 @@ -123687,7 +123709,7 @@ entities: - 0 - 0 - 0 - - uid: 15676 + - uid: 15659 components: - type: Transform pos: 27.5,60.5 @@ -123712,54 +123734,59 @@ entities: - 0 - proto: CrateRodentCage entities: - - uid: 15677 + - uid: 15660 components: - type: Transform pos: -50.5,-39.5 parent: 2 - proto: CrateSecurityBiosuit entities: - - uid: 39141 + - uid: 38968 components: - type: Transform pos: 11.5,-7.5 - parent: 38584 + parent: 38411 - proto: CrateServiceBooks entities: - - uid: 15678 + - uid: 15661 components: - type: Transform pos: 53.5,-27.5 parent: 2 - proto: CrateServiceBureaucracy entities: - - uid: 15679 + - uid: 15662 components: - type: Transform pos: -37.5,63.5 parent: 2 - - uid: 15680 + - uid: 15663 components: - type: Transform pos: 44.499996,-47.5 parent: 2 - proto: CrateServiceGuidebooks entities: - - uid: 15681 + - uid: 15664 components: - type: Transform pos: 81.50001,4.5 parent: 2 - proto: CrateServiceJanitorialSupplies entities: - - uid: 15682 + - uid: 15665 components: - type: Transform pos: 21.5,49.5 parent: 2 + - uid: 30580 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 - proto: CrateServiceReplacementLights entities: - - uid: 15683 + - uid: 15666 components: - type: Transform pos: 16.5,45.5 @@ -123784,14 +123811,14 @@ entities: - 0 - proto: CrateStoneGrave entities: - - uid: 15684 + - uid: 15667 components: - type: Transform pos: -109.5,46.5 parent: 2 - proto: CrateSyndicate entities: - - uid: 14891 + - uid: 14832 components: - type: Transform pos: 41.499996,-2.5 @@ -123820,43 +123847,43 @@ entities: showEnts: False occludes: True ents: - - 14892 - - 14904 - - 14903 - - 14896 - - 14899 - - 14895 - - 14902 - - 14898 - - 14893 - - 14897 - - 14900 - - 14894 - - 14901 + - 14843 + - 14838 + - 14834 + - 14839 + - 14836 + - 14840 + - 14837 + - 14844 + - 14845 + - 14833 + - 14842 + - 14835 + - 14841 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateToyBox entities: - - uid: 15685 + - uid: 15668 components: - type: Transform pos: 11.5,66.5 parent: 2 - - uid: 15686 + - uid: 15669 components: - type: Transform pos: -33.5,-69.5 parent: 2 - - uid: 15687 + - uid: 15670 components: - type: Transform pos: 49.499996,-47.5 parent: 2 - proto: CrateTrashCart entities: - - uid: 15688 + - uid: 15671 components: - type: Transform pos: -45.5,-46.5 @@ -123879,29 +123906,29 @@ entities: - 0 - 0 - 0 - - uid: 15689 + - uid: 15672 components: - type: Transform pos: -59.5,-33.5 parent: 2 - - uid: 15690 + - uid: 15673 components: - type: Transform pos: -27.5,39.5 parent: 2 - - uid: 15691 + - uid: 15674 components: - type: Transform pos: 31.5,56.5 parent: 2 - - uid: 15692 + - uid: 15675 components: - type: Transform pos: 31.5,57.5 parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 15693 + - uid: 15676 components: - type: Transform pos: -37.5,-54.5 @@ -123924,16 +123951,16 @@ entities: - 0 - 0 - 0 - - uid: 15694 + - uid: 15677 components: - type: Transform pos: 0.5,56.5 parent: 2 - - uid: 39142 + - uid: 38969 components: - type: Transform pos: -16.5,32.5 - parent: 38584 + parent: 38411 - type: EntityStorage air: volume: 200 @@ -123954,38 +123981,33 @@ entities: - 0 - proto: CrateTrashCartJani entities: - - uid: 15695 - components: - - type: Transform - pos: 4.5,50.5 - parent: 2 - - uid: 15696 + - uid: 15679 components: - type: Transform pos: -1.5,56.5 parent: 2 - - uid: 15697 + - uid: 38304 components: - type: Transform - pos: 4.5,51.5 + pos: 4.5,52.5 parent: 2 - proto: CrateVendingMachineRestockAutoDrobeFilled entities: - - uid: 15698 + - uid: 15681 components: - type: Transform pos: -50.5,-22.5 parent: 2 - proto: CrateVendingMachineRestockHappyHonkFilled entities: - - uid: 15699 + - uid: 15682 components: - type: Transform pos: -37.5,-3.5 parent: 2 - proto: CrayonBlack entities: - - uid: 15700 + - uid: 15683 components: - type: Transform rot: 1.5707963267948966 rad @@ -123993,50 +124015,50 @@ entities: parent: 2 - proto: CrayonBox entities: - - uid: 15701 + - uid: 15684 components: - type: Transform pos: -4.504109,26.61277 parent: 2 - - uid: 15702 + - uid: 15685 components: - type: Transform pos: 36.502167,-10.380364 parent: 2 - type: Physics canCollide: False - - uid: 15703 + - uid: 15686 components: - type: Transform pos: -12.505997,-81.42869 parent: 2 - type: Physics canCollide: False - - uid: 15704 + - uid: 15687 components: - type: Transform pos: -34.169643,-10.397047 parent: 2 - - uid: 15706 + - uid: 15689 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15714 + - uid: 15697 components: - type: Transform rot: 1.5707973450558423 rad pos: 79.29495,-1.4134865 parent: 2 - - uid: 15715 + - uid: 15698 components: - type: Transform rot: 1.5707973450558423 rad pos: 83.29495,-1.4134874 parent: 2 - - uid: 15716 + - uid: 15699 components: - type: Transform rot: 1.5707973450558423 rad @@ -124044,7 +124066,7 @@ entities: parent: 2 - proto: CrayonMime entities: - - uid: 15717 + - uid: 15700 components: - type: Transform rot: 1.5707963267948966 rad @@ -124052,20 +124074,20 @@ entities: parent: 2 - proto: CrayonPurple entities: - - uid: 15718 + - uid: 15701 components: - type: Transform pos: 53.63272,-37.217556 parent: 2 - proto: CrayonRainbow entities: - - uid: 15719 + - uid: 15702 components: - type: Transform rot: 3.141592653589793 rad pos: 56.19522,-38.696724 parent: 2 - - uid: 15720 + - uid: 15703 components: - type: Transform rot: -1.5707953085339508 rad @@ -124073,33 +124095,33 @@ entities: parent: 2 - proto: CrayonRed entities: - - uid: 15721 + - uid: 15704 components: - type: Transform pos: 73.56891,-45.23019 parent: 2 - - uid: 15722 + - uid: 15705 components: - type: Transform pos: 73.64703,-45.245815 parent: 2 - - uid: 15723 + - uid: 15706 components: - type: Transform pos: 73.78766,-45.38644 parent: 2 - - uid: 15724 + - uid: 15707 components: - type: Transform pos: 73.72516,-45.339565 parent: 2 - - uid: 15725 + - uid: 15708 components: - type: Transform rot: 3.141592653589793 rad pos: 54.14314,-34.498806 parent: 2 - - uid: 15726 + - uid: 15709 components: - type: Transform rot: -1.5707963267948966 rad @@ -124107,7 +124129,7 @@ entities: parent: 2 - proto: Crematorium entities: - - uid: 15727 + - uid: 15710 components: - type: Transform rot: 1.5707963267948966 rad @@ -124133,14 +124155,14 @@ entities: - 0 - proto: CrewMonitoringComputerCircuitboard entities: - - uid: 15728 + - uid: 15711 components: - type: Transform pos: -34.459133,19.569752 parent: 2 - proto: CrewMonitoringServer entities: - - uid: 15729 + - uid: 15712 components: - type: Transform pos: -124.5,36.5 @@ -124150,208 +124172,214 @@ entities: available: False - proto: Crowbar entities: - - uid: 15730 + - uid: 15713 components: - type: Transform pos: -33.5,8.5 parent: 2 - - uid: 15731 + - uid: 15714 components: - type: Transform pos: -22.5,-45.5 parent: 2 - - uid: 15732 + - uid: 15715 components: - type: Transform pos: -35.52931,-35.24693 parent: 2 - - uid: 15733 + - uid: 15716 components: - type: Transform rot: 3.141592653589793 rad pos: 7.506043,-48.954784 parent: 2 - - uid: 15734 + - uid: 15717 components: - type: Transform pos: -44.506374,-30.442978 parent: 2 - type: Physics canCollide: False - - uid: 15735 + - uid: 15718 components: - type: Transform pos: -69.46426,12.496543 parent: 2 - type: Physics canCollide: False - - uid: 15736 + - uid: 15719 components: - type: Transform pos: -45.5,-11.5 parent: 2 - type: Physics canCollide: False - - uid: 15737 + - uid: 15720 components: - type: Transform pos: -7.3657737,-61.45761 parent: 2 - type: Physics canCollide: False - - uid: 15738 + - uid: 15721 components: - type: Transform pos: 2.544464,65.46228 parent: 2 - type: Physics canCollide: False - - uid: 15739 + - uid: 15722 components: - type: Transform pos: 78.44689,8.815404 parent: 2 - - uid: 15741 + - uid: 15724 components: - type: MetaData desc: Многофункциональный инструмент для открывания дверей и борьбы с межпространственными захватчиками. Посыпаный алмазной струшкой. name: лом с алмазным напылением - type: Transform - parent: 15740 + parent: 15723 - type: Physics canCollide: False - - uid: 15742 + - uid: 15725 components: - type: MetaData name: монтировка с алмазным напылением - type: Transform - parent: 15740 + parent: 15723 - type: Physics canCollide: False - - uid: 15743 + - uid: 15726 components: - type: Transform pos: -39.486397,-50.506275 parent: 2 - type: Physics canCollide: False - - uid: 15744 + - uid: 15727 components: - type: Transform pos: -57.502308,-13.465677 parent: 2 - type: Physics canCollide: False - - uid: 15745 + - uid: 15728 components: - type: Transform pos: -24.473108,-66.50455 parent: 2 - type: Physics canCollide: False - - uid: 15746 + - uid: 15729 components: - type: Transform rot: 3.141592653589793 rad pos: 36.367867,-68.083046 parent: 2 - - uid: 15747 + - uid: 15730 components: - type: Transform pos: -21.5,14.5 parent: 2 - type: Physics canCollide: False - - uid: 15748 + - uid: 15731 components: - type: Transform pos: -56.635643,-1.4630084 parent: 2 - type: Physics canCollide: False - - uid: 15749 + - uid: 15732 components: - type: Transform pos: -18.545227,-32.384617 parent: 2 + - uid: 38305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.4373999,-37.47665 + parent: 2 - proto: CrowbarRed entities: - - uid: 15750 + - uid: 15733 components: - type: Transform pos: 74.5,-4.5 parent: 2 - - uid: 15751 + - uid: 15734 components: - type: Transform pos: 9.521271,64.44338 parent: 2 - type: Physics canCollide: False - - uid: 15752 + - uid: 15735 components: - type: Transform pos: 15.5,-54.5 parent: 2 - type: Physics canCollide: False - - uid: 15753 + - uid: 15736 components: - type: Transform pos: 9.598661,84.47283 parent: 2 - type: Physics canCollide: False - - uid: 15754 + - uid: 15737 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.250557,57.466568 parent: 2 - - uid: 15755 + - uid: 15738 components: - type: Transform rot: 3.141592653589793 rad pos: -25.54941,-31.15223 parent: 2 - - uid: 15756 + - uid: 15739 components: - type: Transform pos: -22.533308,-60.389385 parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 15757 + - uid: 15740 components: - type: Transform pos: 49.5,-13.5 parent: 2 - - uid: 15758 + - uid: 15741 components: - type: Transform pos: 38.5,-44.5 parent: 2 - - uid: 15759 + - uid: 15742 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-15.5 parent: 2 - - uid: 15760 + - uid: 15743 components: - type: Transform pos: 38.5,-43.5 parent: 2 - proto: CryogenicSleepUnitSpawner entities: - - uid: 15761 + - uid: 15744 components: - type: Transform pos: 49.5,-15.5 parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 15762 + - uid: 15745 components: - type: Transform rot: 3.141592653589793 rad @@ -124359,50 +124387,50 @@ entities: parent: 2 - proto: CryoPod entities: - - uid: 15763 + - uid: 15746 components: - type: Transform pos: 21.5,-37.5 parent: 2 - - uid: 15764 + - uid: 15747 components: - type: Transform pos: 23.5,-37.5 parent: 2 - proto: CultAltarSpawner entities: - - uid: 15765 + - uid: 15748 components: - type: Transform pos: -32.5,-77.5 parent: 2 - proto: CurtainsBlackOpen entities: - - uid: 15766 + - uid: 15749 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 15767 + - uid: 15750 components: - type: Transform pos: 98.5,12.5 parent: 2 - proto: CurtainsGreenOpen entities: - - uid: 15768 + - uid: 15751 components: - type: Transform pos: -113.5,33.5 parent: 2 - - uid: 15769 + - uid: 15752 components: - type: Transform pos: -112.5,33.5 parent: 2 - proto: CurtainsOrangeOpen entities: - - uid: 15770 + - uid: 15753 components: - type: Transform rot: 3.141592653589793 rad @@ -124410,29 +124438,29 @@ entities: parent: 2 - proto: CurtainSpawner entities: - - uid: 15771 + - uid: 15754 components: - type: Transform pos: -74.5,-21.5 parent: 2 - proto: CurtainsPinkOpen entities: - - uid: 15772 + - uid: 15755 components: - type: Transform pos: -58.5,-50.5 parent: 2 - - uid: 15773 + - uid: 15756 components: - type: Transform pos: -57.5,-50.5 parent: 2 - - uid: 15774 + - uid: 15757 components: - type: Transform pos: -59.5,-50.5 parent: 2 - - uid: 15775 + - uid: 15758 components: - type: Transform rot: 1.5707963267948966 rad @@ -124440,44 +124468,44 @@ entities: parent: 2 - proto: CurtainsPurple entities: - - uid: 15776 + - uid: 15759 components: - type: Transform pos: -10.5,27.5 parent: 2 - - uid: 15777 + - uid: 15760 components: - type: Transform pos: -10.5,28.5 parent: 2 - - uid: 15778 + - uid: 15761 components: - type: Transform pos: -10.5,32.5 parent: 2 - - uid: 15779 + - uid: 15762 components: - type: Transform pos: -10.5,33.5 parent: 2 - - uid: 15780 + - uid: 15763 components: - type: Transform pos: -10.5,29.5 parent: 2 - - uid: 15781 + - uid: 15764 components: - type: Transform pos: -10.5,31.5 parent: 2 - - uid: 15782 + - uid: 15765 components: - type: Transform pos: -10.5,30.5 parent: 2 - proto: CurtainsPurpleOpen entities: - - uid: 15783 + - uid: 15766 components: - type: Transform rot: 3.141592653589793 rad @@ -124485,7 +124513,7 @@ entities: parent: 2 - proto: CurtainsRedOpen entities: - - uid: 15784 + - uid: 15767 components: - type: Transform rot: -1.5707963267948966 rad @@ -124493,67 +124521,67 @@ entities: parent: 2 - proto: CurtainsWhite entities: - - uid: 39143 + - uid: 38970 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,7.5 - parent: 38584 + parent: 38411 - proto: CurtainsWhiteOpen entities: - - uid: 15785 + - uid: 15768 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,6.5 parent: 2 - - uid: 15786 + - uid: 15769 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,4.5 parent: 2 - - uid: 39144 + - uid: 38971 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,7.5 - parent: 38584 - - uid: 39145 + parent: 38411 + - uid: 38972 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,7.5 - parent: 38584 - - uid: 39146 + parent: 38411 + - uid: 38973 components: - type: Transform pos: 3.5,-9.5 - parent: 38584 + parent: 38411 - proto: CyberPen entities: - - uid: 15787 + - uid: 15770 components: - type: Transform rot: 3.141593671850739 rad pos: -36.596897,63.51953 parent: 2 - - uid: 39147 + - uid: 38974 components: - type: Transform rot: 3.141592653589793 rad pos: -20.754562,33.469177 - parent: 38584 + parent: 38411 - proto: DawInstrument entities: - - uid: 15788 + - uid: 15771 components: - type: Transform pos: -5.5,54.5 parent: 2 - proto: DefaultStationBeaconAISatellite entities: - - uid: 15789 + - uid: 15772 components: - type: Transform pos: -118.5,33.5 @@ -124564,7 +124592,7 @@ entities: location: Спутник ИИ - proto: DefaultStationBeaconAME entities: - - uid: 15790 + - uid: 15773 components: - type: Transform pos: -69.5,-0.5 @@ -124575,7 +124603,7 @@ entities: location: Инженерный - Генераторная - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 15791 + - uid: 15774 components: - type: Transform pos: -17.5,-57.5 @@ -124586,7 +124614,7 @@ entities: location: РнД - Аномалии - proto: DefaultStationBeaconArmory entities: - - uid: 15792 + - uid: 15775 components: - type: Transform pos: 62.5,6.5 @@ -124597,7 +124625,7 @@ entities: location: Сб - оружиейная - proto: DefaultStationBeaconArrivals entities: - - uid: 15793 + - uid: 15776 components: - type: Transform pos: -11.5,69.5 @@ -124608,7 +124636,7 @@ entities: location: Прибытие - proto: DefaultStationBeaconArtifactLab entities: - - uid: 15794 + - uid: 15777 components: - type: Transform pos: -28.5,-41.5 @@ -124619,7 +124647,7 @@ entities: location: Научный - Артефакты - proto: DefaultStationBeaconBar entities: - - uid: 15795 + - uid: 15778 components: - type: Transform pos: -10.5,41.5 @@ -124630,7 +124658,7 @@ entities: location: Сервис - Бар - proto: DefaultStationBeaconBotany entities: - - uid: 15796 + - uid: 15779 components: - type: Transform pos: -29.5,50.5 @@ -124641,7 +124669,7 @@ entities: location: Сервис - Гидропоника - proto: DefaultStationBeaconBridge entities: - - uid: 15797 + - uid: 15780 components: - type: Transform pos: -0.5,16.5 @@ -124652,7 +124680,7 @@ entities: location: Мостик - proto: DefaultStationBeaconBrig entities: - - uid: 15798 + - uid: 15781 components: - type: Transform pos: 47.5,7.5 @@ -124663,7 +124691,7 @@ entities: location: Бриг - proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 15799 + - uid: 15782 components: - type: Transform pos: 9.5,3.5 @@ -124674,7 +124702,7 @@ entities: location: Мостик - Комната капитана - proto: DefaultStationBeaconCargoBay entities: - - uid: 15800 + - uid: 15783 components: - type: Transform pos: 37.5,50.5 @@ -124685,7 +124713,7 @@ entities: location: Карго - доки - proto: DefaultStationBeaconCERoom entities: - - uid: 15801 + - uid: 15784 components: - type: Transform pos: -63.5,7.5 @@ -124696,7 +124724,7 @@ entities: location: Инженерный - Офис старшего инженера - proto: DefaultStationBeaconChapel entities: - - uid: 15802 + - uid: 15785 components: - type: Transform pos: -16.5,-70.5 @@ -124707,7 +124735,7 @@ entities: location: Сервис - Церковь - proto: DefaultStationBeaconChemistry entities: - - uid: 15803 + - uid: 15786 components: - type: Transform pos: 5.5,-32.5 @@ -124718,7 +124746,7 @@ entities: location: Медотсек - Химия - proto: DefaultStationBeaconCMORoom entities: - - uid: 15804 + - uid: 15787 components: - type: Transform pos: 22.5,-45.5 @@ -124729,7 +124757,7 @@ entities: location: Медотсек - Кабинет главрача - proto: DefaultStationBeaconCourtroom entities: - - uid: 15805 + - uid: 15788 components: - type: Transform pos: 26.5,-1.5 @@ -124740,7 +124768,7 @@ entities: location: Зал суда - proto: DefaultStationBeaconCryonics entities: - - uid: 15806 + - uid: 15789 components: - type: Transform pos: 22.5,-39.5 @@ -124751,7 +124779,7 @@ entities: location: Медотсек - криогеника - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 15807 + - uid: 15790 components: - type: Transform pos: 30.5,10.5 @@ -124762,7 +124790,7 @@ entities: location: СБ - Офис детектива - proto: DefaultStationBeaconDisposals entities: - - uid: 15808 + - uid: 15791 components: - type: Transform pos: 28.5,59.5 @@ -124773,7 +124801,7 @@ entities: location: Мусоросброс - proto: DefaultStationBeaconDorms entities: - - uid: 15809 + - uid: 15792 components: - type: Transform pos: 48.5,-19.5 @@ -124784,7 +124812,7 @@ entities: location: Дормы - Дормы - proto: DefaultStationBeaconEngineering entities: - - uid: 15810 + - uid: 15793 components: - type: Transform pos: -53.5,11.5 @@ -124795,7 +124823,7 @@ entities: location: Инженерный отдел - proto: DefaultStationBeaconEvac entities: - - uid: 15811 + - uid: 15794 components: - type: Transform pos: -4.5,-72.5 @@ -124806,7 +124834,7 @@ entities: location: Отбытие - proto: DefaultStationBeaconEVAStorage entities: - - uid: 15812 + - uid: 15795 components: - type: Transform pos: -11.5,-13.5 @@ -124817,7 +124845,7 @@ entities: location: Командование - Хранение EVA - proto: DefaultStationBeaconGravGen entities: - - uid: 15813 + - uid: 15796 components: - type: Transform pos: -71.5,7.5 @@ -124828,7 +124856,7 @@ entities: location: Инженерный - Гравитационный генератор - proto: DefaultStationBeaconHOPOffice entities: - - uid: 15814 + - uid: 15797 components: - type: Transform pos: -10.5,1.5 @@ -124839,7 +124867,7 @@ entities: location: Мостик - Глава персонала - proto: DefaultStationBeaconHOSRoom entities: - - uid: 15815 + - uid: 15798 components: - type: Transform pos: 40.5,20.5 @@ -124850,7 +124878,7 @@ entities: location: Сб - кабинет ГСБ - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 15816 + - uid: 15799 components: - type: Transform pos: 1.5,52.5 @@ -124861,7 +124889,7 @@ entities: location: Комната уборщика - proto: DefaultStationBeaconKitchen entities: - - uid: 15817 + - uid: 15800 components: - type: Transform pos: -30.5,35.5 @@ -124872,7 +124900,7 @@ entities: location: Сервис - Кухня - proto: DefaultStationBeaconLawOffice entities: - - uid: 15818 + - uid: 15801 components: - type: Transform pos: 35.5,0.5 @@ -124883,7 +124911,7 @@ entities: location: Офис агента внутренних дел - proto: DefaultStationBeaconLibrary entities: - - uid: 15819 + - uid: 15802 components: - type: Transform pos: -28.5,-3.5 @@ -124894,7 +124922,7 @@ entities: location: Библиотека - Центральный зал - proto: DefaultStationBeaconMedbay entities: - - uid: 15820 + - uid: 15803 components: - type: Transform pos: 8.5,-25.5 @@ -124905,7 +124933,7 @@ entities: location: Медотсек - Лобби - proto: DefaultStationBeaconMorgue entities: - - uid: 15821 + - uid: 15804 components: - type: Transform pos: 7.5,-50.5 @@ -124916,7 +124944,7 @@ entities: location: Медотсек - Морг - proto: DefaultStationBeaconPermaBrig entities: - - uid: 15822 + - uid: 15805 components: - type: Transform pos: 91.5,1.5 @@ -124928,7 +124956,7 @@ entities: location: Пермабриг - proto: DefaultStationBeaconQMRoom entities: - - uid: 15823 + - uid: 15806 components: - type: Transform pos: 26.5,36.5 @@ -124939,7 +124967,7 @@ entities: location: Снабжение - Офис квартирмейстер - proto: DefaultStationBeaconRDRoom entities: - - uid: 15824 + - uid: 15807 components: - type: Transform pos: -18.5,-40.5 @@ -124950,7 +124978,7 @@ entities: location: Научный - Офис научного руководителя - proto: DefaultStationBeaconSalvage entities: - - uid: 15825 + - uid: 15808 components: - type: Transform pos: 23.5,29.5 @@ -124961,7 +124989,7 @@ entities: location: Карго - утилизаторная - proto: DefaultStationBeaconScience entities: - - uid: 15826 + - uid: 15809 components: - type: Transform pos: -6.5,-32.5 @@ -124972,7 +125000,7 @@ entities: location: Научный - РНД - proto: DefaultStationBeaconSecurityCheckpoint entities: - - uid: 15827 + - uid: 15810 components: - type: Transform pos: 6.5,-59.5 @@ -124981,7 +125009,7 @@ entities: text: КПП - type: WarpPoint location: Отбытие - КПП - - uid: 15828 + - uid: 15811 components: - type: Transform pos: 2.5,63.5 @@ -124992,7 +125020,7 @@ entities: location: Прибытие - Контрольно-пропускной пункт - proto: DefaultStationBeaconServerRoom entities: - - uid: 15829 + - uid: 15812 components: - type: Transform pos: -19.5,-52.5 @@ -125003,7 +125031,7 @@ entities: location: Научный - серверная - proto: DefaultStationBeaconSolars entities: - - uid: 15830 + - uid: 15813 components: - type: Transform pos: 28.5,95.5 @@ -125012,7 +125040,7 @@ entities: text: Соляры - type: WarpPoint location: Соляры - Северо-восток - - uid: 15831 + - uid: 15814 components: - type: Transform pos: -75.5,73.5 @@ -125021,7 +125049,7 @@ entities: text: Соляры - type: WarpPoint location: Соляры - Северо-Запад - - uid: 15832 + - uid: 15815 components: - type: Transform pos: -51.5,-85.5 @@ -125032,7 +125060,7 @@ entities: location: Соляры - Юго-западные - proto: DefaultStationBeaconSupply entities: - - uid: 15833 + - uid: 15816 components: - type: Transform pos: 6.5,30.5 @@ -125043,7 +125071,7 @@ entities: location: Снабжение - Холл - proto: DefaultStationBeaconSurgery entities: - - uid: 15834 + - uid: 15817 components: - type: Transform pos: 32.5,-48.5 @@ -125054,7 +125082,7 @@ entities: location: Медбей - операционная - proto: DefaultStationBeaconTEG entities: - - uid: 15835 + - uid: 15818 components: - type: Transform pos: -51.5,50.5 @@ -125065,7 +125093,7 @@ entities: location: Атмос ТЭГ - proto: DefaultStationBeaconTheater entities: - - uid: 15836 + - uid: 15819 components: - type: Transform pos: -12.5,30.5 @@ -125077,7 +125105,7 @@ entities: location: Сцена - proto: DefaultStationBeaconToolRoom entities: - - uid: 15837 + - uid: 15820 components: - type: Transform pos: -26.5,12.5 @@ -125088,7 +125116,7 @@ entities: location: Инженерный - Основное хранилище инструментов - proto: DefaultStationBeaconWardensOffice entities: - - uid: 15838 + - uid: 15821 components: - type: Transform pos: 53.5,6.5 @@ -125099,120 +125127,120 @@ entities: location: СБ - смотритель - proto: DefibrillatorCabinetFilled entities: - - uid: 15839 + - uid: 15822 components: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 15840 + - uid: 15823 components: - type: Transform pos: 62.5,-1.5 parent: 2 - - uid: 15841 + - uid: 15824 components: - type: Transform pos: 37.5,-36.5 parent: 2 - - uid: 15842 + - uid: 15825 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-63.5 parent: 2 - - uid: 15843 + - uid: 15826 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-53.5 parent: 2 - - uid: 15844 + - uid: 15827 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,64.5 parent: 2 - - uid: 15845 + - uid: 15828 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-15.5 parent: 2 - - uid: 15846 + - uid: 15829 components: - type: Transform pos: -4.5,-56.5 parent: 2 - - uid: 15847 + - uid: 15830 components: - type: Transform pos: 13.5,-41.5 parent: 2 - proto: DeployableBarrier entities: - - uid: 15848 + - uid: 15831 components: - type: Transform pos: 67.5,6.5 parent: 2 - - uid: 15849 + - uid: 15832 components: - type: Transform pos: 68.5,7.5 parent: 2 - - uid: 15850 + - uid: 15833 components: - type: Transform pos: 70.5,7.5 parent: 2 - - uid: 15851 + - uid: 15834 components: - type: Transform pos: 8.5,-65.5 parent: 2 - - uid: 15852 + - uid: 15835 components: - type: Transform pos: 9.5,-65.5 parent: 2 - - uid: 15853 + - uid: 15836 components: - type: Transform pos: 65.5,6.5 parent: 2 - - uid: 15854 + - uid: 15837 components: - type: Transform pos: 9.5,-64.5 parent: 2 - - uid: 15855 + - uid: 15838 components: - type: Transform pos: 8.5,-63.5 parent: 2 - - uid: 15856 + - uid: 15839 components: - type: Transform pos: 9.5,-63.5 parent: 2 - proto: DeskBell entities: - - uid: 15857 + - uid: 15840 components: - type: Transform pos: -14.452139,4.661233 parent: 2 - - uid: 15858 + - uid: 15841 components: - type: Transform pos: -27.526104,38.624985 parent: 2 - - uid: 15859 + - uid: 15842 components: - type: Transform pos: -23.478344,51.650402 parent: 2 - - uid: 15860 + - uid: 15843 components: - type: Transform pos: -5.5,-28.5 @@ -125220,14 +125248,14 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 15861 + - uid: 15844 components: - type: Transform pos: 9.476555,32.663494 parent: 2 - proto: DiceBag entities: - - uid: 15862 + - uid: 15845 components: - type: Transform pos: 34.408886,-31.340927 @@ -125236,778 +125264,778 @@ entities: canCollide: False - proto: DiseaseDiagnoser entities: - - uid: 15863 + - uid: 15846 components: - type: Transform pos: 29.5,-65.5 parent: 2 - proto: DisposalBend entities: - - uid: 15864 + - uid: 15847 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,12.5 parent: 2 - - uid: 15865 + - uid: 15848 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,20.5 parent: 2 - - uid: 15866 + - uid: 15849 components: - type: Transform pos: -24.5,30.5 parent: 2 - - uid: 15867 + - uid: 15850 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,48.5 parent: 2 - - uid: 15868 + - uid: 15851 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,30.5 parent: 2 - - uid: 15869 + - uid: 15852 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,33.5 parent: 2 - - uid: 15870 + - uid: 15853 components: - type: Transform pos: -29.5,33.5 parent: 2 - - uid: 15871 + - uid: 15854 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,36.5 parent: 2 - - uid: 15872 + - uid: 15855 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,28.5 parent: 2 - - uid: 15873 + - uid: 15856 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,28.5 parent: 2 - - uid: 15874 + - uid: 15857 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,57.5 parent: 2 - - uid: 15875 + - uid: 15858 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,56.5 parent: 2 - - uid: 15876 + - uid: 15859 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-19.5 parent: 2 - - uid: 15877 + - uid: 15860 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 2 - - uid: 15878 + - uid: 15861 components: - type: Transform pos: -8.5,14.5 parent: 2 - - uid: 15879 + - uid: 15862 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,47.5 parent: 2 - - uid: 15880 + - uid: 15863 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,37.5 parent: 2 - - uid: 15881 + - uid: 15864 components: - type: Transform pos: 36.5,-73.5 parent: 2 - - uid: 15882 + - uid: 15865 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-68.5 parent: 2 - - uid: 15883 + - uid: 15866 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-73.5 parent: 2 - - uid: 15884 + - uid: 15867 components: - type: Transform pos: 35.5,-68.5 parent: 2 - - uid: 15885 + - uid: 15868 components: - type: Transform pos: -5.5,37.5 parent: 2 - - uid: 15886 + - uid: 15869 components: - type: Transform pos: 42.5,30.5 parent: 2 - - uid: 15887 + - uid: 15870 components: - type: Transform pos: -46.5,21.5 parent: 2 - - uid: 15888 + - uid: 15871 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,36.5 parent: 2 - - uid: 15889 + - uid: 15872 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-79.5 parent: 2 - - uid: 15890 + - uid: 15873 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,45.5 parent: 2 - - uid: 15891 + - uid: 15874 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,4.5 parent: 2 - - uid: 15892 + - uid: 15875 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 15893 + - uid: 15876 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,18.5 parent: 2 - - uid: 15894 + - uid: 15877 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,31.5 parent: 2 - - uid: 15895 + - uid: 15878 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,57.5 parent: 2 - - uid: 15896 + - uid: 15879 components: - type: Transform pos: -54.5,42.5 parent: 2 - - uid: 15897 + - uid: 15880 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,42.5 parent: 2 - - uid: 15898 + - uid: 15881 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,27.5 parent: 2 - - uid: 15899 + - uid: 15882 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,34.5 parent: 2 - - uid: 15900 + - uid: 15883 components: - type: Transform pos: -55.5,45.5 parent: 2 - - uid: 15901 + - uid: 15884 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,55.5 parent: 2 - - uid: 15902 + - uid: 15885 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,30.5 parent: 2 - - uid: 15903 + - uid: 15886 components: - type: Transform pos: 33.5,31.5 parent: 2 - - uid: 15904 + - uid: 15887 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,55.5 parent: 2 - - uid: 15905 + - uid: 15888 components: - type: Transform pos: -53.5,24.5 parent: 2 - - uid: 15906 + - uid: 15889 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,45.5 parent: 2 - - uid: 15907 + - uid: 15890 components: - type: Transform pos: -6.5,45.5 parent: 2 - - uid: 15908 + - uid: 15891 components: - type: Transform pos: -57.5,18.5 parent: 2 - - uid: 15909 + - uid: 15892 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 15910 + - uid: 15893 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,24.5 parent: 2 - - uid: 15911 + - uid: 15894 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,14.5 parent: 2 - - uid: 15912 + - uid: 15895 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,28.5 parent: 2 - - uid: 15913 + - uid: 15896 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,10.5 parent: 2 - - uid: 15914 + - uid: 15897 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,56.5 parent: 2 - - uid: 15915 + - uid: 15898 components: - type: Transform pos: 10.5,57.5 parent: 2 - - uid: 15916 + - uid: 15899 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,82.5 parent: 2 - - uid: 15917 + - uid: 15900 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,68.5 parent: 2 - - uid: 15918 + - uid: 15901 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,68.5 parent: 2 - - uid: 15919 + - uid: 15902 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,68.5 parent: 2 - - uid: 15920 + - uid: 15903 components: - type: Transform pos: -18.5,68.5 parent: 2 - - uid: 15921 + - uid: 15904 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,65.5 parent: 2 - - uid: 15922 + - uid: 15905 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,65.5 parent: 2 - - uid: 15923 + - uid: 15906 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,61.5 parent: 2 - - uid: 15924 + - uid: 15907 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,46.5 parent: 2 - - uid: 15925 + - uid: 15908 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,36.5 parent: 2 - - uid: 15926 + - uid: 15909 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,33.5 parent: 2 - - uid: 15927 + - uid: 15910 components: - type: Transform pos: -18.5,36.5 parent: 2 - - uid: 15928 + - uid: 15911 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 15929 + - uid: 15912 components: - type: Transform pos: 17.5,23.5 parent: 2 - - uid: 15930 + - uid: 15913 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,12.5 parent: 2 - - uid: 15931 + - uid: 15914 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-64.5 parent: 2 - - uid: 15932 + - uid: 15915 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.49999997,-79.5 parent: 2 - - uid: 15933 + - uid: 15916 components: - type: Transform pos: 0.49999997,-64.5 parent: 2 - - uid: 15934 + - uid: 15917 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-79.5 parent: 2 - - uid: 15935 + - uid: 15918 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-77.5 parent: 2 - - uid: 15936 + - uid: 15919 components: - type: Transform pos: -4.5,-77.5 parent: 2 - - uid: 15937 + - uid: 15920 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-27.5 parent: 2 - - uid: 15938 + - uid: 15921 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-34.5 parent: 2 - - uid: 15939 + - uid: 15922 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 15940 + - uid: 15923 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 - - uid: 15941 + - uid: 15924 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 - - uid: 15942 + - uid: 15925 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-34.5 parent: 2 - - uid: 15943 + - uid: 15926 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-46.5 parent: 2 - - uid: 15944 + - uid: 15927 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 - - uid: 15945 + - uid: 15928 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-43.5 parent: 2 - - uid: 15946 + - uid: 15929 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-39.5 parent: 2 - - uid: 15947 + - uid: 15930 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-45.5 parent: 2 - - uid: 15948 + - uid: 15931 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-45.5 parent: 2 - - uid: 15949 + - uid: 15932 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-51.5 parent: 2 - - uid: 15950 + - uid: 15933 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 15951 + - uid: 15934 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-52.5 parent: 2 - - uid: 15952 + - uid: 15935 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-53.5 parent: 2 - - uid: 15953 + - uid: 15936 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-57.5 parent: 2 - - uid: 15954 + - uid: 15937 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-45.5 parent: 2 - - uid: 15955 + - uid: 15938 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-34.5 parent: 2 - - uid: 15956 + - uid: 15939 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-45.5 parent: 2 - - uid: 15957 + - uid: 15940 components: - type: Transform pos: -8.5,-29.5 parent: 2 - - uid: 15958 + - uid: 15941 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-34.5 parent: 2 - - uid: 15959 + - uid: 15942 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-19.5 parent: 2 - - uid: 15960 + - uid: 15943 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-12.5 parent: 2 - - uid: 15961 + - uid: 15944 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-11.5 parent: 2 - - uid: 15962 + - uid: 15945 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-11.5 parent: 2 - - uid: 15963 + - uid: 15946 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-2.5 parent: 2 - - uid: 15964 + - uid: 15947 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-8.5 parent: 2 - - uid: 15965 + - uid: 15948 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,9.5 parent: 2 - - uid: 15966 + - uid: 15949 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 15967 + - uid: 15950 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,4.5 parent: 2 - - uid: 15968 + - uid: 15951 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,4.5 parent: 2 - - uid: 15969 + - uid: 15952 components: - type: Transform pos: 52.5,8.5 parent: 2 - - uid: 15970 + - uid: 15953 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,25.5 parent: 2 - - uid: 15971 + - uid: 15954 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,22.5 parent: 2 - - uid: 15972 + - uid: 15955 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,22.5 parent: 2 - - uid: 15973 + - uid: 15956 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,20.5 parent: 2 - - uid: 15974 + - uid: 15957 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,12.5 parent: 2 - - uid: 15975 + - uid: 15958 components: - type: Transform pos: -9.5,30.5 parent: 2 - - uid: 15976 + - uid: 15959 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,5.5 parent: 2 - - uid: 15977 + - uid: 15960 components: - type: Transform pos: -41.5,12.5 parent: 2 - - uid: 15978 + - uid: 15961 components: - type: Transform pos: -7.5,50.5 parent: 2 - - uid: 15979 + - uid: 15962 components: - type: Transform pos: 56.5,-9.5 parent: 2 - - uid: 15980 + - uid: 15963 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-29.5 parent: 2 - - uid: 15981 + - uid: 15964 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-20.5 parent: 2 - - uid: 15982 + - uid: 15965 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-18.5 parent: 2 - - uid: 15983 + - uid: 15966 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-18.5 parent: 2 - - uid: 15984 + - uid: 15967 components: - type: Transform pos: 56.5,-20.5 parent: 2 - - uid: 15985 + - uid: 15968 components: - type: Transform pos: 41.5,-15.5 parent: 2 - - uid: 15986 + - uid: 15969 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-15.5 parent: 2 - - uid: 15987 + - uid: 15970 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-11.5 parent: 2 - - uid: 15988 + - uid: 15971 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 15989 + - uid: 15972 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-9.5 parent: 2 - - uid: 15990 + - uid: 15973 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,11.5 parent: 2 - - uid: 15991 + - uid: 15974 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,11.5 parent: 2 - - uid: 15992 + - uid: 15975 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-22.5 parent: 2 - - uid: 15993 + - uid: 15976 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-22.5 parent: 2 - - uid: 15994 + - uid: 15977 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,25.5 parent: 2 - - uid: 15995 + - uid: 15978 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,28.5 parent: 2 - - uid: 15996 + - uid: 15979 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,4.5 parent: 2 - - uid: 15997 + - uid: 15980 components: - type: Transform rot: 3.141592653589793 rad @@ -126015,198 +126043,198 @@ entities: parent: 2 - proto: DisposalJunction entities: - - uid: 15998 + - uid: 15981 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,23.5 parent: 2 - - uid: 15999 + - uid: 15982 components: - type: Transform pos: 4.5,34.5 parent: 2 - - uid: 16000 + - uid: 15983 components: - type: Transform pos: 4.5,27.5 parent: 2 - - uid: 16001 + - uid: 15984 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,47.5 parent: 2 - - uid: 16002 + - uid: 15985 components: - type: Transform pos: -57.5,14.5 parent: 2 - - uid: 16003 + - uid: 15986 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,12.5 parent: 2 - - uid: 16004 + - uid: 15987 components: - type: Transform pos: -29.5,53.5 parent: 2 - - uid: 16005 + - uid: 15988 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-10.5 parent: 2 - - uid: 16006 + - uid: 15989 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,5.5 parent: 2 - - uid: 16007 + - uid: 15990 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 16008 + - uid: 15991 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-19.5 parent: 2 - - uid: 16009 + - uid: 15992 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,57.5 parent: 2 - - uid: 16010 + - uid: 15993 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,57.5 parent: 2 - - uid: 16011 + - uid: 15994 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,50.5 parent: 2 - - uid: 16012 + - uid: 15995 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,30.5 parent: 2 - - uid: 16013 + - uid: 15996 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,23.5 parent: 2 - - uid: 16014 + - uid: 15997 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,14.5 parent: 2 - - uid: 16015 + - uid: 15998 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-19.5 parent: 2 - - uid: 16016 + - uid: 15999 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 - - uid: 16017 + - uid: 16000 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-61.5 parent: 2 - - uid: 16018 + - uid: 16001 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-79.5 parent: 2 - - uid: 16019 + - uid: 16002 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-25.5 parent: 2 - - uid: 16020 + - uid: 16003 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 - - uid: 16021 + - uid: 16004 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-49.5 parent: 2 - - uid: 16022 + - uid: 16005 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-34.5 parent: 2 - - uid: 16023 + - uid: 16006 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-37.5 parent: 2 - - uid: 16024 + - uid: 16007 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-45.5 parent: 2 - - uid: 16025 + - uid: 16008 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-8.5 parent: 2 - - uid: 16026 + - uid: 16009 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 - - uid: 16027 + - uid: 16010 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 16028 + - uid: 16011 components: - type: Transform pos: 47.5,20.5 parent: 2 - - uid: 16029 + - uid: 16012 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,4.5 parent: 2 - - uid: 16030 + - uid: 16013 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-34.5 parent: 2 - - uid: 16031 + - uid: 16014 components: - type: Transform rot: -1.5707963267948966 rad @@ -126214,148 +126242,148 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 16032 + - uid: 16015 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,36.5 parent: 2 - - uid: 16033 + - uid: 16016 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,46.5 parent: 2 - - uid: 16034 + - uid: 16017 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,36.5 parent: 2 - - uid: 16035 + - uid: 16018 components: - type: Transform pos: -53.5,21.5 parent: 2 - - uid: 16036 + - uid: 16019 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,33.5 parent: 2 - - uid: 16037 + - uid: 16020 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,12.5 parent: 2 - - uid: 16038 + - uid: 16021 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,57.5 parent: 2 - - uid: 16039 + - uid: 16022 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,48.5 parent: 2 - - uid: 16040 + - uid: 16023 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,22.5 parent: 2 - - uid: 16041 + - uid: 16024 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,5.5 parent: 2 - - uid: 16042 + - uid: 16025 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-2.5 parent: 2 - - uid: 16043 + - uid: 16026 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-19.5 parent: 2 - - uid: 16044 + - uid: 16027 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-19.5 parent: 2 - - uid: 16045 + - uid: 16028 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,14.5 parent: 2 - - uid: 16046 + - uid: 16029 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,12.5 parent: 2 - - uid: 16047 + - uid: 16030 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-63.5 parent: 2 - - uid: 16048 + - uid: 16031 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-34.5 parent: 2 - - uid: 16049 + - uid: 16032 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-39.5 parent: 2 - - uid: 16050 + - uid: 16033 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-52.5 parent: 2 - - uid: 16051 + - uid: 16034 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 16052 + - uid: 16035 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,22.5 parent: 2 - - uid: 16053 + - uid: 16036 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 16054 + - uid: 16037 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,10.5 parent: 2 - - uid: 16055 + - uid: 16038 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,12.5 parent: 2 - - uid: 16056 + - uid: 16039 components: - type: Transform rot: 3.141592653589793 rad @@ -126363,6404 +126391,6404 @@ entities: parent: 2 - proto: DisposalPipe entities: - - uid: 16057 + - uid: 16040 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 16058 + - uid: 16041 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,12.5 parent: 2 - - uid: 16059 + - uid: 16042 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,12.5 parent: 2 - - uid: 16060 + - uid: 16043 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,31.5 parent: 2 - - uid: 16061 + - uid: 16044 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-41.5 parent: 2 - - uid: 16062 + - uid: 16045 components: - type: Transform pos: -26.5,31.5 parent: 2 - - uid: 16063 + - uid: 16046 components: - type: Transform pos: -30.5,31.5 parent: 2 - - uid: 16064 + - uid: 16047 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,25.5 parent: 2 - - uid: 16065 + - uid: 16048 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,33.5 parent: 2 - - uid: 16066 + - uid: 16049 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,30.5 parent: 2 - - uid: 16067 + - uid: 16050 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,35.5 parent: 2 - - uid: 16068 + - uid: 16051 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,29.5 parent: 2 - - uid: 16069 + - uid: 16052 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,26.5 parent: 2 - - uid: 16070 + - uid: 16053 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,36.5 parent: 2 - - uid: 16071 + - uid: 16054 components: - type: Transform pos: -16.5,56.5 parent: 2 - - uid: 16072 + - uid: 16055 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,33.5 parent: 2 - - uid: 16073 + - uid: 16056 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,36.5 parent: 2 - - uid: 16074 + - uid: 16057 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,36.5 parent: 2 - - uid: 16075 + - uid: 16058 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,32.5 parent: 2 - - uid: 16076 + - uid: 16059 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,33.5 parent: 2 - - uid: 16077 + - uid: 16060 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,36.5 parent: 2 - - uid: 16078 + - uid: 16061 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,56.5 parent: 2 - - uid: 16079 + - uid: 16062 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,27.5 parent: 2 - - uid: 16080 + - uid: 16063 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,36.5 parent: 2 - - uid: 16081 + - uid: 16064 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,36.5 parent: 2 - - uid: 16082 + - uid: 16065 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,36.5 parent: 2 - - uid: 16083 + - uid: 16066 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,36.5 parent: 2 - - uid: 16084 + - uid: 16067 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,36.5 parent: 2 - - uid: 16085 + - uid: 16068 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,36.5 parent: 2 - - uid: 16086 + - uid: 16069 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-31.5 parent: 2 - - uid: 16087 + - uid: 16070 components: - type: Transform rot: 3.141592653589793 rad pos: -0.49999997,-23.5 parent: 2 - - uid: 16088 + - uid: 16071 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-33.5 parent: 2 - - uid: 16089 + - uid: 16072 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 16090 + - uid: 16073 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,28.5 parent: 2 - - uid: 16091 + - uid: 16074 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 16092 + - uid: 16075 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-20.5 parent: 2 - - uid: 16093 + - uid: 16076 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,14.5 parent: 2 - - uid: 16094 + - uid: 16077 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-28.5 parent: 2 - - uid: 16095 + - uid: 16078 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,42.5 parent: 2 - - uid: 16096 + - uid: 16079 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 - - uid: 16097 + - uid: 16080 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-24.5 parent: 2 - - uid: 16098 + - uid: 16081 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 2 - - uid: 16099 + - uid: 16082 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-30.5 parent: 2 - - uid: 16100 + - uid: 16083 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,43.5 parent: 2 - - uid: 16101 + - uid: 16084 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,44.5 parent: 2 - - uid: 16102 + - uid: 16085 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 16103 + - uid: 16086 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-20.5 parent: 2 - - uid: 16104 + - uid: 16087 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-38.5 parent: 2 - - uid: 16105 + - uid: 16088 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 - - uid: 16106 + - uid: 16089 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 - - uid: 16107 + - uid: 16090 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-36.5 parent: 2 - - uid: 16108 + - uid: 16091 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-39.5 parent: 2 - - uid: 16109 + - uid: 16092 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - - uid: 16110 + - uid: 16093 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 2 - - uid: 16111 + - uid: 16094 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-37.5 parent: 2 - - uid: 16112 + - uid: 16095 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-29.5 parent: 2 - - uid: 16113 + - uid: 16096 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,41.5 parent: 2 - - uid: 16114 + - uid: 16097 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 2 - - uid: 16115 + - uid: 16098 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,14.5 parent: 2 - - uid: 16116 + - uid: 16099 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,14.5 parent: 2 - - uid: 16117 + - uid: 16100 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-51.5 parent: 2 - - uid: 16118 + - uid: 16101 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-51.5 parent: 2 - - uid: 16119 + - uid: 16102 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-68.5 parent: 2 - - uid: 16120 + - uid: 16103 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,14.5 parent: 2 - - uid: 16121 + - uid: 16104 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,14.5 parent: 2 - - uid: 16122 + - uid: 16105 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-43.5 parent: 2 - - uid: 16123 + - uid: 16106 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-28.5 parent: 2 - - uid: 16124 + - uid: 16107 components: - type: Transform pos: -42.5,-30.5 parent: 2 - - uid: 16125 + - uid: 16108 components: - type: Transform pos: -38.5,-30.5 parent: 2 - - uid: 16126 + - uid: 16109 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 2 - - uid: 16127 + - uid: 16110 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-26.5 parent: 2 - - uid: 16128 + - uid: 16111 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,6.5 parent: 2 - - uid: 16129 + - uid: 16112 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-56.5 parent: 2 - - uid: 16130 + - uid: 16113 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,9.5 parent: 2 - - uid: 16131 + - uid: 16114 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,7.5 parent: 2 - - uid: 16132 + - uid: 16115 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,47.5 parent: 2 - - uid: 16133 + - uid: 16116 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,47.5 parent: 2 - - uid: 16134 + - uid: 16117 components: - type: Transform pos: 6.5,49.5 parent: 2 - - uid: 16135 + - uid: 16118 components: - type: Transform pos: 35.5,-72.5 parent: 2 - - uid: 16136 + - uid: 16119 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,39.5 parent: 2 - - uid: 16137 + - uid: 16120 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-68.5 parent: 2 - - uid: 16138 + - uid: 16121 components: - type: Transform pos: 35.5,-69.5 parent: 2 - - uid: 16139 + - uid: 16122 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 2 - - uid: 16140 + - uid: 16123 components: - type: Transform rot: 3.141592653589793 rad pos: -0.49999997,-35.5 parent: 2 - - uid: 16141 + - uid: 16124 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,14.5 parent: 2 - - uid: 16142 + - uid: 16125 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-51.5 parent: 2 - - uid: 16143 + - uid: 16126 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,14.5 parent: 2 - - uid: 16144 + - uid: 16127 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,14.5 parent: 2 - - uid: 16145 + - uid: 16128 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 - - uid: 16146 + - uid: 16129 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-44.5 parent: 2 - - uid: 16147 + - uid: 16130 components: - type: Transform pos: 6.5,54.5 parent: 2 - - uid: 16148 + - uid: 16131 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-68.5 parent: 2 - - uid: 16149 + - uid: 16132 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-51.5 parent: 2 - - uid: 16150 + - uid: 16133 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-68.5 parent: 2 - - uid: 16151 + - uid: 16134 components: - type: Transform pos: 35.5,-71.5 parent: 2 - - uid: 16152 + - uid: 16135 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-68.5 parent: 2 - - uid: 16153 + - uid: 16136 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 16154 + - uid: 16137 components: - type: Transform pos: 6.5,52.5 parent: 2 - - uid: 16155 + - uid: 16138 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,40.5 parent: 2 - - uid: 16156 + - uid: 16139 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 16157 + - uid: 16140 components: - type: Transform pos: 6.5,50.5 parent: 2 - - uid: 16158 + - uid: 16141 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,30.5 parent: 2 - - uid: 16159 + - uid: 16142 components: - type: Transform pos: -34.5,-30.5 parent: 2 - - uid: 16160 + - uid: 16143 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,43.5 parent: 2 - - uid: 16161 + - uid: 16144 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,44.5 parent: 2 - - uid: 16162 + - uid: 16145 components: - type: Transform pos: -40.5,-24.5 parent: 2 - - uid: 16163 + - uid: 16146 components: - type: Transform pos: -36.5,-24.5 parent: 2 - - uid: 16164 + - uid: 16147 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,45.5 parent: 2 - - uid: 16165 + - uid: 16148 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,46.5 parent: 2 - - uid: 16166 + - uid: 16149 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,14.5 parent: 2 - - uid: 16167 + - uid: 16150 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,8.5 parent: 2 - - uid: 16168 + - uid: 16151 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,47.5 parent: 2 - - uid: 16169 + - uid: 16152 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,29.5 parent: 2 - - uid: 16170 + - uid: 16153 components: - type: Transform pos: 6.5,48.5 parent: 2 - - uid: 16171 + - uid: 16154 components: - type: Transform pos: 35.5,-70.5 parent: 2 - - uid: 16172 + - uid: 16155 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-28.5 parent: 2 - - uid: 16173 + - uid: 16156 components: - type: Transform pos: -42.5,-31.5 parent: 2 - - uid: 16174 + - uid: 16157 components: - type: Transform pos: -38.5,-31.5 parent: 2 - - uid: 16175 + - uid: 16158 components: - type: Transform pos: -34.5,-31.5 parent: 2 - - uid: 16176 + - uid: 16159 components: - type: Transform pos: -32.5,-23.5 parent: 2 - - uid: 16177 + - uid: 16160 components: - type: Transform pos: -36.5,-23.5 parent: 2 - - uid: 16178 + - uid: 16161 components: - type: Transform pos: -40.5,-23.5 parent: 2 - - uid: 16179 + - uid: 16162 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,14.5 parent: 2 - - uid: 16180 + - uid: 16163 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 2 - - uid: 16181 + - uid: 16164 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,14.5 parent: 2 - - uid: 16182 + - uid: 16165 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,14.5 parent: 2 - - uid: 16183 + - uid: 16166 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,14.5 parent: 2 - - uid: 16184 + - uid: 16167 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,14.5 parent: 2 - - uid: 16185 + - uid: 16168 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 - - uid: 16186 + - uid: 16169 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,14.5 parent: 2 - - uid: 16187 + - uid: 16170 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-34.5 parent: 2 - - uid: 16188 + - uid: 16171 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,17.5 parent: 2 - - uid: 16189 + - uid: 16172 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,18.5 parent: 2 - - uid: 16190 + - uid: 16173 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,25.5 parent: 2 - - uid: 16191 + - uid: 16174 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,31.5 parent: 2 - - uid: 16192 + - uid: 16175 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,10.5 parent: 2 - - uid: 16193 + - uid: 16176 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,42.5 parent: 2 - - uid: 16194 + - uid: 16177 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,21.5 parent: 2 - - uid: 16195 + - uid: 16178 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 - - uid: 16196 + - uid: 16179 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,32.5 parent: 2 - - uid: 16197 + - uid: 16180 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,31.5 parent: 2 - - uid: 16198 + - uid: 16181 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,10.5 parent: 2 - - uid: 16199 + - uid: 16182 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,45.5 parent: 2 - - uid: 16200 + - uid: 16183 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,36.5 parent: 2 - - uid: 16201 + - uid: 16184 components: - type: Transform pos: -57.5,15.5 parent: 2 - - uid: 16202 + - uid: 16185 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,14.5 parent: 2 - - uid: 16203 + - uid: 16186 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,40.5 parent: 2 - - uid: 16204 + - uid: 16187 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,39.5 parent: 2 - - uid: 16205 + - uid: 16188 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,44.5 parent: 2 - - uid: 16206 + - uid: 16189 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,43.5 parent: 2 - - uid: 16207 + - uid: 16190 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,41.5 parent: 2 - - uid: 16208 + - uid: 16191 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,14.5 parent: 2 - - uid: 16209 + - uid: 16192 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,48.5 parent: 2 - - uid: 16210 + - uid: 16193 components: - type: Transform pos: -30.5,32.5 parent: 2 - - uid: 16211 + - uid: 16194 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,33.5 parent: 2 - - uid: 16212 + - uid: 16195 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 - - uid: 16213 + - uid: 16196 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,30.5 parent: 2 - - uid: 16214 + - uid: 16197 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,30.5 parent: 2 - - uid: 16215 + - uid: 16198 components: - type: Transform pos: -57.5,13.5 parent: 2 - - uid: 16216 + - uid: 16199 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,14.5 parent: 2 - - uid: 16217 + - uid: 16200 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,48.5 parent: 2 - - uid: 16218 + - uid: 16201 components: - type: Transform pos: -54.5,34.5 parent: 2 - - uid: 16219 + - uid: 16202 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,48.5 parent: 2 - - uid: 16220 + - uid: 16203 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,34.5 parent: 2 - - uid: 16221 + - uid: 16204 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,45.5 parent: 2 - - uid: 16222 + - uid: 16205 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,31.5 parent: 2 - - uid: 16223 + - uid: 16206 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,35.5 parent: 2 - - uid: 16224 + - uid: 16207 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,10.5 parent: 2 - - uid: 16225 + - uid: 16208 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,31.5 parent: 2 - - uid: 16226 + - uid: 16209 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,14.5 parent: 2 - - uid: 16227 + - uid: 16210 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,45.5 parent: 2 - - uid: 16228 + - uid: 16211 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 - - uid: 16229 + - uid: 16212 components: - type: Transform pos: -57.5,16.5 parent: 2 - - uid: 16230 + - uid: 16213 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,48.5 parent: 2 - - uid: 16231 + - uid: 16214 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,14.5 parent: 2 - - uid: 16232 + - uid: 16215 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,28.5 parent: 2 - - uid: 16233 + - uid: 16216 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,45.5 parent: 2 - - uid: 16234 + - uid: 16217 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,48.5 parent: 2 - - uid: 16235 + - uid: 16218 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,10.5 parent: 2 - - uid: 16236 + - uid: 16219 components: - type: Transform pos: -53.5,13.5 parent: 2 - - uid: 16237 + - uid: 16220 components: - type: Transform pos: -57.5,17.5 parent: 2 - - uid: 16238 + - uid: 16221 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,45.5 parent: 2 - - uid: 16239 + - uid: 16222 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,14.5 parent: 2 - - uid: 16240 + - uid: 16223 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,45.5 parent: 2 - - uid: 16241 + - uid: 16224 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,48.5 parent: 2 - - uid: 16242 + - uid: 16225 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,31.5 parent: 2 - - uid: 16243 + - uid: 16226 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,45.5 parent: 2 - - uid: 16244 + - uid: 16227 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,45.5 parent: 2 - - uid: 16245 + - uid: 16228 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,48.5 parent: 2 - - uid: 16246 + - uid: 16229 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,48.5 parent: 2 - - uid: 16247 + - uid: 16230 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,45.5 parent: 2 - - uid: 16248 + - uid: 16231 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 - - uid: 16249 + - uid: 16232 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,56.5 parent: 2 - - uid: 16250 + - uid: 16233 components: - type: Transform pos: -29.5,54.5 parent: 2 - - uid: 16251 + - uid: 16234 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,48.5 parent: 2 - - uid: 16252 + - uid: 16235 components: - type: Transform pos: -29.5,49.5 parent: 2 - - uid: 16253 + - uid: 16236 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,53.5 parent: 2 - - uid: 16254 + - uid: 16237 components: - type: Transform pos: -29.5,51.5 parent: 2 - - uid: 16255 + - uid: 16238 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,38.5 parent: 2 - - uid: 16256 + - uid: 16239 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,53.5 parent: 2 - - uid: 16257 + - uid: 16240 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,53.5 parent: 2 - - uid: 16258 + - uid: 16241 components: - type: Transform pos: -29.5,50.5 parent: 2 - - uid: 16259 + - uid: 16242 components: - type: Transform pos: -29.5,52.5 parent: 2 - - uid: 16260 + - uid: 16243 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,53.5 parent: 2 - - uid: 16261 + - uid: 16244 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,48.5 parent: 2 - - uid: 16262 + - uid: 16245 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,30.5 parent: 2 - - uid: 16263 + - uid: 16246 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 16264 + - uid: 16247 components: - type: Transform pos: -54.5,39.5 parent: 2 - - uid: 16265 + - uid: 16248 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,55.5 parent: 2 - - uid: 16266 + - uid: 16249 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,45.5 parent: 2 - - uid: 16267 + - uid: 16250 components: - type: Transform pos: -55.5,43.5 parent: 2 - - uid: 16268 + - uid: 16251 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,46.5 parent: 2 - - uid: 16269 + - uid: 16252 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,24.5 parent: 2 - - uid: 16270 + - uid: 16253 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,14.5 parent: 2 - - uid: 16271 + - uid: 16254 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,55.5 parent: 2 - - uid: 16272 + - uid: 16255 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,54.5 parent: 2 - - uid: 16273 + - uid: 16256 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,10.5 parent: 2 - - uid: 16274 + - uid: 16257 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,20.5 parent: 2 - - uid: 16275 + - uid: 16258 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,23.5 parent: 2 - - uid: 16276 + - uid: 16259 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,31.5 parent: 2 - - uid: 16277 + - uid: 16260 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,52.5 parent: 2 - - uid: 16278 + - uid: 16261 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,45.5 parent: 2 - - uid: 16279 + - uid: 16262 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,49.5 parent: 2 - - uid: 16280 + - uid: 16263 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,57.5 parent: 2 - - uid: 16281 + - uid: 16264 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,55.5 parent: 2 - - uid: 16282 + - uid: 16265 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,24.5 parent: 2 - - uid: 16283 + - uid: 16266 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,50.5 parent: 2 - - uid: 16284 + - uid: 16267 components: - type: Transform pos: -54.5,35.5 parent: 2 - - uid: 16285 + - uid: 16268 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,10.5 parent: 2 - - uid: 16286 + - uid: 16269 components: - type: Transform pos: -26.5,32.5 parent: 2 - - uid: 16287 + - uid: 16270 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,30.5 parent: 2 - - uid: 16288 + - uid: 16271 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,10.5 parent: 2 - - uid: 16289 + - uid: 16272 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,57.5 parent: 2 - - uid: 16290 + - uid: 16273 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,55.5 parent: 2 - - uid: 16291 + - uid: 16274 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,56.5 parent: 2 - - uid: 16292 + - uid: 16275 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,22.5 parent: 2 - - uid: 16293 + - uid: 16276 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,53.5 parent: 2 - - uid: 16294 + - uid: 16277 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,19.5 parent: 2 - - uid: 16295 + - uid: 16278 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,55.5 parent: 2 - - uid: 16296 + - uid: 16279 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 16297 + - uid: 16280 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,12.5 parent: 2 - - uid: 16298 + - uid: 16281 components: - type: Transform pos: -55.5,44.5 parent: 2 - - uid: 16299 + - uid: 16282 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 16300 + - uid: 16283 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,47.5 parent: 2 - - uid: 16301 + - uid: 16284 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,35.5 parent: 2 - - uid: 16302 + - uid: 16285 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,55.5 parent: 2 - - uid: 16303 + - uid: 16286 components: - type: Transform pos: -54.5,31.5 parent: 2 - - uid: 16304 + - uid: 16287 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,31.5 parent: 2 - - uid: 16305 + - uid: 16288 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 16306 + - uid: 16289 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,48.5 parent: 2 - - uid: 16307 + - uid: 16290 components: - type: Transform pos: -54.5,37.5 parent: 2 - - uid: 16308 + - uid: 16291 components: - type: Transform pos: -49.5,13.5 parent: 2 - - uid: 16309 + - uid: 16292 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 - - uid: 16310 + - uid: 16293 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,30.5 parent: 2 - - uid: 16311 + - uid: 16294 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,30.5 parent: 2 - - uid: 16312 + - uid: 16295 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,36.5 parent: 2 - - uid: 16313 + - uid: 16296 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,31.5 parent: 2 - - uid: 16314 + - uid: 16297 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,30.5 parent: 2 - - uid: 16315 + - uid: 16298 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,31.5 parent: 2 - - uid: 16316 + - uid: 16299 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,21.5 parent: 2 - - uid: 16317 + - uid: 16300 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,33.5 parent: 2 - - uid: 16318 + - uid: 16301 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,30.5 parent: 2 - - uid: 16319 + - uid: 16302 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,31.5 parent: 2 - - uid: 16320 + - uid: 16303 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,10.5 parent: 2 - - uid: 16321 + - uid: 16304 components: - type: Transform pos: 25.5,37.5 parent: 2 - - uid: 16322 + - uid: 16305 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,36.5 parent: 2 - - uid: 16323 + - uid: 16306 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,36.5 parent: 2 - - uid: 16324 + - uid: 16307 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,21.5 parent: 2 - - uid: 16325 + - uid: 16308 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,21.5 parent: 2 - - uid: 16326 + - uid: 16309 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,33.5 parent: 2 - - uid: 16327 + - uid: 16310 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,33.5 parent: 2 - - uid: 16328 + - uid: 16311 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 2 - - uid: 16329 + - uid: 16312 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,51.5 parent: 2 - - uid: 16330 + - uid: 16313 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,45.5 parent: 2 - - uid: 16331 + - uid: 16314 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,10.5 parent: 2 - - uid: 16332 + - uid: 16315 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,21.5 parent: 2 - - uid: 16333 + - uid: 16316 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 - - uid: 16334 + - uid: 16317 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,21.5 parent: 2 - - uid: 16335 + - uid: 16318 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,36.5 parent: 2 - - uid: 16336 + - uid: 16319 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,36.5 parent: 2 - - uid: 16337 + - uid: 16320 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,30.5 parent: 2 - - uid: 16338 + - uid: 16321 components: - type: Transform pos: 42.5,29.5 parent: 2 - - uid: 16339 + - uid: 16322 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,10.5 parent: 2 - - uid: 16340 + - uid: 16323 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 2 - - uid: 16341 + - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,30.5 parent: 2 - - uid: 16342 + - uid: 16325 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,33.5 parent: 2 - - uid: 16343 + - uid: 16326 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,36.5 parent: 2 - - uid: 16344 + - uid: 16327 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,36.5 parent: 2 - - uid: 16345 + - uid: 16328 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,30.5 parent: 2 - - uid: 16346 + - uid: 16329 components: - type: Transform pos: -54.5,36.5 parent: 2 - - uid: 16347 + - uid: 16330 components: - type: Transform pos: -61.5,56.5 parent: 2 - - uid: 16348 + - uid: 16331 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,10.5 parent: 2 - - uid: 16349 + - uid: 16332 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,56.5 parent: 2 - - uid: 16350 + - uid: 16333 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,56.5 parent: 2 - - uid: 16351 + - uid: 16334 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,56.5 parent: 2 - - uid: 16352 + - uid: 16335 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,56.5 parent: 2 - - uid: 16353 + - uid: 16336 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,56.5 parent: 2 - - uid: 16354 + - uid: 16337 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,56.5 parent: 2 - - uid: 16355 + - uid: 16338 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,56.5 parent: 2 - - uid: 16356 + - uid: 16339 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,56.5 parent: 2 - - uid: 16357 + - uid: 16340 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,56.5 parent: 2 - - uid: 16358 + - uid: 16341 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,56.5 parent: 2 - - uid: 16359 + - uid: 16342 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,56.5 parent: 2 - - uid: 16360 + - uid: 16343 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,56.5 parent: 2 - - uid: 16361 + - uid: 16344 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,57.5 parent: 2 - - uid: 16362 + - uid: 16345 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,57.5 parent: 2 - - uid: 16363 + - uid: 16346 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,57.5 parent: 2 - - uid: 16364 + - uid: 16347 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,57.5 parent: 2 - - uid: 16365 + - uid: 16348 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,57.5 parent: 2 - - uid: 16366 + - uid: 16349 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,57.5 parent: 2 - - uid: 16367 + - uid: 16350 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,57.5 parent: 2 - - uid: 16368 + - uid: 16351 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,57.5 parent: 2 - - uid: 16369 + - uid: 16352 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,57.5 parent: 2 - - uid: 16370 + - uid: 16353 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.49999997,57.5 parent: 2 - - uid: 16371 + - uid: 16354 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,53.5 parent: 2 - - uid: 16372 + - uid: 16355 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,54.5 parent: 2 - - uid: 16373 + - uid: 16356 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,55.5 parent: 2 - - uid: 16374 + - uid: 16357 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,56.5 parent: 2 - - uid: 16375 + - uid: 16358 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,81.5 parent: 2 - - uid: 16376 + - uid: 16359 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,80.5 parent: 2 - - uid: 16377 + - uid: 16360 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,79.5 parent: 2 - - uid: 16378 + - uid: 16361 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,78.5 parent: 2 - - uid: 16379 + - uid: 16362 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,77.5 parent: 2 - - uid: 16380 + - uid: 16363 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,76.5 parent: 2 - - uid: 16381 + - uid: 16364 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,75.5 parent: 2 - - uid: 16382 + - uid: 16365 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,74.5 parent: 2 - - uid: 16383 + - uid: 16366 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,73.5 parent: 2 - - uid: 16384 + - uid: 16367 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,72.5 parent: 2 - - uid: 16385 + - uid: 16368 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,71.5 parent: 2 - - uid: 16386 + - uid: 16369 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,70.5 parent: 2 - - uid: 16387 + - uid: 16370 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,69.5 parent: 2 - - uid: 16388 + - uid: 16371 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,82.5 parent: 2 - - uid: 16389 + - uid: 16372 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,68.5 parent: 2 - - uid: 16390 + - uid: 16373 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,68.5 parent: 2 - - uid: 16391 + - uid: 16374 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,68.5 parent: 2 - - uid: 16392 + - uid: 16375 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,68.5 parent: 2 - - uid: 16393 + - uid: 16376 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,68.5 parent: 2 - - uid: 16394 + - uid: 16377 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.49999997,68.5 parent: 2 - - uid: 16395 + - uid: 16378 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,68.5 parent: 2 - - uid: 16396 + - uid: 16379 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,68.5 parent: 2 - - uid: 16397 + - uid: 16380 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,68.5 parent: 2 - - uid: 16398 + - uid: 16381 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,68.5 parent: 2 - - uid: 16399 + - uid: 16382 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,67.5 parent: 2 - - uid: 16400 + - uid: 16383 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,66.5 parent: 2 - - uid: 16401 + - uid: 16384 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,65.5 parent: 2 - - uid: 16402 + - uid: 16385 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,64.5 parent: 2 - - uid: 16403 + - uid: 16386 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,63.5 parent: 2 - - uid: 16404 + - uid: 16387 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,62.5 parent: 2 - - uid: 16405 + - uid: 16388 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,61.5 parent: 2 - - uid: 16406 + - uid: 16389 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,60.5 parent: 2 - - uid: 16407 + - uid: 16390 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,59.5 parent: 2 - - uid: 16408 + - uid: 16391 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,58.5 parent: 2 - - uid: 16409 + - uid: 16392 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,57.5 parent: 2 - - uid: 16410 + - uid: 16393 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,57.5 parent: 2 - - uid: 16411 + - uid: 16394 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,57.5 parent: 2 - - uid: 16412 + - uid: 16395 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,57.5 parent: 2 - - uid: 16413 + - uid: 16396 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,57.5 parent: 2 - - uid: 16414 + - uid: 16397 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,57.5 parent: 2 - - uid: 16415 + - uid: 16398 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,57.5 parent: 2 - - uid: 16416 + - uid: 16399 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,57.5 parent: 2 - - uid: 16417 + - uid: 16400 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,57.5 parent: 2 - - uid: 16418 + - uid: 16401 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,57.5 parent: 2 - - uid: 16419 + - uid: 16402 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,57.5 parent: 2 - - uid: 16420 + - uid: 16403 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,57.5 parent: 2 - - uid: 16421 + - uid: 16404 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,57.5 parent: 2 - - uid: 16422 + - uid: 16405 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,57.5 parent: 2 - - uid: 16423 + - uid: 16406 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,57.5 parent: 2 - - uid: 16424 + - uid: 16407 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,58.5 parent: 2 - - uid: 16425 + - uid: 16408 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,59.5 parent: 2 - - uid: 16426 + - uid: 16409 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,60.5 parent: 2 - - uid: 16427 + - uid: 16410 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,61.5 parent: 2 - - uid: 16428 + - uid: 16411 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,62.5 parent: 2 - - uid: 16429 + - uid: 16412 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,63.5 parent: 2 - - uid: 16430 + - uid: 16413 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,64.5 parent: 2 - - uid: 16431 + - uid: 16414 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,65.5 parent: 2 - - uid: 16432 + - uid: 16415 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,66.5 parent: 2 - - uid: 16433 + - uid: 16416 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,67.5 parent: 2 - - uid: 16434 + - uid: 16417 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,68.5 parent: 2 - - uid: 16435 + - uid: 16418 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,68.5 parent: 2 - - uid: 16436 + - uid: 16419 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,68.5 parent: 2 - - uid: 16437 + - uid: 16420 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,68.5 parent: 2 - - uid: 16438 + - uid: 16421 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,68.5 parent: 2 - - uid: 16439 + - uid: 16422 components: - type: Transform pos: -24.5,67.5 parent: 2 - - uid: 16440 + - uid: 16423 components: - type: Transform pos: -24.5,66.5 parent: 2 - - uid: 16441 + - uid: 16424 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,62.5 parent: 2 - - uid: 16442 + - uid: 16425 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,63.5 parent: 2 - - uid: 16443 + - uid: 16426 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,64.5 parent: 2 - - uid: 16444 + - uid: 16427 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,65.5 parent: 2 - - uid: 16445 + - uid: 16428 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,56.5 parent: 2 - - uid: 16446 + - uid: 16429 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,55.5 parent: 2 - - uid: 16447 + - uid: 16430 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,54.5 parent: 2 - - uid: 16448 + - uid: 16431 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,53.5 parent: 2 - - uid: 16449 + - uid: 16432 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,52.5 parent: 2 - - uid: 16450 + - uid: 16433 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,51.5 parent: 2 - - uid: 16451 + - uid: 16434 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,49.5 parent: 2 - - uid: 16452 + - uid: 16435 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,47.5 parent: 2 - - uid: 16453 + - uid: 16436 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,45.5 parent: 2 - - uid: 16454 + - uid: 16437 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,46.5 parent: 2 - - uid: 16455 + - uid: 16438 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,46.5 parent: 2 - - uid: 16456 + - uid: 16439 components: - type: Transform pos: -21.5,45.5 parent: 2 - - uid: 16457 + - uid: 16440 components: - type: Transform pos: -21.5,44.5 parent: 2 - - uid: 16458 + - uid: 16441 components: - type: Transform pos: -21.5,43.5 parent: 2 - - uid: 16459 + - uid: 16442 components: - type: Transform pos: -21.5,42.5 parent: 2 - - uid: 16460 + - uid: 16443 components: - type: Transform pos: -21.5,41.5 parent: 2 - - uid: 16461 + - uid: 16444 components: - type: Transform pos: -21.5,40.5 parent: 2 - - uid: 16462 + - uid: 16445 components: - type: Transform pos: -21.5,39.5 parent: 2 - - uid: 16463 + - uid: 16446 components: - type: Transform pos: -21.5,38.5 parent: 2 - - uid: 16464 + - uid: 16447 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,37.5 parent: 2 - - uid: 16465 + - uid: 16448 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,35.5 parent: 2 - - uid: 16466 + - uid: 16449 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,34.5 parent: 2 - - uid: 16467 + - uid: 16450 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,32.5 parent: 2 - - uid: 16468 + - uid: 16451 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,31.5 parent: 2 - - uid: 16469 + - uid: 16452 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,29.5 parent: 2 - - uid: 16470 + - uid: 16453 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,28.5 parent: 2 - - uid: 16471 + - uid: 16454 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,27.5 parent: 2 - - uid: 16472 + - uid: 16455 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,26.5 parent: 2 - - uid: 16473 + - uid: 16456 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,25.5 parent: 2 - - uid: 16474 + - uid: 16457 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,24.5 parent: 2 - - uid: 16475 + - uid: 16458 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,36.5 parent: 2 - - uid: 16476 + - uid: 16459 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,36.5 parent: 2 - - uid: 16477 + - uid: 16460 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,21.5 parent: 2 - - uid: 16478 + - uid: 16461 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,20.5 parent: 2 - - uid: 16479 + - uid: 16462 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,19.5 parent: 2 - - uid: 16480 + - uid: 16463 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,18.5 parent: 2 - - uid: 16481 + - uid: 16464 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,17.5 parent: 2 - - uid: 16482 + - uid: 16465 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,16.5 parent: 2 - - uid: 16483 + - uid: 16466 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,15.5 parent: 2 - - uid: 16484 + - uid: 16467 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,13.5 parent: 2 - - uid: 16485 + - uid: 16468 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,12.5 parent: 2 - - uid: 16486 + - uid: 16469 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,11.5 parent: 2 - - uid: 16487 + - uid: 16470 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,10.5 parent: 2 - - uid: 16488 + - uid: 16471 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 2 - - uid: 16489 + - uid: 16472 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,8.5 parent: 2 - - uid: 16490 + - uid: 16473 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 2 - - uid: 16491 + - uid: 16474 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,6.5 parent: 2 - - uid: 16492 + - uid: 16475 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,4.5 parent: 2 - - uid: 16493 + - uid: 16476 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,3.5 parent: 2 - - uid: 16494 + - uid: 16477 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,2.5 parent: 2 - - uid: 16495 + - uid: 16478 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,1.5 parent: 2 - - uid: 16496 + - uid: 16479 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,0.5 parent: 2 - - uid: 16497 + - uid: 16480 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-0.5 parent: 2 - - uid: 16498 + - uid: 16481 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-1.5 parent: 2 - - uid: 16499 + - uid: 16482 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-3.5 parent: 2 - - uid: 16500 + - uid: 16483 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-4.5 parent: 2 - - uid: 16501 + - uid: 16484 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-5.5 parent: 2 - - uid: 16502 + - uid: 16485 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 - - uid: 16503 + - uid: 16486 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-7.5 parent: 2 - - uid: 16504 + - uid: 16487 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-9.5 parent: 2 - - uid: 16505 + - uid: 16488 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 - - uid: 16506 + - uid: 16489 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-11.5 parent: 2 - - uid: 16507 + - uid: 16490 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-12.5 parent: 2 - - uid: 16508 + - uid: 16491 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-13.5 parent: 2 - - uid: 16509 + - uid: 16492 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-14.5 parent: 2 - - uid: 16510 + - uid: 16493 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-15.5 parent: 2 - - uid: 16511 + - uid: 16494 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-16.5 parent: 2 - - uid: 16512 + - uid: 16495 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-17.5 parent: 2 - - uid: 16513 + - uid: 16496 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-18.5 parent: 2 - - uid: 16514 + - uid: 16497 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-19.5 parent: 2 - - uid: 16515 + - uid: 16498 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-19.5 parent: 2 - - uid: 16516 + - uid: 16499 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-19.5 parent: 2 - - uid: 16517 + - uid: 16500 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-19.5 parent: 2 - - uid: 16518 + - uid: 16501 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-19.5 parent: 2 - - uid: 16519 + - uid: 16502 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-19.5 parent: 2 - - uid: 16520 + - uid: 16503 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-19.5 parent: 2 - - uid: 16521 + - uid: 16504 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-19.5 parent: 2 - - uid: 16522 + - uid: 16505 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-19.5 parent: 2 - - uid: 16523 + - uid: 16506 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 2 - - uid: 16524 + - uid: 16507 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-19.5 parent: 2 - - uid: 16525 + - uid: 16508 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-19.5 parent: 2 - - uid: 16526 + - uid: 16509 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-19.5 parent: 2 - - uid: 16527 + - uid: 16510 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-19.5 parent: 2 - - uid: 16528 + - uid: 16511 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 - - uid: 16529 + - uid: 16512 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.49999997,-19.5 parent: 2 - - uid: 16530 + - uid: 16513 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-19.5 parent: 2 - - uid: 16531 + - uid: 16514 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-19.5 parent: 2 - - uid: 16532 + - uid: 16515 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-19.5 parent: 2 - - uid: 16533 + - uid: 16516 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-19.5 parent: 2 - - uid: 16534 + - uid: 16517 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 2 - - uid: 16535 + - uid: 16518 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 - - uid: 16536 + - uid: 16519 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-19.5 parent: 2 - - uid: 16537 + - uid: 16520 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-19.5 parent: 2 - - uid: 16538 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-19.5 parent: 2 - - uid: 16539 + - uid: 16522 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-19.5 parent: 2 - - uid: 16540 + - uid: 16523 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 2 - - uid: 16541 + - uid: 16524 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-19.5 parent: 2 - - uid: 16542 + - uid: 16525 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 - - uid: 16543 + - uid: 16526 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 - - uid: 16544 + - uid: 16527 components: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 16545 + - uid: 16528 components: - type: Transform pos: 17.5,-17.5 parent: 2 - - uid: 16546 + - uid: 16529 components: - type: Transform pos: 17.5,-16.5 parent: 2 - - uid: 16547 + - uid: 16530 components: - type: Transform pos: 17.5,-15.5 parent: 2 - - uid: 16548 + - uid: 16531 components: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 16549 + - uid: 16532 components: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 16550 + - uid: 16533 components: - type: Transform pos: 17.5,-12.5 parent: 2 - - uid: 16551 + - uid: 16534 components: - type: Transform pos: 17.5,-11.5 parent: 2 - - uid: 16552 + - uid: 16535 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - uid: 16553 + - uid: 16536 components: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 16554 + - uid: 16537 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 16555 + - uid: 16538 components: - type: Transform pos: 17.5,-6.5 parent: 2 - - uid: 16556 + - uid: 16539 components: - type: Transform pos: 17.5,-5.5 parent: 2 - - uid: 16557 + - uid: 16540 components: - type: Transform pos: 17.5,-4.5 parent: 2 - - uid: 16558 + - uid: 16541 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 16559 + - uid: 16542 components: - type: Transform pos: 17.5,-2.5 parent: 2 - - uid: 16560 + - uid: 16543 components: - type: Transform pos: 17.5,-1.5 parent: 2 - - uid: 16561 + - uid: 16544 components: - type: Transform pos: 17.5,-0.5 parent: 2 - - uid: 16562 + - uid: 16545 components: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 16563 + - uid: 16546 components: - type: Transform pos: 17.5,1.5 parent: 2 - - uid: 16564 + - uid: 16547 components: - type: Transform pos: 17.5,2.5 parent: 2 - - uid: 16565 + - uid: 16548 components: - type: Transform pos: 17.5,3.5 parent: 2 - - uid: 16566 + - uid: 16549 components: - type: Transform pos: 17.5,4.5 parent: 2 - - uid: 16567 + - uid: 16550 components: - type: Transform pos: 17.5,6.5 parent: 2 - - uid: 16568 + - uid: 16551 components: - type: Transform pos: 17.5,7.5 parent: 2 - - uid: 16569 + - uid: 16552 components: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 16570 + - uid: 16553 components: - type: Transform pos: 17.5,9.5 parent: 2 - - uid: 16571 + - uid: 16554 components: - type: Transform pos: 17.5,10.5 parent: 2 - - uid: 16572 + - uid: 16555 components: - type: Transform pos: 17.5,11.5 parent: 2 - - uid: 16573 + - uid: 16556 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 16574 + - uid: 16557 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 16575 + - uid: 16558 components: - type: Transform pos: 17.5,15.5 parent: 2 - - uid: 16576 + - uid: 16559 components: - type: Transform pos: 17.5,16.5 parent: 2 - - uid: 16577 + - uid: 16560 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 16578 + - uid: 16561 components: - type: Transform pos: 17.5,18.5 parent: 2 - - uid: 16579 + - uid: 16562 components: - type: Transform pos: 17.5,19.5 parent: 2 - - uid: 16580 + - uid: 16563 components: - type: Transform pos: 17.5,20.5 parent: 2 - - uid: 16581 + - uid: 16564 components: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 16582 + - uid: 16565 components: - type: Transform pos: 17.5,22.5 parent: 2 - - uid: 16583 + - uid: 16566 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,23.5 parent: 2 - - uid: 16584 + - uid: 16567 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,23.5 parent: 2 - - uid: 16585 + - uid: 16568 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,23.5 parent: 2 - - uid: 16586 + - uid: 16569 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 - - uid: 16587 + - uid: 16570 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,23.5 parent: 2 - - uid: 16588 + - uid: 16571 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,23.5 parent: 2 - - uid: 16589 + - uid: 16572 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,23.5 parent: 2 - - uid: 16590 + - uid: 16573 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,23.5 parent: 2 - - uid: 16591 + - uid: 16574 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,23.5 parent: 2 - - uid: 16592 + - uid: 16575 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,23.5 parent: 2 - - uid: 16593 + - uid: 16576 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,23.5 parent: 2 - - uid: 16594 + - uid: 16577 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,23.5 parent: 2 - - uid: 16595 + - uid: 16578 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,23.5 parent: 2 - - uid: 16596 + - uid: 16579 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,23.5 parent: 2 - - uid: 16597 + - uid: 16580 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,23.5 parent: 2 - - uid: 16598 + - uid: 16581 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.49999997,23.5 parent: 2 - - uid: 16599 + - uid: 16582 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,23.5 parent: 2 - - uid: 16600 + - uid: 16583 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,23.5 parent: 2 - - uid: 16601 + - uid: 16584 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,23.5 parent: 2 - - uid: 16602 + - uid: 16585 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,23.5 parent: 2 - - uid: 16603 + - uid: 16586 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,23.5 parent: 2 - - uid: 16604 + - uid: 16587 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 2 - - uid: 16605 + - uid: 16588 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,23.5 parent: 2 - - uid: 16606 + - uid: 16589 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,23.5 parent: 2 - - uid: 16607 + - uid: 16590 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,23.5 parent: 2 - - uid: 16608 + - uid: 16591 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,23.5 parent: 2 - - uid: 16609 + - uid: 16592 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,23.5 parent: 2 - - uid: 16610 + - uid: 16593 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,23.5 parent: 2 - - uid: 16611 + - uid: 16594 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,23.5 parent: 2 - - uid: 16612 + - uid: 16595 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,23.5 parent: 2 - - uid: 16613 + - uid: 16596 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,23.5 parent: 2 - - uid: 16614 + - uid: 16597 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,23.5 parent: 2 - - uid: 16615 + - uid: 16598 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,23.5 parent: 2 - - uid: 16616 + - uid: 16599 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,23.5 parent: 2 - - uid: 16617 + - uid: 16600 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,12.5 parent: 2 - - uid: 16618 + - uid: 16601 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 - - uid: 16619 + - uid: 16602 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,12.5 parent: 2 - - uid: 16620 + - uid: 16603 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,12.5 parent: 2 - - uid: 16621 + - uid: 16604 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,12.5 parent: 2 - - uid: 16622 + - uid: 16605 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,12.5 parent: 2 - - uid: 16623 + - uid: 16606 components: - type: Transform pos: -26.5,13.5 parent: 2 - - uid: 16624 + - uid: 16607 components: - type: Transform pos: -26.5,14.5 parent: 2 - - uid: 16625 + - uid: 16608 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - uid: 16626 + - uid: 16609 components: - type: Transform rot: 3.141592653589793 rad pos: -0.49999997,-47.5 parent: 2 - - uid: 16627 + - uid: 16610 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-48.5 parent: 2 - - uid: 16628 + - uid: 16611 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-49.5 parent: 2 - - uid: 16629 + - uid: 16612 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 - - uid: 16630 + - uid: 16613 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 - - uid: 16631 + - uid: 16614 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 - - uid: 16632 + - uid: 16615 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 - - uid: 16633 + - uid: 16616 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-54.5 parent: 2 - - uid: 16634 + - uid: 16617 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-55.5 parent: 2 - - uid: 16635 + - uid: 16618 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-56.5 parent: 2 - - uid: 16636 + - uid: 16619 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-57.5 parent: 2 - - uid: 16637 + - uid: 16620 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-58.5 parent: 2 - - uid: 16638 + - uid: 16621 components: - type: Transform rot: 3.141592653589793 rad pos: -0.49999997,-59.5 parent: 2 - - uid: 16639 + - uid: 16622 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 2 - - uid: 16640 + - uid: 16623 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-62.5 parent: 2 - - uid: 16641 + - uid: 16624 components: - type: Transform pos: 0.49999997,-65.5 parent: 2 - - uid: 16642 + - uid: 16625 components: - type: Transform pos: 0.49999997,-66.5 parent: 2 - - uid: 16643 + - uid: 16626 components: - type: Transform pos: 0.49999997,-67.5 parent: 2 - - uid: 16644 + - uid: 16627 components: - type: Transform pos: 0.50000006,-68.5 parent: 2 - - uid: 16645 + - uid: 16628 components: - type: Transform pos: 0.49999997,-69.5 parent: 2 - - uid: 16646 + - uid: 16629 components: - type: Transform pos: 0.50000006,-70.5 parent: 2 - - uid: 16647 + - uid: 16630 components: - type: Transform pos: 0.49999997,-71.5 parent: 2 - - uid: 16648 + - uid: 16631 components: - type: Transform pos: 0.50000006,-72.5 parent: 2 - - uid: 16649 + - uid: 16632 components: - type: Transform pos: 0.49999997,-73.5 parent: 2 - - uid: 16650 + - uid: 16633 components: - type: Transform pos: 0.50000006,-74.5 parent: 2 - - uid: 16651 + - uid: 16634 components: - type: Transform pos: 0.49999997,-75.5 parent: 2 - - uid: 16652 + - uid: 16635 components: - type: Transform pos: 0.49999997,-76.5 parent: 2 - - uid: 16653 + - uid: 16636 components: - type: Transform pos: 0.49999997,-77.5 parent: 2 - - uid: 16654 + - uid: 16637 components: - type: Transform pos: 0.49999997,-78.5 parent: 2 - - uid: 16655 + - uid: 16638 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-79.5 parent: 2 - - uid: 16656 + - uid: 16639 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-79.5 parent: 2 - - uid: 16657 + - uid: 16640 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-80.5 parent: 2 - - uid: 16658 + - uid: 16641 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-63.5 parent: 2 - - uid: 16659 + - uid: 16642 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.50000006,-61.5 parent: 2 - - uid: 16660 + - uid: 16643 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-79.5 parent: 2 - - uid: 16661 + - uid: 16644 components: - type: Transform pos: -4.5,-78.5 parent: 2 - - uid: 16662 + - uid: 16645 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 - - uid: 16663 + - uid: 16646 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-77.5 parent: 2 - - uid: 16664 + - uid: 16647 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-77.5 parent: 2 - - uid: 16665 + - uid: 16648 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-77.5 parent: 2 - - uid: 16666 + - uid: 16649 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 - - uid: 16667 + - uid: 16650 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-77.5 parent: 2 - - uid: 16668 + - uid: 16651 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-77.5 parent: 2 - - uid: 16669 + - uid: 16652 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-77.5 parent: 2 - - uid: 16670 + - uid: 16653 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-77.5 parent: 2 - - uid: 16671 + - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 - - uid: 16672 + - uid: 16655 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 - - uid: 16673 + - uid: 16656 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-78.5 parent: 2 - - uid: 16674 + - uid: 16657 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-27.5 parent: 2 - - uid: 16675 + - uid: 16658 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-28.5 parent: 2 - - uid: 16676 + - uid: 16659 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-29.5 parent: 2 - - uid: 16677 + - uid: 16660 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-30.5 parent: 2 - - uid: 16678 + - uid: 16661 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-31.5 parent: 2 - - uid: 16679 + - uid: 16662 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-32.5 parent: 2 - - uid: 16680 + - uid: 16663 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-33.5 parent: 2 - - uid: 16681 + - uid: 16664 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-34.5 parent: 2 - - uid: 16682 + - uid: 16665 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-34.5 parent: 2 - - uid: 16683 + - uid: 16666 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-34.5 parent: 2 - - uid: 16684 + - uid: 16667 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-34.5 parent: 2 - - uid: 16685 + - uid: 16668 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-34.5 parent: 2 - - uid: 16686 + - uid: 16669 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-34.5 parent: 2 - - uid: 16687 + - uid: 16670 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-34.5 parent: 2 - - uid: 16688 + - uid: 16671 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-34.5 parent: 2 - - uid: 16689 + - uid: 16672 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-34.5 parent: 2 - - uid: 16690 + - uid: 16673 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-34.5 parent: 2 - - uid: 16691 + - uid: 16674 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-34.5 parent: 2 - - uid: 16692 + - uid: 16675 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-34.5 parent: 2 - - uid: 16693 + - uid: 16676 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-34.5 parent: 2 - - uid: 16694 + - uid: 16677 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-34.5 parent: 2 - - uid: 16695 + - uid: 16678 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-34.5 parent: 2 - - uid: 16696 + - uid: 16679 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-34.5 parent: 2 - - uid: 16697 + - uid: 16680 components: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 16698 + - uid: 16681 components: - type: Transform pos: 17.5,-32.5 parent: 2 - - uid: 16699 + - uid: 16682 components: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 16700 + - uid: 16683 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 16701 + - uid: 16684 components: - type: Transform pos: 17.5,-29.5 parent: 2 - - uid: 16702 + - uid: 16685 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 16703 + - uid: 16686 components: - type: Transform pos: 17.5,-27.5 parent: 2 - - uid: 16704 + - uid: 16687 components: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 16705 + - uid: 16688 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-20.5 parent: 2 - - uid: 16706 + - uid: 16689 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-21.5 parent: 2 - - uid: 16707 + - uid: 16690 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-22.5 parent: 2 - - uid: 16708 + - uid: 16691 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-23.5 parent: 2 - - uid: 16709 + - uid: 16692 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-24.5 parent: 2 - - uid: 16710 + - uid: 16693 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 - - uid: 16711 + - uid: 16694 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-25.5 parent: 2 - - uid: 16712 + - uid: 16695 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 - - uid: 16713 + - uid: 16696 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 - - uid: 16714 + - uid: 16697 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-25.5 parent: 2 - - uid: 16715 + - uid: 16698 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 - - uid: 16716 + - uid: 16699 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 - - uid: 16717 + - uid: 16700 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 - - uid: 16718 + - uid: 16701 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 - - uid: 16719 + - uid: 16702 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 - - uid: 16720 + - uid: 16703 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 16721 + - uid: 16704 components: - type: Transform pos: -5.5,-23.5 parent: 2 - - uid: 16722 + - uid: 16705 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - uid: 16723 + - uid: 16706 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 - - uid: 16724 + - uid: 16707 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 - - uid: 16725 + - uid: 16708 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 - - uid: 16726 + - uid: 16709 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-25.5 parent: 2 - - uid: 16727 + - uid: 16710 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-25.5 parent: 2 - - uid: 16728 + - uid: 16711 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-25.5 parent: 2 - - uid: 16729 + - uid: 16712 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-26.5 parent: 2 - - uid: 16730 + - uid: 16713 components: - type: Transform pos: -6.5,-26.5 parent: 2 - - uid: 16731 + - uid: 16714 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 16732 + - uid: 16715 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 16733 + - uid: 16716 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 16734 + - uid: 16717 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-34.5 parent: 2 - - uid: 16735 + - uid: 16718 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-34.5 parent: 2 - - uid: 16736 + - uid: 16719 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-34.5 parent: 2 - - uid: 16737 + - uid: 16720 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-34.5 parent: 2 - - uid: 16738 + - uid: 16721 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-34.5 parent: 2 - - uid: 16739 + - uid: 16722 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-34.5 parent: 2 - - uid: 16740 + - uid: 16723 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-34.5 parent: 2 - - uid: 16741 + - uid: 16724 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-34.5 parent: 2 - - uid: 16742 + - uid: 16725 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-34.5 parent: 2 - - uid: 16743 + - uid: 16726 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-34.5 parent: 2 - - uid: 16744 + - uid: 16727 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-44.5 parent: 2 - - uid: 16745 + - uid: 16728 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-45.5 parent: 2 - - uid: 16746 + - uid: 16729 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-43.5 parent: 2 - - uid: 16747 + - uid: 16730 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-43.5 parent: 2 - - uid: 16748 + - uid: 16731 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 - - uid: 16749 + - uid: 16732 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 - - uid: 16750 + - uid: 16733 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-43.5 parent: 2 - - uid: 16751 + - uid: 16734 components: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 16752 + - uid: 16735 components: - type: Transform pos: 27.5,-41.5 parent: 2 - - uid: 16753 + - uid: 16736 components: - type: Transform pos: 27.5,-40.5 parent: 2 - - uid: 16754 + - uid: 16737 components: - type: Transform pos: 27.5,-38.5 parent: 2 - - uid: 16755 + - uid: 16738 components: - type: Transform pos: 27.5,-37.5 parent: 2 - - uid: 16756 + - uid: 16739 components: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 16757 + - uid: 16740 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 16758 + - uid: 16741 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-51.5 parent: 2 - - uid: 16759 + - uid: 16742 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-50.5 parent: 2 - - uid: 16760 + - uid: 16743 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-49.5 parent: 2 - - uid: 16761 + - uid: 16744 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-48.5 parent: 2 - - uid: 16762 + - uid: 16745 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-47.5 parent: 2 - - uid: 16763 + - uid: 16746 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-46.5 parent: 2 - - uid: 16764 + - uid: 16747 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-45.5 parent: 2 - - uid: 16765 + - uid: 16748 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-45.5 parent: 2 - - uid: 16766 + - uid: 16749 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-45.5 parent: 2 - - uid: 16767 + - uid: 16750 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 - - uid: 16768 + - uid: 16751 components: - type: Transform pos: 9.5,-44.5 parent: 2 - - uid: 16769 + - uid: 16752 components: - type: Transform pos: 9.5,-43.5 parent: 2 - - uid: 16770 + - uid: 16753 components: - type: Transform pos: 9.5,-42.5 parent: 2 - - uid: 16771 + - uid: 16754 components: - type: Transform pos: 9.5,-41.5 parent: 2 - - uid: 16772 + - uid: 16755 components: - type: Transform pos: 9.5,-40.5 parent: 2 - - uid: 16773 + - uid: 16756 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-39.5 parent: 2 - - uid: 16774 + - uid: 16757 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-39.5 parent: 2 - - uid: 16775 + - uid: 16758 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-39.5 parent: 2 - - uid: 16776 + - uid: 16759 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-39.5 parent: 2 - - uid: 16777 + - uid: 16760 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-39.5 parent: 2 - - uid: 16778 + - uid: 16761 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-39.5 parent: 2 - - uid: 16779 + - uid: 16762 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-39.5 parent: 2 - - uid: 16780 + - uid: 16763 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-39.5 parent: 2 - - uid: 16781 + - uid: 16764 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-39.5 parent: 2 - - uid: 16782 + - uid: 16765 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-39.5 parent: 2 - - uid: 16783 + - uid: 16766 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-39.5 parent: 2 - - uid: 16784 + - uid: 16767 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-39.5 parent: 2 - - uid: 16785 + - uid: 16768 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-39.5 parent: 2 - - uid: 16786 + - uid: 16769 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-39.5 parent: 2 - - uid: 16787 + - uid: 16770 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-39.5 parent: 2 - - uid: 16788 + - uid: 16771 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-39.5 parent: 2 - - uid: 16789 + - uid: 16772 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-39.5 parent: 2 - - uid: 16790 + - uid: 16773 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-57.5 parent: 2 - - uid: 16791 + - uid: 16774 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-57.5 parent: 2 - - uid: 16792 + - uid: 16775 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-56.5 parent: 2 - - uid: 16793 + - uid: 16776 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-55.5 parent: 2 - - uid: 16794 + - uid: 16777 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-54.5 parent: 2 - - uid: 16795 + - uid: 16778 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-53.5 parent: 2 - - uid: 16796 + - uid: 16779 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-51.5 parent: 2 - - uid: 16797 + - uid: 16780 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-50.5 parent: 2 - - uid: 16798 + - uid: 16781 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-48.5 parent: 2 - - uid: 16799 + - uid: 16782 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-47.5 parent: 2 - - uid: 16800 + - uid: 16783 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-46.5 parent: 2 - - uid: 16801 + - uid: 16784 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-45.5 parent: 2 - - uid: 16802 + - uid: 16785 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-44.5 parent: 2 - - uid: 16803 + - uid: 16786 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-43.5 parent: 2 - - uid: 16804 + - uid: 16787 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-42.5 parent: 2 - - uid: 16805 + - uid: 16788 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-41.5 parent: 2 - - uid: 16806 + - uid: 16789 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-40.5 parent: 2 - - uid: 16807 + - uid: 16790 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-39.5 parent: 2 - - uid: 16808 + - uid: 16791 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-38.5 parent: 2 - - uid: 16809 + - uid: 16792 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-37.5 parent: 2 - - uid: 16810 + - uid: 16793 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-36.5 parent: 2 - - uid: 16811 + - uid: 16794 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-35.5 parent: 2 - - uid: 16812 + - uid: 16795 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-33.5 parent: 2 - - uid: 16813 + - uid: 16796 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 2 - - uid: 16814 + - uid: 16797 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-31.5 parent: 2 - - uid: 16815 + - uid: 16798 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-30.5 parent: 2 - - uid: 16816 + - uid: 16799 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-29.5 parent: 2 - - uid: 16817 + - uid: 16800 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-28.5 parent: 2 - - uid: 16818 + - uid: 16801 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-27.5 parent: 2 - - uid: 16819 + - uid: 16802 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-26.5 parent: 2 - - uid: 16820 + - uid: 16803 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 2 - - uid: 16821 + - uid: 16804 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-20.5 parent: 2 - - uid: 16822 + - uid: 16805 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-52.5 parent: 2 - - uid: 16823 + - uid: 16806 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-45.5 parent: 2 - - uid: 16824 + - uid: 16807 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-45.5 parent: 2 - - uid: 16825 + - uid: 16808 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-45.5 parent: 2 - - uid: 16826 + - uid: 16809 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-45.5 parent: 2 - - uid: 16827 + - uid: 16810 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-45.5 parent: 2 - - uid: 16828 + - uid: 16811 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-45.5 parent: 2 - - uid: 16829 + - uid: 16812 components: - type: Transform pos: -23.5,-44.5 parent: 2 - - uid: 16830 + - uid: 16813 components: - type: Transform pos: -23.5,-43.5 parent: 2 - - uid: 16831 + - uid: 16814 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 16832 + - uid: 16815 components: - type: Transform pos: -23.5,-41.5 parent: 2 - - uid: 16833 + - uid: 16816 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 16834 + - uid: 16817 components: - type: Transform pos: -23.5,-39.5 parent: 2 - - uid: 16835 + - uid: 16818 components: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 16836 + - uid: 16819 components: - type: Transform pos: -23.5,-36.5 parent: 2 - - uid: 16837 + - uid: 16820 components: - type: Transform pos: -23.5,-35.5 parent: 2 - - uid: 16838 + - uid: 16821 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-34.5 parent: 2 - - uid: 16839 + - uid: 16822 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-34.5 parent: 2 - - uid: 16840 + - uid: 16823 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-34.5 parent: 2 - - uid: 16841 + - uid: 16824 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-34.5 parent: 2 - - uid: 16842 + - uid: 16825 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-34.5 parent: 2 - - uid: 16843 + - uid: 16826 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-34.5 parent: 2 - - uid: 16844 + - uid: 16827 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-34.5 parent: 2 - - uid: 16845 + - uid: 16828 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-34.5 parent: 2 - - uid: 16846 + - uid: 16829 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-34.5 parent: 2 - - uid: 16847 + - uid: 16830 components: - type: Transform pos: -25.5,-46.5 parent: 2 - - uid: 16848 + - uid: 16831 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-34.5 parent: 2 - - uid: 16849 + - uid: 16832 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 - - uid: 16850 + - uid: 16833 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-34.5 parent: 2 - - uid: 16851 + - uid: 16834 components: - type: Transform pos: -8.5,-33.5 parent: 2 - - uid: 16852 + - uid: 16835 components: - type: Transform pos: -8.5,-32.5 parent: 2 - - uid: 16853 + - uid: 16836 components: - type: Transform pos: -8.5,-31.5 parent: 2 - - uid: 16854 + - uid: 16837 components: - type: Transform pos: -8.5,-30.5 parent: 2 - - uid: 16855 + - uid: 16838 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-49.5 parent: 2 - - uid: 16856 + - uid: 16839 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-49.5 parent: 2 - - uid: 16857 + - uid: 16840 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-49.5 parent: 2 - - uid: 16858 + - uid: 16841 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-49.5 parent: 2 - - uid: 16859 + - uid: 16842 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-49.5 parent: 2 - - uid: 16860 + - uid: 16843 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-49.5 parent: 2 - - uid: 16861 + - uid: 16844 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-49.5 parent: 2 - - uid: 16862 + - uid: 16845 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 - - uid: 16863 + - uid: 16846 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-49.5 parent: 2 - - uid: 16864 + - uid: 16847 components: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 16865 + - uid: 16848 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-10.5 parent: 2 - - uid: 16866 + - uid: 16849 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-9.5 parent: 2 - - uid: 16867 + - uid: 16850 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-8.5 parent: 2 - - uid: 16868 + - uid: 16851 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-7.5 parent: 2 - - uid: 16869 + - uid: 16852 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-6.5 parent: 2 - - uid: 16870 + - uid: 16853 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-5.5 parent: 2 - - uid: 16871 + - uid: 16854 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-4.5 parent: 2 - - uid: 16872 + - uid: 16855 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-3.5 parent: 2 - - uid: 16873 + - uid: 16856 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-2.5 parent: 2 - - uid: 16874 + - uid: 16857 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-2.5 parent: 2 - - uid: 16875 + - uid: 16858 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-2.5 parent: 2 - - uid: 16876 + - uid: 16859 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-2.5 parent: 2 - - uid: 16877 + - uid: 16860 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 - - uid: 16878 + - uid: 16861 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-2.5 parent: 2 - - uid: 16879 + - uid: 16862 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-2.5 parent: 2 - - uid: 16880 + - uid: 16863 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-2.5 parent: 2 - - uid: 16881 + - uid: 16864 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-2.5 parent: 2 - - uid: 16882 + - uid: 16865 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-2.5 parent: 2 - - uid: 16883 + - uid: 16866 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-2.5 parent: 2 - - uid: 16884 + - uid: 16867 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-2.5 parent: 2 - - uid: 16885 + - uid: 16868 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-2.5 parent: 2 - - uid: 16886 + - uid: 16869 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-8.5 parent: 2 - - uid: 16887 + - uid: 16870 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-8.5 parent: 2 - - uid: 16888 + - uid: 16871 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-8.5 parent: 2 - - uid: 16889 + - uid: 16872 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-8.5 parent: 2 - - uid: 16890 + - uid: 16873 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 2 - - uid: 16891 + - uid: 16874 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-8.5 parent: 2 - - uid: 16892 + - uid: 16875 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 - - uid: 16893 + - uid: 16876 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-8.5 parent: 2 - - uid: 16894 + - uid: 16877 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 16895 + - uid: 16878 components: - type: Transform pos: -9.5,-6.5 parent: 2 - - uid: 16896 + - uid: 16879 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-5.5 parent: 2 - - uid: 16897 + - uid: 16880 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,5.5 parent: 2 - - uid: 16898 + - uid: 16881 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 2 - - uid: 16899 + - uid: 16882 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,5.5 parent: 2 - - uid: 16900 + - uid: 16883 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,5.5 parent: 2 - - uid: 16901 + - uid: 16884 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,6.5 parent: 2 - - uid: 16902 + - uid: 16885 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,7.5 parent: 2 - - uid: 16903 + - uid: 16886 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,8.5 parent: 2 - - uid: 16904 + - uid: 16887 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 - - uid: 16905 + - uid: 16888 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,5.5 parent: 2 - - uid: 16906 + - uid: 16889 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,5.5 parent: 2 - - uid: 16907 + - uid: 16890 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 - - uid: 16908 + - uid: 16891 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 - - uid: 16909 + - uid: 16892 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,5.5 parent: 2 - - uid: 16910 + - uid: 16893 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,5.5 parent: 2 - - uid: 16911 + - uid: 16894 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,5.5 parent: 2 - - uid: 16912 + - uid: 16895 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,4.5 parent: 2 - - uid: 16913 + - uid: 16896 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,4.5 parent: 2 - - uid: 16914 + - uid: 16897 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 - - uid: 16915 + - uid: 16898 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,4.5 parent: 2 - - uid: 16916 + - uid: 16899 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,4.5 parent: 2 - - uid: 16917 + - uid: 16900 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,4.5 parent: 2 - - uid: 16918 + - uid: 16901 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,4.5 parent: 2 - - uid: 16919 + - uid: 16902 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,4.5 parent: 2 - - uid: 16920 + - uid: 16903 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,4.5 parent: 2 - - uid: 16921 + - uid: 16904 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,4.5 parent: 2 - - uid: 16922 + - uid: 16905 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,4.5 parent: 2 - - uid: 16923 + - uid: 16906 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,4.5 parent: 2 - - uid: 16924 + - uid: 16907 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,4.5 parent: 2 - - uid: 16925 + - uid: 16908 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,5.5 parent: 2 - - uid: 16926 + - uid: 16909 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,6.5 parent: 2 - - uid: 16927 + - uid: 16910 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,7.5 parent: 2 - - uid: 16928 + - uid: 16911 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,9.5 parent: 2 - - uid: 16929 + - uid: 16912 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,10.5 parent: 2 - - uid: 16930 + - uid: 16913 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,11.5 parent: 2 - - uid: 16931 + - uid: 16914 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,13.5 parent: 2 - - uid: 16932 + - uid: 16915 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,14.5 parent: 2 - - uid: 16933 + - uid: 16916 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,17.5 parent: 2 - - uid: 16934 + - uid: 16917 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,18.5 parent: 2 - - uid: 16935 + - uid: 16918 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,19.5 parent: 2 - - uid: 16936 + - uid: 16919 components: - type: Transform pos: 43.5,18.5 parent: 2 - - uid: 16937 + - uid: 16920 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,21.5 parent: 2 - - uid: 16938 + - uid: 16921 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,25.5 parent: 2 - - uid: 16939 + - uid: 16922 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,25.5 parent: 2 - - uid: 16940 + - uid: 16923 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,25.5 parent: 2 - - uid: 16941 + - uid: 16924 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,25.5 parent: 2 - - uid: 16942 + - uid: 16925 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,25.5 parent: 2 - - uid: 16943 + - uid: 16926 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,25.5 parent: 2 - - uid: 16944 + - uid: 16927 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,25.5 parent: 2 - - uid: 16945 + - uid: 16928 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,25.5 parent: 2 - - uid: 16946 + - uid: 16929 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,25.5 parent: 2 - - uid: 16947 + - uid: 16930 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,25.5 parent: 2 - - uid: 16948 + - uid: 16931 components: - type: Transform pos: 50.5,23.5 parent: 2 - - uid: 16949 + - uid: 16932 components: - type: Transform pos: 50.5,24.5 parent: 2 - - uid: 16950 + - uid: 16933 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,22.5 parent: 2 - - uid: 16951 + - uid: 16934 components: - type: Transform pos: 43.5,19.5 parent: 2 - - uid: 16952 + - uid: 16935 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,20.5 parent: 2 - - uid: 16953 + - uid: 16936 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,20.5 parent: 2 - - uid: 16954 + - uid: 16937 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,20.5 parent: 2 - - uid: 16955 + - uid: 16938 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,16.5 parent: 2 - - uid: 16956 + - uid: 16939 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,15.5 parent: 2 - - uid: 16957 + - uid: 16940 components: - type: Transform pos: 52.5,5.5 parent: 2 - - uid: 16958 + - uid: 16941 components: - type: Transform pos: 52.5,6.5 parent: 2 - - uid: 16959 + - uid: 16942 components: - type: Transform pos: 52.5,7.5 parent: 2 - - uid: 16960 + - uid: 16943 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,8.5 parent: 2 - - uid: 16961 + - uid: 16944 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,8.5 parent: 2 - - uid: 16962 + - uid: 16945 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,8.5 parent: 2 - - uid: 16963 + - uid: 16946 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,8.5 parent: 2 - - uid: 16964 + - uid: 16947 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,4.5 parent: 2 - - uid: 16965 + - uid: 16948 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,12.5 parent: 2 - - uid: 16966 + - uid: 16949 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,12.5 parent: 2 - - uid: 16967 + - uid: 16950 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,30.5 parent: 2 - - uid: 16968 + - uid: 16951 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,30.5 parent: 2 - - uid: 16969 + - uid: 16952 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,30.5 parent: 2 - - uid: 16970 + - uid: 16953 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,30.5 parent: 2 - - uid: 16971 + - uid: 16954 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,30.5 parent: 2 - - uid: 16972 + - uid: 16955 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,30.5 parent: 2 - - uid: 16973 + - uid: 16956 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,30.5 parent: 2 - - uid: 16974 + - uid: 16957 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,29.5 parent: 2 - - uid: 16975 + - uid: 16958 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,28.5 parent: 2 - - uid: 16976 + - uid: 16959 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,27.5 parent: 2 - - uid: 16977 + - uid: 16960 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,30.5 parent: 2 - - uid: 16978 + - uid: 16961 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,22.5 parent: 2 - - uid: 16979 + - uid: 16962 components: - type: Transform pos: -52.5,-16.5 parent: 2 - - uid: 16980 + - uid: 16963 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 16981 + - uid: 16964 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 16982 + - uid: 16965 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 16983 + - uid: 16966 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 16984 + - uid: 16967 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 16985 + - uid: 16968 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 16986 + - uid: 16969 components: - type: Transform pos: -52.5,-9.5 parent: 2 - - uid: 16987 + - uid: 16970 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 16988 + - uid: 16971 components: - type: Transform pos: -52.5,-7.5 parent: 2 - - uid: 16989 + - uid: 16972 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 16990 + - uid: 16973 components: - type: Transform pos: -52.5,-5.5 parent: 2 - - uid: 16991 + - uid: 16974 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 16992 + - uid: 16975 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 16993 + - uid: 16976 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 16994 + - uid: 16977 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 16995 + - uid: 16978 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 16996 + - uid: 16979 components: - type: Transform pos: -52.5,0.5 parent: 2 - - uid: 16997 + - uid: 16980 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 16998 + - uid: 16981 components: - type: Transform pos: -52.5,3.5 parent: 2 - - uid: 16999 + - uid: 16982 components: - type: Transform pos: -52.5,4.5 parent: 2 - - uid: 17000 + - uid: 16983 components: - type: Transform pos: -52.5,5.5 parent: 2 - - uid: 17001 + - uid: 16984 components: - type: Transform pos: -52.5,6.5 parent: 2 - - uid: 17002 + - uid: 16985 components: - type: Transform pos: -52.5,7.5 parent: 2 - - uid: 17003 + - uid: 16986 components: - type: Transform pos: -52.5,8.5 parent: 2 - - uid: 17004 + - uid: 16987 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 17005 + - uid: 16988 components: - type: Transform pos: -52.5,11.5 parent: 2 - - uid: 17006 + - uid: 16989 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,12.5 parent: 2 - - uid: 17007 + - uid: 16990 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,12.5 parent: 2 - - uid: 17008 + - uid: 16991 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,12.5 parent: 2 - - uid: 17009 + - uid: 16992 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,12.5 parent: 2 - - uid: 17010 + - uid: 16993 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,12.5 parent: 2 - - uid: 17011 + - uid: 16994 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,12.5 parent: 2 - - uid: 17012 + - uid: 16995 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,12.5 parent: 2 - - uid: 17013 + - uid: 16996 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,12.5 parent: 2 - - uid: 17014 + - uid: 16997 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,12.5 parent: 2 - - uid: 17015 + - uid: 16998 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,11.5 parent: 2 - - uid: 17016 + - uid: 16999 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,9.5 parent: 2 - - uid: 17017 + - uid: 17000 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,8.5 parent: 2 - - uid: 17018 + - uid: 17001 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,7.5 parent: 2 - - uid: 17019 + - uid: 17002 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,6.5 parent: 2 - - uid: 17020 + - uid: 17003 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,5.5 parent: 2 - - uid: 17021 + - uid: 17004 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,5.5 parent: 2 - - uid: 17022 + - uid: 17005 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,5.5 parent: 2 - - uid: 17023 + - uid: 17006 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,5.5 parent: 2 - - uid: 17024 + - uid: 17007 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,5.5 parent: 2 - - uid: 17025 + - uid: 17008 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,5.5 parent: 2 - - uid: 17026 + - uid: 17009 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,5.5 parent: 2 - - uid: 17027 + - uid: 17010 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,5.5 parent: 2 - - uid: 17028 + - uid: 17011 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,5.5 parent: 2 - - uid: 17029 + - uid: 17012 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,5.5 parent: 2 - - uid: 17030 + - uid: 17013 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,5.5 parent: 2 - - uid: 17031 + - uid: 17014 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,5.5 parent: 2 - - uid: 17032 + - uid: 17015 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 2 - - uid: 17033 + - uid: 17016 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,5.5 parent: 2 - - uid: 17034 + - uid: 17017 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,5.5 parent: 2 - - uid: 17035 + - uid: 17018 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,5.5 parent: 2 - - uid: 17036 + - uid: 17019 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,5.5 parent: 2 - - uid: 17037 + - uid: 17020 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,5.5 parent: 2 - - uid: 17038 + - uid: 17021 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,5.5 parent: 2 - - uid: 17039 + - uid: 17022 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,5.5 parent: 2 - - uid: 17040 + - uid: 17023 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,5.5 parent: 2 - - uid: 17041 + - uid: 17024 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,5.5 parent: 2 - - uid: 17042 + - uid: 17025 components: - type: Transform pos: -49.5,14.5 parent: 2 - - uid: 17043 + - uid: 17026 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,50.5 parent: 2 - - uid: 17044 + - uid: 17027 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,50.5 parent: 2 - - uid: 17045 + - uid: 17028 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,50.5 parent: 2 - - uid: 17046 + - uid: 17029 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,50.5 parent: 2 - - uid: 17047 + - uid: 17030 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,50.5 parent: 2 - - uid: 17048 + - uid: 17031 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,50.5 parent: 2 - - uid: 17049 + - uid: 17032 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,50.5 parent: 2 - - uid: 17050 + - uid: 17033 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,50.5 parent: 2 - - uid: 17051 + - uid: 17034 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,50.5 parent: 2 - - uid: 17052 + - uid: 17035 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,50.5 parent: 2 - - uid: 17053 + - uid: 17036 components: - type: Transform pos: -7.5,49.5 parent: 2 - - uid: 17054 + - uid: 17037 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,10.5 parent: 2 - - uid: 17055 + - uid: 17038 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-10.5 parent: 2 - - uid: 17056 + - uid: 17039 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-11.5 parent: 2 - - uid: 17057 + - uid: 17040 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-12.5 parent: 2 - - uid: 17058 + - uid: 17041 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-13.5 parent: 2 - - uid: 17059 + - uid: 17042 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-14.5 parent: 2 - - uid: 17060 + - uid: 17043 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-15.5 parent: 2 - - uid: 17061 + - uid: 17044 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-16.5 parent: 2 - - uid: 17062 + - uid: 17045 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-17.5 parent: 2 - - uid: 17063 + - uid: 17046 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-21.5 parent: 2 - - uid: 17064 + - uid: 17047 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-22.5 parent: 2 - - uid: 17065 + - uid: 17048 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-23.5 parent: 2 - - uid: 17066 + - uid: 17049 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-24.5 parent: 2 - - uid: 17067 + - uid: 17050 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-25.5 parent: 2 - - uid: 17068 + - uid: 17051 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-26.5 parent: 2 - - uid: 17069 + - uid: 17052 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-27.5 parent: 2 - - uid: 17070 + - uid: 17053 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-28.5 parent: 2 - - uid: 17071 + - uid: 17054 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-20.5 parent: 2 - - uid: 17072 + - uid: 17055 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-20.5 parent: 2 - - uid: 17073 + - uid: 17056 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-20.5 parent: 2 - - uid: 17074 + - uid: 17057 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-20.5 parent: 2 - - uid: 17075 + - uid: 17058 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-20.5 parent: 2 - - uid: 17076 + - uid: 17059 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-20.5 parent: 2 - - uid: 17077 + - uid: 17060 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-20.5 parent: 2 - - uid: 17078 + - uid: 17061 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-20.5 parent: 2 - - uid: 17079 + - uid: 17062 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-20.5 parent: 2 - - uid: 17080 + - uid: 17063 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-20.5 parent: 2 - - uid: 17081 + - uid: 17064 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-20.5 parent: 2 - - uid: 17082 + - uid: 17065 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-20.5 parent: 2 - - uid: 17083 + - uid: 17066 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-20.5 parent: 2 - - uid: 17084 + - uid: 17067 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-20.5 parent: 2 - - uid: 17085 + - uid: 17068 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-20.5 parent: 2 - - uid: 17086 + - uid: 17069 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-20.5 parent: 2 - - uid: 17087 + - uid: 17070 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-18.5 parent: 2 - - uid: 17088 + - uid: 17071 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-18.5 parent: 2 - - uid: 17089 + - uid: 17072 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-18.5 parent: 2 - - uid: 17090 + - uid: 17073 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-18.5 parent: 2 - - uid: 17091 + - uid: 17074 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-18.5 parent: 2 - - uid: 17092 + - uid: 17075 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-18.5 parent: 2 - - uid: 17093 + - uid: 17076 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-18.5 parent: 2 - - uid: 17094 + - uid: 17077 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-18.5 parent: 2 - - uid: 17095 + - uid: 17078 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-18.5 parent: 2 - - uid: 17096 + - uid: 17079 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-18.5 parent: 2 - - uid: 17097 + - uid: 17080 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-18.5 parent: 2 - - uid: 17098 + - uid: 17081 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-18.5 parent: 2 - - uid: 17099 + - uid: 17082 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-18.5 parent: 2 - - uid: 17100 + - uid: 17083 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-18.5 parent: 2 - - uid: 17101 + - uid: 17084 components: - type: Transform pos: 41.5,-17.5 parent: 2 - - uid: 17102 + - uid: 17085 components: - type: Transform pos: 41.5,-16.5 parent: 2 - - uid: 17103 + - uid: 17086 components: - type: Transform pos: 39.5,-17.5 parent: 2 - - uid: 17104 + - uid: 17087 components: - type: Transform pos: 39.5,-16.5 parent: 2 - - uid: 17105 + - uid: 17088 components: - type: Transform pos: 39.5,-19.5 parent: 2 - - uid: 17106 + - uid: 17089 components: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 17107 + - uid: 17090 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-14.5 parent: 2 - - uid: 17108 + - uid: 17091 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-13.5 parent: 2 - - uid: 17109 + - uid: 17092 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-12.5 parent: 2 - - uid: 17110 + - uid: 17093 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-11.5 parent: 2 - - uid: 17111 + - uid: 17094 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-11.5 parent: 2 - - uid: 17112 + - uid: 17095 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-11.5 parent: 2 - - uid: 17113 + - uid: 17096 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-11.5 parent: 2 - - uid: 17114 + - uid: 17097 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-11.5 parent: 2 - - uid: 17115 + - uid: 17098 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-11.5 parent: 2 - - uid: 17116 + - uid: 17099 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-11.5 parent: 2 - - uid: 17117 + - uid: 17100 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-11.5 parent: 2 - - uid: 17118 + - uid: 17101 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-10.5 parent: 2 - - uid: 17119 + - uid: 17102 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-10.5 parent: 2 - - uid: 17120 + - uid: 17103 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-10.5 parent: 2 - - uid: 17121 + - uid: 17104 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-10.5 parent: 2 - - uid: 17122 + - uid: 17105 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-10.5 parent: 2 - - uid: 17123 + - uid: 17106 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-10.5 parent: 2 - - uid: 17124 + - uid: 17107 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-10.5 parent: 2 - - uid: 17125 + - uid: 17108 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 - - uid: 17126 + - uid: 17109 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-10.5 parent: 2 - - uid: 17127 + - uid: 17110 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 - - uid: 17128 + - uid: 17111 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-10.5 parent: 2 - - uid: 17129 + - uid: 17112 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 - - uid: 17130 + - uid: 17113 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 - - uid: 17131 + - uid: 17114 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-9.5 parent: 2 - - uid: 17132 + - uid: 17115 components: - type: Transform pos: 40.5,-10.5 parent: 2 - - uid: 17133 + - uid: 17116 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,28.5 parent: 2 - - uid: 17134 + - uid: 17117 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,28.5 parent: 2 - - uid: 17135 + - uid: 17118 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,28.5 parent: 2 - - uid: 17136 + - uid: 17119 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,28.5 parent: 2 - - uid: 17137 + - uid: 17120 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,25.5 parent: 2 - - uid: 17138 + - uid: 17121 components: - type: Transform pos: 29.5,-33.5 parent: 2 - - uid: 17139 + - uid: 17122 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 17140 + - uid: 17123 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 17141 + - uid: 17124 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 17142 + - uid: 17125 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 17143 + - uid: 17126 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 17144 + - uid: 17127 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 17145 + - uid: 17128 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 17146 + - uid: 17129 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 17147 + - uid: 17130 components: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 17148 + - uid: 17131 components: - type: Transform pos: 29.5,-23.5 parent: 2 - - uid: 17149 + - uid: 17132 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-22.5 parent: 2 - - uid: 17150 + - uid: 17133 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-22.5 parent: 2 - - uid: 17151 + - uid: 17134 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 2 - - uid: 17152 + - uid: 17135 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,11.5 parent: 2 - - uid: 17153 + - uid: 17136 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,11.5 parent: 2 - - uid: 17154 + - uid: 17137 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,11.5 parent: 2 - - uid: 17155 + - uid: 17138 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,28.5 parent: 2 - - uid: 17156 + - uid: 17139 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 17157 + - uid: 17140 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,2.5 parent: 2 - - uid: 17158 + - uid: 17141 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,2.5 parent: 2 - - uid: 17159 + - uid: 17142 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,2.5 parent: 2 - - uid: 17160 + - uid: 17143 components: - type: Transform rot: -1.5707963267948966 rad @@ -132768,910 +132796,910 @@ entities: parent: 2 - proto: DisposalTrunk entities: - - uid: 17161 + - uid: 17144 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,28.5 parent: 2 - - uid: 17162 + - uid: 17145 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-21.5 parent: 2 - - uid: 17163 + - uid: 17146 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-52.5 parent: 2 - - uid: 17164 + - uid: 17147 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,36.5 parent: 2 - - uid: 17165 + - uid: 17148 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-49.5 parent: 2 - - uid: 17166 + - uid: 17149 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-21.5 parent: 2 - - uid: 17167 + - uid: 17150 components: - type: Transform pos: 50.5,13.5 parent: 2 - - uid: 17168 + - uid: 17151 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,15.5 parent: 2 - - uid: 17169 + - uid: 17152 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,3.5 parent: 2 - - uid: 17170 + - uid: 17153 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,13.5 parent: 2 - - uid: 17171 + - uid: 17154 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,17.5 parent: 2 - - uid: 17172 + - uid: 17155 components: - type: Transform pos: 21.5,10.5 parent: 2 - - uid: 17173 + - uid: 17156 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,34.5 parent: 2 - - uid: 17174 + - uid: 17157 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,13.5 parent: 2 - - uid: 17175 + - uid: 17158 components: - type: Transform pos: -30.5,45.5 parent: 2 - - uid: 17176 + - uid: 17159 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-57.5 parent: 2 - - uid: 17177 + - uid: 17160 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,29.5 parent: 2 - - uid: 17178 + - uid: 17161 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-53.5 parent: 2 - - uid: 17179 + - uid: 17162 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-51.5 parent: 2 - - uid: 17180 + - uid: 17163 components: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 17181 + - uid: 17164 components: - type: Transform pos: -38.5,-29.5 parent: 2 - - uid: 17182 + - uid: 17165 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 - - uid: 17183 + - uid: 17166 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,33.5 parent: 2 - - uid: 17184 + - uid: 17167 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-28.5 parent: 2 - - uid: 17185 + - uid: 17168 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-27.5 parent: 2 - - uid: 17186 + - uid: 17169 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-41.5 parent: 2 - - uid: 17187 + - uid: 17170 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-32.5 parent: 2 - - uid: 17188 + - uid: 17171 components: - type: Transform pos: -32.5,-22.5 parent: 2 - - uid: 17189 + - uid: 17172 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-51.5 parent: 2 - - uid: 17190 + - uid: 17173 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 17191 + - uid: 17174 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-74.5 parent: 2 - - uid: 17192 + - uid: 17175 components: - type: Transform pos: -26.5,15.5 parent: 2 - - uid: 17193 + - uid: 17176 components: - type: Transform pos: -36.5,-22.5 parent: 2 - - uid: 17194 + - uid: 17177 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-32.5 parent: 2 - - uid: 17195 + - uid: 17178 components: - type: Transform pos: -64.5,11.5 parent: 2 - - uid: 17196 + - uid: 17179 components: - type: Transform pos: -42.5,-29.5 parent: 2 - - uid: 17197 + - uid: 17180 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,20.5 parent: 2 - - uid: 17198 + - uid: 17181 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,26.5 parent: 2 - - uid: 17199 + - uid: 17182 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,13.5 parent: 2 - - uid: 17200 + - uid: 17183 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,52.5 parent: 2 - - uid: 17201 + - uid: 17184 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,22.5 parent: 2 - - uid: 17202 + - uid: 17185 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,38.5 parent: 2 - - uid: 17203 + - uid: 17186 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-27.5 parent: 2 - - uid: 17204 + - uid: 17187 components: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 17205 + - uid: 17188 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-69.5 parent: 2 - - uid: 17206 + - uid: 17189 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,17.5 parent: 2 - - uid: 17207 + - uid: 17190 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,55.5 parent: 2 - - uid: 17208 + - uid: 17191 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,32.5 parent: 2 - - uid: 17209 + - uid: 17192 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-25.5 parent: 2 - - uid: 17210 + - uid: 17193 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-25.5 parent: 2 - - uid: 17211 + - uid: 17194 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-25.5 parent: 2 - - uid: 17212 + - uid: 17195 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-32.5 parent: 2 - - uid: 17213 + - uid: 17196 components: - type: Transform pos: 33.5,12.5 parent: 2 - - uid: 17214 + - uid: 17197 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,57.5 parent: 2 - - uid: 17215 + - uid: 17198 components: - type: Transform pos: -40.5,-22.5 parent: 2 - - uid: 17216 + - uid: 17199 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,38.5 parent: 2 - - uid: 17217 + - uid: 17200 components: - type: Transform pos: 32.5,-21.5 parent: 2 - - uid: 17218 + - uid: 17201 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-28.5 parent: 2 - - uid: 17219 + - uid: 17202 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,53.5 parent: 2 - - uid: 17220 + - uid: 17203 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-17.5 parent: 2 - - uid: 17221 + - uid: 17204 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-9.5 parent: 2 - - uid: 17222 + - uid: 17205 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,28.5 parent: 2 - - uid: 17223 + - uid: 17206 components: - type: Transform pos: 25.5,38.5 parent: 2 - - uid: 17224 + - uid: 17207 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-29.5 parent: 2 - - uid: 17225 + - uid: 17208 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,54.5 parent: 2 - - uid: 17226 + - uid: 17209 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,82.5 parent: 2 - - uid: 17227 + - uid: 17210 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,61.5 parent: 2 - - uid: 17228 + - uid: 17211 components: - type: Transform pos: -29.5,55.5 parent: 2 - - uid: 17229 + - uid: 17212 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,48.5 parent: 2 - - uid: 17230 + - uid: 17213 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-81.5 parent: 2 - - uid: 17231 + - uid: 17214 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-63.5 parent: 2 - - uid: 17232 + - uid: 17215 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-61.5 parent: 2 - - uid: 17233 + - uid: 17216 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-79.5 parent: 2 - - uid: 17234 + - uid: 17217 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-46.5 parent: 2 - - uid: 17235 + - uid: 17218 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-37.5 parent: 2 - - uid: 17236 + - uid: 17219 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-47.5 parent: 2 - - uid: 17237 + - uid: 17220 components: - type: Transform pos: -31.5,-44.5 parent: 2 - - uid: 17238 + - uid: 17221 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-29.5 parent: 2 - - uid: 17239 + - uid: 17222 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-12.5 parent: 2 - - uid: 17240 + - uid: 17223 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-5.5 parent: 2 - - uid: 17241 + - uid: 17224 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 17242 + - uid: 17225 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,21.5 parent: 2 - - uid: 17243 + - uid: 17226 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 17244 + - uid: 17227 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-9.5 parent: 2 - - uid: 17245 + - uid: 17228 components: - type: Transform pos: -57.5,3.5 parent: 2 - proto: DisposalUnit entities: - - uid: 17246 + - uid: 17229 components: - type: Transform pos: 68.5,28.5 parent: 2 - - uid: 17247 + - uid: 17230 components: - type: Transform pos: -67.5,54.5 parent: 2 - - uid: 17248 + - uid: 17231 components: - type: Transform pos: 8.5,82.5 parent: 2 - - uid: 17249 + - uid: 17232 components: - type: Transform pos: -7.5,48.5 parent: 2 - - uid: 17250 + - uid: 17233 components: - type: Transform pos: 24.5,26.5 parent: 2 - - uid: 17251 + - uid: 17234 components: - type: Transform pos: -25.5,-47.5 parent: 2 - - uid: 17252 + - uid: 17235 components: - type: Transform pos: -5.5,36.5 parent: 2 - - uid: 17253 + - uid: 17236 components: - type: Transform pos: -29.5,55.5 parent: 2 - - uid: 17254 + - uid: 17237 components: - type: Transform pos: 45.5,15.5 parent: 2 - - uid: 17255 + - uid: 17238 components: - type: Transform pos: -12.5,-57.5 parent: 2 - - uid: 17256 + - uid: 17239 components: - type: Transform pos: 50.5,13.5 parent: 2 - - uid: 17257 + - uid: 17240 components: - type: Transform pos: -11.5,-5.5 parent: 2 - - uid: 17258 + - uid: 17241 components: - type: Transform pos: 67.5,-51.5 parent: 2 - - uid: 17259 + - uid: 17242 components: - type: Transform pos: -0.5,52.5 parent: 2 - - uid: 17260 + - uid: 17243 components: - type: Transform pos: -20.5,-41.5 parent: 2 - - uid: 17261 + - uid: 17244 components: - type: Transform pos: 4.5,-27.5 parent: 2 - - uid: 17262 + - uid: 17245 components: - type: Transform pos: -22.5,-37.5 parent: 2 - - uid: 17263 + - uid: 17246 components: - type: Transform pos: -40.5,-25.5 parent: 2 - - uid: 17264 + - uid: 17247 components: - type: Transform pos: 32.5,-21.5 parent: 2 - - uid: 17265 + - uid: 17248 components: - type: Transform pos: -3.5,-49.5 parent: 2 - - uid: 17266 + - uid: 17249 components: - type: Transform pos: -34.5,-12.5 parent: 2 - - uid: 17267 + - uid: 17250 components: - type: Transform pos: 20.5,-46.5 parent: 2 - - uid: 17268 + - uid: 17251 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 17269 + - uid: 17252 components: - type: Transform pos: -20.5,22.5 parent: 2 - - uid: 17270 + - uid: 17253 components: - type: Transform pos: -12.5,-53.5 parent: 2 - - uid: 17271 + - uid: 17254 components: - type: Transform pos: 1.5,-61.5 parent: 2 - - uid: 17272 + - uid: 17255 components: - type: Transform pos: -9.5,26.5 parent: 2 - - uid: 17273 + - uid: 17256 components: - type: Transform pos: -64.5,13.5 parent: 2 - - uid: 17274 + - uid: 17257 components: - type: Transform pos: -55.5,38.5 parent: 2 - - uid: 17275 + - uid: 17258 components: - type: Transform pos: 72.5,-51.5 parent: 2 - - uid: 17276 + - uid: 17259 components: - type: Transform pos: 43.5,28.5 parent: 2 - - uid: 17277 + - uid: 17260 components: - type: Transform pos: 42.5,-9.5 parent: 2 - - uid: 17278 + - uid: 17261 components: - type: Transform pos: -17.5,-79.5 parent: 2 - - uid: 17279 + - uid: 17262 components: - type: Transform pos: -58.5,17.5 parent: 2 - - uid: 17280 + - uid: 17263 components: - type: Transform pos: -24.5,29.5 parent: 2 - - uid: 17281 + - uid: 17264 components: - type: Transform pos: 38.5,-27.5 parent: 2 - - uid: 17282 + - uid: 17265 components: - type: Transform pos: -30.5,45.5 parent: 2 - - uid: 17283 + - uid: 17266 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - uid: 17284 + - uid: 17267 components: - type: Transform pos: -8.5,13.5 parent: 2 - - uid: 17285 + - uid: 17268 components: - type: Transform pos: 7.5,13.5 parent: 2 - - uid: 17286 + - uid: 17269 components: - type: Transform pos: 37.5,0.5 parent: 2 - - uid: 17287 + - uid: 17270 components: - type: Transform pos: 55.5,-29.5 parent: 2 - - uid: 17288 + - uid: 17271 components: - type: Transform pos: -6.5,-27.5 parent: 2 - - uid: 17289 + - uid: 17272 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 17290 + - uid: 17273 components: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 17291 + - uid: 17274 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 17292 + - uid: 17275 components: - type: Transform pos: 3.5,33.5 parent: 2 - - uid: 17293 + - uid: 17276 components: - type: Transform pos: -57.5,3.5 parent: 2 - - uid: 17294 + - uid: 17277 components: - type: Transform pos: -45.5,20.5 parent: 2 - - uid: 17295 + - uid: 17278 components: - type: Transform pos: 28.5,-69.5 parent: 2 - - uid: 17296 + - uid: 17279 components: - type: Transform pos: -64.5,11.5 parent: 2 - - uid: 17297 + - uid: 17280 components: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 17298 + - uid: 17281 components: - type: Transform pos: 33.5,12.5 parent: 2 - - uid: 17299 + - uid: 17282 components: - type: Transform pos: 21.5,10.5 parent: 2 - - uid: 17300 + - uid: 17283 components: - type: Transform pos: -17.5,-21.5 parent: 2 - - uid: 17301 + - uid: 17284 components: - type: Transform pos: -31.5,-44.5 parent: 2 - - uid: 17302 + - uid: 17285 components: - type: Transform pos: -29.5,32.5 parent: 2 - - uid: 17303 + - uid: 17286 components: - type: Transform pos: -42.5,-29.5 parent: 2 - - uid: 17304 + - uid: 17287 components: - type: Transform pos: -38.5,-29.5 parent: 2 - - uid: 17305 + - uid: 17288 components: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 17306 + - uid: 17289 components: - type: Transform pos: -32.5,-25.5 parent: 2 - - uid: 17307 + - uid: 17290 components: - type: Transform pos: -47.5,-28.5 parent: 2 - - uid: 17308 + - uid: 17291 components: - type: Transform pos: 16.5,-21.5 parent: 2 - - uid: 17309 + - uid: 17292 components: - type: Transform pos: 25.5,38.5 parent: 2 - - uid: 17310 + - uid: 17293 components: - type: Transform pos: 43.5,17.5 parent: 2 - - uid: 17311 + - uid: 17294 components: - type: Transform pos: 50.5,3.5 parent: 2 - - uid: 17312 + - uid: 17295 components: - type: Transform pos: -16.5,55.5 parent: 2 - - uid: 17313 + - uid: 17296 components: - type: Transform pos: -26.5,15.5 parent: 2 - - uid: 17314 + - uid: 17297 components: - type: Transform pos: -2.5,-81.5 parent: 2 - - uid: 17315 + - uid: 17298 components: - type: Transform pos: -2.5,-63.5 parent: 2 - - uid: 17316 + - uid: 17299 components: - type: Transform pos: -34.5,53.5 parent: 2 - - uid: 17317 + - uid: 17300 components: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 17318 + - uid: 17301 components: - type: Transform pos: -52.5,-17.5 parent: 2 - - uid: 17319 + - uid: 17302 components: - type: Transform pos: -27.5,61.5 parent: 2 - - uid: 17320 + - uid: 17303 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 17321 + - uid: 17304 components: - type: Transform pos: 55.5,-9.5 parent: 2 - proto: DisposalYJunction entities: - - uid: 17322 + - uid: 17305 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,30.5 parent: 2 - - uid: 17323 + - uid: 17306 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,57.5 parent: 2 - - uid: 17324 + - uid: 17307 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-34.5 parent: 2 - - uid: 17325 + - uid: 17308 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-34.5 parent: 2 - - uid: 17326 + - uid: 17309 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-15.5 parent: 2 - - uid: 17327 + - uid: 17310 components: - type: Transform rot: -1.5707963267948966 rad @@ -133679,57 +133707,57 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 17328 + - uid: 17311 components: - type: Transform pos: -39.5,-59.5 parent: 2 - - uid: 17329 + - uid: 17312 components: - type: Transform pos: -20.5,-39.5 parent: 2 - - uid: 17330 + - uid: 17313 components: - type: Transform pos: 1.5,50.5 parent: 2 - - uid: 17331 + - uid: 17314 components: - type: Transform pos: 52.5,9.5 parent: 2 - - uid: 17332 + - uid: 17315 components: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 17333 + - uid: 17316 components: - type: Transform pos: 20.5,-45.5 parent: 2 - - uid: 17334 + - uid: 17317 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 17335 + - uid: 17318 components: - type: Transform pos: 27.5,41.5 parent: 2 - - uid: 17336 + - uid: 17319 components: - type: Transform pos: -21.5,-5.5 parent: 2 - - uid: 17337 + - uid: 17320 components: - type: Transform pos: 39.5,23.5 parent: 2 - - uid: 17338 + - uid: 17321 components: - type: MetaData desc: Удобная лежанка для крабов. Да, такие существуют. А что вы хотели? @@ -133737,64 +133765,64 @@ entities: - type: Transform pos: -52.5,33.5 parent: 2 - - uid: 17339 + - uid: 17322 components: - type: Transform pos: -13.5,0.5 parent: 2 - - uid: 17340 + - uid: 17323 components: - type: Transform pos: -30.5,-64.5 parent: 2 - - uid: 17341 + - uid: 17324 components: - type: Transform pos: -33.5,46.5 parent: 2 - - uid: 17342 + - uid: 17325 components: - type: Transform pos: -7.5,18.5 parent: 2 - - uid: 17343 + - uid: 17326 components: - type: Transform pos: -26.5,52.5 parent: 2 - - uid: 17344 + - uid: 17327 components: - type: Transform pos: -37.5,50.5 parent: 2 - - uid: 39148 + - uid: 38975 components: - type: Transform pos: -16.5,30.5 - parent: 38584 + parent: 38411 - proto: DonkpocketBoxSpawner entities: - - uid: 17345 + - uid: 17328 components: - type: Transform pos: -28.5,32.5 parent: 2 - - uid: 17346 + - uid: 17329 components: - type: Transform pos: 27.5,32.5 parent: 2 - - uid: 17347 + - uid: 17330 components: - type: Transform pos: 20.5,0.5 parent: 2 - - uid: 17348 + - uid: 17331 components: - type: Transform pos: -3.5,-63.5 parent: 2 - - uid: 17349 + - uid: 17332 components: - type: Transform rot: -1.5707963267948966 rad @@ -133802,12 +133830,12 @@ entities: parent: 2 - proto: DoorElectronics entities: - - uid: 17350 + - uid: 17333 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 17351 + - uid: 17334 components: - type: Transform pos: -32.5,9.5 @@ -133842,32 +133870,32 @@ entities: actions: !type:Container ents: - 30 - - uid: 17352 + - uid: 17335 components: - type: Transform pos: 69.5,-48.5 parent: 2 - - uid: 17353 + - uid: 17336 components: - type: Transform pos: -49.56276,20.6829 parent: 2 - type: Physics canCollide: False - - uid: 17354 + - uid: 17337 components: - type: Transform rot: 3.141592653589793 rad pos: 31.512732,59.45561 parent: 2 - - uid: 17355 + - uid: 17338 components: - type: Transform pos: -49.37526,20.52665 parent: 2 - type: Physics canCollide: False - - uid: 17356 + - uid: 17339 components: - type: Transform pos: -57.510643,-1.4317584 @@ -133876,7 +133904,7 @@ entities: canCollide: False - proto: Dresser entities: - - uid: 14989 + - uid: 14930 components: - type: Transform pos: -30.5,-15.5 @@ -133887,8 +133915,8 @@ entities: showEnts: False occludes: True ents: - - 14990 - - uid: 15018 + - 14931 + - uid: 14959 components: - type: Transform pos: 14.5,-52.5 @@ -133899,361 +133927,361 @@ entities: showEnts: False occludes: True ents: - - 15023 - - 15021 - - 15022 - - 15024 - - 15020 - - 15019 - - uid: 17357 + - 14964 + - 14962 + - 14963 + - 14965 + - 14961 + - 14960 + - uid: 17340 components: - type: Transform pos: -3.5,44.5 parent: 2 - - uid: 17358 + - uid: 17341 components: - type: Transform pos: -2.5,53.5 parent: 2 - - uid: 17359 + - uid: 17342 components: - type: Transform pos: -9.5,54.5 parent: 2 - - uid: 17360 + - uid: 17343 components: - type: Transform pos: 10.5,11.5 parent: 2 - - uid: 17361 + - uid: 17344 components: - type: Transform pos: 98.5,13.5 parent: 2 - - uid: 17362 + - uid: 17345 components: - type: Transform pos: 81.5,-4.5 parent: 2 - - uid: 17363 + - uid: 17346 components: - type: Transform pos: 85.5,-4.5 parent: 2 - - uid: 17364 + - uid: 17347 components: - type: Transform pos: 89.5,-4.5 parent: 2 - proto: DresserCaptainFilled entities: - - uid: 17365 + - uid: 17348 components: - type: Transform pos: 13.5,0.5 parent: 2 - proto: DresserChiefEngineerFilled entities: - - uid: 17366 + - uid: 17349 components: - type: Transform pos: -58.5,5.5 parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 17367 + - uid: 17350 components: - type: Transform pos: 24.5,-50.5 parent: 2 - proto: DresserFilled entities: - - uid: 17368 + - uid: 17351 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 17369 + - uid: 17352 components: - type: Transform pos: 51.5,-25.5 parent: 2 - - uid: 17370 + - uid: 17353 components: - type: Transform pos: 45.5,-22.5 parent: 2 - - uid: 17371 + - uid: 17354 components: - type: Transform pos: 49.5,-22.5 parent: 2 - - uid: 17372 + - uid: 17355 components: - type: Transform pos: -24.5,-10.5 parent: 2 - - uid: 17373 + - uid: 17356 components: - type: Transform pos: -29.5,-64.5 parent: 2 - - uid: 39149 + - uid: 38976 components: - type: Transform pos: -22.5,10.5 - parent: 38584 - - uid: 39150 + parent: 38411 + - uid: 38977 components: - type: Transform pos: -19.5,0.5 - parent: 38584 - - uid: 39151 + parent: 38411 + - uid: 38978 components: - type: Transform pos: -16.5,0.5 - parent: 38584 - - uid: 39152 + parent: 38411 + - uid: 38979 components: - type: Transform pos: -22.5,0.5 - parent: 38584 - - uid: 39153 + parent: 38411 + - uid: 38980 components: - type: Transform pos: -20.5,28.5 - parent: 38584 - - uid: 39154 + parent: 38411 + - uid: 38981 components: - type: Transform pos: -16.5,10.5 - parent: 38584 - - uid: 39155 + parent: 38411 + - uid: 38982 components: - type: Transform pos: -19.5,10.5 - parent: 38584 + parent: 38411 - proto: DresserHeadOfPersonnelFilled entities: - - uid: 17374 + - uid: 17357 components: - type: Transform pos: -15.5,-3.5 parent: 2 - proto: DresserHeadOfSecurityFilled entities: - - uid: 17375 + - uid: 17358 components: - type: Transform pos: 36.5,22.5 parent: 2 - proto: DresserQuarterMasterFilled entities: - - uid: 17376 + - uid: 17359 components: - type: Transform pos: 27.5,44.5 parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 17377 + - uid: 17360 components: - type: Transform pos: -16.5,-45.5 parent: 2 - proto: DrinkAbsintheBottleFull entities: - - uid: 17378 + - uid: 17361 components: - type: Transform pos: -48.514404,32.65227 parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 15622 + - uid: 15605 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15623 + - uid: 15606 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15624 + - uid: 15607 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17379 + - uid: 17362 components: - type: Transform pos: 41.357204,28.897608 parent: 2 - - uid: 17380 + - uid: 17363 components: - type: Transform pos: -76.798294,-0.080628335 parent: 2 - proto: DrinkBeerCan entities: - - uid: 15625 + - uid: 15608 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15626 + - uid: 15609 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15627 + - uid: 15610 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15628 + - uid: 15611 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15629 + - uid: 15612 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15630 + - uid: 15613 components: - type: Transform - parent: 15621 + parent: 15604 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39131 + - uid: 38958 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39132 + - uid: 38959 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39133 + - uid: 38960 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39134 + - uid: 38961 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39135 + - uid: 38962 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39136 + - uid: 38963 components: - type: Transform - parent: 39130 + parent: 38957 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39156 + - uid: 38983 components: - type: Transform pos: -20.250412,43.45819 - parent: 38584 + parent: 38411 - proto: DrinkBeerglass entities: - - uid: 17381 + - uid: 17364 components: - type: Transform pos: 55.687534,-45.35493 parent: 2 - - uid: 17382 + - uid: 17365 components: - type: Transform pos: 55.202816,-45.359303 parent: 2 - proto: DrinkBloodGlass entities: - - uid: 17383 + - uid: 17366 components: - type: Transform pos: -34.087208,-79.51882 parent: 2 - - uid: 17384 + - uid: 17367 components: - type: Transform pos: -33.390064,-79.445435 parent: 2 - - uid: 17385 + - uid: 17368 components: - type: Transform pos: -33.74475,-79.33536 parent: 2 - proto: DrinkBottleGildlager entities: - - uid: 14517 + - uid: 14459 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkBottleWhiskey entities: - - uid: 17387 + - uid: 17369 components: - type: Transform pos: -40.49082,-9.030222 parent: 2 - proto: DrinkChampagneBottleFull entities: - - uid: 17388 + - uid: 17370 components: - type: Transform pos: 23.129408,12.558513 parent: 2 - proto: DrinkColaBottleFull entities: - - uid: 17389 + - uid: 17371 components: - type: Transform pos: -76.81392,-0.4087534 parent: 2 - proto: DrinkCreamCarton entities: - - uid: 17390 + - uid: 17372 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -134261,157 +134289,157 @@ entities: parent: 2 - proto: DrinkEnergyDrinkCan entities: - - uid: 17391 + - uid: 17373 components: - type: Transform pos: -64.59291,-44.41243 parent: 2 - proto: DrinkFlask entities: - - uid: 17392 + - uid: 17374 components: - type: Transform pos: 8.751882,0.49553835 parent: 2 - proto: DrinkGildlagerBottleFull entities: - - uid: 17393 + - uid: 17375 components: - type: Transform pos: 26.40898,15.948956 parent: 2 - proto: DrinkGlass entities: - - uid: 17394 + - uid: 17376 components: - type: Transform pos: 93.862076,-4.490161 parent: 2 - - uid: 17395 + - uid: 17377 components: - type: Transform pos: -11.653931,36.61787 parent: 2 - - uid: 17396 + - uid: 17378 components: - type: Transform pos: 93.8152,-4.208911 parent: 2 - - uid: 17397 + - uid: 17379 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.299576,-4.3026605 parent: 2 - - uid: 17398 + - uid: 17380 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.5652,-4.287036 parent: 2 - - uid: 17399 + - uid: 17381 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.28395,-4.4589105 parent: 2 - - uid: 17400 + - uid: 17382 components: - type: Transform pos: 93.612076,-4.427661 parent: 2 - proto: DrinkGlassWhite entities: - - uid: 17401 + - uid: 17383 components: - type: Transform pos: -33.482204,-66.63239 parent: 2 - - uid: 17402 + - uid: 17384 components: - type: Transform pos: -33.751278,-66.717995 parent: 2 - - uid: 17403 + - uid: 17385 components: - type: Transform pos: -7.9352493,19.558664 parent: 2 - - uid: 17404 + - uid: 17386 components: - type: Transform pos: -7.7904577,19.864996 parent: 2 - proto: DrinkGoldenCup entities: - - uid: 17405 + - uid: 17387 components: - type: Transform pos: 23.47316,17.761639 parent: 2 - proto: DrinkGrapeSodaGlass entities: - - uid: 17406 + - uid: 17388 components: - type: Transform pos: -8.52768,39.647503 parent: 2 - proto: DrinkGreenTea entities: - - uid: 17407 + - uid: 17389 components: - type: Transform pos: -52.36495,-44.64987 parent: 2 - - uid: 17408 + - uid: 17390 components: - type: Transform pos: -50.639072,-45.357834 parent: 2 - - uid: 17409 + - uid: 17391 components: - type: Transform - pos: -8.362577,-3.5833626 + pos: -8.4638,-4.3835773 parent: 2 - - uid: 17410 + - uid: 17392 components: - type: Transform - pos: -8.675077,-3.3021126 + pos: -8.338801,-4.0242023 parent: 2 - proto: DrinkHosFlask entities: - - uid: 17411 + - uid: 17393 components: - type: Transform pos: 41.521767,20.175655 parent: 2 - proto: DrinkHotCoffee entities: - - uid: 17412 + - uid: 17394 components: - type: Transform pos: -56.503292,12.64807 parent: 2 - type: Physics canCollide: False - - uid: 17413 + - uid: 17395 components: - type: Transform pos: -46.475765,37.90942 parent: 2 - - uid: 17414 + - uid: 17396 components: - type: Transform pos: 51.090782,7.7054863 parent: 2 - - uid: 17415 + - uid: 17397 components: - type: Transform pos: 20.753819,38.703323 parent: 2 - proto: DrinkJarWhat entities: - - uid: 17416 + - uid: 17398 components: - type: MetaData name: Кротовуха @@ -134420,33 +134448,33 @@ entities: parent: 2 - proto: DrinkJuiceOrangeCarton entities: - - uid: 17417 + - uid: 17399 components: - type: Transform pos: 56.79927,-35.55457 parent: 2 - proto: DrinkManlyDorfGlass entities: - - uid: 17418 + - uid: 17400 components: - type: Transform pos: -48.583096,47.629047 parent: 2 - proto: DrinkMilkCarton entities: - - uid: 17419 + - uid: 17401 components: - type: Transform pos: -33.714592,-66.2777 parent: 2 - - uid: 17420 + - uid: 17402 components: - type: Transform pos: -7.5133743,19.60554 parent: 2 - proto: DrinkMug entities: - - uid: 17421 + - uid: 17403 components: - type: Transform pos: 4.6912384,43.501335 @@ -134455,86 +134483,86 @@ entities: canCollide: False - proto: DrinkMugBlack entities: - - uid: 17422 + - uid: 17404 components: - type: Transform pos: -22.333149,-39.62949 parent: 2 - proto: DrinkMugDog entities: - - uid: 17423 + - uid: 17405 components: - type: Transform pos: -39.48549,-59.612827 parent: 2 - - uid: 17424 + - uid: 17406 components: - type: Transform pos: 18.368465,-50.232624 parent: 2 - - uid: 17425 + - uid: 17407 components: - type: Transform pos: -22.661274,-39.25449 parent: 2 - proto: DrinkMugMetal entities: - - uid: 17426 + - uid: 17408 components: - type: Transform pos: 11.355303,-28.496075 parent: 2 - proto: DrinkMugMoebius entities: - - uid: 17427 + - uid: 17409 components: - type: Transform pos: 18.671715,-50.510868 parent: 2 - - uid: 17428 + - uid: 17410 components: - type: Transform pos: -34.338005,63.49301 parent: 2 - proto: DrinkMugOne entities: - - uid: 17429 + - uid: 17411 components: - type: Transform pos: -40.29744,61.61986 parent: 2 - - uid: 17430 + - uid: 17412 components: - type: Transform pos: -77.735794,-0.17437816 parent: 2 - proto: DrinkMugRainbow entities: - - uid: 17431 + - uid: 17413 components: - type: Transform pos: -77.22017,-0.19000322 parent: 2 - proto: DrinkMugRed entities: - - uid: 17432 + - uid: 17414 components: - type: Transform pos: -28.544523,-10.337871 parent: 2 - proto: DrinkNukieCan entities: - - uid: 17433 + - uid: 17415 components: - type: Transform pos: -74.64876,-35.243942 parent: 2 - - uid: 17434 + - uid: 17416 components: - type: Transform pos: -74.45699,-35.406185 parent: 2 - - uid: 17435 + - uid: 17417 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -134542,19 +134570,19 @@ entities: parent: 2 - proto: DrinkShaker entities: - - uid: 17436 + - uid: 17418 components: - type: Transform pos: -5.5394945,40.926525 parent: 2 - proto: DrinkShotGlass entities: - - uid: 17437 + - uid: 17419 components: - type: Transform pos: -48.014404,32.467087 parent: 2 - - uid: 17438 + - uid: 17420 components: - type: Transform rot: -1.5707963267948966 rad @@ -134562,48 +134590,48 @@ entities: parent: 2 - proto: DrinkSpaceGlue entities: - - uid: 17441 + - uid: 17421 components: - type: Transform pos: 38.48052,-19.283209 parent: 2 - - uid: 17442 + - uid: 17422 components: - type: Transform pos: 20.197306,-18.429718 parent: 2 - - uid: 17443 + - uid: 17423 components: - type: Transform pos: 47.504456,-51.095913 parent: 2 - proto: DrinkSpaceLube entities: - - uid: 39157 + - uid: 38984 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.515173,35.579437 - parent: 38584 + parent: 38411 - proto: DrinkTeacup entities: - - uid: 17444 + - uid: 17424 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.797064,-39.72211 parent: 2 - - uid: 17445 + - uid: 17425 components: - type: Transform pos: -4.564571,1.4259852 parent: 2 - - uid: 17446 + - uid: 17426 components: - type: Transform pos: -3.5614977,0.61477566 parent: 2 - - uid: 17447 + - uid: 17427 components: - type: Transform rot: -1.5707963267948966 rad @@ -134611,179 +134639,172 @@ entities: parent: 2 - proto: DrinkTeapot entities: - - uid: 17448 + - uid: 17428 components: - type: Transform pos: -51.479885,-44.930107 parent: 2 - - uid: 17449 + - uid: 17429 components: - type: Transform pos: -4.0040307,1.057254 parent: 2 - - uid: 17450 + - uid: 17430 components: - type: Transform - pos: -8.518827,-4.0677376 + pos: -8.30755,-3.4304523 parent: 2 - proto: DrinkVodkaBottleFull entities: - - uid: 17451 + - uid: 17431 components: - type: Transform pos: 77.490364,-46.540504 parent: 2 - - uid: 17452 + - uid: 17432 components: - type: Transform pos: 77.72074,-46.363407 parent: 2 - - uid: 17453 + - uid: 17433 components: - type: Transform pos: 77.50809,-46.398827 parent: 2 - - uid: 17454 + - uid: 17434 components: - type: Transform pos: 77.4372,-46.575924 parent: 2 - - uid: 17455 + - uid: 17435 components: - type: Transform pos: 77.45492,-46.575924 parent: 2 - - uid: 17456 + - uid: 17436 components: - type: Transform pos: -43.519814,54.566936 parent: 2 - - uid: 17457 + - uid: 17437 components: - type: Transform pos: 77.30893,-46.454647 parent: 2 - proto: DrinkWaterBottleFull entities: - - uid: 17458 + - uid: 17438 components: - type: Transform pos: 48.286457,17.641747 parent: 2 - - uid: 17459 + - uid: 17439 components: - type: Transform pos: 48.692707,17.672997 parent: 2 - - uid: 17460 + - uid: 17440 components: - type: Transform pos: 48.489582,17.657372 parent: 2 - - uid: 17461 + - uid: 17441 components: - type: Transform pos: 55.321003,-22.407534 parent: 2 - - uid: 17462 + - uid: 17442 components: - type: Transform pos: 55.508503,-22.813784 parent: 2 - - uid: 17463 + - uid: 17443 components: - type: Transform pos: 55.727253,-22.407534 parent: 2 - - uid: 17464 + - uid: 17444 components: - type: Transform pos: 36.19766,38.290535 parent: 2 - proto: DrinkWineBottleFull entities: - - uid: 17465 + - uid: 17445 components: - type: Transform pos: -11.51872,46.860718 parent: 2 - proto: DrinkWineGlass entities: - - uid: 17466 + - uid: 17446 components: - type: Transform pos: -11.298665,46.57078 parent: 2 - - uid: 17467 + - uid: 17447 components: - type: Transform pos: -11.75179,46.60203 parent: 2 - proto: Dropper entities: - - uid: 17468 + - uid: 17448 components: - type: Transform pos: 38.436283,-74.467354 parent: 2 - type: Physics canCollide: False - - uid: 17469 - components: - - type: Transform - pos: 6.46435,-38.51832 - parent: 2 - - type: Physics - canCollide: False - - uid: 17470 + - uid: 17450 components: - type: Transform rot: 6.283185307179586 rad pos: -25.52646,-25.611034 parent: 2 - - uid: 17471 + - uid: 17451 components: - type: Transform pos: 2.5200934,-29.55756 parent: 2 - type: Physics canCollide: False - - uid: 17472 + - uid: 17452 components: - type: Transform pos: 8.500152,-30.578497 parent: 2 - - uid: 17473 + - uid: 17453 components: - type: Transform pos: 20.453255,-40.408833 parent: 2 - type: Physics canCollide: False - - uid: 17474 + - uid: 17454 components: - type: Transform pos: 41.969006,-73.53427 parent: 2 - - uid: 17475 + - uid: 17455 components: - type: Transform pos: 26.487522,-68.55446 parent: 2 - type: Physics canCollide: False - - uid: 17476 + - uid: 17456 components: - type: Transform pos: -8.757672,-52.582615 parent: 2 - - uid: 17477 + - uid: 17457 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.822828,45.589245 parent: 2 - - uid: 17478 + - uid: 17458 components: - type: Transform rot: -1.5707963267948966 rad @@ -134791,14 +134812,14 @@ entities: parent: 2 - proto: Eggshells entities: - - uid: 17479 + - uid: 17459 components: - type: MetaData desc: Крашенная скорлупа. - type: Transform pos: 56.727657,-38.74004 parent: 2 - - uid: 17480 + - uid: 17460 components: - type: MetaData desc: Крашенная скорлупа. @@ -134808,175 +134829,175 @@ entities: parent: 2 - proto: EggSpider entities: - - uid: 17481 + - uid: 17461 components: - type: Transform rot: -1.5707953085339508 rad pos: -69.45483,-35.626926 parent: 2 - - uid: 17482 + - uid: 17462 components: - type: Transform rot: -1.5707953085339508 rad pos: -69.26733,-35.845673 parent: 2 - - uid: 17483 + - uid: 17463 components: - type: Transform rot: -1.5707953085339508 rad pos: -69.61108,-35.783176 parent: 2 - - uid: 17484 + - uid: 17464 components: - type: Transform rot: -1.5707953085339508 rad pos: -65.37671,-34.533176 parent: 2 - - uid: 17485 + - uid: 17465 components: - type: Transform rot: -1.5707953085339508 rad pos: -65.4392,-36.7988 parent: 2 - - uid: 17486 + - uid: 17466 components: - type: Transform rot: -1.5707953085339508 rad pos: -65.59546,-34.361298 parent: 2 - - uid: 17487 + - uid: 17467 components: - type: Transform rot: -1.5707953085339508 rad pos: -65.298584,-34.2363 parent: 2 - - uid: 41031 + - uid: 17468 components: - type: Transform pos: -66.39432,-28.52243 parent: 2 - - uid: 41032 + - uid: 17469 components: - type: Transform pos: -66.62869,-28.663057 parent: 2 - - uid: 41033 + - uid: 17470 components: - type: Transform pos: -66.31619,-28.100555 parent: 2 - - uid: 41036 + - uid: 17471 components: - type: Transform pos: -71.62537,-22.571806 parent: 2 - - uid: 41037 + - uid: 17472 components: - type: Transform pos: -71.45349,-22.431181 parent: 2 - - uid: 41038 + - uid: 17473 components: - type: Transform pos: -71.67224,-22.306181 parent: 2 - - uid: 41043 + - uid: 17474 components: - type: Transform pos: -74.6196,-30.508291 parent: 2 - - uid: 41044 + - uid: 17475 components: - type: Transform pos: -74.52585,-30.211416 parent: 2 - - uid: 41045 + - uid: 17476 components: - type: Transform pos: -74.33835,-30.523918 parent: 2 - proto: ElectricGuitarInstrument entities: - - uid: 17488 + - uid: 17477 components: - type: Transform pos: -8.546601,28.76847 parent: 2 - proto: EmergencyLight entities: - - uid: 17489 + - uid: 17478 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-3.5 parent: 2 - - uid: 17490 + - uid: 17479 components: - type: Transform pos: 13.5,-12.5 parent: 2 - - uid: 17491 + - uid: 17480 components: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 17492 + - uid: 17481 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-44.5 parent: 2 - - uid: 17493 + - uid: 17482 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 17494 + - uid: 17483 components: - type: Transform pos: -38.5,-69.5 parent: 2 - - uid: 17495 + - uid: 17484 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,80.5 parent: 2 - - uid: 17496 + - uid: 17485 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,36.5 parent: 2 - - uid: 17497 + - uid: 17486 components: - type: Transform pos: -1.5,65.5 parent: 2 - - uid: 17498 + - uid: 17487 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,80.5 parent: 2 - - uid: 17499 + - uid: 17488 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-40.5 parent: 2 - - uid: 17500 + - uid: 17489 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,35.5 parent: 2 - - uid: 17501 + - uid: 17490 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 17502 + - uid: 17491 components: - type: Transform rot: 3.141592653589793 rad @@ -134985,7 +135006,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17503 + - uid: 17492 components: - type: Transform rot: -1.5707963267948966 rad @@ -134994,7 +135015,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17504 + - uid: 17493 components: - type: Transform pos: -8.5,-63.5 @@ -135002,7 +135023,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17505 + - uid: 17494 components: - type: Transform rot: 1.5707963267948966 rad @@ -135011,7 +135032,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17506 + - uid: 17495 components: - type: Transform rot: 1.5707963267948966 rad @@ -135020,7 +135041,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17507 + - uid: 17496 components: - type: Transform rot: 3.141592653589793 rad @@ -135029,7 +135050,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17508 + - uid: 17497 components: - type: Transform rot: 3.141592653589793 rad @@ -135038,7 +135059,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17509 + - uid: 17498 components: - type: Transform rot: 3.141592653589793 rad @@ -135047,7 +135068,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17510 + - uid: 17499 components: - type: Transform rot: 1.5707963267948966 rad @@ -135056,7 +135077,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17511 + - uid: 17500 components: - type: Transform rot: 3.141592653589793 rad @@ -135065,7 +135086,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17512 + - uid: 17501 components: - type: Transform rot: -1.5707963267948966 rad @@ -135074,7 +135095,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17513 + - uid: 17502 components: - type: Transform rot: 1.5707963267948966 rad @@ -135083,7 +135104,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17514 + - uid: 17503 components: - type: Transform pos: -64.5,52.5 @@ -135091,7 +135112,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17515 + - uid: 17504 components: - type: Transform rot: 3.141592653589793 rad @@ -135100,7 +135121,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17516 + - uid: 17505 components: - type: Transform rot: 1.5707963267948966 rad @@ -135109,7 +135130,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17517 + - uid: 17506 components: - type: Transform pos: -12.5,34.5 @@ -135117,13 +135138,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17518 + - uid: 17507 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-46.5 parent: 2 - - uid: 17519 + - uid: 17508 components: - type: Transform rot: 1.5707963267948966 rad @@ -135132,7 +135153,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17520 + - uid: 17509 components: - type: Transform rot: 3.141592653589793 rad @@ -135141,7 +135162,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17521 + - uid: 17510 components: - type: Transform pos: 12.5,54.5 @@ -135149,7 +135170,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17522 + - uid: 17511 components: - type: Transform rot: 1.5707963267948966 rad @@ -135158,7 +135179,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17523 + - uid: 17512 components: - type: Transform rot: 1.5707963267948966 rad @@ -135167,7 +135188,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17524 + - uid: 17513 components: - type: Transform pos: 5.5,45.5 @@ -135175,7 +135196,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17525 + - uid: 17514 components: - type: Transform pos: 46.5,24.5 @@ -135183,13 +135204,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17526 + - uid: 17515 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-59.5 parent: 2 - - uid: 17527 + - uid: 17516 components: - type: Transform pos: 10.5,16.5 @@ -135197,7 +135218,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17528 + - uid: 17517 components: - type: Transform rot: -1.5707963267948966 rad @@ -135206,7 +135227,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17529 + - uid: 17518 components: - type: Transform pos: 26.5,38.5 @@ -135214,7 +135235,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17530 + - uid: 17519 components: - type: Transform pos: 51.5,9.5 @@ -135222,7 +135243,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17531 + - uid: 17520 components: - type: Transform pos: 12.5,2.5 @@ -135230,7 +135251,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17532 + - uid: 17521 components: - type: Transform rot: 3.141592653589793 rad @@ -135239,7 +135260,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17533 + - uid: 17522 components: - type: Transform rot: -1.5707963267948966 rad @@ -135248,7 +135269,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17534 + - uid: 17523 components: - type: Transform pos: 51.5,1.5 @@ -135256,13 +135277,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17535 + - uid: 17524 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,9.5 parent: 2 - - uid: 17536 + - uid: 17525 components: - type: Transform pos: -11.5,16.5 @@ -135270,13 +135291,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17537 + - uid: 17526 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-40.5 parent: 2 - - uid: 17538 + - uid: 17527 components: - type: Transform pos: 7.5,-48.5 @@ -135284,7 +135305,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17539 + - uid: 17528 components: - type: Transform pos: 39.5,23.5 @@ -135292,7 +135313,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17540 + - uid: 17529 components: - type: Transform rot: 1.5707963267948966 rad @@ -135301,7 +135322,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17541 + - uid: 17530 components: - type: Transform pos: 6.5,31.5 @@ -135309,7 +135330,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17542 + - uid: 17531 components: - type: Transform pos: 69.5,-15.5 @@ -135317,13 +135338,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17543 + - uid: 17532 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-41.5 parent: 2 - - uid: 17544 + - uid: 17533 components: - type: Transform rot: 1.5707963267948966 rad @@ -135332,13 +135353,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17545 + - uid: 17534 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,14.5 parent: 2 - - uid: 17546 + - uid: 17535 components: - type: Transform rot: -1.5707963267948966 rad @@ -135347,7 +135368,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17547 + - uid: 17536 components: - type: Transform rot: -1.5707963267948966 rad @@ -135356,7 +135377,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17548 + - uid: 17537 components: - type: Transform rot: 1.5707963267948966 rad @@ -135365,12 +135386,12 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17549 + - uid: 17538 components: - type: Transform pos: -33.5,43.5 parent: 2 - - uid: 17550 + - uid: 17539 components: - type: Transform pos: 37.5,12.5 @@ -135378,7 +135399,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17551 + - uid: 17540 components: - type: Transform rot: -1.5707963267948966 rad @@ -135387,7 +135408,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17552 + - uid: 17541 components: - type: Transform pos: 15.5,54.5 @@ -135395,7 +135416,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17553 + - uid: 17542 components: - type: Transform pos: -2.5,18.5 @@ -135403,7 +135424,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17554 + - uid: 17543 components: - type: Transform pos: -49.5,34.5 @@ -135411,7 +135432,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17555 + - uid: 17544 components: - type: Transform rot: 1.5707963267948966 rad @@ -135420,7 +135441,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17556 + - uid: 17545 components: - type: Transform rot: 3.141592653589793 rad @@ -135429,7 +135450,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17557 + - uid: 17546 components: - type: Transform pos: -56.5,38.5 @@ -135437,7 +135458,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17558 + - uid: 17547 components: - type: Transform rot: -1.5707963267948966 rad @@ -135446,7 +135467,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17559 + - uid: 17548 components: - type: Transform rot: -1.5707963267948966 rad @@ -135455,7 +135476,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17560 + - uid: 17549 components: - type: Transform pos: 80.5,-18.5 @@ -135463,7 +135484,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17561 + - uid: 17550 components: - type: Transform rot: -1.5707963267948966 rad @@ -135472,7 +135493,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17562 + - uid: 17551 components: - type: Transform rot: -1.5707963267948966 rad @@ -135481,7 +135502,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17563 + - uid: 17552 components: - type: Transform pos: 35.5,-6.5 @@ -135489,7 +135510,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17564 + - uid: 17553 components: - type: Transform rot: 3.141592653589793 rad @@ -135498,7 +135519,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17565 + - uid: 17554 components: - type: Transform rot: -1.5707963267948966 rad @@ -135507,7 +135528,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17566 + - uid: 17555 components: - type: Transform pos: -5.5,-57.5 @@ -135515,7 +135536,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17567 + - uid: 17556 components: - type: Transform pos: 63.5,1.5 @@ -135523,7 +135544,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17568 + - uid: 17557 components: - type: Transform rot: 1.5707963267948966 rad @@ -135532,19 +135553,19 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17569 + - uid: 17558 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,93.5 parent: 2 - - uid: 17570 + - uid: 17559 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-52.5 parent: 2 - - uid: 17571 + - uid: 17560 components: - type: Transform pos: -2.5,-57.5 @@ -135552,7 +135573,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17572 + - uid: 17561 components: - type: Transform rot: -1.5707963267948966 rad @@ -135561,13 +135582,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17573 + - uid: 17562 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,14.5 parent: 2 - - uid: 17574 + - uid: 17563 components: - type: Transform pos: -5.5,34.5 @@ -135575,7 +135596,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17575 + - uid: 17564 components: - type: Transform pos: -49.5,2.5 @@ -135583,7 +135604,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17576 + - uid: 17565 components: - type: Transform pos: 14.5,46.5 @@ -135591,7 +135612,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17577 + - uid: 17566 components: - type: Transform pos: 21.5,10.5 @@ -135599,7 +135620,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17578 + - uid: 17567 components: - type: Transform rot: 3.141592653589793 rad @@ -135608,7 +135629,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17579 + - uid: 17568 components: - type: Transform rot: 1.5707963267948966 rad @@ -135617,7 +135638,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17580 + - uid: 17569 components: - type: Transform rot: 3.141592653589793 rad @@ -135626,7 +135647,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17581 + - uid: 17570 components: - type: Transform pos: -12.5,11.5 @@ -135634,7 +135655,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17582 + - uid: 17571 components: - type: Transform pos: -12.5,-7.5 @@ -135642,7 +135663,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17583 + - uid: 17572 components: - type: Transform rot: 3.141592653589793 rad @@ -135651,7 +135672,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17584 + - uid: 17573 components: - type: Transform rot: 3.141592653589793 rad @@ -135660,7 +135681,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17585 + - uid: 17574 components: - type: Transform rot: 3.141592653589793 rad @@ -135669,7 +135690,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17586 + - uid: 17575 components: - type: Transform pos: 6.5,90.5 @@ -135677,7 +135698,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17587 + - uid: 17576 components: - type: Transform rot: -1.5707963267948966 rad @@ -135686,7 +135707,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17588 + - uid: 17577 components: - type: Transform pos: -16.5,24.5 @@ -135694,7 +135715,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17589 + - uid: 17578 components: - type: Transform rot: -1.5707963267948966 rad @@ -135703,7 +135724,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17590 + - uid: 17579 components: - type: Transform rot: -1.5707963267948966 rad @@ -135712,7 +135733,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17591 + - uid: 17580 components: - type: Transform pos: 3.5,-42.5 @@ -135720,7 +135741,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17592 + - uid: 17581 components: - type: Transform rot: 1.5707963267948966 rad @@ -135729,7 +135750,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17593 + - uid: 17582 components: - type: Transform rot: -1.5707963267948966 rad @@ -135738,7 +135759,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17594 + - uid: 17583 components: - type: Transform rot: 3.141592653589793 rad @@ -135747,7 +135768,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17595 + - uid: 17584 components: - type: Transform rot: 1.5707963267948966 rad @@ -135756,7 +135777,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17596 + - uid: 17585 components: - type: Transform pos: -72.5,16.5 @@ -135764,7 +135785,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17597 + - uid: 17586 components: - type: Transform rot: -1.5707963267948966 rad @@ -135773,7 +135794,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17598 + - uid: 17587 components: - type: Transform pos: -22.5,-49.5 @@ -135781,7 +135802,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17599 + - uid: 17588 components: - type: Transform rot: 3.141592653589793 rad @@ -135790,7 +135811,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17600 + - uid: 17589 components: - type: Transform pos: 23.5,54.5 @@ -135798,13 +135819,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17601 + - uid: 17590 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,52.5 parent: 2 - - uid: 17602 + - uid: 17591 components: - type: Transform pos: -55.5,3.5 @@ -135812,7 +135833,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17603 + - uid: 17592 components: - type: Transform rot: 1.5707963267948966 rad @@ -135821,7 +135842,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17604 + - uid: 17593 components: - type: Transform rot: 3.141592653589793 rad @@ -135830,7 +135851,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17605 + - uid: 17594 components: - type: Transform pos: -25.5,2.5 @@ -135838,7 +135859,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17606 + - uid: 17595 components: - type: Transform pos: -28.5,21.5 @@ -135846,7 +135867,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17607 + - uid: 17596 components: - type: Transform pos: -22.5,23.5 @@ -135854,7 +135875,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17608 + - uid: 17597 components: - type: Transform rot: 3.141592653589793 rad @@ -135863,7 +135884,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17609 + - uid: 17598 components: - type: Transform rot: 3.141592653589793 rad @@ -135872,7 +135893,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17610 + - uid: 17599 components: - type: Transform pos: 11.5,46.5 @@ -135880,7 +135901,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17611 + - uid: 17600 components: - type: Transform rot: -1.5707963267948966 rad @@ -135889,7 +135910,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17612 + - uid: 17601 components: - type: Transform rot: 1.5707963267948966 rad @@ -135898,7 +135919,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17613 + - uid: 17602 components: - type: Transform pos: 30.5,-21.5 @@ -135906,13 +135927,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17614 + - uid: 17603 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,15.5 parent: 2 - - uid: 17615 + - uid: 17604 components: - type: Transform pos: 73.5,-15.5 @@ -135920,7 +135941,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17616 + - uid: 17605 components: - type: Transform rot: 1.5707963267948966 rad @@ -135929,7 +135950,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17617 + - uid: 17606 components: - type: Transform rot: 3.141592653589793 rad @@ -135938,7 +135959,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17618 + - uid: 17607 components: - type: Transform pos: 31.5,12.5 @@ -135946,7 +135967,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17619 + - uid: 17608 components: - type: Transform pos: 1.5,18.5 @@ -135954,7 +135975,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17620 + - uid: 17609 components: - type: Transform pos: -59.5,58.5 @@ -135962,7 +135983,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17621 + - uid: 17610 components: - type: Transform rot: -1.5707963267948966 rad @@ -135971,7 +135992,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17622 + - uid: 17611 components: - type: Transform pos: -34.5,63.5 @@ -135979,7 +136000,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17623 + - uid: 17612 components: - type: Transform rot: 1.5707963267948966 rad @@ -135988,7 +136009,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17624 + - uid: 17613 components: - type: Transform rot: 1.5707963267948966 rad @@ -135997,7 +136018,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17625 + - uid: 17614 components: - type: Transform rot: -1.5707963267948966 rad @@ -136006,7 +136027,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17626 + - uid: 17615 components: - type: Transform rot: 1.5707963267948966 rad @@ -136015,7 +136036,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17627 + - uid: 17616 components: - type: Transform pos: -0.5,-13.5 @@ -136023,7 +136044,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17628 + - uid: 17617 components: - type: Transform pos: 6.5,-18.5 @@ -136031,7 +136052,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17629 + - uid: 17618 components: - type: Transform pos: -72.5,12.5 @@ -136039,7 +136060,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17630 + - uid: 17619 components: - type: Transform rot: 1.5707963267948966 rad @@ -136048,7 +136069,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17631 + - uid: 17620 components: - type: Transform pos: -63.5,18.5 @@ -136056,7 +136077,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17632 + - uid: 17621 components: - type: Transform pos: -57.5,20.5 @@ -136064,7 +136085,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17633 + - uid: 17622 components: - type: Transform rot: 3.141592653589793 rad @@ -136073,13 +136094,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17634 + - uid: 17623 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,4.5 parent: 2 - - uid: 17635 + - uid: 17624 components: - type: Transform rot: -1.5707963267948966 rad @@ -136088,7 +136109,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17636 + - uid: 17625 components: - type: Transform pos: -46.5,-5.5 @@ -136096,7 +136117,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17637 + - uid: 17626 components: - type: Transform pos: -30.5,-25.5 @@ -136104,7 +136125,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17638 + - uid: 17627 components: - type: Transform pos: -39.5,-26.5 @@ -136112,7 +136133,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17639 + - uid: 17628 components: - type: Transform pos: -47.5,-24.5 @@ -136120,7 +136141,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17640 + - uid: 17629 components: - type: Transform rot: 1.5707963267948966 rad @@ -136129,7 +136150,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17641 + - uid: 17630 components: - type: Transform pos: -4.5,46.5 @@ -136137,7 +136158,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17642 + - uid: 17631 components: - type: Transform pos: 7.5,-29.5 @@ -136145,7 +136166,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17643 + - uid: 17632 components: - type: Transform rot: -1.5707963267948966 rad @@ -136154,7 +136175,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17644 + - uid: 17633 components: - type: Transform rot: 1.5707963267948966 rad @@ -136163,24 +136184,24 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17645 + - uid: 17634 components: - type: Transform pos: -5.5,28.5 parent: 2 - - uid: 17646 + - uid: 17635 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-47.5 parent: 2 - - uid: 17647 + - uid: 17636 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-32.5 parent: 2 - - uid: 17648 + - uid: 17637 components: - type: Transform rot: 1.5707963267948966 rad @@ -136189,7 +136210,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17649 + - uid: 17638 components: - type: Transform rot: 1.5707963267948966 rad @@ -136198,7 +136219,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17650 + - uid: 17639 components: - type: Transform rot: 1.5707963267948966 rad @@ -136207,7 +136228,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17651 + - uid: 17640 components: - type: Transform rot: 3.141592653589793 rad @@ -136216,7 +136237,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17652 + - uid: 17641 components: - type: Transform pos: -30.5,55.5 @@ -136224,13 +136245,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17653 + - uid: 17642 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,49.5 parent: 2 - - uid: 17654 + - uid: 17643 components: - type: Transform pos: -66.5,-5.5 @@ -136238,7 +136259,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17655 + - uid: 17644 components: - type: Transform pos: -7.5,-18.5 @@ -136246,7 +136267,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17656 + - uid: 17645 components: - type: Transform rot: 1.5707963267948966 rad @@ -136255,7 +136276,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17657 + - uid: 17646 components: - type: Transform rot: 3.141592653589793 rad @@ -136264,7 +136285,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17658 + - uid: 17647 components: - type: Transform pos: -1.5,-7.5 @@ -136272,7 +136293,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17659 + - uid: 17648 components: - type: Transform pos: 9.5,-7.5 @@ -136280,7 +136301,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17660 + - uid: 17649 components: - type: Transform rot: -1.5707963267948966 rad @@ -136289,41 +136310,41 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17661 + - uid: 17650 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,67.5 parent: 2 - - uid: 17662 + - uid: 17651 components: - type: Transform pos: -8.5,69.5 parent: 2 - - uid: 17663 + - uid: 17652 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,7.5 parent: 2 - - uid: 17664 + - uid: 17653 components: - type: Transform pos: 27.5,2.5 parent: 2 - - uid: 17665 + - uid: 17654 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,80.5 parent: 2 - - uid: 17666 + - uid: 17655 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,67.5 parent: 2 - - uid: 17668 + - uid: 17656 components: - type: Transform pos: 25.5,-24.5 @@ -136331,24 +136352,24 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17669 + - uid: 17657 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 - - uid: 17670 + - uid: 17658 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,53.5 parent: 2 - - uid: 17671 + - uid: 17659 components: - type: Transform pos: -12.5,46.5 parent: 2 - - uid: 17672 + - uid: 17660 components: - type: Transform rot: -1.5707963267948966 rad @@ -136357,18 +136378,18 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17673 + - uid: 17661 components: - type: Transform pos: -57.5,54.5 parent: 2 - - uid: 17674 + - uid: 17662 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-3.5 parent: 2 - - uid: 17675 + - uid: 17663 components: - type: Transform pos: 12.5,24.5 @@ -136376,40 +136397,40 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17676 + - uid: 17664 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-37.5 parent: 2 - - uid: 17677 + - uid: 17665 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-40.5 parent: 2 - - uid: 17678 + - uid: 17666 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-8.5 parent: 2 - - uid: 17679 + - uid: 17667 components: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 17680 + - uid: 17668 components: - type: Transform pos: -53.5,51.5 parent: 2 - - uid: 17681 + - uid: 17669 components: - type: Transform pos: -17.5,-55.5 parent: 2 - - uid: 17682 + - uid: 17670 components: - type: Transform rot: 3.141592653589793 rad @@ -136418,7 +136439,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17683 + - uid: 17671 components: - type: Transform rot: 1.5707963267948966 rad @@ -136427,13 +136448,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17684 + - uid: 17672 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 2 - - uid: 17685 + - uid: 17673 components: - type: Transform rot: 1.5707963267948966 rad @@ -136442,7 +136463,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17686 + - uid: 17674 components: - type: Transform rot: -1.5707963267948966 rad @@ -136451,7 +136472,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17687 + - uid: 17675 components: - type: Transform pos: -25.5,39.5 @@ -136459,7 +136480,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17688 + - uid: 17676 components: - type: Transform rot: -1.5707963267948966 rad @@ -136468,7 +136489,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17689 + - uid: 17677 components: - type: Transform rot: 1.5707963267948966 rad @@ -136477,7 +136498,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17690 + - uid: 17678 components: - type: Transform rot: 1.5707963267948966 rad @@ -136486,13 +136507,13 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17691 + - uid: 17679 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-40.5 parent: 2 - - uid: 17692 + - uid: 17680 components: - type: Transform pos: -1.5,9.5 @@ -136500,7 +136521,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17693 + - uid: 17681 components: - type: Transform rot: 3.141592653589793 rad @@ -136509,7 +136530,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17694 + - uid: 17682 components: - type: Transform pos: -31.5,6.5 @@ -136517,7 +136538,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17696 + - uid: 17683 components: - type: Transform pos: 31.5,-33.5 @@ -136525,7 +136546,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17697 + - uid: 17684 components: - type: Transform rot: 3.141592653589793 rad @@ -136534,7 +136555,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17698 + - uid: 17685 components: - type: Transform rot: 1.5707963267948966 rad @@ -136543,7 +136564,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17699 + - uid: 17686 components: - type: Transform rot: 1.5707963267948966 rad @@ -136552,7 +136573,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17700 + - uid: 17687 components: - type: Transform rot: 3.141592653589793 rad @@ -136561,7 +136582,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17701 + - uid: 17688 components: - type: Transform rot: 1.5707963267948966 rad @@ -136570,7 +136591,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17702 + - uid: 17689 components: - type: Transform rot: -1.5707963267948966 rad @@ -136579,7 +136600,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17703 + - uid: 17690 components: - type: Transform rot: 1.5707963267948966 rad @@ -136588,7 +136609,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17704 + - uid: 17691 components: - type: Transform rot: 1.5707963267948966 rad @@ -136597,7 +136618,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17705 + - uid: 17692 components: - type: Transform pos: 30.5,-60.5 @@ -136605,7 +136626,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17706 + - uid: 17693 components: - type: Transform rot: 1.5707963267948966 rad @@ -136614,7 +136635,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17707 + - uid: 17694 components: - type: Transform rot: -1.5707963267948966 rad @@ -136623,7 +136644,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17708 + - uid: 17695 components: - type: Transform rot: 1.5707963267948966 rad @@ -136632,7 +136653,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17709 + - uid: 17696 components: - type: Transform rot: 1.5707963267948966 rad @@ -136641,7 +136662,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17710 + - uid: 17697 components: - type: Transform pos: 27.5,-65.5 @@ -136649,18 +136670,18 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17711 + - uid: 17698 components: - type: Transform pos: -27.5,-49.5 parent: 2 - - uid: 17712 + - uid: 17699 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,8.5 parent: 2 - - uid: 17713 + - uid: 17700 components: - type: Transform pos: -67.5,-9.5 @@ -136668,7 +136689,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17714 + - uid: 17701 components: - type: Transform rot: 3.141592653589793 rad @@ -136677,7 +136698,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17715 + - uid: 17702 components: - type: Transform pos: -68.5,2.5 @@ -136685,7 +136706,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17716 + - uid: 17703 components: - type: Transform pos: -77.5,-5.5 @@ -136693,7 +136714,7 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17717 + - uid: 17704 components: - type: Transform rot: 3.141592653589793 rad @@ -136702,366 +136723,366 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 17719 + - uid: 17705 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,21.5 parent: 2 - - uid: 17720 + - uid: 17706 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,90.5 parent: 2 - - uid: 17721 + - uid: 17707 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,90.5 parent: 2 - - uid: 17722 + - uid: 17708 components: - type: Transform pos: -47.5,15.5 parent: 2 - - uid: 17723 + - uid: 17709 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 17724 + - uid: 17710 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,59.5 parent: 2 - - uid: 17725 + - uid: 17711 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,22.5 parent: 2 - - uid: 17726 + - uid: 17712 components: - type: Transform pos: -63.5,38.5 parent: 2 - - uid: 17727 + - uid: 17713 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,40.5 parent: 2 - - uid: 17728 + - uid: 17714 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,27.5 parent: 2 - - uid: 17729 + - uid: 17715 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,22.5 parent: 2 - - uid: 17730 + - uid: 17716 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-41.5 parent: 2 - - uid: 17731 + - uid: 17717 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-48.5 parent: 2 - - uid: 17734 + - uid: 17718 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-25.5 parent: 2 - - uid: 17735 + - uid: 17719 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-34.5 parent: 2 - - uid: 17736 + - uid: 17720 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 - - uid: 17737 + - uid: 17721 components: - type: Transform pos: -12.5,-11.5 parent: 2 - - uid: 17738 + - uid: 17722 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-64.5 parent: 2 - - uid: 17739 + - uid: 17723 components: - type: Transform pos: 53.5,32.5 parent: 2 - - uid: 38525 + - uid: 38352 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 - parent: 38484 + parent: 38311 - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 39158 + - uid: 38985 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-3.5 - parent: 38584 - - uid: 39159 + parent: 38411 + - uid: 38986 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 - parent: 38584 - - uid: 39160 + parent: 38411 + - uid: 38987 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,2.5 - parent: 38584 - - uid: 39161 + parent: 38411 + - uid: 38988 components: - type: Transform pos: -2.5,4.5 - parent: 38584 - - uid: 39162 + parent: 38411 + - uid: 38989 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,7.5 - parent: 38584 - - uid: 39163 + parent: 38411 + - uid: 38990 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,6.5 - parent: 38584 - - uid: 39164 + parent: 38411 + - uid: 38991 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,2.5 - parent: 38584 - - uid: 39165 + parent: 38411 + - uid: 38992 components: - type: Transform pos: 6.5,-3.5 - parent: 38584 - - uid: 39166 + parent: 38411 + - uid: 38993 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-5.5 - parent: 38584 - - uid: 39167 + parent: 38411 + - uid: 38994 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-2.5 - parent: 38584 - - uid: 39168 + parent: 38411 + - uid: 38995 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-5.5 - parent: 38584 - - uid: 39169 + parent: 38411 + - uid: 38996 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 - parent: 38584 - - uid: 39170 + parent: 38411 + - uid: 38997 components: - type: Transform pos: 1.5,-7.5 - parent: 38584 - - uid: 39171 + parent: 38411 + - uid: 38998 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-1.5 - parent: 38584 - - uid: 39172 + parent: 38411 + - uid: 38999 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-3.5 - parent: 38584 - - uid: 39173 + parent: 38411 + - uid: 39000 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,1.5 - parent: 38584 - - uid: 39174 + parent: 38411 + - uid: 39001 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,1.5 - parent: 38584 - - uid: 39175 + parent: 38411 + - uid: 39002 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,1.5 - parent: 38584 - - uid: 39176 + parent: 38411 + - uid: 39003 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,9.5 - parent: 38584 - - uid: 39177 + parent: 38411 + - uid: 39004 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,9.5 - parent: 38584 - - uid: 39178 + parent: 38411 + - uid: 39005 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,9.5 - parent: 38584 - - uid: 39179 + parent: 38411 + - uid: 39006 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,12.5 - parent: 38584 - - uid: 39180 + parent: 38411 + - uid: 39007 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,8.5 - parent: 38584 - - uid: 39181 + parent: 38411 + - uid: 39008 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,8.5 - parent: 38584 + parent: 38411 - proto: EmergencyMedipen entities: - - uid: 17740 + - uid: 17724 components: - type: Transform pos: 20.768291,-24.31956 parent: 2 - - uid: 17741 + - uid: 17725 components: - type: Transform pos: 26.060457,-24.311409 parent: 2 - proto: EmergencyRollerBed entities: - - uid: 17742 + - uid: 17726 components: - type: Transform pos: 26.738546,-30.810993 parent: 2 - - uid: 17743 + - uid: 17727 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 17744 + - uid: 17728 components: - type: Transform pos: 26.738546,-31.498493 parent: 2 - - uid: 17745 + - uid: 17729 components: - type: Transform pos: 30.484577,-51.35612 parent: 2 - type: Physics canCollide: False - - uid: 17746 + - uid: 17730 components: - type: Transform pos: 30.484577,-50.41862 parent: 2 - type: Physics canCollide: False - - uid: 17747 + - uid: 17731 components: - type: Transform pos: 7.4926,-27.337849 parent: 2 - type: Physics canCollide: False - - uid: 17748 + - uid: 17732 components: - type: Transform pos: 8.52385,-27.337849 parent: 2 - type: Physics canCollide: False - - uid: 17749 + - uid: 17733 components: - type: Transform pos: 26.738546,-30.185993 parent: 2 - - uid: 17750 + - uid: 17734 components: - type: Transform pos: 9.5551,-27.337849 parent: 2 - type: Physics canCollide: False - - uid: 17751 + - uid: 17735 components: - type: Transform pos: 21.514267,-50.394043 parent: 2 - proto: EmergencyRollerBedSpawnFolded entities: - - uid: 17752 + - uid: 17736 components: - type: Transform pos: 7.5,64.5 parent: 2 - proto: Emitter entities: - - uid: 17753 + - uid: 17737 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-12.5 parent: 2 - - uid: 17754 + - uid: 17738 components: - type: Transform pos: -94.5,-2.5 parent: 2 - - uid: 17755 + - uid: 17739 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-11.5 parent: 2 - - uid: 17756 + - uid: 17740 components: - type: Transform rot: -1.5707963267948966 rad @@ -137069,73 +137090,73 @@ entities: parent: 2 - proto: EncryptionKeyCargo entities: - - uid: 17758 + - uid: 17742 components: - type: Transform - parent: 17757 + parent: 17741 - type: Physics canCollide: False - proto: EncryptionKeyCommand entities: - - uid: 17760 + - uid: 17744 components: - type: Transform - parent: 17759 + parent: 17743 - type: Physics canCollide: False - proto: EncryptionKeyCommon entities: - - uid: 17762 + - uid: 17746 components: - type: MetaData name: ключ шифрования общей частоты - type: Transform - parent: 17761 + parent: 17745 - type: Physics canCollide: False - proto: EncryptionKeyEngineering entities: - - uid: 17764 + - uid: 17748 components: - type: Transform - parent: 17763 + parent: 17747 - type: Physics canCollide: False - proto: EncryptionKeyMedical entities: - - uid: 17766 + - uid: 17750 components: - type: Transform - parent: 17765 + parent: 17749 - type: Physics canCollide: False - proto: EncryptionKeyScience entities: - - uid: 17768 + - uid: 17752 components: - type: Transform - parent: 17767 + parent: 17751 - type: Physics canCollide: False - proto: EncryptionKeySecurity entities: - - uid: 17770 + - uid: 17754 components: - type: Transform - parent: 17769 + parent: 17753 - type: Physics canCollide: False - proto: EncryptionKeyService entities: - - uid: 17772 + - uid: 17756 components: - type: Transform - parent: 17771 + parent: 17755 - type: Physics canCollide: False - proto: EncryptionKeySyndie entities: - - uid: 17773 + - uid: 17757 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -137143,7 +137164,7 @@ entities: parent: 2 - proto: EnergyDagger entities: - - uid: 17774 + - uid: 17758 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -137151,572 +137172,572 @@ entities: parent: 2 - proto: EnergySword entities: - - uid: 39182 + - uid: 39009 components: - type: Transform pos: 7.6209354,-1.4473572 - parent: 38584 + parent: 38411 - proto: EpinephrineChemistryBottle entities: - - uid: 14824 + - uid: 14764 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17775 + - uid: 17759 components: - type: Transform pos: 70.10729,12.77659 parent: 2 - - uid: 17776 + - uid: 17760 components: - type: Transform pos: 25.701082,-24.420784 parent: 2 - - uid: 17777 + - uid: 17761 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.634602,-43.325718 parent: 2 - - uid: 17778 + - uid: 17762 components: - type: Transform pos: 20.674541,-24.47581 parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 17779 + - uid: 17763 components: - type: Transform pos: 51.5,10.5 parent: 2 - - uid: 17780 + - uid: 17764 components: - type: Transform pos: 56.5,14.5 parent: 2 - - uid: 17781 + - uid: 17765 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,25.5 parent: 2 - - uid: 17782 + - uid: 17766 components: - type: Transform pos: -7.5,26.5 parent: 2 - - uid: 17783 + - uid: 17767 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-59.5 parent: 2 - - uid: 17784 + - uid: 17768 components: - type: Transform pos: -35.5,-7.5 parent: 2 - - uid: 17785 + - uid: 17769 components: - type: Transform pos: 51.5,-1.5 parent: 2 - - uid: 17786 + - uid: 17770 components: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 17787 + - uid: 17771 components: - type: Transform pos: 59.5,-1.5 parent: 2 - - uid: 17788 + - uid: 17772 components: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 17789 + - uid: 17773 components: - type: Transform pos: -13.5,-3.5 parent: 2 - - uid: 17790 + - uid: 17774 components: - type: Transform pos: -20.5,-31.5 parent: 2 - - uid: 17791 + - uid: 17775 components: - type: Transform pos: -11.5,-36.5 parent: 2 - - uid: 17792 + - uid: 17776 components: - type: Transform pos: -24.5,-81.5 parent: 2 - - uid: 17793 + - uid: 17777 components: - type: Transform pos: -27.5,-78.5 parent: 2 - - uid: 17794 + - uid: 17778 components: - type: Transform pos: -35.5,-13.5 parent: 2 - - uid: 17795 + - uid: 17779 components: - type: Transform pos: 18.5,27.5 parent: 2 - - uid: 17796 + - uid: 17780 components: - type: Transform pos: -43.5,49.5 parent: 2 - - uid: 17797 + - uid: 17781 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-41.5 parent: 2 - - uid: 17798 + - uid: 17782 components: - type: Transform pos: -43.5,1.5 parent: 2 - - uid: 17799 + - uid: 17783 components: - type: Transform pos: -18.5,-48.5 parent: 2 - - uid: 17800 + - uid: 17784 components: - type: Transform pos: 15.5,-32.5 parent: 2 - - uid: 17802 + - uid: 17785 components: - type: Transform pos: -16.5,-15.5 parent: 2 - - uid: 17803 + - uid: 17786 components: - type: Transform pos: -11.5,-45.5 parent: 2 - - uid: 17804 + - uid: 17787 components: - type: Transform pos: 33.5,-63.5 parent: 2 - - uid: 17805 + - uid: 17788 components: - type: Transform pos: 22.5,73.5 parent: 2 - - uid: 17806 + - uid: 17789 components: - type: Transform pos: 21.5,64.5 parent: 2 - - uid: 17807 + - uid: 17790 components: - type: Transform pos: -43.5,-30.5 parent: 2 - - uid: 17808 + - uid: 17791 components: - type: Transform pos: 12.5,37.5 parent: 2 - - uid: 17809 + - uid: 17792 components: - type: Transform pos: -67.5,17.5 parent: 2 - - uid: 17810 + - uid: 17793 components: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 17811 + - uid: 17794 components: - type: Transform pos: -29.5,12.5 parent: 2 - - uid: 17812 + - uid: 17795 components: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 17813 + - uid: 17796 components: - type: Transform pos: 11.5,-10.5 parent: 2 - - uid: 17814 + - uid: 17797 components: - type: Transform pos: -55.5,-9.5 parent: 2 - - uid: 17815 + - uid: 17798 components: - type: Transform pos: 77.5,-20.5 parent: 2 - - uid: 17816 + - uid: 17799 components: - type: Transform pos: -14.5,53.5 parent: 2 - - uid: 17817 + - uid: 17800 components: - type: Transform pos: -22.5,53.5 parent: 2 - - uid: 17818 + - uid: 17801 components: - type: Transform pos: -42.5,-15.5 parent: 2 - - uid: 17819 + - uid: 17802 components: - type: Transform pos: 32.5,-70.5 parent: 2 - - uid: 17820 + - uid: 17803 components: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 17821 + - uid: 17804 components: - type: Transform pos: -7.5,-47.5 parent: 2 - - uid: 17822 + - uid: 17805 components: - type: Transform pos: 8.5,86.5 parent: 2 - - uid: 17823 + - uid: 17806 components: - type: Transform pos: -64.5,12.5 parent: 2 - - uid: 17824 + - uid: 17807 components: - type: Transform pos: 29.5,-38.5 parent: 2 - - uid: 17825 + - uid: 17808 components: - type: Transform pos: -30.5,-37.5 parent: 2 - - uid: 17826 + - uid: 17809 components: - type: Transform pos: -26.5,-17.5 parent: 2 - - uid: 17827 + - uid: 17810 components: - type: Transform pos: 39.5,-30.5 parent: 2 - - uid: 17828 + - uid: 17811 components: - type: Transform pos: 65.5,-19.5 parent: 2 - - uid: 17829 + - uid: 17812 components: - type: Transform pos: -32.5,17.5 parent: 2 - - uid: 17830 + - uid: 17813 components: - type: Transform pos: -21.5,-74.5 parent: 2 - - uid: 17831 + - uid: 17814 components: - type: Transform pos: -23.5,66.5 parent: 2 - - uid: 17832 + - uid: 17815 components: - type: Transform pos: -27.5,23.5 parent: 2 - - uid: 17833 + - uid: 17816 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-51.5 parent: 2 - - uid: 17834 + - uid: 17817 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 17835 + - uid: 17818 components: - type: Transform pos: 3.5,43.5 parent: 2 - - uid: 17836 + - uid: 17819 components: - type: Transform pos: 10.5,-47.5 parent: 2 - - uid: 17837 + - uid: 17820 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 17838 + - uid: 17821 components: - type: Transform pos: 8.5,50.5 parent: 2 - - uid: 17839 + - uid: 17822 components: - type: Transform pos: -11.5,-43.5 parent: 2 - - uid: 17840 + - uid: 17823 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-24.5 parent: 2 - - uid: 17841 + - uid: 17824 components: - type: Transform pos: 3.5,66.5 parent: 2 - - uid: 17842 + - uid: 17825 components: - type: Transform pos: -1.5,50.5 parent: 2 - - uid: 17843 + - uid: 17826 components: - type: Transform pos: -39.5,9.5 parent: 2 - - uid: 17844 + - uid: 17827 components: - type: Transform pos: -20.5,18.5 parent: 2 - - uid: 17845 + - uid: 17828 components: - type: Transform pos: 33.5,-29.5 parent: 2 - - uid: 17846 + - uid: 17829 components: - type: Transform pos: 32.5,2.5 parent: 2 - - uid: 17847 + - uid: 17830 components: - type: Transform pos: 32.5,3.5 parent: 2 - - uid: 17848 + - uid: 17831 components: - type: Transform pos: 42.5,-59.5 parent: 2 - - uid: 17849 + - uid: 17832 components: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 17850 + - uid: 17833 components: - type: Transform pos: -20.5,-22.5 parent: 2 - - uid: 17852 + - uid: 17834 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 17853 + - uid: 17835 components: - type: Transform pos: -5.5,-36.5 parent: 2 - - uid: 17854 + - uid: 17836 components: - type: Transform pos: -32.5,31.5 parent: 2 - - uid: 17855 + - uid: 17837 components: - type: Transform pos: -30.5,-46.5 parent: 2 - - uid: 17856 + - uid: 17838 components: - type: Transform pos: 32.5,-7.5 parent: 2 - - uid: 17857 + - uid: 17839 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 17858 + - uid: 17840 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 17859 + - uid: 17841 components: - type: Transform pos: 54.5,-23.5 parent: 2 - - uid: 17860 + - uid: 17842 components: - type: Transform pos: -35.5,3.5 parent: 2 - - uid: 17861 + - uid: 17843 components: - type: Transform pos: -30.5,56.5 parent: 2 - - uid: 17862 + - uid: 17844 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 17863 + - uid: 17845 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 17864 + - uid: 17846 components: - type: Transform pos: -28.5,40.5 parent: 2 - - uid: 17865 + - uid: 17847 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,3.5 parent: 2 - - uid: 39183 + - uid: 39010 components: - type: Transform pos: -20.5,-0.5 - parent: 38584 - - uid: 39184 + parent: 38411 + - uid: 39011 components: - type: Transform pos: 1.5,5.5 - parent: 38584 - - uid: 39185 + parent: 38411 + - uid: 39012 components: - type: Transform pos: -11.5,11.5 - parent: 38584 - - uid: 39186 + parent: 38411 + - uid: 39013 components: - type: Transform pos: 3.5,-0.5 - parent: 38584 + parent: 38411 - proto: FaxMachineBase entities: - - uid: 17866 + - uid: 17848 components: - type: Transform pos: 0.5,14.5 parent: 2 - type: FaxMachine name: Мостик - - uid: 17867 + - uid: 17849 components: - type: Transform pos: 51.5,7.5 parent: 2 - type: FaxMachine name: Офис вардена - - uid: 17868 + - uid: 17850 components: - type: Transform pos: 38.5,18.5 parent: 2 - type: FaxMachine name: Офис ГСБ - - uid: 17869 + - uid: 17851 components: - type: Transform pos: -21.5,-6.5 parent: 2 - type: FaxMachine name: Библиотека - - uid: 17870 + - uid: 17852 components: - type: Transform pos: -63.5,9.5 parent: 2 - type: FaxMachine name: Офис СИ - - uid: 17871 + - uid: 17853 components: - type: Transform pos: 32.5,8.5 parent: 2 - type: FaxMachine name: Офис детектива - - uid: 17872 + - uid: 17854 components: - type: Transform pos: 24.5,-46.5 parent: 2 - type: FaxMachine name: Офис ГВ - - uid: 17873 + - uid: 17855 components: - type: Transform pos: -16.5,-41.5 parent: 2 - type: FaxMachine name: Офис НР - - uid: 17874 + - uid: 17856 components: - type: Transform pos: 34.5,-1.5 parent: 2 - type: FaxMachine name: Офис АВД - - uid: 17875 + - uid: 17857 components: - type: Transform pos: 27.5,35.5 parent: 2 - type: FaxMachine name: Офис КМ - - uid: 17876 + - uid: 17858 components: - type: Transform pos: -8.5,0.5 parent: 2 - - uid: 17877 + - uid: 17859 components: - type: Transform pos: 83.5,5.5 @@ -137725,7 +137746,7 @@ entities: name: Пермабриг - proto: FaxMachineCaptain entities: - - uid: 17878 + - uid: 17860 components: - type: Transform pos: 9.5,6.5 @@ -137734,311 +137755,311 @@ entities: name: Офис Капитана - proto: FenceMetalBroken entities: - - uid: 17879 + - uid: 17861 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-50.5 parent: 2 - - uid: 17880 + - uid: 17862 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-17.5 parent: 2 - - uid: 39187 + - uid: 39014 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,15.5 - parent: 38584 + parent: 38411 - proto: FenceMetalGate entities: - - uid: 17881 + - uid: 17863 components: - type: Transform pos: 50.5,-50.5 parent: 2 - proto: FenceMetalStraight entities: - - uid: 17882 + - uid: 17864 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-50.5 parent: 2 - - uid: 17883 + - uid: 17865 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-50.5 parent: 2 - - uid: 17884 + - uid: 17866 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-50.5 parent: 2 - - uid: 39188 + - uid: 39015 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,15.5 - parent: 38584 - - uid: 39189 + parent: 38411 + - uid: 39016 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,15.5 - parent: 38584 - - uid: 39190 + parent: 38411 + - uid: 39017 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,15.5 - parent: 38584 - - uid: 39191 + parent: 38411 + - uid: 39018 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,15.5 - parent: 38584 - - uid: 39192 + parent: 38411 + - uid: 39019 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,15.5 - parent: 38584 + parent: 38411 - proto: FigureSpawner entities: - - uid: 17885 + - uid: 17867 components: - type: Transform pos: 68.5,30.5 parent: 2 - proto: filingCabinet entities: - - uid: 17886 + - uid: 17868 components: - type: Transform pos: 18.5,34.5 parent: 2 - - uid: 17887 + - uid: 17869 components: - type: Transform pos: -25.5,-12.5 parent: 2 - - uid: 17888 + - uid: 17870 components: - type: Transform pos: 32.5,12.5 parent: 2 - - uid: 17889 + - uid: 17871 components: - type: Transform pos: -14.5,-3.5 parent: 2 - - uid: 17890 + - uid: 17872 components: - type: Transform pos: 14.5,0.5 parent: 2 - - uid: 17891 + - uid: 17873 components: - type: Transform pos: 17.5,34.5 parent: 2 - - uid: 17892 + - uid: 17874 components: - type: Transform pos: 3.5,-61.5 parent: 2 - - uid: 17893 + - uid: 17875 components: - type: Transform pos: 3.5,61.5 parent: 2 - proto: filingCabinetDrawer entities: - - uid: 17894 + - uid: 17876 components: - type: Transform pos: 2.5,37.5 parent: 2 - - uid: 17895 + - uid: 17877 components: - type: Transform pos: -26.5,23.5 parent: 2 - - uid: 17896 + - uid: 17878 components: - type: Transform pos: 31.5,-69.5 parent: 2 - - uid: 17897 + - uid: 17879 components: - type: Transform pos: 14.5,-40.5 parent: 2 - - uid: 17898 + - uid: 17880 components: - type: Transform pos: -16.5,-38.5 parent: 2 - - uid: 17899 + - uid: 17881 components: - type: Transform pos: 37.5,12.5 parent: 2 - - uid: 17900 + - uid: 17882 components: - type: Transform pos: 25.5,26.5 parent: 2 - - uid: 17901 + - uid: 17883 components: - type: Transform pos: 20.5,-42.5 parent: 2 - - uid: 17902 + - uid: 17884 components: - type: Transform pos: 40.5,-59.5 parent: 2 - - uid: 17903 + - uid: 17885 components: - type: Transform pos: 3.5,-46.5 parent: 2 - - uid: 17904 + - uid: 17886 components: - type: Transform pos: -65.5,11.5 parent: 2 - - uid: 17905 + - uid: 17887 components: - type: Transform pos: 29.5,34.5 parent: 2 - - uid: 17906 + - uid: 17888 components: - type: Transform pos: -26.5,-31.5 parent: 2 - - uid: 17907 + - uid: 17889 components: - type: Transform pos: 27.5,40.5 parent: 2 - - uid: 17908 + - uid: 17890 components: - type: Transform pos: -33.5,-37.5 parent: 2 - proto: filingCabinetDrawerRandom entities: - - uid: 17909 + - uid: 17891 components: - type: Transform pos: 59.5,30.5 parent: 2 - - uid: 17910 + - uid: 17892 components: - type: Transform pos: 59.5,29.5 parent: 2 - - uid: 17911 + - uid: 17893 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 17912 + - uid: 17894 components: - type: Transform pos: 53.5,19.5 parent: 2 - - uid: 17913 + - uid: 17895 components: - type: Transform pos: -21.5,-8.5 parent: 2 - - uid: 17914 + - uid: 17896 components: - type: Transform pos: 25.5,2.5 parent: 2 - - uid: 17915 + - uid: 17897 components: - type: Transform pos: 25.5,-5.5 parent: 2 - - uid: 17916 + - uid: 17898 components: - type: Transform pos: -40.5,60.5 parent: 2 - - uid: 17917 + - uid: 17899 components: - type: Transform pos: -40.5,-8.5 parent: 2 - proto: filingCabinetRandom entities: - - uid: 17918 + - uid: 17900 components: - type: Transform pos: 54.5,19.5 parent: 2 - - uid: 17919 + - uid: 17901 components: - type: Transform pos: 31.5,-5.5 parent: 2 - - uid: 17920 + - uid: 17902 components: - type: Transform pos: -35.5,63.5 parent: 2 - - uid: 17921 + - uid: 17903 components: - type: Transform pos: -33.5,59.5 parent: 2 - - uid: 17922 + - uid: 17904 components: - type: Transform pos: 32.5,-41.5 parent: 2 - - uid: 17923 + - uid: 17905 components: - type: Transform pos: -33.5,63.5 parent: 2 - - uid: 39193 + - uid: 39020 components: - type: Transform pos: -22.5,30.5 - parent: 38584 - - uid: 39194 + parent: 38411 + - uid: 39021 components: - type: Transform pos: -22.5,31.5 - parent: 38584 + parent: 38411 - proto: filingCabinetTall entities: - - uid: 17924 + - uid: 17906 components: - type: Transform pos: 9.5,37.5 parent: 2 - - uid: 17925 + - uid: 17907 components: - type: Transform pos: -13.5,-0.5 parent: 2 - proto: FireAlarm entities: - - uid: 17926 + - uid: 17908 components: - type: Transform rot: 3.141592653589793 rad @@ -138046,19 +138067,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18177 - - 18197 - - 18253 - - 18252 + - 18158 - 18178 - - 18323 - - 18198 - - 18180 - - 18280 - - 18134 - - 18329 - - 817 - - uid: 17927 + - 18234 + - 18233 + - 18159 + - 18304 + - 18179 + - 18161 + - 18261 + - 18115 + - 18310 + - 813 + - uid: 17909 components: - type: Transform rot: 1.5707963267948966 rad @@ -138066,22 +138087,22 @@ entities: parent: 2 - type: DeviceList devices: - - 18172 - - 18258 - - 18340 - - 18360 - - 18261 - - 18310 - - 18344 + - 18153 + - 18239 + - 18321 - 18341 - - 18338 - - uid: 17928 + - 18242 + - 18291 + - 18325 + - 18322 + - 18319 + - uid: 17910 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,2.5 parent: 2 - - uid: 17929 + - uid: 17911 components: - type: Transform rot: 1.5707963267948966 rad @@ -138089,13 +138110,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18132 - - 18165 - - 18125 - - 18129 - - 18136 - - 18140 - - uid: 17930 + - 18113 + - 18146 + - 18106 + - 18110 + - 18117 + - 18121 + - uid: 17912 components: - type: Transform rot: 3.141592653589793 rad @@ -138103,13 +138124,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18291 - - 18317 - - 18281 - - 18367 - - 18347 - - 18232 - - uid: 17931 + - 18272 + - 18298 + - 18262 + - 18348 + - 18328 + - 18213 + - uid: 17913 components: - type: Transform rot: -1.5707963267948966 rad @@ -138117,12 +138138,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18218 - - 18215 - - 18351 - - 18325 - - 752 - - uid: 17932 + - 18199 + - 18196 + - 18332 + - 18306 + - 748 + - uid: 17914 components: - type: Transform rot: -1.5707963267948966 rad @@ -138130,43 +138151,43 @@ entities: parent: 2 - type: DeviceList devices: - - 18051 - - 18052 - - 18050 - - 770 - - uid: 17933 + - 18032 + - 18033 + - 18031 + - 766 + - uid: 17915 components: - type: Transform pos: -29.5,-0.5 parent: 2 - type: DeviceList devices: - - 18036 - - 18043 - - 18044 - - 18045 - - 18037 - - 18047 - - 753 - - uid: 17934 + - 18018 + - 18024 + - 18025 + - 18026 + - 18019 + - 18028 + - 749 + - uid: 17916 components: - type: Transform pos: -24.5,16.5 parent: 2 - type: DeviceList devices: - - 18282 - - 18234 - - 18356 - - 18222 - - 754 - - uid: 17935 + - 18263 + - 18215 + - 18337 + - 18203 + - 750 + - uid: 17917 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,14.5 parent: 2 - - uid: 17936 + - uid: 17918 components: - type: Transform rot: -1.5707963267948966 rad @@ -138174,13 +138195,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18227 - - 18229 - - 18228 - - 18351 - - 18325 - - 844 - - uid: 17937 + - 18208 + - 18210 + - 18209 + - 18332 + - 18306 + - 840 + - uid: 17919 components: - type: Transform rot: 1.5707963267948966 rad @@ -138188,12 +138209,12 @@ entities: parent: 2 - type: DeviceList devices: + - 18180 + - 18176 - 18199 - - 18195 - - 18218 - - 18215 - - 845 - - uid: 17938 + - 18196 + - 841 + - uid: 17920 components: - type: Transform rot: 3.141592653589793 rad @@ -138201,18 +138222,18 @@ entities: parent: 2 - type: DeviceList devices: - - 788 - - 787 - - 18345 - - 18336 - - 18328 - - 18337 - - uid: 17939 + - 784 + - 783 + - 18326 + - 18317 + - 18309 + - 18318 + - uid: 17921 components: - type: Transform pos: 89.5,15.5 parent: 2 - - uid: 17940 + - uid: 17922 components: - type: Transform rot: -1.5707963267948966 rad @@ -138220,12 +138241,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18240 - - 18238 - - 18249 - - 810 - - 776 - - uid: 17941 + - 18221 + - 18219 + - 18230 + - 806 + - 772 + - uid: 17923 components: - type: Transform rot: -1.5707963267948966 rad @@ -138233,16 +138254,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18159 - - 18418 - - 18419 - - 18420 - - 813 - - 18290 - - 18422 - - 18421 - - 821 - - uid: 17942 + - 18140 + - 18399 + - 18400 + - 18401 + - 809 + - 18271 + - 18403 + - 18402 + - 817 + - uid: 17924 components: - type: Transform rot: 1.5707963267948966 rad @@ -138250,16 +138271,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18406 - - 18130 - - 820 - - uid: 17943 + - 18387 + - 18111 + - 816 + - uid: 17925 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,21.5 parent: 2 - - uid: 17944 + - uid: 17926 components: - type: Transform rot: -1.5707963267948966 rad @@ -138267,17 +138288,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18412 - - 18413 - - 18407 - - 18406 - - 18418 - - 18159 - - 18411 - - 18414 - - 18416 - - 814 - - uid: 17945 + - 18393 + - 18394 + - 18388 + - 18387 + - 18399 + - 18140 + - 18392 + - 18395 + - 18397 + - 810 + - uid: 17927 components: - type: Transform rot: -1.5707963267948966 rad @@ -138285,26 +138306,26 @@ entities: parent: 2 - type: DeviceList devices: - - 18410 - - 18409 - - 815 - - 18414 - - 18411 - - 18160 - - 18412 - - 18413 - - 18408 - - uid: 17946 + - 18391 + - 18390 + - 811 + - 18395 + - 18392 + - 18141 + - 18393 + - 18394 + - 18389 + - uid: 17928 components: - type: Transform pos: -57.5,59.5 parent: 2 - type: DeviceList devices: - - 18164 - - 18417 - - 18160 - - uid: 17947 + - 18145 + - 18398 + - 18141 + - uid: 17929 components: - type: Transform rot: 1.5707963267948966 rad @@ -138312,10 +138333,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18416 - - 18417 - - 749 - - uid: 17948 + - 18397 + - 18398 + - 745 + - uid: 17930 components: - type: Transform rot: -1.5707963267948966 rad @@ -138323,43 +138344,43 @@ entities: parent: 2 - type: DeviceList devices: - - 812 - - 18247 - - 18235 - - 18288 - - 18121 - - 18423 - - uid: 17949 + - 808 + - 18228 + - 18216 + - 18269 + - 18102 + - 18404 + - uid: 17931 components: - type: Transform pos: -32.5,7.5 parent: 2 - type: DeviceList devices: - - 18288 - - 18235 - - 18247 - - 18293 - - 18223 - - 18224 - - 822 - - uid: 17950 + - 18269 + - 18216 + - 18228 + - 18274 + - 18204 + - 18205 + - 818 + - uid: 17932 components: - type: Transform pos: -21.5,7.5 parent: 2 - type: DeviceList devices: - - 18296 - - 18246 - - 18243 + - 18277 + - 18227 - 18224 - - 18223 - - 18293 - - 18282 - - 779 - - 18234 - - uid: 17951 + - 18205 + - 18204 + - 18274 + - 18263 + - 775 + - 18215 + - uid: 17933 components: - type: Transform rot: 1.5707963267948966 rad @@ -138367,65 +138388,65 @@ entities: parent: 2 - type: DeviceList devices: - - 18358 - - 18297 - - 18318 - - 18356 - - 18222 - - 18255 - - 18207 - - 18322 - - 780 - - uid: 17952 + - 18339 + - 18278 + - 18299 + - 18337 + - 18203 + - 18236 + - 18188 + - 18303 + - 776 + - uid: 17934 components: - type: Transform pos: -15.5,25.5 parent: 2 - type: DeviceList devices: - - 18255 - - 18207 - - 18322 - - 18354 - - 18208 - - 18355 + - 18236 - 18188 - - 18334 - - 18237 - - 825 - - uid: 17953 + - 18303 + - 18335 + - 18189 + - 18336 + - 18169 + - 18315 + - 18218 + - 821 + - uid: 17935 components: - type: Transform pos: -1.5,25.5 parent: 2 - type: DeviceList devices: - - 18188 - - 18334 - - 18237 - - 826 - - 18343 - - 18339 - - 18171 - - 18265 - - 18176 - - uid: 17954 + - 18169 + - 18315 + - 18218 + - 822 + - 18324 + - 18320 + - 18152 + - 18246 + - 18157 + - uid: 17936 components: - type: Transform pos: 13.5,25.5 parent: 2 - type: DeviceList devices: - - 18343 - - 18339 - - 18171 - - 827 - - 18342 - - 18266 - - 18183 + - 18324 + - 18320 + - 18152 + - 823 + - 18323 + - 18247 + - 18164 + - 18151 - 18170 - - 18189 - - uid: 17955 + - uid: 17937 components: - type: Transform rot: -1.5707963267948966 rad @@ -138433,14 +138454,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18189 - 18170 - - 18183 - - 828 - - 18172 - - 18258 - - 18340 - - uid: 17956 + - 18151 + - 18164 + - 824 + - 18153 + - 18239 + - 18321 + - uid: 17938 components: - type: Transform rot: 1.5707963267948966 rad @@ -138448,71 +138469,71 @@ entities: parent: 2 - type: DeviceList devices: - - 18302 - - 18184 - - 18344 - - 18341 - - 18338 - - 18291 - - 18317 - - 18281 - - 18366 - - 18315 - - 18284 - - 833 - - uid: 17957 + - 18283 + - 18165 + - 18325 + - 18322 + - 18319 + - 18272 + - 18298 + - 18262 + - 18347 + - 18296 + - 18265 + - 829 + - uid: 17939 components: - type: Transform pos: 10.5,-17.5 parent: 2 - type: DeviceList devices: + - 18159 + - 18304 - 18178 - - 18323 - - 18197 - - 18177 - - 18131 - - 18145 - - 18167 - - 18366 - - 18315 - - 18284 - - 834 - - uid: 17958 + - 18158 + - 18112 + - 18126 + - 18148 + - 18347 + - 18296 + - 18265 + - 830 + - uid: 17940 components: - type: Transform pos: -15.5,-32.5 parent: 2 - type: DeviceList devices: - - 18242 - - 18305 - - 18123 - - 18402 - - 18403 - - 18365 - - 18316 - - 18230 - - 846 - - uid: 17959 + - 18223 + - 18286 + - 18104 + - 18383 + - 18384 + - 18346 + - 18297 + - 18211 + - 842 + - uid: 17941 components: - type: Transform pos: -9.5,-17.5 parent: 2 - type: DeviceList devices: - - 18168 - - 18162 - - 18154 - - 18327 - - 18333 - - 18210 - - 18219 + - 18149 + - 18143 + - 18135 + - 18308 + - 18314 + - 18191 - 18200 - - 18220 - - 18250 - - 747 - - uid: 17960 + - 18181 + - 18201 + - 18231 + - 743 + - uid: 17942 components: - type: Transform rot: -1.5707963267948966 rad @@ -138520,16 +138541,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18200 - - 18220 - - 18250 - - 18236 - - 18346 - - 18332 + - 18181 + - 18201 + - 18231 - 18217 - - 18187 - - 836 - - uid: 17961 + - 18327 + - 18313 + - 18198 + - 18168 + - 832 + - uid: 17943 components: - type: Transform rot: 1.5707963267948966 rad @@ -138537,19 +138558,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18318 - - 18297 - - 18358 - - 18236 - - 18346 - - 18332 - - 824 - - 18036 - - 18043 - - 18246 - - 18296 - - 18243 - - uid: 17962 + - 18299 + - 18278 + - 18339 + - 18217 + - 18327 + - 18313 + - 820 + - 18018 + - 18024 + - 18227 + - 18277 + - 18224 + - uid: 17944 components: - type: Transform rot: -1.5707963267948966 rad @@ -138557,10 +138578,10 @@ entities: parent: 2 - type: DeviceList devices: - - 823 - - 18048 - - 18047 - - uid: 17963 + - 819 + - 18029 + - 18028 + - uid: 17945 components: - type: Transform rot: 1.5707963267948966 rad @@ -138568,30 +138589,30 @@ entities: parent: 2 - type: DeviceList devices: - - 18081 - - 18080 - - 18087 - - 18083 - - 18096 - - 18070 + - 18062 + - 18061 - 18068 + - 18064 + - 18077 + - 18051 + - 18049 + - 18069 + - 18071 + - 18079 - 18088 - - 18090 - - 18098 - - 18107 - - 18093 - - 18354 - - 18208 - - 18355 - - 18073 - - 18101 - - 18108 - - 18105 - - 18106 - - 18067 - - 860 - - 858 - - uid: 17964 + - 18074 + - 18335 + - 18189 + - 18336 + - 18054 + - 18082 + - 18089 + - 18086 + - 18087 + - 18048 + - 856 + - 854 + - uid: 17946 components: - type: Transform rot: 3.141592653589793 rad @@ -138599,33 +138620,33 @@ entities: parent: 2 - type: DeviceList devices: - - 18067 - - 18106 - - 18105 - - 18108 - - 18101 - - 18073 - - 856 - - uid: 17965 + - 18048 + - 18087 + - 18086 + - 18089 + - 18082 + - 18054 + - 852 + - uid: 17947 components: - type: Transform pos: -13.5,35.5 parent: 2 - type: DeviceList devices: - - 18095 - - 18089 - - 18092 - - 18078 - - 18075 - 18076 - - 18102 - - 18079 - - 18084 - - 18086 - - 18085 - - 775 - - uid: 17966 + - 18070 + - 18073 + - 18059 + - 18056 + - 18057 + - 18083 + - 18060 + - 18065 + - 18067 + - 18066 + - 771 + - uid: 17948 components: - type: Transform rot: -1.5707963267948966 rad @@ -138633,34 +138654,34 @@ entities: parent: 2 - type: DeviceList devices: - - 18082 - - 18065 - - 18109 - - 18066 - - 18069 + - 18063 + - 18046 + - 18090 + - 18047 + - 18050 + - 18072 + - 18080 + - 18075 - 18091 - - 18099 - - 18094 - - 18110 - - 18097 - - 18104 + - 18078 + - 18085 + - 18171 + - 18254 + - 18289 - 18190 - - 18273 - - 18308 - - 18209 - - 18331 - - 800 - - uid: 17967 + - 18312 + - 796 + - uid: 17949 components: - type: Transform pos: -8.5,51.5 parent: 2 - type: DeviceList devices: - - 18286 - - 18287 - - 811 - - uid: 17968 + - 18267 + - 18268 + - 807 + - uid: 17950 components: - type: Transform rot: 3.141592653589793 rad @@ -138668,17 +138689,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18225 + - 18206 + - 18207 + - 18266 + - 18293 - 18226 - - 18285 - - 18312 - - 18245 - - 18268 - - 18269 - - 18271 - - 802 - - 801 - - uid: 17969 + - 18249 + - 18250 + - 18252 + - 798 + - 797 + - uid: 17951 components: - type: Transform rot: -1.5707963267948966 rad @@ -138686,8 +138707,8 @@ entities: parent: 2 - type: DeviceList devices: - - 861 - - uid: 17970 + - 857 + - uid: 17952 components: - type: Transform rot: -1.5707963267948966 rad @@ -138695,23 +138716,23 @@ entities: parent: 2 - type: DeviceList devices: - - 18244 - - 18239 - - 18311 - - 18364 - - 18295 - - 18245 - - 18312 - - 18285 - - 18226 - 18225 - - 862 - - uid: 17971 + - 18220 + - 18292 + - 18345 + - 18276 + - 18226 + - 18293 + - 18266 + - 18207 + - 18206 + - 858 + - uid: 17953 components: - type: Transform pos: -16.5,70.5 parent: 2 - - uid: 17972 + - uid: 17954 components: - type: Transform rot: -1.5707963267948966 rad @@ -138719,13 +138740,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18331 - - 18209 - - 18308 + - 18312 - 18190 - - 18273 - - 857 - - uid: 17973 + - 18289 + - 18171 + - 18254 + - 853 + - uid: 17955 components: - type: Transform rot: -1.5707963267948966 rad @@ -138733,15 +138754,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18161 - - 18257 - - 18153 - - 18342 - - 18266 - - 18265 - - 18176 - - 757 - - uid: 17974 + - 18142 + - 18238 + - 18134 + - 18323 + - 18247 + - 18246 + - 18157 + - 753 + - uid: 17956 components: - type: Transform rot: -1.5707963267948966 rad @@ -138749,10 +138770,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18362 - - 18153 - - 796 - - uid: 17975 + - 18343 + - 18134 + - 792 + - uid: 17957 components: - type: Transform rot: 1.5707963267948966 rad @@ -138760,13 +138781,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18139 - - 18303 - - 18161 - - 18138 - - 18309 - - 797 - - uid: 17976 + - 18120 + - 18284 + - 18142 + - 18119 + - 18290 + - 793 + - uid: 17958 components: - type: Transform rot: 1.5707963267948966 rad @@ -138774,9 +138795,9 @@ entities: parent: 2 - type: DeviceList devices: - - 18139 - - 854 - - uid: 17977 + - 18120 + - 850 + - uid: 17959 components: - type: Transform rot: 3.141592653589793 rad @@ -138784,19 +138805,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18309 - - 18138 - - 18362 - - 18126 - - 18137 - - 18262 - - 18277 - - 18276 - - 18149 - - 18260 - - 750 - - 798 - - uid: 17978 + - 18290 + - 18119 + - 18343 + - 18107 + - 18118 + - 18243 + - 18258 + - 18257 + - 18130 + - 18241 + - 746 + - 794 + - uid: 17960 components: - type: Transform rot: 3.141592653589793 rad @@ -138804,21 +138825,21 @@ entities: parent: 2 - type: DeviceList devices: - - 18189 - 18170 - - 18183 - - 828 - - 18172 - - 18258 - - 18340 - - 18360 - - 18261 - - 18310 - - 18278 - - 18361 - - 18173 - - 829 - - uid: 17979 + - 18151 + - 18164 + - 824 + - 18153 + - 18239 + - 18321 + - 18341 + - 18242 + - 18291 + - 18259 + - 18342 + - 18154 + - 825 + - uid: 17961 components: - type: Transform rot: 3.141592653589793 rad @@ -138826,80 +138847,80 @@ entities: parent: 2 - type: DeviceList devices: - - 18189 - 18170 - - 18183 - - 828 - - 18172 - - 18258 - - 18340 - - 18360 - - 18261 - - 18310 - - 18278 - - 18361 - - 18173 - - 829 - - 18111 - - 18060 - - 18061 - - 830 - - uid: 17980 + - 18151 + - 18164 + - 824 + - 18153 + - 18239 + - 18321 + - 18341 + - 18242 + - 18291 + - 18259 + - 18342 + - 18154 + - 825 + - 18092 + - 18041 + - 18042 + - 826 + - uid: 17962 components: - type: Transform pos: 34.5,7.5 parent: 2 - type: DeviceList devices: - - 18111 - - 18060 - - 18061 - - 18352 - - 18353 - - 831 - - uid: 17981 + - 18092 + - 18041 + - 18042 + - 18333 + - 18334 + - 827 + - uid: 17963 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,15.5 parent: 2 - - uid: 17982 + - uid: 17964 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,23.5 parent: 2 - - uid: 17983 + - uid: 17965 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,2.5 parent: 2 - - uid: 17984 + - uid: 17966 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-1.5 parent: 2 - - uid: 17985 + - uid: 17967 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,11.5 parent: 2 - - uid: 17986 + - uid: 17968 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,8.5 parent: 2 - - uid: 17987 + - uid: 17969 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-17.5 parent: 2 - - uid: 17988 + - uid: 17970 components: - type: Transform rot: -1.5707963267948966 rad @@ -138907,23 +138928,23 @@ entities: parent: 2 - type: DeviceList devices: - - 18280 - - 18180 - - 18324 - - 18212 - - 18350 - - 18202 - - 18320 - - 18304 - - 18380 - - 841 - - uid: 17989 + - 18261 + - 18161 + - 18305 + - 18193 + - 18331 + - 18183 + - 18301 + - 18285 + - 18361 + - 837 + - uid: 17971 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-36.5 parent: 2 - - uid: 17990 + - uid: 17972 components: - type: Transform rot: 3.141592653589793 rad @@ -138931,26 +138952,26 @@ entities: parent: 2 - type: DeviceList devices: - - 18198 - - 18289 - - 18204 - - 18348 - - 842 - - uid: 17991 + - 18179 + - 18270 + - 18185 + - 18329 + - 838 + - uid: 17973 components: - type: Transform pos: 24.5,-32.5 parent: 2 - type: DeviceList devices: - - 18304 - - 18320 - - 18202 - - 18228 - - 18229 - - 18227 - - 843 - - uid: 17992 + - 18285 + - 18301 + - 18183 + - 18209 + - 18210 + - 18208 + - 839 + - uid: 17974 components: - type: Transform rot: 3.141592653589793 rad @@ -138958,15 +138979,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18201 - - 18205 - - 18279 - - 18142 - - 18289 - - 18203 - - 18306 - - 18179 - - uid: 17993 + - 18182 + - 18186 + - 18260 + - 18123 + - 18270 + - 18184 + - 18287 + - 18160 + - uid: 17975 components: - type: Transform rot: 1.5707963267948966 rad @@ -138974,13 +138995,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18203 - - 18306 - - 18179 - - 18299 - - 18319 - - 819 - - uid: 17994 + - 18184 + - 18287 + - 18160 + - 18280 + - 18300 + - 815 + - uid: 17976 components: - type: Transform rot: 1.5707963267948966 rad @@ -138988,14 +139009,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18319 - - 18174 - - 18299 - - 816 - - 18272 - - 18270 - - 18267 - - uid: 17995 + - 18300 + - 18155 + - 18280 + - 812 + - 18253 + - 18251 + - 18248 + - uid: 17977 components: - type: Transform rot: -1.5707963267948966 rad @@ -139003,19 +139024,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18372 - - 18371 - - 18267 - - 18270 - - 18272 - - 18374 - - 18373 - - 18158 - - 18141 - - 840 - - 839 - - 818 - - uid: 17996 + - 18353 + - 18352 + - 18248 + - 18251 + - 18253 + - 18355 + - 18354 + - 18139 + - 18122 + - 836 + - 835 + - 814 + - uid: 17978 components: - type: Transform rot: 3.141592653589793 rad @@ -139023,17 +139044,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18327 - - 18333 - - 18219 - - 18210 - - 18143 - - 18169 - - 18263 - - 18231 - - 18283 - - 755 - - uid: 17997 + - 18308 + - 18314 + - 18200 + - 18191 + - 18124 + - 18150 + - 18244 + - 18212 + - 18264 + - 751 + - uid: 17979 components: - type: Transform rot: 1.5707963267948966 rad @@ -139041,11 +139062,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18157 - - 18127 - - 18128 - - 848 - - uid: 17998 + - 18138 + - 18108 + - 18109 + - 844 + - uid: 17980 components: - type: Transform rot: 3.141592653589793 rad @@ -139053,28 +139074,28 @@ entities: parent: 2 - type: DeviceList devices: - - 18157 - - 18127 - - 18128 - - 18230 - - 18316 - - 18365 - - 18148 - - 18150 - - 847 - - uid: 17999 + - 18138 + - 18108 + - 18109 + - 18211 + - 18297 + - 18346 + - 18129 + - 18131 + - 843 + - uid: 17981 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-41.5 parent: 2 - - uid: 18000 + - uid: 17982 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-47.5 parent: 2 - - uid: 18001 + - uid: 17983 components: - type: Transform rot: -1.5707963267948966 rad @@ -139082,10 +139103,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18148 - - 18147 - - 849 - - uid: 18002 + - 18129 + - 18128 + - 845 + - uid: 17984 components: - type: Transform rot: -1.5707963267948966 rad @@ -139093,11 +139114,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18150 - - 18151 - - 18264 - - 850 - - uid: 18003 + - 18131 + - 18132 + - 18245 + - 846 + - uid: 17985 components: - type: Transform rot: 3.141592653589793 rad @@ -139105,12 +139126,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18147 - - 18151 - - 18335 - - 18211 - - 852 - - uid: 18004 + - 18128 + - 18132 + - 18316 + - 18192 + - 848 + - uid: 17986 components: - type: Transform rot: -1.5707963267948966 rad @@ -139118,9 +139139,9 @@ entities: parent: 2 - type: DeviceList devices: - - 18211 - - 853 - - uid: 18005 + - 18192 + - 849 + - uid: 17987 components: - type: Transform rot: 3.141592653589793 rad @@ -139128,78 +139149,78 @@ entities: parent: 2 - type: DeviceList devices: - - 18313 - - 18307 - - 18335 - - 18264 - - 851 - - uid: 18006 + - 18294 + - 18288 + - 18316 + - 18245 + - 847 + - uid: 17988 components: - type: Transform pos: -0.5,-17.5 parent: 2 - type: DeviceList devices: + - 18159 + - 18304 - 18178 - - 18323 - - 18197 - - 18177 - - 18131 - - 18145 - - 18167 - - 18366 - - 18315 - - 18284 - - 834 - - 18154 - - 18162 - - 18168 - - 18248 - - 18326 - - 18241 - - 835 - - uid: 18007 + - 18158 + - 18112 + - 18126 + - 18148 + - 18347 + - 18296 + - 18265 + - 830 + - 18135 + - 18143 + - 18149 + - 18229 + - 18307 + - 18222 + - 831 + - uid: 17989 components: - type: Transform pos: -13.5,-6.5 parent: 2 - type: DeviceList devices: - - 18187 - - 18217 - - 18062 - - 18059 - - 781 - - 18120 - - uid: 18008 + - 18168 + - 18198 + - 18043 + - 18040 + - 777 + - 18101 + - uid: 17990 components: - type: Transform pos: 0.49999997,-6.5 parent: 2 - type: DeviceList devices: - - 18063 - - 18064 - - 18059 - - 18062 - - 782 - - 18117 - - 18116 - - uid: 18009 + - 18044 + - 18045 + - 18040 + - 18043 + - 778 + - 18098 + - 18097 + - uid: 17991 components: - type: Transform pos: 12.5,-6.5 parent: 2 - type: DeviceList devices: - - 18184 - - 18302 - - 18063 - - 18064 - - 748 - - 18429 - - 18116 - - uid: 18010 + - 18165 + - 18283 + - 18044 + - 18045 + - 744 + - 18410 + - 18097 + - uid: 17992 components: - type: Transform rot: 3.141592653589793 rad @@ -139207,15 +139228,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18367 - - 18347 - - 18232 - - 838 - - 18336 - - 18345 - - 786 - - 785 - - uid: 18011 + - 18348 + - 18328 + - 18213 + - 834 + - 18317 + - 18326 + - 782 + - 781 + - uid: 17993 components: - type: Transform rot: 3.141592653589793 rad @@ -139223,30 +139244,30 @@ entities: parent: 2 - type: DeviceList devices: - - 18093 - - 18107 - - 18098 - - 18090 + - 18074 - 18088 + - 18079 + - 18071 + - 18069 + - 18049 + - 18051 + - 18077 + - 18064 - 18068 + - 18061 + - 18062 + - 18076 - 18070 - - 18096 + - 18073 + - 18059 + - 18056 + - 18057 - 18083 - - 18087 - - 18080 - - 18081 - - 18095 - - 18089 - - 18092 - - 18078 - - 18075 - - 18076 - - 18102 - - 18079 - - 18084 - - 18086 - - 18085 - - uid: 18012 + - 18060 + - 18065 + - 18067 + - 18066 + - uid: 17994 components: - type: Transform rot: 1.5707963267948966 rad @@ -139254,24 +139275,24 @@ entities: parent: 2 - type: DeviceList devices: - - 18082 - - 18065 - - 18109 - - 18066 - - 18069 + - 18063 + - 18046 + - 18090 + - 18047 + - 18050 + - 18072 + - 18080 + - 18075 - 18091 - - 18099 - - 18094 - - 18110 - - 18097 - - 18104 - - 18286 - - 18287 - - 18271 - - 18269 + - 18078 + - 18085 + - 18267 - 18268 - - 859 - - uid: 18013 + - 18252 + - 18250 + - 18249 + - 855 + - uid: 17995 components: - type: Transform rot: -1.5707963267948966 rad @@ -139279,12 +139300,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18034 - - 18029 - - 18031 - - 808 - - 809 - - uid: 18014 + - 18016 + - 18011 + - 18013 + - 804 + - 805 + - uid: 17996 components: - type: Transform rot: -1.5707963267948966 rad @@ -139292,80 +139313,80 @@ entities: parent: 2 - type: DeviceList devices: - - 806 - - 18055 - - 18056 - - 18292 - - 18193 - - 18185 - - uid: 18015 + - 802 + - 18036 + - 18037 + - 18273 + - 18174 + - 18166 + - uid: 17997 components: - type: Transform pos: 87.5,3.5 parent: 2 - type: DeviceList devices: - - 864 - - 863 - - 18405 - - 18427 - - 18428 - - uid: 39195 + - 860 + - 859 + - 18386 + - 18408 + - 18409 + - uid: 39022 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,0.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39199 - - 39202 - - 39201 - - 38612 - - uid: 39196 + - 39026 + - 39029 + - 39028 + - 38439 + - uid: 39023 components: - type: Transform pos: -0.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39200 - - 39203 - - 38611 - - uid: 39197 + - 39027 + - 39030 + - 38438 + - uid: 39024 components: - type: Transform pos: -0.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39204 - - 39205 - - uid: 39198 + - 39031 + - 39032 + - uid: 39025 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,0.5 - parent: 38584 + parent: 38411 - type: DeviceList devices: - - 39207 - - 39206 + - 39034 + - 39033 - proto: FireAxeCabinetFilled entities: - - uid: 18016 + - uid: 17998 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,12.5 parent: 2 - - uid: 18017 + - uid: 17999 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,37.5 parent: 2 - - uid: 18018 + - uid: 18000 components: - type: Transform rot: 3.141593671850739 rad @@ -139373,7 +139394,7 @@ entities: parent: 2 - proto: FireAxeCabinetOpen entities: - - uid: 18019 + - uid: 18001 components: - type: Transform rot: 1.5707963267948966 rad @@ -139381,57 +139402,57 @@ entities: parent: 2 - proto: FireExtinguisher entities: - - uid: 18020 + - uid: 18002 components: - type: Transform pos: -44.574673,-22.51657 parent: 2 - type: Physics canCollide: False - - uid: 18021 + - uid: 18003 components: - type: Transform pos: -34.773117,-55.435936 parent: 2 - - uid: 18022 + - uid: 18004 components: - type: Transform pos: -34.319992,-55.435936 parent: 2 - proto: Firelock entities: - - uid: 18023 + - uid: 18005 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-7.5 parent: 2 - - uid: 18024 + - uid: 18006 components: - type: Transform pos: -54.5,-39.5 parent: 2 - - uid: 18025 + - uid: 18007 components: - type: Transform pos: 9.5,80.5 parent: 2 - - uid: 18026 + - uid: 18008 components: - type: Transform pos: -42.5,36.5 parent: 2 - - uid: 18027 + - uid: 18009 components: - type: Transform pos: -41.5,53.5 parent: 2 - - uid: 18028 + - uid: 18010 components: - type: Transform pos: -42.5,26.5 parent: 2 - - uid: 18029 + - uid: 18011 components: - type: Transform rot: 3.141592653589793 rad @@ -139439,14 +139460,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 18030 + - uid: 18012 components: - type: Transform pos: -40.5,57.5 parent: 2 - - uid: 18031 + - uid: 18013 components: - type: Transform rot: 3.141592653589793 rad @@ -139454,19 +139475,19 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 18032 + - uid: 18014 components: - type: Transform pos: -53.5,-33.5 parent: 2 - - uid: 18033 + - uid: 18015 components: - type: Transform pos: -41.5,-7.5 parent: 2 - - uid: 18034 + - uid: 18016 components: - type: Transform rot: 3.141592653589793 rad @@ -139474,14 +139495,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18013 + - 17995 - 126 - - uid: 18035 + - uid: 18017 components: - type: Transform pos: -29.5,39.5 parent: 2 - - uid: 18036 + - uid: 18018 components: - type: Transform rot: -1.5707963267948966 rad @@ -139489,10 +139510,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 - - 17961 + - 17915 + - 17943 - 64 - - uid: 18037 + - uid: 18019 components: - type: Transform rot: -1.5707963267948966 rad @@ -139500,29 +139521,29 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 - - uid: 18038 + - 17915 + - uid: 18020 components: - type: Transform pos: -72.5,-19.5 parent: 2 - - uid: 18040 + - uid: 18021 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 18041 + - uid: 18022 components: - type: Transform pos: -47.5,-19.5 parent: 2 - - uid: 18042 + - uid: 18023 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-3.5 parent: 2 - - uid: 18043 + - uid: 18024 components: - type: Transform rot: -1.5707963267948966 rad @@ -139530,10 +139551,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 - - 17961 + - 17915 + - 17943 - 64 - - uid: 18044 + - uid: 18025 components: - type: Transform rot: -1.5707963267948966 rad @@ -139541,9 +139562,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 + - 17915 - 64 - - uid: 18045 + - uid: 18026 components: - type: Transform rot: -1.5707963267948966 rad @@ -139551,14 +139572,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 + - 17915 - 64 - - uid: 18046 + - uid: 18027 components: - type: Transform pos: -54.5,-23.5 parent: 2 - - uid: 18047 + - uid: 18028 components: - type: Transform rot: -1.5707963267948966 rad @@ -139566,10 +139587,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17933 - - 17962 + - 17915 + - 17944 - 64 - - uid: 18048 + - uid: 18029 components: - type: Transform rot: -1.5707963267948966 rad @@ -139577,20 +139598,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17962 + - 17944 - 64 - - uid: 18049 + - uid: 18030 components: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 18050 + - uid: 18031 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,6.5 parent: 2 - - uid: 18051 + - uid: 18032 components: - type: Transform rot: -1.5707963267948966 rad @@ -139599,7 +139620,7 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - uid: 18052 + - uid: 18033 components: - type: Transform rot: -1.5707963267948966 rad @@ -139608,42 +139629,42 @@ entities: - type: DeviceNetwork deviceLists: - 88 - - uid: 18053 + - uid: 18034 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-40.5 parent: 2 - - uid: 18054 + - uid: 18035 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-40.5 parent: 2 - - uid: 18055 + - uid: 18036 components: - type: Transform pos: 9.5,76.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 78 - - uid: 18056 + - uid: 18037 components: - type: Transform pos: 9.5,75.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 78 - - uid: 18057 + - uid: 18038 components: - type: Transform pos: 9.5,81.5 parent: 2 - - uid: 18058 + - uid: 18039 components: - type: Transform rot: 3.141592653589793 rad @@ -139651,7 +139672,7 @@ entities: parent: 2 - proto: FirelockEdge entities: - - uid: 18059 + - uid: 18040 components: - type: Transform rot: 1.5707963267948966 rad @@ -139659,10 +139680,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18007 - - 18008 + - 17989 + - 17990 - 65 - - uid: 18060 + - uid: 18041 components: - type: Transform rot: 1.5707963267948966 rad @@ -139670,10 +139691,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17979 - - 17980 + - 17961 + - 17962 - 85 - - uid: 18061 + - uid: 18042 components: - type: Transform rot: 1.5707963267948966 rad @@ -139681,10 +139702,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17979 - - 17980 + - 17961 + - 17962 - 85 - - uid: 18062 + - uid: 18043 components: - type: Transform rot: 1.5707963267948966 rad @@ -139692,10 +139713,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18007 - - 18008 + - 17989 + - 17990 - 65 - - uid: 18063 + - uid: 18044 components: - type: Transform rot: -1.5707963267948966 rad @@ -139703,10 +139724,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 - - 18009 + - 17990 + - 17991 - 65 - - uid: 18064 + - uid: 18045 components: - type: Transform rot: -1.5707963267948966 rad @@ -139714,10 +139735,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 - - 18009 + - 17990 + - 17991 - 65 - - uid: 18065 + - uid: 18046 components: - type: Transform rot: -1.5707963267948966 rad @@ -139725,10 +139746,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18066 + - uid: 18047 components: - type: Transform rot: -1.5707963267948966 rad @@ -139736,10 +139757,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18067 + - uid: 18048 components: - type: Transform rot: 3.141592653589793 rad @@ -139747,10 +139768,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18068 + - uid: 18049 components: - type: Transform rot: 1.5707963267948966 rad @@ -139758,10 +139779,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18069 + - uid: 18050 components: - type: Transform rot: -1.5707963267948966 rad @@ -139769,10 +139790,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18070 + - uid: 18051 components: - type: Transform rot: 1.5707963267948966 rad @@ -139780,22 +139801,22 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18071 + - uid: 18052 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,34.5 parent: 2 - - uid: 18072 + - uid: 18053 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,35.5 parent: 2 - - uid: 18073 + - uid: 18054 components: - type: Transform rot: 1.5707963267948966 rad @@ -139803,16 +139824,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18074 + - uid: 18055 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,33.5 parent: 2 - - uid: 18075 + - uid: 18056 components: - type: Transform rot: -1.5707963267948966 rad @@ -139820,10 +139841,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18076 + - uid: 18057 components: - type: Transform rot: -1.5707963267948966 rad @@ -139831,25 +139852,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18077 + - uid: 18058 components: - type: Transform pos: -14.5,29.5 parent: 2 - - uid: 18078 + - uid: 18059 components: - type: Transform pos: -14.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18079 + - uid: 18060 components: - type: Transform rot: 3.141592653589793 rad @@ -139857,30 +139878,30 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18080 + - uid: 18061 components: - type: Transform pos: -15.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18081 + - uid: 18062 components: - type: Transform pos: -14.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18082 + - uid: 18063 components: - type: Transform rot: -1.5707963267948966 rad @@ -139888,10 +139909,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18083 + - uid: 18064 components: - type: Transform rot: 1.5707963267948966 rad @@ -139899,10 +139920,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18084 + - uid: 18065 components: - type: Transform rot: -1.5707963267948966 rad @@ -139910,10 +139931,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18085 + - uid: 18066 components: - type: Transform rot: -1.5707963267948966 rad @@ -139921,10 +139942,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18086 + - uid: 18067 components: - type: Transform rot: -1.5707963267948966 rad @@ -139932,20 +139953,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18087 + - uid: 18068 components: - type: Transform pos: -16.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18088 + - uid: 18069 components: - type: Transform rot: 1.5707963267948966 rad @@ -139953,10 +139974,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18089 + - uid: 18070 components: - type: Transform rot: -1.5707963267948966 rad @@ -139964,10 +139985,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18090 + - uid: 18071 components: - type: Transform rot: 1.5707963267948966 rad @@ -139975,10 +139996,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18091 + - uid: 18072 components: - type: Transform rot: -1.5707963267948966 rad @@ -139986,10 +140007,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18092 + - uid: 18073 components: - type: Transform rot: -1.5707963267948966 rad @@ -139997,10 +140018,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18093 + - uid: 18074 components: - type: Transform rot: 1.5707963267948966 rad @@ -140008,10 +140029,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18094 + - uid: 18075 components: - type: Transform rot: -1.5707963267948966 rad @@ -140019,10 +140040,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18095 + - uid: 18076 components: - type: Transform rot: -1.5707963267948966 rad @@ -140030,10 +140051,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18096 + - uid: 18077 components: - type: Transform rot: 1.5707963267948966 rad @@ -140041,10 +140062,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18097 + - uid: 18078 components: - type: Transform rot: -1.5707963267948966 rad @@ -140052,10 +140073,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18098 + - uid: 18079 components: - type: Transform rot: 1.5707963267948966 rad @@ -140063,10 +140084,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18099 + - uid: 18080 components: - type: Transform rot: -1.5707963267948966 rad @@ -140074,16 +140095,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18100 + - uid: 18081 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,36.5 parent: 2 - - uid: 18101 + - uid: 18082 components: - type: Transform rot: 1.5707963267948966 rad @@ -140091,10 +140112,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18102 + - uid: 18083 components: - type: Transform rot: -1.5707963267948966 rad @@ -140102,16 +140123,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17965 + - 17993 + - 17947 - 71 - - uid: 18103 + - uid: 18084 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,37.5 parent: 2 - - uid: 18104 + - uid: 18085 components: - type: Transform rot: -1.5707963267948966 rad @@ -140119,10 +140140,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18105 + - uid: 18086 components: - type: Transform rot: 1.5707963267948966 rad @@ -140130,10 +140151,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18106 + - uid: 18087 components: - type: Transform rot: 1.5707963267948966 rad @@ -140141,10 +140162,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18107 + - uid: 18088 components: - type: Transform rot: 1.5707963267948966 rad @@ -140152,10 +140173,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18011 - - 17963 + - 17993 + - 17945 - 71 - - uid: 18108 + - uid: 18089 components: - type: Transform rot: 1.5707963267948966 rad @@ -140163,10 +140184,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17964 - - 17963 + - 17946 + - 17945 - 72 - - uid: 18109 + - uid: 18090 components: - type: Transform rot: -1.5707963267948966 rad @@ -140174,10 +140195,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18110 + - uid: 18091 components: - type: Transform rot: -1.5707963267948966 rad @@ -140185,10 +140206,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 18012 + - 17948 + - 17994 - 54 - - uid: 18111 + - uid: 18092 components: - type: Transform rot: 1.5707963267948966 rad @@ -140196,34 +140217,34 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17979 - - 17980 + - 17961 + - 17962 - 85 - - uid: 18112 + - uid: 18093 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,48.5 parent: 2 - - uid: 18113 + - uid: 18094 components: - type: Transform rot: 1.5707963267948966 rad pos: -117.5,48.5 parent: 2 - - uid: 18114 + - uid: 18095 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-40.5 parent: 2 - - uid: 18115 + - uid: 18096 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-40.5 parent: 2 - - uid: 18116 + - uid: 18097 components: - type: Transform rot: -1.5707963267948966 rad @@ -140231,10 +140252,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 - - 18009 + - 17990 + - 17991 - 65 - - uid: 18117 + - uid: 18098 components: - type: Transform rot: 1.5707963267948966 rad @@ -140242,11 +140263,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18008 + - 17990 - 65 - proto: FirelockElectronics entities: - - uid: 18118 + - uid: 18099 components: - type: Transform pos: -38.5,11.5 @@ -140255,24 +140276,24 @@ entities: canCollide: False - proto: FirelockFrame entities: - - uid: 18119 + - uid: 18100 components: - type: Transform pos: -73.5,-28.5 parent: 2 - proto: FirelockGlass entities: - - uid: 18120 + - uid: 18101 components: - type: Transform pos: -16.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18007 + - 17989 - 124 - 65 - - uid: 18121 + - uid: 18102 components: - type: Transform rot: -1.5707963267948966 rad @@ -140280,28 +140301,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - uid: 18122 + - 17930 + - uid: 18103 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-33.5 parent: 2 - - uid: 18123 + - uid: 18104 components: - type: Transform pos: -12.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 + - 17940 - 108 - - uid: 18124 + - uid: 18105 components: - type: Transform pos: 37.5,-48.5 parent: 2 - - uid: 18125 + - uid: 18106 components: - type: Transform pos: 48.5,10.5 @@ -140309,7 +140330,7 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 18126 + - uid: 18107 components: - type: Transform rot: 3.141592653589793 rad @@ -140317,28 +140338,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 - - uid: 18127 + - 17959 + - uid: 18108 components: - type: Transform pos: -22.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 17997 + - 17980 + - 17979 - 107 - - uid: 18128 + - uid: 18109 components: - type: Transform pos: -21.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 17997 + - 17980 + - 17979 - 107 - - uid: 18129 + - uid: 18110 components: - type: Transform pos: 49.5,1.5 @@ -140347,7 +140368,7 @@ entities: deviceLists: - 86 - 70 - - uid: 18130 + - uid: 18111 components: - type: Transform rot: 3.141592653589793 rad @@ -140355,19 +140376,19 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17942 + - 17924 - 59 - - uid: 18131 + - uid: 18112 components: - type: Transform pos: 1.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 + - 17939 + - 17988 - 122 - - uid: 18132 + - uid: 18113 components: - type: Transform pos: 46.5,10.5 @@ -140375,25 +140396,25 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 18133 + - uid: 18114 components: - type: Transform pos: 49.5,8.5 parent: 2 - - uid: 18134 + - uid: 18115 components: - type: Transform pos: 13.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - uid: 18135 + - 17908 + - uid: 18116 components: - type: Transform pos: 10.5,41.5 parent: 2 - - uid: 18136 + - uid: 18117 components: - type: Transform pos: 49.5,0.5 @@ -140402,7 +140423,7 @@ entities: deviceLists: - 86 - 70 - - uid: 18137 + - uid: 18118 components: - type: Transform rot: 3.141592653589793 rad @@ -140410,28 +140431,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 - - uid: 18138 + - 17959 + - uid: 18119 components: - type: Transform pos: 12.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17975 - - 17977 + - 17957 + - 17959 - 79 - - uid: 18139 + - uid: 18120 components: - type: Transform pos: 5.5,38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17975 - - 17976 + - 17957 + - 17958 - 79 - - uid: 18140 + - uid: 18121 components: - type: Transform pos: 49.5,-0.5 @@ -140440,54 +140461,54 @@ entities: deviceLists: - 86 - 70 - - uid: 18141 + - uid: 18122 components: - type: Transform pos: -11.5,-65.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - 115 - - uid: 18142 + - uid: 18123 components: - type: Transform pos: -3.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - uid: 18143 + - 17974 + - uid: 18124 components: - type: Transform pos: -16.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 + - 17978 - 107 - - uid: 18144 + - uid: 18125 components: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 18145 + - uid: 18126 components: - type: Transform pos: 1.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 + - 17939 + - 17988 - 122 - - uid: 18146 + - uid: 18127 components: - type: Transform pos: -38.5,-73.5 parent: 2 - - uid: 18147 + - uid: 18128 components: - type: Transform rot: -1.5707963267948966 rad @@ -140495,9 +140516,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18001 - - 18003 - - uid: 18148 + - 17983 + - 17985 + - uid: 18129 components: - type: Transform rot: -1.5707963267948966 rad @@ -140505,9 +140526,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 18001 - - uid: 18149 + - 17980 + - 17983 + - uid: 18130 components: - type: Transform rot: 3.141592653589793 rad @@ -140515,9 +140536,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18150 + - uid: 18131 components: - type: Transform rot: -1.5707963267948966 rad @@ -140525,9 +140546,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 18002 - - uid: 18151 + - 17980 + - 17984 + - uid: 18132 components: - type: Transform rot: -1.5707963267948966 rad @@ -140535,64 +140556,64 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18002 - - 18003 - - uid: 18152 + - 17984 + - 17985 + - uid: 18133 components: - type: Transform pos: 41.5,-29.5 parent: 2 - - uid: 18153 + - uid: 18134 components: - type: Transform pos: 11.5,28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17973 - - 17974 + - 17955 + - 17956 - 79 - - uid: 18154 + - uid: 18135 components: - type: Transform pos: -2.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 - - 17959 + - 17988 + - 17941 - 123 - - uid: 18155 + - uid: 18136 components: - type: Transform pos: 41.5,-45.5 parent: 2 - - uid: 18156 + - uid: 18137 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 18157 + - uid: 18138 components: - type: Transform pos: -23.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17998 - - 17997 + - 17980 + - 17979 - 107 - - uid: 18158 + - uid: 18139 components: - type: Transform pos: -11.5,-66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - 115 - - uid: 18159 + - uid: 18140 components: - type: Transform rot: 3.141592653589793 rad @@ -140600,54 +140621,54 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17944 - - 17941 + - 17926 + - 17923 - 59 - - uid: 18160 + - uid: 18141 components: - type: Transform pos: -58.5,55.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17946 - - 17945 + - 17928 + - 17927 - 56 - - uid: 18161 + - uid: 18142 components: - type: Transform pos: 4.5,32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17973 - - 17975 + - 17955 + - 17957 - 79 - - uid: 18162 + - uid: 18143 components: - type: Transform pos: -2.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 - - 17959 + - 17988 + - 17941 - 123 - - uid: 18163 + - uid: 18144 components: - type: Transform pos: 51.5,-45.5 parent: 2 - - uid: 18164 + - uid: 18145 components: - type: Transform pos: -58.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17946 + - 17928 - 56 - - uid: 18165 + - uid: 18146 components: - type: Transform pos: 47.5,10.5 @@ -140655,154 +140676,154 @@ entities: - type: DeviceNetwork deviceLists: - 86 - - uid: 18166 + - uid: 18147 components: - type: Transform pos: 36.5,-48.5 parent: 2 - - uid: 18167 + - uid: 18148 components: - type: Transform pos: 1.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 + - 17939 + - 17988 - 122 - - uid: 18168 + - uid: 18149 components: - type: Transform pos: -2.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 - - 17959 + - 17988 + - 17941 - 123 - - uid: 18169 + - uid: 18150 components: - type: Transform pos: -14.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 - - uid: 18170 + - 17978 + - uid: 18151 components: - type: Transform pos: 17.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17955 - - 17978 - - 17979 + - 17936 + - 17937 + - 17960 + - 17961 - 112 - - uid: 18171 + - uid: 18152 components: - type: Transform pos: 6.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17954 + - 17935 + - 17936 - 95 - - uid: 18172 + - uid: 18153 components: - type: Transform pos: 16.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17955 - - 17978 - - 17979 - - 17927 + - 17937 + - 17960 + - 17961 + - 17909 - 112 - - uid: 18173 + - uid: 18154 components: - type: Transform pos: 26.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 + - 17960 + - 17961 - 85 - - uid: 18174 + - uid: 18155 components: - type: Transform pos: -0.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17994 + - 17976 - 113 - - uid: 18175 + - uid: 18156 components: - type: Transform pos: -44.5,9.5 parent: 2 - - uid: 18176 + - uid: 18157 components: - type: Transform pos: 4.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17973 + - 17935 + - 17955 - 95 - 79 - - uid: 18177 + - uid: 18158 components: - type: Transform pos: 4.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 - - 17926 + - 17939 + - 17988 + - 17908 - 122 - 117 - - uid: 18178 + - uid: 18159 components: - type: Transform pos: 12.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 - - 17926 + - 17939 + - 17988 + - 17908 - 122 - 117 - - uid: 18179 + - uid: 18160 components: - type: Transform pos: -1.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - 17993 + - 17974 + - 17975 - 87 - 113 - - uid: 18180 + - uid: 18161 components: - type: Transform pos: 15.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - 17988 + - 17908 + - 17970 - 117 - - uid: 18181 + - uid: 18162 components: - type: Transform pos: 91.5,15.5 @@ -140810,7 +140831,7 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 18182 + - uid: 18163 components: - type: Transform pos: -12.5,-44.5 @@ -140819,119 +140840,119 @@ entities: deviceLists: - 108 - 110 - - uid: 18183 + - uid: 18164 components: - type: Transform pos: 16.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17955 - - 17978 - - 17979 + - 17936 + - 17937 + - 17960 + - 17961 - 112 - - uid: 18184 + - uid: 18165 components: - type: Transform pos: 15.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 18009 + - 17938 + - 17991 - 65 - 118 - - uid: 18185 + - uid: 18166 components: - type: Transform pos: 7.5,70.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 76 - - uid: 18186 + - uid: 18167 components: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 18187 + - uid: 18168 components: - type: Transform pos: -16.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17960 - - 18007 + - 17942 + - 17989 - 124 - 65 - - uid: 18188 + - uid: 18169 components: - type: Transform pos: -7.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17953 + - 17934 + - 17935 - 95 - - uid: 18189 + - uid: 18170 components: - type: Transform pos: 18.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17955 - - 17978 - - 17979 + - 17936 + - 17937 + - 17960 + - 17961 - 112 - - uid: 18190 + - uid: 18171 components: - type: Transform pos: -8.5,43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18191 + - uid: 18172 components: - type: Transform pos: -43.5,-27.5 parent: 2 - - uid: 18192 + - uid: 18173 components: - type: Transform pos: -43.5,-26.5 parent: 2 - - uid: 18193 + - uid: 18174 components: - type: Transform pos: 6.5,70.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 76 - - uid: 18194 + - uid: 18175 components: - type: Transform pos: -31.5,-27.5 parent: 2 - - uid: 18195 + - uid: 18176 components: - type: Transform pos: 15.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17937 - - uid: 18196 + - 17919 + - uid: 18177 components: - type: Transform pos: 92.5,15.5 @@ -140939,96 +140960,96 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 18197 + - uid: 18178 components: - type: Transform pos: 5.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 - - 17926 + - 17939 + - 17988 + - 17908 - 122 - 117 - - uid: 18198 + - uid: 18179 components: - type: Transform pos: 5.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - 17990 + - 17908 + - 17972 - 117 - - uid: 18199 + - uid: 18180 components: - type: Transform pos: 15.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17937 - - uid: 18200 + - 17919 + - uid: 18181 components: - type: Transform pos: -16.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17960 + - 17941 + - 17942 - 124 - 123 - - uid: 18201 + - uid: 18182 components: - type: Transform pos: -1.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 + - 17974 - 87 - - uid: 18202 + - uid: 18183 components: - type: Transform pos: 19.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 - - 17991 + - 17970 + - 17973 - 38 - - uid: 18203 + - uid: 18184 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - 17993 + - 17974 + - 17975 - 87 - 113 - - uid: 18204 + - uid: 18185 components: - type: Transform pos: 9.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17990 + - 17972 - 117 - - uid: 18205 + - uid: 18186 components: - type: Transform pos: -0.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 + - 17974 - 87 - - uid: 18206 + - uid: 18187 components: - type: Transform pos: -59.5,14.5 @@ -141036,50 +141057,50 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18207 + - uid: 18188 components: - type: Transform pos: -18.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17951 - - 17952 + - 17933 + - 17934 - 37 - 95 - - uid: 18208 + - uid: 18189 components: - type: Transform pos: -18.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17963 + - 17934 + - 17945 - 95 - 75 - - uid: 18209 + - uid: 18190 components: - type: Transform pos: -8.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18210 + - uid: 18191 components: - type: Transform pos: -12.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17996 + - 17941 + - 17978 - 123 - 102 - - uid: 18211 + - uid: 18192 components: - type: Transform rot: -1.5707963267948966 rad @@ -141087,203 +141108,203 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18003 - - 18004 - - uid: 18212 + - 17985 + - 17986 + - uid: 18193 components: - type: Transform pos: 17.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 40 - - uid: 18213 + - uid: 18194 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 18214 + - uid: 18195 components: - type: Transform pos: -31.5,-26.5 parent: 2 - - uid: 18215 + - uid: 18196 components: - type: Transform pos: 19.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17937 + - 17919 - 40 - - uid: 18216 + - uid: 18197 components: - type: Transform pos: -48.5,9.5 parent: 2 - - uid: 18217 + - uid: 18198 components: - type: Transform pos: -16.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17960 - - 18007 + - 17942 + - 17989 - 124 - 65 - - uid: 18218 + - uid: 18199 components: - type: Transform pos: 19.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17937 + - 17919 - 40 - - uid: 18219 + - uid: 18200 components: - type: Transform pos: -13.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17996 + - 17941 + - 17978 - 123 - 102 - - uid: 18220 + - uid: 18201 components: - type: Transform pos: -16.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17960 + - 17941 + - 17942 - 124 - 123 - - uid: 18221 + - uid: 18202 components: - type: Transform pos: 54.5,-10.5 parent: 2 - - uid: 18222 + - uid: 18203 components: - type: Transform pos: -20.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17934 - - 17951 + - 17916 + - 17933 - 53 - - uid: 18223 + - uid: 18204 components: - type: Transform pos: -28.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17949 - - 17950 + - 17931 + - 17932 - 53 - - uid: 18224 + - uid: 18205 components: - type: Transform pos: -28.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17949 - - 17950 + - 17931 + - 17932 - 53 - - uid: 18225 + - uid: 18206 components: - type: Transform pos: -20.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18226 + - uid: 18207 components: - type: Transform pos: -19.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18227 + - uid: 18208 components: - type: Transform pos: 28.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17991 - - 17936 + - 17973 + - 17918 - 38 - 39 - - uid: 18228 + - uid: 18209 components: - type: Transform pos: 26.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17991 - - 17936 + - 17973 + - 17918 - 38 - 39 - - uid: 18229 + - uid: 18210 components: - type: Transform pos: 27.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17991 - - 17936 + - 17973 + - 17918 - 38 - 39 - - uid: 18230 + - uid: 18211 components: - type: Transform pos: -20.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - 17998 + - 17940 + - 17980 - 108 - - uid: 18231 + - uid: 18212 components: - type: Transform pos: -2.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 + - 17978 - 102 - 87 - - uid: 18232 + - uid: 18213 components: - type: Transform pos: 26.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 98 - - uid: 18233 + - uid: 18214 components: - type: Transform pos: -20.5,-25.5 @@ -141291,47 +141312,47 @@ entities: - type: DeviceNetwork deviceLists: - 107 - - uid: 18234 + - uid: 18215 components: - type: Transform pos: -25.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17934 - - 17950 + - 17916 + - 17932 - 53 - - uid: 18235 + - uid: 18216 components: - type: Transform pos: -39.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - 17949 + - 17930 + - 17931 - 53 - - uid: 18236 + - uid: 18217 components: - type: Transform pos: -19.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17960 + - 17943 + - 17942 - 124 - - uid: 18237 + - uid: 18218 components: - type: Transform pos: -7.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17953 + - 17934 + - 17935 - 95 - - uid: 18238 + - uid: 18219 components: - type: Transform rot: 1.5707963267948966 rad @@ -141339,18 +141360,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 18239 + - uid: 18220 components: - type: Transform pos: -19.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18240 + - uid: 18221 components: - type: Transform rot: 1.5707963267948966 rad @@ -141358,85 +141379,85 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 18241 + - uid: 18222 components: - type: Transform pos: 0.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 + - 17988 - 87 - - uid: 18242 + - uid: 18223 components: - type: Transform pos: -12.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - uid: 18243 + - 17940 + - uid: 18224 components: - type: Transform pos: -20.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - 17961 + - 17932 + - 17943 - 53 - - uid: 18244 + - uid: 18225 components: - type: Transform pos: -20.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18245 + - uid: 18226 components: - type: Transform pos: -16.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18246 + - uid: 18227 components: - type: Transform pos: -20.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - 17961 + - 17932 + - 17943 - 53 - - uid: 18247 + - uid: 18228 components: - type: Transform pos: -39.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - 17949 + - 17930 + - 17931 - 53 - - uid: 18248 + - uid: 18229 components: - type: Transform pos: -1.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 + - 17988 - 87 - - uid: 18249 + - uid: 18230 components: - type: Transform rot: 1.5707963267948966 rad @@ -141444,20 +141465,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17940 + - 17922 - 74 - - uid: 18250 + - uid: 18231 components: - type: Transform pos: -16.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17960 + - 17941 + - 17942 - 124 - 123 - - uid: 18251 + - uid: 18232 components: - type: Transform pos: -13.5,-44.5 @@ -141466,43 +141487,43 @@ entities: deviceLists: - 108 - 110 - - uid: 18252 + - uid: 18233 components: - type: Transform pos: 1.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 + - 17908 - 87 - 117 - - uid: 18253 + - uid: 18234 components: - type: Transform pos: 1.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 + - 17908 - 87 - 117 - - uid: 18254 + - uid: 18235 components: - type: Transform pos: -23.5,51.5 parent: 2 - - uid: 18255 + - uid: 18236 components: - type: Transform pos: -19.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17951 - - 17952 + - 17933 + - 17934 - 37 - 95 - - uid: 18256 + - uid: 18237 components: - type: Transform pos: -14.5,-44.5 @@ -141511,7 +141532,7 @@ entities: deviceLists: - 108 - 110 - - uid: 18257 + - uid: 18238 components: - type: Transform rot: 3.141592653589793 rad @@ -141519,20 +141540,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17973 - - uid: 18258 + - 17955 + - uid: 18239 components: - type: Transform pos: 17.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17955 - - 17978 - - 17979 - - 17927 + - 17937 + - 17960 + - 17961 + - 17909 - 112 - - uid: 18259 + - uid: 18240 components: - type: Transform pos: 49.5,12.5 @@ -141540,7 +141561,7 @@ entities: - type: DeviceNetwork deviceLists: - 89 - - uid: 18260 + - uid: 18241 components: - type: Transform rot: 3.141592653589793 rad @@ -141548,21 +141569,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18261 + - uid: 18242 components: - type: Transform pos: 19.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 - - 17927 + - 17960 + - 17961 + - 17909 - 112 - 85 - - uid: 18262 + - uid: 18243 components: - type: Transform rot: 3.141592653589793 rad @@ -141570,17 +141591,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18263 + - uid: 18244 components: - type: Transform pos: -12.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 - - uid: 18264 + - 17978 + - uid: 18245 components: - type: Transform rot: -1.5707963267948966 rad @@ -141588,107 +141609,107 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18002 - - 18005 + - 17984 + - 17987 - 106 - - uid: 18265 + - uid: 18246 components: - type: Transform pos: 5.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17973 + - 17935 + - 17955 - 95 - 79 - - uid: 18266 + - uid: 18247 components: - type: Transform pos: 7.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17973 + - 17936 + - 17955 - 95 - 79 - - uid: 18267 + - uid: 18248 components: - type: Transform pos: 0.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17994 - - 17995 + - 17976 + - 17977 - 114 - - uid: 18268 + - uid: 18249 components: - type: Transform pos: -19.5,54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18012 - - 17968 + - 17994 + - 17950 - 75 - - uid: 18269 + - uid: 18250 components: - type: Transform pos: -18.5,54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18012 - - 17968 + - 17994 + - 17950 - 75 - - uid: 18270 + - uid: 18251 components: - type: Transform pos: -0.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17994 - - 17995 + - 17976 + - 17977 - 114 - - uid: 18271 + - uid: 18252 components: - type: Transform pos: -17.5,54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18012 - - 17968 + - 17994 + - 17950 - 75 - - uid: 18272 + - uid: 18253 components: - type: Transform pos: -1.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17994 - - 17995 + - 17976 + - 17977 - 114 - - uid: 18273 + - uid: 18254 components: - type: Transform pos: -8.5,42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18274 + - uid: 18255 components: - type: Transform pos: -31.5,-28.5 parent: 2 - - uid: 18275 + - uid: 18256 components: - type: Transform pos: 48.5,23.5 @@ -141697,7 +141718,7 @@ entities: deviceLists: - 90 - 91 - - uid: 18276 + - uid: 18257 components: - type: Transform rot: 3.141592653589793 rad @@ -141705,9 +141726,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18277 + - uid: 18258 components: - type: Transform rot: 3.141592653589793 rad @@ -141715,276 +141736,276 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17977 + - 17959 - 92 - - uid: 18278 + - uid: 18259 components: - type: Transform pos: 26.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 + - 17960 + - 17961 - 85 - - uid: 18279 + - uid: 18260 components: - type: Transform pos: 0.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 + - 17974 - 87 - - uid: 18280 + - uid: 18261 components: - type: Transform pos: 15.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - 17988 + - 17908 + - 17970 - 117 - - uid: 18281 + - uid: 18262 components: - type: Transform pos: 19.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 + - 17938 - 118 - 98 - - uid: 18282 + - uid: 18263 components: - type: Transform pos: -24.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - 17934 + - 17932 + - 17916 - 53 - - uid: 18283 + - uid: 18264 components: - type: Transform pos: -2.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17996 + - 17978 - 102 - 87 - - uid: 18284 + - uid: 18265 components: - type: Transform pos: 15.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 17957 - - 18006 + - 17938 + - 17939 + - 17988 - 122 - 118 - - uid: 18285 + - uid: 18266 components: - type: Transform pos: -18.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18286 + - uid: 18267 components: - type: Transform pos: -13.5,48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - 18012 + - 17949 + - 17994 - 77 - - uid: 18287 + - uid: 18268 components: - type: Transform pos: -13.5,50.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - 18012 + - 17949 + - 17994 - 77 - - uid: 18288 + - uid: 18269 components: - type: Transform pos: -39.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - 17949 + - 17930 + - 17931 - 53 - - uid: 18289 + - uid: 18270 components: - type: Transform pos: 2.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - 17990 + - 17974 + - 17972 - 117 - - uid: 18290 + - uid: 18271 components: - type: Transform pos: -50.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 18291 + - uid: 18272 components: - type: Transform pos: 19.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 + - 17938 - 118 - 98 - - uid: 18292 + - uid: 18273 components: - type: Transform pos: 5.5,70.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18014 + - 17996 - 76 - - uid: 18293 + - uid: 18274 components: - type: Transform pos: -28.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17949 - - 17950 + - 17931 + - 17932 - 53 - - uid: 18294 + - uid: 18275 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 18295 + - uid: 18276 components: - type: Transform pos: -16.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18296 + - uid: 18277 components: - type: Transform pos: -20.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17950 - - 17961 + - 17932 + - 17943 - 53 - - uid: 18297 + - uid: 18278 components: - type: Transform pos: -18.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17951 - - uid: 18298 + - 17943 + - 17933 + - uid: 18279 components: - type: Transform pos: 9.5,63.5 parent: 2 - - uid: 18299 + - uid: 18280 components: - type: Transform pos: -1.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17993 - - 17994 + - 17975 + - 17976 - 113 - - uid: 18300 + - uid: 18281 components: - type: Transform pos: 12.5,43.5 parent: 2 - - uid: 18301 + - uid: 18282 components: - type: Transform pos: -43.5,-28.5 parent: 2 - - uid: 18302 + - uid: 18283 components: - type: Transform pos: 15.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 18009 + - 17938 + - 17991 - 65 - 118 - - uid: 18303 + - uid: 18284 components: - type: Transform pos: 10.5,38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17975 + - 17957 - 79 - - uid: 18304 + - uid: 18285 components: - type: Transform pos: 19.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 - - 17991 + - 17970 + - 17973 - 38 - - uid: 18305 + - uid: 18286 components: - type: Transform pos: -14.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - uid: 18306 + - 17940 + - uid: 18287 components: - type: Transform pos: -0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17992 - - 17993 + - 17974 + - 17975 - 87 - 113 - - uid: 18307 + - uid: 18288 components: - type: Transform rot: 3.141592653589793 rad @@ -141992,61 +142013,61 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18005 + - 17987 - 106 - - uid: 18308 + - uid: 18289 components: - type: Transform pos: -8.5,41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18309 + - uid: 18290 components: - type: Transform pos: 12.5,36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17975 - - 17977 + - 17957 + - 17959 - 79 - - uid: 18310 + - uid: 18291 components: - type: Transform pos: 19.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 - - 17927 + - 17960 + - 17961 + - 17909 - 112 - 85 - - uid: 18311 + - uid: 18292 components: - type: Transform pos: -18.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18312 + - uid: 18293 components: - type: Transform pos: -17.5,59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17968 - - 17970 + - 17950 + - 17952 - 125 - 74 - - uid: 18313 + - uid: 18294 components: - type: Transform rot: 3.141592653589793 rad @@ -142054,9 +142075,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18005 + - 17987 - 106 - - uid: 18314 + - uid: 18295 components: - type: Transform pos: 52.5,20.5 @@ -142065,134 +142086,134 @@ entities: deviceLists: - 89 - 91 - - uid: 18315 + - uid: 18296 components: - type: Transform pos: 15.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 17957 - - 18006 + - 17938 + - 17939 + - 17988 - 122 - 118 - - uid: 18316 + - uid: 18297 components: - type: Transform pos: -20.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - 17998 + - 17940 + - 17980 - 108 - - uid: 18317 + - uid: 18298 components: - type: Transform pos: 19.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 + - 17938 - 118 - 98 - - uid: 18318 + - uid: 18299 components: - type: Transform pos: -17.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17951 - - uid: 18319 + - 17943 + - 17933 + - uid: 18300 components: - type: Transform pos: 0.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17993 - - 17994 + - 17975 + - 17976 - 113 - - uid: 18320 + - uid: 18301 components: - type: Transform pos: 19.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 - - 17991 + - 17970 + - 17973 - 38 - - uid: 18321 + - uid: 18302 components: - type: Transform pos: -44.5,18.5 parent: 2 - - uid: 18322 + - uid: 18303 components: - type: Transform pos: -17.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17951 - - 17952 + - 17933 + - 17934 - 37 - 95 - - uid: 18323 + - uid: 18304 components: - type: Transform pos: 11.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17957 - - 18006 - - 17926 + - 17939 + - 17988 + - 17908 - 122 - 117 - - uid: 18324 + - uid: 18305 components: - type: Transform pos: 16.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 40 - - uid: 18325 + - uid: 18306 components: - type: Transform pos: 25.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17936 + - 17918 - 39 - - uid: 18326 + - uid: 18307 components: - type: Transform pos: -0.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18006 + - 17988 - 87 - - uid: 18327 + - uid: 18308 components: - type: Transform pos: -5.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17996 + - 17941 + - 17978 - 123 - 102 - - uid: 18328 + - uid: 18309 components: - type: Transform rot: 3.141592653589793 rad @@ -142200,63 +142221,63 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17938 + - 17920 - 101 - - uid: 18329 + - uid: 18310 components: - type: Transform pos: 11.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17926 - - uid: 18330 + - 17908 + - uid: 18311 components: - type: Transform pos: -23.5,50.5 parent: 2 - - uid: 18331 + - uid: 18312 components: - type: Transform pos: -8.5,39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17966 - - 17972 + - 17948 + - 17954 - 54 - - uid: 18332 + - uid: 18313 components: - type: Transform pos: -17.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17960 + - 17943 + - 17942 - 124 - - uid: 18333 + - uid: 18314 components: - type: Transform pos: -6.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 17996 + - 17941 + - 17978 - 123 - 102 - - uid: 18334 + - uid: 18315 components: - type: Transform pos: -7.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17953 + - 17934 + - 17935 - 95 - - uid: 18335 + - uid: 18316 components: - type: Transform rot: -1.5707963267948966 rad @@ -142264,10 +142285,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18005 - - 18003 + - 17987 + - 17985 - 106 - - uid: 18336 + - uid: 18317 components: - type: Transform rot: 3.141592653589793 rad @@ -142275,10 +142296,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18010 - - 17938 + - 17992 + - 17920 - 101 - - uid: 18337 + - uid: 18318 components: - type: Transform rot: 3.141592653589793 rad @@ -142286,82 +142307,82 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17938 + - 17920 - 101 - - uid: 18338 + - uid: 18319 components: - type: Transform pos: 18.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17927 - - 17956 + - 17909 + - 17938 - 118 - - uid: 18339 + - uid: 18320 components: - type: Transform pos: 6.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17954 + - 17935 + - 17936 - 95 - - uid: 18340 + - uid: 18321 components: - type: Transform pos: 18.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17955 - - 17978 - - 17979 - - 17927 + - 17937 + - 17960 + - 17961 + - 17909 - 112 - - uid: 18341 + - uid: 18322 components: - type: Transform pos: 17.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17927 - - 17956 + - 17909 + - 17938 - 118 - - uid: 18342 + - uid: 18323 components: - type: Transform pos: 8.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - 17973 + - 17936 + - 17955 - 95 - 79 - - uid: 18343 + - uid: 18324 components: - type: Transform pos: 6.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17953 - - 17954 + - 17935 + - 17936 - 95 - - uid: 18344 + - uid: 18325 components: - type: Transform pos: 16.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17927 - - 17956 + - 17909 + - 17938 - 118 - - uid: 18345 + - uid: 18326 components: - type: Transform rot: 3.141592653589793 rad @@ -142369,38 +142390,38 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18010 - - 17938 + - 17992 + - 17920 - 101 - - uid: 18346 + - uid: 18327 components: - type: Transform pos: -18.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17960 + - 17943 + - 17942 - 124 - - uid: 18347 + - uid: 18328 components: - type: Transform pos: 26.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 98 - - uid: 18348 + - uid: 18329 components: - type: Transform pos: 9.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17990 + - 17972 - 117 - - uid: 18349 + - uid: 18330 components: - type: Transform pos: -57.5,16.5 @@ -142408,126 +142429,126 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18350 + - uid: 18331 components: - type: Transform pos: 18.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 40 - - uid: 18351 + - uid: 18332 components: - type: Transform pos: 25.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17936 + - 17918 - 39 - - uid: 18352 + - uid: 18333 components: - type: Transform pos: 38.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17980 + - 17962 - 86 - - uid: 18353 + - uid: 18334 components: - type: Transform pos: 38.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17980 + - 17962 - 86 - - uid: 18354 + - uid: 18335 components: - type: Transform pos: -17.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17963 + - 17934 + - 17945 - 95 - 75 - - uid: 18355 + - uid: 18336 components: - type: Transform pos: -19.5,25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17952 - - 17963 + - 17934 + - 17945 - 95 - 75 - - uid: 18356 + - uid: 18337 components: - type: Transform pos: -20.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17934 - - 17951 + - 17916 + - 17933 - 53 - - uid: 18357 + - uid: 18338 components: - type: Transform pos: 10.5,63.5 parent: 2 - - uid: 18358 + - uid: 18339 components: - type: Transform pos: -19.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17961 - - 17951 - - uid: 18359 + - 17943 + - 17933 + - uid: 18340 components: - type: Transform pos: 12.5,45.5 parent: 2 - - uid: 18360 + - uid: 18341 components: - type: Transform pos: 19.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 - - 17927 + - 17960 + - 17961 + - 17909 - 112 - 85 - - uid: 18361 + - uid: 18342 components: - type: Transform pos: 26.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17978 - - 17979 + - 17960 + - 17961 - 85 - - uid: 18362 + - uid: 18343 components: - type: Transform pos: 15.5,33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17974 - - 17977 + - 17956 + - 17959 - 79 - - uid: 18363 + - uid: 18344 components: - type: Transform pos: 49.5,16.5 @@ -142536,52 +142557,52 @@ entities: deviceLists: - 89 - 90 - - uid: 18364 + - uid: 18345 components: - type: Transform pos: -17.5,66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17970 + - 17952 - 74 - - uid: 18365 + - uid: 18346 components: - type: Transform pos: -20.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 - - 17998 + - 17940 + - 17980 - 108 - - uid: 18366 + - uid: 18347 components: - type: Transform pos: 15.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17956 - - 17957 - - 18006 + - 17938 + - 17939 + - 17988 - 122 - 118 - - uid: 18367 + - uid: 18348 components: - type: Transform pos: 26.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18010 + - 17992 - 98 - - uid: 18368 + - uid: 18349 components: - type: Transform pos: 2.5,-59.5 parent: 2 - - uid: 18369 + - uid: 18350 components: - type: Transform pos: 5.5,-62.5 @@ -142589,48 +142610,48 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18370 + - uid: 18351 components: - type: Transform pos: 7.5,-56.5 parent: 2 - - uid: 18371 + - uid: 18352 components: - type: Transform pos: 3.5,-65.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 18372 + - uid: 18353 components: - type: Transform pos: 3.5,-66.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 18373 + - uid: 18354 components: - type: Transform pos: 3.5,-74.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 18374 + - uid: 18355 components: - type: Transform pos: 3.5,-75.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17995 + - 17977 - 114 - - uid: 18375 + - uid: 18356 components: - type: Transform pos: 5.5,-78.5 @@ -142638,7 +142659,7 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18376 + - uid: 18357 components: - type: Transform pos: 7.5,-76.5 @@ -142646,7 +142667,7 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18377 + - uid: 18358 components: - type: Transform pos: 7.5,-74.5 @@ -142654,7 +142675,7 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18378 + - uid: 18359 components: - type: Transform pos: 5.5,-72.5 @@ -142662,7 +142683,7 @@ entities: - type: DeviceNetwork deviceLists: - 114 - - uid: 18379 + - uid: 18360 components: - type: Transform pos: 60.5,25.5 @@ -142670,7 +142691,7 @@ entities: - type: DeviceNetwork deviceLists: - 91 - - uid: 18380 + - uid: 18361 components: - type: Transform rot: -1.5707963267948966 rad @@ -142678,9 +142699,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17988 + - 17970 - 117 - - uid: 18381 + - uid: 18362 components: - type: Transform pos: 48.5,22.5 @@ -142689,67 +142710,67 @@ entities: deviceLists: - 90 - 91 - - uid: 18382 + - uid: 18363 components: - type: Transform pos: -117.5,20.5 parent: 2 - - uid: 18383 + - uid: 18364 components: - type: Transform pos: -119.5,20.5 parent: 2 - - uid: 18384 + - uid: 18365 components: - type: Transform pos: -120.5,23.5 parent: 2 - - uid: 18385 + - uid: 18366 components: - type: Transform pos: -116.5,23.5 parent: 2 - - uid: 18386 + - uid: 18367 components: - type: Transform pos: -117.5,27.5 parent: 2 - - uid: 18387 + - uid: 18368 components: - type: Transform pos: -119.5,27.5 parent: 2 - - uid: 18388 + - uid: 18369 components: - type: Transform pos: -120.5,40.5 parent: 2 - - uid: 18389 + - uid: 18370 components: - type: Transform pos: -120.5,39.5 parent: 2 - - uid: 18390 + - uid: 18371 components: - type: Transform pos: -116.5,40.5 parent: 2 - - uid: 18391 + - uid: 18372 components: - type: Transform pos: -116.5,39.5 parent: 2 - - uid: 18392 + - uid: 18373 components: - type: Transform pos: -119.5,44.5 parent: 2 - - uid: 18393 + - uid: 18374 components: - type: Transform pos: -117.5,44.5 parent: 2 - - uid: 18394 + - uid: 18375 components: - type: Transform pos: 79.5,9.5 @@ -142757,7 +142778,7 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 18395 + - uid: 18376 components: - type: Transform pos: 75.5,9.5 @@ -142765,7 +142786,7 @@ entities: - type: DeviceNetwork deviceLists: - 94 - - uid: 18396 + - uid: 18377 components: - type: Transform pos: 93.5,15.5 @@ -142773,12 +142794,12 @@ entities: - type: DeviceNetwork deviceLists: - 97 - - uid: 18397 + - uid: 18378 components: - type: Transform pos: 83.5,11.5 parent: 2 - - uid: 18398 + - uid: 18379 components: - type: Transform pos: 57.5,20.5 @@ -142787,59 +142808,59 @@ entities: deviceLists: - 89 - 91 - - uid: 18399 + - uid: 18380 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-39.5 parent: 2 - - uid: 18400 + - uid: 18381 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-32.5 parent: 2 - - uid: 18401 + - uid: 18382 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-42.5 parent: 2 - - uid: 18402 + - uid: 18383 components: - type: Transform pos: -13.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 + - 17940 - 108 - - uid: 18403 + - uid: 18384 components: - type: Transform pos: -14.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17958 + - 17940 - 108 - - uid: 18404 + - uid: 18385 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,61.5 parent: 2 - - uid: 18405 + - uid: 18386 components: - type: Transform pos: 90.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 + - 17997 - 34 - 96 - - uid: 18406 + - uid: 18387 components: - type: Transform rot: 3.141592653589793 rad @@ -142847,10 +142868,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17944 - - 17942 + - 17926 + - 17924 - 56 - - uid: 18407 + - uid: 18388 components: - type: Transform rot: 3.141592653589793 rad @@ -142858,9 +142879,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17944 + - 17926 - 56 - - uid: 18408 + - uid: 18389 components: - type: Transform rot: 3.141592653589793 rad @@ -142868,9 +142889,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 + - 17927 - 56 - - uid: 18409 + - uid: 18390 components: - type: Transform rot: 3.141592653589793 rad @@ -142878,9 +142899,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 + - 17927 - 56 - - uid: 18410 + - uid: 18391 components: - type: Transform rot: 3.141592653589793 rad @@ -142888,9 +142909,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 + - 17927 - 56 - - uid: 18411 + - uid: 18392 components: - type: Transform rot: 3.141592653589793 rad @@ -142898,10 +142919,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 - - 17944 + - 17927 + - 17926 - 56 - - uid: 18412 + - uid: 18393 components: - type: Transform rot: 3.141592653589793 rad @@ -142909,10 +142930,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 - - 17944 + - 17927 + - 17926 - 56 - - uid: 18413 + - uid: 18394 components: - type: Transform rot: 3.141592653589793 rad @@ -142920,10 +142941,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 - - 17944 + - 17927 + - 17926 - 56 - - uid: 18414 + - uid: 18395 components: - type: Transform rot: 3.141592653589793 rad @@ -142931,16 +142952,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17945 - - 17944 + - 17927 + - 17926 - 56 - - uid: 18415 + - uid: 18396 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,55.5 parent: 2 - - uid: 18416 + - uid: 18397 components: - type: Transform rot: 3.141592653589793 rad @@ -142948,10 +142969,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17947 - - 17944 + - 17929 + - 17926 - 58 - - uid: 18417 + - uid: 18398 components: - type: Transform rot: 3.141592653589793 rad @@ -142959,10 +142980,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17947 - - 17946 + - 17929 + - 17928 - 58 - - uid: 18418 + - uid: 18399 components: - type: Transform rot: 3.141592653589793 rad @@ -142970,10 +142991,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17944 - - 17941 + - 17926 + - 17923 - 59 - - uid: 18419 + - uid: 18400 components: - type: Transform rot: 3.141592653589793 rad @@ -142981,9 +143002,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 18420 + - uid: 18401 components: - type: Transform rot: 3.141592653589793 rad @@ -142991,9 +143012,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 59 - - uid: 18421 + - uid: 18402 components: - type: Transform rot: 3.141592653589793 rad @@ -143001,9 +143022,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 69 - - uid: 18422 + - uid: 18403 components: - type: Transform rot: 3.141592653589793 rad @@ -143011,17 +143032,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17941 + - 17923 - 69 - - uid: 18423 + - uid: 18404 components: - type: Transform pos: -45.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17948 - - uid: 18424 + - 17930 + - uid: 18405 components: - type: Transform rot: 3.141592653589793 rad @@ -143030,7 +143051,7 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18425 + - uid: 18406 components: - type: Transform rot: 3.141592653589793 rad @@ -143039,7 +143060,7 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18426 + - uid: 18407 components: - type: Transform rot: 3.141592653589793 rad @@ -143048,317 +143069,317 @@ entities: - type: DeviceNetwork deviceLists: - 69 - - uid: 18427 + - uid: 18408 components: - type: Transform pos: 90.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 + - 17997 - 34 - 96 - - uid: 18428 + - uid: 18409 components: - type: Transform pos: 90.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18015 + - 17997 - 34 - 96 - - uid: 18429 + - uid: 18410 components: - type: Transform pos: 15.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 18009 + - 17991 - 65 - 118 - - uid: 39199 + - uid: 39026 components: - type: Transform pos: -11.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39195 - - 38586 - - uid: 39200 + - 39022 + - 38413 + - uid: 39027 components: - type: Transform pos: 0.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39196 - - 38585 - - uid: 39201 + - 39023 + - 38412 + - uid: 39028 components: - type: Transform pos: -13.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39195 - - 38586 - - uid: 39202 + - 39022 + - 38413 + - uid: 39029 components: - type: Transform pos: -12.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39195 - - 38586 - - uid: 39203 + - 39022 + - 38413 + - uid: 39030 components: - type: Transform pos: -1.5,5.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39196 - - 38585 - - uid: 39204 + - 39023 + - 38412 + - uid: 39031 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39197 - - uid: 39205 + - 39024 + - uid: 39032 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39197 - - uid: 39206 + - 39024 + - uid: 39033 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39198 - - 38585 - - uid: 39207 + - 39025 + - 38412 + - uid: 39034 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 39198 - - 38585 + - 39025 + - 38412 - proto: Fireplace entities: - - uid: 18430 + - uid: 18411 components: - type: Transform pos: -31.5,-64.5 parent: 2 - - uid: 18431 + - uid: 18412 components: - type: Transform pos: -66.5,62.5 parent: 2 - - uid: 18432 + - uid: 18413 components: - type: Transform pos: 12.5,11.5 parent: 2 - - uid: 18433 + - uid: 18414 components: - type: Transform pos: 74.5,-36.5 parent: 2 - - uid: 18434 + - uid: 18415 components: - type: Transform pos: -58.5,-47.5 parent: 2 - proto: Flare entities: - - uid: 39208 + - uid: 39035 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,18.5 - parent: 38584 - - uid: 39209 + parent: 38411 + - uid: 39036 components: - type: Transform pos: -21.5,14.5 - parent: 38584 + parent: 38411 - proto: Flash entities: - - uid: 18435 + - uid: 18416 components: - type: Transform pos: -2.5,14.5 parent: 2 - type: Physics canCollide: False - - uid: 18436 + - uid: 18417 components: - type: Transform pos: -2.4961772,18.561342 parent: 2 - type: Physics canCollide: False - - uid: 18437 + - uid: 18418 components: - type: Transform pos: 6.5070233,-63.406696 parent: 2 - - uid: 39210 + - uid: 39037 components: - type: Transform pos: 11.573968,-1.4984436 - parent: 38584 + parent: 38411 - proto: FlashlightLantern entities: - - uid: 18438 + - uid: 18419 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 10.564044,-11.592889 parent: 2 - - uid: 18439 + - uid: 18420 components: - type: Transform pos: -21.577547,-20.497307 parent: 2 - type: Physics canCollide: False - - uid: 18440 + - uid: 18421 components: - type: Transform pos: -41.430576,-13.417048 parent: 2 - type: Physics canCollide: False - - uid: 18441 + - uid: 18422 components: - type: Transform pos: -32.45189,8.994322 parent: 2 - - uid: 18442 + - uid: 18423 components: - type: Transform pos: 43.5,-37.5 parent: 2 - type: Physics canCollide: False - - uid: 18443 + - uid: 18424 components: - type: Transform pos: -54.540287,-4.510069 parent: 2 - type: Physics canCollide: False - - uid: 18444 + - uid: 18425 components: - type: Transform pos: -31.482824,-41.00041 parent: 2 - - uid: 18445 + - uid: 18426 components: - type: Transform pos: -24.546297,-21.591057 parent: 2 - type: Physics canCollide: False - - uid: 39211 + - uid: 39038 components: - type: Transform pos: -5.4909115,18.430878 - parent: 38584 - - uid: 39212 + parent: 38411 + - uid: 39039 components: - type: Transform pos: -5.623672,18.60788 - parent: 38584 + parent: 38411 - proto: FlippoLighter entities: - - uid: 1258 - components: - - type: Transform - pos: -60.662537,-23.4141 - parent: 2 - - uid: 14518 + - uid: 14460 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 18427 + components: + - type: Transform + pos: -60.662537,-23.4141 + parent: 2 - proto: Floodlight entities: - - uid: 39213 + - uid: 39040 components: - type: Transform pos: -10.5,36.5 - parent: 38584 + parent: 38411 - proto: FloodlightBroken entities: - - uid: 18446 + - uid: 18428 components: - type: Transform pos: -43.375755,-37.271347 parent: 2 - - uid: 18447 + - uid: 18429 components: - type: Transform pos: 45.04216,-33.29468 parent: 2 - - uid: 18448 + - uid: 18430 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -55.49322,-22.298454 parent: 2 - - uid: 18449 + - uid: 18431 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 40.31192,-35.506004 parent: 2 - - uid: 18450 + - uid: 18432 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 40.671295,-35.45913 parent: 2 - - uid: 39214 + - uid: 39041 components: - type: Transform pos: -6.5,21.5 - parent: 38584 - - uid: 39215 + parent: 38411 + - uid: 39042 components: - type: Transform pos: -2.5,13.5 - parent: 38584 - - uid: 39216 + parent: 38411 + - uid: 39043 components: - type: Transform pos: -6.5,31.5 - parent: 38584 + parent: 38411 - proto: FloorDrain entities: - - uid: 18451 + - uid: 18433 components: - type: Transform rot: -1.5707963267948966 rad @@ -143366,49 +143387,49 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18452 + - uid: 18434 components: - type: Transform pos: 93.5,6.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18453 + - uid: 18435 components: - type: Transform pos: 97.5,-2.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18454 + - uid: 18436 components: - type: Transform pos: 21.5,-14.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18455 + - uid: 18437 components: - type: Transform pos: 6.5,-49.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18456 + - uid: 18438 components: - type: Transform pos: -6.5,46.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18457 + - uid: 18439 components: - type: Transform pos: 5.5,-30.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18459 + - uid: 18440 components: - type: Transform rot: 1.5707963267948966 rad @@ -143416,21 +143437,21 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18460 + - uid: 18441 components: - type: Transform pos: 3.5,51.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18461 + - uid: 18442 components: - type: Transform pos: 9.5,-50.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18462 + - uid: 18443 components: - type: Transform rot: 1.5707963267948966 rad @@ -143438,7 +143459,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18463 + - uid: 18444 components: - type: Transform rot: 1.5707963267948966 rad @@ -143446,14 +143467,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18464 + - uid: 18445 components: - type: Transform pos: 5.5,-33.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18465 + - uid: 18446 components: - type: Transform rot: -1.5707963267948966 rad @@ -143461,7 +143482,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18466 + - uid: 18447 components: - type: Transform rot: -1.5707963267948966 rad @@ -143469,7 +143490,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 37916 + - uid: 18448 components: - type: Transform rot: 3.141592653589793 rad @@ -143477,235 +143498,235 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 39217 + - uid: 39044 components: - type: Transform pos: -24.5,27.5 - parent: 38584 + parent: 38411 - type: Fixtures fixtures: {} - - uid: 39218 + - uid: 39045 components: - type: Transform pos: -12.5,13.5 - parent: 38584 + parent: 38411 - type: Fixtures fixtures: {} - - uid: 39219 + - uid: 39046 components: - type: Transform pos: 3.5,-9.5 - parent: 38584 + parent: 38411 - type: Fixtures fixtures: {} - proto: FloorWaterEntity entities: - - uid: 18467 + - uid: 18449 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,56.5 parent: 2 - - uid: 18468 + - uid: 18450 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,57.5 parent: 2 - - uid: 18469 + - uid: 18451 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,58.5 parent: 2 - - uid: 18470 + - uid: 18452 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,58.5 parent: 2 - - uid: 18471 + - uid: 18453 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,58.5 parent: 2 - - uid: 18472 + - uid: 18454 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,57.5 parent: 2 - - uid: 18473 + - uid: 18455 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,56.5 parent: 2 - - uid: 18474 + - uid: 18456 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,57.5 parent: 2 - - uid: 18475 + - uid: 18457 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,56.5 parent: 2 - - uid: 18476 + - uid: 18458 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,40.5 parent: 2 - - uid: 18477 + - uid: 18459 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,41.5 parent: 2 - - uid: 18478 + - uid: 18460 components: - type: Transform pos: -52.5,-42.5 parent: 2 - - uid: 18485 + - uid: 18461 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,41.5 parent: 2 - - uid: 18486 + - uid: 18462 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,42.5 parent: 2 - - uid: 18487 + - uid: 18463 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,41.5 parent: 2 - - uid: 18526 + - uid: 18464 components: - type: Transform pos: -51.5,-42.5 parent: 2 - proto: FloraGreyStalagmite2 entities: - - uid: 39220 + - uid: 39047 components: - type: Transform pos: -22.5,12.5 - parent: 38584 + parent: 38411 - proto: FloraGreyStalagmite3 entities: - - uid: 39221 + - uid: 39048 components: - type: Transform pos: -17.5,18.5 - parent: 38584 + parent: 38411 - proto: FloraGreyStalagmite5 entities: - - uid: 39222 + - uid: 39049 components: - type: Transform pos: -17.5,15.5 - parent: 38584 + parent: 38411 - proto: FloraGreyStalagmite6 entities: - - uid: 39223 + - uid: 39050 components: - type: Transform pos: -23.5,17.5 - parent: 38584 + parent: 38411 - proto: FloraRockSolid01 entities: - - uid: 18534 + - uid: 18465 components: - type: Transform pos: -1.4489589,0.646965 parent: 2 - - uid: 39224 + - uid: 39051 components: - type: Transform pos: -5.5,23.5 - parent: 38584 + parent: 38411 - proto: FloraRockSolid02 entities: - - uid: 18535 + - uid: 18466 components: - type: Transform pos: 0.39479113,-1.821785 parent: 2 - - uid: 18536 + - uid: 18467 components: - type: Transform pos: 0.47903633,5.6187086 parent: 2 - - uid: 39225 + - uid: 39052 components: - type: Transform pos: -0.5,20.5 - parent: 38584 + parent: 38411 - proto: FloraRockSolid03 entities: - - uid: 39226 + - uid: 39053 components: - type: Transform pos: -6.5,16.5 - parent: 38584 + parent: 38411 - proto: FloraStalagmite3 entities: - - uid: 39227 + - uid: 39054 components: - type: Transform pos: -20.5,18.5 - parent: 38584 + parent: 38411 - proto: FloraStalagmite6 entities: - - uid: 39228 + - uid: 39055 components: - type: Transform pos: -19.5,13.5 - parent: 38584 - - uid: 39229 + parent: 38411 + - uid: 39056 components: - type: Transform pos: -26.5,14.5 - parent: 38584 + parent: 38411 - proto: FloraTree02 entities: - - uid: 18538 + - uid: 18468 components: - type: Transform rot: 3.141592653589793 rad pos: 70.738884,-20.49512 parent: 2 - - uid: 18539 + - uid: 18469 components: - type: Transform pos: 4.0811877,-2.14328 parent: 2 - proto: FloraTree03 entities: - - uid: 18541 + - uid: 18470 components: - type: Transform rot: 3.141592653589793 rad pos: 69.794815,-17.294529 parent: 2 - - uid: 18542 + - uid: 18471 components: - type: Transform pos: -3.0119271,7.6560354 parent: 2 - proto: FloraTree04 entities: - - uid: 18544 + - uid: 18472 components: - type: Transform rot: 3.141592653589793 rad @@ -143713,7 +143734,7 @@ entities: parent: 2 - proto: FloraTree05 entities: - - uid: 18546 + - uid: 18473 components: - type: Transform rot: 3.141592653589793 rad @@ -143721,220 +143742,220 @@ entities: parent: 2 - proto: FloraTree06 entities: - - uid: 18548 + - uid: 18474 components: - type: Transform rot: 3.141592653589793 rad pos: 73.26779,-22.751753 parent: 2 - - uid: 18549 + - uid: 18475 components: - type: Transform pos: 2.3427134,5.0341353 parent: 2 - proto: FloraTreeLarge01 entities: - - uid: 18550 + - uid: 18476 components: - type: Transform pos: 4.112849,2.8949628 parent: 2 - proto: FloraTreeLarge02 entities: - - uid: 18551 + - uid: 18477 components: - type: Transform pos: 2.2234614,7.1702766 parent: 2 - proto: FloraTreeLarge03 entities: - - uid: 18552 + - uid: 18478 components: - type: Transform pos: -4.147752,-4.6437526 parent: 2 - proto: FloraTreeLarge04 entities: - - uid: 18553 + - uid: 18479 components: - type: Transform pos: 3.3740466,-5.392638 parent: 2 - proto: FloraTreeLarge05 entities: - - uid: 18554 + - uid: 18480 components: - type: Transform pos: -4.3138037,2.4245863 parent: 2 - proto: FloraTreeLarge06 entities: - - uid: 18555 + - uid: 18481 components: - type: Transform pos: 2.6967456,-1.0283407 parent: 2 - proto: FoamCutlass entities: - - uid: 18556 + - uid: 18482 components: - type: Transform pos: 63.532574,-25.28283 parent: 2 - proto: FolderSpawner entities: - - uid: 18557 + - uid: 18483 components: - type: Transform pos: -21.40159,-7.2613006 parent: 2 - - uid: 18558 + - uid: 18484 components: - type: Transform pos: -34.63679,-11.336835 parent: 2 - - uid: 18559 + - uid: 18485 components: - type: Transform rot: 3.141593671850739 rad pos: 89.5021,7.0654483 parent: 2 - - uid: 18560 + - uid: 18486 components: - type: Transform rot: -1.5707953085339508 rad pos: 89.53335,5.5966983 parent: 2 - - uid: 18561 + - uid: 18487 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -40.551723,45.58613 parent: 2 - - uid: 18562 + - uid: 18488 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -40.2236,45.64863 parent: 2 - - uid: 39230 + - uid: 39057 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.540835,-3.5897217 - parent: 38584 - - uid: 39231 + parent: 38411 + - uid: 39058 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.46271,-3.4178467 - parent: 38584 + parent: 38411 - proto: FoodApple entities: - - uid: 18563 + - uid: 18489 components: - type: Transform pos: 54.711014,-32.317398 parent: 2 - - uid: 18564 + - uid: 18490 components: - type: Transform pos: 54.06518,-32.306984 parent: 2 - - uid: 18565 + - uid: 18491 components: - type: Transform pos: 54.523514,-32.056984 parent: 2 - - uid: 18566 + - uid: 18492 components: - type: Transform pos: 54.804764,-32.025734 parent: 2 - - uid: 18567 + - uid: 18493 components: - type: Transform pos: 54.148514,-32.015316 parent: 2 - - uid: 18568 + - uid: 18494 components: - type: Transform pos: 54.367264,-32.296566 parent: 2 - - uid: 18569 + - uid: 18495 components: - type: Transform pos: 54.66935,-32.588234 parent: 2 - - uid: 18570 + - uid: 18496 components: - type: Transform pos: 54.336014,-32.598648 parent: 2 - - uid: 18571 + - uid: 18497 components: - type: Transform pos: 54.023514,-32.556984 parent: 2 - - uid: 18572 + - uid: 18498 components: - type: Transform pos: 41.638454,28.788233 parent: 2 - - uid: 18573 + - uid: 18499 components: - type: Transform pos: 41.46658,28.678858 parent: 2 - proto: FoodBakedBunHoney entities: - - uid: 18574 + - uid: 18500 components: - type: Transform pos: -4.476065,0.6295253 parent: 2 - - uid: 18575 + - uid: 18501 components: - type: Transform pos: -4.3433046,0.43778455 parent: 2 - proto: FoodBowlBig entities: - - uid: 18576 + - uid: 18502 components: - type: Transform pos: -33.467182,33.860477 parent: 2 - - uid: 18577 + - uid: 18503 components: - type: Transform pos: -7.465625,19.183668 parent: 2 - proto: FoodBowlBigTrash entities: - - uid: 18578 + - uid: 18504 components: - type: Transform pos: -49.54448,-27.797909 parent: 2 - proto: FoodBoxDonkpocket entities: - - uid: 18579 + - uid: 18505 components: - type: Transform pos: 66.341736,30.67312 parent: 2 - - uid: 18580 + - uid: 18506 components: - type: Transform pos: 66.70111,30.704372 parent: 2 - - uid: 18581 + - uid: 18507 components: - type: Transform pos: -25.508055,-41.314716 parent: 2 - - uid: 18582 + - uid: 18508 components: - type: Transform pos: 22.522692,35.55459 @@ -143943,7 +143964,7 @@ entities: canCollide: False - proto: FoodBoxDonkpocketDink entities: - - uid: 18583 + - uid: 18509 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -143951,39 +143972,39 @@ entities: parent: 2 - proto: FoodBoxDonkpocketHonk entities: - - uid: 18584 + - uid: 18510 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 40.643364,-41.538574 parent: 2 - - uid: 39232 + - uid: 39059 components: - type: Transform pos: -15.637382,-1.2746582 - parent: 38584 + parent: 38411 - proto: FoodBoxDonkpocketPizza entities: - - uid: 18585 + - uid: 18511 components: - type: Transform pos: 20.50782,65.64438 parent: 2 - - uid: 18586 + - uid: 18512 components: - type: Transform pos: -65.51054,17.856667 parent: 2 - type: Physics canCollide: False - - uid: 18587 + - uid: 18513 components: - type: Transform pos: 40.52972,-63.32987 parent: 2 - type: Physics canCollide: False - - uid: 18588 + - uid: 18514 components: - type: Transform pos: 35.400856,-27.347382 @@ -143992,154 +144013,154 @@ entities: canCollide: False - proto: FoodBoxDonkpocketSpicy entities: - - uid: 18589 + - uid: 18515 components: - type: Transform pos: 74.33829,-50.777576 parent: 2 - proto: FoodBoxDonkpocketStonk entities: - - uid: 18590 + - uid: 18516 components: - type: Transform pos: -41.5,63.5 parent: 2 - proto: FoodBoxDonkpocketTeriyaki entities: - - uid: 39233 + - uid: 39060 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,30.5 - parent: 38584 - - uid: 39234 + parent: 38411 + - uid: 39061 components: - type: Transform pos: -15.371757,-1.3996582 - parent: 38584 + parent: 38411 - proto: FoodBoxDonut entities: - - uid: 18592 + - uid: 18518 components: - type: Transform - parent: 18591 + parent: 18517 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18593 + - uid: 18519 components: - type: Transform - parent: 18591 + parent: 18517 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18594 + - uid: 18520 components: - type: Transform - parent: 18591 + parent: 18517 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18595 + - uid: 18521 components: - type: Transform pos: -27.471212,43.719692 parent: 2 - - uid: 18596 + - uid: 18522 components: - type: Transform pos: -25.321716,-4.558418 parent: 2 - - uid: 18597 + - uid: 18523 components: - type: Transform pos: 25.549309,-3.348259 parent: 2 - - uid: 18598 + - uid: 18524 components: - type: Transform pos: 6.5070233,-67.36797 parent: 2 - - uid: 18599 + - uid: 18525 components: - type: Transform pos: 27.483013,21.55246 parent: 2 - - uid: 18600 + - uid: 18526 components: - type: Transform pos: 27.279888,21.693085 parent: 2 - proto: FoodBoxPizza entities: - - uid: 18601 + - uid: 18527 components: - type: Transform pos: -33.40134,-62.290806 parent: 2 - - uid: 18602 + - uid: 18528 components: - type: Transform pos: -33.511417,-62.455917 parent: 2 - proto: FoodBoxPizzaFilled entities: - - uid: 18603 + - uid: 18529 components: - type: Transform pos: -67.37569,59.683838 parent: 2 - - uid: 18604 + - uid: 18530 components: - type: Transform pos: -23.501062,-14.235786 parent: 2 - - uid: 18605 + - uid: 18531 components: - type: Transform pos: -77.423294,-0.34625316 parent: 2 - - uid: 18606 + - uid: 18532 components: - type: Transform pos: -67.51631,59.699463 parent: 2 - proto: FoodBreadBaguette entities: - - uid: 18607 + - uid: 18533 components: - type: Transform pos: -24.528683,35.149998 parent: 2 - proto: FoodBreadMimana entities: - - uid: 18608 + - uid: 18534 components: - type: Transform pos: -4.516571,46.1589 parent: 2 - proto: FoodBreadMimanaSlice entities: - - uid: 13215 + - uid: 18535 components: - type: Transform pos: -6.252793,26.482012 parent: 2 - proto: FoodBurgerClown entities: - - uid: 18609 + - uid: 18536 components: - type: Transform pos: 48.450497,18.110199 parent: 2 - - uid: 18610 + - uid: 18537 components: - type: Transform pos: 11.430935,-63.542744 parent: 2 - proto: FoodBurgerCorgi entities: - - uid: 18611 + - uid: 18538 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144147,36 +144168,36 @@ entities: parent: 2 - proto: FoodBurgerMime entities: - - uid: 14853 + - uid: 14794 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodCakeApple entities: - - uid: 18616 + - uid: 18539 components: - type: Transform pos: 54.4506,-32.629898 parent: 2 - proto: FoodCakeBirthday entities: - - uid: 39235 + - uid: 39062 components: - type: Transform pos: -14.052798,-5.3416443 - parent: 38584 + parent: 38411 - proto: FoodCakeClownSlice entities: - - uid: 18617 + - uid: 18540 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -45.522625,-67.62831 parent: 2 - - uid: 18618 + - uid: 18541 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144184,29 +144205,29 @@ entities: parent: 2 - proto: FoodCakeSuppermatter entities: - - uid: 18619 + - uid: 18542 components: - type: Transform pos: -55.518852,48.499203 parent: 2 - proto: FoodCakeSuppermatterSlice entities: - - uid: 18620 + - uid: 18543 components: - type: Transform pos: -50.24872,47.597103 parent: 2 - - uid: 18621 + - uid: 18544 components: - type: Transform pos: -50.497658,47.810375 parent: 2 - - uid: 18622 + - uid: 18545 components: - type: Transform pos: -50.675472,47.52601 parent: 2 - - uid: 18623 + - uid: 18546 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144214,7 +144235,7 @@ entities: parent: 2 - proto: FoodCartCold entities: - - uid: 18624 + - uid: 18547 components: - type: Transform rot: -1.5707963267948966 rad @@ -144222,7 +144243,7 @@ entities: parent: 2 - proto: FoodCartHot entities: - - uid: 18625 + - uid: 18548 components: - type: Transform rot: -1.5707963267948966 rad @@ -144230,7 +144251,7 @@ entities: parent: 2 - proto: FoodCondimentBottleEnzyme entities: - - uid: 18626 + - uid: 18549 components: - type: Transform pos: -31.541601,34.63286 @@ -144239,35 +144260,35 @@ entities: canCollide: False - proto: FoodCondimentBottleHotsauce entities: - - uid: 18627 + - uid: 18550 components: - type: Transform pos: -39.703274,-66.17225 parent: 2 - proto: FoodCondimentPacketBbq entities: - - uid: 18628 + - uid: 18551 components: - type: Transform pos: -33.605064,38.70658 parent: 2 - proto: FoodCondimentPacketCornoil entities: - - uid: 18629 + - uid: 18552 components: - type: Transform pos: -33.32463,38.692204 parent: 2 - proto: FoodCondimentPacketPepper entities: - - uid: 18630 + - uid: 18553 components: - type: Transform pos: -33.498432,33.155624 parent: 2 - proto: FoodCondimentPacketSalt entities: - - uid: 18631 + - uid: 18554 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144275,88 +144296,88 @@ entities: parent: 2 - proto: FoodContainerEgg entities: - - uid: 18632 + - uid: 18555 components: - type: Transform pos: -33.451557,32.773823 parent: 2 - - uid: 18633 + - uid: 18556 components: - type: Transform pos: -29.51509,36.765392 parent: 2 - proto: FoodDonutCaramel entities: - - uid: 18634 + - uid: 18557 components: - type: Transform pos: 29.620113,-2.432455 parent: 2 - proto: FoodDonutJellyHomer entities: - - uid: 18635 + - uid: 18558 components: - type: Transform pos: -33.645515,-67.24581 parent: 2 - proto: FoodDonutPink entities: - - uid: 18636 + - uid: 18559 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -70.59498,-40.395683 parent: 2 - - uid: 18637 + - uid: 18560 components: - type: Transform pos: 53.454067,23.698614 parent: 2 - - uid: 18638 + - uid: 18561 components: - type: Transform pos: 50.629505,-3.0353012 parent: 2 - proto: FoodDonutPoison entities: - - uid: 18639 + - uid: 18562 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -70.37623,-40.176937 parent: 2 - - uid: 18640 + - uid: 18563 components: - type: Transform pos: 53.20498,23.627611 parent: 2 - - uid: 18641 + - uid: 18564 components: - type: Transform pos: 50.409355,-3.1270308 parent: 2 - proto: FoodDonutSpaceman entities: - - uid: 18642 + - uid: 18565 components: - type: Transform pos: -2.7197988,72.480545 parent: 2 - - uid: 18643 + - uid: 18566 components: - type: Transform pos: -33.388676,-67.527115 parent: 2 - proto: FoodDough entities: - - uid: 18644 + - uid: 18567 components: - type: Transform pos: -29.375431,34.56414 parent: 2 - proto: FoodEggBoiled entities: - - uid: 18645 + - uid: 18568 components: - type: MetaData name: совёнок инокентий @@ -144365,14 +144386,14 @@ entities: parent: 2 - proto: FoodEggChickenFertilized entities: - - uid: 18646 + - uid: 18569 components: - type: Transform pos: -32.667824,43.245087 parent: 2 - proto: FoodMealFries entities: - - uid: 18647 + - uid: 18570 components: - type: Transform rot: 6.283185307179586 rad @@ -144380,7 +144401,7 @@ entities: parent: 2 - proto: FoodMealFriesCarrot entities: - - uid: 18648 + - uid: 18571 components: - type: Transform rot: 6.283185307179586 rad @@ -144388,7 +144409,7 @@ entities: parent: 2 - proto: FoodMealFriesCheesy entities: - - uid: 18649 + - uid: 18572 components: - type: Transform rot: 6.283185307179586 rad @@ -144396,75 +144417,75 @@ entities: parent: 2 - proto: FoodMeat entities: - - uid: 15608 + - uid: 15591 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15609 + - uid: 15592 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15610 + - uid: 15593 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15611 + - uid: 15594 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15612 + - uid: 15595 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15613 + - uid: 15596 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15614 + - uid: 15597 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15615 + - uid: 15598 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15616 + - uid: 15599 components: - type: Transform - parent: 15607 + parent: 15590 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18650 + - uid: 18573 components: - type: Transform pos: -31.725548,26.72904 parent: 2 - - uid: 18651 + - uid: 18574 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144472,21 +144493,21 @@ entities: parent: 2 - proto: FoodMeatClown entities: - - uid: 18653 + - uid: 18576 components: - type: Transform - parent: 18652 + parent: 18575 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18654 + - uid: 18577 components: - type: Transform pos: -29.5472,-79.58566 parent: 2 - proto: FoodMeatCooked entities: - - uid: 18655 + - uid: 18578 components: - type: Transform pos: -30.539783,36.68206 @@ -144497,132 +144518,132 @@ entities: sleepingAllowed: False - proto: FoodMeatHuman entities: - - uid: 18658 + - uid: 18579 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -65.22045,-35.470676 parent: 2 - - uid: 18659 + - uid: 18580 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -69.67358,-36.595676 parent: 2 - - uid: 41030 + - uid: 18581 components: - type: Transform pos: -67.97772,-30.514738 parent: 2 - - uid: 41039 + - uid: 18582 components: - type: Transform pos: -66.54023,-22.462637 parent: 2 - - uid: 41040 + - uid: 18583 components: - type: Transform pos: -66.399605,-22.806387 parent: 2 - - uid: 41041 + - uid: 18584 components: - type: Transform pos: -66.993355,-22.368889 parent: 2 - proto: FoodMeatRotten entities: - - uid: 18660 + - uid: 18585 components: - type: Transform pos: 21.585947,68.61313 parent: 2 - - uid: 18661 + - uid: 18586 components: - type: Transform pos: -30.419586,-79.561264 parent: 2 - - uid: 18662 + - uid: 18587 components: - type: Transform pos: -30.6642,-79.73249 parent: 2 - proto: FoodMeatTomato entities: - - uid: 18665 + - uid: 18588 components: - type: Transform pos: -31.45379,-79.47242 parent: 2 - - uid: 18666 + - uid: 18589 components: - type: Transform pos: -31.620064,-79.64918 parent: 2 - proto: FoodMeatWheat entities: - - uid: 18667 + - uid: 18590 components: - type: Transform pos: -28.22093,-72.38955 parent: 2 - - uid: 18668 + - uid: 18591 components: - type: Transform pos: -28.61231,-72.544464 parent: 2 - proto: FoodMeatXeno entities: - - uid: 18669 + - uid: 18592 components: - type: Transform pos: -50.752796,-26.099058 parent: 2 - - uid: 18670 + - uid: 18593 components: - type: Transform pos: -49.815296,-26.74534 parent: 2 - proto: FoodMimana entities: - - uid: 13941 - components: - - type: Transform - pos: -6.3777933,26.669514 - parent: 2 - - uid: 13973 - components: - - type: Transform - pos: -6.205918,26.497637 - parent: 2 - - uid: 14854 + - uid: 14795 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14855 + - uid: 14796 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 18594 + components: + - type: Transform + pos: -6.3777933,26.669514 + parent: 2 + - uid: 18595 + components: + - type: Transform + pos: -6.205918,26.497637 + parent: 2 - proto: FoodNoodlesSpesslaw entities: - - uid: 18671 + - uid: 18596 components: - type: Transform pos: -4.413063,-63.23705 parent: 2 - proto: FoodPieApple entities: - - uid: 18672 + - uid: 18597 components: - type: Transform pos: 54.10685,-32.119484 parent: 2 - - uid: 18673 + - uid: 18598 components: - type: Transform pos: -30.604101,34.60161 @@ -144631,93 +144652,93 @@ entities: canCollide: False - proto: FoodPieBananaCream entities: - - uid: 18674 + - uid: 18599 components: - type: Transform pos: -40.59948,-69.13702 parent: 2 - - uid: 18675 + - uid: 18600 components: - type: Transform pos: -11.880426,54.523956 parent: 2 - - uid: 18676 + - uid: 18601 components: - type: Transform pos: -11.311705,54.652374 parent: 2 - - uid: 18677 + - uid: 18602 components: - type: Transform pos: -6.3456492,32.831375 parent: 2 - - uid: 18678 + - uid: 18603 components: - type: Transform pos: -11.183283,54.45057 parent: 2 - - uid: 18679 + - uid: 18604 components: - type: Transform pos: -11.586893,54.523956 parent: 2 - - uid: 18680 + - uid: 18605 components: - type: Transform pos: -6.2831492,32.675125 parent: 2 - - uid: 18681 + - uid: 18606 components: - type: Transform pos: -11.715314,54.76245 parent: 2 - - uid: 18682 + - uid: 18607 components: - type: Transform pos: -6.439399,32.597 parent: 2 - - uid: 18683 + - uid: 18608 components: - type: Transform pos: -6.4862742,32.737625 parent: 2 - - uid: 18684 + - uid: 18609 components: - type: Transform pos: -6.5175242,32.643875 parent: 2 - - uid: 18685 + - uid: 18610 components: - type: Transform pos: -6.517524,32.581375 parent: 2 - proto: FoodPieCherry entities: - - uid: 18686 + - uid: 18611 components: - type: Transform pos: 8.512606,-80.31556 parent: 2 - proto: FoodPieFrosty entities: - - uid: 18687 + - uid: 18612 components: - type: Transform pos: -5.4706492,32.64388 parent: 2 - - uid: 18688 + - uid: 18613 components: - type: Transform pos: -5.5487742,32.753254 parent: 2 - - uid: 18689 + - uid: 18614 components: - type: Transform pos: -5.4706492,32.659504 parent: 2 - proto: FoodPineapple entities: - - uid: 18690 + - uid: 18615 components: - type: MetaData desc: Ммм, творческая. @@ -144725,7 +144746,7 @@ entities: - type: Transform pos: 55.338768,-36.278233 parent: 2 - - uid: 18691 + - uid: 18616 components: - type: Transform rot: 1.5707973450558423 rad @@ -144733,95 +144754,95 @@ entities: parent: 2 - proto: FoodPizzaMeat entities: - - uid: 18692 + - uid: 18617 components: - type: Transform pos: -39.03059,-66.221176 parent: 2 - proto: FoodPlateSmall entities: - - uid: 18693 + - uid: 18618 components: - type: Transform pos: 67.441376,27.640116 parent: 2 - - uid: 18694 + - uid: 18619 components: - type: Transform pos: 67.441376,27.796366 parent: 2 - - uid: 18695 + - uid: 18620 components: - type: Transform pos: -24.540524,32.14744 parent: 2 - - uid: 18696 + - uid: 18621 components: - type: Transform pos: 67.441376,27.796366 parent: 2 - - uid: 18697 + - uid: 18622 components: - type: Transform pos: 67.441376,27.733866 parent: 2 - - uid: 18698 + - uid: 18623 components: - type: Transform pos: 67.441376,27.733866 parent: 2 - - uid: 18699 + - uid: 18624 components: - type: Transform pos: 67.441376,27.65574 parent: 2 - - uid: 18700 + - uid: 18625 components: - type: Transform pos: 67.441376,27.56199 parent: 2 - - uid: 18701 + - uid: 18626 components: - type: Transform pos: 67.441376,27.56199 parent: 2 - proto: FoodPlateSmallPlastic entities: - - uid: 18702 + - uid: 18627 components: - type: Transform pos: -24.555004,37.95691 parent: 2 - proto: FoodPlateSmallTrash entities: - - uid: 18703 + - uid: 18628 components: - type: Transform pos: 61.62888,23.479033 parent: 2 - proto: FoodPlateTrash entities: - - uid: 18704 + - uid: 18629 components: - type: Transform pos: 70.42368,22.7589 parent: 2 - - uid: 18705 + - uid: 18630 components: - type: Transform pos: -39.507633,-48.448273 parent: 2 - - uid: 18706 + - uid: 18631 components: - type: Transform pos: -37.521866,-35.583843 parent: 2 - - uid: 18707 + - uid: 18632 components: - type: Transform pos: 19.468113,68.79927 parent: 2 - - uid: 18708 + - uid: 18633 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144829,59 +144850,59 @@ entities: parent: 2 - proto: FoodPoppy entities: - - uid: 18709 + - uid: 18634 components: - type: Transform pos: 26.72148,15.605206 parent: 2 - proto: FoodSnackChips entities: - - uid: 18710 + - uid: 18635 components: - type: Transform pos: -30.542528,-62.437508 parent: 2 - - uid: 18711 + - uid: 18636 components: - type: Transform pos: -30.310146,-62.620964 parent: 2 - - uid: 18712 + - uid: 18637 components: - type: Transform rot: 3.141592653589793 rad pos: -63.706806,18.531712 parent: 2 - - uid: 18713 + - uid: 18638 components: - type: Transform rot: 3.141592653589793 rad pos: -63.97243,18.437962 parent: 2 - - uid: 18714 + - uid: 18639 components: - type: Transform pos: -63.479282,18.606667 parent: 2 - type: Physics canCollide: False - - uid: 18715 + - uid: 18640 components: - type: Transform rot: 6.283185307179586 rad pos: 63.321533,-13.739408 parent: 2 - - uid: 18716 + - uid: 18641 components: - type: Transform pos: 63.731422,-13.6798315 parent: 2 - - uid: 18717 + - uid: 18642 components: - type: Transform pos: 63.731422,-13.3618355 parent: 2 - - uid: 18718 + - uid: 18643 components: - type: Transform rot: 6.283185307179586 rad @@ -144889,54 +144910,54 @@ entities: parent: 2 - proto: FoodSnackChocolate entities: - - uid: 18719 + - uid: 18644 components: - type: Transform rot: 3.141592653589793 rad pos: -22.522848,-43.45425 parent: 2 - - uid: 18720 + - uid: 18645 components: - type: Transform pos: 14.422254,-52.26433 parent: 2 - - uid: 18721 + - uid: 18646 components: - type: Transform pos: 9.564638,7.080452 parent: 2 - - uid: 18722 + - uid: 18647 components: - type: Transform pos: -41.541843,-50.54525 parent: 2 - proto: FoodSnackSemki entities: - - uid: 18723 + - uid: 18648 components: - type: Transform pos: -71.73916,-20.629597 parent: 2 - - uid: 18724 + - uid: 18649 components: - type: Transform pos: -71.34853,-20.504597 parent: 2 - proto: FoodSnackSyndi entities: - - uid: 14898 + - uid: 14833 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18725 + - uid: 18650 components: - type: Transform pos: -45.591347,14.606249 parent: 2 - - uid: 18726 + - uid: 18651 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144944,19 +144965,19 @@ entities: parent: 2 - proto: FoodSoupClown entities: - - uid: 14835 + - uid: 14775 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18727 + - uid: 18652 components: - type: Transform pos: 11.5,68.5 parent: 2 - - uid: 18728 + - uid: 18653 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -144964,70 +144985,70 @@ entities: parent: 2 - proto: FoodTartMime entities: - - uid: 18729 + - uid: 18654 components: - type: Transform pos: -6.6746683,26.591387 parent: 2 - proto: FoodTartMimeSlice entities: - - uid: 14856 + - uid: 14797 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodTinBeans entities: - - uid: 18730 + - uid: 18655 components: - type: Transform pos: 33.65059,38.73095 parent: 2 - proto: FoodTinPeachesMaint entities: - - uid: 18731 + - uid: 18656 components: - type: Transform pos: -22.458153,54.69275 parent: 2 - type: Physics canCollide: False - - uid: 18732 + - uid: 18657 components: - type: Transform pos: 24.954596,57.524624 parent: 2 - proto: Football entities: - - uid: 18733 + - uid: 18658 components: - type: Transform pos: -43.695137,-47.651398 parent: 2 - proto: Fork entities: - - uid: 18735 + - uid: 18659 components: - type: Transform pos: -33.404682,37.962914 parent: 2 - proto: ForkPlastic entities: - - uid: 18736 + - uid: 18660 components: - type: Transform rot: 3.141592653589793 rad pos: 64.43857,27.615673 parent: 2 - - uid: 18737 + - uid: 18661 components: - type: Transform rot: 3.141592653589793 rad pos: 64.31357,27.631298 parent: 2 - - uid: 18738 + - uid: 18662 components: - type: Transform rot: 3.141592653589793 rad @@ -145035,7 +145056,7 @@ entities: parent: 2 - proto: FuelDispenser entities: - - uid: 18739 + - uid: 18663 components: - type: Transform rot: 3.141592653589793 rad @@ -145043,47 +145064,47 @@ entities: parent: 2 - proto: GasAnalyzer entities: - - uid: 18740 + - uid: 18664 components: - type: Transform pos: -54.587723,-4.552858 parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 18741 + - uid: 18665 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-45.5 parent: 2 - - uid: 18742 + - uid: 18666 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-63.5 parent: 2 - - uid: 18743 + - uid: 18667 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.500008,-50.500046 parent: 2 - - uid: 18744 + - uid: 18668 components: - type: Transform pos: -46.5,-30.5 parent: 2 - - uid: 18745 + - uid: 18669 components: - type: Transform pos: -44.5,-21.5 parent: 2 - - uid: 18746 + - uid: 18670 components: - type: Transform pos: 39.5,-63.5 parent: 2 - - uid: 18747 + - uid: 18671 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -145091,7 +145112,7 @@ entities: parent: 2 - proto: GasFilter entities: - - uid: 18748 + - uid: 18672 components: - type: Transform rot: -1.5707963267948966 rad @@ -145099,62 +145120,62 @@ entities: parent: 2 - proto: GasMinerCarbonDioxide entities: - - uid: 18749 + - uid: 18673 components: - type: Transform pos: -71.5,41.5 parent: 2 - proto: GasMinerNitrogenStation entities: - - uid: 39236 + - uid: 39063 components: - type: Transform pos: 17.5,2.5 - parent: 38584 + parent: 38411 - proto: GasMinerNitrogenStationLarge entities: - - uid: 18750 + - uid: 18674 components: - type: Transform pos: -71.5,37.5 parent: 2 - proto: GasMinerOxygenStation entities: - - uid: 39237 + - uid: 39064 components: - type: Transform pos: 17.5,4.5 - parent: 38584 + parent: 38411 - proto: GasMinerOxygenStationLarge entities: - - uid: 18751 + - uid: 18675 components: - type: Transform pos: -71.5,33.5 parent: 2 - proto: GasMinerWaterVapor entities: - - uid: 18752 + - uid: 18676 components: - type: Transform pos: -71.5,45.5 parent: 2 - proto: GasMixer entities: - - uid: 18753 + - uid: 18677 components: - type: Transform pos: 78.5,22.5 parent: 2 - type: GasMixer targetPressure: 4500 - - uid: 18754 + - uid: 18678 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-53.5 parent: 2 - - uid: 18755 + - uid: 18679 components: - type: Transform rot: 3.141592653589793 rad @@ -145162,7 +145183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18756 + - uid: 18680 components: - type: Transform rot: 1.5707963267948966 rad @@ -145171,7 +145192,7 @@ entities: - type: GasMixer inletTwoConcentration: 0.78 inletOneConcentration: 0.22 - - uid: 18757 + - uid: 18681 components: - type: Transform pos: -60.5,33.5 @@ -145183,44 +145204,44 @@ entities: color: '#17E8E2FF' - proto: GasMixerFlipped entities: - - uid: 18758 + - uid: 18682 components: - type: Transform pos: -22.5,-52.5 parent: 2 - - uid: 39238 + - uid: 39065 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasOutletInjector entities: - - uid: 18759 + - uid: 18683 components: - type: Transform pos: 75.5,27.5 parent: 2 - - uid: 18760 + - uid: 18684 components: - type: Transform pos: -55.5,53.5 parent: 2 - - uid: 18761 + - uid: 18685 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-38.5 parent: 2 - - uid: 18762 + - uid: 18686 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-43.5 parent: 2 - - uid: 18763 + - uid: 18687 components: - type: Transform rot: 1.5707963267948966 rad @@ -145228,7 +145249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18764 + - uid: 18688 components: - type: Transform rot: 1.5707963267948966 rad @@ -145236,7 +145257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18765 + - uid: 18689 components: - type: Transform rot: 1.5707963267948966 rad @@ -145244,7 +145265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18766 + - uid: 18690 components: - type: Transform rot: 1.5707963267948966 rad @@ -145252,7 +145273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18767 + - uid: 18691 components: - type: Transform rot: 1.5707963267948966 rad @@ -145260,7 +145281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18768 + - uid: 18692 components: - type: Transform rot: 1.5707963267948966 rad @@ -145268,7 +145289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18769 + - uid: 18693 components: - type: Transform rot: 1.5707963267948966 rad @@ -145278,7 +145299,7 @@ entities: color: '#FEF101FF' - proto: GasPassiveVent entities: - - uid: 18770 + - uid: 18694 components: - type: Transform rot: -1.5707963267948966 rad @@ -145286,7 +145307,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18771 + - uid: 18695 components: - type: Transform rot: 1.5707963267948966 rad @@ -145294,31 +145315,31 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18772 + - uid: 18696 components: - type: Transform pos: -66.5,61.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18773 + - uid: 18697 components: - type: Transform pos: -54.5,53.5 parent: 2 - - uid: 18774 + - uid: 18698 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-40.5 parent: 2 - - uid: 18775 + - uid: 18699 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,15.5 parent: 2 - - uid: 18776 + - uid: 18700 components: - type: Transform rot: 1.5707963267948966 rad @@ -145326,7 +145347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18777 + - uid: 18701 components: - type: Transform rot: 1.5707963267948966 rad @@ -145334,7 +145355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18778 + - uid: 18702 components: - type: Transform rot: 1.5707963267948966 rad @@ -145342,7 +145363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18779 + - uid: 18703 components: - type: Transform rot: 1.5707963267948966 rad @@ -145350,7 +145371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18780 + - uid: 18704 components: - type: Transform rot: 1.5707963267948966 rad @@ -145358,7 +145379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18781 + - uid: 18705 components: - type: Transform rot: 1.5707963267948966 rad @@ -145366,7 +145387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18782 + - uid: 18706 components: - type: Transform rot: 1.5707963267948966 rad @@ -145374,7 +145395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18783 + - uid: 18707 components: - type: Transform rot: 1.5707963267948966 rad @@ -145382,7 +145403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18784 + - uid: 18708 components: - type: Transform rot: 1.5707963267948966 rad @@ -145390,7 +145411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18785 + - uid: 18709 components: - type: Transform rot: 1.5707963267948966 rad @@ -145398,40 +145419,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18786 + - uid: 18710 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-45.5 parent: 2 - - uid: 39239 + - uid: 39066 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,4.5 - parent: 38584 - - uid: 39240 + parent: 38411 + - uid: 39067 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,6.5 - parent: 38584 - - uid: 39241 + parent: 38411 + - uid: 39068 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,2.5 - parent: 38584 + parent: 38411 - proto: GasPipeBend entities: - - uid: 18787 + - uid: 18711 components: - type: Transform pos: -2.5,50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18788 + - uid: 18712 components: - type: Transform rot: 3.141592653589793 rad @@ -145439,7 +145460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18789 + - uid: 18713 components: - type: Transform rot: -1.5707963267948966 rad @@ -145447,7 +145468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18790 + - uid: 18714 components: - type: Transform rot: 3.141592653589793 rad @@ -145455,14 +145476,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 18791 + - uid: 18715 components: - type: Transform pos: -59.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18792 + - uid: 18716 components: - type: Transform rot: 3.141592653589793 rad @@ -145470,7 +145491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18793 + - uid: 18717 components: - type: Transform rot: 3.141592653589793 rad @@ -145478,7 +145499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18794 + - uid: 18718 components: - type: Transform rot: -1.5707963267948966 rad @@ -145486,21 +145507,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18795 + - uid: 18719 components: - type: Transform pos: -52.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18796 + - uid: 18720 components: - type: Transform pos: -53.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18797 + - uid: 18721 components: - type: Transform rot: 3.141592653589793 rad @@ -145508,14 +145529,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18798 + - uid: 18722 components: - type: Transform pos: -58.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18799 + - uid: 18723 components: - type: Transform rot: 1.5707963267948966 rad @@ -145523,7 +145544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18800 + - uid: 18724 components: - type: Transform rot: 1.5707963267948966 rad @@ -145531,7 +145552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18801 + - uid: 18725 components: - type: Transform rot: -1.5707963267948966 rad @@ -145539,7 +145560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18802 + - uid: 18726 components: - type: Transform rot: 1.5707963267948966 rad @@ -145547,7 +145568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18803 + - uid: 18727 components: - type: Transform rot: 1.5707963267948966 rad @@ -145555,21 +145576,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18804 + - uid: 18728 components: - type: Transform pos: -52.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18805 + - uid: 18729 components: - type: Transform pos: -51.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18806 + - uid: 18730 components: - type: Transform rot: 1.5707963267948966 rad @@ -145577,7 +145598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18807 + - uid: 18731 components: - type: Transform rot: 3.141592653589793 rad @@ -145585,7 +145606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18808 + - uid: 18732 components: - type: Transform rot: 1.5707963267948966 rad @@ -145593,7 +145614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18809 + - uid: 18733 components: - type: Transform rot: 3.141592653589793 rad @@ -145601,7 +145622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18810 + - uid: 18734 components: - type: Transform rot: -1.5707963267948966 rad @@ -145609,7 +145630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18811 + - uid: 18735 components: - type: Transform rot: 1.5707963267948966 rad @@ -145617,7 +145638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18812 + - uid: 18736 components: - type: Transform rot: 3.141592653589793 rad @@ -145625,14 +145646,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18813 + - uid: 18737 components: - type: Transform pos: -64.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18814 + - uid: 18738 components: - type: Transform rot: 1.5707963267948966 rad @@ -145640,7 +145661,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18815 + - uid: 18739 components: - type: Transform rot: 3.141592653589793 rad @@ -145648,7 +145669,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18816 + - uid: 18740 components: - type: Transform rot: -1.5707963267948966 rad @@ -145656,7 +145677,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18817 + - uid: 18741 components: - type: Transform rot: -1.5707963267948966 rad @@ -145664,7 +145685,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18818 + - uid: 18742 components: - type: Transform rot: 3.141592653589793 rad @@ -145672,14 +145693,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18819 + - uid: 18743 components: - type: Transform pos: -60.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18820 + - uid: 18744 components: - type: Transform rot: 3.141592653589793 rad @@ -145687,21 +145708,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18821 + - uid: 18745 components: - type: Transform pos: -61.5,52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18822 + - uid: 18746 components: - type: Transform pos: -59.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18823 + - uid: 18747 components: - type: Transform rot: 3.141592653589793 rad @@ -145709,7 +145730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18824 + - uid: 18748 components: - type: Transform rot: 3.141592653589793 rad @@ -145717,7 +145738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18825 + - uid: 18749 components: - type: Transform rot: 1.5707963267948966 rad @@ -145725,14 +145746,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18826 + - uid: 18750 components: - type: Transform pos: -40.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18827 + - uid: 18751 components: - type: Transform rot: 1.5707963267948966 rad @@ -145740,7 +145761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18828 + - uid: 18752 components: - type: Transform rot: 3.141592653589793 rad @@ -145748,7 +145769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18829 + - uid: 18753 components: - type: Transform rot: 3.141592653589793 rad @@ -145756,7 +145777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18830 + - uid: 18754 components: - type: Transform rot: 3.141592653589793 rad @@ -145764,7 +145785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18831 + - uid: 18755 components: - type: Transform rot: 3.141592653589793 rad @@ -145772,7 +145793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18832 + - uid: 18756 components: - type: Transform rot: 3.141592653589793 rad @@ -145780,7 +145801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18833 + - uid: 18757 components: - type: Transform rot: 3.141592653589793 rad @@ -145788,7 +145809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18834 + - uid: 18758 components: - type: Transform rot: 3.141592653589793 rad @@ -145796,14 +145817,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18835 + - uid: 18759 components: - type: Transform pos: 40.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18836 + - uid: 18760 components: - type: Transform rot: -1.5707963267948966 rad @@ -145811,7 +145832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18837 + - uid: 18761 components: - type: Transform rot: -1.5707963267948966 rad @@ -145819,13 +145840,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18838 + - uid: 18762 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,60.5 parent: 2 - - uid: 18840 + - uid: 18763 components: - type: Transform rot: 3.141592653589793 rad @@ -145833,20 +145854,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18841 + - uid: 18764 components: - type: Transform pos: -8.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18842 + - uid: 18765 components: - type: Transform rot: 1.5707963267948966 rad pos: -122.5,18.5 parent: 2 - - uid: 18843 + - uid: 18766 components: - type: Transform rot: -1.5707963267948966 rad @@ -145854,7 +145875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18844 + - uid: 18767 components: - type: Transform rot: 1.5707963267948966 rad @@ -145862,21 +145883,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18845 + - uid: 18768 components: - type: Transform pos: 4.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18846 + - uid: 18769 components: - type: Transform pos: 3.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18847 + - uid: 18770 components: - type: Transform rot: 3.141592653589793 rad @@ -145884,7 +145905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18848 + - uid: 18771 components: - type: Transform rot: 3.141592653589793 rad @@ -145892,7 +145913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18849 + - uid: 18772 components: - type: Transform rot: 3.141592653589793 rad @@ -145900,30 +145921,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18850 + - uid: 18773 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,21.5 parent: 2 - - uid: 18851 + - uid: 18774 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,21.5 parent: 2 - - uid: 18852 + - uid: 18775 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,22.5 parent: 2 - - uid: 18853 + - uid: 18776 components: - type: Transform pos: -29.5,-51.5 parent: 2 - - uid: 18854 + - uid: 18777 components: - type: Transform rot: -1.5707963267948966 rad @@ -145931,38 +145952,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18855 + - uid: 18778 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-51.5 parent: 2 - - uid: 18856 + - uid: 18779 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-51.5 parent: 2 - - uid: 18857 + - uid: 18780 components: - type: Transform pos: 16.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18858 + - uid: 18781 components: - type: Transform pos: 18.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18859 + - uid: 18782 components: - type: Transform pos: -49.5,60.5 parent: 2 - - uid: 18860 + - uid: 18783 components: - type: Transform rot: 3.141592653589793 rad @@ -145970,14 +145991,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18861 + - uid: 18784 components: - type: Transform pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18862 + - uid: 18785 components: - type: Transform rot: 3.141592653589793 rad @@ -145985,14 +146006,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18863 + - uid: 18786 components: - type: Transform pos: -10.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18864 + - uid: 18787 components: - type: Transform rot: 3.141592653589793 rad @@ -146000,7 +146021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18865 + - uid: 18788 components: - type: Transform rot: 3.141592653589793 rad @@ -146008,7 +146029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18866 + - uid: 18789 components: - type: Transform rot: -1.5707963267948966 rad @@ -146016,14 +146037,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18867 + - uid: 18790 components: - type: Transform pos: 12.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18868 + - uid: 18791 components: - type: Transform rot: 3.141592653589793 rad @@ -146031,7 +146052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18869 + - uid: 18792 components: - type: Transform rot: 3.141592653589793 rad @@ -146039,27 +146060,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18870 + - uid: 18793 components: - type: Transform pos: -30.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18871 + - uid: 18794 components: - type: Transform pos: -31.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18872 + - uid: 18795 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,18.5 parent: 2 - - uid: 18873 + - uid: 18796 components: - type: Transform rot: -1.5707963267948966 rad @@ -146067,7 +146088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18874 + - uid: 18797 components: - type: Transform rot: 3.141592653589793 rad @@ -146075,7 +146096,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18875 + - uid: 18798 components: - type: Transform rot: -1.5707963267948966 rad @@ -146083,14 +146104,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18876 + - uid: 18799 components: - type: Transform pos: -15.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18877 + - uid: 18800 components: - type: Transform rot: 1.5707963267948966 rad @@ -146098,7 +146119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18878 + - uid: 18801 components: - type: Transform rot: 1.5707963267948966 rad @@ -146106,14 +146127,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18879 + - uid: 18802 components: - type: Transform pos: -14.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18880 + - uid: 18803 components: - type: Transform rot: -1.5707963267948966 rad @@ -146121,7 +146142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18881 + - uid: 18804 components: - type: Transform rot: 3.141592653589793 rad @@ -146129,7 +146150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18882 + - uid: 18805 components: - type: Transform rot: 3.141592653589793 rad @@ -146137,7 +146158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18883 + - uid: 18806 components: - type: Transform rot: -1.5707963267948966 rad @@ -146145,7 +146166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18884 + - uid: 18807 components: - type: Transform rot: -1.5707963267948966 rad @@ -146153,7 +146174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18885 + - uid: 18808 components: - type: Transform rot: 3.141592653589793 rad @@ -146161,7 +146182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18886 + - uid: 18809 components: - type: Transform rot: 1.5707963267948966 rad @@ -146169,7 +146190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18887 + - uid: 18810 components: - type: Transform rot: 3.141592653589793 rad @@ -146177,14 +146198,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18888 + - uid: 18811 components: - type: Transform pos: -10.5,77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18889 + - uid: 18812 components: - type: Transform rot: 1.5707963267948966 rad @@ -146192,7 +146213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18890 + - uid: 18813 components: - type: Transform rot: 3.141592653589793 rad @@ -146200,7 +146221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18891 + - uid: 18814 components: - type: Transform rot: 3.141592653589793 rad @@ -146208,14 +146229,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18892 + - uid: 18815 components: - type: Transform pos: -28.5,77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18893 + - uid: 18816 components: - type: Transform rot: 1.5707963267948966 rad @@ -146223,7 +146244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18894 + - uid: 18817 components: - type: Transform rot: -1.5707963267948966 rad @@ -146231,7 +146252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18895 + - uid: 18818 components: - type: Transform rot: -1.5707963267948966 rad @@ -146239,14 +146260,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18896 + - uid: 18819 components: - type: Transform pos: 7.5,77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18897 + - uid: 18820 components: - type: Transform rot: 1.5707963267948966 rad @@ -146254,7 +146275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18898 + - uid: 18821 components: - type: Transform rot: -1.5707963267948966 rad @@ -146262,7 +146283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18899 + - uid: 18822 components: - type: Transform rot: -1.5707963267948966 rad @@ -146270,14 +146291,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18900 + - uid: 18823 components: - type: Transform pos: 5.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18901 + - uid: 18824 components: - type: Transform rot: 1.5707963267948966 rad @@ -146285,7 +146306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18902 + - uid: 18825 components: - type: Transform rot: -1.5707963267948966 rad @@ -146293,7 +146314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18903 + - uid: 18826 components: - type: Transform rot: 1.5707963267948966 rad @@ -146301,7 +146322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18904 + - uid: 18827 components: - type: Transform rot: -1.5707963267948966 rad @@ -146309,7 +146330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18905 + - uid: 18828 components: - type: Transform rot: -1.5707963267948966 rad @@ -146317,7 +146338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18906 + - uid: 18829 components: - type: Transform rot: 1.5707963267948966 rad @@ -146325,7 +146346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18907 + - uid: 18830 components: - type: Transform rot: 1.5707963267948966 rad @@ -146333,7 +146354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18908 + - uid: 18831 components: - type: Transform rot: -1.5707963267948966 rad @@ -146341,7 +146362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18909 + - uid: 18832 components: - type: Transform rot: -1.5707963267948966 rad @@ -146349,14 +146370,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18910 + - uid: 18833 components: - type: Transform pos: 20.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18911 + - uid: 18834 components: - type: Transform rot: 1.5707963267948966 rad @@ -146364,7 +146385,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18912 + - uid: 18835 components: - type: Transform rot: -1.5707963267948966 rad @@ -146372,21 +146393,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18913 + - uid: 18836 components: - type: Transform pos: 28.5,51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18914 + - uid: 18837 components: - type: Transform pos: 20.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18915 + - uid: 18838 components: - type: Transform rot: 3.141592653589793 rad @@ -146394,14 +146415,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18916 + - uid: 18839 components: - type: Transform pos: 22.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18917 + - uid: 18840 components: - type: Transform rot: 3.141592653589793 rad @@ -146409,7 +146430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18918 + - uid: 18841 components: - type: Transform rot: -1.5707963267948966 rad @@ -146417,7 +146438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18919 + - uid: 18842 components: - type: Transform rot: -1.5707963267948966 rad @@ -146425,7 +146446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18920 + - uid: 18843 components: - type: Transform rot: 1.5707963267948966 rad @@ -146433,7 +146454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18921 + - uid: 18844 components: - type: Transform rot: 3.141592653589793 rad @@ -146441,14 +146462,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18922 + - uid: 18845 components: - type: Transform pos: 39.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18923 + - uid: 18846 components: - type: Transform rot: 3.141592653589793 rad @@ -146456,14 +146477,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18924 + - uid: 18847 components: - type: Transform pos: 54.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18925 + - uid: 18848 components: - type: Transform rot: 3.141592653589793 rad @@ -146471,14 +146492,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18926 + - uid: 18849 components: - type: Transform pos: 62.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18927 + - uid: 18850 components: - type: Transform rot: 1.5707963267948966 rad @@ -146486,7 +146507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18928 + - uid: 18851 components: - type: Transform rot: -1.5707963267948966 rad @@ -146494,7 +146515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18929 + - uid: 18852 components: - type: Transform rot: 3.141592653589793 rad @@ -146502,7 +146523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18930 + - uid: 18853 components: - type: Transform rot: 3.141592653589793 rad @@ -146510,7 +146531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18931 + - uid: 18854 components: - type: Transform rot: -1.5707963267948966 rad @@ -146518,7 +146539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18932 + - uid: 18855 components: - type: Transform rot: -1.5707963267948966 rad @@ -146526,7 +146547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18933 + - uid: 18856 components: - type: Transform rot: -1.5707963267948966 rad @@ -146534,7 +146555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18934 + - uid: 18857 components: - type: Transform rot: 1.5707963267948966 rad @@ -146542,7 +146563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18935 + - uid: 18858 components: - type: Transform rot: -1.5707963267948966 rad @@ -146550,7 +146571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18936 + - uid: 18859 components: - type: Transform rot: 1.5707963267948966 rad @@ -146558,7 +146579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18937 + - uid: 18860 components: - type: Transform rot: 1.5707963267948966 rad @@ -146566,7 +146587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18938 + - uid: 18861 components: - type: Transform rot: -1.5707963267948966 rad @@ -146574,7 +146595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18939 + - uid: 18862 components: - type: Transform rot: 1.5707963267948966 rad @@ -146582,7 +146603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18940 + - uid: 18863 components: - type: Transform rot: -1.5707963267948966 rad @@ -146590,7 +146611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18941 + - uid: 18864 components: - type: Transform rot: 3.141592653589793 rad @@ -146598,21 +146619,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18942 + - uid: 18865 components: - type: Transform pos: 38.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18943 + - uid: 18866 components: - type: Transform pos: 41.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18944 + - uid: 18867 components: - type: Transform rot: 3.141592653589793 rad @@ -146620,7 +146641,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18945 + - uid: 18868 components: - type: Transform rot: 3.141592653589793 rad @@ -146628,14 +146649,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18946 + - uid: 18869 components: - type: Transform pos: 56.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18947 + - uid: 18870 components: - type: Transform rot: -1.5707963267948966 rad @@ -146643,7 +146664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18948 + - uid: 18871 components: - type: Transform rot: 3.141592653589793 rad @@ -146651,7 +146672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18949 + - uid: 18872 components: - type: Transform rot: 1.5707963267948966 rad @@ -146659,7 +146680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18950 + - uid: 18873 components: - type: Transform rot: -1.5707963267948966 rad @@ -146667,14 +146688,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18951 + - uid: 18874 components: - type: Transform pos: 61.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18952 + - uid: 18875 components: - type: Transform rot: 3.141592653589793 rad @@ -146682,7 +146703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18953 + - uid: 18876 components: - type: Transform rot: 3.141592653589793 rad @@ -146690,7 +146711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18954 + - uid: 18877 components: - type: Transform rot: 3.141592653589793 rad @@ -146698,21 +146719,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18955 + - uid: 18878 components: - type: Transform pos: 16.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18956 + - uid: 18879 components: - type: Transform pos: 18.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18957 + - uid: 18880 components: - type: Transform rot: 1.5707963267948966 rad @@ -146720,7 +146741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18958 + - uid: 18881 components: - type: Transform rot: -1.5707963267948966 rad @@ -146728,7 +146749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18959 + - uid: 18882 components: - type: Transform rot: 3.141592653589793 rad @@ -146736,7 +146757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18960 + - uid: 18883 components: - type: Transform rot: 3.141592653589793 rad @@ -146744,7 +146765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18961 + - uid: 18884 components: - type: Transform rot: 3.141592653589793 rad @@ -146752,14 +146773,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18962 + - uid: 18885 components: - type: Transform pos: 17.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18963 + - uid: 18886 components: - type: Transform rot: 3.141592653589793 rad @@ -146767,14 +146788,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18964 + - uid: 18887 components: - type: Transform pos: 22.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18965 + - uid: 18888 components: - type: Transform rot: 1.5707963267948966 rad @@ -146782,7 +146803,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18966 + - uid: 18889 components: - type: Transform rot: 1.5707963267948966 rad @@ -146790,7 +146811,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18967 + - uid: 18890 components: - type: Transform rot: -1.5707963267948966 rad @@ -146798,7 +146819,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18968 + - uid: 18891 components: - type: Transform rot: -1.5707963267948966 rad @@ -146806,7 +146827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18969 + - uid: 18892 components: - type: Transform rot: 1.5707963267948966 rad @@ -146814,7 +146835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18970 + - uid: 18893 components: - type: Transform rot: 1.5707963267948966 rad @@ -146822,7 +146843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18971 + - uid: 18894 components: - type: Transform rot: -1.5707963267948966 rad @@ -146830,14 +146851,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18972 + - uid: 18895 components: - type: Transform pos: 22.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18973 + - uid: 18896 components: - type: Transform rot: 3.141592653589793 rad @@ -146845,14 +146866,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18974 + - uid: 18897 components: - type: Transform pos: 28.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18975 + - uid: 18898 components: - type: Transform rot: 3.141592653589793 rad @@ -146860,7 +146881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18976 + - uid: 18899 components: - type: Transform rot: 3.141592653589793 rad @@ -146868,7 +146889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18977 + - uid: 18900 components: - type: Transform rot: -1.5707963267948966 rad @@ -146876,7 +146897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18978 + - uid: 18901 components: - type: Transform rot: -1.5707963267948966 rad @@ -146884,7 +146905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18979 + - uid: 18902 components: - type: Transform rot: -1.5707963267948966 rad @@ -146892,7 +146913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18980 + - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad @@ -146900,7 +146921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18981 + - uid: 18904 components: - type: Transform rot: 3.141592653589793 rad @@ -146908,7 +146929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18982 + - uid: 18905 components: - type: Transform rot: 3.141592653589793 rad @@ -146916,21 +146937,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18983 + - uid: 18906 components: - type: Transform pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18984 + - uid: 18907 components: - type: Transform pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18985 + - uid: 18908 components: - type: Transform rot: -1.5707963267948966 rad @@ -146938,7 +146959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18986 + - uid: 18909 components: - type: Transform rot: -1.5707963267948966 rad @@ -146946,7 +146967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18987 + - uid: 18910 components: - type: Transform rot: 3.141592653589793 rad @@ -146954,7 +146975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18988 + - uid: 18911 components: - type: Transform rot: -1.5707963267948966 rad @@ -146962,7 +146983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18989 + - uid: 18912 components: - type: Transform rot: 1.5707963267948966 rad @@ -146970,7 +146991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18990 + - uid: 18913 components: - type: Transform rot: 1.5707963267948966 rad @@ -146978,14 +146999,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18991 + - uid: 18914 components: - type: Transform pos: -21.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18992 + - uid: 18915 components: - type: Transform rot: 1.5707963267948966 rad @@ -146993,7 +147014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18993 + - uid: 18916 components: - type: Transform rot: 1.5707963267948966 rad @@ -147001,7 +147022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18994 + - uid: 18917 components: - type: Transform rot: 3.141592653589793 rad @@ -147009,14 +147030,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18995 + - uid: 18918 components: - type: Transform pos: -24.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18996 + - uid: 18919 components: - type: Transform rot: 1.5707963267948966 rad @@ -147024,14 +147045,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18997 + - uid: 18920 components: - type: Transform pos: 1.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18998 + - uid: 18921 components: - type: Transform rot: 1.5707963267948966 rad @@ -147039,7 +147060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18999 + - uid: 18922 components: - type: Transform rot: 3.141592653589793 rad @@ -147047,7 +147068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19000 + - uid: 18923 components: - type: Transform rot: 3.141592653589793 rad @@ -147055,7 +147076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19001 + - uid: 18924 components: - type: Transform rot: -1.5707963267948966 rad @@ -147063,7 +147084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19002 + - uid: 18925 components: - type: Transform rot: -1.5707963267948966 rad @@ -147071,7 +147092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19003 + - uid: 18926 components: - type: Transform rot: -1.5707963267948966 rad @@ -147079,14 +147100,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19004 + - uid: 18927 components: - type: Transform pos: 5.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19005 + - uid: 18928 components: - type: Transform rot: 3.141592653589793 rad @@ -147094,7 +147115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19006 + - uid: 18929 components: - type: Transform rot: 1.5707963267948966 rad @@ -147102,7 +147123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19007 + - uid: 18930 components: - type: Transform rot: -1.5707963267948966 rad @@ -147110,7 +147131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19008 + - uid: 18931 components: - type: Transform rot: 1.5707963267948966 rad @@ -147118,21 +147139,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19009 + - uid: 18932 components: - type: Transform pos: -48.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19010 + - uid: 18933 components: - type: Transform pos: -57.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19011 + - uid: 18934 components: - type: Transform rot: 3.141592653589793 rad @@ -147140,14 +147161,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19012 + - uid: 18935 components: - type: Transform pos: -28.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19013 + - uid: 18936 components: - type: Transform rot: 3.141592653589793 rad @@ -147155,14 +147176,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19014 + - uid: 18937 components: - type: Transform pos: 73.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19015 + - uid: 18938 components: - type: Transform rot: 1.5707963267948966 rad @@ -147170,7 +147191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19016 + - uid: 18939 components: - type: Transform rot: -1.5707963267948966 rad @@ -147178,7 +147199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19017 + - uid: 18940 components: - type: Transform rot: 1.5707963267948966 rad @@ -147186,7 +147207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19018 + - uid: 18941 components: - type: Transform rot: -1.5707963267948966 rad @@ -147194,14 +147215,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19019 + - uid: 18942 components: - type: Transform pos: -60.5,37.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19020 + - uid: 18943 components: - type: Transform rot: -1.5707963267948966 rad @@ -147209,7 +147230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19021 + - uid: 18944 components: - type: Transform rot: -1.5707963267948966 rad @@ -147217,7 +147238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19022 + - uid: 18945 components: - type: Transform rot: -1.5707963267948966 rad @@ -147225,7 +147246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19023 + - uid: 18946 components: - type: Transform rot: 1.5707963267948966 rad @@ -147233,7 +147254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19024 + - uid: 18947 components: - type: Transform rot: 1.5707963267948966 rad @@ -147241,7 +147262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19025 + - uid: 18948 components: - type: Transform rot: 1.5707963267948966 rad @@ -147249,7 +147270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19026 + - uid: 18949 components: - type: Transform rot: -1.5707963267948966 rad @@ -147257,14 +147278,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19027 + - uid: 18950 components: - type: Transform pos: 96.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19028 + - uid: 18951 components: - type: Transform rot: 1.5707963267948966 rad @@ -147272,7 +147293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19029 + - uid: 18952 components: - type: Transform rot: -1.5707963267948966 rad @@ -147280,7 +147301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19030 + - uid: 18953 components: - type: Transform rot: 1.5707963267948966 rad @@ -147288,7 +147309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19031 + - uid: 18954 components: - type: Transform rot: -1.5707963267948966 rad @@ -147296,14 +147317,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19032 + - uid: 18955 components: - type: Transform pos: 10.5,57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19033 + - uid: 18956 components: - type: Transform rot: 3.141592653589793 rad @@ -147311,7 +147332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19034 + - uid: 18957 components: - type: Transform rot: 1.5707963267948966 rad @@ -147319,7 +147340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19035 + - uid: 18958 components: - type: Transform rot: -1.5707963267948966 rad @@ -147327,20 +147348,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19036 + - uid: 18959 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-38.5 parent: 2 - - uid: 19037 + - uid: 18960 components: - type: Transform pos: 35.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19038 + - uid: 18961 components: - type: Transform rot: -1.5707963267948966 rad @@ -147348,388 +147369,388 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39242 + - uid: 39069 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,31.5 - parent: 38584 - - uid: 39243 + parent: 38411 + - uid: 39070 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,4.5 - parent: 38584 - - uid: 39244 + parent: 38411 + - uid: 39071 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39245 + - uid: 39072 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39246 + - uid: 39073 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39247 + - uid: 39074 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39248 + - uid: 39075 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39249 + - uid: 39076 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39250 + - uid: 39077 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39251 + - uid: 39078 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39252 + - uid: 39079 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39253 + - uid: 39080 components: - type: Transform pos: -5.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39254 + - uid: 39081 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39255 + - uid: 39082 components: - type: Transform pos: -9.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39256 + - uid: 39083 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39257 + - uid: 39084 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39258 + - uid: 39085 components: - type: Transform pos: 0.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39259 + - uid: 39086 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39260 + - uid: 39087 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39261 + - uid: 39088 components: - type: Transform pos: 5.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39262 + - uid: 39089 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39263 + - uid: 39090 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39264 + - uid: 39091 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39265 + - uid: 39092 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39266 + - uid: 39093 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39267 + - uid: 39094 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39268 + - uid: 39095 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39269 + - uid: 39096 components: - type: Transform pos: -1.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39270 + - uid: 39097 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasPipeFourway entities: - - uid: 19039 + - uid: 18962 components: - type: Transform pos: -66.5,59.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19040 + - uid: 18963 components: - type: Transform pos: -52.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19041 + - uid: 18964 components: - type: Transform pos: -51.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19042 + - uid: 18965 components: - type: Transform pos: -70.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19043 + - uid: 18966 components: - type: Transform pos: -17.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19044 + - uid: 18967 components: - type: Transform pos: 16.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19045 + - uid: 18968 components: - type: Transform pos: 8.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19046 + - uid: 18969 components: - type: Transform pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19047 + - uid: 18970 components: - type: Transform pos: -17.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19048 + - uid: 18971 components: - type: Transform pos: -117.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19049 + - uid: 18972 components: - type: Transform pos: -119.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19050 + - uid: 18973 components: - type: Transform pos: -117.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19051 + - uid: 18974 components: - type: Transform pos: -119.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19052 + - uid: 18975 components: - type: Transform pos: 48.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19053 + - uid: 18976 components: - type: Transform pos: 46.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19054 + - uid: 18977 components: - type: Transform pos: 52.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19055 + - uid: 18978 components: - type: Transform pos: 18.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19056 + - uid: 18979 components: - type: Transform pos: -12.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19057 + - uid: 18980 components: - type: Transform pos: 81.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19058 + - uid: 18981 components: - type: Transform pos: 84.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19059 + - uid: 18982 components: - type: Transform pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39271 + - uid: 39098 components: - type: Transform pos: 0.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasPipeStraight entities: - - uid: 19060 + - uid: 18983 components: - type: Transform rot: 1.5707963267948966 rad @@ -147737,7 +147758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19061 + - uid: 18984 components: - type: Transform rot: -1.5707963267948966 rad @@ -147745,7 +147766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19062 + - uid: 18985 components: - type: Transform rot: 3.141592653589793 rad @@ -147753,7 +147774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19063 + - uid: 18986 components: - type: Transform rot: 1.5707963267948966 rad @@ -147761,7 +147782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19064 + - uid: 18987 components: - type: Transform rot: 3.141592653589793 rad @@ -147769,14 +147790,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19065 + - uid: 18988 components: - type: Transform pos: -48.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19066 + - uid: 18989 components: - type: Transform rot: 3.141592653589793 rad @@ -147784,7 +147805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19067 + - uid: 18990 components: - type: Transform rot: 3.141592653589793 rad @@ -147792,7 +147813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19068 + - uid: 18991 components: - type: Transform rot: 1.5707963267948966 rad @@ -147800,7 +147821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19069 + - uid: 18992 components: - type: Transform rot: 3.141592653589793 rad @@ -147808,7 +147829,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19070 + - uid: 18993 components: - type: Transform rot: 3.141592653589793 rad @@ -147816,7 +147837,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19071 + - uid: 18994 components: - type: Transform rot: -1.5707963267948966 rad @@ -147824,7 +147845,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19072 + - uid: 18995 components: - type: Transform rot: 3.141592653589793 rad @@ -147832,7 +147853,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19073 + - uid: 18996 components: - type: Transform rot: 3.141592653589793 rad @@ -147840,7 +147861,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19074 + - uid: 18997 components: - type: Transform rot: 3.141592653589793 rad @@ -147848,7 +147869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19075 + - uid: 18998 components: - type: Transform rot: -1.5707963267948966 rad @@ -147856,7 +147877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19076 + - uid: 18999 components: - type: Transform rot: -1.5707963267948966 rad @@ -147864,7 +147885,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19077 + - uid: 19000 components: - type: Transform rot: 3.141592653589793 rad @@ -147872,7 +147893,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19078 + - uid: 19001 components: - type: Transform rot: 3.141592653589793 rad @@ -147880,7 +147901,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19079 + - uid: 19002 components: - type: Transform rot: 3.141592653589793 rad @@ -147888,7 +147909,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19080 + - uid: 19003 components: - type: Transform rot: 3.141592653589793 rad @@ -147896,7 +147917,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19081 + - uid: 19004 components: - type: Transform rot: -1.5707963267948966 rad @@ -147904,7 +147925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19082 + - uid: 19005 components: - type: Transform rot: 3.141592653589793 rad @@ -147912,7 +147933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19083 + - uid: 19006 components: - type: Transform rot: -1.5707963267948966 rad @@ -147920,7 +147941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19084 + - uid: 19007 components: - type: Transform rot: -1.5707963267948966 rad @@ -147928,14 +147949,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19085 + - uid: 19008 components: - type: Transform pos: -32.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19086 + - uid: 19009 components: - type: Transform rot: 3.141592653589793 rad @@ -147943,14 +147964,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19087 + - uid: 19010 components: - type: Transform pos: -52.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19088 + - uid: 19011 components: - type: Transform rot: 1.5707963267948966 rad @@ -147958,7 +147979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19089 + - uid: 19012 components: - type: Transform rot: 1.5707963267948966 rad @@ -147966,7 +147987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19090 + - uid: 19013 components: - type: Transform rot: 1.5707963267948966 rad @@ -147974,7 +147995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19091 + - uid: 19014 components: - type: Transform rot: 3.141592653589793 rad @@ -147982,7 +148003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19092 + - uid: 19015 components: - type: Transform rot: 1.5707963267948966 rad @@ -147990,7 +148011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19093 + - uid: 19016 components: - type: Transform rot: 3.141592653589793 rad @@ -147998,7 +148019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19094 + - uid: 19017 components: - type: Transform rot: 3.141592653589793 rad @@ -148006,7 +148027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19095 + - uid: 19018 components: - type: Transform rot: 3.141592653589793 rad @@ -148014,7 +148035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19096 + - uid: 19019 components: - type: Transform rot: 3.141592653589793 rad @@ -148022,7 +148043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19097 + - uid: 19020 components: - type: Transform rot: 3.141592653589793 rad @@ -148030,7 +148051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19098 + - uid: 19021 components: - type: Transform rot: 3.141592653589793 rad @@ -148038,7 +148059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19099 + - uid: 19022 components: - type: Transform rot: 3.141592653589793 rad @@ -148046,7 +148067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19100 + - uid: 19023 components: - type: Transform rot: -1.5707963267948966 rad @@ -148054,7 +148075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19101 + - uid: 19024 components: - type: Transform rot: 3.141592653589793 rad @@ -148062,7 +148083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19102 + - uid: 19025 components: - type: Transform rot: 3.141592653589793 rad @@ -148070,7 +148091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19103 + - uid: 19026 components: - type: Transform rot: 3.141592653589793 rad @@ -148078,7 +148099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19104 + - uid: 19027 components: - type: Transform rot: 3.141592653589793 rad @@ -148086,7 +148107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19105 + - uid: 19028 components: - type: Transform rot: 1.5707963267948966 rad @@ -148094,7 +148115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19106 + - uid: 19029 components: - type: Transform rot: 3.141592653589793 rad @@ -148102,7 +148123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19107 + - uid: 19030 components: - type: Transform rot: 1.5707963267948966 rad @@ -148110,7 +148131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19108 + - uid: 19031 components: - type: Transform rot: 3.141592653589793 rad @@ -148118,7 +148139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19109 + - uid: 19032 components: - type: Transform rot: -1.5707963267948966 rad @@ -148126,7 +148147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19110 + - uid: 19033 components: - type: Transform rot: -1.5707963267948966 rad @@ -148134,7 +148155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19111 + - uid: 19034 components: - type: Transform rot: -1.5707963267948966 rad @@ -148142,7 +148163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19112 + - uid: 19035 components: - type: Transform rot: 3.141592653589793 rad @@ -148150,7 +148171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19113 + - uid: 19036 components: - type: Transform rot: 3.141592653589793 rad @@ -148158,7 +148179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19114 + - uid: 19037 components: - type: Transform rot: -1.5707963267948966 rad @@ -148166,7 +148187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19115 + - uid: 19038 components: - type: Transform rot: 1.5707963267948966 rad @@ -148174,7 +148195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19116 + - uid: 19039 components: - type: Transform rot: 1.5707963267948966 rad @@ -148182,7 +148203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19117 + - uid: 19040 components: - type: Transform rot: -1.5707963267948966 rad @@ -148190,7 +148211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19118 + - uid: 19041 components: - type: Transform rot: 1.5707963267948966 rad @@ -148198,7 +148219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19119 + - uid: 19042 components: - type: Transform rot: 1.5707963267948966 rad @@ -148206,7 +148227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19120 + - uid: 19043 components: - type: Transform rot: 1.5707963267948966 rad @@ -148214,7 +148235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19121 + - uid: 19044 components: - type: Transform rot: 1.5707963267948966 rad @@ -148222,7 +148243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19122 + - uid: 19045 components: - type: Transform rot: 3.141592653589793 rad @@ -148230,7 +148251,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19123 + - uid: 19046 components: - type: Transform rot: 1.5707963267948966 rad @@ -148238,7 +148259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19124 + - uid: 19047 components: - type: Transform rot: 1.5707963267948966 rad @@ -148246,7 +148267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19125 + - uid: 19048 components: - type: Transform rot: 3.141592653589793 rad @@ -148254,7 +148275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19126 + - uid: 19049 components: - type: Transform rot: -1.5707963267948966 rad @@ -148262,14 +148283,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19127 + - uid: 19050 components: - type: Transform pos: -15.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19128 + - uid: 19051 components: - type: Transform rot: -1.5707963267948966 rad @@ -148277,7 +148298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19129 + - uid: 19052 components: - type: Transform rot: 1.5707963267948966 rad @@ -148285,21 +148306,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19130 + - uid: 19053 components: - type: Transform pos: 46.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19131 + - uid: 19054 components: - type: Transform pos: -15.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19132 + - uid: 19055 components: - type: Transform rot: -1.5707963267948966 rad @@ -148307,7 +148328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19133 + - uid: 19056 components: - type: Transform rot: -1.5707963267948966 rad @@ -148315,7 +148336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19134 + - uid: 19057 components: - type: Transform rot: 3.141592653589793 rad @@ -148323,7 +148344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19135 + - uid: 19058 components: - type: Transform rot: 3.141592653589793 rad @@ -148331,7 +148352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19136 + - uid: 19059 components: - type: Transform rot: -1.5707963267948966 rad @@ -148339,7 +148360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19137 + - uid: 19060 components: - type: Transform rot: -1.5707963267948966 rad @@ -148347,7 +148368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19138 + - uid: 19061 components: - type: Transform rot: 3.141592653589793 rad @@ -148355,14 +148376,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19139 + - uid: 19062 components: - type: Transform pos: -28.5,73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19140 + - uid: 19063 components: - type: Transform rot: 3.141592653589793 rad @@ -148370,7 +148391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19141 + - uid: 19064 components: - type: Transform rot: 3.141592653589793 rad @@ -148378,7 +148399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19142 + - uid: 19065 components: - type: Transform rot: 1.5707963267948966 rad @@ -148386,7 +148407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19143 + - uid: 19066 components: - type: Transform rot: 3.141592653589793 rad @@ -148394,7 +148415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19144 + - uid: 19067 components: - type: Transform rot: 3.141592653589793 rad @@ -148402,7 +148423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19145 + - uid: 19068 components: - type: Transform rot: 3.141592653589793 rad @@ -148410,7 +148431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19146 + - uid: 19069 components: - type: Transform rot: 3.141592653589793 rad @@ -148418,7 +148439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19147 + - uid: 19070 components: - type: Transform rot: 3.141592653589793 rad @@ -148426,7 +148447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19148 + - uid: 19071 components: - type: Transform rot: 3.141592653589793 rad @@ -148434,7 +148455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19149 + - uid: 19072 components: - type: Transform rot: 3.141592653589793 rad @@ -148442,7 +148463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19150 + - uid: 19073 components: - type: Transform rot: 3.141592653589793 rad @@ -148450,7 +148471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19151 + - uid: 19074 components: - type: Transform rot: 3.141592653589793 rad @@ -148458,7 +148479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19152 + - uid: 19075 components: - type: Transform rot: 3.141592653589793 rad @@ -148466,7 +148487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19153 + - uid: 19076 components: - type: Transform rot: 3.141592653589793 rad @@ -148474,7 +148495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19154 + - uid: 19077 components: - type: Transform rot: 1.5707963267948966 rad @@ -148482,7 +148503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19155 + - uid: 19078 components: - type: Transform rot: 1.5707963267948966 rad @@ -148490,7 +148511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19156 + - uid: 19079 components: - type: Transform rot: 1.5707963267948966 rad @@ -148498,7 +148519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19157 + - uid: 19080 components: - type: Transform rot: 1.5707963267948966 rad @@ -148506,98 +148527,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19158 + - uid: 19081 components: - type: Transform pos: -53.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19159 + - uid: 19082 components: - type: Transform pos: -53.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19160 + - uid: 19083 components: - type: Transform pos: -53.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19161 + - uid: 19084 components: - type: Transform pos: -53.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19162 + - uid: 19085 components: - type: Transform pos: -52.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19163 + - uid: 19086 components: - type: Transform pos: -52.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19164 + - uid: 19087 components: - type: Transform pos: -53.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19165 + - uid: 19088 components: - type: Transform pos: -53.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19166 + - uid: 19089 components: - type: Transform pos: -52.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19167 + - uid: 19090 components: - type: Transform pos: -52.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19168 + - uid: 19091 components: - type: Transform pos: -53.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19169 + - uid: 19092 components: - type: Transform pos: -53.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19170 + - uid: 19093 components: - type: Transform pos: -52.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19171 + - uid: 19094 components: - type: Transform rot: 3.141592653589793 rad @@ -148605,21 +148626,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19172 + - uid: 19095 components: - type: Transform pos: -51.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19173 + - uid: 19096 components: - type: Transform pos: -52.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19174 + - uid: 19097 components: - type: Transform rot: -1.5707963267948966 rad @@ -148627,7 +148648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19175 + - uid: 19098 components: - type: Transform rot: -1.5707963267948966 rad @@ -148635,7 +148656,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19176 + - uid: 19099 components: - type: Transform rot: -1.5707963267948966 rad @@ -148643,7 +148664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19177 + - uid: 19100 components: - type: Transform rot: -1.5707963267948966 rad @@ -148651,7 +148672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19178 + - uid: 19101 components: - type: Transform rot: -1.5707963267948966 rad @@ -148659,7 +148680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19179 + - uid: 19102 components: - type: Transform rot: -1.5707963267948966 rad @@ -148667,7 +148688,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19180 + - uid: 19103 components: - type: Transform rot: -1.5707963267948966 rad @@ -148675,7 +148696,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19181 + - uid: 19104 components: - type: Transform rot: -1.5707963267948966 rad @@ -148683,7 +148704,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19182 + - uid: 19105 components: - type: Transform rot: -1.5707963267948966 rad @@ -148691,7 +148712,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19183 + - uid: 19106 components: - type: Transform rot: 3.141592653589793 rad @@ -148699,7 +148720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19184 + - uid: 19107 components: - type: Transform rot: 3.141592653589793 rad @@ -148707,14 +148728,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19185 + - uid: 19108 components: - type: Transform pos: -52.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19186 + - uid: 19109 components: - type: Transform rot: 3.141592653589793 rad @@ -148722,7 +148743,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19187 + - uid: 19110 components: - type: Transform rot: 3.141592653589793 rad @@ -148730,7 +148751,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19188 + - uid: 19111 components: - type: Transform rot: 3.141592653589793 rad @@ -148738,7 +148759,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19189 + - uid: 19112 components: - type: Transform rot: 3.141592653589793 rad @@ -148746,7 +148767,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19190 + - uid: 19113 components: - type: Transform rot: 3.141592653589793 rad @@ -148754,7 +148775,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19191 + - uid: 19114 components: - type: Transform rot: 3.141592653589793 rad @@ -148762,7 +148783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19192 + - uid: 19115 components: - type: Transform rot: 3.141592653589793 rad @@ -148770,7 +148791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19193 + - uid: 19116 components: - type: Transform rot: 3.141592653589793 rad @@ -148778,7 +148799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19194 + - uid: 19117 components: - type: Transform rot: 3.141592653589793 rad @@ -148786,7 +148807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19195 + - uid: 19118 components: - type: Transform rot: 3.141592653589793 rad @@ -148794,7 +148815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19196 + - uid: 19119 components: - type: Transform rot: 3.141592653589793 rad @@ -148802,7 +148823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19197 + - uid: 19120 components: - type: Transform rot: 3.141592653589793 rad @@ -148810,7 +148831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19198 + - uid: 19121 components: - type: Transform rot: -1.5707963267948966 rad @@ -148818,7 +148839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19199 + - uid: 19122 components: - type: Transform rot: -1.5707963267948966 rad @@ -148826,7 +148847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19200 + - uid: 19123 components: - type: Transform rot: -1.5707963267948966 rad @@ -148834,7 +148855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19201 + - uid: 19124 components: - type: Transform rot: -1.5707963267948966 rad @@ -148842,7 +148863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19202 + - uid: 19125 components: - type: Transform rot: -1.5707963267948966 rad @@ -148850,7 +148871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19203 + - uid: 19126 components: - type: Transform rot: -1.5707963267948966 rad @@ -148858,7 +148879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19204 + - uid: 19127 components: - type: Transform rot: -1.5707963267948966 rad @@ -148866,7 +148887,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19205 + - uid: 19128 components: - type: Transform rot: -1.5707963267948966 rad @@ -148874,7 +148895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19206 + - uid: 19129 components: - type: Transform rot: -1.5707963267948966 rad @@ -148882,7 +148903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19207 + - uid: 19130 components: - type: Transform rot: -1.5707963267948966 rad @@ -148890,7 +148911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19208 + - uid: 19131 components: - type: Transform rot: -1.5707963267948966 rad @@ -148898,7 +148919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19209 + - uid: 19132 components: - type: Transform rot: -1.5707963267948966 rad @@ -148906,7 +148927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19210 + - uid: 19133 components: - type: Transform rot: -1.5707963267948966 rad @@ -148914,7 +148935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19211 + - uid: 19134 components: - type: Transform rot: -1.5707963267948966 rad @@ -148922,7 +148943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19212 + - uid: 19135 components: - type: Transform rot: -1.5707963267948966 rad @@ -148930,7 +148951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19213 + - uid: 19136 components: - type: Transform rot: 3.141592653589793 rad @@ -148938,7 +148959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19214 + - uid: 19137 components: - type: Transform rot: 3.141592653589793 rad @@ -148946,7 +148967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19215 + - uid: 19138 components: - type: Transform rot: 3.141592653589793 rad @@ -148954,7 +148975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19216 + - uid: 19139 components: - type: Transform rot: 1.5707963267948966 rad @@ -148962,7 +148983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19217 + - uid: 19140 components: - type: Transform rot: 1.5707963267948966 rad @@ -148970,7 +148991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19218 + - uid: 19141 components: - type: Transform rot: 1.5707963267948966 rad @@ -148978,7 +148999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19219 + - uid: 19142 components: - type: Transform rot: 1.5707963267948966 rad @@ -148986,7 +149007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19220 + - uid: 19143 components: - type: Transform rot: 1.5707963267948966 rad @@ -148994,7 +149015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19221 + - uid: 19144 components: - type: Transform rot: 1.5707963267948966 rad @@ -149002,35 +149023,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19222 + - uid: 19145 components: - type: Transform pos: -62.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19223 + - uid: 19146 components: - type: Transform pos: -62.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19224 + - uid: 19147 components: - type: Transform pos: -62.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19225 + - uid: 19148 components: - type: Transform pos: -62.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19226 + - uid: 19149 components: - type: Transform rot: -1.5707963267948966 rad @@ -149038,7 +149059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19227 + - uid: 19150 components: - type: Transform rot: -1.5707963267948966 rad @@ -149046,7 +149067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19228 + - uid: 19151 components: - type: Transform rot: 3.141592653589793 rad @@ -149054,7 +149075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19229 + - uid: 19152 components: - type: Transform rot: 3.141592653589793 rad @@ -149062,7 +149083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19230 + - uid: 19153 components: - type: Transform rot: 1.5707963267948966 rad @@ -149070,7 +149091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19231 + - uid: 19154 components: - type: Transform rot: 1.5707963267948966 rad @@ -149078,7 +149099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19232 + - uid: 19155 components: - type: Transform rot: 1.5707963267948966 rad @@ -149086,7 +149107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19233 + - uid: 19156 components: - type: Transform rot: 1.5707963267948966 rad @@ -149094,7 +149115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19234 + - uid: 19157 components: - type: Transform rot: 1.5707963267948966 rad @@ -149102,7 +149123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19235 + - uid: 19158 components: - type: Transform rot: 1.5707963267948966 rad @@ -149110,7 +149131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19236 + - uid: 19159 components: - type: Transform rot: 1.5707963267948966 rad @@ -149118,7 +149139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19237 + - uid: 19160 components: - type: Transform rot: 1.5707963267948966 rad @@ -149126,7 +149147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19238 + - uid: 19161 components: - type: Transform rot: 1.5707963267948966 rad @@ -149134,7 +149155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19239 + - uid: 19162 components: - type: Transform rot: 1.5707963267948966 rad @@ -149142,7 +149163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19240 + - uid: 19163 components: - type: Transform rot: 1.5707963267948966 rad @@ -149150,7 +149171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19241 + - uid: 19164 components: - type: Transform rot: 1.5707963267948966 rad @@ -149158,7 +149179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19242 + - uid: 19165 components: - type: Transform rot: 1.5707963267948966 rad @@ -149166,7 +149187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19243 + - uid: 19166 components: - type: Transform rot: 1.5707963267948966 rad @@ -149174,7 +149195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19244 + - uid: 19167 components: - type: Transform rot: 1.5707963267948966 rad @@ -149182,7 +149203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19245 + - uid: 19168 components: - type: Transform rot: 1.5707963267948966 rad @@ -149190,7 +149211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19246 + - uid: 19169 components: - type: Transform rot: 1.5707963267948966 rad @@ -149198,7 +149219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19247 + - uid: 19170 components: - type: Transform rot: -1.5707963267948966 rad @@ -149206,7 +149227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19248 + - uid: 19171 components: - type: Transform rot: -1.5707963267948966 rad @@ -149214,14 +149235,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19249 + - uid: 19172 components: - type: Transform pos: -63.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19250 + - uid: 19173 components: - type: Transform rot: -1.5707963267948966 rad @@ -149229,7 +149250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19251 + - uid: 19174 components: - type: Transform rot: -1.5707963267948966 rad @@ -149237,7 +149258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19252 + - uid: 19175 components: - type: Transform rot: -1.5707963267948966 rad @@ -149245,7 +149266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19253 + - uid: 19176 components: - type: Transform rot: -1.5707963267948966 rad @@ -149253,7 +149274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19254 + - uid: 19177 components: - type: Transform rot: -1.5707963267948966 rad @@ -149261,7 +149282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19255 + - uid: 19178 components: - type: Transform rot: -1.5707963267948966 rad @@ -149269,42 +149290,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19256 + - uid: 19179 components: - type: Transform pos: -71.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19257 + - uid: 19180 components: - type: Transform pos: -71.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19258 + - uid: 19181 components: - type: Transform pos: -71.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19259 + - uid: 19182 components: - type: Transform pos: -71.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19260 + - uid: 19183 components: - type: Transform pos: -71.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19261 + - uid: 19184 components: - type: Transform rot: -1.5707963267948966 rad @@ -149312,7 +149333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19262 + - uid: 19185 components: - type: Transform rot: -1.5707963267948966 rad @@ -149320,7 +149341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19263 + - uid: 19186 components: - type: Transform rot: -1.5707963267948966 rad @@ -149328,7 +149349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19264 + - uid: 19187 components: - type: Transform rot: -1.5707963267948966 rad @@ -149336,35 +149357,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19265 + - uid: 19188 components: - type: Transform pos: -76.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19266 + - uid: 19189 components: - type: Transform pos: -76.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19267 + - uid: 19190 components: - type: Transform pos: -76.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19268 + - uid: 19191 components: - type: Transform pos: -76.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19269 + - uid: 19192 components: - type: Transform rot: 3.141592653589793 rad @@ -149372,7 +149393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19270 + - uid: 19193 components: - type: Transform rot: 3.141592653589793 rad @@ -149380,7 +149401,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19271 + - uid: 19194 components: - type: Transform rot: 3.141592653589793 rad @@ -149388,7 +149409,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19272 + - uid: 19195 components: - type: Transform rot: 1.5707963267948966 rad @@ -149396,7 +149417,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19273 + - uid: 19196 components: - type: Transform rot: 1.5707963267948966 rad @@ -149404,7 +149425,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19274 + - uid: 19197 components: - type: Transform rot: 1.5707963267948966 rad @@ -149412,21 +149433,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19275 + - uid: 19198 components: - type: Transform pos: -47.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19276 + - uid: 19199 components: - type: Transform pos: -47.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19277 + - uid: 19200 components: - type: Transform rot: 1.5707963267948966 rad @@ -149434,7 +149455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19278 + - uid: 19201 components: - type: Transform rot: 1.5707963267948966 rad @@ -149442,7 +149463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19279 + - uid: 19202 components: - type: Transform rot: 1.5707963267948966 rad @@ -149450,7 +149471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19280 + - uid: 19203 components: - type: Transform rot: 1.5707963267948966 rad @@ -149458,7 +149479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19281 + - uid: 19204 components: - type: Transform rot: -1.5707963267948966 rad @@ -149466,7 +149487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19282 + - uid: 19205 components: - type: Transform rot: -1.5707963267948966 rad @@ -149474,7 +149495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19283 + - uid: 19206 components: - type: Transform rot: -1.5707963267948966 rad @@ -149482,7 +149503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19284 + - uid: 19207 components: - type: Transform rot: -1.5707963267948966 rad @@ -149490,7 +149511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19285 + - uid: 19208 components: - type: Transform rot: -1.5707963267948966 rad @@ -149498,7 +149519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19286 + - uid: 19209 components: - type: Transform rot: -1.5707963267948966 rad @@ -149506,7 +149527,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19287 + - uid: 19210 components: - type: Transform rot: -1.5707963267948966 rad @@ -149514,7 +149535,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19288 + - uid: 19211 components: - type: Transform rot: -1.5707963267948966 rad @@ -149522,7 +149543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19289 + - uid: 19212 components: - type: Transform rot: -1.5707963267948966 rad @@ -149530,7 +149551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19290 + - uid: 19213 components: - type: Transform rot: -1.5707963267948966 rad @@ -149538,7 +149559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19291 + - uid: 19214 components: - type: Transform rot: -1.5707963267948966 rad @@ -149546,7 +149567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19292 + - uid: 19215 components: - type: Transform rot: -1.5707963267948966 rad @@ -149554,7 +149575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19293 + - uid: 19216 components: - type: Transform rot: -1.5707963267948966 rad @@ -149562,7 +149583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19294 + - uid: 19217 components: - type: Transform rot: -1.5707963267948966 rad @@ -149570,7 +149591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19295 + - uid: 19218 components: - type: Transform rot: -1.5707963267948966 rad @@ -149578,7 +149599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19296 + - uid: 19219 components: - type: Transform rot: -1.5707963267948966 rad @@ -149586,7 +149607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19297 + - uid: 19220 components: - type: Transform rot: 3.141592653589793 rad @@ -149594,7 +149615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19298 + - uid: 19221 components: - type: Transform rot: 3.141592653589793 rad @@ -149602,7 +149623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19299 + - uid: 19222 components: - type: Transform rot: 3.141592653589793 rad @@ -149610,7 +149631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19300 + - uid: 19223 components: - type: Transform rot: 3.141592653589793 rad @@ -149618,7 +149639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19301 + - uid: 19224 components: - type: Transform rot: 3.141592653589793 rad @@ -149626,7 +149647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19302 + - uid: 19225 components: - type: Transform rot: 3.141592653589793 rad @@ -149634,7 +149655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19303 + - uid: 19226 components: - type: Transform rot: 3.141592653589793 rad @@ -149642,7 +149663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19304 + - uid: 19227 components: - type: Transform rot: 3.141592653589793 rad @@ -149650,7 +149671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19305 + - uid: 19228 components: - type: Transform rot: 3.141592653589793 rad @@ -149658,7 +149679,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19306 + - uid: 19229 components: - type: Transform rot: 3.141592653589793 rad @@ -149666,7 +149687,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19307 + - uid: 19230 components: - type: Transform rot: 3.141592653589793 rad @@ -149674,7 +149695,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19308 + - uid: 19231 components: - type: Transform rot: 3.141592653589793 rad @@ -149682,7 +149703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19309 + - uid: 19232 components: - type: Transform rot: 3.141592653589793 rad @@ -149690,7 +149711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19310 + - uid: 19233 components: - type: Transform rot: 3.141592653589793 rad @@ -149698,7 +149719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19311 + - uid: 19234 components: - type: Transform rot: 3.141592653589793 rad @@ -149706,7 +149727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19312 + - uid: 19235 components: - type: Transform rot: 3.141592653589793 rad @@ -149714,7 +149735,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19313 + - uid: 19236 components: - type: Transform rot: 1.5707963267948966 rad @@ -149722,7 +149743,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19314 + - uid: 19237 components: - type: Transform rot: 1.5707963267948966 rad @@ -149730,7 +149751,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19315 + - uid: 19238 components: - type: Transform rot: 1.5707963267948966 rad @@ -149738,7 +149759,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19316 + - uid: 19239 components: - type: Transform rot: 1.5707963267948966 rad @@ -149746,7 +149767,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19317 + - uid: 19240 components: - type: Transform rot: 1.5707963267948966 rad @@ -149754,7 +149775,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19318 + - uid: 19241 components: - type: Transform rot: 1.5707963267948966 rad @@ -149762,7 +149783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19319 + - uid: 19242 components: - type: Transform rot: 1.5707963267948966 rad @@ -149770,7 +149791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19320 + - uid: 19243 components: - type: Transform rot: 1.5707963267948966 rad @@ -149778,7 +149799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19321 + - uid: 19244 components: - type: Transform rot: 1.5707963267948966 rad @@ -149786,7 +149807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19322 + - uid: 19245 components: - type: Transform rot: 1.5707963267948966 rad @@ -149794,7 +149815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19323 + - uid: 19246 components: - type: Transform rot: 1.5707963267948966 rad @@ -149802,7 +149823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19324 + - uid: 19247 components: - type: Transform rot: 1.5707963267948966 rad @@ -149810,7 +149831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19325 + - uid: 19248 components: - type: Transform rot: 1.5707963267948966 rad @@ -149818,7 +149839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19326 + - uid: 19249 components: - type: Transform rot: 1.5707963267948966 rad @@ -149826,7 +149847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19327 + - uid: 19250 components: - type: Transform rot: 1.5707963267948966 rad @@ -149834,7 +149855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19328 + - uid: 19251 components: - type: Transform rot: 1.5707963267948966 rad @@ -149842,70 +149863,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19329 + - uid: 19252 components: - type: Transform pos: -52.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19330 + - uid: 19253 components: - type: Transform pos: -51.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19331 + - uid: 19254 components: - type: Transform pos: -52.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19332 + - uid: 19255 components: - type: Transform pos: -51.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19333 + - uid: 19256 components: - type: Transform pos: -52.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19334 + - uid: 19257 components: - type: Transform pos: -51.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19335 + - uid: 19258 components: - type: Transform pos: -52.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19336 + - uid: 19259 components: - type: Transform pos: -51.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19337 + - uid: 19260 components: - type: Transform pos: -51.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19338 + - uid: 19261 components: - type: Transform rot: -1.5707963267948966 rad @@ -149913,7 +149934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19339 + - uid: 19262 components: - type: Transform rot: -1.5707963267948966 rad @@ -149921,7 +149942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19340 + - uid: 19263 components: - type: Transform rot: -1.5707963267948966 rad @@ -149929,7 +149950,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19341 + - uid: 19264 components: - type: Transform rot: -1.5707963267948966 rad @@ -149937,7 +149958,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19342 + - uid: 19265 components: - type: Transform rot: -1.5707963267948966 rad @@ -149945,7 +149966,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19343 + - uid: 19266 components: - type: Transform rot: -1.5707963267948966 rad @@ -149953,7 +149974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19344 + - uid: 19267 components: - type: Transform rot: -1.5707963267948966 rad @@ -149961,7 +149982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19345 + - uid: 19268 components: - type: Transform rot: -1.5707963267948966 rad @@ -149969,7 +149990,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19346 + - uid: 19269 components: - type: Transform rot: -1.5707963267948966 rad @@ -149977,7 +149998,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19347 + - uid: 19270 components: - type: Transform rot: -1.5707963267948966 rad @@ -149985,7 +150006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19348 + - uid: 19271 components: - type: Transform rot: -1.5707963267948966 rad @@ -149993,7 +150014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19349 + - uid: 19272 components: - type: Transform rot: -1.5707963267948966 rad @@ -150001,7 +150022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19350 + - uid: 19273 components: - type: Transform rot: -1.5707963267948966 rad @@ -150009,7 +150030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19351 + - uid: 19274 components: - type: Transform rot: 1.5707963267948966 rad @@ -150017,7 +150038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19352 + - uid: 19275 components: - type: Transform rot: -1.5707963267948966 rad @@ -150025,7 +150046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19353 + - uid: 19276 components: - type: Transform rot: -1.5707963267948966 rad @@ -150033,7 +150054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19354 + - uid: 19277 components: - type: Transform rot: -1.5707963267948966 rad @@ -150041,7 +150062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19355 + - uid: 19278 components: - type: Transform rot: -1.5707963267948966 rad @@ -150049,7 +150070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19356 + - uid: 19279 components: - type: Transform rot: -1.5707963267948966 rad @@ -150057,7 +150078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19357 + - uid: 19280 components: - type: Transform rot: -1.5707963267948966 rad @@ -150065,7 +150086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19358 + - uid: 19281 components: - type: Transform rot: 1.5707963267948966 rad @@ -150073,7 +150094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19359 + - uid: 19282 components: - type: Transform rot: -1.5707963267948966 rad @@ -150081,7 +150102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19360 + - uid: 19283 components: - type: Transform rot: -1.5707963267948966 rad @@ -150089,7 +150110,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19361 + - uid: 19284 components: - type: Transform rot: -1.5707963267948966 rad @@ -150097,7 +150118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19362 + - uid: 19285 components: - type: Transform rot: -1.5707963267948966 rad @@ -150105,7 +150126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19363 + - uid: 19286 components: - type: Transform rot: -1.5707963267948966 rad @@ -150113,7 +150134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19364 + - uid: 19287 components: - type: Transform rot: -1.5707963267948966 rad @@ -150121,7 +150142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19365 + - uid: 19288 components: - type: Transform rot: -1.5707963267948966 rad @@ -150129,7 +150150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19366 + - uid: 19289 components: - type: Transform rot: 3.141592653589793 rad @@ -150137,7 +150158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19367 + - uid: 19290 components: - type: Transform rot: -1.5707963267948966 rad @@ -150145,7 +150166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19368 + - uid: 19291 components: - type: Transform rot: 3.141592653589793 rad @@ -150153,7 +150174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19369 + - uid: 19292 components: - type: Transform rot: 3.141592653589793 rad @@ -150161,7 +150182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19370 + - uid: 19293 components: - type: Transform rot: -1.5707963267948966 rad @@ -150169,7 +150190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19371 + - uid: 19294 components: - type: Transform rot: -1.5707963267948966 rad @@ -150177,14 +150198,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19372 + - uid: 19295 components: - type: Transform pos: -68.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19373 + - uid: 19296 components: - type: Transform rot: -1.5707963267948966 rad @@ -150192,56 +150213,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19374 + - uid: 19297 components: - type: Transform pos: -68.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19375 + - uid: 19298 components: - type: Transform pos: -70.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19376 + - uid: 19299 components: - type: Transform pos: -70.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19377 + - uid: 19300 components: - type: Transform pos: -68.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19378 + - uid: 19301 components: - type: Transform pos: -70.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19379 + - uid: 19302 components: - type: Transform pos: -70.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19380 + - uid: 19303 components: - type: Transform pos: -70.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19381 + - uid: 19304 components: - type: Transform rot: 3.141592653589793 rad @@ -150249,7 +150270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19382 + - uid: 19305 components: - type: Transform rot: 3.141592653589793 rad @@ -150257,14 +150278,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19383 + - uid: 19306 components: - type: Transform pos: -70.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19384 + - uid: 19307 components: - type: Transform rot: 3.141592653589793 rad @@ -150272,7 +150293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19385 + - uid: 19308 components: - type: Transform rot: -1.5707963267948966 rad @@ -150280,14 +150301,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19386 + - uid: 19309 components: - type: Transform pos: -59.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19387 + - uid: 19310 components: - type: Transform rot: 3.141592653589793 rad @@ -150295,7 +150316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19388 + - uid: 19311 components: - type: Transform rot: 3.141592653589793 rad @@ -150303,7 +150324,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19389 + - uid: 19312 components: - type: Transform rot: 3.141592653589793 rad @@ -150311,7 +150332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19390 + - uid: 19313 components: - type: Transform rot: 3.141592653589793 rad @@ -150319,7 +150340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19391 + - uid: 19314 components: - type: Transform rot: -1.5707963267948966 rad @@ -150327,7 +150348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19392 + - uid: 19315 components: - type: Transform rot: 3.141592653589793 rad @@ -150335,7 +150356,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19393 + - uid: 19316 components: - type: Transform rot: 3.141592653589793 rad @@ -150343,7 +150364,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19394 + - uid: 19317 components: - type: Transform rot: 3.141592653589793 rad @@ -150351,7 +150372,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19395 + - uid: 19318 components: - type: Transform rot: 3.141592653589793 rad @@ -150359,7 +150380,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19396 + - uid: 19319 components: - type: Transform rot: 3.141592653589793 rad @@ -150367,7 +150388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19397 + - uid: 19320 components: - type: Transform rot: 1.5707963267948966 rad @@ -150375,7 +150396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19398 + - uid: 19321 components: - type: Transform rot: 1.5707963267948966 rad @@ -150383,7 +150404,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19399 + - uid: 19322 components: - type: Transform rot: 1.5707963267948966 rad @@ -150391,7 +150412,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19400 + - uid: 19323 components: - type: Transform rot: 3.141592653589793 rad @@ -150399,7 +150420,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19401 + - uid: 19324 components: - type: Transform rot: 3.141592653589793 rad @@ -150407,7 +150428,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19402 + - uid: 19325 components: - type: Transform rot: 3.141592653589793 rad @@ -150415,7 +150436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19403 + - uid: 19326 components: - type: Transform rot: -1.5707963267948966 rad @@ -150423,7 +150444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19404 + - uid: 19327 components: - type: Transform rot: -1.5707963267948966 rad @@ -150431,14 +150452,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19405 + - uid: 19328 components: - type: Transform pos: -7.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19406 + - uid: 19329 components: - type: Transform rot: 3.141592653589793 rad @@ -150446,7 +150467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19407 + - uid: 19330 components: - type: Transform rot: 3.141592653589793 rad @@ -150454,7 +150475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19408 + - uid: 19331 components: - type: Transform rot: 3.141592653589793 rad @@ -150462,7 +150483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19409 + - uid: 19332 components: - type: Transform rot: 3.141592653589793 rad @@ -150470,7 +150491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19410 + - uid: 19333 components: - type: Transform rot: 3.141592653589793 rad @@ -150478,7 +150499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19411 + - uid: 19334 components: - type: Transform rot: 3.141592653589793 rad @@ -150486,7 +150507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19412 + - uid: 19335 components: - type: Transform rot: 3.141592653589793 rad @@ -150494,7 +150515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19413 + - uid: 19336 components: - type: Transform rot: 3.141592653589793 rad @@ -150502,7 +150523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19414 + - uid: 19337 components: - type: Transform rot: 3.141592653589793 rad @@ -150510,7 +150531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19415 + - uid: 19338 components: - type: Transform rot: 3.141592653589793 rad @@ -150518,63 +150539,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19416 + - uid: 19339 components: - type: Transform pos: -42.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19417 + - uid: 19340 components: - type: Transform pos: -40.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19418 + - uid: 19341 components: - type: Transform pos: -40.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19419 + - uid: 19342 components: - type: Transform pos: -42.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19420 + - uid: 19343 components: - type: Transform pos: -42.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19421 + - uid: 19344 components: - type: Transform pos: -40.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19422 + - uid: 19345 components: - type: Transform pos: -40.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19423 + - uid: 19346 components: - type: Transform pos: -42.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19424 + - uid: 19347 components: - type: Transform rot: 3.141592653589793 rad @@ -150582,7 +150603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19425 + - uid: 19348 components: - type: Transform rot: 3.141592653589793 rad @@ -150590,7 +150611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19426 + - uid: 19349 components: - type: Transform rot: 1.5707963267948966 rad @@ -150598,7 +150619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19427 + - uid: 19350 components: - type: Transform rot: 1.5707963267948966 rad @@ -150606,7 +150627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19428 + - uid: 19351 components: - type: Transform rot: 1.5707963267948966 rad @@ -150614,7 +150635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19429 + - uid: 19352 components: - type: Transform rot: 1.5707963267948966 rad @@ -150622,7 +150643,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19430 + - uid: 19353 components: - type: Transform rot: 1.5707963267948966 rad @@ -150630,7 +150651,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19431 + - uid: 19354 components: - type: Transform rot: 1.5707963267948966 rad @@ -150638,7 +150659,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19432 + - uid: 19355 components: - type: Transform rot: 1.5707963267948966 rad @@ -150646,7 +150667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19433 + - uid: 19356 components: - type: Transform rot: 1.5707963267948966 rad @@ -150654,7 +150675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19434 + - uid: 19357 components: - type: Transform rot: 1.5707963267948966 rad @@ -150662,7 +150683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19435 + - uid: 19358 components: - type: Transform rot: 1.5707963267948966 rad @@ -150670,7 +150691,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19436 + - uid: 19359 components: - type: Transform rot: 1.5707963267948966 rad @@ -150678,7 +150699,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19437 + - uid: 19360 components: - type: Transform rot: 1.5707963267948966 rad @@ -150686,7 +150707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19438 + - uid: 19361 components: - type: Transform rot: 1.5707963267948966 rad @@ -150694,7 +150715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19439 + - uid: 19362 components: - type: Transform rot: 1.5707963267948966 rad @@ -150702,7 +150723,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19440 + - uid: 19363 components: - type: Transform rot: 1.5707963267948966 rad @@ -150710,7 +150731,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19441 + - uid: 19364 components: - type: Transform rot: 1.5707963267948966 rad @@ -150718,7 +150739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19442 + - uid: 19365 components: - type: Transform rot: 1.5707963267948966 rad @@ -150726,7 +150747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19443 + - uid: 19366 components: - type: Transform rot: 1.5707963267948966 rad @@ -150734,7 +150755,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19444 + - uid: 19367 components: - type: Transform rot: -1.5707963267948966 rad @@ -150742,119 +150763,119 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19445 + - uid: 19368 components: - type: Transform pos: -35.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19446 + - uid: 19369 components: - type: Transform pos: -35.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19447 + - uid: 19370 components: - type: Transform pos: -35.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19448 + - uid: 19371 components: - type: Transform pos: -35.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19449 + - uid: 19372 components: - type: Transform pos: -35.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19450 + - uid: 19373 components: - type: Transform pos: -31.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19451 + - uid: 19374 components: - type: Transform pos: -31.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19452 + - uid: 19375 components: - type: Transform pos: -31.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19453 + - uid: 19376 components: - type: Transform pos: -32.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19454 + - uid: 19377 components: - type: Transform pos: -32.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19455 + - uid: 19378 components: - type: Transform pos: -31.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19456 + - uid: 19379 components: - type: Transform pos: -32.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19457 + - uid: 19380 components: - type: Transform pos: -31.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19458 + - uid: 19381 components: - type: Transform pos: -32.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19459 + - uid: 19382 components: - type: Transform pos: -31.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19460 + - uid: 19383 components: - type: Transform pos: -28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19461 + - uid: 19384 components: - type: Transform rot: 1.5707963267948966 rad @@ -150862,35 +150883,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19462 + - uid: 19385 components: - type: Transform pos: -32.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19463 + - uid: 19386 components: - type: Transform pos: -32.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19464 + - uid: 19387 components: - type: Transform pos: -32.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19465 + - uid: 19388 components: - type: Transform pos: -31.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19466 + - uid: 19389 components: - type: Transform rot: -1.5707963267948966 rad @@ -150898,7 +150919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19467 + - uid: 19390 components: - type: Transform rot: 3.141592653589793 rad @@ -150906,7 +150927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19468 + - uid: 19391 components: - type: Transform rot: 1.5707963267948966 rad @@ -150914,7 +150935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19469 + - uid: 19392 components: - type: Transform rot: 1.5707963267948966 rad @@ -150922,7 +150943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19470 + - uid: 19393 components: - type: Transform rot: 1.5707963267948966 rad @@ -150930,7 +150951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19471 + - uid: 19394 components: - type: Transform rot: 1.5707963267948966 rad @@ -150938,14 +150959,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19472 + - uid: 19395 components: - type: Transform pos: -31.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19473 + - uid: 19396 components: - type: Transform rot: 1.5707963267948966 rad @@ -150953,14 +150974,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19474 + - uid: 19397 components: - type: Transform pos: -31.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19475 + - uid: 19398 components: - type: Transform rot: 1.5707963267948966 rad @@ -150968,7 +150989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19476 + - uid: 19399 components: - type: Transform rot: 1.5707963267948966 rad @@ -150976,21 +150997,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19477 + - uid: 19400 components: - type: Transform pos: -28.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19478 + - uid: 19401 components: - type: Transform pos: -28.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19479 + - uid: 19402 components: - type: Transform rot: 1.5707963267948966 rad @@ -150998,105 +151019,105 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19480 + - uid: 19403 components: - type: Transform pos: -32.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19481 + - uid: 19404 components: - type: Transform pos: -32.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19482 + - uid: 19405 components: - type: Transform pos: -31.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19483 + - uid: 19406 components: - type: Transform pos: -31.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19484 + - uid: 19407 components: - type: Transform pos: -32.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19485 + - uid: 19408 components: - type: Transform pos: -31.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19486 + - uid: 19409 components: - type: Transform pos: -32.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19487 + - uid: 19410 components: - type: Transform pos: -32.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19488 + - uid: 19411 components: - type: Transform pos: -31.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19489 + - uid: 19412 components: - type: Transform pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19490 + - uid: 19413 components: - type: Transform pos: -31.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19491 + - uid: 19414 components: - type: Transform pos: -32.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19492 + - uid: 19415 components: - type: Transform pos: -32.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19493 + - uid: 19416 components: - type: Transform pos: -31.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19494 + - uid: 19417 components: - type: Transform rot: -1.5707963267948966 rad @@ -151104,7 +151125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19495 + - uid: 19418 components: - type: Transform rot: -1.5707963267948966 rad @@ -151112,7 +151133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19496 + - uid: 19419 components: - type: Transform rot: -1.5707963267948966 rad @@ -151120,7 +151141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19497 + - uid: 19420 components: - type: Transform rot: -1.5707963267948966 rad @@ -151128,7 +151149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19498 + - uid: 19421 components: - type: Transform rot: -1.5707963267948966 rad @@ -151136,7 +151157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19499 + - uid: 19422 components: - type: Transform rot: -1.5707963267948966 rad @@ -151144,7 +151165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19500 + - uid: 19423 components: - type: Transform rot: 3.141592653589793 rad @@ -151152,7 +151173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19501 + - uid: 19424 components: - type: Transform rot: 3.141592653589793 rad @@ -151160,7 +151181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19502 + - uid: 19425 components: - type: Transform rot: 3.141592653589793 rad @@ -151168,7 +151189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19503 + - uid: 19426 components: - type: Transform rot: 3.141592653589793 rad @@ -151176,7 +151197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19504 + - uid: 19427 components: - type: Transform rot: 3.141592653589793 rad @@ -151184,7 +151205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19505 + - uid: 19428 components: - type: Transform rot: 3.141592653589793 rad @@ -151192,7 +151213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19506 + - uid: 19429 components: - type: Transform rot: 3.141592653589793 rad @@ -151200,7 +151221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19507 + - uid: 19430 components: - type: Transform rot: 3.141592653589793 rad @@ -151208,7 +151229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19508 + - uid: 19431 components: - type: Transform rot: 3.141592653589793 rad @@ -151216,7 +151237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19509 + - uid: 19432 components: - type: Transform rot: 3.141592653589793 rad @@ -151224,7 +151245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19510 + - uid: 19433 components: - type: Transform rot: 1.5707963267948966 rad @@ -151232,7 +151253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19511 + - uid: 19434 components: - type: Transform rot: 1.5707963267948966 rad @@ -151240,7 +151261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19512 + - uid: 19435 components: - type: Transform rot: 1.5707963267948966 rad @@ -151248,7 +151269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19513 + - uid: 19436 components: - type: Transform rot: 1.5707963267948966 rad @@ -151256,7 +151277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19514 + - uid: 19437 components: - type: Transform rot: 1.5707963267948966 rad @@ -151264,7 +151285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19515 + - uid: 19438 components: - type: Transform rot: 1.5707963267948966 rad @@ -151272,7 +151293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19516 + - uid: 19439 components: - type: Transform rot: 1.5707963267948966 rad @@ -151280,7 +151301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19517 + - uid: 19440 components: - type: Transform rot: 1.5707963267948966 rad @@ -151288,7 +151309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19518 + - uid: 19441 components: - type: Transform rot: 1.5707963267948966 rad @@ -151296,7 +151317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19519 + - uid: 19442 components: - type: Transform rot: 1.5707963267948966 rad @@ -151304,49 +151325,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19520 + - uid: 19443 components: - type: Transform pos: -24.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19521 + - uid: 19444 components: - type: Transform pos: -24.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19522 + - uid: 19445 components: - type: Transform pos: -24.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19523 + - uid: 19446 components: - type: Transform pos: -25.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19524 + - uid: 19447 components: - type: Transform pos: -25.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19525 + - uid: 19448 components: - type: Transform pos: -24.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19526 + - uid: 19449 components: - type: Transform rot: -1.5707963267948966 rad @@ -151354,7 +151375,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19527 + - uid: 19450 components: - type: Transform rot: -1.5707963267948966 rad @@ -151362,7 +151383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19528 + - uid: 19451 components: - type: Transform rot: -1.5707963267948966 rad @@ -151370,7 +151391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19529 + - uid: 19452 components: - type: Transform rot: -1.5707963267948966 rad @@ -151378,7 +151399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19530 + - uid: 19453 components: - type: Transform rot: -1.5707963267948966 rad @@ -151386,7 +151407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19531 + - uid: 19454 components: - type: Transform rot: -1.5707963267948966 rad @@ -151394,7 +151415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19532 + - uid: 19455 components: - type: Transform rot: -1.5707963267948966 rad @@ -151402,7 +151423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19533 + - uid: 19456 components: - type: Transform rot: -1.5707963267948966 rad @@ -151410,7 +151431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19534 + - uid: 19457 components: - type: Transform rot: 3.141592653589793 rad @@ -151418,7 +151439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19535 + - uid: 19458 components: - type: Transform rot: 3.141592653589793 rad @@ -151426,7 +151447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19536 + - uid: 19459 components: - type: Transform rot: 3.141592653589793 rad @@ -151434,7 +151455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19537 + - uid: 19460 components: - type: Transform rot: 3.141592653589793 rad @@ -151442,7 +151463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19538 + - uid: 19461 components: - type: Transform rot: 3.141592653589793 rad @@ -151450,7 +151471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19539 + - uid: 19462 components: - type: Transform rot: 3.141592653589793 rad @@ -151458,14 +151479,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19540 + - uid: 19463 components: - type: Transform pos: -19.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19541 + - uid: 19464 components: - type: Transform rot: 3.141592653589793 rad @@ -151473,7 +151494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19542 + - uid: 19465 components: - type: Transform rot: 3.141592653589793 rad @@ -151481,7 +151502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19543 + - uid: 19466 components: - type: Transform rot: 3.141592653589793 rad @@ -151489,7 +151510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19544 + - uid: 19467 components: - type: Transform rot: 3.141592653589793 rad @@ -151497,7 +151518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19545 + - uid: 19468 components: - type: Transform rot: 3.141592653589793 rad @@ -151505,7 +151526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19546 + - uid: 19469 components: - type: Transform rot: 3.141592653589793 rad @@ -151513,7 +151534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19547 + - uid: 19470 components: - type: Transform rot: 3.141592653589793 rad @@ -151521,7 +151542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19548 + - uid: 19471 components: - type: Transform rot: 3.141592653589793 rad @@ -151529,7 +151550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19549 + - uid: 19472 components: - type: Transform rot: 3.141592653589793 rad @@ -151537,7 +151558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19550 + - uid: 19473 components: - type: Transform rot: 3.141592653589793 rad @@ -151545,7 +151566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19551 + - uid: 19474 components: - type: Transform rot: 3.141592653589793 rad @@ -151553,7 +151574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19552 + - uid: 19475 components: - type: Transform rot: 3.141592653589793 rad @@ -151561,7 +151582,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19553 + - uid: 19476 components: - type: Transform rot: 3.141592653589793 rad @@ -151569,7 +151590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19554 + - uid: 19477 components: - type: Transform rot: 3.141592653589793 rad @@ -151577,7 +151598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19555 + - uid: 19478 components: - type: Transform rot: 3.141592653589793 rad @@ -151585,7 +151606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19556 + - uid: 19479 components: - type: Transform rot: 3.141592653589793 rad @@ -151593,7 +151614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19557 + - uid: 19480 components: - type: Transform rot: 3.141592653589793 rad @@ -151601,7 +151622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19558 + - uid: 19481 components: - type: Transform rot: 3.141592653589793 rad @@ -151609,7 +151630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19559 + - uid: 19482 components: - type: Transform rot: 3.141592653589793 rad @@ -151617,7 +151638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19560 + - uid: 19483 components: - type: Transform rot: 3.141592653589793 rad @@ -151625,7 +151646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19561 + - uid: 19484 components: - type: Transform rot: 3.141592653589793 rad @@ -151633,7 +151654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19562 + - uid: 19485 components: - type: Transform rot: 3.141592653589793 rad @@ -151641,7 +151662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19563 + - uid: 19486 components: - type: Transform rot: 3.141592653589793 rad @@ -151649,7 +151670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19564 + - uid: 19487 components: - type: Transform rot: 3.141592653589793 rad @@ -151657,7 +151678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19565 + - uid: 19488 components: - type: Transform rot: 3.141592653589793 rad @@ -151665,35 +151686,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19566 + - uid: 19489 components: - type: Transform pos: -19.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19567 + - uid: 19490 components: - type: Transform pos: -17.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19568 + - uid: 19491 components: - type: Transform pos: -19.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19569 + - uid: 19492 components: - type: Transform pos: -17.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19570 + - uid: 19493 components: - type: Transform rot: -1.5707963267948966 rad @@ -151701,7 +151722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19571 + - uid: 19494 components: - type: Transform rot: -1.5707963267948966 rad @@ -151709,14 +151730,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19572 + - uid: 19495 components: - type: Transform pos: -17.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19573 + - uid: 19496 components: - type: Transform rot: -1.5707963267948966 rad @@ -151724,7 +151745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19574 + - uid: 19497 components: - type: Transform rot: -1.5707963267948966 rad @@ -151732,7 +151753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19575 + - uid: 19498 components: - type: Transform rot: -1.5707963267948966 rad @@ -151740,7 +151761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19576 + - uid: 19499 components: - type: Transform rot: -1.5707963267948966 rad @@ -151748,63 +151769,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19577 + - uid: 19500 components: - type: Transform pos: -19.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19578 + - uid: 19501 components: - type: Transform pos: -17.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19579 + - uid: 19502 components: - type: Transform pos: -19.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19580 + - uid: 19503 components: - type: Transform pos: -17.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19581 + - uid: 19504 components: - type: Transform pos: -17.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19582 + - uid: 19505 components: - type: Transform pos: -19.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19583 + - uid: 19506 components: - type: Transform pos: -19.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19584 + - uid: 19507 components: - type: Transform pos: -17.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19585 + - uid: 19508 components: - type: Transform rot: 3.141592653589793 rad @@ -151812,7 +151833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19586 + - uid: 19509 components: - type: Transform rot: 3.141592653589793 rad @@ -151820,7 +151841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19587 + - uid: 19510 components: - type: Transform rot: 3.141592653589793 rad @@ -151828,7 +151849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19588 + - uid: 19511 components: - type: Transform rot: 3.141592653589793 rad @@ -151836,7 +151857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19589 + - uid: 19512 components: - type: Transform rot: 1.5707963267948966 rad @@ -151844,7 +151865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19590 + - uid: 19513 components: - type: Transform rot: 1.5707963267948966 rad @@ -151852,7 +151873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19591 + - uid: 19514 components: - type: Transform rot: 1.5707963267948966 rad @@ -151860,7 +151881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19592 + - uid: 19515 components: - type: Transform rot: 1.5707963267948966 rad @@ -151868,7 +151889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19593 + - uid: 19516 components: - type: Transform rot: 1.5707963267948966 rad @@ -151876,7 +151897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19594 + - uid: 19517 components: - type: Transform rot: 1.5707963267948966 rad @@ -151884,7 +151905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19595 + - uid: 19518 components: - type: Transform rot: 1.5707963267948966 rad @@ -151892,7 +151913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19596 + - uid: 19519 components: - type: Transform rot: 1.5707963267948966 rad @@ -151900,21 +151921,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19597 + - uid: 19520 components: - type: Transform pos: -19.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19598 + - uid: 19521 components: - type: Transform pos: -17.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19599 + - uid: 19522 components: - type: Transform rot: 3.141592653589793 rad @@ -151922,7 +151943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19600 + - uid: 19523 components: - type: Transform rot: 3.141592653589793 rad @@ -151930,7 +151951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19601 + - uid: 19524 components: - type: Transform rot: 1.5707963267948966 rad @@ -151938,7 +151959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19602 + - uid: 19525 components: - type: Transform rot: 1.5707963267948966 rad @@ -151946,7 +151967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19603 + - uid: 19526 components: - type: Transform rot: 1.5707963267948966 rad @@ -151954,7 +151975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19604 + - uid: 19527 components: - type: Transform rot: 1.5707963267948966 rad @@ -151962,7 +151983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19605 + - uid: 19528 components: - type: Transform rot: 1.5707963267948966 rad @@ -151970,7 +151991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19606 + - uid: 19529 components: - type: Transform rot: 1.5707963267948966 rad @@ -151978,7 +151999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19607 + - uid: 19530 components: - type: Transform rot: 1.5707963267948966 rad @@ -151986,7 +152007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19608 + - uid: 19531 components: - type: Transform rot: 1.5707963267948966 rad @@ -151994,7 +152015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19609 + - uid: 19532 components: - type: Transform rot: 1.5707963267948966 rad @@ -152002,7 +152023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19610 + - uid: 19533 components: - type: Transform rot: 1.5707963267948966 rad @@ -152010,7 +152031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19611 + - uid: 19534 components: - type: Transform rot: 1.5707963267948966 rad @@ -152018,7 +152039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19612 + - uid: 19535 components: - type: Transform rot: 1.5707963267948966 rad @@ -152026,7 +152047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19613 + - uid: 19536 components: - type: Transform rot: 1.5707963267948966 rad @@ -152034,7 +152055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19614 + - uid: 19537 components: - type: Transform rot: 1.5707963267948966 rad @@ -152042,7 +152063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19615 + - uid: 19538 components: - type: Transform rot: -1.5707963267948966 rad @@ -152050,7 +152071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19616 + - uid: 19539 components: - type: Transform rot: -1.5707963267948966 rad @@ -152058,7 +152079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19617 + - uid: 19540 components: - type: Transform rot: -1.5707963267948966 rad @@ -152066,7 +152087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19618 + - uid: 19541 components: - type: Transform rot: -1.5707963267948966 rad @@ -152074,7 +152095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19619 + - uid: 19542 components: - type: Transform rot: -1.5707963267948966 rad @@ -152082,7 +152103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19620 + - uid: 19543 components: - type: Transform rot: -1.5707963267948966 rad @@ -152090,7 +152111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19621 + - uid: 19544 components: - type: Transform rot: 1.5707963267948966 rad @@ -152098,7 +152119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19622 + - uid: 19545 components: - type: Transform rot: -1.5707963267948966 rad @@ -152106,7 +152127,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19623 + - uid: 19546 components: - type: Transform rot: -1.5707963267948966 rad @@ -152114,7 +152135,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19624 + - uid: 19547 components: - type: Transform rot: -1.5707963267948966 rad @@ -152122,7 +152143,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19625 + - uid: 19548 components: - type: Transform rot: -1.5707963267948966 rad @@ -152130,7 +152151,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19626 + - uid: 19549 components: - type: Transform rot: -1.5707963267948966 rad @@ -152138,7 +152159,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19627 + - uid: 19550 components: - type: Transform rot: -1.5707963267948966 rad @@ -152146,7 +152167,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19628 + - uid: 19551 components: - type: Transform rot: 1.5707963267948966 rad @@ -152154,7 +152175,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19629 + - uid: 19552 components: - type: Transform rot: 1.5707963267948966 rad @@ -152162,7 +152183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19630 + - uid: 19553 components: - type: Transform rot: 1.5707963267948966 rad @@ -152170,7 +152191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19631 + - uid: 19554 components: - type: Transform rot: 1.5707963267948966 rad @@ -152178,7 +152199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19632 + - uid: 19555 components: - type: Transform rot: 1.5707963267948966 rad @@ -152186,7 +152207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19633 + - uid: 19556 components: - type: Transform rot: 1.5707963267948966 rad @@ -152194,7 +152215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19634 + - uid: 19557 components: - type: Transform rot: 1.5707963267948966 rad @@ -152202,7 +152223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19635 + - uid: 19558 components: - type: Transform rot: 1.5707963267948966 rad @@ -152210,7 +152231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19636 + - uid: 19559 components: - type: Transform rot: 1.5707963267948966 rad @@ -152218,7 +152239,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19637 + - uid: 19560 components: - type: Transform rot: 1.5707963267948966 rad @@ -152226,7 +152247,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19638 + - uid: 19561 components: - type: Transform rot: 1.5707963267948966 rad @@ -152234,7 +152255,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19639 + - uid: 19562 components: - type: Transform rot: 1.5707963267948966 rad @@ -152242,7 +152263,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19640 + - uid: 19563 components: - type: Transform rot: 1.5707963267948966 rad @@ -152250,7 +152271,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19641 + - uid: 19564 components: - type: Transform rot: 1.5707963267948966 rad @@ -152258,7 +152279,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19642 + - uid: 19565 components: - type: Transform rot: 1.5707963267948966 rad @@ -152266,7 +152287,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19643 + - uid: 19566 components: - type: Transform rot: 1.5707963267948966 rad @@ -152274,7 +152295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19644 + - uid: 19567 components: - type: Transform rot: 1.5707963267948966 rad @@ -152282,7 +152303,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19645 + - uid: 19568 components: - type: Transform rot: 1.5707963267948966 rad @@ -152290,14 +152311,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19646 + - uid: 19569 components: - type: Transform pos: 5.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19647 + - uid: 19570 components: - type: Transform rot: 1.5707963267948966 rad @@ -152305,7 +152326,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19648 + - uid: 19571 components: - type: Transform rot: 1.5707963267948966 rad @@ -152313,14 +152334,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19649 + - uid: 19572 components: - type: Transform pos: 5.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19650 + - uid: 19573 components: - type: Transform rot: 1.5707963267948966 rad @@ -152328,7 +152349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19651 + - uid: 19574 components: - type: Transform rot: 1.5707963267948966 rad @@ -152336,7 +152357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19652 + - uid: 19575 components: - type: Transform rot: 1.5707963267948966 rad @@ -152344,7 +152365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19653 + - uid: 19576 components: - type: Transform rot: 1.5707963267948966 rad @@ -152352,7 +152373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19654 + - uid: 19577 components: - type: Transform rot: 1.5707963267948966 rad @@ -152360,7 +152381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19655 + - uid: 19578 components: - type: Transform rot: 1.5707963267948966 rad @@ -152368,7 +152389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19656 + - uid: 19579 components: - type: Transform rot: -1.5707963267948966 rad @@ -152376,7 +152397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19657 + - uid: 19580 components: - type: Transform rot: -1.5707963267948966 rad @@ -152384,7 +152405,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19658 + - uid: 19581 components: - type: Transform rot: 3.141592653589793 rad @@ -152392,7 +152413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19659 + - uid: 19582 components: - type: Transform rot: 3.141592653589793 rad @@ -152400,7 +152421,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19660 + - uid: 19583 components: - type: Transform rot: 3.141592653589793 rad @@ -152408,7 +152429,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19661 + - uid: 19584 components: - type: Transform rot: 3.141592653589793 rad @@ -152416,7 +152437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19662 + - uid: 19585 components: - type: Transform rot: 3.141592653589793 rad @@ -152424,7 +152445,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19663 + - uid: 19586 components: - type: Transform rot: 3.141592653589793 rad @@ -152432,7 +152453,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19664 + - uid: 19587 components: - type: Transform rot: 3.141592653589793 rad @@ -152440,7 +152461,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19665 + - uid: 19588 components: - type: Transform rot: 3.141592653589793 rad @@ -152448,7 +152469,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19666 + - uid: 19589 components: - type: Transform rot: 3.141592653589793 rad @@ -152456,7 +152477,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19667 + - uid: 19590 components: - type: Transform rot: 3.141592653589793 rad @@ -152464,7 +152485,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19668 + - uid: 19591 components: - type: Transform rot: 3.141592653589793 rad @@ -152472,7 +152493,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19669 + - uid: 19592 components: - type: Transform rot: 3.141592653589793 rad @@ -152480,7 +152501,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19670 + - uid: 19593 components: - type: Transform rot: 3.141592653589793 rad @@ -152488,7 +152509,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19671 + - uid: 19594 components: - type: Transform rot: 3.141592653589793 rad @@ -152496,7 +152517,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19672 + - uid: 19595 components: - type: Transform rot: -1.5707963267948966 rad @@ -152504,7 +152525,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19673 + - uid: 19596 components: - type: Transform rot: 3.141592653589793 rad @@ -152512,7 +152533,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19674 + - uid: 19597 components: - type: Transform rot: 3.141592653589793 rad @@ -152520,14 +152541,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19675 + - uid: 19598 components: - type: Transform pos: 16.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19676 + - uid: 19599 components: - type: Transform rot: 3.141592653589793 rad @@ -152535,7 +152556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19677 + - uid: 19600 components: - type: Transform rot: 3.141592653589793 rad @@ -152543,7 +152564,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19678 + - uid: 19601 components: - type: Transform rot: 3.141592653589793 rad @@ -152551,7 +152572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19679 + - uid: 19602 components: - type: Transform rot: 3.141592653589793 rad @@ -152559,7 +152580,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19680 + - uid: 19603 components: - type: Transform rot: 1.5707963267948966 rad @@ -152567,7 +152588,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19681 + - uid: 19604 components: - type: Transform rot: 1.5707963267948966 rad @@ -152575,7 +152596,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19682 + - uid: 19605 components: - type: Transform rot: 1.5707963267948966 rad @@ -152583,7 +152604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19683 + - uid: 19606 components: - type: Transform rot: 1.5707963267948966 rad @@ -152591,7 +152612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19684 + - uid: 19607 components: - type: Transform rot: 1.5707963267948966 rad @@ -152599,7 +152620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19685 + - uid: 19608 components: - type: Transform rot: 1.5707963267948966 rad @@ -152607,7 +152628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19686 + - uid: 19609 components: - type: Transform rot: 1.5707963267948966 rad @@ -152615,7 +152636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19687 + - uid: 19610 components: - type: Transform rot: 1.5707963267948966 rad @@ -152623,7 +152644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19688 + - uid: 19611 components: - type: Transform rot: 1.5707963267948966 rad @@ -152631,7 +152652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19689 + - uid: 19612 components: - type: Transform rot: 1.5707963267948966 rad @@ -152639,7 +152660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19690 + - uid: 19613 components: - type: Transform rot: 1.5707963267948966 rad @@ -152647,7 +152668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19691 + - uid: 19614 components: - type: Transform rot: 1.5707963267948966 rad @@ -152655,7 +152676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19692 + - uid: 19615 components: - type: Transform rot: 1.5707963267948966 rad @@ -152663,7 +152684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19693 + - uid: 19616 components: - type: Transform rot: 1.5707963267948966 rad @@ -152671,7 +152692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19694 + - uid: 19617 components: - type: Transform rot: 1.5707963267948966 rad @@ -152679,7 +152700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19695 + - uid: 19618 components: - type: Transform rot: 1.5707963267948966 rad @@ -152687,7 +152708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19696 + - uid: 19619 components: - type: Transform rot: 1.5707963267948966 rad @@ -152695,7 +152716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19697 + - uid: 19620 components: - type: Transform rot: 1.5707963267948966 rad @@ -152703,7 +152724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19698 + - uid: 19621 components: - type: Transform rot: 1.5707963267948966 rad @@ -152711,7 +152732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19699 + - uid: 19622 components: - type: Transform rot: 1.5707963267948966 rad @@ -152719,7 +152740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19700 + - uid: 19623 components: - type: Transform rot: 1.5707963267948966 rad @@ -152727,7 +152748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19701 + - uid: 19624 components: - type: Transform rot: 1.5707963267948966 rad @@ -152735,7 +152756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19702 + - uid: 19625 components: - type: Transform rot: 1.5707963267948966 rad @@ -152743,7 +152764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19703 + - uid: 19626 components: - type: Transform rot: 1.5707963267948966 rad @@ -152751,7 +152772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19704 + - uid: 19627 components: - type: Transform rot: 1.5707963267948966 rad @@ -152759,7 +152780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19705 + - uid: 19628 components: - type: Transform rot: 1.5707963267948966 rad @@ -152767,7 +152788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19706 + - uid: 19629 components: - type: Transform rot: 1.5707963267948966 rad @@ -152775,7 +152796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19707 + - uid: 19630 components: - type: Transform rot: 1.5707963267948966 rad @@ -152783,7 +152804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19708 + - uid: 19631 components: - type: Transform rot: 1.5707963267948966 rad @@ -152791,7 +152812,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19709 + - uid: 19632 components: - type: Transform rot: 1.5707963267948966 rad @@ -152799,7 +152820,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19710 + - uid: 19633 components: - type: Transform rot: 1.5707963267948966 rad @@ -152807,7 +152828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19711 + - uid: 19634 components: - type: Transform rot: 1.5707963267948966 rad @@ -152815,7 +152836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19712 + - uid: 19635 components: - type: Transform rot: 1.5707963267948966 rad @@ -152823,7 +152844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19713 + - uid: 19636 components: - type: Transform rot: 1.5707963267948966 rad @@ -152831,7 +152852,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19714 + - uid: 19637 components: - type: Transform rot: 1.5707963267948966 rad @@ -152839,7 +152860,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19715 + - uid: 19638 components: - type: Transform rot: 1.5707963267948966 rad @@ -152847,7 +152868,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19716 + - uid: 19639 components: - type: Transform rot: 1.5707963267948966 rad @@ -152855,7 +152876,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19717 + - uid: 19640 components: - type: Transform rot: 1.5707963267948966 rad @@ -152863,7 +152884,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19718 + - uid: 19641 components: - type: Transform rot: 1.5707963267948966 rad @@ -152871,7 +152892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19719 + - uid: 19642 components: - type: Transform rot: 1.5707963267948966 rad @@ -152879,7 +152900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19720 + - uid: 19643 components: - type: Transform rot: 1.5707963267948966 rad @@ -152887,7 +152908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19721 + - uid: 19644 components: - type: Transform rot: 1.5707963267948966 rad @@ -152895,7 +152916,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19722 + - uid: 19645 components: - type: Transform rot: 1.5707963267948966 rad @@ -152903,7 +152924,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19723 + - uid: 19646 components: - type: Transform rot: 1.5707963267948966 rad @@ -152911,7 +152932,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19724 + - uid: 19647 components: - type: Transform rot: 1.5707963267948966 rad @@ -152919,7 +152940,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19725 + - uid: 19648 components: - type: Transform rot: 1.5707963267948966 rad @@ -152927,7 +152948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19726 + - uid: 19649 components: - type: Transform rot: 1.5707963267948966 rad @@ -152935,7 +152956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19727 + - uid: 19650 components: - type: Transform rot: 1.5707963267948966 rad @@ -152943,7 +152964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19728 + - uid: 19651 components: - type: Transform rot: 1.5707963267948966 rad @@ -152951,7 +152972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19729 + - uid: 19652 components: - type: Transform rot: 1.5707963267948966 rad @@ -152959,7 +152980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19730 + - uid: 19653 components: - type: Transform rot: 1.5707963267948966 rad @@ -152967,7 +152988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19731 + - uid: 19654 components: - type: Transform rot: 1.5707963267948966 rad @@ -152975,7 +152996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19732 + - uid: 19655 components: - type: Transform rot: 1.5707963267948966 rad @@ -152983,7 +153004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19733 + - uid: 19656 components: - type: Transform rot: 1.5707963267948966 rad @@ -152991,7 +153012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19734 + - uid: 19657 components: - type: Transform rot: 1.5707963267948966 rad @@ -152999,7 +153020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19735 + - uid: 19658 components: - type: Transform rot: 3.141592653589793 rad @@ -153007,7 +153028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19736 + - uid: 19659 components: - type: Transform rot: 3.141592653589793 rad @@ -153015,7 +153036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19737 + - uid: 19660 components: - type: Transform rot: 3.141592653589793 rad @@ -153023,7 +153044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19738 + - uid: 19661 components: - type: Transform rot: 3.141592653589793 rad @@ -153031,7 +153052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19739 + - uid: 19662 components: - type: Transform rot: 3.141592653589793 rad @@ -153039,7 +153060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19740 + - uid: 19663 components: - type: Transform rot: 3.141592653589793 rad @@ -153047,7 +153068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19741 + - uid: 19664 components: - type: Transform rot: 3.141592653589793 rad @@ -153055,7 +153076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19742 + - uid: 19665 components: - type: Transform rot: 3.141592653589793 rad @@ -153063,7 +153084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19743 + - uid: 19666 components: - type: Transform rot: 3.141592653589793 rad @@ -153071,7 +153092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19744 + - uid: 19667 components: - type: Transform rot: 3.141592653589793 rad @@ -153079,7 +153100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19745 + - uid: 19668 components: - type: Transform rot: 3.141592653589793 rad @@ -153087,7 +153108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19746 + - uid: 19669 components: - type: Transform rot: 3.141592653589793 rad @@ -153095,7 +153116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19747 + - uid: 19670 components: - type: Transform rot: 3.141592653589793 rad @@ -153103,7 +153124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19748 + - uid: 19671 components: - type: Transform rot: 3.141592653589793 rad @@ -153111,35 +153132,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19749 + - uid: 19672 components: - type: Transform pos: -13.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19750 + - uid: 19673 components: - type: Transform pos: -13.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19751 + - uid: 19674 components: - type: Transform pos: -9.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19752 + - uid: 19675 components: - type: Transform pos: -14.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19753 + - uid: 19676 components: - type: Transform rot: 3.141592653589793 rad @@ -153147,91 +153168,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19754 + - uid: 19677 components: - type: Transform pos: -8.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19755 + - uid: 19678 components: - type: Transform pos: -3.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19756 + - uid: 19679 components: - type: Transform pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19757 + - uid: 19680 components: - type: Transform pos: 2.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19758 + - uid: 19681 components: - type: Transform pos: 2.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19759 + - uid: 19682 components: - type: Transform pos: 2.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19760 + - uid: 19683 components: - type: Transform pos: -3.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19761 + - uid: 19684 components: - type: Transform pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19762 + - uid: 19685 components: - type: Transform pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19763 + - uid: 19686 components: - type: Transform pos: -3.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19764 + - uid: 19687 components: - type: Transform pos: -3.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19765 + - uid: 19688 components: - type: Transform pos: -3.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19766 + - uid: 19689 components: - type: Transform rot: 1.5707963267948966 rad @@ -153239,7 +153260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19767 + - uid: 19690 components: - type: Transform rot: 1.5707963267948966 rad @@ -153247,7 +153268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19768 + - uid: 19691 components: - type: Transform rot: 1.5707963267948966 rad @@ -153255,7 +153276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19769 + - uid: 19692 components: - type: Transform rot: 1.5707963267948966 rad @@ -153263,7 +153284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19770 + - uid: 19693 components: - type: Transform rot: 1.5707963267948966 rad @@ -153271,35 +153292,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19771 + - uid: 19694 components: - type: Transform pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19772 + - uid: 19695 components: - type: Transform pos: 8.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19773 + - uid: 19696 components: - type: Transform pos: 8.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19774 + - uid: 19697 components: - type: Transform pos: 8.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19775 + - uid: 19698 components: - type: Transform rot: 3.141592653589793 rad @@ -153307,7 +153328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19776 + - uid: 19699 components: - type: Transform rot: 3.141592653589793 rad @@ -153315,7 +153336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19777 + - uid: 19700 components: - type: Transform rot: 3.141592653589793 rad @@ -153323,7 +153344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19778 + - uid: 19701 components: - type: Transform rot: 3.141592653589793 rad @@ -153331,7 +153352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19779 + - uid: 19702 components: - type: Transform rot: 3.141592653589793 rad @@ -153339,7 +153360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19780 + - uid: 19703 components: - type: Transform rot: 3.141592653589793 rad @@ -153347,7 +153368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19781 + - uid: 19704 components: - type: Transform rot: 3.141592653589793 rad @@ -153355,7 +153376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19782 + - uid: 19705 components: - type: Transform rot: 3.141592653589793 rad @@ -153363,7 +153384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19783 + - uid: 19706 components: - type: Transform rot: 3.141592653589793 rad @@ -153371,7 +153392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19784 + - uid: 19707 components: - type: Transform rot: 3.141592653589793 rad @@ -153379,7 +153400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19785 + - uid: 19708 components: - type: Transform rot: 3.141592653589793 rad @@ -153387,7 +153408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19786 + - uid: 19709 components: - type: Transform rot: 3.141592653589793 rad @@ -153395,7 +153416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19787 + - uid: 19710 components: - type: Transform rot: 3.141592653589793 rad @@ -153403,7 +153424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19788 + - uid: 19711 components: - type: Transform rot: 3.141592653589793 rad @@ -153411,7 +153432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19789 + - uid: 19712 components: - type: Transform rot: 3.141592653589793 rad @@ -153419,7 +153440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19790 + - uid: 19713 components: - type: Transform rot: 3.141592653589793 rad @@ -153427,7 +153448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19791 + - uid: 19714 components: - type: Transform rot: 3.141592653589793 rad @@ -153435,7 +153456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19792 + - uid: 19715 components: - type: Transform rot: 3.141592653589793 rad @@ -153443,7 +153464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19793 + - uid: 19716 components: - type: Transform rot: 3.141592653589793 rad @@ -153451,7 +153472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19794 + - uid: 19717 components: - type: Transform rot: 3.141592653589793 rad @@ -153459,7 +153480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19795 + - uid: 19718 components: - type: Transform rot: 3.141592653589793 rad @@ -153467,7 +153488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19796 + - uid: 19719 components: - type: Transform rot: 3.141592653589793 rad @@ -153475,7 +153496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19797 + - uid: 19720 components: - type: Transform rot: 3.141592653589793 rad @@ -153483,7 +153504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19798 + - uid: 19721 components: - type: Transform rot: 3.141592653589793 rad @@ -153491,7 +153512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19799 + - uid: 19722 components: - type: Transform rot: 3.141592653589793 rad @@ -153499,7 +153520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19800 + - uid: 19723 components: - type: Transform rot: 3.141592653589793 rad @@ -153507,7 +153528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19801 + - uid: 19724 components: - type: Transform rot: 3.141592653589793 rad @@ -153515,7 +153536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19802 + - uid: 19725 components: - type: Transform rot: 3.141592653589793 rad @@ -153523,70 +153544,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19803 + - uid: 19726 components: - type: Transform pos: 18.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19804 + - uid: 19727 components: - type: Transform pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19805 + - uid: 19728 components: - type: Transform pos: 16.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19806 + - uid: 19729 components: - type: Transform pos: 16.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19807 + - uid: 19730 components: - type: Transform pos: 18.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19808 + - uid: 19731 components: - type: Transform pos: 18.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19809 + - uid: 19732 components: - type: Transform pos: 16.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19810 + - uid: 19733 components: - type: Transform pos: 16.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19811 + - uid: 19734 components: - type: Transform pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19812 + - uid: 19735 components: - type: Transform rot: 1.5707963267948966 rad @@ -153594,7 +153615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19813 + - uid: 19736 components: - type: Transform rot: 1.5707963267948966 rad @@ -153602,7 +153623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19814 + - uid: 19737 components: - type: Transform rot: 1.5707963267948966 rad @@ -153610,7 +153631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19815 + - uid: 19738 components: - type: Transform rot: 1.5707963267948966 rad @@ -153618,7 +153639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19816 + - uid: 19739 components: - type: Transform rot: 1.5707963267948966 rad @@ -153626,7 +153647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19817 + - uid: 19740 components: - type: Transform rot: 1.5707963267948966 rad @@ -153634,7 +153655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19818 + - uid: 19741 components: - type: Transform rot: 1.5707963267948966 rad @@ -153642,7 +153663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19819 + - uid: 19742 components: - type: Transform rot: 1.5707963267948966 rad @@ -153650,7 +153671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19820 + - uid: 19743 components: - type: Transform rot: 1.5707963267948966 rad @@ -153658,7 +153679,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19821 + - uid: 19744 components: - type: Transform rot: 1.5707963267948966 rad @@ -153666,7 +153687,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19822 + - uid: 19745 components: - type: Transform rot: 1.5707963267948966 rad @@ -153674,7 +153695,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19823 + - uid: 19746 components: - type: Transform rot: 1.5707963267948966 rad @@ -153682,7 +153703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19824 + - uid: 19747 components: - type: Transform rot: 1.5707963267948966 rad @@ -153690,7 +153711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19825 + - uid: 19748 components: - type: Transform rot: 1.5707963267948966 rad @@ -153698,7 +153719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19826 + - uid: 19749 components: - type: Transform rot: 1.5707963267948966 rad @@ -153706,7 +153727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19827 + - uid: 19750 components: - type: Transform rot: 1.5707963267948966 rad @@ -153714,7 +153735,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19828 + - uid: 19751 components: - type: Transform rot: 1.5707963267948966 rad @@ -153722,14 +153743,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19829 + - uid: 19752 components: - type: Transform pos: 18.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19830 + - uid: 19753 components: - type: Transform rot: -1.5707963267948966 rad @@ -153737,7 +153758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19831 + - uid: 19754 components: - type: Transform rot: -1.5707963267948966 rad @@ -153745,7 +153766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19832 + - uid: 19755 components: - type: Transform rot: -1.5707963267948966 rad @@ -153753,7 +153774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19833 + - uid: 19756 components: - type: Transform rot: -1.5707963267948966 rad @@ -153761,7 +153782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19834 + - uid: 19757 components: - type: Transform rot: -1.5707963267948966 rad @@ -153769,7 +153790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19835 + - uid: 19758 components: - type: Transform rot: 3.141592653589793 rad @@ -153777,7 +153798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19836 + - uid: 19759 components: - type: Transform rot: 3.141592653589793 rad @@ -153785,7 +153806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19837 + - uid: 19760 components: - type: Transform rot: -1.5707963267948966 rad @@ -153793,7 +153814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19838 + - uid: 19761 components: - type: Transform rot: -1.5707963267948966 rad @@ -153801,7 +153822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19839 + - uid: 19762 components: - type: Transform rot: -1.5707963267948966 rad @@ -153809,7 +153830,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19840 + - uid: 19763 components: - type: Transform rot: -1.5707963267948966 rad @@ -153817,7 +153838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19841 + - uid: 19764 components: - type: Transform rot: -1.5707963267948966 rad @@ -153825,7 +153846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19842 + - uid: 19765 components: - type: Transform rot: -1.5707963267948966 rad @@ -153833,7 +153854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19843 + - uid: 19766 components: - type: Transform rot: -1.5707963267948966 rad @@ -153841,7 +153862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19844 + - uid: 19767 components: - type: Transform rot: -1.5707963267948966 rad @@ -153849,7 +153870,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19845 + - uid: 19768 components: - type: Transform rot: -1.5707963267948966 rad @@ -153857,7 +153878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19846 + - uid: 19769 components: - type: Transform rot: -1.5707963267948966 rad @@ -153865,7 +153886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19847 + - uid: 19770 components: - type: Transform rot: -1.5707963267948966 rad @@ -153873,7 +153894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19848 + - uid: 19771 components: - type: Transform rot: -1.5707963267948966 rad @@ -153881,7 +153902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19849 + - uid: 19772 components: - type: Transform rot: -1.5707963267948966 rad @@ -153889,7 +153910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19850 + - uid: 19773 components: - type: Transform rot: -1.5707963267948966 rad @@ -153897,7 +153918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19851 + - uid: 19774 components: - type: Transform rot: -1.5707963267948966 rad @@ -153905,7 +153926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19852 + - uid: 19775 components: - type: Transform rot: -1.5707963267948966 rad @@ -153913,7 +153934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19853 + - uid: 19776 components: - type: Transform rot: -1.5707963267948966 rad @@ -153921,7 +153942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19854 + - uid: 19777 components: - type: Transform rot: -1.5707963267948966 rad @@ -153929,42 +153950,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19855 + - uid: 19778 components: - type: Transform pos: -19.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19856 + - uid: 19779 components: - type: Transform pos: -19.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19857 + - uid: 19780 components: - type: Transform pos: -19.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19858 + - uid: 19781 components: - type: Transform pos: -17.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19859 + - uid: 19782 components: - type: Transform pos: -17.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19860 + - uid: 19783 components: - type: Transform rot: -1.5707963267948966 rad @@ -153972,7 +153993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19861 + - uid: 19784 components: - type: Transform rot: -1.5707963267948966 rad @@ -153980,7 +154001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19862 + - uid: 19785 components: - type: Transform rot: -1.5707963267948966 rad @@ -153988,7 +154009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19863 + - uid: 19786 components: - type: Transform rot: -1.5707963267948966 rad @@ -153996,7 +154017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19864 + - uid: 19787 components: - type: Transform rot: -1.5707963267948966 rad @@ -154004,7 +154025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19865 + - uid: 19788 components: - type: Transform rot: -1.5707963267948966 rad @@ -154012,7 +154033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19866 + - uid: 19789 components: - type: Transform rot: -1.5707963267948966 rad @@ -154020,7 +154041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19867 + - uid: 19790 components: - type: Transform rot: -1.5707963267948966 rad @@ -154028,7 +154049,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19868 + - uid: 19791 components: - type: Transform rot: -1.5707963267948966 rad @@ -154036,7 +154057,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19869 + - uid: 19792 components: - type: Transform rot: -1.5707963267948966 rad @@ -154044,7 +154065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19870 + - uid: 19793 components: - type: Transform rot: -1.5707963267948966 rad @@ -154052,7 +154073,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19871 + - uid: 19794 components: - type: Transform rot: -1.5707963267948966 rad @@ -154060,7 +154081,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19872 + - uid: 19795 components: - type: Transform rot: 1.5707963267948966 rad @@ -154068,7 +154089,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19873 + - uid: 19796 components: - type: Transform rot: -1.5707963267948966 rad @@ -154076,7 +154097,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19874 + - uid: 19797 components: - type: Transform rot: -1.5707963267948966 rad @@ -154084,7 +154105,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19875 + - uid: 19798 components: - type: Transform rot: -1.5707963267948966 rad @@ -154092,7 +154113,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19876 + - uid: 19799 components: - type: Transform rot: -1.5707963267948966 rad @@ -154100,7 +154121,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19877 + - uid: 19800 components: - type: Transform rot: -1.5707963267948966 rad @@ -154108,7 +154129,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19878 + - uid: 19801 components: - type: Transform rot: -1.5707963267948966 rad @@ -154116,7 +154137,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19879 + - uid: 19802 components: - type: Transform rot: -1.5707963267948966 rad @@ -154124,7 +154145,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19880 + - uid: 19803 components: - type: Transform rot: -1.5707963267948966 rad @@ -154132,7 +154153,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19881 + - uid: 19804 components: - type: Transform rot: -1.5707963267948966 rad @@ -154140,7 +154161,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19882 + - uid: 19805 components: - type: Transform rot: -1.5707963267948966 rad @@ -154148,7 +154169,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19883 + - uid: 19806 components: - type: Transform rot: 1.5707963267948966 rad @@ -154156,7 +154177,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19884 + - uid: 19807 components: - type: Transform rot: 1.5707963267948966 rad @@ -154164,7 +154185,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19885 + - uid: 19808 components: - type: Transform rot: 1.5707963267948966 rad @@ -154172,7 +154193,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19886 + - uid: 19809 components: - type: Transform rot: 1.5707963267948966 rad @@ -154180,7 +154201,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19887 + - uid: 19810 components: - type: Transform rot: 1.5707963267948966 rad @@ -154188,7 +154209,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19888 + - uid: 19811 components: - type: Transform rot: 1.5707963267948966 rad @@ -154196,7 +154217,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19889 + - uid: 19812 components: - type: Transform rot: 1.5707963267948966 rad @@ -154204,7 +154225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19890 + - uid: 19813 components: - type: Transform rot: 1.5707963267948966 rad @@ -154212,7 +154233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19891 + - uid: 19814 components: - type: Transform rot: 1.5707963267948966 rad @@ -154220,7 +154241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19892 + - uid: 19815 components: - type: Transform rot: 1.5707963267948966 rad @@ -154228,7 +154249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19893 + - uid: 19816 components: - type: Transform rot: 1.5707963267948966 rad @@ -154236,7 +154257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19894 + - uid: 19817 components: - type: Transform rot: 1.5707963267948966 rad @@ -154244,7 +154265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19895 + - uid: 19818 components: - type: Transform rot: 1.5707963267948966 rad @@ -154252,7 +154273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19896 + - uid: 19819 components: - type: Transform rot: 1.5707963267948966 rad @@ -154260,7 +154281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19897 + - uid: 19820 components: - type: Transform rot: 1.5707963267948966 rad @@ -154268,7 +154289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19898 + - uid: 19821 components: - type: Transform rot: 1.5707963267948966 rad @@ -154276,7 +154297,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19899 + - uid: 19822 components: - type: Transform rot: 1.5707963267948966 rad @@ -154284,7 +154305,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19900 + - uid: 19823 components: - type: Transform rot: 1.5707963267948966 rad @@ -154292,7 +154313,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19901 + - uid: 19824 components: - type: Transform rot: 1.5707963267948966 rad @@ -154300,7 +154321,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19902 + - uid: 19825 components: - type: Transform rot: 1.5707963267948966 rad @@ -154308,70 +154329,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19903 + - uid: 19826 components: - type: Transform pos: -17.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19904 + - uid: 19827 components: - type: Transform pos: -17.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19905 + - uid: 19828 components: - type: Transform pos: -19.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19906 + - uid: 19829 components: - type: Transform pos: -17.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19907 + - uid: 19830 components: - type: Transform pos: -19.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19908 + - uid: 19831 components: - type: Transform pos: -17.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19909 + - uid: 19832 components: - type: Transform pos: -19.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19910 + - uid: 19833 components: - type: Transform pos: -19.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19911 + - uid: 19834 components: - type: Transform pos: -17.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19912 + - uid: 19835 components: - type: Transform rot: -1.5707963267948966 rad @@ -154379,7 +154400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19913 + - uid: 19836 components: - type: Transform rot: -1.5707963267948966 rad @@ -154387,7 +154408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19914 + - uid: 19837 components: - type: Transform rot: -1.5707963267948966 rad @@ -154395,7 +154416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19915 + - uid: 19838 components: - type: Transform rot: 3.141592653589793 rad @@ -154403,7 +154424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19916 + - uid: 19839 components: - type: Transform rot: 3.141592653589793 rad @@ -154411,7 +154432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19917 + - uid: 19840 components: - type: Transform rot: 3.141592653589793 rad @@ -154419,35 +154440,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19918 + - uid: 19841 components: - type: Transform pos: -19.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19919 + - uid: 19842 components: - type: Transform pos: -19.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19920 + - uid: 19843 components: - type: Transform pos: -17.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19921 + - uid: 19844 components: - type: Transform pos: -17.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19922 + - uid: 19845 components: - type: Transform rot: -1.5707963267948966 rad @@ -154455,7 +154476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19923 + - uid: 19846 components: - type: Transform rot: -1.5707963267948966 rad @@ -154463,7 +154484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19924 + - uid: 19847 components: - type: Transform rot: 3.141592653589793 rad @@ -154471,7 +154492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19925 + - uid: 19848 components: - type: Transform rot: 3.141592653589793 rad @@ -154479,7 +154500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19926 + - uid: 19849 components: - type: Transform rot: 3.141592653589793 rad @@ -154487,7 +154508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19927 + - uid: 19850 components: - type: Transform rot: 3.141592653589793 rad @@ -154495,7 +154516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19928 + - uid: 19851 components: - type: Transform rot: 1.5707963267948966 rad @@ -154503,7 +154524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19929 + - uid: 19852 components: - type: Transform rot: 1.5707963267948966 rad @@ -154511,7 +154532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19930 + - uid: 19853 components: - type: Transform rot: 1.5707963267948966 rad @@ -154519,7 +154540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19931 + - uid: 19854 components: - type: Transform rot: 1.5707963267948966 rad @@ -154527,7 +154548,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19932 + - uid: 19855 components: - type: Transform rot: 1.5707963267948966 rad @@ -154535,7 +154556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19933 + - uid: 19856 components: - type: Transform rot: 1.5707963267948966 rad @@ -154543,7 +154564,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19934 + - uid: 19857 components: - type: Transform rot: 1.5707963267948966 rad @@ -154551,7 +154572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19935 + - uid: 19858 components: - type: Transform rot: 1.5707963267948966 rad @@ -154559,7 +154580,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19936 + - uid: 19859 components: - type: Transform rot: 1.5707963267948966 rad @@ -154567,7 +154588,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19937 + - uid: 19860 components: - type: Transform rot: 1.5707963267948966 rad @@ -154575,7 +154596,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19938 + - uid: 19861 components: - type: Transform rot: 1.5707963267948966 rad @@ -154583,7 +154604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19939 + - uid: 19862 components: - type: Transform rot: 1.5707963267948966 rad @@ -154591,7 +154612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19940 + - uid: 19863 components: - type: Transform rot: 1.5707963267948966 rad @@ -154599,7 +154620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19941 + - uid: 19864 components: - type: Transform rot: 1.5707963267948966 rad @@ -154607,7 +154628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19942 + - uid: 19865 components: - type: Transform rot: 1.5707963267948966 rad @@ -154615,7 +154636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19943 + - uid: 19866 components: - type: Transform rot: -1.5707963267948966 rad @@ -154623,7 +154644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19944 + - uid: 19867 components: - type: Transform rot: 1.5707963267948966 rad @@ -154631,7 +154652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19945 + - uid: 19868 components: - type: Transform rot: 1.5707963267948966 rad @@ -154639,7 +154660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19946 + - uid: 19869 components: - type: Transform rot: 1.5707963267948966 rad @@ -154647,7 +154668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19947 + - uid: 19870 components: - type: Transform rot: 1.5707963267948966 rad @@ -154655,7 +154676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19948 + - uid: 19871 components: - type: Transform rot: 1.5707963267948966 rad @@ -154663,7 +154684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19949 + - uid: 19872 components: - type: Transform rot: 1.5707963267948966 rad @@ -154671,7 +154692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19950 + - uid: 19873 components: - type: Transform rot: 1.5707963267948966 rad @@ -154679,7 +154700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19951 + - uid: 19874 components: - type: Transform rot: 1.5707963267948966 rad @@ -154687,7 +154708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19952 + - uid: 19875 components: - type: Transform rot: 1.5707963267948966 rad @@ -154695,7 +154716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19953 + - uid: 19876 components: - type: Transform rot: 1.5707963267948966 rad @@ -154703,7 +154724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19954 + - uid: 19877 components: - type: Transform rot: 1.5707963267948966 rad @@ -154711,7 +154732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19955 + - uid: 19878 components: - type: Transform rot: 1.5707963267948966 rad @@ -154719,7 +154740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19956 + - uid: 19879 components: - type: Transform rot: 1.5707963267948966 rad @@ -154727,7 +154748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19957 + - uid: 19880 components: - type: Transform rot: 1.5707963267948966 rad @@ -154735,7 +154756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19958 + - uid: 19881 components: - type: Transform rot: 1.5707963267948966 rad @@ -154743,7 +154764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19959 + - uid: 19882 components: - type: Transform rot: 1.5707963267948966 rad @@ -154751,7 +154772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19960 + - uid: 19883 components: - type: Transform rot: 1.5707963267948966 rad @@ -154759,7 +154780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19961 + - uid: 19884 components: - type: Transform rot: 1.5707963267948966 rad @@ -154767,7 +154788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19962 + - uid: 19885 components: - type: Transform rot: 1.5707963267948966 rad @@ -154775,7 +154796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19963 + - uid: 19886 components: - type: Transform rot: 1.5707963267948966 rad @@ -154783,7 +154804,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19964 + - uid: 19887 components: - type: Transform rot: 1.5707963267948966 rad @@ -154791,7 +154812,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19965 + - uid: 19888 components: - type: Transform rot: 1.5707963267948966 rad @@ -154799,7 +154820,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19966 + - uid: 19889 components: - type: Transform rot: 1.5707963267948966 rad @@ -154807,7 +154828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19967 + - uid: 19890 components: - type: Transform rot: 1.5707963267948966 rad @@ -154815,7 +154836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19968 + - uid: 19891 components: - type: Transform rot: 3.141592653589793 rad @@ -154823,7 +154844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19969 + - uid: 19892 components: - type: Transform rot: 3.141592653589793 rad @@ -154831,7 +154852,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19970 + - uid: 19893 components: - type: Transform rot: 1.5707963267948966 rad @@ -154839,7 +154860,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19971 + - uid: 19894 components: - type: Transform rot: 3.141592653589793 rad @@ -154847,7 +154868,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19972 + - uid: 19895 components: - type: Transform rot: 1.5707963267948966 rad @@ -154855,7 +154876,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19973 + - uid: 19896 components: - type: Transform rot: 1.5707963267948966 rad @@ -154863,7 +154884,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19974 + - uid: 19897 components: - type: Transform rot: 1.5707963267948966 rad @@ -154871,7 +154892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19975 + - uid: 19898 components: - type: Transform rot: 1.5707963267948966 rad @@ -154879,7 +154900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19976 + - uid: 19899 components: - type: Transform rot: 1.5707963267948966 rad @@ -154887,7 +154908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19977 + - uid: 19900 components: - type: Transform rot: 1.5707963267948966 rad @@ -154895,7 +154916,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19978 + - uid: 19901 components: - type: Transform rot: 1.5707963267948966 rad @@ -154903,7 +154924,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19979 + - uid: 19902 components: - type: Transform rot: 1.5707963267948966 rad @@ -154911,7 +154932,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19980 + - uid: 19903 components: - type: Transform rot: 3.141592653589793 rad @@ -154919,7 +154940,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19981 + - uid: 19904 components: - type: Transform rot: 3.141592653589793 rad @@ -154927,7 +154948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19982 + - uid: 19905 components: - type: Transform rot: 3.141592653589793 rad @@ -154935,7 +154956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19983 + - uid: 19906 components: - type: Transform rot: -1.5707963267948966 rad @@ -154943,7 +154964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19984 + - uid: 19907 components: - type: Transform rot: -1.5707963267948966 rad @@ -154951,7 +154972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19985 + - uid: 19908 components: - type: Transform rot: -1.5707963267948966 rad @@ -154959,7 +154980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19986 + - uid: 19909 components: - type: Transform rot: -1.5707963267948966 rad @@ -154967,7 +154988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19987 + - uid: 19910 components: - type: Transform rot: -1.5707963267948966 rad @@ -154975,7 +154996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19988 + - uid: 19911 components: - type: Transform rot: -1.5707963267948966 rad @@ -154983,7 +155004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19989 + - uid: 19912 components: - type: Transform rot: -1.5707963267948966 rad @@ -154991,7 +155012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19990 + - uid: 19913 components: - type: Transform rot: -1.5707963267948966 rad @@ -154999,7 +155020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19991 + - uid: 19914 components: - type: Transform rot: -1.5707963267948966 rad @@ -155007,7 +155028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19992 + - uid: 19915 components: - type: Transform rot: -1.5707963267948966 rad @@ -155015,7 +155036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19993 + - uid: 19916 components: - type: Transform rot: -1.5707963267948966 rad @@ -155023,7 +155044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19994 + - uid: 19917 components: - type: Transform rot: -1.5707963267948966 rad @@ -155031,7 +155052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19995 + - uid: 19918 components: - type: Transform rot: -1.5707963267948966 rad @@ -155039,7 +155060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19996 + - uid: 19919 components: - type: Transform rot: -1.5707963267948966 rad @@ -155047,7 +155068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19997 + - uid: 19920 components: - type: Transform rot: 3.141592653589793 rad @@ -155055,7 +155076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19998 + - uid: 19921 components: - type: Transform rot: 3.141592653589793 rad @@ -155063,7 +155084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19999 + - uid: 19922 components: - type: Transform rot: 3.141592653589793 rad @@ -155071,7 +155092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20000 + - uid: 19923 components: - type: Transform rot: 3.141592653589793 rad @@ -155079,7 +155100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20001 + - uid: 19924 components: - type: Transform rot: 3.141592653589793 rad @@ -155087,7 +155108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20002 + - uid: 19925 components: - type: Transform rot: 3.141592653589793 rad @@ -155095,7 +155116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20003 + - uid: 19926 components: - type: Transform rot: 3.141592653589793 rad @@ -155103,7 +155124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20004 + - uid: 19927 components: - type: Transform rot: 3.141592653589793 rad @@ -155111,7 +155132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20005 + - uid: 19928 components: - type: Transform rot: 3.141592653589793 rad @@ -155119,7 +155140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20006 + - uid: 19929 components: - type: Transform rot: 3.141592653589793 rad @@ -155127,7 +155148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20007 + - uid: 19930 components: - type: Transform rot: 3.141592653589793 rad @@ -155135,7 +155156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20008 + - uid: 19931 components: - type: Transform rot: 3.141592653589793 rad @@ -155143,7 +155164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20009 + - uid: 19932 components: - type: Transform rot: 3.141592653589793 rad @@ -155151,7 +155172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20010 + - uid: 19933 components: - type: Transform rot: 3.141592653589793 rad @@ -155159,7 +155180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20011 + - uid: 19934 components: - type: Transform rot: 3.141592653589793 rad @@ -155167,70 +155188,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20012 + - uid: 19935 components: - type: Transform pos: -9.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20013 + - uid: 19936 components: - type: Transform pos: -9.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20014 + - uid: 19937 components: - type: Transform pos: -9.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20015 + - uid: 19938 components: - type: Transform pos: -9.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20016 + - uid: 19939 components: - type: Transform pos: -9.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20017 + - uid: 19940 components: - type: Transform pos: -9.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20018 + - uid: 19941 components: - type: Transform pos: -9.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20019 + - uid: 19942 components: - type: Transform pos: -9.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20020 + - uid: 19943 components: - type: Transform pos: -9.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20021 + - uid: 19944 components: - type: Transform rot: 3.141592653589793 rad @@ -155238,7 +155259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20022 + - uid: 19945 components: - type: Transform rot: 3.141592653589793 rad @@ -155246,7 +155267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20023 + - uid: 19946 components: - type: Transform rot: 1.5707963267948966 rad @@ -155254,7 +155275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20024 + - uid: 19947 components: - type: Transform rot: 1.5707963267948966 rad @@ -155262,7 +155283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20025 + - uid: 19948 components: - type: Transform rot: 1.5707963267948966 rad @@ -155270,7 +155291,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20026 + - uid: 19949 components: - type: Transform rot: 1.5707963267948966 rad @@ -155278,28 +155299,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20027 + - uid: 19950 components: - type: Transform pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20028 + - uid: 19951 components: - type: Transform pos: -9.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20029 + - uid: 19952 components: - type: Transform pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20030 + - uid: 19953 components: - type: Transform rot: 3.141592653589793 rad @@ -155307,7 +155328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20031 + - uid: 19954 components: - type: Transform rot: 3.141592653589793 rad @@ -155315,7 +155336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20032 + - uid: 19955 components: - type: Transform rot: 3.141592653589793 rad @@ -155323,7 +155344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20033 + - uid: 19956 components: - type: Transform rot: 3.141592653589793 rad @@ -155331,7 +155352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20034 + - uid: 19957 components: - type: Transform rot: 3.141592653589793 rad @@ -155339,7 +155360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20035 + - uid: 19958 components: - type: Transform rot: 3.141592653589793 rad @@ -155347,7 +155368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20036 + - uid: 19959 components: - type: Transform rot: 1.5707963267948966 rad @@ -155355,7 +155376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20037 + - uid: 19960 components: - type: Transform rot: -1.5707963267948966 rad @@ -155363,7 +155384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20038 + - uid: 19961 components: - type: Transform rot: -1.5707963267948966 rad @@ -155371,7 +155392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20039 + - uid: 19962 components: - type: Transform rot: -1.5707963267948966 rad @@ -155379,7 +155400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20040 + - uid: 19963 components: - type: Transform rot: 3.141592653589793 rad @@ -155387,35 +155408,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20041 + - uid: 19964 components: - type: Transform pos: 8.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20042 + - uid: 19965 components: - type: Transform pos: 8.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20043 + - uid: 19966 components: - type: Transform pos: 8.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20044 + - uid: 19967 components: - type: Transform pos: 8.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20045 + - uid: 19968 components: - type: Transform rot: -1.5707963267948966 rad @@ -155423,7 +155444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20046 + - uid: 19969 components: - type: Transform rot: 3.141592653589793 rad @@ -155431,7 +155452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20047 + - uid: 19970 components: - type: Transform rot: 3.141592653589793 rad @@ -155439,7 +155460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20048 + - uid: 19971 components: - type: Transform rot: 3.141592653589793 rad @@ -155447,7 +155468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20049 + - uid: 19972 components: - type: Transform rot: 3.141592653589793 rad @@ -155455,7 +155476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20050 + - uid: 19973 components: - type: Transform rot: 3.141592653589793 rad @@ -155463,7 +155484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20051 + - uid: 19974 components: - type: Transform rot: 3.141592653589793 rad @@ -155471,7 +155492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20052 + - uid: 19975 components: - type: Transform rot: 3.141592653589793 rad @@ -155479,7 +155500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20053 + - uid: 19976 components: - type: Transform rot: 3.141592653589793 rad @@ -155487,7 +155508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20054 + - uid: 19977 components: - type: Transform rot: 3.141592653589793 rad @@ -155495,7 +155516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20055 + - uid: 19978 components: - type: Transform rot: 1.5707963267948966 rad @@ -155503,7 +155524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20056 + - uid: 19979 components: - type: Transform rot: 1.5707963267948966 rad @@ -155511,7 +155532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20057 + - uid: 19980 components: - type: Transform rot: -1.5707963267948966 rad @@ -155519,7 +155540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20058 + - uid: 19981 components: - type: Transform rot: 3.141592653589793 rad @@ -155527,7 +155548,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20059 + - uid: 19982 components: - type: Transform rot: 3.141592653589793 rad @@ -155535,7 +155556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20060 + - uid: 19983 components: - type: Transform rot: -1.5707963267948966 rad @@ -155543,7 +155564,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20061 + - uid: 19984 components: - type: Transform rot: 3.141592653589793 rad @@ -155551,7 +155572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20062 + - uid: 19985 components: - type: Transform rot: 3.141592653589793 rad @@ -155559,126 +155580,126 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20063 + - uid: 19986 components: - type: Transform pos: 10.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20064 + - uid: 19987 components: - type: Transform pos: 10.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20065 + - uid: 19988 components: - type: Transform pos: 10.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20066 + - uid: 19989 components: - type: Transform pos: 10.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20067 + - uid: 19990 components: - type: Transform pos: 10.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20068 + - uid: 19991 components: - type: Transform pos: 10.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20069 + - uid: 19992 components: - type: Transform pos: 10.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20070 + - uid: 19993 components: - type: Transform pos: -17.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20071 + - uid: 19994 components: - type: Transform pos: -19.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20072 + - uid: 19995 components: - type: Transform pos: -19.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20073 + - uid: 19996 components: - type: Transform pos: -17.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20074 + - uid: 19997 components: - type: Transform pos: -19.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20075 + - uid: 19998 components: - type: Transform pos: -19.5,30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20076 + - uid: 19999 components: - type: Transform pos: -17.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20077 + - uid: 20000 components: - type: Transform pos: -17.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20078 + - uid: 20001 components: - type: Transform pos: -17.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20079 + - uid: 20002 components: - type: Transform pos: -19.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20080 + - uid: 20003 components: - type: Transform rot: -1.5707963267948966 rad @@ -155686,7 +155707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20081 + - uid: 20004 components: - type: Transform rot: -1.5707963267948966 rad @@ -155694,7 +155715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20082 + - uid: 20005 components: - type: Transform rot: -1.5707963267948966 rad @@ -155702,7 +155723,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20083 + - uid: 20006 components: - type: Transform rot: -1.5707963267948966 rad @@ -155710,7 +155731,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20084 + - uid: 20007 components: - type: Transform rot: -1.5707963267948966 rad @@ -155718,7 +155739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20085 + - uid: 20008 components: - type: Transform rot: -1.5707963267948966 rad @@ -155726,7 +155747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20086 + - uid: 20009 components: - type: Transform rot: -1.5707963267948966 rad @@ -155734,7 +155755,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20087 + - uid: 20010 components: - type: Transform rot: -1.5707963267948966 rad @@ -155742,7 +155763,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20088 + - uid: 20011 components: - type: Transform rot: -1.5707963267948966 rad @@ -155750,7 +155771,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20089 + - uid: 20012 components: - type: Transform rot: -1.5707963267948966 rad @@ -155758,7 +155779,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20090 + - uid: 20013 components: - type: Transform rot: -1.5707963267948966 rad @@ -155766,7 +155787,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20091 + - uid: 20014 components: - type: Transform rot: -1.5707963267948966 rad @@ -155774,7 +155795,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20092 + - uid: 20015 components: - type: Transform rot: 3.141592653589793 rad @@ -155782,7 +155803,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20093 + - uid: 20016 components: - type: Transform rot: 3.141592653589793 rad @@ -155790,7 +155811,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20094 + - uid: 20017 components: - type: Transform rot: 3.141592653589793 rad @@ -155798,7 +155819,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20095 + - uid: 20018 components: - type: Transform rot: 3.141592653589793 rad @@ -155806,7 +155827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20096 + - uid: 20019 components: - type: Transform rot: 1.5707963267948966 rad @@ -155814,7 +155835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20097 + - uid: 20020 components: - type: Transform rot: 1.5707963267948966 rad @@ -155822,7 +155843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20098 + - uid: 20021 components: - type: Transform rot: 1.5707963267948966 rad @@ -155830,7 +155851,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20099 + - uid: 20022 components: - type: Transform rot: 1.5707963267948966 rad @@ -155838,7 +155859,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20100 + - uid: 20023 components: - type: Transform rot: 1.5707963267948966 rad @@ -155846,7 +155867,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20101 + - uid: 20024 components: - type: Transform rot: 1.5707963267948966 rad @@ -155854,7 +155875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20102 + - uid: 20025 components: - type: Transform rot: 1.5707963267948966 rad @@ -155862,7 +155883,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20103 + - uid: 20026 components: - type: Transform rot: 1.5707963267948966 rad @@ -155870,7 +155891,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20104 + - uid: 20027 components: - type: Transform rot: 1.5707963267948966 rad @@ -155878,7 +155899,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20105 + - uid: 20028 components: - type: Transform rot: 1.5707963267948966 rad @@ -155886,7 +155907,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20106 + - uid: 20029 components: - type: Transform rot: 1.5707963267948966 rad @@ -155894,7 +155915,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20107 + - uid: 20030 components: - type: Transform rot: 1.5707963267948966 rad @@ -155902,7 +155923,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20108 + - uid: 20031 components: - type: Transform rot: 1.5707963267948966 rad @@ -155910,7 +155931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20109 + - uid: 20032 components: - type: Transform rot: 1.5707963267948966 rad @@ -155918,7 +155939,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20110 + - uid: 20033 components: - type: Transform rot: 1.5707963267948966 rad @@ -155926,7 +155947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20111 + - uid: 20034 components: - type: Transform rot: 1.5707963267948966 rad @@ -155934,7 +155955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20112 + - uid: 20035 components: - type: Transform rot: 1.5707963267948966 rad @@ -155942,7 +155963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20113 + - uid: 20036 components: - type: Transform rot: 1.5707963267948966 rad @@ -155950,7 +155971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20114 + - uid: 20037 components: - type: Transform rot: 1.5707963267948966 rad @@ -155958,7 +155979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20115 + - uid: 20038 components: - type: Transform rot: 1.5707963267948966 rad @@ -155966,7 +155987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20116 + - uid: 20039 components: - type: Transform rot: 3.141592653589793 rad @@ -155974,7 +155995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20117 + - uid: 20040 components: - type: Transform rot: 3.141592653589793 rad @@ -155982,7 +156003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20118 + - uid: 20041 components: - type: Transform rot: 3.141592653589793 rad @@ -155990,7 +156011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20119 + - uid: 20042 components: - type: Transform rot: 3.141592653589793 rad @@ -155998,7 +156019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20120 + - uid: 20043 components: - type: Transform rot: 3.141592653589793 rad @@ -156006,7 +156027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20121 + - uid: 20044 components: - type: Transform rot: 3.141592653589793 rad @@ -156014,7 +156035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20122 + - uid: 20045 components: - type: Transform rot: 3.141592653589793 rad @@ -156022,7 +156043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20123 + - uid: 20046 components: - type: Transform rot: 3.141592653589793 rad @@ -156030,7 +156051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20124 + - uid: 20047 components: - type: Transform rot: 3.141592653589793 rad @@ -156038,7 +156059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20125 + - uid: 20048 components: - type: Transform rot: 3.141592653589793 rad @@ -156046,7 +156067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20126 + - uid: 20049 components: - type: Transform rot: 1.5707963267948966 rad @@ -156054,7 +156075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20127 + - uid: 20050 components: - type: Transform rot: 1.5707963267948966 rad @@ -156062,7 +156083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20128 + - uid: 20051 components: - type: Transform rot: 1.5707963267948966 rad @@ -156070,7 +156091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20129 + - uid: 20052 components: - type: Transform rot: 1.5707963267948966 rad @@ -156078,21 +156099,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20130 + - uid: 20053 components: - type: Transform pos: -17.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20131 + - uid: 20054 components: - type: Transform pos: -17.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20132 + - uid: 20055 components: - type: Transform rot: -1.5707963267948966 rad @@ -156100,7 +156121,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20133 + - uid: 20056 components: - type: Transform rot: -1.5707963267948966 rad @@ -156108,7 +156129,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20134 + - uid: 20057 components: - type: Transform rot: -1.5707963267948966 rad @@ -156116,7 +156137,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20135 + - uid: 20058 components: - type: Transform rot: -1.5707963267948966 rad @@ -156124,7 +156145,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20136 + - uid: 20059 components: - type: Transform rot: 1.5707963267948966 rad @@ -156132,7 +156153,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20137 + - uid: 20060 components: - type: Transform rot: -1.5707963267948966 rad @@ -156140,7 +156161,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20138 + - uid: 20061 components: - type: Transform rot: 1.5707963267948966 rad @@ -156148,7 +156169,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20139 + - uid: 20062 components: - type: Transform rot: 1.5707963267948966 rad @@ -156156,217 +156177,217 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20140 + - uid: 20063 components: - type: Transform pos: -14.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20141 + - uid: 20064 components: - type: Transform pos: -22.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20142 + - uid: 20065 components: - type: Transform pos: -21.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20143 + - uid: 20066 components: - type: Transform pos: -22.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20144 + - uid: 20067 components: - type: Transform pos: -22.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20145 + - uid: 20068 components: - type: Transform pos: -21.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20146 + - uid: 20069 components: - type: Transform pos: -21.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20147 + - uid: 20070 components: - type: Transform pos: -22.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20148 + - uid: 20071 components: - type: Transform pos: -22.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20149 + - uid: 20072 components: - type: Transform pos: -21.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20150 + - uid: 20073 components: - type: Transform pos: -21.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20151 + - uid: 20074 components: - type: Transform pos: -22.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20152 + - uid: 20075 components: - type: Transform pos: -22.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20153 + - uid: 20076 components: - type: Transform pos: -21.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20154 + - uid: 20077 components: - type: Transform pos: -21.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20155 + - uid: 20078 components: - type: Transform pos: -22.5,44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20156 + - uid: 20079 components: - type: Transform pos: -22.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20157 + - uid: 20080 components: - type: Transform pos: -15.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20158 + - uid: 20081 components: - type: Transform pos: -14.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20159 + - uid: 20082 components: - type: Transform pos: -14.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20160 + - uid: 20083 components: - type: Transform pos: -15.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20161 + - uid: 20084 components: - type: Transform pos: -14.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20162 + - uid: 20085 components: - type: Transform pos: -14.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20163 + - uid: 20086 components: - type: Transform pos: -15.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20164 + - uid: 20087 components: - type: Transform pos: -15.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20165 + - uid: 20088 components: - type: Transform pos: -14.5,43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20166 + - uid: 20089 components: - type: Transform pos: -15.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20167 + - uid: 20090 components: - type: Transform pos: -15.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20168 + - uid: 20091 components: - type: Transform pos: -14.5,44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20169 + - uid: 20092 components: - type: Transform pos: -14.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20170 + - uid: 20093 components: - type: Transform rot: -1.5707963267948966 rad @@ -156374,7 +156395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20171 + - uid: 20094 components: - type: Transform rot: -1.5707963267948966 rad @@ -156382,7 +156403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20172 + - uid: 20095 components: - type: Transform rot: -1.5707963267948966 rad @@ -156390,7 +156411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20173 + - uid: 20096 components: - type: Transform rot: -1.5707963267948966 rad @@ -156398,7 +156419,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20174 + - uid: 20097 components: - type: Transform rot: 1.5707963267948966 rad @@ -156406,7 +156427,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20175 + - uid: 20098 components: - type: Transform rot: 1.5707963267948966 rad @@ -156414,7 +156435,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20176 + - uid: 20099 components: - type: Transform rot: 1.5707963267948966 rad @@ -156422,7 +156443,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20177 + - uid: 20100 components: - type: Transform rot: 1.5707963267948966 rad @@ -156430,7 +156451,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20178 + - uid: 20101 components: - type: Transform rot: 1.5707963267948966 rad @@ -156438,7 +156459,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20179 + - uid: 20102 components: - type: Transform rot: 1.5707963267948966 rad @@ -156446,7 +156467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20180 + - uid: 20103 components: - type: Transform rot: 1.5707963267948966 rad @@ -156454,7 +156475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20181 + - uid: 20104 components: - type: Transform rot: 1.5707963267948966 rad @@ -156462,7 +156483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20182 + - uid: 20105 components: - type: Transform rot: 1.5707963267948966 rad @@ -156470,7 +156491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20183 + - uid: 20106 components: - type: Transform rot: 1.5707963267948966 rad @@ -156478,7 +156499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20184 + - uid: 20107 components: - type: Transform rot: 1.5707963267948966 rad @@ -156486,7 +156507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20185 + - uid: 20108 components: - type: Transform rot: 1.5707963267948966 rad @@ -156494,7 +156515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20186 + - uid: 20109 components: - type: Transform rot: 1.5707963267948966 rad @@ -156502,7 +156523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20187 + - uid: 20110 components: - type: Transform rot: 1.5707963267948966 rad @@ -156510,14 +156531,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20188 + - uid: 20111 components: - type: Transform pos: -7.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20189 + - uid: 20112 components: - type: Transform rot: 1.5707963267948966 rad @@ -156525,7 +156546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20190 + - uid: 20113 components: - type: Transform rot: 1.5707963267948966 rad @@ -156533,7 +156554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20191 + - uid: 20114 components: - type: Transform rot: 1.5707963267948966 rad @@ -156541,7 +156562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20192 + - uid: 20115 components: - type: Transform rot: 1.5707963267948966 rad @@ -156549,7 +156570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20193 + - uid: 20116 components: - type: Transform rot: -1.5707963267948966 rad @@ -156557,7 +156578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20194 + - uid: 20117 components: - type: Transform rot: -1.5707963267948966 rad @@ -156565,7 +156586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20195 + - uid: 20118 components: - type: Transform rot: -1.5707963267948966 rad @@ -156573,7 +156594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20196 + - uid: 20119 components: - type: Transform rot: -1.5707963267948966 rad @@ -156581,7 +156602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20197 + - uid: 20120 components: - type: Transform rot: -1.5707963267948966 rad @@ -156589,7 +156610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20198 + - uid: 20121 components: - type: Transform rot: -1.5707963267948966 rad @@ -156597,7 +156618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20199 + - uid: 20122 components: - type: Transform rot: -1.5707963267948966 rad @@ -156605,7 +156626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20200 + - uid: 20123 components: - type: Transform rot: -1.5707963267948966 rad @@ -156613,7 +156634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20201 + - uid: 20124 components: - type: Transform rot: -1.5707963267948966 rad @@ -156621,7 +156642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20202 + - uid: 20125 components: - type: Transform rot: -1.5707963267948966 rad @@ -156629,7 +156650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20203 + - uid: 20126 components: - type: Transform rot: -1.5707963267948966 rad @@ -156637,7 +156658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20204 + - uid: 20127 components: - type: Transform rot: -1.5707963267948966 rad @@ -156645,7 +156666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20205 + - uid: 20128 components: - type: Transform rot: 3.141592653589793 rad @@ -156653,14 +156674,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20206 + - uid: 20129 components: - type: Transform pos: -19.5,49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20207 + - uid: 20130 components: - type: Transform rot: -1.5707963267948966 rad @@ -156668,7 +156689,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20208 + - uid: 20131 components: - type: Transform rot: -1.5707963267948966 rad @@ -156676,7 +156697,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20209 + - uid: 20132 components: - type: Transform rot: 3.141592653589793 rad @@ -156684,7 +156705,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20210 + - uid: 20133 components: - type: Transform rot: 3.141592653589793 rad @@ -156692,7 +156713,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20211 + - uid: 20134 components: - type: Transform rot: 3.141592653589793 rad @@ -156700,7 +156721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20212 + - uid: 20135 components: - type: Transform rot: 3.141592653589793 rad @@ -156708,7 +156729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20213 + - uid: 20136 components: - type: Transform rot: 1.5707963267948966 rad @@ -156716,7 +156737,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20214 + - uid: 20137 components: - type: Transform rot: 3.141592653589793 rad @@ -156724,7 +156745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20215 + - uid: 20138 components: - type: Transform rot: 1.5707963267948966 rad @@ -156732,7 +156753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20216 + - uid: 20139 components: - type: Transform rot: 1.5707963267948966 rad @@ -156740,7 +156761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20217 + - uid: 20140 components: - type: Transform rot: 1.5707963267948966 rad @@ -156748,7 +156769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20218 + - uid: 20141 components: - type: Transform rot: 1.5707963267948966 rad @@ -156756,7 +156777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20219 + - uid: 20142 components: - type: Transform rot: 1.5707963267948966 rad @@ -156764,7 +156785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20220 + - uid: 20143 components: - type: Transform rot: 1.5707963267948966 rad @@ -156772,7 +156793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20221 + - uid: 20144 components: - type: Transform rot: 3.141592653589793 rad @@ -156780,7 +156801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20222 + - uid: 20145 components: - type: Transform rot: 1.5707963267948966 rad @@ -156788,7 +156809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20223 + - uid: 20146 components: - type: Transform rot: 1.5707963267948966 rad @@ -156796,7 +156817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20224 + - uid: 20147 components: - type: Transform rot: 1.5707963267948966 rad @@ -156804,7 +156825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20225 + - uid: 20148 components: - type: Transform rot: 1.5707963267948966 rad @@ -156812,7 +156833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20226 + - uid: 20149 components: - type: Transform rot: 1.5707963267948966 rad @@ -156820,7 +156841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20227 + - uid: 20150 components: - type: Transform rot: 1.5707963267948966 rad @@ -156828,7 +156849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20228 + - uid: 20151 components: - type: Transform rot: 1.5707963267948966 rad @@ -156836,7 +156857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20229 + - uid: 20152 components: - type: Transform rot: 1.5707963267948966 rad @@ -156844,7 +156865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20230 + - uid: 20153 components: - type: Transform rot: 3.141592653589793 rad @@ -156852,7 +156873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20231 + - uid: 20154 components: - type: Transform rot: 3.141592653589793 rad @@ -156860,7 +156881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20232 + - uid: 20155 components: - type: Transform rot: 3.141592653589793 rad @@ -156868,7 +156889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20233 + - uid: 20156 components: - type: Transform rot: 3.141592653589793 rad @@ -156876,7 +156897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20234 + - uid: 20157 components: - type: Transform rot: 1.5707963267948966 rad @@ -156884,7 +156905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20235 + - uid: 20158 components: - type: Transform rot: 3.141592653589793 rad @@ -156892,7 +156913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20236 + - uid: 20159 components: - type: Transform rot: 1.5707963267948966 rad @@ -156900,7 +156921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20237 + - uid: 20160 components: - type: Transform rot: 1.5707963267948966 rad @@ -156908,14 +156929,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20238 + - uid: 20161 components: - type: Transform pos: -33.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20239 + - uid: 20162 components: - type: Transform rot: -1.5707963267948966 rad @@ -156923,7 +156944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20240 + - uid: 20163 components: - type: Transform rot: -1.5707963267948966 rad @@ -156931,7 +156952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20241 + - uid: 20164 components: - type: Transform rot: -1.5707963267948966 rad @@ -156939,14 +156960,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20242 + - uid: 20165 components: - type: Transform pos: -37.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20243 + - uid: 20166 components: - type: Transform rot: 1.5707963267948966 rad @@ -156954,7 +156975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20244 + - uid: 20167 components: - type: Transform rot: 1.5707963267948966 rad @@ -156962,7 +156983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20245 + - uid: 20168 components: - type: Transform rot: 1.5707963267948966 rad @@ -156970,14 +156991,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20246 + - uid: 20169 components: - type: Transform pos: -3.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20247 + - uid: 20170 components: - type: Transform rot: 3.141592653589793 rad @@ -156985,7 +157006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20248 + - uid: 20171 components: - type: Transform rot: 3.141592653589793 rad @@ -156993,7 +157014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20249 + - uid: 20172 components: - type: Transform rot: 1.5707963267948966 rad @@ -157001,28 +157022,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20250 + - uid: 20173 components: - type: Transform pos: -3.5,47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20251 + - uid: 20174 components: - type: Transform pos: -3.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20252 + - uid: 20175 components: - type: Transform pos: -3.5,49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20253 + - uid: 20176 components: - type: Transform rot: 1.5707963267948966 rad @@ -157030,7 +157051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20254 + - uid: 20177 components: - type: Transform rot: 3.141592653589793 rad @@ -157038,7 +157059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20255 + - uid: 20178 components: - type: Transform rot: 3.141592653589793 rad @@ -157046,7 +157067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20256 + - uid: 20179 components: - type: Transform rot: 3.141592653589793 rad @@ -157054,7 +157075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20257 + - uid: 20180 components: - type: Transform rot: 3.141592653589793 rad @@ -157062,7 +157083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20258 + - uid: 20181 components: - type: Transform rot: 3.141592653589793 rad @@ -157070,7 +157091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20259 + - uid: 20182 components: - type: Transform rot: 3.141592653589793 rad @@ -157078,7 +157099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20260 + - uid: 20183 components: - type: Transform rot: 3.141592653589793 rad @@ -157086,7 +157107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20261 + - uid: 20184 components: - type: Transform rot: -1.5707963267948966 rad @@ -157094,42 +157115,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20262 + - uid: 20185 components: - type: Transform pos: -17.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20263 + - uid: 20186 components: - type: Transform pos: -19.5,57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20264 + - uid: 20187 components: - type: Transform pos: -19.5,58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20265 + - uid: 20188 components: - type: Transform pos: -19.5,59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20266 + - uid: 20189 components: - type: Transform pos: -17.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20267 + - uid: 20190 components: - type: Transform rot: 3.141592653589793 rad @@ -157137,14 +157158,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20268 + - uid: 20191 components: - type: Transform pos: -19.5,60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20269 + - uid: 20192 components: - type: Transform rot: -1.5707963267948966 rad @@ -157152,7 +157173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20270 + - uid: 20193 components: - type: Transform rot: -1.5707963267948966 rad @@ -157160,7 +157181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20271 + - uid: 20194 components: - type: Transform rot: -1.5707963267948966 rad @@ -157168,7 +157189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20272 + - uid: 20195 components: - type: Transform rot: -1.5707963267948966 rad @@ -157176,7 +157197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20273 + - uid: 20196 components: - type: Transform rot: -1.5707963267948966 rad @@ -157184,7 +157205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20274 + - uid: 20197 components: - type: Transform rot: -1.5707963267948966 rad @@ -157192,7 +157213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20275 + - uid: 20198 components: - type: Transform rot: 3.141592653589793 rad @@ -157200,7 +157221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20276 + - uid: 20199 components: - type: Transform rot: 3.141592653589793 rad @@ -157208,7 +157229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20277 + - uid: 20200 components: - type: Transform rot: 3.141592653589793 rad @@ -157216,7 +157237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20278 + - uid: 20201 components: - type: Transform rot: 3.141592653589793 rad @@ -157224,7 +157245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20279 + - uid: 20202 components: - type: Transform rot: 3.141592653589793 rad @@ -157232,42 +157253,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20280 + - uid: 20203 components: - type: Transform pos: -19.5,66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20281 + - uid: 20204 components: - type: Transform pos: -17.5,66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20282 + - uid: 20205 components: - type: Transform pos: -17.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20283 + - uid: 20206 components: - type: Transform pos: -17.5,64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20284 + - uid: 20207 components: - type: Transform pos: -17.5,63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20285 + - uid: 20208 components: - type: Transform rot: -1.5707963267948966 rad @@ -157275,7 +157296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20286 + - uid: 20209 components: - type: Transform rot: -1.5707963267948966 rad @@ -157283,7 +157304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20287 + - uid: 20210 components: - type: Transform rot: -1.5707963267948966 rad @@ -157291,7 +157312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20288 + - uid: 20211 components: - type: Transform rot: -1.5707963267948966 rad @@ -157299,7 +157320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20289 + - uid: 20212 components: - type: Transform rot: -1.5707963267948966 rad @@ -157307,7 +157328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20290 + - uid: 20213 components: - type: Transform rot: -1.5707963267948966 rad @@ -157315,7 +157336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20291 + - uid: 20214 components: - type: Transform rot: -1.5707963267948966 rad @@ -157323,7 +157344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20292 + - uid: 20215 components: - type: Transform rot: -1.5707963267948966 rad @@ -157331,7 +157352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20293 + - uid: 20216 components: - type: Transform rot: -1.5707963267948966 rad @@ -157339,7 +157360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20294 + - uid: 20217 components: - type: Transform rot: -1.5707963267948966 rad @@ -157347,7 +157368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20295 + - uid: 20218 components: - type: Transform rot: -1.5707963267948966 rad @@ -157355,7 +157376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20296 + - uid: 20219 components: - type: Transform rot: -1.5707963267948966 rad @@ -157363,7 +157384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20297 + - uid: 20220 components: - type: Transform rot: -1.5707963267948966 rad @@ -157371,7 +157392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20298 + - uid: 20221 components: - type: Transform rot: -1.5707963267948966 rad @@ -157379,7 +157400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20299 + - uid: 20222 components: - type: Transform rot: -1.5707963267948966 rad @@ -157387,7 +157408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20300 + - uid: 20223 components: - type: Transform rot: 1.5707963267948966 rad @@ -157395,7 +157416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20301 + - uid: 20224 components: - type: Transform rot: 1.5707963267948966 rad @@ -157403,7 +157424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20302 + - uid: 20225 components: - type: Transform rot: 1.5707963267948966 rad @@ -157411,7 +157432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20303 + - uid: 20226 components: - type: Transform rot: 1.5707963267948966 rad @@ -157419,7 +157440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20304 + - uid: 20227 components: - type: Transform rot: 1.5707963267948966 rad @@ -157427,35 +157448,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20305 + - uid: 20228 components: - type: Transform pos: -3.5,57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20306 + - uid: 20229 components: - type: Transform pos: -3.5,58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20307 + - uid: 20230 components: - type: Transform pos: -3.5,59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20308 + - uid: 20231 components: - type: Transform pos: -5.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20309 + - uid: 20232 components: - type: Transform rot: -1.5707963267948966 rad @@ -157463,7 +157484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20310 + - uid: 20233 components: - type: Transform rot: -1.5707963267948966 rad @@ -157471,7 +157492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20311 + - uid: 20234 components: - type: Transform rot: -1.5707963267948966 rad @@ -157479,7 +157500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20312 + - uid: 20235 components: - type: Transform rot: -1.5707963267948966 rad @@ -157487,7 +157508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20313 + - uid: 20236 components: - type: Transform rot: -1.5707963267948966 rad @@ -157495,7 +157516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20314 + - uid: 20237 components: - type: Transform rot: -1.5707963267948966 rad @@ -157503,7 +157524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20315 + - uid: 20238 components: - type: Transform rot: -1.5707963267948966 rad @@ -157511,7 +157532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20316 + - uid: 20239 components: - type: Transform rot: -1.5707963267948966 rad @@ -157519,7 +157540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20317 + - uid: 20240 components: - type: Transform rot: -1.5707963267948966 rad @@ -157527,77 +157548,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20318 + - uid: 20241 components: - type: Transform pos: 2.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20319 + - uid: 20242 components: - type: Transform pos: 2.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20320 + - uid: 20243 components: - type: Transform pos: 1.5,55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20321 + - uid: 20244 components: - type: Transform pos: 2.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20322 + - uid: 20245 components: - type: Transform pos: 2.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20323 + - uid: 20246 components: - type: Transform pos: 1.5,54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20324 + - uid: 20247 components: - type: Transform pos: 1.5,53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20325 + - uid: 20248 components: - type: Transform pos: 2.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20326 + - uid: 20249 components: - type: Transform pos: 2.5,60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20327 + - uid: 20250 components: - type: Transform pos: 2.5,61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20328 + - uid: 20251 components: - type: Transform rot: 3.141592653589793 rad @@ -157605,7 +157626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20329 + - uid: 20252 components: - type: Transform rot: 3.141592653589793 rad @@ -157613,7 +157634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20330 + - uid: 20253 components: - type: Transform rot: 3.141592653589793 rad @@ -157621,7 +157642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20331 + - uid: 20254 components: - type: Transform rot: 3.141592653589793 rad @@ -157629,7 +157650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20332 + - uid: 20255 components: - type: Transform rot: 3.141592653589793 rad @@ -157637,7 +157658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20333 + - uid: 20256 components: - type: Transform rot: 3.141592653589793 rad @@ -157645,7 +157666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20334 + - uid: 20257 components: - type: Transform rot: 3.141592653589793 rad @@ -157653,7 +157674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20335 + - uid: 20258 components: - type: Transform rot: 3.141592653589793 rad @@ -157661,7 +157682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20336 + - uid: 20259 components: - type: Transform rot: 3.141592653589793 rad @@ -157669,7 +157690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20337 + - uid: 20260 components: - type: Transform rot: 3.141592653589793 rad @@ -157677,7 +157698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20338 + - uid: 20261 components: - type: Transform rot: 3.141592653589793 rad @@ -157685,7 +157706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20339 + - uid: 20262 components: - type: Transform rot: 3.141592653589793 rad @@ -157693,35 +157714,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20340 + - uid: 20263 components: - type: Transform pos: -19.5,67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20341 + - uid: 20264 components: - type: Transform pos: -19.5,68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20342 + - uid: 20265 components: - type: Transform pos: -3.5,67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20343 + - uid: 20266 components: - type: Transform pos: -3.5,68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20344 + - uid: 20267 components: - type: Transform rot: -1.5707963267948966 rad @@ -157729,7 +157750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20345 + - uid: 20268 components: - type: Transform rot: -1.5707963267948966 rad @@ -157737,7 +157758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20346 + - uid: 20269 components: - type: Transform rot: -1.5707963267948966 rad @@ -157745,7 +157766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20347 + - uid: 20270 components: - type: Transform rot: -1.5707963267948966 rad @@ -157753,7 +157774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20348 + - uid: 20271 components: - type: Transform rot: -1.5707963267948966 rad @@ -157761,7 +157782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20349 + - uid: 20272 components: - type: Transform rot: -1.5707963267948966 rad @@ -157769,7 +157790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20350 + - uid: 20273 components: - type: Transform rot: -1.5707963267948966 rad @@ -157777,7 +157798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20351 + - uid: 20274 components: - type: Transform rot: -1.5707963267948966 rad @@ -157785,7 +157806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20352 + - uid: 20275 components: - type: Transform rot: -1.5707963267948966 rad @@ -157793,7 +157814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20353 + - uid: 20276 components: - type: Transform rot: -1.5707963267948966 rad @@ -157801,7 +157822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20354 + - uid: 20277 components: - type: Transform rot: -1.5707963267948966 rad @@ -157809,7 +157830,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20355 + - uid: 20278 components: - type: Transform rot: -1.5707963267948966 rad @@ -157817,7 +157838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20356 + - uid: 20279 components: - type: Transform rot: -1.5707963267948966 rad @@ -157825,7 +157846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20357 + - uid: 20280 components: - type: Transform rot: -1.5707963267948966 rad @@ -157833,7 +157854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20358 + - uid: 20281 components: - type: Transform rot: -1.5707963267948966 rad @@ -157841,7 +157862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20359 + - uid: 20282 components: - type: Transform rot: -1.5707963267948966 rad @@ -157849,7 +157870,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20360 + - uid: 20283 components: - type: Transform rot: -1.5707963267948966 rad @@ -157857,7 +157878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20361 + - uid: 20284 components: - type: Transform rot: -1.5707963267948966 rad @@ -157865,7 +157886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20362 + - uid: 20285 components: - type: Transform rot: -1.5707963267948966 rad @@ -157873,7 +157894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20363 + - uid: 20286 components: - type: Transform rot: -1.5707963267948966 rad @@ -157881,7 +157902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20364 + - uid: 20287 components: - type: Transform rot: -1.5707963267948966 rad @@ -157889,7 +157910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20365 + - uid: 20288 components: - type: Transform rot: -1.5707963267948966 rad @@ -157897,7 +157918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20366 + - uid: 20289 components: - type: Transform rot: -1.5707963267948966 rad @@ -157905,7 +157926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20367 + - uid: 20290 components: - type: Transform rot: -1.5707963267948966 rad @@ -157913,13 +157934,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20368 + - uid: 20291 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-50.5 parent: 2 - - uid: 20369 + - uid: 20292 components: - type: Transform rot: -1.5707963267948966 rad @@ -157927,7 +157948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20370 + - uid: 20293 components: - type: Transform rot: -1.5707963267948966 rad @@ -157935,7 +157956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20371 + - uid: 20294 components: - type: Transform rot: -1.5707963267948966 rad @@ -157943,7 +157964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20372 + - uid: 20295 components: - type: Transform rot: -1.5707963267948966 rad @@ -157951,7 +157972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20373 + - uid: 20296 components: - type: Transform rot: -1.5707963267948966 rad @@ -157959,7 +157980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20374 + - uid: 20297 components: - type: Transform rot: -1.5707963267948966 rad @@ -157967,7 +157988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20375 + - uid: 20298 components: - type: Transform rot: -1.5707963267948966 rad @@ -157975,7 +157996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20376 + - uid: 20299 components: - type: Transform rot: -1.5707963267948966 rad @@ -157983,7 +158004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20377 + - uid: 20300 components: - type: Transform rot: -1.5707963267948966 rad @@ -157991,7 +158012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20378 + - uid: 20301 components: - type: Transform rot: -1.5707963267948966 rad @@ -157999,7 +158020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20379 + - uid: 20302 components: - type: Transform rot: -1.5707963267948966 rad @@ -158007,7 +158028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20380 + - uid: 20303 components: - type: Transform rot: -1.5707963267948966 rad @@ -158015,7 +158036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20381 + - uid: 20304 components: - type: Transform rot: 3.141592653589793 rad @@ -158023,7 +158044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20382 + - uid: 20305 components: - type: Transform rot: 3.141592653589793 rad @@ -158031,7 +158052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20383 + - uid: 20306 components: - type: Transform rot: 3.141592653589793 rad @@ -158039,7 +158060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20384 + - uid: 20307 components: - type: Transform rot: 3.141592653589793 rad @@ -158047,7 +158068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20385 + - uid: 20308 components: - type: Transform rot: 3.141592653589793 rad @@ -158055,7 +158076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20386 + - uid: 20309 components: - type: Transform rot: 3.141592653589793 rad @@ -158063,7 +158084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20387 + - uid: 20310 components: - type: Transform rot: 3.141592653589793 rad @@ -158071,7 +158092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20388 + - uid: 20311 components: - type: Transform rot: 3.141592653589793 rad @@ -158079,7 +158100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20389 + - uid: 20312 components: - type: Transform rot: 3.141592653589793 rad @@ -158087,7 +158108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20390 + - uid: 20313 components: - type: Transform rot: 3.141592653589793 rad @@ -158095,7 +158116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20391 + - uid: 20314 components: - type: Transform rot: 3.141592653589793 rad @@ -158103,7 +158124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20392 + - uid: 20315 components: - type: Transform rot: 3.141592653589793 rad @@ -158111,7 +158132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20393 + - uid: 20316 components: - type: Transform rot: 3.141592653589793 rad @@ -158119,7 +158140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 20394 + - uid: 20317 components: - type: Transform rot: 3.141592653589793 rad @@ -158127,7 +158148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20395 + - uid: 20318 components: - type: Transform rot: 3.141592653589793 rad @@ -158135,7 +158156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20396 + - uid: 20319 components: - type: Transform rot: 3.141592653589793 rad @@ -158143,7 +158164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20397 + - uid: 20320 components: - type: Transform rot: 3.141592653589793 rad @@ -158151,98 +158172,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20398 + - uid: 20321 components: - type: Transform pos: -12.5,77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20399 + - uid: 20322 components: - type: Transform pos: -12.5,78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20400 + - uid: 20323 components: - type: Transform pos: -12.5,79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20401 + - uid: 20324 components: - type: Transform pos: -12.5,80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20402 + - uid: 20325 components: - type: Transform pos: -12.5,81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20403 + - uid: 20326 components: - type: Transform pos: -12.5,82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20404 + - uid: 20327 components: - type: Transform pos: -12.5,83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20405 + - uid: 20328 components: - type: Transform pos: -12.5,84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20406 + - uid: 20329 components: - type: Transform pos: -12.5,85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20407 + - uid: 20330 components: - type: Transform pos: -12.5,86.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20408 + - uid: 20331 components: - type: Transform pos: -12.5,87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20409 + - uid: 20332 components: - type: Transform pos: -12.5,88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20410 + - uid: 20333 components: - type: Transform pos: -12.5,89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20411 + - uid: 20334 components: - type: Transform rot: 1.5707963267948966 rad @@ -158250,7 +158271,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20412 + - uid: 20335 components: - type: Transform rot: 1.5707963267948966 rad @@ -158258,7 +158279,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20413 + - uid: 20336 components: - type: Transform rot: 1.5707963267948966 rad @@ -158266,7 +158287,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20414 + - uid: 20337 components: - type: Transform rot: 1.5707963267948966 rad @@ -158274,7 +158295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20415 + - uid: 20338 components: - type: Transform rot: 1.5707963267948966 rad @@ -158282,7 +158303,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20416 + - uid: 20339 components: - type: Transform rot: 1.5707963267948966 rad @@ -158290,7 +158311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20417 + - uid: 20340 components: - type: Transform rot: 1.5707963267948966 rad @@ -158298,7 +158319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20418 + - uid: 20341 components: - type: Transform rot: 1.5707963267948966 rad @@ -158306,7 +158327,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20419 + - uid: 20342 components: - type: Transform rot: 1.5707963267948966 rad @@ -158314,7 +158335,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20420 + - uid: 20343 components: - type: Transform rot: 1.5707963267948966 rad @@ -158322,7 +158343,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20421 + - uid: 20344 components: - type: Transform rot: 1.5707963267948966 rad @@ -158330,203 +158351,203 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20422 + - uid: 20345 components: - type: Transform pos: -30.5,68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20423 + - uid: 20346 components: - type: Transform pos: -30.5,69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20424 + - uid: 20347 components: - type: Transform pos: -30.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20425 + - uid: 20348 components: - type: Transform pos: -28.5,70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20426 + - uid: 20349 components: - type: Transform pos: -28.5,71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20427 + - uid: 20350 components: - type: Transform pos: -30.5,71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20428 + - uid: 20351 components: - type: Transform pos: -28.5,72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20429 + - uid: 20352 components: - type: Transform pos: -30.5,72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20430 + - uid: 20353 components: - type: Transform pos: -30.5,73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20431 + - uid: 20354 components: - type: Transform pos: -30.5,74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20432 + - uid: 20355 components: - type: Transform pos: -28.5,74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20433 + - uid: 20356 components: - type: Transform pos: -28.5,75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20434 + - uid: 20357 components: - type: Transform pos: -30.5,75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20435 + - uid: 20358 components: - type: Transform pos: -28.5,76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20436 + - uid: 20359 components: - type: Transform pos: -30.5,76.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20437 + - uid: 20360 components: - type: Transform pos: -30.5,77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20438 + - uid: 20361 components: - type: Transform pos: -30.5,78.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20439 + - uid: 20362 components: - type: Transform pos: -30.5,80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20440 + - uid: 20363 components: - type: Transform pos: -30.5,79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20441 + - uid: 20364 components: - type: Transform pos: -30.5,81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20442 + - uid: 20365 components: - type: Transform pos: -30.5,82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20443 + - uid: 20366 components: - type: Transform pos: -30.5,83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20444 + - uid: 20367 components: - type: Transform pos: -30.5,84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20445 + - uid: 20368 components: - type: Transform pos: -30.5,86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20446 + - uid: 20369 components: - type: Transform pos: -30.5,85.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20447 + - uid: 20370 components: - type: Transform pos: -30.5,87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20448 + - uid: 20371 components: - type: Transform pos: -30.5,88.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20449 + - uid: 20372 components: - type: Transform pos: -30.5,89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20450 + - uid: 20373 components: - type: Transform rot: 1.5707963267948966 rad @@ -158534,7 +158555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20451 + - uid: 20374 components: - type: Transform rot: 1.5707963267948966 rad @@ -158542,7 +158563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20452 + - uid: 20375 components: - type: Transform rot: 1.5707963267948966 rad @@ -158550,7 +158571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20453 + - uid: 20376 components: - type: Transform rot: 1.5707963267948966 rad @@ -158558,7 +158579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20454 + - uid: 20377 components: - type: Transform rot: 1.5707963267948966 rad @@ -158566,7 +158587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20455 + - uid: 20378 components: - type: Transform rot: 1.5707963267948966 rad @@ -158574,7 +158595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20456 + - uid: 20379 components: - type: Transform rot: 1.5707963267948966 rad @@ -158582,7 +158603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20457 + - uid: 20380 components: - type: Transform rot: 1.5707963267948966 rad @@ -158590,7 +158611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20458 + - uid: 20381 components: - type: Transform rot: 1.5707963267948966 rad @@ -158598,7 +158619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20459 + - uid: 20382 components: - type: Transform rot: 1.5707963267948966 rad @@ -158606,7 +158627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20460 + - uid: 20383 components: - type: Transform rot: 1.5707963267948966 rad @@ -158614,111 +158635,111 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20461 + - uid: 20384 components: - type: Transform pos: 6.5,66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20462 + - uid: 20385 components: - type: Transform pos: 6.5,65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20463 + - uid: 20386 components: - type: Transform pos: 7.5,68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20464 + - uid: 20387 components: - type: Transform pos: 7.5,69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20465 + - uid: 20388 components: - type: Transform pos: 7.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20466 + - uid: 20389 components: - type: Transform pos: 5.5,70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20467 + - uid: 20390 components: - type: Transform pos: 7.5,71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20468 + - uid: 20391 components: - type: Transform pos: 5.5,71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20469 + - uid: 20392 components: - type: Transform pos: 7.5,72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20470 + - uid: 20393 components: - type: Transform pos: 5.5,72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20471 + - uid: 20394 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-51.5 parent: 2 - - uid: 20472 + - uid: 20395 components: - type: Transform pos: 7.5,73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20473 + - uid: 20396 components: - type: Transform pos: 5.5,73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20474 + - uid: 20397 components: - type: Transform pos: 5.5,74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20475 + - uid: 20398 components: - type: Transform pos: 7.5,74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20476 + - uid: 20399 components: - type: Transform rot: 1.5707963267948966 rad @@ -158726,7 +158747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20477 + - uid: 20400 components: - type: Transform rot: 3.141592653589793 rad @@ -158734,70 +158755,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20478 + - uid: 20401 components: - type: Transform pos: 5.5,75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20479 + - uid: 20402 components: - type: Transform pos: 7.5,76.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20480 + - uid: 20403 components: - type: Transform pos: 5.5,77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20481 + - uid: 20404 components: - type: Transform pos: 5.5,78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20482 + - uid: 20405 components: - type: Transform pos: 5.5,79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20483 + - uid: 20406 components: - type: Transform pos: 5.5,80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20484 + - uid: 20407 components: - type: Transform pos: 5.5,81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20485 + - uid: 20408 components: - type: Transform pos: 5.5,82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20486 + - uid: 20409 components: - type: Transform pos: 5.5,83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20487 + - uid: 20410 components: - type: Transform rot: 3.141592653589793 rad @@ -158805,7 +158826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20488 + - uid: 20411 components: - type: Transform rot: 1.5707963267948966 rad @@ -158813,7 +158834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20489 + - uid: 20412 components: - type: Transform rot: 1.5707963267948966 rad @@ -158821,7 +158842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20490 + - uid: 20413 components: - type: Transform rot: 1.5707963267948966 rad @@ -158829,7 +158850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20491 + - uid: 20414 components: - type: Transform rot: 1.5707963267948966 rad @@ -158837,7 +158858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20492 + - uid: 20415 components: - type: Transform rot: 1.5707963267948966 rad @@ -158845,7 +158866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20493 + - uid: 20416 components: - type: Transform rot: 1.5707963267948966 rad @@ -158853,7 +158874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20494 + - uid: 20417 components: - type: Transform rot: -1.5707963267948966 rad @@ -158861,7 +158882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20495 + - uid: 20418 components: - type: Transform rot: 3.141592653589793 rad @@ -158869,7 +158890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20496 + - uid: 20419 components: - type: Transform rot: 3.141592653589793 rad @@ -158877,7 +158898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20497 + - uid: 20420 components: - type: Transform rot: 3.141592653589793 rad @@ -158885,7 +158906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20498 + - uid: 20421 components: - type: Transform rot: 3.141592653589793 rad @@ -158893,42 +158914,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20499 + - uid: 20422 components: - type: Transform pos: 10.5,81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20500 + - uid: 20423 components: - type: Transform pos: 10.5,82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20501 + - uid: 20424 components: - type: Transform pos: 10.5,83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20502 + - uid: 20425 components: - type: Transform pos: 10.5,84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20503 + - uid: 20426 components: - type: Transform pos: 10.5,85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20504 + - uid: 20427 components: - type: Transform rot: 3.141592653589793 rad @@ -158936,7 +158957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20505 + - uid: 20428 components: - type: Transform rot: 3.141592653589793 rad @@ -158944,14 +158965,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20506 + - uid: 20429 components: - type: Transform pos: 7.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20507 + - uid: 20430 components: - type: Transform rot: 1.5707963267948966 rad @@ -158959,7 +158980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20508 + - uid: 20431 components: - type: Transform rot: 1.5707963267948966 rad @@ -158967,7 +158988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20509 + - uid: 20432 components: - type: Transform rot: 1.5707963267948966 rad @@ -158975,7 +158996,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20510 + - uid: 20433 components: - type: Transform rot: 1.5707963267948966 rad @@ -158983,7 +159004,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20511 + - uid: 20434 components: - type: Transform rot: 1.5707963267948966 rad @@ -158991,7 +159012,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20512 + - uid: 20435 components: - type: Transform rot: 1.5707963267948966 rad @@ -158999,7 +159020,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20513 + - uid: 20436 components: - type: Transform rot: 1.5707963267948966 rad @@ -159007,7 +159028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20514 + - uid: 20437 components: - type: Transform rot: 3.141592653589793 rad @@ -159015,7 +159036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20515 + - uid: 20438 components: - type: Transform rot: 3.141592653589793 rad @@ -159023,7 +159044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20516 + - uid: 20439 components: - type: Transform rot: 3.141592653589793 rad @@ -159031,7 +159052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20517 + - uid: 20440 components: - type: Transform rot: 3.141592653589793 rad @@ -159039,7 +159060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20518 + - uid: 20441 components: - type: Transform rot: -1.5707963267948966 rad @@ -159047,21 +159068,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20519 + - uid: 20442 components: - type: Transform pos: 4.5,30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20520 + - uid: 20443 components: - type: Transform pos: 4.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20521 + - uid: 20444 components: - type: Transform rot: -1.5707963267948966 rad @@ -159069,7 +159090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20522 + - uid: 20445 components: - type: Transform rot: 3.141592653589793 rad @@ -159077,7 +159098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20523 + - uid: 20446 components: - type: Transform rot: 3.141592653589793 rad @@ -159085,7 +159106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20524 + - uid: 20447 components: - type: Transform rot: 3.141592653589793 rad @@ -159093,7 +159114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20525 + - uid: 20448 components: - type: Transform rot: 1.5707963267948966 rad @@ -159101,7 +159122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20526 + - uid: 20449 components: - type: Transform rot: 1.5707963267948966 rad @@ -159109,7 +159130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20527 + - uid: 20450 components: - type: Transform rot: 1.5707963267948966 rad @@ -159117,7 +159138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20528 + - uid: 20451 components: - type: Transform rot: 1.5707963267948966 rad @@ -159125,7 +159146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20529 + - uid: 20452 components: - type: Transform rot: 3.141592653589793 rad @@ -159133,7 +159154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20530 + - uid: 20453 components: - type: Transform rot: 3.141592653589793 rad @@ -159141,7 +159162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20531 + - uid: 20454 components: - type: Transform rot: 3.141592653589793 rad @@ -159149,7 +159170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20532 + - uid: 20455 components: - type: Transform rot: 3.141592653589793 rad @@ -159157,7 +159178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20533 + - uid: 20456 components: - type: Transform rot: 3.141592653589793 rad @@ -159165,7 +159186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20534 + - uid: 20457 components: - type: Transform rot: 3.141592653589793 rad @@ -159173,7 +159194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20535 + - uid: 20458 components: - type: Transform rot: 3.141592653589793 rad @@ -159181,7 +159202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20536 + - uid: 20459 components: - type: Transform rot: 1.5707963267948966 rad @@ -159189,7 +159210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20537 + - uid: 20460 components: - type: Transform rot: 1.5707963267948966 rad @@ -159197,7 +159218,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20538 + - uid: 20461 components: - type: Transform rot: 1.5707963267948966 rad @@ -159205,7 +159226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20539 + - uid: 20462 components: - type: Transform rot: 1.5707963267948966 rad @@ -159213,7 +159234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20540 + - uid: 20463 components: - type: Transform rot: 1.5707963267948966 rad @@ -159221,7 +159242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20541 + - uid: 20464 components: - type: Transform rot: 1.5707963267948966 rad @@ -159229,7 +159250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20542 + - uid: 20465 components: - type: Transform rot: 1.5707963267948966 rad @@ -159237,7 +159258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20543 + - uid: 20466 components: - type: Transform rot: 1.5707963267948966 rad @@ -159245,7 +159266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20544 + - uid: 20467 components: - type: Transform rot: 1.5707963267948966 rad @@ -159253,7 +159274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20545 + - uid: 20468 components: - type: Transform rot: 1.5707963267948966 rad @@ -159261,7 +159282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20546 + - uid: 20469 components: - type: Transform rot: 1.5707963267948966 rad @@ -159269,7 +159290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20547 + - uid: 20470 components: - type: Transform rot: -1.5707963267948966 rad @@ -159277,7 +159298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20548 + - uid: 20471 components: - type: Transform rot: 1.5707963267948966 rad @@ -159285,7 +159306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20549 + - uid: 20472 components: - type: Transform rot: -1.5707963267948966 rad @@ -159293,7 +159314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20550 + - uid: 20473 components: - type: Transform rot: 1.5707963267948966 rad @@ -159301,7 +159322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20551 + - uid: 20474 components: - type: Transform rot: 1.5707963267948966 rad @@ -159309,7 +159330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20552 + - uid: 20475 components: - type: Transform rot: 1.5707963267948966 rad @@ -159317,7 +159338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20553 + - uid: 20476 components: - type: Transform rot: 1.5707963267948966 rad @@ -159325,7 +159346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20554 + - uid: 20477 components: - type: Transform rot: 1.5707963267948966 rad @@ -159333,7 +159354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20555 + - uid: 20478 components: - type: Transform rot: 3.141592653589793 rad @@ -159341,7 +159362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20556 + - uid: 20479 components: - type: Transform rot: 3.141592653589793 rad @@ -159349,7 +159370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20557 + - uid: 20480 components: - type: Transform rot: 3.141592653589793 rad @@ -159357,7 +159378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20558 + - uid: 20481 components: - type: Transform rot: 3.141592653589793 rad @@ -159365,7 +159386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20559 + - uid: 20482 components: - type: Transform rot: 3.141592653589793 rad @@ -159373,7 +159394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20560 + - uid: 20483 components: - type: Transform rot: 3.141592653589793 rad @@ -159381,56 +159402,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20561 + - uid: 20484 components: - type: Transform pos: 16.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20562 + - uid: 20485 components: - type: Transform pos: 18.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20563 + - uid: 20486 components: - type: Transform pos: 18.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20564 + - uid: 20487 components: - type: Transform pos: 16.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20565 + - uid: 20488 components: - type: Transform pos: 16.5,41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20566 + - uid: 20489 components: - type: Transform pos: 18.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20567 + - uid: 20490 components: - type: Transform pos: 16.5,42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20568 + - uid: 20491 components: - type: Transform rot: -1.5707963267948966 rad @@ -159438,7 +159459,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20569 + - uid: 20492 components: - type: Transform rot: -1.5707963267948966 rad @@ -159446,7 +159467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20570 + - uid: 20493 components: - type: Transform rot: 3.141592653589793 rad @@ -159454,7 +159475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20571 + - uid: 20494 components: - type: Transform rot: 1.5707963267948966 rad @@ -159462,7 +159483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20572 + - uid: 20495 components: - type: Transform rot: 1.5707963267948966 rad @@ -159470,63 +159491,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20573 + - uid: 20496 components: - type: Transform pos: 20.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20574 + - uid: 20497 components: - type: Transform pos: 18.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20575 + - uid: 20498 components: - type: Transform pos: 18.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20576 + - uid: 20499 components: - type: Transform pos: 20.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20577 + - uid: 20500 components: - type: Transform pos: 20.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20578 + - uid: 20501 components: - type: Transform pos: 18.5,47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20579 + - uid: 20502 components: - type: Transform pos: 18.5,48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20580 + - uid: 20503 components: - type: Transform pos: 20.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20581 + - uid: 20504 components: - type: Transform rot: 3.141592653589793 rad @@ -159534,34 +159555,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20582 + - uid: 20505 components: - type: Transform pos: 20.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20583 + - uid: 20506 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-30.5 parent: 2 - - uid: 20584 + - uid: 20507 components: - type: Transform pos: 20.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20585 + - uid: 20508 components: - type: Transform pos: 20.5,52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20586 + - uid: 20509 components: - type: Transform rot: 1.5707963267948966 rad @@ -159569,7 +159590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20587 + - uid: 20510 components: - type: Transform rot: 1.5707963267948966 rad @@ -159577,7 +159598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20588 + - uid: 20511 components: - type: Transform rot: 1.5707963267948966 rad @@ -159585,7 +159606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20589 + - uid: 20512 components: - type: Transform rot: 1.5707963267948966 rad @@ -159593,7 +159614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20590 + - uid: 20513 components: - type: Transform rot: 1.5707963267948966 rad @@ -159601,7 +159622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20591 + - uid: 20514 components: - type: Transform rot: 1.5707963267948966 rad @@ -159609,7 +159630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20592 + - uid: 20515 components: - type: Transform rot: 1.5707963267948966 rad @@ -159617,7 +159638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20593 + - uid: 20516 components: - type: Transform rot: 1.5707963267948966 rad @@ -159625,7 +159646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20594 + - uid: 20517 components: - type: Transform rot: 1.5707963267948966 rad @@ -159633,7 +159654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20595 + - uid: 20518 components: - type: Transform rot: 1.5707963267948966 rad @@ -159641,7 +159662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20596 + - uid: 20519 components: - type: Transform rot: 1.5707963267948966 rad @@ -159649,7 +159670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20597 + - uid: 20520 components: - type: Transform rot: 1.5707963267948966 rad @@ -159657,7 +159678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20598 + - uid: 20521 components: - type: Transform rot: 1.5707963267948966 rad @@ -159665,7 +159686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20599 + - uid: 20522 components: - type: Transform rot: 1.5707963267948966 rad @@ -159673,7 +159694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20600 + - uid: 20523 components: - type: Transform rot: 1.5707963267948966 rad @@ -159681,7 +159702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20601 + - uid: 20524 components: - type: Transform rot: 1.5707963267948966 rad @@ -159689,7 +159710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20602 + - uid: 20525 components: - type: Transform rot: 1.5707963267948966 rad @@ -159697,7 +159718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20603 + - uid: 20526 components: - type: Transform rot: 1.5707963267948966 rad @@ -159705,7 +159726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20604 + - uid: 20527 components: - type: Transform rot: 1.5707963267948966 rad @@ -159713,7 +159734,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20605 + - uid: 20528 components: - type: Transform rot: 1.5707963267948966 rad @@ -159721,7 +159742,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20606 + - uid: 20529 components: - type: Transform rot: 1.5707963267948966 rad @@ -159729,7 +159750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20607 + - uid: 20530 components: - type: Transform rot: 1.5707963267948966 rad @@ -159737,7 +159758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20608 + - uid: 20531 components: - type: Transform rot: 1.5707963267948966 rad @@ -159745,7 +159766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20609 + - uid: 20532 components: - type: Transform rot: 1.5707963267948966 rad @@ -159753,7 +159774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20610 + - uid: 20533 components: - type: Transform rot: 1.5707963267948966 rad @@ -159761,7 +159782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20611 + - uid: 20534 components: - type: Transform rot: 1.5707963267948966 rad @@ -159769,7 +159790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20612 + - uid: 20535 components: - type: Transform rot: 1.5707963267948966 rad @@ -159777,7 +159798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20613 + - uid: 20536 components: - type: Transform rot: 1.5707963267948966 rad @@ -159785,7 +159806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20614 + - uid: 20537 components: - type: Transform rot: 1.5707963267948966 rad @@ -159793,7 +159814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20615 + - uid: 20538 components: - type: Transform rot: -1.5707963267948966 rad @@ -159801,7 +159822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20616 + - uid: 20539 components: - type: Transform rot: -1.5707963267948966 rad @@ -159809,7 +159830,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20617 + - uid: 20540 components: - type: Transform rot: -1.5707963267948966 rad @@ -159817,7 +159838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20618 + - uid: 20541 components: - type: Transform rot: 1.5707963267948966 rad @@ -159825,7 +159846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20619 + - uid: 20542 components: - type: Transform rot: 1.5707963267948966 rad @@ -159833,7 +159854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20620 + - uid: 20543 components: - type: Transform rot: 1.5707963267948966 rad @@ -159841,63 +159862,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20621 + - uid: 20544 components: - type: Transform pos: 20.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20622 + - uid: 20545 components: - type: Transform pos: 20.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20623 + - uid: 20546 components: - type: Transform pos: 20.5,34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20624 + - uid: 20547 components: - type: Transform pos: 20.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20625 + - uid: 20548 components: - type: Transform pos: 20.5,32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20626 + - uid: 20549 components: - type: Transform pos: 21.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20627 + - uid: 20550 components: - type: Transform pos: 21.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20628 + - uid: 20551 components: - type: Transform pos: 21.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20629 + - uid: 20552 components: - type: Transform rot: 3.141592653589793 rad @@ -159905,28 +159926,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20630 + - uid: 20553 components: - type: Transform pos: 21.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20631 + - uid: 20554 components: - type: Transform pos: 20.5,31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20632 + - uid: 20555 components: - type: Transform pos: 20.5,30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20633 + - uid: 20556 components: - type: Transform rot: 1.5707963267948966 rad @@ -159934,7 +159955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20634 + - uid: 20557 components: - type: Transform rot: 1.5707963267948966 rad @@ -159942,7 +159963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20635 + - uid: 20558 components: - type: Transform rot: 1.5707963267948966 rad @@ -159950,7 +159971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20636 + - uid: 20559 components: - type: Transform rot: 1.5707963267948966 rad @@ -159958,7 +159979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20637 + - uid: 20560 components: - type: Transform rot: 1.5707963267948966 rad @@ -159966,7 +159987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20638 + - uid: 20561 components: - type: Transform rot: 1.5707963267948966 rad @@ -159974,7 +159995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20639 + - uid: 20562 components: - type: Transform rot: 1.5707963267948966 rad @@ -159982,7 +160003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20640 + - uid: 20563 components: - type: Transform rot: 1.5707963267948966 rad @@ -159990,7 +160011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20641 + - uid: 20564 components: - type: Transform rot: 1.5707963267948966 rad @@ -159998,7 +160019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20642 + - uid: 20565 components: - type: Transform rot: 1.5707963267948966 rad @@ -160006,7 +160027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20643 + - uid: 20566 components: - type: Transform rot: 1.5707963267948966 rad @@ -160014,7 +160035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20644 + - uid: 20567 components: - type: Transform rot: 1.5707963267948966 rad @@ -160022,7 +160043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20645 + - uid: 20568 components: - type: Transform rot: 1.5707963267948966 rad @@ -160030,28 +160051,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20646 + - uid: 20569 components: - type: Transform pos: 31.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20647 + - uid: 20570 components: - type: Transform pos: 31.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20648 + - uid: 20571 components: - type: Transform pos: 31.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20649 + - uid: 20572 components: - type: Transform rot: -1.5707963267948966 rad @@ -160059,7 +160080,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20650 + - uid: 20573 components: - type: Transform rot: -1.5707963267948966 rad @@ -160067,7 +160088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20651 + - uid: 20574 components: - type: Transform rot: 3.141592653589793 rad @@ -160075,7 +160096,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20652 + - uid: 20575 components: - type: Transform rot: 3.141592653589793 rad @@ -160083,7 +160104,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20653 + - uid: 20576 components: - type: Transform rot: 3.141592653589793 rad @@ -160091,7 +160112,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20654 + - uid: 20577 components: - type: Transform rot: 3.141592653589793 rad @@ -160099,7 +160120,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20655 + - uid: 20578 components: - type: Transform rot: 3.141592653589793 rad @@ -160107,7 +160128,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20656 + - uid: 20579 components: - type: Transform rot: 3.141592653589793 rad @@ -160115,21 +160136,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20657 + - uid: 20580 components: - type: Transform pos: 22.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20658 + - uid: 20581 components: - type: Transform pos: 22.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20659 + - uid: 20582 components: - type: Transform rot: -1.5707963267948966 rad @@ -160137,7 +160158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20660 + - uid: 20583 components: - type: Transform rot: -1.5707963267948966 rad @@ -160145,7 +160166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20661 + - uid: 20584 components: - type: Transform rot: 3.141592653589793 rad @@ -160153,7 +160174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20662 + - uid: 20585 components: - type: Transform rot: 1.5707963267948966 rad @@ -160161,7 +160182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20663 + - uid: 20586 components: - type: Transform rot: 1.5707963267948966 rad @@ -160169,7 +160190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20664 + - uid: 20587 components: - type: Transform rot: 1.5707963267948966 rad @@ -160177,21 +160198,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20665 + - uid: 20588 components: - type: Transform pos: 22.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20666 + - uid: 20589 components: - type: Transform pos: 22.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20667 + - uid: 20590 components: - type: Transform rot: 1.5707963267948966 rad @@ -160199,7 +160220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20668 + - uid: 20591 components: - type: Transform rot: 1.5707963267948966 rad @@ -160207,7 +160228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20669 + - uid: 20592 components: - type: Transform rot: 3.141592653589793 rad @@ -160215,7 +160236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20670 + - uid: 20593 components: - type: Transform rot: 3.141592653589793 rad @@ -160223,7 +160244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20671 + - uid: 20594 components: - type: Transform rot: 1.5707963267948966 rad @@ -160231,7 +160252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20672 + - uid: 20595 components: - type: Transform rot: 1.5707963267948966 rad @@ -160239,7 +160260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20673 + - uid: 20596 components: - type: Transform rot: 1.5707963267948966 rad @@ -160247,7 +160268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20674 + - uid: 20597 components: - type: Transform rot: 1.5707963267948966 rad @@ -160255,7 +160276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20675 + - uid: 20598 components: - type: Transform rot: 1.5707963267948966 rad @@ -160263,7 +160284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20676 + - uid: 20599 components: - type: Transform rot: 1.5707963267948966 rad @@ -160271,35 +160292,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20677 + - uid: 20600 components: - type: Transform pos: 28.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20678 + - uid: 20601 components: - type: Transform pos: 28.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20679 + - uid: 20602 components: - type: Transform pos: 28.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20680 + - uid: 20603 components: - type: Transform pos: 28.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20681 + - uid: 20604 components: - type: Transform rot: 3.141592653589793 rad @@ -160307,14 +160328,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 20682 + - uid: 20605 components: - type: Transform pos: 28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20683 + - uid: 20606 components: - type: Transform rot: 3.141592653589793 rad @@ -160322,13 +160343,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20684 + - uid: 20607 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-30.5 parent: 2 - - uid: 20685 + - uid: 20608 components: - type: Transform rot: 3.141592653589793 rad @@ -160336,7 +160357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20686 + - uid: 20609 components: - type: Transform rot: 3.141592653589793 rad @@ -160344,7 +160365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20687 + - uid: 20610 components: - type: Transform rot: 1.5707963267948966 rad @@ -160352,7 +160373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20688 + - uid: 20611 components: - type: Transform rot: 1.5707963267948966 rad @@ -160360,7 +160381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20689 + - uid: 20612 components: - type: Transform rot: 1.5707963267948966 rad @@ -160368,7 +160389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20690 + - uid: 20613 components: - type: Transform rot: 1.5707963267948966 rad @@ -160376,7 +160397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20691 + - uid: 20614 components: - type: Transform rot: 1.5707963267948966 rad @@ -160384,7 +160405,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20692 + - uid: 20615 components: - type: Transform rot: 1.5707963267948966 rad @@ -160392,7 +160413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20693 + - uid: 20616 components: - type: Transform rot: 1.5707963267948966 rad @@ -160400,14 +160421,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20694 + - uid: 20617 components: - type: Transform pos: -3.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20695 + - uid: 20618 components: - type: Transform rot: -1.5707963267948966 rad @@ -160415,7 +160436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20696 + - uid: 20619 components: - type: Transform rot: -1.5707963267948966 rad @@ -160423,7 +160444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20697 + - uid: 20620 components: - type: Transform rot: -1.5707963267948966 rad @@ -160431,7 +160452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20698 + - uid: 20621 components: - type: Transform rot: -1.5707963267948966 rad @@ -160439,7 +160460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20699 + - uid: 20622 components: - type: Transform rot: -1.5707963267948966 rad @@ -160447,7 +160468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20700 + - uid: 20623 components: - type: Transform rot: 3.141592653589793 rad @@ -160455,7 +160476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20701 + - uid: 20624 components: - type: Transform rot: 3.141592653589793 rad @@ -160463,7 +160484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20702 + - uid: 20625 components: - type: Transform rot: -1.5707963267948966 rad @@ -160471,7 +160492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20703 + - uid: 20626 components: - type: Transform rot: 3.141592653589793 rad @@ -160479,7 +160500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20704 + - uid: 20627 components: - type: Transform rot: 1.5707963267948966 rad @@ -160487,7 +160508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20705 + - uid: 20628 components: - type: Transform rot: 1.5707963267948966 rad @@ -160495,7 +160516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20706 + - uid: 20629 components: - type: Transform rot: 1.5707963267948966 rad @@ -160503,7 +160524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20707 + - uid: 20630 components: - type: Transform rot: 1.5707963267948966 rad @@ -160511,7 +160532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20708 + - uid: 20631 components: - type: Transform rot: 1.5707963267948966 rad @@ -160519,14 +160540,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20709 + - uid: 20632 components: - type: Transform pos: 39.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20710 + - uid: 20633 components: - type: Transform rot: -1.5707963267948966 rad @@ -160534,7 +160555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20711 + - uid: 20634 components: - type: Transform rot: 3.141592653589793 rad @@ -160542,7 +160563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20712 + - uid: 20635 components: - type: Transform rot: 3.141592653589793 rad @@ -160550,7 +160571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20713 + - uid: 20636 components: - type: Transform rot: 1.5707963267948966 rad @@ -160558,7 +160579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20714 + - uid: 20637 components: - type: Transform rot: 1.5707963267948966 rad @@ -160566,7 +160587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20715 + - uid: 20638 components: - type: Transform rot: 1.5707963267948966 rad @@ -160574,70 +160595,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20716 + - uid: 20639 components: - type: Transform pos: 40.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20717 + - uid: 20640 components: - type: Transform pos: 40.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20718 + - uid: 20641 components: - type: Transform pos: 40.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20719 + - uid: 20642 components: - type: Transform pos: 40.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20720 + - uid: 20643 components: - type: Transform pos: 40.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20721 + - uid: 20644 components: - type: Transform pos: 40.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20722 + - uid: 20645 components: - type: Transform pos: 40.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20723 + - uid: 20646 components: - type: Transform pos: 40.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20724 + - uid: 20647 components: - type: Transform pos: 40.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20725 + - uid: 20648 components: - type: Transform rot: -1.5707963267948966 rad @@ -160645,7 +160666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20726 + - uid: 20649 components: - type: Transform rot: -1.5707963267948966 rad @@ -160653,7 +160674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20727 + - uid: 20650 components: - type: Transform rot: -1.5707963267948966 rad @@ -160661,7 +160682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20728 + - uid: 20651 components: - type: Transform rot: 1.5707963267948966 rad @@ -160669,7 +160690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20729 + - uid: 20652 components: - type: Transform rot: 1.5707963267948966 rad @@ -160677,7 +160698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20730 + - uid: 20653 components: - type: Transform rot: 1.5707963267948966 rad @@ -160685,7 +160706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20731 + - uid: 20654 components: - type: Transform rot: 1.5707963267948966 rad @@ -160693,7 +160714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20732 + - uid: 20655 components: - type: Transform rot: -1.5707963267948966 rad @@ -160701,7 +160722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20733 + - uid: 20656 components: - type: Transform rot: -1.5707963267948966 rad @@ -160709,7 +160730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20734 + - uid: 20657 components: - type: Transform rot: 3.141592653589793 rad @@ -160717,7 +160738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20735 + - uid: 20658 components: - type: Transform rot: 3.141592653589793 rad @@ -160725,7 +160746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20736 + - uid: 20659 components: - type: Transform rot: 3.141592653589793 rad @@ -160733,7 +160754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20737 + - uid: 20660 components: - type: Transform rot: 3.141592653589793 rad @@ -160741,7 +160762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20738 + - uid: 20661 components: - type: Transform rot: 3.141592653589793 rad @@ -160749,7 +160770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20739 + - uid: 20662 components: - type: Transform rot: 3.141592653589793 rad @@ -160757,7 +160778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20740 + - uid: 20663 components: - type: Transform rot: 3.141592653589793 rad @@ -160765,7 +160786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20741 + - uid: 20664 components: - type: Transform rot: 1.5707963267948966 rad @@ -160773,7 +160794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20742 + - uid: 20665 components: - type: Transform rot: 1.5707963267948966 rad @@ -160781,7 +160802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20743 + - uid: 20666 components: - type: Transform rot: 1.5707963267948966 rad @@ -160789,7 +160810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20744 + - uid: 20667 components: - type: Transform rot: 3.141592653589793 rad @@ -160797,7 +160818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20745 + - uid: 20668 components: - type: Transform rot: 3.141592653589793 rad @@ -160805,7 +160826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20746 + - uid: 20669 components: - type: Transform rot: 3.141592653589793 rad @@ -160813,7 +160834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20747 + - uid: 20670 components: - type: Transform rot: 3.141592653589793 rad @@ -160821,7 +160842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20748 + - uid: 20671 components: - type: Transform rot: 1.5707963267948966 rad @@ -160829,7 +160850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20749 + - uid: 20672 components: - type: Transform rot: 1.5707963267948966 rad @@ -160837,7 +160858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20750 + - uid: 20673 components: - type: Transform rot: 1.5707963267948966 rad @@ -160845,7 +160866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20751 + - uid: 20674 components: - type: Transform rot: 1.5707963267948966 rad @@ -160853,7 +160874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20752 + - uid: 20675 components: - type: Transform rot: 1.5707963267948966 rad @@ -160861,7 +160882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20753 + - uid: 20676 components: - type: Transform rot: 1.5707963267948966 rad @@ -160869,7 +160890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20754 + - uid: 20677 components: - type: Transform rot: 3.141592653589793 rad @@ -160877,7 +160898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20755 + - uid: 20678 components: - type: Transform rot: 3.141592653589793 rad @@ -160885,7 +160906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20756 + - uid: 20679 components: - type: Transform rot: 1.5707963267948966 rad @@ -160893,7 +160914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20757 + - uid: 20680 components: - type: Transform rot: 1.5707963267948966 rad @@ -160901,7 +160922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20758 + - uid: 20681 components: - type: Transform rot: 1.5707963267948966 rad @@ -160909,7 +160930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20759 + - uid: 20682 components: - type: Transform rot: 1.5707963267948966 rad @@ -160917,7 +160938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20760 + - uid: 20683 components: - type: Transform rot: 1.5707963267948966 rad @@ -160925,7 +160946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20761 + - uid: 20684 components: - type: Transform rot: 1.5707963267948966 rad @@ -160933,7 +160954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20762 + - uid: 20685 components: - type: Transform rot: 1.5707963267948966 rad @@ -160941,7 +160962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20763 + - uid: 20686 components: - type: Transform rot: 1.5707963267948966 rad @@ -160949,7 +160970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20764 + - uid: 20687 components: - type: Transform rot: 1.5707963267948966 rad @@ -160957,7 +160978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20765 + - uid: 20688 components: - type: Transform rot: 1.5707963267948966 rad @@ -160965,14 +160986,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20766 + - uid: 20689 components: - type: Transform pos: 48.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20767 + - uid: 20690 components: - type: Transform rot: 1.5707963267948966 rad @@ -160980,14 +161001,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20768 + - uid: 20691 components: - type: Transform pos: 46.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20769 + - uid: 20692 components: - type: Transform rot: 1.5707963267948966 rad @@ -160995,33 +161016,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20770 + - uid: 20693 components: - type: Transform pos: 48.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20771 + - uid: 20694 components: - type: Transform pos: -36.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20772 + - uid: 20695 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,5.5 parent: 2 - - uid: 20773 + - uid: 20696 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,4.5 parent: 2 - - uid: 20774 + - uid: 20697 components: - type: Transform rot: 1.5707963267948966 rad @@ -161029,7 +161050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20775 + - uid: 20698 components: - type: Transform rot: 1.5707963267948966 rad @@ -161037,7 +161058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20776 + - uid: 20699 components: - type: Transform rot: 1.5707963267948966 rad @@ -161045,7 +161066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20777 + - uid: 20700 components: - type: Transform rot: 3.141592653589793 rad @@ -161053,7 +161074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20778 + - uid: 20701 components: - type: Transform rot: -1.5707963267948966 rad @@ -161061,7 +161082,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20779 + - uid: 20702 components: - type: Transform rot: -1.5707963267948966 rad @@ -161069,7 +161090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20780 + - uid: 20703 components: - type: Transform rot: -1.5707963267948966 rad @@ -161077,7 +161098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20781 + - uid: 20704 components: - type: Transform rot: -1.5707963267948966 rad @@ -161085,7 +161106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20782 + - uid: 20705 components: - type: Transform rot: -1.5707963267948966 rad @@ -161093,7 +161114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20783 + - uid: 20706 components: - type: Transform rot: -1.5707963267948966 rad @@ -161101,7 +161122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20784 + - uid: 20707 components: - type: Transform rot: -1.5707963267948966 rad @@ -161109,7 +161130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20785 + - uid: 20708 components: - type: Transform rot: 3.141592653589793 rad @@ -161117,7 +161138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20786 + - uid: 20709 components: - type: Transform rot: -1.5707963267948966 rad @@ -161125,7 +161146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20787 + - uid: 20710 components: - type: Transform rot: -1.5707963267948966 rad @@ -161133,7 +161154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20788 + - uid: 20711 components: - type: Transform rot: 3.141592653589793 rad @@ -161141,7 +161162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20789 + - uid: 20712 components: - type: Transform rot: 3.141592653589793 rad @@ -161149,7 +161170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20790 + - uid: 20713 components: - type: Transform rot: 3.141592653589793 rad @@ -161157,7 +161178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20791 + - uid: 20714 components: - type: Transform rot: 3.141592653589793 rad @@ -161165,7 +161186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20792 + - uid: 20715 components: - type: Transform rot: 3.141592653589793 rad @@ -161173,7 +161194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20793 + - uid: 20716 components: - type: Transform rot: 1.5707963267948966 rad @@ -161181,7 +161202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20794 + - uid: 20717 components: - type: Transform rot: 1.5707963267948966 rad @@ -161189,7 +161210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20795 + - uid: 20718 components: - type: Transform rot: 1.5707963267948966 rad @@ -161197,7 +161218,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20796 + - uid: 20719 components: - type: Transform rot: 1.5707963267948966 rad @@ -161205,7 +161226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20797 + - uid: 20720 components: - type: Transform rot: 1.5707963267948966 rad @@ -161213,7 +161234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20798 + - uid: 20721 components: - type: Transform rot: 1.5707963267948966 rad @@ -161221,7 +161242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20799 + - uid: 20722 components: - type: Transform rot: 1.5707963267948966 rad @@ -161229,7 +161250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20800 + - uid: 20723 components: - type: Transform rot: -1.5707963267948966 rad @@ -161237,7 +161258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20801 + - uid: 20724 components: - type: Transform rot: -1.5707963267948966 rad @@ -161245,7 +161266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20802 + - uid: 20725 components: - type: Transform rot: -1.5707963267948966 rad @@ -161253,7 +161274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20803 + - uid: 20726 components: - type: Transform rot: -1.5707963267948966 rad @@ -161261,7 +161282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20804 + - uid: 20727 components: - type: Transform rot: -1.5707963267948966 rad @@ -161269,7 +161290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20805 + - uid: 20728 components: - type: Transform rot: -1.5707963267948966 rad @@ -161277,7 +161298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20806 + - uid: 20729 components: - type: Transform rot: 3.141592653589793 rad @@ -161285,7 +161306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20807 + - uid: 20730 components: - type: Transform rot: 3.141592653589793 rad @@ -161293,7 +161314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20808 + - uid: 20731 components: - type: Transform rot: 1.5707963267948966 rad @@ -161301,7 +161322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20809 + - uid: 20732 components: - type: Transform rot: 1.5707963267948966 rad @@ -161309,7 +161330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20810 + - uid: 20733 components: - type: Transform rot: 1.5707963267948966 rad @@ -161317,7 +161338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20811 + - uid: 20734 components: - type: Transform rot: 1.5707963267948966 rad @@ -161325,7 +161346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20812 + - uid: 20735 components: - type: Transform rot: 1.5707963267948966 rad @@ -161333,7 +161354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20813 + - uid: 20736 components: - type: Transform rot: 1.5707963267948966 rad @@ -161341,7 +161362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20814 + - uid: 20737 components: - type: Transform rot: 1.5707963267948966 rad @@ -161349,7 +161370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20815 + - uid: 20738 components: - type: Transform rot: 1.5707963267948966 rad @@ -161357,7 +161378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20816 + - uid: 20739 components: - type: Transform rot: 1.5707963267948966 rad @@ -161365,7 +161386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20817 + - uid: 20740 components: - type: Transform rot: 1.5707963267948966 rad @@ -161373,7 +161394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20818 + - uid: 20741 components: - type: Transform rot: 1.5707963267948966 rad @@ -161381,7 +161402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20819 + - uid: 20742 components: - type: Transform rot: 1.5707963267948966 rad @@ -161389,7 +161410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20820 + - uid: 20743 components: - type: Transform rot: 1.5707963267948966 rad @@ -161397,7 +161418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20821 + - uid: 20744 components: - type: Transform rot: 1.5707963267948966 rad @@ -161405,7 +161426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20822 + - uid: 20745 components: - type: Transform rot: 1.5707963267948966 rad @@ -161413,13 +161434,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20823 + - uid: 20746 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,55.5 parent: 2 - - uid: 20824 + - uid: 20747 components: - type: Transform rot: 1.5707963267948966 rad @@ -161427,7 +161448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20825 + - uid: 20748 components: - type: Transform rot: 1.5707963267948966 rad @@ -161435,7 +161456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20826 + - uid: 20749 components: - type: Transform rot: 1.5707963267948966 rad @@ -161443,7 +161464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20827 + - uid: 20750 components: - type: Transform rot: 1.5707963267948966 rad @@ -161451,7 +161472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20828 + - uid: 20751 components: - type: Transform rot: 1.5707963267948966 rad @@ -161459,7 +161480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20829 + - uid: 20752 components: - type: Transform rot: 1.5707963267948966 rad @@ -161467,7 +161488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20830 + - uid: 20753 components: - type: Transform rot: 1.5707963267948966 rad @@ -161475,7 +161496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20831 + - uid: 20754 components: - type: Transform rot: -1.5707963267948966 rad @@ -161483,7 +161504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20832 + - uid: 20755 components: - type: Transform rot: -1.5707963267948966 rad @@ -161491,7 +161512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20833 + - uid: 20756 components: - type: Transform rot: -1.5707963267948966 rad @@ -161499,7 +161520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20834 + - uid: 20757 components: - type: Transform rot: 1.5707963267948966 rad @@ -161507,7 +161528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20835 + - uid: 20758 components: - type: Transform rot: 1.5707963267948966 rad @@ -161515,7 +161536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20836 + - uid: 20759 components: - type: Transform rot: 3.141592653589793 rad @@ -161523,7 +161544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20837 + - uid: 20760 components: - type: Transform rot: 3.141592653589793 rad @@ -161531,7 +161552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20838 + - uid: 20761 components: - type: Transform rot: 3.141592653589793 rad @@ -161539,7 +161560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20839 + - uid: 20762 components: - type: Transform rot: 3.141592653589793 rad @@ -161547,7 +161568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20840 + - uid: 20763 components: - type: Transform rot: 3.141592653589793 rad @@ -161555,7 +161576,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20841 + - uid: 20764 components: - type: Transform rot: 3.141592653589793 rad @@ -161563,7 +161584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20842 + - uid: 20765 components: - type: Transform rot: 3.141592653589793 rad @@ -161571,7 +161592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20843 + - uid: 20766 components: - type: Transform rot: 3.141592653589793 rad @@ -161579,7 +161600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20844 + - uid: 20767 components: - type: Transform rot: 3.141592653589793 rad @@ -161587,21 +161608,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20845 + - uid: 20768 components: - type: Transform pos: 74.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20846 + - uid: 20769 components: - type: Transform pos: 74.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20847 + - uid: 20770 components: - type: Transform rot: 3.141592653589793 rad @@ -161609,7 +161630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20848 + - uid: 20771 components: - type: Transform rot: 3.141592653589793 rad @@ -161617,7 +161638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20849 + - uid: 20772 components: - type: Transform rot: -1.5707963267948966 rad @@ -161625,7 +161646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20850 + - uid: 20773 components: - type: Transform rot: -1.5707963267948966 rad @@ -161633,7 +161654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20851 + - uid: 20774 components: - type: Transform rot: 1.5707963267948966 rad @@ -161641,7 +161662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20852 + - uid: 20775 components: - type: Transform rot: 1.5707963267948966 rad @@ -161649,7 +161670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20853 + - uid: 20776 components: - type: Transform rot: 1.5707963267948966 rad @@ -161657,7 +161678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20854 + - uid: 20777 components: - type: Transform rot: 1.5707963267948966 rad @@ -161665,7 +161686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20855 + - uid: 20778 components: - type: Transform rot: 1.5707963267948966 rad @@ -161673,7 +161694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20856 + - uid: 20779 components: - type: Transform rot: 1.5707963267948966 rad @@ -161681,7 +161702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20857 + - uid: 20780 components: - type: Transform rot: 1.5707963267948966 rad @@ -161689,7 +161710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20858 + - uid: 20781 components: - type: Transform rot: -1.5707963267948966 rad @@ -161697,7 +161718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20859 + - uid: 20782 components: - type: Transform rot: 3.141592653589793 rad @@ -161705,7 +161726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20860 + - uid: 20783 components: - type: Transform rot: 3.141592653589793 rad @@ -161713,14 +161734,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20861 + - uid: 20784 components: - type: Transform pos: 72.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20862 + - uid: 20785 components: - type: Transform rot: 3.141592653589793 rad @@ -161728,14 +161749,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20863 + - uid: 20786 components: - type: Transform pos: 72.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20864 + - uid: 20787 components: - type: Transform rot: 3.141592653589793 rad @@ -161743,21 +161764,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20865 + - uid: 20788 components: - type: Transform pos: 72.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20866 + - uid: 20789 components: - type: Transform pos: 72.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20867 + - uid: 20790 components: - type: Transform rot: 3.141592653589793 rad @@ -161765,7 +161786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20868 + - uid: 20791 components: - type: Transform rot: 3.141592653589793 rad @@ -161773,7 +161794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20869 + - uid: 20792 components: - type: Transform rot: 3.141592653589793 rad @@ -161781,7 +161802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20870 + - uid: 20793 components: - type: Transform rot: 3.141592653589793 rad @@ -161789,7 +161810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20871 + - uid: 20794 components: - type: Transform rot: 3.141592653589793 rad @@ -161797,7 +161818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20872 + - uid: 20795 components: - type: Transform rot: 3.141592653589793 rad @@ -161805,7 +161826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20873 + - uid: 20796 components: - type: Transform rot: 3.141592653589793 rad @@ -161813,7 +161834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20874 + - uid: 20797 components: - type: Transform rot: 1.5707963267948966 rad @@ -161821,7 +161842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20875 + - uid: 20798 components: - type: Transform rot: 1.5707963267948966 rad @@ -161829,21 +161850,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20876 + - uid: 20799 components: - type: Transform pos: 83.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20877 + - uid: 20800 components: - type: Transform pos: 83.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20878 + - uid: 20801 components: - type: Transform rot: -1.5707963267948966 rad @@ -161851,7 +161872,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20879 + - uid: 20802 components: - type: Transform rot: -1.5707963267948966 rad @@ -161859,7 +161880,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20880 + - uid: 20803 components: - type: Transform rot: -1.5707963267948966 rad @@ -161867,7 +161888,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20881 + - uid: 20804 components: - type: Transform rot: -1.5707963267948966 rad @@ -161875,7 +161896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20882 + - uid: 20805 components: - type: Transform rot: -1.5707963267948966 rad @@ -161883,7 +161904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20883 + - uid: 20806 components: - type: Transform rot: -1.5707963267948966 rad @@ -161891,7 +161912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20884 + - uid: 20807 components: - type: Transform rot: -1.5707963267948966 rad @@ -161899,7 +161920,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20885 + - uid: 20808 components: - type: Transform rot: -1.5707963267948966 rad @@ -161907,7 +161928,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20886 + - uid: 20809 components: - type: Transform rot: 3.141592653589793 rad @@ -161915,7 +161936,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20887 + - uid: 20810 components: - type: Transform rot: 3.141592653589793 rad @@ -161923,7 +161944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20888 + - uid: 20811 components: - type: Transform rot: 3.141592653589793 rad @@ -161931,7 +161952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20889 + - uid: 20812 components: - type: Transform rot: 3.141592653589793 rad @@ -161939,7 +161960,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20890 + - uid: 20813 components: - type: Transform rot: 3.141592653589793 rad @@ -161947,7 +161968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20891 + - uid: 20814 components: - type: Transform rot: 3.141592653589793 rad @@ -161955,7 +161976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20892 + - uid: 20815 components: - type: Transform rot: 3.141592653589793 rad @@ -161963,7 +161984,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20893 + - uid: 20816 components: - type: Transform rot: 1.5707963267948966 rad @@ -161971,7 +161992,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20894 + - uid: 20817 components: - type: Transform rot: 1.5707963267948966 rad @@ -161979,7 +162000,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20895 + - uid: 20818 components: - type: Transform rot: 1.5707963267948966 rad @@ -161987,56 +162008,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20896 + - uid: 20819 components: - type: Transform pos: 51.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20897 + - uid: 20820 components: - type: Transform pos: 51.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20898 + - uid: 20821 components: - type: Transform pos: 51.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20899 + - uid: 20822 components: - type: Transform pos: 51.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20900 + - uid: 20823 components: - type: Transform pos: 47.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20901 + - uid: 20824 components: - type: Transform pos: 47.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20902 + - uid: 20825 components: - type: Transform pos: 47.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20903 + - uid: 20826 components: - type: Transform rot: 3.141592653589793 rad @@ -162044,7 +162065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20904 + - uid: 20827 components: - type: Transform rot: 3.141592653589793 rad @@ -162052,7 +162073,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20905 + - uid: 20828 components: - type: Transform rot: 1.5707963267948966 rad @@ -162060,7 +162081,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20906 + - uid: 20829 components: - type: Transform rot: 1.5707963267948966 rad @@ -162068,42 +162089,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20907 + - uid: 20830 components: - type: Transform pos: 52.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20908 + - uid: 20831 components: - type: Transform pos: 52.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20909 + - uid: 20832 components: - type: Transform pos: 52.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20910 + - uid: 20833 components: - type: Transform pos: 52.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20911 + - uid: 20834 components: - type: Transform pos: 52.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20912 + - uid: 20835 components: - type: Transform rot: -1.5707963267948966 rad @@ -162111,7 +162132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20913 + - uid: 20836 components: - type: Transform rot: -1.5707963267948966 rad @@ -162119,7 +162140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20914 + - uid: 20837 components: - type: Transform rot: -1.5707963267948966 rad @@ -162127,7 +162148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20915 + - uid: 20838 components: - type: Transform rot: -1.5707963267948966 rad @@ -162135,7 +162156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20916 + - uid: 20839 components: - type: Transform rot: -1.5707963267948966 rad @@ -162143,7 +162164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20917 + - uid: 20840 components: - type: Transform rot: -1.5707963267948966 rad @@ -162151,7 +162172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20918 + - uid: 20841 components: - type: Transform rot: -1.5707963267948966 rad @@ -162159,7 +162180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20919 + - uid: 20842 components: - type: Transform rot: -1.5707963267948966 rad @@ -162167,7 +162188,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20920 + - uid: 20843 components: - type: Transform rot: -1.5707963267948966 rad @@ -162175,7 +162196,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20921 + - uid: 20844 components: - type: Transform rot: -1.5707963267948966 rad @@ -162183,7 +162204,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20922 + - uid: 20845 components: - type: Transform rot: -1.5707963267948966 rad @@ -162191,7 +162212,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20923 + - uid: 20846 components: - type: Transform rot: 3.141592653589793 rad @@ -162199,7 +162220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20924 + - uid: 20847 components: - type: Transform rot: 1.5707963267948966 rad @@ -162207,7 +162228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20925 + - uid: 20848 components: - type: Transform rot: 1.5707963267948966 rad @@ -162215,7 +162236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20926 + - uid: 20849 components: - type: Transform rot: 1.5707963267948966 rad @@ -162223,7 +162244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20927 + - uid: 20850 components: - type: Transform rot: 1.5707963267948966 rad @@ -162231,7 +162252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20928 + - uid: 20851 components: - type: Transform rot: 1.5707963267948966 rad @@ -162239,7 +162260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20929 + - uid: 20852 components: - type: Transform rot: 3.141592653589793 rad @@ -162247,7 +162268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20930 + - uid: 20853 components: - type: Transform rot: 3.141592653589793 rad @@ -162255,7 +162276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20931 + - uid: 20854 components: - type: Transform rot: 1.5707963267948966 rad @@ -162263,7 +162284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20932 + - uid: 20855 components: - type: Transform rot: 1.5707963267948966 rad @@ -162271,7 +162292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20933 + - uid: 20856 components: - type: Transform rot: 1.5707963267948966 rad @@ -162279,7 +162300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20934 + - uid: 20857 components: - type: Transform rot: 1.5707963267948966 rad @@ -162287,7 +162308,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20935 + - uid: 20858 components: - type: Transform rot: 1.5707963267948966 rad @@ -162295,7 +162316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20936 + - uid: 20859 components: - type: Transform rot: 1.5707963267948966 rad @@ -162303,14 +162324,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20937 + - uid: 20860 components: - type: Transform pos: 2.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20938 + - uid: 20861 components: - type: Transform rot: 1.5707963267948966 rad @@ -162318,7 +162339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20939 + - uid: 20862 components: - type: Transform rot: 1.5707963267948966 rad @@ -162326,7 +162347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20940 + - uid: 20863 components: - type: Transform rot: 1.5707963267948966 rad @@ -162334,7 +162355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20941 + - uid: 20864 components: - type: Transform rot: 1.5707963267948966 rad @@ -162342,7 +162363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20942 + - uid: 20865 components: - type: Transform rot: -1.5707963267948966 rad @@ -162350,7 +162371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20943 + - uid: 20866 components: - type: Transform rot: -1.5707963267948966 rad @@ -162358,7 +162379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20944 + - uid: 20867 components: - type: Transform rot: -1.5707963267948966 rad @@ -162366,7 +162387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20945 + - uid: 20868 components: - type: Transform rot: -1.5707963267948966 rad @@ -162374,7 +162395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20946 + - uid: 20869 components: - type: Transform rot: -1.5707963267948966 rad @@ -162382,7 +162403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20947 + - uid: 20870 components: - type: Transform rot: -1.5707963267948966 rad @@ -162390,21 +162411,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20948 + - uid: 20871 components: - type: Transform pos: 25.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20949 + - uid: 20872 components: - type: Transform pos: 25.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20950 + - uid: 20873 components: - type: Transform rot: -1.5707963267948966 rad @@ -162412,7 +162433,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20951 + - uid: 20874 components: - type: Transform rot: -1.5707963267948966 rad @@ -162420,7 +162441,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20952 + - uid: 20875 components: - type: Transform rot: -1.5707963267948966 rad @@ -162428,7 +162449,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20953 + - uid: 20876 components: - type: Transform rot: -1.5707963267948966 rad @@ -162436,7 +162457,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20954 + - uid: 20877 components: - type: Transform rot: -1.5707963267948966 rad @@ -162444,7 +162465,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20955 + - uid: 20878 components: - type: Transform rot: -1.5707963267948966 rad @@ -162452,7 +162473,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20956 + - uid: 20879 components: - type: Transform rot: -1.5707963267948966 rad @@ -162460,7 +162481,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20957 + - uid: 20880 components: - type: Transform rot: -1.5707963267948966 rad @@ -162468,7 +162489,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20958 + - uid: 20881 components: - type: Transform rot: -1.5707963267948966 rad @@ -162476,7 +162497,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20959 + - uid: 20882 components: - type: Transform rot: -1.5707963267948966 rad @@ -162484,7 +162505,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20960 + - uid: 20883 components: - type: Transform rot: -1.5707963267948966 rad @@ -162492,7 +162513,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20961 + - uid: 20884 components: - type: Transform rot: -1.5707963267948966 rad @@ -162500,7 +162521,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20962 + - uid: 20885 components: - type: Transform rot: -1.5707963267948966 rad @@ -162508,7 +162529,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20963 + - uid: 20886 components: - type: Transform rot: -1.5707963267948966 rad @@ -162516,7 +162537,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20964 + - uid: 20887 components: - type: Transform rot: -1.5707963267948966 rad @@ -162524,7 +162545,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20965 + - uid: 20888 components: - type: Transform rot: -1.5707963267948966 rad @@ -162532,7 +162553,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20966 + - uid: 20889 components: - type: Transform rot: -1.5707963267948966 rad @@ -162540,7 +162561,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20967 + - uid: 20890 components: - type: Transform rot: -1.5707963267948966 rad @@ -162548,7 +162569,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20968 + - uid: 20891 components: - type: Transform rot: -1.5707963267948966 rad @@ -162556,7 +162577,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20969 + - uid: 20892 components: - type: Transform rot: -1.5707963267948966 rad @@ -162564,7 +162585,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20970 + - uid: 20893 components: - type: Transform rot: -1.5707963267948966 rad @@ -162572,7 +162593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20971 + - uid: 20894 components: - type: Transform rot: -1.5707963267948966 rad @@ -162580,7 +162601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20972 + - uid: 20895 components: - type: Transform rot: -1.5707963267948966 rad @@ -162588,7 +162609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20973 + - uid: 20896 components: - type: Transform rot: -1.5707963267948966 rad @@ -162596,7 +162617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20974 + - uid: 20897 components: - type: Transform rot: -1.5707963267948966 rad @@ -162604,7 +162625,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20975 + - uid: 20898 components: - type: Transform rot: -1.5707963267948966 rad @@ -162612,7 +162633,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20976 + - uid: 20899 components: - type: Transform rot: -1.5707963267948966 rad @@ -162620,7 +162641,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20977 + - uid: 20900 components: - type: Transform rot: -1.5707963267948966 rad @@ -162628,7 +162649,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20978 + - uid: 20901 components: - type: Transform rot: -1.5707963267948966 rad @@ -162636,7 +162657,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20979 + - uid: 20902 components: - type: Transform rot: -1.5707963267948966 rad @@ -162644,112 +162665,112 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20980 + - uid: 20903 components: - type: Transform pos: 34.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20981 + - uid: 20904 components: - type: Transform pos: 41.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20982 + - uid: 20905 components: - type: Transform pos: 41.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20983 + - uid: 20906 components: - type: Transform pos: 39.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20984 + - uid: 20907 components: - type: Transform pos: 41.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20985 + - uid: 20908 components: - type: Transform pos: 41.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20986 + - uid: 20909 components: - type: Transform pos: 39.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20987 + - uid: 20910 components: - type: Transform pos: 39.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20988 + - uid: 20911 components: - type: Transform pos: 41.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20989 + - uid: 20912 components: - type: Transform pos: 41.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20990 + - uid: 20913 components: - type: Transform pos: 39.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20991 + - uid: 20914 components: - type: Transform pos: 41.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20992 + - uid: 20915 components: - type: Transform pos: 39.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20993 + - uid: 20916 components: - type: Transform pos: 39.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20994 + - uid: 20917 components: - type: Transform pos: 41.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20995 + - uid: 20918 components: - type: Transform rot: 3.141592653589793 rad @@ -162757,7 +162778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20996 + - uid: 20919 components: - type: Transform rot: 3.141592653589793 rad @@ -162765,7 +162786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20997 + - uid: 20920 components: - type: Transform rot: 1.5707963267948966 rad @@ -162773,7 +162794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20998 + - uid: 20921 components: - type: Transform rot: 1.5707963267948966 rad @@ -162781,7 +162802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20999 + - uid: 20922 components: - type: Transform rot: 1.5707963267948966 rad @@ -162789,7 +162810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21000 + - uid: 20923 components: - type: Transform rot: 1.5707963267948966 rad @@ -162797,7 +162818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21001 + - uid: 20924 components: - type: Transform rot: 1.5707963267948966 rad @@ -162805,7 +162826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21002 + - uid: 20925 components: - type: Transform rot: 1.5707963267948966 rad @@ -162813,7 +162834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21003 + - uid: 20926 components: - type: Transform rot: -1.5707963267948966 rad @@ -162821,7 +162842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21004 + - uid: 20927 components: - type: Transform rot: -1.5707963267948966 rad @@ -162829,7 +162850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21005 + - uid: 20928 components: - type: Transform rot: -1.5707963267948966 rad @@ -162837,7 +162858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21006 + - uid: 20929 components: - type: Transform rot: -1.5707963267948966 rad @@ -162845,7 +162866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21007 + - uid: 20930 components: - type: Transform rot: -1.5707963267948966 rad @@ -162853,7 +162874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21008 + - uid: 20931 components: - type: Transform rot: 3.141592653589793 rad @@ -162861,7 +162882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21009 + - uid: 20932 components: - type: Transform rot: 3.141592653589793 rad @@ -162869,7 +162890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21010 + - uid: 20933 components: - type: Transform rot: 3.141592653589793 rad @@ -162877,7 +162898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21011 + - uid: 20934 components: - type: Transform rot: 3.141592653589793 rad @@ -162885,7 +162906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21012 + - uid: 20935 components: - type: Transform rot: 3.141592653589793 rad @@ -162893,7 +162914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21013 + - uid: 20936 components: - type: Transform rot: 3.141592653589793 rad @@ -162901,7 +162922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21014 + - uid: 20937 components: - type: Transform rot: 3.141592653589793 rad @@ -162909,7 +162930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21015 + - uid: 20938 components: - type: Transform rot: 3.141592653589793 rad @@ -162917,7 +162938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21016 + - uid: 20939 components: - type: Transform rot: 3.141592653589793 rad @@ -162925,7 +162946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21017 + - uid: 20940 components: - type: Transform rot: 3.141592653589793 rad @@ -162933,7 +162954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21018 + - uid: 20941 components: - type: Transform rot: 1.5707963267948966 rad @@ -162941,7 +162962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21019 + - uid: 20942 components: - type: Transform rot: 1.5707963267948966 rad @@ -162949,7 +162970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21020 + - uid: 20943 components: - type: Transform rot: 3.141592653589793 rad @@ -162957,7 +162978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21021 + - uid: 20944 components: - type: Transform rot: 3.141592653589793 rad @@ -162965,7 +162986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21022 + - uid: 20945 components: - type: Transform rot: 3.141592653589793 rad @@ -162973,7 +162994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21023 + - uid: 20946 components: - type: Transform rot: 3.141592653589793 rad @@ -162981,7 +163002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21024 + - uid: 20947 components: - type: Transform rot: 3.141592653589793 rad @@ -162989,7 +163010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21025 + - uid: 20948 components: - type: Transform rot: 3.141592653589793 rad @@ -162997,7 +163018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21026 + - uid: 20949 components: - type: Transform rot: 1.5707963267948966 rad @@ -163005,7 +163026,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21027 + - uid: 20950 components: - type: Transform rot: 1.5707963267948966 rad @@ -163013,7 +163034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21028 + - uid: 20951 components: - type: Transform rot: 1.5707963267948966 rad @@ -163021,7 +163042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21029 + - uid: 20952 components: - type: Transform rot: 1.5707963267948966 rad @@ -163029,7 +163050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21030 + - uid: 20953 components: - type: Transform rot: 1.5707963267948966 rad @@ -163037,7 +163058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21031 + - uid: 20954 components: - type: Transform rot: 1.5707963267948966 rad @@ -163045,7 +163066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21032 + - uid: 20955 components: - type: Transform rot: 1.5707963267948966 rad @@ -163053,7 +163074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21033 + - uid: 20956 components: - type: Transform rot: 1.5707963267948966 rad @@ -163061,7 +163082,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21034 + - uid: 20957 components: - type: Transform rot: 1.5707963267948966 rad @@ -163069,7 +163090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21035 + - uid: 20958 components: - type: Transform rot: 1.5707963267948966 rad @@ -163077,7 +163098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21036 + - uid: 20959 components: - type: Transform rot: 1.5707963267948966 rad @@ -163085,7 +163106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21037 + - uid: 20960 components: - type: Transform rot: 1.5707963267948966 rad @@ -163093,7 +163114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21038 + - uid: 20961 components: - type: Transform rot: 3.141592653589793 rad @@ -163101,7 +163122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21039 + - uid: 20962 components: - type: Transform rot: 3.141592653589793 rad @@ -163109,7 +163130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21040 + - uid: 20963 components: - type: Transform rot: 3.141592653589793 rad @@ -163117,7 +163138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21041 + - uid: 20964 components: - type: Transform rot: 1.5707963267948966 rad @@ -163125,7 +163146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21042 + - uid: 20965 components: - type: Transform rot: -1.5707963267948966 rad @@ -163133,7 +163154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21043 + - uid: 20966 components: - type: Transform rot: -1.5707963267948966 rad @@ -163141,7 +163162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21044 + - uid: 20967 components: - type: Transform rot: -1.5707963267948966 rad @@ -163149,7 +163170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21045 + - uid: 20968 components: - type: Transform rot: -1.5707963267948966 rad @@ -163157,7 +163178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21046 + - uid: 20969 components: - type: Transform rot: -1.5707963267948966 rad @@ -163165,364 +163186,364 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21047 + - uid: 20970 components: - type: Transform pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21048 + - uid: 20971 components: - type: Transform pos: 0.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21049 + - uid: 20972 components: - type: Transform pos: -1.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21050 + - uid: 20973 components: - type: Transform pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21051 + - uid: 20974 components: - type: Transform pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21052 + - uid: 20975 components: - type: Transform pos: -1.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21053 + - uid: 20976 components: - type: Transform pos: 0.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21054 + - uid: 20977 components: - type: Transform pos: -1.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21055 + - uid: 20978 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21056 + - uid: 20979 components: - type: Transform pos: -1.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21057 + - uid: 20980 components: - type: Transform pos: 0.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21058 + - uid: 20981 components: - type: Transform pos: -1.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21059 + - uid: 20982 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21060 + - uid: 20983 components: - type: Transform pos: -1.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21061 + - uid: 20984 components: - type: Transform pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21062 + - uid: 20985 components: - type: Transform pos: -1.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21063 + - uid: 20986 components: - type: Transform pos: -1.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21064 + - uid: 20987 components: - type: Transform pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21065 + - uid: 20988 components: - type: Transform pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21066 + - uid: 20989 components: - type: Transform pos: -1.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21067 + - uid: 20990 components: - type: Transform pos: -1.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21068 + - uid: 20991 components: - type: Transform pos: 0.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21069 + - uid: 20992 components: - type: Transform pos: 0.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21070 + - uid: 20993 components: - type: Transform pos: -1.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21071 + - uid: 20994 components: - type: Transform pos: 0.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21072 + - uid: 20995 components: - type: Transform pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21073 + - uid: 20996 components: - type: Transform pos: -1.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21074 + - uid: 20997 components: - type: Transform pos: -1.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21075 + - uid: 20998 components: - type: Transform pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21076 + - uid: 20999 components: - type: Transform pos: -1.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21077 + - uid: 21000 components: - type: Transform pos: 0.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21078 + - uid: 21001 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21079 + - uid: 21002 components: - type: Transform pos: -1.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21080 + - uid: 21003 components: - type: Transform pos: -1.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21081 + - uid: 21004 components: - type: Transform pos: 0.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21082 + - uid: 21005 components: - type: Transform pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21083 + - uid: 21006 components: - type: Transform pos: -1.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21084 + - uid: 21007 components: - type: Transform pos: -1.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21085 + - uid: 21008 components: - type: Transform pos: 0.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21086 + - uid: 21009 components: - type: Transform pos: 0.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21087 + - uid: 21010 components: - type: Transform pos: -1.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21088 + - uid: 21011 components: - type: Transform pos: -1.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21089 + - uid: 21012 components: - type: Transform pos: 0.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21090 + - uid: 21013 components: - type: Transform pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21091 + - uid: 21014 components: - type: Transform pos: -1.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21092 + - uid: 21015 components: - type: Transform pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21093 + - uid: 21016 components: - type: Transform pos: -1.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21094 + - uid: 21017 components: - type: Transform pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21095 + - uid: 21018 components: - type: Transform pos: -1.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21096 + - uid: 21019 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21097 + - uid: 21020 components: - type: Transform pos: -1.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21098 + - uid: 21021 components: - type: Transform rot: 3.141592653589793 rad @@ -163530,7 +163551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21099 + - uid: 21022 components: - type: Transform rot: 3.141592653589793 rad @@ -163538,7 +163559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21100 + - uid: 21023 components: - type: Transform rot: 3.141592653589793 rad @@ -163546,7 +163567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21101 + - uid: 21024 components: - type: Transform rot: 3.141592653589793 rad @@ -163554,7 +163575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21102 + - uid: 21025 components: - type: Transform rot: 3.141592653589793 rad @@ -163562,7 +163583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21103 + - uid: 21026 components: - type: Transform rot: 3.141592653589793 rad @@ -163570,7 +163591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21104 + - uid: 21027 components: - type: Transform rot: 3.141592653589793 rad @@ -163578,7 +163599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21105 + - uid: 21028 components: - type: Transform rot: 3.141592653589793 rad @@ -163586,7 +163607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21106 + - uid: 21029 components: - type: Transform rot: 3.141592653589793 rad @@ -163594,7 +163615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21107 + - uid: 21030 components: - type: Transform rot: 3.141592653589793 rad @@ -163602,7 +163623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21108 + - uid: 21031 components: - type: Transform rot: 3.141592653589793 rad @@ -163610,7 +163631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21109 + - uid: 21032 components: - type: Transform rot: 3.141592653589793 rad @@ -163618,7 +163639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21110 + - uid: 21033 components: - type: Transform rot: 3.141592653589793 rad @@ -163626,7 +163647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21111 + - uid: 21034 components: - type: Transform rot: 3.141592653589793 rad @@ -163634,7 +163655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21112 + - uid: 21035 components: - type: Transform rot: 3.141592653589793 rad @@ -163642,7 +163663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21113 + - uid: 21036 components: - type: Transform rot: 3.141592653589793 rad @@ -163650,7 +163671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21114 + - uid: 21037 components: - type: Transform rot: 3.141592653589793 rad @@ -163658,7 +163679,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21115 + - uid: 21038 components: - type: Transform rot: 3.141592653589793 rad @@ -163666,7 +163687,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21116 + - uid: 21039 components: - type: Transform rot: 3.141592653589793 rad @@ -163674,7 +163695,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21117 + - uid: 21040 components: - type: Transform rot: 3.141592653589793 rad @@ -163682,7 +163703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21118 + - uid: 21041 components: - type: Transform rot: 3.141592653589793 rad @@ -163690,7 +163711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21119 + - uid: 21042 components: - type: Transform rot: 3.141592653589793 rad @@ -163698,7 +163719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21120 + - uid: 21043 components: - type: Transform rot: 3.141592653589793 rad @@ -163706,7 +163727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21121 + - uid: 21044 components: - type: Transform rot: 3.141592653589793 rad @@ -163714,91 +163735,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21122 + - uid: 21045 components: - type: Transform pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21123 + - uid: 21046 components: - type: Transform pos: -1.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21124 + - uid: 21047 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21125 + - uid: 21048 components: - type: Transform pos: 0.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21126 + - uid: 21049 components: - type: Transform pos: -1.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21127 + - uid: 21050 components: - type: Transform pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21128 + - uid: 21051 components: - type: Transform pos: 4.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21129 + - uid: 21052 components: - type: Transform pos: 5.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21130 + - uid: 21053 components: - type: Transform pos: 4.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21131 + - uid: 21054 components: - type: Transform pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21132 + - uid: 21055 components: - type: Transform pos: 4.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21133 + - uid: 21056 components: - type: Transform pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21134 + - uid: 21057 components: - type: Transform rot: 3.141592653589793 rad @@ -163806,7 +163827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21135 + - uid: 21058 components: - type: Transform rot: 1.5707963267948966 rad @@ -163814,7 +163835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21136 + - uid: 21059 components: - type: Transform rot: 1.5707963267948966 rad @@ -163822,7 +163843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21137 + - uid: 21060 components: - type: Transform rot: 1.5707963267948966 rad @@ -163830,7 +163851,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21138 + - uid: 21061 components: - type: Transform rot: 1.5707963267948966 rad @@ -163838,7 +163859,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21139 + - uid: 21062 components: - type: Transform rot: 1.5707963267948966 rad @@ -163846,7 +163867,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21140 + - uid: 21063 components: - type: Transform rot: 1.5707963267948966 rad @@ -163854,7 +163875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21141 + - uid: 21064 components: - type: Transform rot: 3.141592653589793 rad @@ -163862,7 +163883,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21142 + - uid: 21065 components: - type: Transform rot: 3.141592653589793 rad @@ -163870,7 +163891,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21143 + - uid: 21066 components: - type: Transform rot: 3.141592653589793 rad @@ -163878,7 +163899,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21144 + - uid: 21067 components: - type: Transform rot: 3.141592653589793 rad @@ -163886,7 +163907,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21145 + - uid: 21068 components: - type: Transform rot: 3.141592653589793 rad @@ -163894,7 +163915,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21146 + - uid: 21069 components: - type: Transform rot: 3.141592653589793 rad @@ -163902,7 +163923,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21147 + - uid: 21070 components: - type: Transform rot: 3.141592653589793 rad @@ -163910,7 +163931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21148 + - uid: 21071 components: - type: Transform rot: 3.141592653589793 rad @@ -163918,7 +163939,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21149 + - uid: 21072 components: - type: Transform rot: 3.141592653589793 rad @@ -163926,7 +163947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21150 + - uid: 21073 components: - type: Transform rot: 1.5707963267948966 rad @@ -163934,7 +163955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21151 + - uid: 21074 components: - type: Transform rot: 1.5707963267948966 rad @@ -163942,7 +163963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21152 + - uid: 21075 components: - type: Transform rot: 1.5707963267948966 rad @@ -163950,7 +163971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21153 + - uid: 21076 components: - type: Transform rot: 1.5707963267948966 rad @@ -163958,7 +163979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21154 + - uid: 21077 components: - type: Transform rot: 1.5707963267948966 rad @@ -163966,7 +163987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21155 + - uid: 21078 components: - type: Transform rot: 1.5707963267948966 rad @@ -163974,7 +163995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21156 + - uid: 21079 components: - type: Transform rot: 1.5707963267948966 rad @@ -163982,7 +164003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21157 + - uid: 21080 components: - type: Transform rot: -1.5707963267948966 rad @@ -163990,7 +164011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21158 + - uid: 21081 components: - type: Transform rot: -1.5707963267948966 rad @@ -163998,7 +164019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21159 + - uid: 21082 components: - type: Transform rot: 3.141592653589793 rad @@ -164006,7 +164027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21160 + - uid: 21083 components: - type: Transform rot: 3.141592653589793 rad @@ -164014,7 +164035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21161 + - uid: 21084 components: - type: Transform rot: 3.141592653589793 rad @@ -164022,7 +164043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21162 + - uid: 21085 components: - type: Transform rot: 3.141592653589793 rad @@ -164030,7 +164051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21163 + - uid: 21086 components: - type: Transform rot: 3.141592653589793 rad @@ -164038,7 +164059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21164 + - uid: 21087 components: - type: Transform rot: 3.141592653589793 rad @@ -164046,7 +164067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21165 + - uid: 21088 components: - type: Transform rot: -1.5707963267948966 rad @@ -164054,7 +164075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21166 + - uid: 21089 components: - type: Transform rot: -1.5707963267948966 rad @@ -164062,7 +164083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21167 + - uid: 21090 components: - type: Transform rot: -1.5707963267948966 rad @@ -164070,7 +164091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21168 + - uid: 21091 components: - type: Transform rot: 3.141592653589793 rad @@ -164078,7 +164099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21169 + - uid: 21092 components: - type: Transform rot: 3.141592653589793 rad @@ -164086,7 +164107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21170 + - uid: 21093 components: - type: Transform rot: 3.141592653589793 rad @@ -164094,7 +164115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21171 + - uid: 21094 components: - type: Transform rot: 1.5707963267948966 rad @@ -164102,7 +164123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21172 + - uid: 21095 components: - type: Transform rot: 3.141592653589793 rad @@ -164110,7 +164131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21173 + - uid: 21096 components: - type: Transform rot: 3.141592653589793 rad @@ -164118,7 +164139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21174 + - uid: 21097 components: - type: Transform rot: 3.141592653589793 rad @@ -164126,7 +164147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21175 + - uid: 21098 components: - type: Transform rot: 3.141592653589793 rad @@ -164134,7 +164155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21176 + - uid: 21099 components: - type: Transform rot: 3.141592653589793 rad @@ -164142,7 +164163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21177 + - uid: 21100 components: - type: Transform rot: 1.5707963267948966 rad @@ -164150,7 +164171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21178 + - uid: 21101 components: - type: Transform rot: 1.5707963267948966 rad @@ -164158,7 +164179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21179 + - uid: 21102 components: - type: Transform rot: 1.5707963267948966 rad @@ -164166,7 +164187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21180 + - uid: 21103 components: - type: Transform rot: 1.5707963267948966 rad @@ -164174,7 +164195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21181 + - uid: 21104 components: - type: Transform rot: 1.5707963267948966 rad @@ -164182,7 +164203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21182 + - uid: 21105 components: - type: Transform rot: 1.5707963267948966 rad @@ -164190,7 +164211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21183 + - uid: 21106 components: - type: Transform rot: 1.5707963267948966 rad @@ -164198,7 +164219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21184 + - uid: 21107 components: - type: Transform rot: 1.5707963267948966 rad @@ -164206,7 +164227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21185 + - uid: 21108 components: - type: Transform rot: 1.5707963267948966 rad @@ -164214,7 +164235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21186 + - uid: 21109 components: - type: Transform rot: -1.5707963267948966 rad @@ -164222,7 +164243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21187 + - uid: 21110 components: - type: Transform rot: 3.141592653589793 rad @@ -164230,7 +164251,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21188 + - uid: 21111 components: - type: Transform rot: 3.141592653589793 rad @@ -164238,7 +164259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21189 + - uid: 21112 components: - type: Transform rot: 3.141592653589793 rad @@ -164246,7 +164267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21190 + - uid: 21113 components: - type: Transform rot: 3.141592653589793 rad @@ -164254,7 +164275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21191 + - uid: 21114 components: - type: Transform rot: -1.5707963267948966 rad @@ -164262,7 +164283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21192 + - uid: 21115 components: - type: Transform rot: -1.5707963267948966 rad @@ -164270,7 +164291,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21193 + - uid: 21116 components: - type: Transform rot: -1.5707963267948966 rad @@ -164278,7 +164299,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21194 + - uid: 21117 components: - type: Transform rot: -1.5707963267948966 rad @@ -164286,7 +164307,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21195 + - uid: 21118 components: - type: Transform rot: -1.5707963267948966 rad @@ -164294,7 +164315,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21196 + - uid: 21119 components: - type: Transform rot: -1.5707963267948966 rad @@ -164302,7 +164323,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21197 + - uid: 21120 components: - type: Transform rot: -1.5707963267948966 rad @@ -164310,7 +164331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21198 + - uid: 21121 components: - type: Transform rot: -1.5707963267948966 rad @@ -164318,7 +164339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21199 + - uid: 21122 components: - type: Transform rot: -1.5707963267948966 rad @@ -164326,7 +164347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21200 + - uid: 21123 components: - type: Transform rot: -1.5707963267948966 rad @@ -164334,7 +164355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21201 + - uid: 21124 components: - type: Transform rot: -1.5707963267948966 rad @@ -164342,7 +164363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21202 + - uid: 21125 components: - type: Transform rot: -1.5707963267948966 rad @@ -164350,7 +164371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21203 + - uid: 21126 components: - type: Transform rot: -1.5707963267948966 rad @@ -164358,7 +164379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21204 + - uid: 21127 components: - type: Transform rot: -1.5707963267948966 rad @@ -164366,7 +164387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21205 + - uid: 21128 components: - type: Transform rot: 3.141592653589793 rad @@ -164374,7 +164395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21206 + - uid: 21129 components: - type: Transform rot: 1.5707963267948966 rad @@ -164382,7 +164403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21207 + - uid: 21130 components: - type: Transform rot: 1.5707963267948966 rad @@ -164390,49 +164411,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21208 + - uid: 21131 components: - type: Transform pos: 16.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21209 + - uid: 21132 components: - type: Transform pos: 16.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21210 + - uid: 21133 components: - type: Transform pos: 18.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21211 + - uid: 21134 components: - type: Transform pos: 18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21212 + - uid: 21135 components: - type: Transform pos: 16.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21213 + - uid: 21136 components: - type: Transform pos: 16.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21214 + - uid: 21137 components: - type: Transform rot: 1.5707963267948966 rad @@ -164440,21 +164461,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21215 + - uid: 21138 components: - type: Transform pos: 18.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21216 + - uid: 21139 components: - type: Transform pos: 16.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21217 + - uid: 21140 components: - type: Transform rot: -1.5707963267948966 rad @@ -164462,7 +164483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21218 + - uid: 21141 components: - type: Transform rot: -1.5707963267948966 rad @@ -164470,21 +164491,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21219 + - uid: 21142 components: - type: Transform pos: 17.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21220 + - uid: 21143 components: - type: Transform pos: 17.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21221 + - uid: 21144 components: - type: Transform rot: -1.5707963267948966 rad @@ -164492,7 +164513,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21222 + - uid: 21145 components: - type: Transform rot: -1.5707963267948966 rad @@ -164500,49 +164521,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21223 + - uid: 21146 components: - type: Transform pos: 21.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21224 + - uid: 21147 components: - type: Transform pos: 21.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21225 + - uid: 21148 components: - type: Transform pos: 21.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21226 + - uid: 21149 components: - type: Transform pos: 22.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21227 + - uid: 21150 components: - type: Transform pos: 22.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21228 + - uid: 21151 components: - type: Transform pos: 22.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21229 + - uid: 21152 components: - type: Transform rot: -1.5707963267948966 rad @@ -164550,7 +164571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21230 + - uid: 21153 components: - type: Transform rot: -1.5707963267948966 rad @@ -164558,7 +164579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21231 + - uid: 21154 components: - type: Transform rot: -1.5707963267948966 rad @@ -164566,7 +164587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21232 + - uid: 21155 components: - type: Transform rot: -1.5707963267948966 rad @@ -164574,7 +164595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21233 + - uid: 21156 components: - type: Transform rot: -1.5707963267948966 rad @@ -164582,7 +164603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21234 + - uid: 21157 components: - type: Transform rot: -1.5707963267948966 rad @@ -164590,7 +164611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21235 + - uid: 21158 components: - type: Transform rot: -1.5707963267948966 rad @@ -164598,7 +164619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21236 + - uid: 21159 components: - type: Transform rot: 1.5707963267948966 rad @@ -164606,14 +164627,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21237 + - uid: 21160 components: - type: Transform pos: 11.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21238 + - uid: 21161 components: - type: Transform rot: 1.5707963267948966 rad @@ -164621,77 +164642,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21239 + - uid: 21162 components: - type: Transform pos: 9.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21240 + - uid: 21163 components: - type: Transform pos: 10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21241 + - uid: 21164 components: - type: Transform pos: 9.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21242 + - uid: 21165 components: - type: Transform pos: 9.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21243 + - uid: 21166 components: - type: Transform pos: 10.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21244 + - uid: 21167 components: - type: Transform pos: 10.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21245 + - uid: 21168 components: - type: Transform pos: 9.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21246 + - uid: 21169 components: - type: Transform pos: 9.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21247 + - uid: 21170 components: - type: Transform pos: 9.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21248 + - uid: 21171 components: - type: Transform pos: 10.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21249 + - uid: 21172 components: - type: Transform rot: 3.141592653589793 rad @@ -164699,7 +164720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21250 + - uid: 21173 components: - type: Transform rot: 1.5707963267948966 rad @@ -164707,7 +164728,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21251 + - uid: 21174 components: - type: Transform rot: 1.5707963267948966 rad @@ -164715,7 +164736,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21252 + - uid: 21175 components: - type: Transform rot: 1.5707963267948966 rad @@ -164723,7 +164744,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21253 + - uid: 21176 components: - type: Transform rot: 1.5707963267948966 rad @@ -164731,7 +164752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21254 + - uid: 21177 components: - type: Transform rot: 1.5707963267948966 rad @@ -164739,7 +164760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21255 + - uid: 21178 components: - type: Transform rot: 1.5707963267948966 rad @@ -164747,7 +164768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21256 + - uid: 21179 components: - type: Transform rot: 1.5707963267948966 rad @@ -164755,56 +164776,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21257 + - uid: 21180 components: - type: Transform pos: 4.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21258 + - uid: 21181 components: - type: Transform pos: 5.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21259 + - uid: 21182 components: - type: Transform pos: 4.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21260 + - uid: 21183 components: - type: Transform pos: 5.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21261 + - uid: 21184 components: - type: Transform pos: 4.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21262 + - uid: 21185 components: - type: Transform pos: 4.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21263 + - uid: 21186 components: - type: Transform pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21264 + - uid: 21187 components: - type: Transform rot: 1.5707963267948966 rad @@ -164812,7 +164833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21265 + - uid: 21188 components: - type: Transform rot: 1.5707963267948966 rad @@ -164820,7 +164841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21266 + - uid: 21189 components: - type: Transform rot: 1.5707963267948966 rad @@ -164828,7 +164849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21267 + - uid: 21190 components: - type: Transform rot: 1.5707963267948966 rad @@ -164836,7 +164857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21268 + - uid: 21191 components: - type: Transform rot: 1.5707963267948966 rad @@ -164844,7 +164865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21269 + - uid: 21192 components: - type: Transform rot: 1.5707963267948966 rad @@ -164852,7 +164873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21270 + - uid: 21193 components: - type: Transform rot: 1.5707963267948966 rad @@ -164860,7 +164881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21271 + - uid: 21194 components: - type: Transform rot: 1.5707963267948966 rad @@ -164868,7 +164889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21272 + - uid: 21195 components: - type: Transform rot: 1.5707963267948966 rad @@ -164876,21 +164897,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21273 + - uid: 21196 components: - type: Transform pos: 36.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21274 + - uid: 21197 components: - type: Transform pos: 36.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21275 + - uid: 21198 components: - type: Transform rot: 1.5707963267948966 rad @@ -164898,14 +164919,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21276 + - uid: 21199 components: - type: Transform pos: 36.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21277 + - uid: 21200 components: - type: Transform rot: 1.5707963267948966 rad @@ -164913,14 +164934,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21278 + - uid: 21201 components: - type: Transform pos: 26.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21279 + - uid: 21202 components: - type: Transform rot: 1.5707963267948966 rad @@ -164928,14 +164949,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21280 + - uid: 21203 components: - type: Transform pos: 28.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21281 + - uid: 21204 components: - type: Transform rot: 1.5707963267948966 rad @@ -164943,7 +164964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21282 + - uid: 21205 components: - type: Transform rot: 1.5707963267948966 rad @@ -164951,7 +164972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21283 + - uid: 21206 components: - type: Transform rot: 1.5707963267948966 rad @@ -164959,14 +164980,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21284 + - uid: 21207 components: - type: Transform pos: 26.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21285 + - uid: 21208 components: - type: Transform rot: 3.141592653589793 rad @@ -164974,7 +164995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21286 + - uid: 21209 components: - type: Transform rot: 3.141592653589793 rad @@ -164982,7 +165003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21287 + - uid: 21210 components: - type: Transform rot: 3.141592653589793 rad @@ -164990,7 +165011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21288 + - uid: 21211 components: - type: Transform rot: 3.141592653589793 rad @@ -164998,14 +165019,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21289 + - uid: 21212 components: - type: Transform pos: 36.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21290 + - uid: 21213 components: - type: Transform rot: 1.5707963267948966 rad @@ -165013,7 +165034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21291 + - uid: 21214 components: - type: Transform rot: 1.5707963267948966 rad @@ -165021,7 +165042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21292 + - uid: 21215 components: - type: Transform rot: 1.5707963267948966 rad @@ -165029,7 +165050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21293 + - uid: 21216 components: - type: Transform rot: 1.5707963267948966 rad @@ -165037,7 +165058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21294 + - uid: 21217 components: - type: Transform rot: 1.5707963267948966 rad @@ -165045,7 +165066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21295 + - uid: 21218 components: - type: Transform rot: -1.5707963267948966 rad @@ -165053,7 +165074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21296 + - uid: 21219 components: - type: Transform rot: -1.5707963267948966 rad @@ -165061,7 +165082,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21297 + - uid: 21220 components: - type: Transform rot: -1.5707963267948966 rad @@ -165069,7 +165090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21298 + - uid: 21221 components: - type: Transform rot: -1.5707963267948966 rad @@ -165077,7 +165098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21299 + - uid: 21222 components: - type: Transform rot: 3.141592653589793 rad @@ -165085,7 +165106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21300 + - uid: 21223 components: - type: Transform rot: 3.141592653589793 rad @@ -165093,7 +165114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21301 + - uid: 21224 components: - type: Transform rot: 3.141592653589793 rad @@ -165101,21 +165122,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21302 + - uid: 21225 components: - type: Transform pos: 28.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21303 + - uid: 21226 components: - type: Transform pos: 28.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21304 + - uid: 21227 components: - type: Transform rot: -1.5707963267948966 rad @@ -165123,7 +165144,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21305 + - uid: 21228 components: - type: Transform rot: -1.5707963267948966 rad @@ -165131,7 +165152,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21306 + - uid: 21229 components: - type: Transform rot: -1.5707963267948966 rad @@ -165139,7 +165160,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21307 + - uid: 21230 components: - type: Transform rot: -1.5707963267948966 rad @@ -165147,7 +165168,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21308 + - uid: 21231 components: - type: Transform rot: 3.141592653589793 rad @@ -165155,7 +165176,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21309 + - uid: 21232 components: - type: Transform rot: 3.141592653589793 rad @@ -165163,7 +165184,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21310 + - uid: 21233 components: - type: Transform rot: 1.5707963267948966 rad @@ -165171,7 +165192,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21311 + - uid: 21234 components: - type: Transform rot: 1.5707963267948966 rad @@ -165179,7 +165200,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21312 + - uid: 21235 components: - type: Transform rot: 1.5707963267948966 rad @@ -165187,7 +165208,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21313 + - uid: 21236 components: - type: Transform rot: 3.141592653589793 rad @@ -165195,7 +165216,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21314 + - uid: 21237 components: - type: Transform rot: 3.141592653589793 rad @@ -165203,7 +165224,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21315 + - uid: 21238 components: - type: Transform rot: 1.5707963267948966 rad @@ -165211,7 +165232,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21316 + - uid: 21239 components: - type: Transform rot: 1.5707963267948966 rad @@ -165219,77 +165240,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21317 + - uid: 21240 components: - type: Transform pos: 28.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21318 + - uid: 21241 components: - type: Transform pos: 26.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21319 + - uid: 21242 components: - type: Transform pos: 26.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21320 + - uid: 21243 components: - type: Transform pos: 28.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21321 + - uid: 21244 components: - type: Transform pos: 28.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21322 + - uid: 21245 components: - type: Transform pos: 26.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21323 + - uid: 21246 components: - type: Transform pos: 26.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21324 + - uid: 21247 components: - type: Transform pos: 26.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21325 + - uid: 21248 components: - type: Transform pos: 26.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21326 + - uid: 21249 components: - type: Transform pos: 26.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21327 + - uid: 21250 components: - type: Transform rot: 3.141592653589793 rad @@ -165297,7 +165318,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21328 + - uid: 21251 components: - type: Transform rot: 3.141592653589793 rad @@ -165305,7 +165326,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21329 + - uid: 21252 components: - type: Transform rot: 1.5707963267948966 rad @@ -165313,7 +165334,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21330 + - uid: 21253 components: - type: Transform rot: 1.5707963267948966 rad @@ -165321,70 +165342,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21331 + - uid: 21254 components: - type: Transform pos: -5.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21332 + - uid: 21255 components: - type: Transform pos: -5.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21333 + - uid: 21256 components: - type: Transform pos: -6.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21334 + - uid: 21257 components: - type: Transform pos: -5.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21335 + - uid: 21258 components: - type: Transform pos: -5.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21336 + - uid: 21259 components: - type: Transform pos: -6.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21337 + - uid: 21260 components: - type: Transform pos: -6.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21338 + - uid: 21261 components: - type: Transform pos: -5.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21339 + - uid: 21262 components: - type: Transform pos: -5.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21340 + - uid: 21263 components: - type: Transform rot: -1.5707963267948966 rad @@ -165392,7 +165413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21341 + - uid: 21264 components: - type: Transform rot: -1.5707963267948966 rad @@ -165400,7 +165421,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21342 + - uid: 21265 components: - type: Transform rot: -1.5707963267948966 rad @@ -165408,7 +165429,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21343 + - uid: 21266 components: - type: Transform rot: -1.5707963267948966 rad @@ -165416,7 +165437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21344 + - uid: 21267 components: - type: Transform rot: -1.5707963267948966 rad @@ -165424,182 +165445,182 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21345 + - uid: 21268 components: - type: Transform pos: -12.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21346 + - uid: 21269 components: - type: Transform pos: -12.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21347 + - uid: 21270 components: - type: Transform pos: -12.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21348 + - uid: 21271 components: - type: Transform pos: -13.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21349 + - uid: 21272 components: - type: Transform pos: -13.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21350 + - uid: 21273 components: - type: Transform pos: -12.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21351 + - uid: 21274 components: - type: Transform pos: -12.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21352 + - uid: 21275 components: - type: Transform pos: -12.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21353 + - uid: 21276 components: - type: Transform pos: -14.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21354 + - uid: 21277 components: - type: Transform pos: -12.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21355 + - uid: 21278 components: - type: Transform pos: -14.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21356 + - uid: 21279 components: - type: Transform pos: -12.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21357 + - uid: 21280 components: - type: Transform pos: -14.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21358 + - uid: 21281 components: - type: Transform pos: -12.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21359 + - uid: 21282 components: - type: Transform pos: -14.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21360 + - uid: 21283 components: - type: Transform pos: -14.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21361 + - uid: 21284 components: - type: Transform pos: -12.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21362 + - uid: 21285 components: - type: Transform pos: -12.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21363 + - uid: 21286 components: - type: Transform pos: -14.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21364 + - uid: 21287 components: - type: Transform pos: -14.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21365 + - uid: 21288 components: - type: Transform pos: -12.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21366 + - uid: 21289 components: - type: Transform pos: -12.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21367 + - uid: 21290 components: - type: Transform pos: -14.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21368 + - uid: 21291 components: - type: Transform pos: -14.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21369 + - uid: 21292 components: - type: Transform pos: -12.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21370 + - uid: 21293 components: - type: Transform rot: 3.141592653589793 rad @@ -165607,7 +165628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21371 + - uid: 21294 components: - type: Transform rot: 3.141592653589793 rad @@ -165615,7 +165636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21372 + - uid: 21295 components: - type: Transform rot: 3.141592653589793 rad @@ -165623,7 +165644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21373 + - uid: 21296 components: - type: Transform rot: 1.5707963267948966 rad @@ -165631,7 +165652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21374 + - uid: 21297 components: - type: Transform rot: 1.5707963267948966 rad @@ -165639,7 +165660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21375 + - uid: 21298 components: - type: Transform rot: 1.5707963267948966 rad @@ -165647,7 +165668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21376 + - uid: 21299 components: - type: Transform rot: 1.5707963267948966 rad @@ -165655,21 +165676,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21377 + - uid: 21300 components: - type: Transform pos: -14.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21378 + - uid: 21301 components: - type: Transform pos: -12.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21379 + - uid: 21302 components: - type: Transform rot: 1.5707963267948966 rad @@ -165677,7 +165698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21380 + - uid: 21303 components: - type: Transform rot: 1.5707963267948966 rad @@ -165685,7 +165706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21381 + - uid: 21304 components: - type: Transform rot: 1.5707963267948966 rad @@ -165693,7 +165714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21382 + - uid: 21305 components: - type: Transform rot: 1.5707963267948966 rad @@ -165701,7 +165722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21383 + - uid: 21306 components: - type: Transform rot: 1.5707963267948966 rad @@ -165709,7 +165730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21384 + - uid: 21307 components: - type: Transform rot: 1.5707963267948966 rad @@ -165717,7 +165738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21385 + - uid: 21308 components: - type: Transform rot: 1.5707963267948966 rad @@ -165725,7 +165746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21386 + - uid: 21309 components: - type: Transform rot: 1.5707963267948966 rad @@ -165733,7 +165754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21387 + - uid: 21310 components: - type: Transform rot: 1.5707963267948966 rad @@ -165741,7 +165762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21388 + - uid: 21311 components: - type: Transform rot: 1.5707963267948966 rad @@ -165749,7 +165770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21389 + - uid: 21312 components: - type: Transform rot: -1.5707963267948966 rad @@ -165757,7 +165778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21390 + - uid: 21313 components: - type: Transform rot: 3.141592653589793 rad @@ -165765,7 +165786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21391 + - uid: 21314 components: - type: Transform rot: 3.141592653589793 rad @@ -165773,7 +165794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21392 + - uid: 21315 components: - type: Transform rot: 3.141592653589793 rad @@ -165781,7 +165802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21393 + - uid: 21316 components: - type: Transform rot: 3.141592653589793 rad @@ -165789,7 +165810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21394 + - uid: 21317 components: - type: Transform rot: 3.141592653589793 rad @@ -165797,7 +165818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21395 + - uid: 21318 components: - type: Transform rot: 3.141592653589793 rad @@ -165805,7 +165826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21396 + - uid: 21319 components: - type: Transform rot: 3.141592653589793 rad @@ -165813,7 +165834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21397 + - uid: 21320 components: - type: Transform rot: -1.5707963267948966 rad @@ -165821,7 +165842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21398 + - uid: 21321 components: - type: Transform rot: -1.5707963267948966 rad @@ -165829,7 +165850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21399 + - uid: 21322 components: - type: Transform rot: 3.141592653589793 rad @@ -165837,7 +165858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21400 + - uid: 21323 components: - type: Transform rot: 3.141592653589793 rad @@ -165845,7 +165866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21401 + - uid: 21324 components: - type: Transform rot: 3.141592653589793 rad @@ -165853,7 +165874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21402 + - uid: 21325 components: - type: Transform rot: 3.141592653589793 rad @@ -165861,7 +165882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21403 + - uid: 21326 components: - type: Transform rot: 3.141592653589793 rad @@ -165869,7 +165890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21404 + - uid: 21327 components: - type: Transform rot: -1.5707963267948966 rad @@ -165877,7 +165898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21405 + - uid: 21328 components: - type: Transform rot: -1.5707963267948966 rad @@ -165885,28 +165906,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21406 + - uid: 21329 components: - type: Transform pos: -7.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21407 + - uid: 21330 components: - type: Transform pos: -6.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21408 + - uid: 21331 components: - type: Transform pos: -6.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21409 + - uid: 21332 components: - type: Transform rot: -1.5707963267948966 rad @@ -165914,7 +165935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21410 + - uid: 21333 components: - type: Transform rot: -1.5707963267948966 rad @@ -165922,7 +165943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21411 + - uid: 21334 components: - type: Transform rot: 3.141592653589793 rad @@ -165930,7 +165951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21412 + - uid: 21335 components: - type: Transform rot: 3.141592653589793 rad @@ -165938,7 +165959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21413 + - uid: 21336 components: - type: Transform rot: 3.141592653589793 rad @@ -165946,7 +165967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21414 + - uid: 21337 components: - type: Transform rot: 3.141592653589793 rad @@ -165954,7 +165975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21415 + - uid: 21338 components: - type: Transform rot: 3.141592653589793 rad @@ -165962,7 +165983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21416 + - uid: 21339 components: - type: Transform rot: 3.141592653589793 rad @@ -165970,7 +165991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21417 + - uid: 21340 components: - type: Transform rot: 3.141592653589793 rad @@ -165978,7 +165999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21418 + - uid: 21341 components: - type: Transform rot: 3.141592653589793 rad @@ -165986,7 +166007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21419 + - uid: 21342 components: - type: Transform rot: 3.141592653589793 rad @@ -165994,7 +166015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21420 + - uid: 21343 components: - type: Transform rot: 3.141592653589793 rad @@ -166002,7 +166023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21421 + - uid: 21344 components: - type: Transform rot: 3.141592653589793 rad @@ -166010,7 +166031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21422 + - uid: 21345 components: - type: Transform rot: -1.5707963267948966 rad @@ -166018,7 +166039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21423 + - uid: 21346 components: - type: Transform rot: -1.5707963267948966 rad @@ -166026,7 +166047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21424 + - uid: 21347 components: - type: Transform rot: -1.5707963267948966 rad @@ -166034,7 +166055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21425 + - uid: 21348 components: - type: Transform rot: 3.141592653589793 rad @@ -166042,7 +166063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21426 + - uid: 21349 components: - type: Transform rot: 3.141592653589793 rad @@ -166050,7 +166071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21427 + - uid: 21350 components: - type: Transform rot: 3.141592653589793 rad @@ -166058,7 +166079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21428 + - uid: 21351 components: - type: Transform rot: 1.5707963267948966 rad @@ -166066,7 +166087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21429 + - uid: 21352 components: - type: Transform rot: 1.5707963267948966 rad @@ -166074,28 +166095,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21430 + - uid: 21353 components: - type: Transform pos: -14.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21431 + - uid: 21354 components: - type: Transform pos: -12.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21432 + - uid: 21355 components: - type: Transform pos: -14.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21433 + - uid: 21356 components: - type: Transform rot: -1.5707963267948966 rad @@ -166103,7 +166124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21434 + - uid: 21357 components: - type: Transform rot: -1.5707963267948966 rad @@ -166111,7 +166132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21435 + - uid: 21358 components: - type: Transform rot: -1.5707963267948966 rad @@ -166119,7 +166140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21436 + - uid: 21359 components: - type: Transform rot: -1.5707963267948966 rad @@ -166127,7 +166148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21437 + - uid: 21360 components: - type: Transform rot: -1.5707963267948966 rad @@ -166135,154 +166156,154 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21438 + - uid: 21361 components: - type: Transform pos: -18.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21439 + - uid: 21362 components: - type: Transform pos: -18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21440 + - uid: 21363 components: - type: Transform pos: -18.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21441 + - uid: 21364 components: - type: Transform pos: -18.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21442 + - uid: 21365 components: - type: Transform pos: -18.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21443 + - uid: 21366 components: - type: Transform pos: -14.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21444 + - uid: 21367 components: - type: Transform pos: -12.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21445 + - uid: 21368 components: - type: Transform pos: -12.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21446 + - uid: 21369 components: - type: Transform pos: -14.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21447 + - uid: 21370 components: - type: Transform pos: -14.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21448 + - uid: 21371 components: - type: Transform pos: -14.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21449 + - uid: 21372 components: - type: Transform pos: -12.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21450 + - uid: 21373 components: - type: Transform pos: -12.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21451 + - uid: 21374 components: - type: Transform pos: -12.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21452 + - uid: 21375 components: - type: Transform pos: -14.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21453 + - uid: 21376 components: - type: Transform pos: -12.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21454 + - uid: 21377 components: - type: Transform pos: -14.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21455 + - uid: 21378 components: - type: Transform pos: -12.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21456 + - uid: 21379 components: - type: Transform pos: -14.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21457 + - uid: 21380 components: - type: Transform pos: -12.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21458 + - uid: 21381 components: - type: Transform pos: -14.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21459 + - uid: 21382 components: - type: Transform rot: -1.5707963267948966 rad @@ -166290,7 +166311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21460 + - uid: 21383 components: - type: Transform rot: -1.5707963267948966 rad @@ -166298,7 +166319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21461 + - uid: 21384 components: - type: Transform rot: -1.5707963267948966 rad @@ -166306,49 +166327,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21462 + - uid: 21385 components: - type: Transform pos: -16.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21463 + - uid: 21386 components: - type: Transform pos: -16.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21464 + - uid: 21387 components: - type: Transform pos: -16.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21465 + - uid: 21388 components: - type: Transform pos: -16.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21466 + - uid: 21389 components: - type: Transform pos: -16.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21467 + - uid: 21390 components: - type: Transform pos: -16.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21468 + - uid: 21391 components: - type: Transform rot: -1.5707963267948966 rad @@ -166356,7 +166377,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21469 + - uid: 21392 components: - type: Transform rot: 1.5707963267948966 rad @@ -166364,7 +166385,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21470 + - uid: 21393 components: - type: Transform rot: 1.5707963267948966 rad @@ -166372,7 +166393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21471 + - uid: 21394 components: - type: Transform rot: 1.5707963267948966 rad @@ -166380,35 +166401,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21472 + - uid: 21395 components: - type: Transform pos: -15.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21473 + - uid: 21396 components: - type: Transform pos: -15.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21474 + - uid: 21397 components: - type: Transform pos: -15.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21475 + - uid: 21398 components: - type: Transform pos: -15.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21476 + - uid: 21399 components: - type: Transform rot: 1.5707963267948966 rad @@ -166416,7 +166437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21477 + - uid: 21400 components: - type: Transform rot: 1.5707963267948966 rad @@ -166424,7 +166445,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21478 + - uid: 21401 components: - type: Transform rot: 1.5707963267948966 rad @@ -166432,7 +166453,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21479 + - uid: 21402 components: - type: Transform rot: 1.5707963267948966 rad @@ -166440,7 +166461,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21480 + - uid: 21403 components: - type: Transform anchored: False @@ -166451,7 +166472,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 21481 + - uid: 21404 components: - type: Transform rot: 1.5707963267948966 rad @@ -166459,7 +166480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21482 + - uid: 21405 components: - type: Transform rot: 1.5707963267948966 rad @@ -166467,7 +166488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21483 + - uid: 21406 components: - type: Transform rot: 1.5707963267948966 rad @@ -166475,7 +166496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21484 + - uid: 21407 components: - type: Transform rot: 1.5707963267948966 rad @@ -166483,7 +166504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21485 + - uid: 21408 components: - type: Transform rot: 1.5707963267948966 rad @@ -166491,91 +166512,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21486 + - uid: 21409 components: - type: Transform pos: -23.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21487 + - uid: 21410 components: - type: Transform pos: -23.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21488 + - uid: 21411 components: - type: Transform pos: -23.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21489 + - uid: 21412 components: - type: Transform pos: -21.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21490 + - uid: 21413 components: - type: Transform pos: -21.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21491 + - uid: 21414 components: - type: Transform pos: -21.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21492 + - uid: 21415 components: - type: Transform pos: -21.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21493 + - uid: 21416 components: - type: Transform pos: -21.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21494 + - uid: 21417 components: - type: Transform pos: -21.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21495 + - uid: 21418 components: - type: Transform pos: -21.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21496 + - uid: 21419 components: - type: Transform pos: -21.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21497 + - uid: 21420 components: - type: Transform pos: -21.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21498 + - uid: 21421 components: - type: Transform rot: -1.5707963267948966 rad @@ -166583,7 +166604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21499 + - uid: 21422 components: - type: Transform rot: -1.5707963267948966 rad @@ -166591,7 +166612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21500 + - uid: 21423 components: - type: Transform rot: -1.5707963267948966 rad @@ -166599,14 +166620,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21501 + - uid: 21424 components: - type: Transform pos: -18.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21502 + - uid: 21425 components: - type: Transform rot: 1.5707963267948966 rad @@ -166614,7 +166635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21503 + - uid: 21426 components: - type: Transform rot: 1.5707963267948966 rad @@ -166622,14 +166643,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21504 + - uid: 21427 components: - type: Transform pos: -28.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21505 + - uid: 21428 components: - type: Transform rot: 1.5707963267948966 rad @@ -166637,49 +166658,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21506 + - uid: 21429 components: - type: Transform pos: -28.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21507 + - uid: 21430 components: - type: Transform pos: -28.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21508 + - uid: 21431 components: - type: Transform pos: -23.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21509 + - uid: 21432 components: - type: Transform pos: -23.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21510 + - uid: 21433 components: - type: Transform pos: -28.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21511 + - uid: 21434 components: - type: Transform pos: -23.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21512 + - uid: 21435 components: - type: Transform rot: 3.141592653589793 rad @@ -166687,7 +166708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21513 + - uid: 21436 components: - type: Transform rot: 3.141592653589793 rad @@ -166695,7 +166716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21514 + - uid: 21437 components: - type: Transform rot: 3.141592653589793 rad @@ -166703,7 +166724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21515 + - uid: 21438 components: - type: Transform rot: 3.141592653589793 rad @@ -166711,7 +166732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21516 + - uid: 21439 components: - type: Transform rot: -1.5707963267948966 rad @@ -166719,7 +166740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21517 + - uid: 21440 components: - type: Transform rot: -1.5707963267948966 rad @@ -166727,7 +166748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21518 + - uid: 21441 components: - type: Transform rot: -1.5707963267948966 rad @@ -166735,7 +166756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21519 + - uid: 21442 components: - type: Transform rot: 3.141592653589793 rad @@ -166743,7 +166764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21520 + - uid: 21443 components: - type: Transform rot: 3.141592653589793 rad @@ -166751,7 +166772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21521 + - uid: 21444 components: - type: Transform rot: 3.141592653589793 rad @@ -166759,7 +166780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21522 + - uid: 21445 components: - type: Transform rot: 3.141592653589793 rad @@ -166767,14 +166788,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21523 + - uid: 21446 components: - type: Transform pos: -23.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21524 + - uid: 21447 components: - type: Transform rot: -1.5707963267948966 rad @@ -166782,7 +166803,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21525 + - uid: 21448 components: - type: Transform rot: -1.5707963267948966 rad @@ -166790,7 +166811,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21526 + - uid: 21449 components: - type: Transform rot: -1.5707963267948966 rad @@ -166798,7 +166819,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21527 + - uid: 21450 components: - type: Transform rot: -1.5707963267948966 rad @@ -166806,7 +166827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21528 + - uid: 21451 components: - type: Transform rot: -1.5707963267948966 rad @@ -166814,7 +166835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21529 + - uid: 21452 components: - type: Transform rot: -1.5707963267948966 rad @@ -166822,7 +166843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21530 + - uid: 21453 components: - type: Transform rot: 3.141592653589793 rad @@ -166830,7 +166851,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21531 + - uid: 21454 components: - type: Transform rot: 3.141592653589793 rad @@ -166838,7 +166859,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21532 + - uid: 21455 components: - type: Transform rot: -1.5707963267948966 rad @@ -166846,7 +166867,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21533 + - uid: 21456 components: - type: Transform rot: -1.5707963267948966 rad @@ -166854,7 +166875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21534 + - uid: 21457 components: - type: Transform rot: 3.141592653589793 rad @@ -166862,7 +166883,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21535 + - uid: 21458 components: - type: Transform rot: 3.141592653589793 rad @@ -166870,7 +166891,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21536 + - uid: 21459 components: - type: Transform rot: 3.141592653589793 rad @@ -166878,7 +166899,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21537 + - uid: 21460 components: - type: Transform rot: 3.141592653589793 rad @@ -166886,7 +166907,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21538 + - uid: 21461 components: - type: Transform rot: 3.141592653589793 rad @@ -166894,7 +166915,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21539 + - uid: 21462 components: - type: Transform rot: 3.141592653589793 rad @@ -166902,7 +166923,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21540 + - uid: 21463 components: - type: Transform rot: 3.141592653589793 rad @@ -166910,7 +166931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21541 + - uid: 21464 components: - type: Transform rot: 3.141592653589793 rad @@ -166918,7 +166939,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21542 + - uid: 21465 components: - type: Transform rot: 1.5707963267948966 rad @@ -166926,7 +166947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21543 + - uid: 21466 components: - type: Transform rot: 1.5707963267948966 rad @@ -166934,7 +166955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21544 + - uid: 21467 components: - type: Transform rot: 1.5707963267948966 rad @@ -166942,7 +166963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21545 + - uid: 21468 components: - type: Transform rot: 1.5707963267948966 rad @@ -166950,7 +166971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21546 + - uid: 21469 components: - type: Transform rot: 1.5707963267948966 rad @@ -166958,7 +166979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21547 + - uid: 21470 components: - type: Transform rot: 1.5707963267948966 rad @@ -166966,7 +166987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21548 + - uid: 21471 components: - type: Transform rot: 1.5707963267948966 rad @@ -166974,7 +166995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21549 + - uid: 21472 components: - type: Transform rot: 1.5707963267948966 rad @@ -166982,7 +167003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21550 + - uid: 21473 components: - type: Transform rot: 1.5707963267948966 rad @@ -166990,7 +167011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21551 + - uid: 21474 components: - type: Transform rot: 1.5707963267948966 rad @@ -166998,7 +167019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21552 + - uid: 21475 components: - type: Transform rot: 1.5707963267948966 rad @@ -167006,7 +167027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21553 + - uid: 21476 components: - type: Transform rot: 1.5707963267948966 rad @@ -167014,7 +167035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21554 + - uid: 21477 components: - type: Transform rot: 1.5707963267948966 rad @@ -167022,7 +167043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21555 + - uid: 21478 components: - type: Transform rot: 1.5707963267948966 rad @@ -167030,7 +167051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21556 + - uid: 21479 components: - type: Transform rot: 1.5707963267948966 rad @@ -167038,7 +167059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21557 + - uid: 21480 components: - type: Transform rot: 1.5707963267948966 rad @@ -167046,7 +167067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21558 + - uid: 21481 components: - type: Transform rot: 1.5707963267948966 rad @@ -167054,14 +167075,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21559 + - uid: 21482 components: - type: Transform pos: 1.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21560 + - uid: 21483 components: - type: Transform rot: 1.5707963267948966 rad @@ -167069,7 +167090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21561 + - uid: 21484 components: - type: Transform rot: 1.5707963267948966 rad @@ -167077,7 +167098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21562 + - uid: 21485 components: - type: Transform rot: 1.5707963267948966 rad @@ -167085,7 +167106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21563 + - uid: 21486 components: - type: Transform rot: 1.5707963267948966 rad @@ -167093,7 +167114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21564 + - uid: 21487 components: - type: Transform rot: 1.5707963267948966 rad @@ -167101,7 +167122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21565 + - uid: 21488 components: - type: Transform rot: 1.5707963267948966 rad @@ -167109,7 +167130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21566 + - uid: 21489 components: - type: Transform rot: 1.5707963267948966 rad @@ -167117,7 +167138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21567 + - uid: 21490 components: - type: Transform rot: 1.5707963267948966 rad @@ -167125,28 +167146,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21568 + - uid: 21491 components: - type: Transform pos: -9.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21569 + - uid: 21492 components: - type: Transform pos: -9.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21570 + - uid: 21493 components: - type: Transform pos: 1.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21571 + - uid: 21494 components: - type: Transform rot: -1.5707963267948966 rad @@ -167154,231 +167175,231 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21572 + - uid: 21495 components: - type: Transform pos: -8.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21573 + - uid: 21496 components: - type: Transform pos: -9.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21574 + - uid: 21497 components: - type: Transform pos: -8.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21575 + - uid: 21498 components: - type: Transform pos: -9.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21576 + - uid: 21499 components: - type: Transform pos: -8.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21577 + - uid: 21500 components: - type: Transform pos: 0.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21578 + - uid: 21501 components: - type: Transform pos: 1.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21579 + - uid: 21502 components: - type: Transform pos: 1.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21580 + - uid: 21503 components: - type: Transform pos: 0.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21581 + - uid: 21504 components: - type: Transform pos: 1.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21582 + - uid: 21505 components: - type: Transform pos: 0.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21583 + - uid: 21506 components: - type: Transform pos: -9.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21584 + - uid: 21507 components: - type: Transform pos: -8.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21585 + - uid: 21508 components: - type: Transform pos: -8.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21586 + - uid: 21509 components: - type: Transform pos: -9.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21587 + - uid: 21510 components: - type: Transform pos: -8.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21588 + - uid: 21511 components: - type: Transform pos: -9.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21589 + - uid: 21512 components: - type: Transform pos: -8.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21590 + - uid: 21513 components: - type: Transform pos: -9.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21591 + - uid: 21514 components: - type: Transform pos: 0.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21592 + - uid: 21515 components: - type: Transform pos: 1.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21593 + - uid: 21516 components: - type: Transform pos: 0.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21594 + - uid: 21517 components: - type: Transform pos: 1.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21595 + - uid: 21518 components: - type: Transform pos: 0.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21596 + - uid: 21519 components: - type: Transform pos: 1.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21597 + - uid: 21520 components: - type: Transform pos: 0.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21598 + - uid: 21521 components: - type: Transform pos: 1.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21599 + - uid: 21522 components: - type: Transform pos: 1.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21600 + - uid: 21523 components: - type: Transform pos: -9.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21601 + - uid: 21524 components: - type: Transform pos: -9.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21602 + - uid: 21525 components: - type: Transform pos: -8.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21603 + - uid: 21526 components: - type: Transform pos: -9.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21604 + - uid: 21527 components: - type: Transform rot: -1.5707963267948966 rad @@ -167386,7 +167407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21605 + - uid: 21528 components: - type: Transform rot: -1.5707963267948966 rad @@ -167394,7 +167415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21606 + - uid: 21529 components: - type: Transform rot: -1.5707963267948966 rad @@ -167402,7 +167423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21607 + - uid: 21530 components: - type: Transform rot: -1.5707963267948966 rad @@ -167410,7 +167431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21608 + - uid: 21531 components: - type: Transform rot: -1.5707963267948966 rad @@ -167418,7 +167439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21609 + - uid: 21532 components: - type: Transform rot: -1.5707963267948966 rad @@ -167426,7 +167447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21610 + - uid: 21533 components: - type: Transform rot: -1.5707963267948966 rad @@ -167434,7 +167455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21611 + - uid: 21534 components: - type: Transform rot: -1.5707963267948966 rad @@ -167442,7 +167463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21612 + - uid: 21535 components: - type: Transform rot: -1.5707963267948966 rad @@ -167450,7 +167471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21613 + - uid: 21536 components: - type: Transform rot: -1.5707963267948966 rad @@ -167458,7 +167479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21614 + - uid: 21537 components: - type: Transform rot: -1.5707963267948966 rad @@ -167466,7 +167487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21615 + - uid: 21538 components: - type: Transform rot: -1.5707963267948966 rad @@ -167474,7 +167495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21616 + - uid: 21539 components: - type: Transform rot: -1.5707963267948966 rad @@ -167482,7 +167503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21617 + - uid: 21540 components: - type: Transform rot: -1.5707963267948966 rad @@ -167490,7 +167511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21618 + - uid: 21541 components: - type: Transform rot: -1.5707963267948966 rad @@ -167498,7 +167519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21619 + - uid: 21542 components: - type: Transform rot: -1.5707963267948966 rad @@ -167506,14 +167527,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21620 + - uid: 21543 components: - type: Transform pos: 0.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21621 + - uid: 21544 components: - type: Transform rot: -1.5707963267948966 rad @@ -167521,7 +167542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21622 + - uid: 21545 components: - type: Transform rot: -1.5707963267948966 rad @@ -167529,7 +167550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21623 + - uid: 21546 components: - type: Transform rot: -1.5707963267948966 rad @@ -167537,7 +167558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21624 + - uid: 21547 components: - type: Transform rot: -1.5707963267948966 rad @@ -167545,7 +167566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21625 + - uid: 21548 components: - type: Transform rot: -1.5707963267948966 rad @@ -167553,7 +167574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21626 + - uid: 21549 components: - type: Transform rot: -1.5707963267948966 rad @@ -167561,63 +167582,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21627 + - uid: 21550 components: - type: Transform pos: 5.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21628 + - uid: 21551 components: - type: Transform pos: 5.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21629 + - uid: 21552 components: - type: Transform pos: 5.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21630 + - uid: 21553 components: - type: Transform pos: 5.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21631 + - uid: 21554 components: - type: Transform pos: 5.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21632 + - uid: 21555 components: - type: Transform pos: 5.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21633 + - uid: 21556 components: - type: Transform pos: 5.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21634 + - uid: 21557 components: - type: Transform pos: 5.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21635 + - uid: 21558 components: - type: Transform rot: -1.5707963267948966 rad @@ -167625,7 +167646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21636 + - uid: 21559 components: - type: Transform rot: -1.5707963267948966 rad @@ -167633,7 +167654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21637 + - uid: 21560 components: - type: Transform rot: -1.5707963267948966 rad @@ -167641,7 +167662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21638 + - uid: 21561 components: - type: Transform rot: -1.5707963267948966 rad @@ -167649,7 +167670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21639 + - uid: 21562 components: - type: Transform rot: -1.5707963267948966 rad @@ -167657,7 +167678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21640 + - uid: 21563 components: - type: Transform rot: -1.5707963267948966 rad @@ -167665,7 +167686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21641 + - uid: 21564 components: - type: Transform rot: -1.5707963267948966 rad @@ -167673,7 +167694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21642 + - uid: 21565 components: - type: Transform rot: -1.5707963267948966 rad @@ -167681,7 +167702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21643 + - uid: 21566 components: - type: Transform rot: -1.5707963267948966 rad @@ -167689,7 +167710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21644 + - uid: 21567 components: - type: Transform rot: -1.5707963267948966 rad @@ -167697,7 +167718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21645 + - uid: 21568 components: - type: Transform rot: -1.5707963267948966 rad @@ -167705,7 +167726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21646 + - uid: 21569 components: - type: Transform rot: 3.141592653589793 rad @@ -167713,7 +167734,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21647 + - uid: 21570 components: - type: Transform rot: 1.5707963267948966 rad @@ -167721,7 +167742,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21648 + - uid: 21571 components: - type: Transform rot: 1.5707963267948966 rad @@ -167729,7 +167750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21649 + - uid: 21572 components: - type: Transform rot: 1.5707963267948966 rad @@ -167737,7 +167758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21650 + - uid: 21573 components: - type: Transform rot: 1.5707963267948966 rad @@ -167745,7 +167766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21651 + - uid: 21574 components: - type: Transform rot: 1.5707963267948966 rad @@ -167753,7 +167774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21652 + - uid: 21575 components: - type: Transform rot: 1.5707963267948966 rad @@ -167761,7 +167782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21653 + - uid: 21576 components: - type: Transform rot: 1.5707963267948966 rad @@ -167769,7 +167790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21654 + - uid: 21577 components: - type: Transform rot: 1.5707963267948966 rad @@ -167777,56 +167798,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21655 + - uid: 21578 components: - type: Transform pos: -16.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21656 + - uid: 21579 components: - type: Transform pos: -16.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21657 + - uid: 21580 components: - type: Transform pos: -16.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21658 + - uid: 21581 components: - type: Transform pos: -16.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21659 + - uid: 21582 components: - type: Transform pos: -16.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21660 + - uid: 21583 components: - type: Transform pos: -16.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21661 + - uid: 21584 components: - type: Transform pos: -16.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21662 + - uid: 21585 components: - type: Transform rot: -1.5707963267948966 rad @@ -167834,7 +167855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21663 + - uid: 21586 components: - type: Transform rot: -1.5707963267948966 rad @@ -167842,7 +167863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21664 + - uid: 21587 components: - type: Transform rot: -1.5707963267948966 rad @@ -167850,7 +167871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21665 + - uid: 21588 components: - type: Transform rot: -1.5707963267948966 rad @@ -167858,49 +167879,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21666 + - uid: 21589 components: - type: Transform pos: -22.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21667 + - uid: 21590 components: - type: Transform pos: -22.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21668 + - uid: 21591 components: - type: Transform pos: -22.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21669 + - uid: 21592 components: - type: Transform pos: -22.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21670 + - uid: 21593 components: - type: Transform pos: -22.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21671 + - uid: 21594 components: - type: Transform pos: -22.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21672 + - uid: 21595 components: - type: Transform rot: 1.5707963267948966 rad @@ -167908,7 +167929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21673 + - uid: 21596 components: - type: Transform rot: 3.141592653589793 rad @@ -167916,7 +167937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21674 + - uid: 21597 components: - type: Transform rot: 3.141592653589793 rad @@ -167924,7 +167945,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21675 + - uid: 21598 components: - type: Transform rot: 3.141592653589793 rad @@ -167932,7 +167953,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21676 + - uid: 21599 components: - type: Transform rot: 3.141592653589793 rad @@ -167940,7 +167961,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21677 + - uid: 21600 components: - type: Transform rot: 3.141592653589793 rad @@ -167948,7 +167969,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21678 + - uid: 21601 components: - type: Transform rot: 3.141592653589793 rad @@ -167956,7 +167977,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21679 + - uid: 21602 components: - type: Transform rot: 3.141592653589793 rad @@ -167964,7 +167985,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21680 + - uid: 21603 components: - type: Transform rot: 1.5707963267948966 rad @@ -167972,7 +167993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21681 + - uid: 21604 components: - type: Transform rot: 1.5707963267948966 rad @@ -167980,7 +168001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21682 + - uid: 21605 components: - type: Transform rot: 1.5707963267948966 rad @@ -167988,7 +168009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21683 + - uid: 21606 components: - type: Transform rot: 1.5707963267948966 rad @@ -167996,7 +168017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21684 + - uid: 21607 components: - type: Transform rot: 1.5707963267948966 rad @@ -168004,7 +168025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21685 + - uid: 21608 components: - type: Transform rot: 1.5707963267948966 rad @@ -168012,7 +168033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21686 + - uid: 21609 components: - type: Transform rot: 1.5707963267948966 rad @@ -168020,7 +168041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21687 + - uid: 21610 components: - type: Transform rot: -1.5707963267948966 rad @@ -168028,7 +168049,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21688 + - uid: 21611 components: - type: Transform rot: 3.141592653589793 rad @@ -168036,55 +168057,55 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21689 + - uid: 21612 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-30.5 parent: 2 - - uid: 21690 + - uid: 21613 components: - type: Transform pos: 21.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21691 + - uid: 21614 components: - type: Transform pos: 8.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21692 + - uid: 21615 components: - type: Transform pos: 5.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21693 + - uid: 21616 components: - type: Transform pos: 5.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21694 + - uid: 21617 components: - type: Transform pos: 5.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21695 + - uid: 21618 components: - type: Transform pos: 5.5,40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21696 + - uid: 21619 components: - type: Transform rot: 3.141592653589793 rad @@ -168092,20 +168113,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21697 + - uid: 21620 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 2 - - uid: 21698 + - uid: 21621 components: - type: Transform pos: -28.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21699 + - uid: 21622 components: - type: Transform rot: 3.141592653589793 rad @@ -168113,7 +168134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21700 + - uid: 21623 components: - type: Transform rot: 3.141592653589793 rad @@ -168121,49 +168142,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21701 + - uid: 21624 components: - type: Transform pos: 41.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21702 + - uid: 21625 components: - type: Transform pos: -11.5,51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21703 + - uid: 21626 components: - type: Transform pos: -5.5,51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21704 + - uid: 21627 components: - type: Transform pos: -24.5,68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21705 + - uid: 21628 components: - type: Transform pos: -24.5,67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21706 + - uid: 21629 components: - type: Transform pos: -24.5,66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21707 + - uid: 21630 components: - type: Transform rot: 1.5707963267948966 rad @@ -168171,14 +168192,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21708 + - uid: 21631 components: - type: Transform pos: -26.5,64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21709 + - uid: 21632 components: - type: Transform rot: -1.5707963267948966 rad @@ -168186,7 +168207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21710 + - uid: 21633 components: - type: Transform rot: 1.5707963267948966 rad @@ -168194,7 +168215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21711 + - uid: 21634 components: - type: Transform rot: 1.5707963267948966 rad @@ -168202,7 +168223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21712 + - uid: 21635 components: - type: Transform rot: 1.5707963267948966 rad @@ -168210,7 +168231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21713 + - uid: 21636 components: - type: Transform rot: 1.5707963267948966 rad @@ -168218,14 +168239,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21714 + - uid: 21637 components: - type: Transform pos: 46.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21715 + - uid: 21638 components: - type: Transform rot: 1.5707963267948966 rad @@ -168233,7 +168254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF030300' - - uid: 21716 + - uid: 21639 components: - type: Transform rot: 3.141592653589793 rad @@ -168241,26 +168262,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF030300' - - uid: 21717 + - uid: 21640 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-30.5 parent: 2 - - uid: 21718 + - uid: 21641 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-30.5 parent: 2 - - uid: 21719 + - uid: 21642 components: - type: Transform pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21720 + - uid: 21643 components: - type: Transform rot: 3.141592653589793 rad @@ -168268,40 +168289,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21721 + - uid: 21644 components: - type: Transform pos: 75.5,24.5 parent: 2 - - uid: 21722 + - uid: 21645 components: - type: Transform pos: 75.5,23.5 parent: 2 - - uid: 21723 + - uid: 21646 components: - type: Transform pos: 75.5,22.5 parent: 2 - - uid: 21724 + - uid: 21647 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,21.5 parent: 2 - - uid: 21725 + - uid: 21648 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-40.5 parent: 2 - - uid: 21726 + - uid: 21649 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-38.5 parent: 2 - - uid: 21727 + - uid: 21650 components: - type: Transform rot: -1.5707963267948966 rad @@ -168309,25 +168330,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0313FF00' - - uid: 21728 + - uid: 21651 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,56.5 parent: 2 - - uid: 21729 + - uid: 21652 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,17.5 parent: 2 - - uid: 21730 + - uid: 21653 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,16.5 parent: 2 - - uid: 21731 + - uid: 21654 components: - type: Transform rot: 1.5707963267948966 rad @@ -168335,7 +168356,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21732 + - uid: 21655 components: - type: Transform rot: 1.5707963267948966 rad @@ -168343,28 +168364,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21733 + - uid: 21656 components: - type: Transform pos: -119.5,34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21734 + - uid: 21657 components: - type: Transform pos: -119.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21735 + - uid: 21658 components: - type: Transform pos: -119.5,33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21736 + - uid: 21659 components: - type: Transform rot: -1.5707963267948966 rad @@ -168372,7 +168393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21737 + - uid: 21660 components: - type: Transform rot: 3.141592653589793 rad @@ -168380,12 +168401,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21738 + - uid: 21661 components: - type: Transform pos: -29.5,-53.5 parent: 2 - - uid: 21739 + - uid: 21662 components: - type: Transform rot: 3.141592653589793 rad @@ -168393,7 +168414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21740 + - uid: 21663 components: - type: Transform rot: -1.5707963267948966 rad @@ -168401,7 +168422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21741 + - uid: 21664 components: - type: Transform rot: -1.5707963267948966 rad @@ -168409,7 +168430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21742 + - uid: 21665 components: - type: Transform rot: 3.141592653589793 rad @@ -168417,7 +168438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21743 + - uid: 21666 components: - type: Transform rot: 3.141592653589793 rad @@ -168425,7 +168446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21744 + - uid: 21667 components: - type: Transform rot: 3.141592653589793 rad @@ -168433,13 +168454,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21745 + - uid: 21668 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,58.5 parent: 2 - - uid: 21746 + - uid: 21669 components: - type: Transform anchored: False @@ -168451,14 +168472,14 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 21747 + - uid: 21670 components: - type: Transform pos: 24.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21748 + - uid: 21671 components: - type: Transform rot: 3.141592653589793 rad @@ -168466,7 +168487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21749 + - uid: 21672 components: - type: Transform rot: -1.5707963267948966 rad @@ -168474,13 +168495,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21750 + - uid: 21673 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,56.5 parent: 2 - - uid: 21751 + - uid: 21674 components: - type: Transform rot: 3.141592653589793 rad @@ -168488,27 +168509,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21752 + - uid: 21675 components: - type: Transform pos: -8.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21753 + - uid: 21676 components: - type: Transform pos: -63.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21754 + - uid: 21677 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,55.5 parent: 2 - - uid: 21755 + - uid: 21678 components: - type: Transform rot: 3.141592653589793 rad @@ -168516,7 +168537,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21756 + - uid: 21679 components: - type: Transform rot: 3.141592653589793 rad @@ -168524,7 +168545,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21757 + - uid: 21680 components: - type: Transform rot: -1.5707963267948966 rad @@ -168532,13 +168553,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21758 + - uid: 21681 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,27.5 parent: 2 - - uid: 21759 + - uid: 21682 components: - type: Transform anchored: False @@ -168550,13 +168571,13 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 21760 + - uid: 21683 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-43.5 parent: 2 - - uid: 21761 + - uid: 21684 components: - type: Transform rot: 3.141592653589793 rad @@ -168564,17 +168585,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0313FF00' - - uid: 21762 + - uid: 21685 components: - type: Transform pos: 75.5,25.5 parent: 2 - - uid: 21763 + - uid: 21686 components: - type: Transform pos: -54.5,52.5 parent: 2 - - uid: 21764 + - uid: 21687 components: - type: Transform rot: 3.141592653589793 rad @@ -168582,7 +168603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21765 + - uid: 21688 components: - type: Transform rot: 3.141592653589793 rad @@ -168590,7 +168611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21766 + - uid: 21689 components: - type: Transform rot: 3.141592653589793 rad @@ -168598,7 +168619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 21767 + - uid: 21690 components: - type: Transform rot: 1.5707963267948966 rad @@ -168606,12 +168627,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21768 + - uid: 21691 components: - type: Transform pos: -55.5,52.5 parent: 2 - - uid: 21769 + - uid: 21692 components: - type: Transform rot: 3.141592653589793 rad @@ -168619,18 +168640,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21770 + - uid: 21693 components: - type: Transform pos: 75.5,26.5 parent: 2 - - uid: 21771 + - uid: 21694 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,18.5 parent: 2 - - uid: 21772 + - uid: 21695 components: - type: Transform rot: 1.5707963267948966 rad @@ -168638,14 +168659,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF030300' - - uid: 21773 + - uid: 21696 components: - type: Transform pos: 4.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21774 + - uid: 21697 components: - type: Transform rot: 1.5707963267948966 rad @@ -168653,7 +168674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21775 + - uid: 21698 components: - type: Transform rot: 3.141592653589793 rad @@ -168661,7 +168682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21776 + - uid: 21699 components: - type: Transform rot: 3.141592653589793 rad @@ -168669,7 +168690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21777 + - uid: 21700 components: - type: Transform rot: 1.5707963267948966 rad @@ -168677,7 +168698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21778 + - uid: 21701 components: - type: Transform rot: 3.141592653589793 rad @@ -168685,7 +168706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21779 + - uid: 21702 components: - type: Transform rot: 3.141592653589793 rad @@ -168693,7 +168714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21780 + - uid: 21703 components: - type: Transform rot: 3.141592653589793 rad @@ -168701,7 +168722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21781 + - uid: 21704 components: - type: Transform rot: 3.141592653589793 rad @@ -168709,7 +168730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21782 + - uid: 21705 components: - type: Transform rot: 3.141592653589793 rad @@ -168717,7 +168738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21783 + - uid: 21706 components: - type: Transform rot: 3.141592653589793 rad @@ -168725,7 +168746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21784 + - uid: 21707 components: - type: Transform rot: 1.5707963267948966 rad @@ -168733,7 +168754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21785 + - uid: 21708 components: - type: Transform rot: 1.5707963267948966 rad @@ -168741,7 +168762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21786 + - uid: 21709 components: - type: Transform rot: 1.5707963267948966 rad @@ -168749,14 +168770,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21787 + - uid: 21710 components: - type: Transform pos: -117.5,44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21788 + - uid: 21711 components: - type: Transform rot: 3.141592653589793 rad @@ -168764,7 +168785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21789 + - uid: 21712 components: - type: Transform rot: -1.5707963267948966 rad @@ -168772,7 +168793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21790 + - uid: 21713 components: - type: Transform rot: 3.141592653589793 rad @@ -168780,7 +168801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21791 + - uid: 21714 components: - type: Transform rot: 3.141592653589793 rad @@ -168788,7 +168809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21792 + - uid: 21715 components: - type: Transform rot: 3.141592653589793 rad @@ -168796,7 +168817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21793 + - uid: 21716 components: - type: Transform rot: 3.141592653589793 rad @@ -168804,7 +168825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21794 + - uid: 21717 components: - type: Transform rot: 3.141592653589793 rad @@ -168812,7 +168833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21795 + - uid: 21718 components: - type: Transform rot: 3.141592653589793 rad @@ -168820,7 +168841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21796 + - uid: 21719 components: - type: Transform rot: 3.141592653589793 rad @@ -168828,7 +168849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21797 + - uid: 21720 components: - type: Transform rot: -1.5707963267948966 rad @@ -168836,7 +168857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21798 + - uid: 21721 components: - type: Transform rot: 1.5707963267948966 rad @@ -168844,7 +168865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21799 + - uid: 21722 components: - type: Transform rot: 3.141592653589793 rad @@ -168852,7 +168873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21800 + - uid: 21723 components: - type: Transform rot: -1.5707963267948966 rad @@ -168860,14 +168881,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21801 + - uid: 21724 components: - type: Transform pos: -119.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21802 + - uid: 21725 components: - type: Transform rot: 1.5707963267948966 rad @@ -168875,7 +168896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21803 + - uid: 21726 components: - type: Transform rot: 1.5707963267948966 rad @@ -168883,14 +168904,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21804 + - uid: 21727 components: - type: Transform pos: -119.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21805 + - uid: 21728 components: - type: Transform rot: -1.5707963267948966 rad @@ -168898,7 +168919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21806 + - uid: 21729 components: - type: Transform rot: -1.5707963267948966 rad @@ -168906,7 +168927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21807 + - uid: 21730 components: - type: Transform rot: -1.5707963267948966 rad @@ -168914,7 +168935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21808 + - uid: 21731 components: - type: Transform rot: -1.5707963267948966 rad @@ -168922,7 +168943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21809 + - uid: 21732 components: - type: Transform rot: -1.5707963267948966 rad @@ -168930,7 +168951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21810 + - uid: 21733 components: - type: Transform rot: -1.5707963267948966 rad @@ -168938,14 +168959,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21811 + - uid: 21734 components: - type: Transform pos: -119.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21812 + - uid: 21735 components: - type: Transform rot: 3.141592653589793 rad @@ -168953,7 +168974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21813 + - uid: 21736 components: - type: Transform rot: 3.141592653589793 rad @@ -168961,55 +168982,55 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21814 + - uid: 21737 components: - type: Transform pos: -119.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21815 + - uid: 21738 components: - type: Transform pos: -119.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21816 + - uid: 21739 components: - type: Transform pos: -119.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21817 + - uid: 21740 components: - type: Transform pos: -119.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21818 + - uid: 21741 components: - type: Transform pos: -119.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21819 + - uid: 21742 components: - type: Transform pos: -119.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21820 + - uid: 21743 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,18.5 parent: 2 - - uid: 21821 + - uid: 21744 components: - type: Transform rot: 1.5707963267948966 rad @@ -169017,7 +169038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21822 + - uid: 21745 components: - type: Transform rot: -1.5707963267948966 rad @@ -169025,7 +169046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21823 + - uid: 21746 components: - type: Transform rot: -1.5707963267948966 rad @@ -169033,7 +169054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21824 + - uid: 21747 components: - type: Transform rot: 1.5707963267948966 rad @@ -169041,14 +169062,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21825 + - uid: 21748 components: - type: Transform pos: -14.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21826 + - uid: 21749 components: - type: Transform rot: 3.141592653589793 rad @@ -169056,7 +169077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21827 + - uid: 21750 components: - type: Transform rot: 3.141592653589793 rad @@ -169064,7 +169085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21828 + - uid: 21751 components: - type: Transform rot: 3.141592653589793 rad @@ -169072,7 +169093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21829 + - uid: 21752 components: - type: Transform rot: 3.141592653589793 rad @@ -169080,7 +169101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21830 + - uid: 21753 components: - type: Transform rot: -1.5707963267948966 rad @@ -169088,7 +169109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 21831 + - uid: 21754 components: - type: Transform rot: -1.5707963267948966 rad @@ -169096,21 +169117,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 21832 + - uid: 21755 components: - type: Transform pos: -16.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21833 + - uid: 21756 components: - type: Transform pos: -28.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21834 + - uid: 21757 components: - type: Transform rot: -1.5707963267948966 rad @@ -169118,14 +169139,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21835 + - uid: 21758 components: - type: Transform pos: 74.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21836 + - uid: 21759 components: - type: Transform rot: -1.5707963267948966 rad @@ -169133,7 +169154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21837 + - uid: 21760 components: - type: Transform rot: 1.5707963267948966 rad @@ -169141,7 +169162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21838 + - uid: 21761 components: - type: Transform rot: 1.5707963267948966 rad @@ -169149,7 +169170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21839 + - uid: 21762 components: - type: Transform rot: 1.5707963267948966 rad @@ -169157,7 +169178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21840 + - uid: 21763 components: - type: Transform rot: 1.5707963267948966 rad @@ -169165,7 +169186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21841 + - uid: 21764 components: - type: Transform rot: 1.5707963267948966 rad @@ -169173,7 +169194,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21842 + - uid: 21765 components: - type: Transform rot: 1.5707963267948966 rad @@ -169181,7 +169202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21843 + - uid: 21766 components: - type: Transform rot: 1.5707963267948966 rad @@ -169189,7 +169210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21844 + - uid: 21767 components: - type: Transform rot: 1.5707963267948966 rad @@ -169197,7 +169218,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21845 + - uid: 21768 components: - type: Transform rot: 1.5707963267948966 rad @@ -169205,7 +169226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21846 + - uid: 21769 components: - type: Transform rot: 1.5707963267948966 rad @@ -169213,7 +169234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21847 + - uid: 21770 components: - type: Transform rot: 1.5707963267948966 rad @@ -169221,7 +169242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21848 + - uid: 21771 components: - type: Transform rot: 1.5707963267948966 rad @@ -169229,7 +169250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21849 + - uid: 21772 components: - type: Transform rot: 1.5707963267948966 rad @@ -169237,7 +169258,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21850 + - uid: 21773 components: - type: Transform rot: 1.5707963267948966 rad @@ -169245,7 +169266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21851 + - uid: 21774 components: - type: Transform rot: 1.5707963267948966 rad @@ -169253,7 +169274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21852 + - uid: 21775 components: - type: Transform rot: 1.5707963267948966 rad @@ -169261,7 +169282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21853 + - uid: 21776 components: - type: Transform rot: 1.5707963267948966 rad @@ -169269,7 +169290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21854 + - uid: 21777 components: - type: Transform rot: 1.5707963267948966 rad @@ -169277,7 +169298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21855 + - uid: 21778 components: - type: Transform rot: 1.5707963267948966 rad @@ -169285,7 +169306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21856 + - uid: 21779 components: - type: Transform rot: 1.5707963267948966 rad @@ -169293,7 +169314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21857 + - uid: 21780 components: - type: Transform rot: 1.5707963267948966 rad @@ -169301,7 +169322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21858 + - uid: 21781 components: - type: Transform rot: 1.5707963267948966 rad @@ -169309,7 +169330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21859 + - uid: 21782 components: - type: Transform rot: 1.5707963267948966 rad @@ -169317,7 +169338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21860 + - uid: 21783 components: - type: Transform rot: 1.5707963267948966 rad @@ -169325,7 +169346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21861 + - uid: 21784 components: - type: Transform rot: 1.5707963267948966 rad @@ -169333,7 +169354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21862 + - uid: 21785 components: - type: Transform rot: 1.5707963267948966 rad @@ -169341,7 +169362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21863 + - uid: 21786 components: - type: Transform rot: 1.5707963267948966 rad @@ -169349,7 +169370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21864 + - uid: 21787 components: - type: Transform rot: 1.5707963267948966 rad @@ -169357,7 +169378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21865 + - uid: 21788 components: - type: Transform rot: 1.5707963267948966 rad @@ -169365,7 +169386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21866 + - uid: 21789 components: - type: Transform rot: 1.5707963267948966 rad @@ -169373,7 +169394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21867 + - uid: 21790 components: - type: Transform rot: 1.5707963267948966 rad @@ -169381,7 +169402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21868 + - uid: 21791 components: - type: Transform rot: 1.5707963267948966 rad @@ -169389,7 +169410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21869 + - uid: 21792 components: - type: Transform rot: 1.5707963267948966 rad @@ -169397,7 +169418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21870 + - uid: 21793 components: - type: Transform rot: 1.5707963267948966 rad @@ -169405,7 +169426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21871 + - uid: 21794 components: - type: Transform rot: 1.5707963267948966 rad @@ -169413,7 +169434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21872 + - uid: 21795 components: - type: Transform rot: 1.5707963267948966 rad @@ -169421,7 +169442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21873 + - uid: 21796 components: - type: Transform rot: 1.5707963267948966 rad @@ -169429,7 +169450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21874 + - uid: 21797 components: - type: Transform rot: 1.5707963267948966 rad @@ -169437,7 +169458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21875 + - uid: 21798 components: - type: Transform rot: 1.5707963267948966 rad @@ -169445,7 +169466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21876 + - uid: 21799 components: - type: Transform rot: 1.5707963267948966 rad @@ -169453,7 +169474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21877 + - uid: 21800 components: - type: Transform rot: 1.5707963267948966 rad @@ -169461,7 +169482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21878 + - uid: 21801 components: - type: Transform rot: 1.5707963267948966 rad @@ -169469,7 +169490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21879 + - uid: 21802 components: - type: Transform rot: 1.5707963267948966 rad @@ -169477,7 +169498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21880 + - uid: 21803 components: - type: Transform rot: 1.5707963267948966 rad @@ -169485,7 +169506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21881 + - uid: 21804 components: - type: Transform rot: 1.5707963267948966 rad @@ -169493,7 +169514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21882 + - uid: 21805 components: - type: Transform rot: 1.5707963267948966 rad @@ -169501,7 +169522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21883 + - uid: 21806 components: - type: Transform rot: 1.5707963267948966 rad @@ -169509,7 +169530,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21884 + - uid: 21807 components: - type: Transform rot: 1.5707963267948966 rad @@ -169517,7 +169538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21885 + - uid: 21808 components: - type: Transform rot: 1.5707963267948966 rad @@ -169525,7 +169546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21886 + - uid: 21809 components: - type: Transform rot: 1.5707963267948966 rad @@ -169533,7 +169554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21887 + - uid: 21810 components: - type: Transform rot: 1.5707963267948966 rad @@ -169541,7 +169562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21888 + - uid: 21811 components: - type: Transform rot: 1.5707963267948966 rad @@ -169549,7 +169570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21889 + - uid: 21812 components: - type: Transform rot: 1.5707963267948966 rad @@ -169557,7 +169578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21890 + - uid: 21813 components: - type: Transform rot: 1.5707963267948966 rad @@ -169565,7 +169586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21891 + - uid: 21814 components: - type: Transform rot: 1.5707963267948966 rad @@ -169573,7 +169594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21892 + - uid: 21815 components: - type: Transform rot: -1.5707963267948966 rad @@ -169581,7 +169602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21893 + - uid: 21816 components: - type: Transform rot: -1.5707963267948966 rad @@ -169589,7 +169610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21894 + - uid: 21817 components: - type: Transform rot: -1.5707963267948966 rad @@ -169597,7 +169618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21895 + - uid: 21818 components: - type: Transform rot: -1.5707963267948966 rad @@ -169605,7 +169626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21896 + - uid: 21819 components: - type: Transform rot: 3.141592653589793 rad @@ -169613,7 +169634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21897 + - uid: 21820 components: - type: Transform rot: -1.5707963267948966 rad @@ -169621,7 +169642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21898 + - uid: 21821 components: - type: Transform rot: 3.141592653589793 rad @@ -169629,7 +169650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21899 + - uid: 21822 components: - type: Transform rot: 3.141592653589793 rad @@ -169637,7 +169658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21900 + - uid: 21823 components: - type: Transform rot: 3.141592653589793 rad @@ -169645,7 +169666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21901 + - uid: 21824 components: - type: Transform rot: 3.141592653589793 rad @@ -169653,7 +169674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21902 + - uid: 21825 components: - type: Transform rot: 1.5707963267948966 rad @@ -169661,7 +169682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21903 + - uid: 21826 components: - type: Transform rot: 1.5707963267948966 rad @@ -169669,7 +169690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21904 + - uid: 21827 components: - type: Transform rot: 1.5707963267948966 rad @@ -169677,7 +169698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21905 + - uid: 21828 components: - type: Transform rot: 1.5707963267948966 rad @@ -169685,7 +169706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21906 + - uid: 21829 components: - type: Transform rot: 1.5707963267948966 rad @@ -169693,7 +169714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21907 + - uid: 21830 components: - type: Transform rot: -1.5707963267948966 rad @@ -169701,7 +169722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21908 + - uid: 21831 components: - type: Transform rot: -1.5707963267948966 rad @@ -169709,7 +169730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21909 + - uid: 21832 components: - type: Transform rot: -1.5707963267948966 rad @@ -169717,7 +169738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21910 + - uid: 21833 components: - type: Transform rot: -1.5707963267948966 rad @@ -169725,7 +169746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21911 + - uid: 21834 components: - type: Transform rot: -1.5707963267948966 rad @@ -169733,7 +169754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 21912 + - uid: 21835 components: - type: Transform rot: 1.5707963267948966 rad @@ -169741,7 +169762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21913 + - uid: 21836 components: - type: Transform rot: 1.5707963267948966 rad @@ -169749,7 +169770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21914 + - uid: 21837 components: - type: Transform rot: 1.5707963267948966 rad @@ -169757,7 +169778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21915 + - uid: 21838 components: - type: Transform rot: 1.5707963267948966 rad @@ -169765,7 +169786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21916 + - uid: 21839 components: - type: Transform rot: 1.5707963267948966 rad @@ -169773,7 +169794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21917 + - uid: 21840 components: - type: Transform rot: 1.5707963267948966 rad @@ -169781,7 +169802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21918 + - uid: 21841 components: - type: Transform rot: 1.5707963267948966 rad @@ -169789,7 +169810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21919 + - uid: 21842 components: - type: Transform rot: 1.5707963267948966 rad @@ -169797,7 +169818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21920 + - uid: 21843 components: - type: Transform rot: 1.5707963267948966 rad @@ -169805,7 +169826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21921 + - uid: 21844 components: - type: Transform rot: 1.5707963267948966 rad @@ -169813,7 +169834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21922 + - uid: 21845 components: - type: Transform rot: -1.5707963267948966 rad @@ -169821,7 +169842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21923 + - uid: 21846 components: - type: Transform rot: -1.5707963267948966 rad @@ -169829,7 +169850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21924 + - uid: 21847 components: - type: Transform rot: -1.5707963267948966 rad @@ -169837,7 +169858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21925 + - uid: 21848 components: - type: Transform rot: -1.5707963267948966 rad @@ -169845,7 +169866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21926 + - uid: 21849 components: - type: Transform rot: -1.5707963267948966 rad @@ -169853,7 +169874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21927 + - uid: 21850 components: - type: Transform rot: 3.141592653589793 rad @@ -169861,7 +169882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21928 + - uid: 21851 components: - type: Transform rot: 3.141592653589793 rad @@ -169869,7 +169890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21929 + - uid: 21852 components: - type: Transform rot: 3.141592653589793 rad @@ -169877,7 +169898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21930 + - uid: 21853 components: - type: Transform rot: 3.141592653589793 rad @@ -169885,7 +169906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21931 + - uid: 21854 components: - type: Transform rot: 3.141592653589793 rad @@ -169893,7 +169914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21932 + - uid: 21855 components: - type: Transform rot: 3.141592653589793 rad @@ -169901,7 +169922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21933 + - uid: 21856 components: - type: Transform rot: 1.5707963267948966 rad @@ -169909,7 +169930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21934 + - uid: 21857 components: - type: Transform rot: 1.5707963267948966 rad @@ -169917,7 +169938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21935 + - uid: 21858 components: - type: Transform rot: 1.5707963267948966 rad @@ -169925,7 +169946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21936 + - uid: 21859 components: - type: Transform rot: 3.141592653589793 rad @@ -169933,7 +169954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21937 + - uid: 21860 components: - type: Transform rot: 3.141592653589793 rad @@ -169941,7 +169962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21938 + - uid: 21861 components: - type: Transform rot: 3.141592653589793 rad @@ -169949,7 +169970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21939 + - uid: 21862 components: - type: Transform rot: 3.141592653589793 rad @@ -169957,7 +169978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21940 + - uid: 21863 components: - type: Transform rot: 3.141592653589793 rad @@ -169965,7 +169986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21941 + - uid: 21864 components: - type: Transform rot: 3.141592653589793 rad @@ -169973,7 +169994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21942 + - uid: 21865 components: - type: Transform rot: 3.141592653589793 rad @@ -169981,7 +170002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21943 + - uid: 21866 components: - type: Transform rot: 1.5707963267948966 rad @@ -169989,7 +170010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21944 + - uid: 21867 components: - type: Transform rot: 1.5707963267948966 rad @@ -169997,7 +170018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21945 + - uid: 21868 components: - type: Transform rot: 1.5707963267948966 rad @@ -170005,7 +170026,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21946 + - uid: 21869 components: - type: Transform rot: 1.5707963267948966 rad @@ -170013,7 +170034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21947 + - uid: 21870 components: - type: Transform rot: 1.5707963267948966 rad @@ -170021,7 +170042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21948 + - uid: 21871 components: - type: Transform rot: 1.5707963267948966 rad @@ -170029,7 +170050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21949 + - uid: 21872 components: - type: Transform rot: 1.5707963267948966 rad @@ -170037,7 +170058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21950 + - uid: 21873 components: - type: Transform rot: 1.5707963267948966 rad @@ -170045,7 +170066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21951 + - uid: 21874 components: - type: Transform rot: 1.5707963267948966 rad @@ -170053,7 +170074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21952 + - uid: 21875 components: - type: Transform rot: 1.5707963267948966 rad @@ -170061,35 +170082,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21953 + - uid: 21876 components: - type: Transform pos: 78.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21954 + - uid: 21877 components: - type: Transform pos: 78.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21955 + - uid: 21878 components: - type: Transform pos: 78.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21956 + - uid: 21879 components: - type: Transform pos: 78.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21957 + - uid: 21880 components: - type: Transform rot: 1.5707963267948966 rad @@ -170097,7 +170118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21958 + - uid: 21881 components: - type: Transform rot: 1.5707963267948966 rad @@ -170105,7 +170126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21959 + - uid: 21882 components: - type: Transform rot: 1.5707963267948966 rad @@ -170113,7 +170134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21960 + - uid: 21883 components: - type: Transform rot: 1.5707963267948966 rad @@ -170121,7 +170142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21961 + - uid: 21884 components: - type: Transform rot: 1.5707963267948966 rad @@ -170129,7 +170150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21962 + - uid: 21885 components: - type: Transform rot: 1.5707963267948966 rad @@ -170137,7 +170158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21963 + - uid: 21886 components: - type: Transform rot: 1.5707963267948966 rad @@ -170145,7 +170166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21964 + - uid: 21887 components: - type: Transform rot: 1.5707963267948966 rad @@ -170153,7 +170174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21965 + - uid: 21888 components: - type: Transform rot: 1.5707963267948966 rad @@ -170161,7 +170182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21966 + - uid: 21889 components: - type: Transform rot: 1.5707963267948966 rad @@ -170169,7 +170190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21967 + - uid: 21890 components: - type: Transform rot: 1.5707963267948966 rad @@ -170177,7 +170198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21968 + - uid: 21891 components: - type: Transform rot: 1.5707963267948966 rad @@ -170185,7 +170206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21969 + - uid: 21892 components: - type: Transform rot: 1.5707963267948966 rad @@ -170193,7 +170214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21970 + - uid: 21893 components: - type: Transform rot: 1.5707963267948966 rad @@ -170201,7 +170222,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21971 + - uid: 21894 components: - type: Transform rot: 1.5707963267948966 rad @@ -170209,7 +170230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21972 + - uid: 21895 components: - type: Transform rot: 1.5707963267948966 rad @@ -170217,7 +170238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21973 + - uid: 21896 components: - type: Transform rot: 1.5707963267948966 rad @@ -170225,7 +170246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21974 + - uid: 21897 components: - type: Transform rot: 1.5707963267948966 rad @@ -170233,7 +170254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21975 + - uid: 21898 components: - type: Transform rot: 1.5707963267948966 rad @@ -170241,7 +170262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21976 + - uid: 21899 components: - type: Transform rot: 1.5707963267948966 rad @@ -170249,7 +170270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21977 + - uid: 21900 components: - type: Transform rot: 1.5707963267948966 rad @@ -170257,7 +170278,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21978 + - uid: 21901 components: - type: Transform rot: 1.5707963267948966 rad @@ -170265,7 +170286,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21979 + - uid: 21902 components: - type: Transform rot: 1.5707963267948966 rad @@ -170273,7 +170294,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21980 + - uid: 21903 components: - type: Transform rot: 1.5707963267948966 rad @@ -170281,7 +170302,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21981 + - uid: 21904 components: - type: Transform rot: 1.5707963267948966 rad @@ -170289,7 +170310,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21982 + - uid: 21905 components: - type: Transform rot: 1.5707963267948966 rad @@ -170297,14 +170318,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21983 + - uid: 21906 components: - type: Transform pos: 26.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21984 + - uid: 21907 components: - type: Transform rot: -1.5707963267948966 rad @@ -170312,7 +170333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21985 + - uid: 21908 components: - type: Transform rot: -1.5707963267948966 rad @@ -170320,7 +170341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21986 + - uid: 21909 components: - type: Transform rot: 1.5707963267948966 rad @@ -170328,7 +170349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21987 + - uid: 21910 components: - type: Transform rot: 1.5707963267948966 rad @@ -170336,7 +170357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21988 + - uid: 21911 components: - type: Transform rot: 1.5707963267948966 rad @@ -170344,7 +170365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21989 + - uid: 21912 components: - type: Transform rot: 1.5707963267948966 rad @@ -170352,7 +170373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21990 + - uid: 21913 components: - type: Transform rot: 1.5707963267948966 rad @@ -170360,7 +170381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21991 + - uid: 21914 components: - type: Transform rot: 1.5707963267948966 rad @@ -170368,13 +170389,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21992 + - uid: 21915 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-45.5 parent: 2 - - uid: 21993 + - uid: 21916 components: - type: Transform rot: 1.5707963267948966 rad @@ -170382,7 +170403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21994 + - uid: 21917 components: - type: Transform rot: -1.5707963267948966 rad @@ -170390,7 +170411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21995 + - uid: 21918 components: - type: Transform rot: 3.141592653589793 rad @@ -170398,789 +170419,789 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39272 + - uid: 39099 components: - type: Transform pos: -18.5,33.5 - parent: 38584 - - uid: 39273 + parent: 38411 + - uid: 39100 components: - type: Transform pos: -18.5,32.5 - parent: 38584 - - uid: 39274 + parent: 38411 + - uid: 39101 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,4.5 - parent: 38584 - - uid: 39275 + parent: 38411 + - uid: 39102 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,2.5 - parent: 38584 - - uid: 39276 + parent: 38411 + - uid: 39103 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,4.5 - parent: 38584 - - uid: 39277 + parent: 38411 + - uid: 39104 components: - type: Transform pos: 11.5,3.5 - parent: 38584 - - uid: 39278 + parent: 38411 + - uid: 39105 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,6.5 - parent: 38584 - - uid: 39279 + parent: 38411 + - uid: 39106 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,2.5 - parent: 38584 - - uid: 39280 + parent: 38411 + - uid: 39107 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39281 + - uid: 39108 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39282 + - uid: 39109 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39283 + - uid: 39110 components: - type: Transform pos: -15.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39284 + - uid: 39111 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39285 + - uid: 39112 components: - type: Transform pos: -13.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39286 + - uid: 39113 components: - type: Transform pos: -13.5,-1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39287 + - uid: 39114 components: - type: Transform pos: -13.5,-0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39288 + - uid: 39115 components: - type: Transform pos: -13.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39289 + - uid: 39116 components: - type: Transform pos: -13.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39290 + - uid: 39117 components: - type: Transform pos: -11.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39291 + - uid: 39118 components: - type: Transform pos: -11.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39292 + - uid: 39119 components: - type: Transform pos: -11.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39293 + - uid: 39120 components: - type: Transform pos: -11.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39294 + - uid: 39121 components: - type: Transform pos: -11.5,-1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39295 + - uid: 39122 components: - type: Transform pos: -11.5,-0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39296 + - uid: 39123 components: - type: Transform pos: -11.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39297 + - uid: 39124 components: - type: Transform pos: -11.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39298 + - uid: 39125 components: - type: Transform pos: -11.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39299 + - uid: 39126 components: - type: Transform pos: -11.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39300 + - uid: 39127 components: - type: Transform pos: -11.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39301 + - uid: 39128 components: - type: Transform pos: -11.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39302 + - uid: 39129 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39303 + - uid: 39130 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39304 + - uid: 39131 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39305 + - uid: 39132 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39306 + - uid: 39133 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39307 + - uid: 39134 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39308 + - uid: 39135 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39309 + - uid: 39136 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,10.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39310 + - uid: 39137 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39311 + - uid: 39138 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39312 + - uid: 39139 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39313 + - uid: 39140 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39314 + - uid: 39141 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39315 + - uid: 39142 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39316 + - uid: 39143 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39317 + - uid: 39144 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39318 + - uid: 39145 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39319 + - uid: 39146 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39320 + - uid: 39147 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39321 + - uid: 39148 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39322 + - uid: 39149 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39323 + - uid: 39150 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39324 + - uid: 39151 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39325 + - uid: 39152 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39326 + - uid: 39153 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39327 + - uid: 39154 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39328 + - uid: 39155 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39329 + - uid: 39156 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39330 + - uid: 39157 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39331 + - uid: 39158 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39332 + - uid: 39159 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39333 + - uid: 39160 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39334 + - uid: 39161 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39335 + - uid: 39162 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39336 + - uid: 39163 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39337 + - uid: 39164 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39338 + - uid: 39165 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39339 + - uid: 39166 components: - type: Transform pos: -1.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39340 + - uid: 39167 components: - type: Transform pos: -1.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39341 + - uid: 39168 components: - type: Transform pos: -1.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39342 + - uid: 39169 components: - type: Transform pos: -1.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39343 + - uid: 39170 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39344 + - uid: 39171 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39345 + - uid: 39172 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39346 + - uid: 39173 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39347 + - uid: 39174 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39348 + - uid: 39175 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39349 + - uid: 39176 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39350 + - uid: 39177 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39351 + - uid: 39178 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39352 + - uid: 39179 components: - type: Transform pos: 10.5,4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39353 + - uid: 39180 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39354 + - uid: 39181 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39355 + - uid: 39182 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39356 + - uid: 39183 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39357 + - uid: 39184 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39358 + - uid: 39185 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39359 + - uid: 39186 components: - type: Transform pos: 0.5,0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39360 + - uid: 39187 components: - type: Transform pos: 0.5,-0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39361 + - uid: 39188 components: - type: Transform pos: 0.5,-1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39362 + - uid: 39189 components: - type: Transform pos: 0.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39363 + - uid: 39190 components: - type: Transform pos: 0.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39364 + - uid: 39191 components: - type: Transform pos: 0.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39365 + - uid: 39192 components: - type: Transform pos: 0.5,-6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39366 + - uid: 39193 components: - type: Transform pos: 0.5,-7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39367 + - uid: 39194 components: - type: Transform pos: -1.5,-0.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39368 + - uid: 39195 components: - type: Transform pos: -1.5,-1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39369 + - uid: 39196 components: - type: Transform pos: -1.5,-3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39370 + - uid: 39197 components: - type: Transform pos: -1.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39371 + - uid: 39198 components: - type: Transform pos: -1.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39372 + - uid: 39199 components: - type: Transform pos: -1.5,-6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39373 + - uid: 39200 components: - type: Transform pos: -1.5,-7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39374 + - uid: 39201 components: - type: Transform pos: -1.5,-8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39375 + - uid: 39202 components: - type: Transform pos: -2.5,2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39376 + - uid: 39203 components: - type: Transform pos: -2.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasPipeTJunction entities: - - uid: 21996 + - uid: 21919 components: - type: Transform rot: 1.5707963267948966 rad @@ -171188,7 +171209,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21997 + - uid: 21920 components: - type: Transform rot: 1.5707963267948966 rad @@ -171196,7 +171217,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21998 + - uid: 21921 components: - type: Transform rot: 3.141592653589793 rad @@ -171204,7 +171225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21999 + - uid: 21922 components: - type: Transform rot: -1.5707963267948966 rad @@ -171212,7 +171233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22000 + - uid: 21923 components: - type: Transform rot: -1.5707963267948966 rad @@ -171220,7 +171241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22001 + - uid: 21924 components: - type: Transform rot: -1.5707963267948966 rad @@ -171228,7 +171249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22002 + - uid: 21925 components: - type: Transform rot: 1.5707963267948966 rad @@ -171236,7 +171257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22003 + - uid: 21926 components: - type: Transform rot: 3.141592653589793 rad @@ -171244,7 +171265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22004 + - uid: 21927 components: - type: Transform rot: -1.5707963267948966 rad @@ -171252,7 +171273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 22005 + - uid: 21928 components: - type: Transform rot: 1.5707963267948966 rad @@ -171260,7 +171281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22006 + - uid: 21929 components: - type: Transform rot: -1.5707963267948966 rad @@ -171268,14 +171289,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22007 + - uid: 21930 components: - type: Transform pos: -3.5,50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22008 + - uid: 21931 components: - type: Transform rot: 3.141592653589793 rad @@ -171283,7 +171304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22009 + - uid: 21932 components: - type: Transform rot: -1.5707963267948966 rad @@ -171291,7 +171312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22010 + - uid: 21933 components: - type: Transform rot: 1.5707963267948966 rad @@ -171299,7 +171320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22011 + - uid: 21934 components: - type: Transform rot: 3.141592653589793 rad @@ -171307,21 +171328,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22012 + - uid: 21935 components: - type: Transform pos: 21.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22013 + - uid: 21936 components: - type: Transform pos: 35.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22014 + - uid: 21937 components: - type: Transform rot: 3.141592653589793 rad @@ -171329,7 +171350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22015 + - uid: 21938 components: - type: Transform rot: -1.5707963267948966 rad @@ -171337,7 +171358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22016 + - uid: 21939 components: - type: Transform rot: 3.141592653589793 rad @@ -171345,7 +171366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22017 + - uid: 21940 components: - type: Transform rot: -1.5707963267948966 rad @@ -171353,7 +171374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22018 + - uid: 21941 components: - type: Transform rot: 3.141592653589793 rad @@ -171361,7 +171382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22019 + - uid: 21942 components: - type: Transform rot: 3.141592653589793 rad @@ -171369,7 +171390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22020 + - uid: 21943 components: - type: Transform rot: 1.5707963267948966 rad @@ -171377,7 +171398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22021 + - uid: 21944 components: - type: Transform rot: 1.5707963267948966 rad @@ -171385,7 +171406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22022 + - uid: 21945 components: - type: Transform rot: -1.5707963267948966 rad @@ -171393,7 +171414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22023 + - uid: 21946 components: - type: Transform rot: -1.5707963267948966 rad @@ -171401,7 +171422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22024 + - uid: 21947 components: - type: Transform rot: 1.5707963267948966 rad @@ -171409,7 +171430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22025 + - uid: 21948 components: - type: Transform rot: -1.5707963267948966 rad @@ -171417,7 +171438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22026 + - uid: 21949 components: - type: Transform rot: 1.5707963267948966 rad @@ -171425,7 +171446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22027 + - uid: 21950 components: - type: Transform rot: 3.141592653589793 rad @@ -171433,7 +171454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22028 + - uid: 21951 components: - type: Transform rot: 1.5707963267948966 rad @@ -171441,7 +171462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22029 + - uid: 21952 components: - type: Transform rot: -1.5707963267948966 rad @@ -171449,21 +171470,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22030 + - uid: 21953 components: - type: Transform pos: -62.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22031 + - uid: 21954 components: - type: Transform pos: -71.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22032 + - uid: 21955 components: - type: Transform rot: 1.5707963267948966 rad @@ -171471,7 +171492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22033 + - uid: 21956 components: - type: Transform rot: -1.5707963267948966 rad @@ -171479,14 +171500,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22034 + - uid: 21957 components: - type: Transform pos: -47.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22035 + - uid: 21958 components: - type: Transform rot: 1.5707963267948966 rad @@ -171494,7 +171515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22036 + - uid: 21959 components: - type: Transform rot: -1.5707963267948966 rad @@ -171502,7 +171523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22037 + - uid: 21960 components: - type: Transform rot: -1.5707963267948966 rad @@ -171510,7 +171531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22038 + - uid: 21961 components: - type: Transform rot: 1.5707963267948966 rad @@ -171518,7 +171539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22039 + - uid: 21962 components: - type: Transform rot: 3.141592653589793 rad @@ -171526,14 +171547,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22040 + - uid: 21963 components: - type: Transform pos: -59.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22041 + - uid: 21964 components: - type: Transform rot: 3.141592653589793 rad @@ -171541,21 +171562,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22042 + - uid: 21965 components: - type: Transform pos: -68.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22043 + - uid: 21966 components: - type: Transform pos: -70.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22044 + - uid: 21967 components: - type: Transform rot: -1.5707963267948966 rad @@ -171563,7 +171584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22045 + - uid: 21968 components: - type: Transform rot: 3.141592653589793 rad @@ -171571,7 +171592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22046 + - uid: 21969 components: - type: Transform rot: -1.5707963267948966 rad @@ -171579,7 +171600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22047 + - uid: 21970 components: - type: Transform rot: -1.5707963267948966 rad @@ -171587,7 +171608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22048 + - uid: 21971 components: - type: Transform rot: 3.141592653589793 rad @@ -171595,7 +171616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22049 + - uid: 21972 components: - type: Transform rot: 3.141592653589793 rad @@ -171603,28 +171624,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22050 + - uid: 21973 components: - type: Transform pos: -31.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22051 + - uid: 21974 components: - type: Transform pos: -32.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22052 + - uid: 21975 components: - type: Transform pos: -29.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22053 + - uid: 21976 components: - type: Transform rot: 1.5707963267948966 rad @@ -171632,7 +171653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22054 + - uid: 21977 components: - type: Transform rot: 1.5707963267948966 rad @@ -171640,14 +171661,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22055 + - uid: 21978 components: - type: Transform pos: -28.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22056 + - uid: 21979 components: - type: Transform rot: 1.5707963267948966 rad @@ -171655,7 +171676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22057 + - uid: 21980 components: - type: Transform rot: -1.5707963267948966 rad @@ -171663,7 +171684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22058 + - uid: 21981 components: - type: Transform rot: 3.141592653589793 rad @@ -171671,7 +171692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22059 + - uid: 21982 components: - type: Transform rot: 3.141592653589793 rad @@ -171679,7 +171700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22060 + - uid: 21983 components: - type: Transform rot: -1.5707963267948966 rad @@ -171687,7 +171708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22061 + - uid: 21984 components: - type: Transform rot: -1.5707963267948966 rad @@ -171695,7 +171716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22062 + - uid: 21985 components: - type: Transform rot: -1.5707963267948966 rad @@ -171703,7 +171724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22063 + - uid: 21986 components: - type: Transform rot: 1.5707963267948966 rad @@ -171711,7 +171732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22064 + - uid: 21987 components: - type: Transform rot: 1.5707963267948966 rad @@ -171719,7 +171740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22065 + - uid: 21988 components: - type: Transform rot: 1.5707963267948966 rad @@ -171727,7 +171748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22066 + - uid: 21989 components: - type: Transform rot: -1.5707963267948966 rad @@ -171735,7 +171756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22067 + - uid: 21990 components: - type: Transform rot: -1.5707963267948966 rad @@ -171743,77 +171764,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22068 + - uid: 21991 components: - type: Transform pos: -12.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22069 + - uid: 21992 components: - type: Transform pos: -13.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22070 + - uid: 21993 components: - type: Transform pos: -9.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22071 + - uid: 21994 components: - type: Transform pos: -6.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22072 + - uid: 21995 components: - type: Transform pos: -5.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22073 + - uid: 21996 components: - type: Transform pos: -1.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22074 + - uid: 21997 components: - type: Transform pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22075 + - uid: 21998 components: - type: Transform pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22076 + - uid: 21999 components: - type: Transform pos: 5.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22077 + - uid: 22000 components: - type: Transform pos: 4.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22078 + - uid: 22001 components: - type: Transform rot: 3.141592653589793 rad @@ -171821,7 +171842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22079 + - uid: 22002 components: - type: Transform rot: 3.141592653589793 rad @@ -171829,7 +171850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22080 + - uid: 22003 components: - type: Transform rot: 3.141592653589793 rad @@ -171837,7 +171858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22081 + - uid: 22004 components: - type: Transform rot: 1.5707963267948966 rad @@ -171845,7 +171866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22082 + - uid: 22005 components: - type: Transform rot: 1.5707963267948966 rad @@ -171853,7 +171874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22083 + - uid: 22006 components: - type: Transform rot: -1.5707963267948966 rad @@ -171861,28 +171882,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22084 + - uid: 22007 components: - type: Transform pos: -3.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22085 + - uid: 22008 components: - type: Transform pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22086 + - uid: 22009 components: - type: Transform pos: -1.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22087 + - uid: 22010 components: - type: Transform rot: 3.141592653589793 rad @@ -171890,14 +171911,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22088 + - uid: 22011 components: - type: Transform pos: 2.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22089 + - uid: 22012 components: - type: Transform rot: 3.141592653589793 rad @@ -171905,28 +171926,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22090 + - uid: 22013 components: - type: Transform pos: -9.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22091 + - uid: 22014 components: - type: Transform pos: -13.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22092 + - uid: 22015 components: - type: Transform pos: -0.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22093 + - uid: 22016 components: - type: Transform rot: 3.141592653589793 rad @@ -171934,7 +171955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22094 + - uid: 22017 components: - type: Transform rot: -1.5707963267948966 rad @@ -171942,7 +171963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22095 + - uid: 22018 components: - type: Transform rot: 1.5707963267948966 rad @@ -171950,7 +171971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22096 + - uid: 22019 components: - type: Transform rot: 1.5707963267948966 rad @@ -171958,7 +171979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22097 + - uid: 22020 components: - type: Transform rot: 1.5707963267948966 rad @@ -171966,14 +171987,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22098 + - uid: 22021 components: - type: Transform pos: 22.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22099 + - uid: 22022 components: - type: Transform rot: 3.141592653589793 rad @@ -171981,14 +172002,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22100 + - uid: 22023 components: - type: Transform pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22101 + - uid: 22024 components: - type: Transform rot: -1.5707963267948966 rad @@ -171996,7 +172017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22102 + - uid: 22025 components: - type: Transform rot: -1.5707963267948966 rad @@ -172004,7 +172025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22103 + - uid: 22026 components: - type: Transform rot: -1.5707963267948966 rad @@ -172012,21 +172033,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22104 + - uid: 22027 components: - type: Transform pos: 10.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22105 + - uid: 22028 components: - type: Transform pos: 8.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22106 + - uid: 22029 components: - type: Transform rot: 1.5707963267948966 rad @@ -172034,7 +172055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22107 + - uid: 22030 components: - type: Transform rot: 1.5707963267948966 rad @@ -172042,7 +172063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22108 + - uid: 22031 components: - type: Transform rot: 3.141592653589793 rad @@ -172050,14 +172071,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22109 + - uid: 22032 components: - type: Transform pos: -9.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22110 + - uid: 22033 components: - type: Transform rot: -1.5707963267948966 rad @@ -172065,7 +172086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22111 + - uid: 22034 components: - type: Transform rot: 1.5707963267948966 rad @@ -172073,7 +172094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22112 + - uid: 22035 components: - type: Transform rot: 1.5707963267948966 rad @@ -172081,7 +172102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22113 + - uid: 22036 components: - type: Transform rot: 3.141592653589793 rad @@ -172089,14 +172110,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22114 + - uid: 22037 components: - type: Transform pos: -0.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22115 + - uid: 22038 components: - type: Transform rot: 3.141592653589793 rad @@ -172104,7 +172125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22116 + - uid: 22039 components: - type: Transform rot: 3.141592653589793 rad @@ -172112,7 +172133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22117 + - uid: 22040 components: - type: Transform rot: 3.141592653589793 rad @@ -172120,7 +172141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22118 + - uid: 22041 components: - type: Transform rot: 1.5707963267948966 rad @@ -172128,7 +172149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22119 + - uid: 22042 components: - type: Transform rot: -1.5707963267948966 rad @@ -172136,7 +172157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22120 + - uid: 22043 components: - type: Transform rot: -1.5707963267948966 rad @@ -172144,7 +172165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22121 + - uid: 22044 components: - type: Transform rot: 1.5707963267948966 rad @@ -172152,7 +172173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22122 + - uid: 22045 components: - type: Transform rot: 1.5707963267948966 rad @@ -172160,7 +172181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22123 + - uid: 22046 components: - type: Transform rot: 1.5707963267948966 rad @@ -172168,7 +172189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22124 + - uid: 22047 components: - type: Transform rot: 1.5707963267948966 rad @@ -172176,7 +172197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22125 + - uid: 22048 components: - type: Transform rot: 1.5707963267948966 rad @@ -172184,7 +172205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22126 + - uid: 22049 components: - type: Transform rot: -1.5707963267948966 rad @@ -172192,7 +172213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22127 + - uid: 22050 components: - type: Transform rot: -1.5707963267948966 rad @@ -172200,21 +172221,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22128 + - uid: 22051 components: - type: Transform pos: -30.5,33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22129 + - uid: 22052 components: - type: Transform pos: -19.5,36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22130 + - uid: 22053 components: - type: Transform rot: 3.141592653589793 rad @@ -172222,7 +172243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22131 + - uid: 22054 components: - type: Transform rot: 3.141592653589793 rad @@ -172230,14 +172251,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22132 + - uid: 22055 components: - type: Transform pos: -17.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22133 + - uid: 22056 components: - type: Transform rot: 3.141592653589793 rad @@ -172245,7 +172266,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22134 + - uid: 22057 components: - type: Transform rot: 1.5707963267948966 rad @@ -172253,7 +172274,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22135 + - uid: 22058 components: - type: Transform rot: 1.5707963267948966 rad @@ -172261,7 +172282,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22136 + - uid: 22059 components: - type: Transform rot: 3.141592653589793 rad @@ -172269,14 +172290,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22137 + - uid: 22060 components: - type: Transform pos: -7.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22138 + - uid: 22061 components: - type: Transform rot: -1.5707963267948966 rad @@ -172284,7 +172305,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22139 + - uid: 22062 components: - type: Transform rot: 1.5707963267948966 rad @@ -172292,7 +172313,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22140 + - uid: 22063 components: - type: Transform rot: 3.141592653589793 rad @@ -172300,7 +172321,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22141 + - uid: 22064 components: - type: Transform rot: 1.5707963267948966 rad @@ -172308,14 +172329,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22142 + - uid: 22065 components: - type: Transform pos: -33.5,49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22143 + - uid: 22066 components: - type: Transform rot: 3.141592653589793 rad @@ -172323,7 +172344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22144 + - uid: 22067 components: - type: Transform rot: 3.141592653589793 rad @@ -172331,7 +172352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22145 + - uid: 22068 components: - type: Transform rot: 1.5707963267948966 rad @@ -172339,7 +172360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22146 + - uid: 22069 components: - type: Transform rot: 1.5707963267948966 rad @@ -172347,7 +172368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22147 + - uid: 22070 components: - type: Transform rot: 1.5707963267948966 rad @@ -172355,7 +172376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22148 + - uid: 22071 components: - type: Transform rot: -1.5707963267948966 rad @@ -172363,14 +172384,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22149 + - uid: 22072 components: - type: Transform pos: -14.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22150 + - uid: 22073 components: - type: Transform rot: 3.141592653589793 rad @@ -172378,7 +172399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22151 + - uid: 22074 components: - type: Transform rot: 3.141592653589793 rad @@ -172386,7 +172407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22152 + - uid: 22075 components: - type: Transform rot: 3.141592653589793 rad @@ -172394,7 +172415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22153 + - uid: 22076 components: - type: Transform rot: -1.5707963267948966 rad @@ -172402,7 +172423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22154 + - uid: 22077 components: - type: Transform rot: 1.5707963267948966 rad @@ -172410,7 +172431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22155 + - uid: 22078 components: - type: Transform rot: -1.5707963267948966 rad @@ -172418,42 +172439,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22156 + - uid: 22079 components: - type: Transform pos: -5.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22157 + - uid: 22080 components: - type: Transform pos: -3.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22158 + - uid: 22081 components: - type: Transform pos: -17.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22159 + - uid: 22082 components: - type: Transform pos: -19.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22160 + - uid: 22083 components: - type: Transform pos: -15.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22161 + - uid: 22084 components: - type: Transform rot: 3.141592653589793 rad @@ -172461,7 +172482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22162 + - uid: 22085 components: - type: Transform rot: 3.141592653589793 rad @@ -172469,7 +172490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22163 + - uid: 22086 components: - type: Transform rot: 3.141592653589793 rad @@ -172477,7 +172498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22164 + - uid: 22087 components: - type: Transform rot: 3.141592653589793 rad @@ -172485,28 +172506,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22165 + - uid: 22088 components: - type: Transform pos: -1.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22166 + - uid: 22089 components: - type: Transform pos: -24.5,69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22167 + - uid: 22090 components: - type: Transform pos: 6.5,67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22168 + - uid: 22091 components: - type: Transform rot: 1.5707963267948966 rad @@ -172514,7 +172535,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22169 + - uid: 22092 components: - type: Transform rot: 1.5707963267948966 rad @@ -172522,7 +172543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22170 + - uid: 22093 components: - type: Transform rot: 1.5707963267948966 rad @@ -172530,7 +172551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22171 + - uid: 22094 components: - type: Transform rot: 1.5707963267948966 rad @@ -172538,7 +172559,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22172 + - uid: 22095 components: - type: Transform rot: 3.141592653589793 rad @@ -172546,7 +172567,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22173 + - uid: 22096 components: - type: Transform rot: 1.5707963267948966 rad @@ -172554,7 +172575,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22174 + - uid: 22097 components: - type: Transform rot: 1.5707963267948966 rad @@ -172562,14 +172583,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22175 + - uid: 22098 components: - type: Transform pos: 9.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22176 + - uid: 22099 components: - type: Transform rot: 3.141592653589793 rad @@ -172577,7 +172598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22177 + - uid: 22100 components: - type: Transform rot: 3.141592653589793 rad @@ -172585,7 +172606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22178 + - uid: 22101 components: - type: Transform rot: 1.5707963267948966 rad @@ -172593,7 +172614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22179 + - uid: 22102 components: - type: Transform rot: 3.141592653589793 rad @@ -172601,7 +172622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22180 + - uid: 22103 components: - type: Transform rot: 1.5707963267948966 rad @@ -172609,7 +172630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22181 + - uid: 22104 components: - type: Transform rot: 1.5707963267948966 rad @@ -172617,7 +172638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22182 + - uid: 22105 components: - type: Transform rot: -1.5707963267948966 rad @@ -172625,7 +172646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22183 + - uid: 22106 components: - type: Transform rot: -1.5707963267948966 rad @@ -172633,7 +172654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22184 + - uid: 22107 components: - type: Transform rot: 1.5707963267948966 rad @@ -172641,7 +172662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22185 + - uid: 22108 components: - type: Transform rot: -1.5707963267948966 rad @@ -172649,7 +172670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22186 + - uid: 22109 components: - type: Transform rot: 1.5707963267948966 rad @@ -172657,7 +172678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22187 + - uid: 22110 components: - type: Transform rot: -1.5707963267948966 rad @@ -172665,7 +172686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22188 + - uid: 22111 components: - type: Transform rot: 3.141592653589793 rad @@ -172673,7 +172694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22189 + - uid: 22112 components: - type: Transform rot: 1.5707963267948966 rad @@ -172681,14 +172702,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22190 + - uid: 22113 components: - type: Transform pos: 31.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22191 + - uid: 22114 components: - type: Transform rot: -1.5707963267948966 rad @@ -172696,7 +172717,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22192 + - uid: 22115 components: - type: Transform rot: 3.141592653589793 rad @@ -172704,7 +172725,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22193 + - uid: 22116 components: - type: Transform rot: 1.5707963267948966 rad @@ -172712,7 +172733,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22194 + - uid: 22117 components: - type: Transform rot: -1.5707963267948966 rad @@ -172720,7 +172741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22195 + - uid: 22118 components: - type: Transform rot: 3.141592653589793 rad @@ -172728,7 +172749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22196 + - uid: 22119 components: - type: Transform rot: -1.5707963267948966 rad @@ -172736,7 +172757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22197 + - uid: 22120 components: - type: Transform rot: -1.5707963267948966 rad @@ -172744,7 +172765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22198 + - uid: 22121 components: - type: Transform rot: 1.5707963267948966 rad @@ -172752,7 +172773,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22199 + - uid: 22122 components: - type: Transform rot: 3.141592653589793 rad @@ -172760,7 +172781,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22200 + - uid: 22123 components: - type: Transform rot: -1.5707963267948966 rad @@ -172768,7 +172789,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22201 + - uid: 22124 components: - type: Transform rot: -1.5707963267948966 rad @@ -172776,7 +172797,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22202 + - uid: 22125 components: - type: Transform rot: 3.141592653589793 rad @@ -172784,7 +172805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22203 + - uid: 22126 components: - type: Transform rot: 1.5707963267948966 rad @@ -172792,21 +172813,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22204 + - uid: 22127 components: - type: Transform pos: 52.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22205 + - uid: 22128 components: - type: Transform pos: 46.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22206 + - uid: 22129 components: - type: Transform rot: -1.5707963267948966 rad @@ -172814,35 +172835,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22207 + - uid: 22130 components: - type: Transform pos: 47.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22208 + - uid: 22131 components: - type: Transform pos: 52.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22209 + - uid: 22132 components: - type: Transform pos: 61.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22210 + - uid: 22133 components: - type: Transform pos: 61.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22211 + - uid: 22134 components: - type: Transform rot: 1.5707963267948966 rad @@ -172850,7 +172871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22212 + - uid: 22135 components: - type: Transform rot: -1.5707963267948966 rad @@ -172858,14 +172879,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22213 + - uid: 22136 components: - type: Transform pos: 83.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22214 + - uid: 22137 components: - type: Transform rot: 3.141592653589793 rad @@ -172873,7 +172894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22215 + - uid: 22138 components: - type: Transform rot: 1.5707963267948966 rad @@ -172881,7 +172902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22216 + - uid: 22139 components: - type: Transform rot: -1.5707963267948966 rad @@ -172889,7 +172910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22217 + - uid: 22140 components: - type: Transform rot: -1.5707963267948966 rad @@ -172897,49 +172918,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22218 + - uid: 22141 components: - type: Transform pos: 57.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22219 + - uid: 22142 components: - type: Transform pos: 25.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22220 + - uid: 22143 components: - type: Transform pos: 39.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22221 + - uid: 22144 components: - type: Transform pos: 34.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22222 + - uid: 22145 components: - type: Transform pos: 44.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22223 + - uid: 22146 components: - type: Transform pos: 48.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22224 + - uid: 22147 components: - type: Transform rot: 3.141592653589793 rad @@ -172947,7 +172968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22225 + - uid: 22148 components: - type: Transform rot: 3.141592653589793 rad @@ -172955,7 +172976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22226 + - uid: 22149 components: - type: Transform rot: 3.141592653589793 rad @@ -172963,14 +172984,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22227 + - uid: 22150 components: - type: Transform pos: 57.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22228 + - uid: 22151 components: - type: Transform rot: 1.5707963267948966 rad @@ -172978,7 +172999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22229 + - uid: 22152 components: - type: Transform rot: -1.5707963267948966 rad @@ -172986,7 +173007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22230 + - uid: 22153 components: - type: Transform rot: -1.5707963267948966 rad @@ -172994,7 +173015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22231 + - uid: 22154 components: - type: Transform rot: 1.5707963267948966 rad @@ -173002,7 +173023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22232 + - uid: 22155 components: - type: Transform rot: -1.5707963267948966 rad @@ -173010,7 +173031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22233 + - uid: 22156 components: - type: Transform rot: 1.5707963267948966 rad @@ -173018,7 +173039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22234 + - uid: 22157 components: - type: Transform rot: -1.5707963267948966 rad @@ -173026,21 +173047,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22235 + - uid: 22158 components: - type: Transform pos: 12.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22236 + - uid: 22159 components: - type: Transform pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22237 + - uid: 22160 components: - type: Transform rot: 1.5707963267948966 rad @@ -173048,7 +173069,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22238 + - uid: 22161 components: - type: Transform rot: -1.5707963267948966 rad @@ -173056,7 +173077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22239 + - uid: 22162 components: - type: Transform rot: 1.5707963267948966 rad @@ -173064,7 +173085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22240 + - uid: 22163 components: - type: Transform rot: -1.5707963267948966 rad @@ -173072,7 +173093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22241 + - uid: 22164 components: - type: Transform rot: 3.141592653589793 rad @@ -173080,7 +173101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22242 + - uid: 22165 components: - type: Transform rot: -1.5707963267948966 rad @@ -173088,7 +173109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22243 + - uid: 22166 components: - type: Transform rot: -1.5707963267948966 rad @@ -173096,7 +173117,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22244 + - uid: 22167 components: - type: Transform rot: -1.5707963267948966 rad @@ -173104,7 +173125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22245 + - uid: 22168 components: - type: Transform rot: 1.5707963267948966 rad @@ -173112,14 +173133,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22246 + - uid: 22169 components: - type: Transform pos: 21.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22247 + - uid: 22170 components: - type: Transform rot: 3.141592653589793 rad @@ -173127,7 +173148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22248 + - uid: 22171 components: - type: Transform rot: 3.141592653589793 rad @@ -173135,7 +173156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22249 + - uid: 22172 components: - type: Transform rot: -1.5707963267948966 rad @@ -173143,7 +173164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22250 + - uid: 22173 components: - type: Transform rot: 3.141592653589793 rad @@ -173151,7 +173172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22251 + - uid: 22174 components: - type: Transform rot: 3.141592653589793 rad @@ -173159,7 +173180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22252 + - uid: 22175 components: - type: Transform rot: 3.141592653589793 rad @@ -173167,14 +173188,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22253 + - uid: 22176 components: - type: Transform pos: 26.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22254 + - uid: 22177 components: - type: Transform rot: 1.5707963267948966 rad @@ -173182,7 +173203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22255 + - uid: 22178 components: - type: Transform rot: 1.5707963267948966 rad @@ -173190,7 +173211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22256 + - uid: 22179 components: - type: Transform rot: -1.5707963267948966 rad @@ -173198,7 +173219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22257 + - uid: 22180 components: - type: Transform rot: 1.5707963267948966 rad @@ -173206,14 +173227,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22258 + - uid: 22181 components: - type: Transform pos: -14.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22259 + - uid: 22182 components: - type: Transform rot: -1.5707963267948966 rad @@ -173221,7 +173242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22260 + - uid: 22183 components: - type: Transform rot: 1.5707963267948966 rad @@ -173229,21 +173250,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22261 + - uid: 22184 components: - type: Transform pos: -7.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22262 + - uid: 22185 components: - type: Transform pos: -6.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22263 + - uid: 22186 components: - type: Transform rot: -1.5707963267948966 rad @@ -173251,7 +173272,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22264 + - uid: 22187 components: - type: Transform rot: 1.5707963267948966 rad @@ -173259,7 +173280,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22265 + - uid: 22188 components: - type: Transform rot: -1.5707963267948966 rad @@ -173267,7 +173288,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22266 + - uid: 22189 components: - type: Transform rot: -1.5707963267948966 rad @@ -173275,7 +173296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22267 + - uid: 22190 components: - type: Transform rot: 1.5707963267948966 rad @@ -173283,7 +173304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22268 + - uid: 22191 components: - type: Transform rot: -1.5707963267948966 rad @@ -173291,14 +173312,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22269 + - uid: 22192 components: - type: Transform pos: -16.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22270 + - uid: 22193 components: - type: Transform rot: 1.5707963267948966 rad @@ -173306,14 +173327,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22271 + - uid: 22194 components: - type: Transform pos: -19.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22272 + - uid: 22195 components: - type: Transform rot: 3.141592653589793 rad @@ -173321,7 +173342,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22273 + - uid: 22196 components: - type: Transform rot: 3.141592653589793 rad @@ -173329,7 +173350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22274 + - uid: 22197 components: - type: Transform rot: 1.5707963267948966 rad @@ -173337,7 +173358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22275 + - uid: 22198 components: - type: Transform rot: -1.5707963267948966 rad @@ -173345,7 +173366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22276 + - uid: 22199 components: - type: Transform rot: -1.5707963267948966 rad @@ -173353,7 +173374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22277 + - uid: 22200 components: - type: Transform rot: 1.5707963267948966 rad @@ -173361,7 +173382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22278 + - uid: 22201 components: - type: Transform rot: -1.5707963267948966 rad @@ -173369,7 +173390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22279 + - uid: 22202 components: - type: Transform rot: 3.141592653589793 rad @@ -173377,7 +173398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22280 + - uid: 22203 components: - type: Transform rot: 3.141592653589793 rad @@ -173385,7 +173406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22281 + - uid: 22204 components: - type: Transform rot: 3.141592653589793 rad @@ -173393,7 +173414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22282 + - uid: 22205 components: - type: Transform rot: -1.5707963267948966 rad @@ -173401,7 +173422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22283 + - uid: 22206 components: - type: Transform rot: 1.5707963267948966 rad @@ -173409,7 +173430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22284 + - uid: 22207 components: - type: Transform rot: 1.5707963267948966 rad @@ -173417,7 +173438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22285 + - uid: 22208 components: - type: Transform rot: -1.5707963267948966 rad @@ -173425,7 +173446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22286 + - uid: 22209 components: - type: Transform rot: 1.5707963267948966 rad @@ -173433,7 +173454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22287 + - uid: 22210 components: - type: Transform rot: 1.5707963267948966 rad @@ -173441,7 +173462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22288 + - uid: 22211 components: - type: Transform rot: -1.5707963267948966 rad @@ -173449,7 +173470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22289 + - uid: 22212 components: - type: Transform rot: -1.5707963267948966 rad @@ -173457,7 +173478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22290 + - uid: 22213 components: - type: Transform rot: 1.5707963267948966 rad @@ -173465,7 +173486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22291 + - uid: 22214 components: - type: Transform rot: -1.5707963267948966 rad @@ -173473,7 +173494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22292 + - uid: 22215 components: - type: Transform rot: 1.5707963267948966 rad @@ -173481,21 +173502,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22293 + - uid: 22216 components: - type: Transform pos: -6.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22294 + - uid: 22217 components: - type: Transform pos: -1.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22295 + - uid: 22218 components: - type: Transform rot: 3.141592653589793 rad @@ -173503,7 +173524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22296 + - uid: 22219 components: - type: Transform rot: 3.141592653589793 rad @@ -173511,21 +173532,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22297 + - uid: 22220 components: - type: Transform pos: -16.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22298 + - uid: 22221 components: - type: Transform pos: -22.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22299 + - uid: 22222 components: - type: Transform rot: -1.5707963267948966 rad @@ -173533,7 +173554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22300 + - uid: 22223 components: - type: Transform rot: 3.141592653589793 rad @@ -173541,7 +173562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22301 + - uid: 22224 components: - type: Transform rot: -1.5707963267948966 rad @@ -173549,7 +173570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22302 + - uid: 22225 components: - type: Transform rot: 1.5707963267948966 rad @@ -173557,7 +173578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22303 + - uid: 22226 components: - type: Transform rot: -1.5707963267948966 rad @@ -173565,7 +173586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22304 + - uid: 22227 components: - type: Transform rot: 1.5707963267948966 rad @@ -173573,7 +173594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22305 + - uid: 22228 components: - type: Transform rot: 3.141592653589793 rad @@ -173581,7 +173602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22306 + - uid: 22229 components: - type: Transform rot: 3.141592653589793 rad @@ -173589,28 +173610,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22307 + - uid: 22230 components: - type: Transform pos: -20.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22308 + - uid: 22231 components: - type: Transform pos: -16.5,46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22309 + - uid: 22232 components: - type: Transform pos: 1.5,56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22310 + - uid: 22233 components: - type: Transform rot: 1.5707963267948966 rad @@ -173618,7 +173639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22311 + - uid: 22234 components: - type: Transform rot: 3.141592653589793 rad @@ -173626,21 +173647,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22312 + - uid: 22235 components: - type: Transform pos: 85.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22313 + - uid: 22236 components: - type: Transform pos: 89.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22314 + - uid: 22237 components: - type: Transform rot: 3.141592653589793 rad @@ -173648,298 +173669,298 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22315 + - uid: 22238 components: - type: Transform pos: 22.5,-38.5 parent: 2 - - uid: 22316 + - uid: 22239 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-38.5 parent: 2 - - uid: 22317 + - uid: 22240 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-38.5 parent: 2 - - uid: 22318 + - uid: 22241 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-40.5 parent: 2 - - uid: 39377 + - uid: 39204 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39378 + - uid: 39205 components: - type: Transform pos: -8.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39379 + - uid: 39206 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39380 + - uid: 39207 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39381 + - uid: 39208 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,7.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39382 + - uid: 39209 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39383 + - uid: 39210 components: - type: Transform pos: -2.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39384 + - uid: 39211 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39385 + - uid: 39212 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39386 + - uid: 39213 components: - type: Transform pos: 3.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39387 + - uid: 39214 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39388 + - uid: 39215 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasPort entities: - - uid: 22319 + - uid: 22242 components: - type: Transform pos: -62.5,61.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 22320 + - uid: 22243 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,17.5 parent: 2 - - uid: 22321 + - uid: 22244 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,17.5 parent: 2 - - uid: 22322 + - uid: 22245 components: - type: Transform pos: 78.5,23.5 parent: 2 - - uid: 22323 + - uid: 22246 components: - type: Transform pos: 77.5,23.5 parent: 2 - - uid: 22324 + - uid: 22247 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-45.5 parent: 2 - - uid: 22325 + - uid: 22248 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-38.5 parent: 2 - - uid: 22326 + - uid: 22249 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 22327 + - uid: 22250 components: - type: Transform pos: -37.5,-50.5 parent: 2 - - uid: 22328 + - uid: 22251 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-43.5 parent: 2 - - uid: 22329 + - uid: 22252 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-40.5 parent: 2 - - uid: 22330 + - uid: 22253 components: - type: Transform pos: -26.5,-53.5 parent: 2 - - uid: 22331 + - uid: 22254 components: - type: Transform pos: -27.5,-53.5 parent: 2 - - uid: 22332 + - uid: 22255 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-53.5 parent: 2 - - uid: 22333 + - uid: 22256 components: - type: Transform pos: -24.5,-52.5 parent: 2 - - uid: 22334 + - uid: 22257 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-54.5 parent: 2 - - uid: 22335 + - uid: 22258 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-32.5 parent: 2 - - uid: 22336 + - uid: 22259 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-30.5 parent: 2 - - uid: 22337 + - uid: 22260 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-53.5 parent: 2 - - uid: 22338 + - uid: 22261 components: - type: Transform pos: -22.5,-51.5 parent: 2 - - uid: 22339 + - uid: 22262 components: - type: Transform pos: -38.5,-50.5 parent: 2 - - uid: 22340 + - uid: 22263 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-53.5 parent: 2 - - uid: 22341 + - uid: 22264 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-53.5 parent: 2 - - uid: 22342 + - uid: 22265 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-52.5 parent: 2 - - uid: 22343 + - uid: 22266 components: - type: Transform pos: -28.5,-53.5 parent: 2 - - uid: 22344 + - uid: 22267 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-40.5 parent: 2 - - uid: 22345 + - uid: 22268 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-40.5 parent: 2 - - uid: 39389 + - uid: 39216 components: - type: Transform pos: -18.5,36.5 - parent: 38584 + parent: 38411 - proto: GasPressurePump entities: - - uid: 22346 + - uid: 22269 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-39.5 parent: 2 - - uid: 22347 + - uid: 22270 components: - type: Transform pos: -61.5,59.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 22348 + - uid: 22271 components: - type: Transform rot: -1.5707963267948966 rad @@ -173947,7 +173968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22349 + - uid: 22272 components: - type: Transform rot: 1.5707963267948966 rad @@ -173955,7 +173976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22350 + - uid: 22273 components: - type: Transform rot: -1.5707963267948966 rad @@ -173963,25 +173984,25 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 420 - - uid: 22351 + - uid: 22274 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-43.5 parent: 2 - - uid: 22352 + - uid: 22275 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-40.5 parent: 2 - - uid: 22353 + - uid: 22276 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-45.5 parent: 2 - - uid: 22354 + - uid: 22277 components: - type: Transform rot: 3.141592653589793 rad @@ -173989,25 +174010,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22355 + - uid: 22278 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-52.5 parent: 2 - - uid: 22356 + - uid: 22279 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-52.5 parent: 2 - - uid: 22357 + - uid: 22280 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-38.5 parent: 2 - - uid: 22358 + - uid: 22281 components: - type: Transform rot: -1.5707963267948966 rad @@ -174015,7 +174036,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22359 + - uid: 22282 components: - type: Transform rot: -1.5707963267948966 rad @@ -174023,7 +174044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22360 + - uid: 22283 components: - type: Transform rot: -1.5707963267948966 rad @@ -174031,7 +174052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22361 + - uid: 22284 components: - type: Transform rot: -1.5707963267948966 rad @@ -174039,7 +174060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22362 + - uid: 22285 components: - type: Transform rot: -1.5707963267948966 rad @@ -174047,7 +174068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22363 + - uid: 22286 components: - type: Transform rot: -1.5707963267948966 rad @@ -174055,7 +174076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22364 + - uid: 22287 components: - type: Transform rot: 1.5707963267948966 rad @@ -174063,7 +174084,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22365 + - uid: 22288 components: - type: Transform rot: 1.5707963267948966 rad @@ -174071,7 +174092,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22366 + - uid: 22289 components: - type: Transform rot: 1.5707963267948966 rad @@ -174079,7 +174100,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22367 + - uid: 22290 components: - type: Transform rot: 1.5707963267948966 rad @@ -174087,7 +174108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22368 + - uid: 22291 components: - type: Transform rot: 1.5707963267948966 rad @@ -174095,7 +174116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 22369 + - uid: 22292 components: - type: Transform rot: 1.5707963267948966 rad @@ -174103,7 +174124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22370 + - uid: 22293 components: - type: Transform rot: 1.5707963267948966 rad @@ -174111,7 +174132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 22371 + - uid: 22294 components: - type: Transform rot: 1.5707963267948966 rad @@ -174119,84 +174140,84 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 39390 + - uid: 39217 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39391 + - uid: 39218 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,2.5 - parent: 38584 - - uid: 39392 + parent: 38411 + - uid: 39219 components: - type: Transform pos: -18.5,35.5 - parent: 38584 - - uid: 39393 + parent: 38411 + - uid: 39220 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,4.5 - parent: 38584 + parent: 38411 - proto: GasThermoMachineFreezer entities: - - uid: 22372 + - uid: 22295 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,21.5 parent: 2 - - uid: 22373 + - uid: 22296 components: - type: Transform pos: -58.5,37.5 parent: 2 - - uid: 22374 + - uid: 22297 components: - type: Transform pos: -43.5,48.5 parent: 2 - - uid: 22375 + - uid: 22298 components: - type: Transform pos: -18.5,-49.5 parent: 2 - - uid: 22376 + - uid: 22299 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-54.5 parent: 2 - - uid: 22377 + - uid: 22300 components: - type: Transform pos: 24.5,-37.5 parent: 2 - - uid: 22378 + - uid: 22301 components: - type: Transform pos: -29.5,-25.5 parent: 2 - - uid: 22379 + - uid: 22302 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-54.5 parent: 2 - - uid: 22380 + - uid: 22303 components: - type: Transform pos: -58.5,36.5 parent: 2 - proto: GasThermoMachineHeater entities: - - uid: 22381 + - uid: 22304 components: - type: Transform pos: -61.5,61.5 @@ -174206,30 +174227,30 @@ entities: - 58 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 22382 + - uid: 22305 components: - type: Transform pos: -44.5,48.5 parent: 2 - - uid: 22383 + - uid: 22306 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-54.5 parent: 2 - - uid: 22384 + - uid: 22307 components: - type: Transform pos: -58.5,38.5 parent: 2 - - uid: 22385 + - uid: 22308 components: - type: Transform pos: -58.5,35.5 parent: 2 - proto: GasValve entities: - - uid: 22386 + - uid: 22309 components: - type: Transform rot: -1.5707963267948966 rad @@ -174239,14 +174260,14 @@ entities: color: '#FF0000FF' - proto: GasVentPump entities: - - uid: 22387 + - uid: 22310 components: - type: Transform pos: 33.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22388 + - uid: 22311 components: - type: Transform rot: 1.5707963267948966 rad @@ -174254,7 +174275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22389 + - uid: 22312 components: - type: Transform rot: 3.141592653589793 rad @@ -174265,7 +174286,7 @@ entities: - 75 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22390 + - uid: 22313 components: - type: Transform pos: -16.5,38.5 @@ -174275,7 +174296,7 @@ entities: - 75 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22391 + - uid: 22314 components: - type: Transform rot: -1.5707963267948966 rad @@ -174286,7 +174307,7 @@ entities: - 56 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22392 + - uid: 22315 components: - type: Transform rot: 3.141592653589793 rad @@ -174297,7 +174318,7 @@ entities: - 56 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22393 + - uid: 22316 components: - type: Transform rot: 1.5707963267948966 rad @@ -174308,7 +174329,7 @@ entities: - 56 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22394 + - uid: 22317 components: - type: Transform rot: 1.5707963267948966 rad @@ -174320,7 +174341,7 @@ entities: - 60 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22395 + - uid: 22318 components: - type: Transform rot: 1.5707963267948966 rad @@ -174331,7 +174352,7 @@ entities: - 72 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22396 + - uid: 22319 components: - type: Transform rot: -1.5707963267948966 rad @@ -174342,7 +174363,7 @@ entities: - 88 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22397 + - uid: 22320 components: - type: Transform rot: 1.5707963267948966 rad @@ -174353,7 +174374,7 @@ entities: - 69 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22398 + - uid: 22321 components: - type: Transform rot: 1.5707963267948966 rad @@ -174364,7 +174385,7 @@ entities: - 69 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22399 + - uid: 22322 components: - type: Transform pos: 92.5,19.5 @@ -174374,7 +174395,7 @@ entities: - 97 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22400 + - uid: 22323 components: - type: Transform rot: 3.141592653589793 rad @@ -174385,7 +174406,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22401 + - uid: 22324 components: - type: Transform rot: -1.5707963267948966 rad @@ -174396,7 +174417,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22402 + - uid: 22325 components: - type: Transform rot: 1.5707963267948966 rad @@ -174407,7 +174428,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22403 + - uid: 22326 components: - type: Transform rot: 1.5707963267948966 rad @@ -174418,7 +174439,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22404 + - uid: 22327 components: - type: Transform rot: -1.5707963267948966 rad @@ -174429,7 +174450,7 @@ entities: - 114 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22405 + - uid: 22328 components: - type: Transform rot: -1.5707963267948966 rad @@ -174440,7 +174461,7 @@ entities: - 113 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22406 + - uid: 22329 components: - type: Transform pos: -15.5,-64.5 @@ -174450,7 +174471,7 @@ entities: - 115 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22407 + - uid: 22330 components: - type: Transform rot: 1.5707963267948966 rad @@ -174461,7 +174482,7 @@ entities: - 115 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22408 + - uid: 22331 components: - type: Transform rot: 1.5707963267948966 rad @@ -174469,7 +174490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22409 + - uid: 22332 components: - type: Transform pos: -20.5,-79.5 @@ -174479,7 +174500,7 @@ entities: - 116 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22410 + - uid: 22333 components: - type: Transform rot: -1.5707963267948966 rad @@ -174490,7 +174511,7 @@ entities: - 116 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22411 + - uid: 22334 components: - type: Transform rot: 1.5707963267948966 rad @@ -174501,7 +174522,7 @@ entities: - 113 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22412 + - uid: 22335 components: - type: Transform rot: 1.5707963267948966 rad @@ -174512,7 +174533,7 @@ entities: - 113 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22413 + - uid: 22336 components: - type: Transform rot: 3.141592653589793 rad @@ -174523,7 +174544,7 @@ entities: - 87 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22414 + - uid: 22337 components: - type: Transform rot: 1.5707963267948966 rad @@ -174534,7 +174555,7 @@ entities: - 102 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22415 + - uid: 22338 components: - type: Transform pos: -5.5,-32.5 @@ -174544,7 +174565,7 @@ entities: - 102 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22416 + - uid: 22339 components: - type: Transform rot: 1.5707963267948966 rad @@ -174555,7 +174576,7 @@ entities: - 109 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22417 + - uid: 22340 components: - type: Transform rot: -1.5707963267948966 rad @@ -174566,7 +174587,7 @@ entities: - 110 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22418 + - uid: 22341 components: - type: Transform rot: -1.5707963267948966 rad @@ -174577,7 +174598,7 @@ entities: - 110 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22419 + - uid: 22342 components: - type: Transform rot: -1.5707963267948966 rad @@ -174588,7 +174609,7 @@ entities: - 108 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22420 + - uid: 22343 components: - type: Transform rot: 3.141592653589793 rad @@ -174599,7 +174620,7 @@ entities: - 108 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22421 + - uid: 22344 components: - type: Transform rot: 3.141592653589793 rad @@ -174610,7 +174631,7 @@ entities: - 108 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22422 + - uid: 22345 components: - type: Transform rot: 1.5707963267948966 rad @@ -174618,7 +174639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22423 + - uid: 22346 components: - type: Transform rot: -1.5707963267948966 rad @@ -174629,7 +174650,7 @@ entities: - 105 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22424 + - uid: 22347 components: - type: Transform rot: 1.5707963267948966 rad @@ -174640,7 +174661,7 @@ entities: - 106 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22425 + - uid: 22348 components: - type: Transform pos: -27.5,-44.5 @@ -174650,7 +174671,7 @@ entities: - 105 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22426 + - uid: 22349 components: - type: Transform rot: 3.141592653589793 rad @@ -174661,7 +174682,7 @@ entities: - 111 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22427 + - uid: 22350 components: - type: Transform rot: 3.141592653589793 rad @@ -174672,7 +174693,7 @@ entities: - 117 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22428 + - uid: 22351 components: - type: Transform rot: 1.5707963267948966 rad @@ -174680,7 +174701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22429 + - uid: 22352 components: - type: Transform pos: 5.5,-34.5 @@ -174690,7 +174711,7 @@ entities: - 117 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22430 + - uid: 22353 components: - type: Transform pos: 12.5,-37.5 @@ -174700,7 +174721,7 @@ entities: - 120 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22431 + - uid: 22354 components: - type: Transform pos: 7.5,-44.5 @@ -174710,7 +174731,7 @@ entities: - 120 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22432 + - uid: 22355 components: - type: Transform rot: 3.141592653589793 rad @@ -174721,7 +174742,7 @@ entities: - 121 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22433 + - uid: 22356 components: - type: Transform rot: 1.5707963267948966 rad @@ -174732,7 +174753,7 @@ entities: - 120 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22434 + - uid: 22357 components: - type: Transform rot: -1.5707963267948966 rad @@ -174743,7 +174764,7 @@ entities: - 40 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22435 + - uid: 22358 components: - type: Transform rot: 3.141592653589793 rad @@ -174754,7 +174775,7 @@ entities: - 40 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22436 + - uid: 22359 components: - type: Transform pos: 20.5,-34.5 @@ -174764,7 +174785,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22437 + - uid: 22360 components: - type: Transform rot: 1.5707963267948966 rad @@ -174775,7 +174796,7 @@ entities: - 40 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22438 + - uid: 22361 components: - type: Transform rot: -1.5707963267948966 rad @@ -174786,7 +174807,7 @@ entities: - 39 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22439 + - uid: 22362 components: - type: Transform rot: -1.5707963267948966 rad @@ -174797,7 +174818,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22440 + - uid: 22363 components: - type: Transform pos: 29.5,-30.5 @@ -174807,7 +174828,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22441 + - uid: 22364 components: - type: Transform pos: 36.5,-29.5 @@ -174817,7 +174838,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22442 + - uid: 22365 components: - type: Transform pos: 8.5,-15.5 @@ -174827,7 +174848,7 @@ entities: - 33 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22443 + - uid: 22366 components: - type: Transform pos: 13.5,-14.5 @@ -174837,7 +174858,7 @@ entities: - 33 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22444 + - uid: 22367 components: - type: Transform rot: 1.5707963267948966 rad @@ -174848,7 +174869,7 @@ entities: - 84 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22445 + - uid: 22368 components: - type: Transform pos: 28.5,-1.5 @@ -174858,7 +174879,7 @@ entities: - 84 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22446 + - uid: 22369 components: - type: Transform rot: -1.5707963267948966 rad @@ -174869,7 +174890,7 @@ entities: - 118 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22447 + - uid: 22370 components: - type: Transform rot: 3.141592653589793 rad @@ -174880,7 +174901,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22448 + - uid: 22371 components: - type: Transform rot: 3.141592653589793 rad @@ -174891,7 +174912,7 @@ entities: - 33 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22449 + - uid: 22372 components: - type: Transform rot: 1.5707963267948966 rad @@ -174902,7 +174923,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22450 + - uid: 22373 components: - type: Transform rot: -1.5707963267948966 rad @@ -174913,7 +174934,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22451 + - uid: 22374 components: - type: Transform rot: -1.5707963267948966 rad @@ -174924,7 +174945,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22452 + - uid: 22375 components: - type: Transform rot: 1.5707963267948966 rad @@ -174935,7 +174956,7 @@ entities: - 65 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22453 + - uid: 22376 components: - type: Transform rot: 3.141592653589793 rad @@ -174946,7 +174967,7 @@ entities: - 68 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22454 + - uid: 22377 components: - type: Transform rot: 3.141592653589793 rad @@ -174957,7 +174978,7 @@ entities: - 123 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22455 + - uid: 22378 components: - type: Transform rot: 1.5707963267948966 rad @@ -174968,7 +174989,7 @@ entities: - 124 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22456 + - uid: 22379 components: - type: Transform rot: 1.5707963267948966 rad @@ -174979,7 +175000,7 @@ entities: - 124 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22457 + - uid: 22380 components: - type: Transform rot: 1.5707963267948966 rad @@ -174990,7 +175011,7 @@ entities: - 66 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22458 + - uid: 22381 components: - type: Transform rot: 1.5707963267948966 rad @@ -175001,7 +175022,7 @@ entities: - 66 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22459 + - uid: 22382 components: - type: Transform pos: -14.5,9.5 @@ -175011,7 +175032,7 @@ entities: - 66 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22460 + - uid: 22383 components: - type: Transform rot: 1.5707963267948966 rad @@ -175019,7 +175040,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22461 + - uid: 22384 components: - type: Transform rot: -1.5707963267948966 rad @@ -175030,7 +175051,7 @@ entities: - 64 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22462 + - uid: 22385 components: - type: Transform rot: -1.5707963267948966 rad @@ -175041,7 +175062,7 @@ entities: - 64 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22463 + - uid: 22386 components: - type: Transform rot: -1.5707963267948966 rad @@ -175052,7 +175073,7 @@ entities: - 64 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22464 + - uid: 22387 components: - type: Transform pos: -11.5,15.5 @@ -175062,7 +175083,7 @@ entities: - 52 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22465 + - uid: 22388 components: - type: Transform rot: -1.5707963267948966 rad @@ -175073,7 +175094,7 @@ entities: - 67 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22466 + - uid: 22389 components: - type: Transform rot: -1.5707963267948966 rad @@ -175084,7 +175105,7 @@ entities: - 67 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22467 + - uid: 22390 components: - type: Transform rot: 3.141592653589793 rad @@ -175095,7 +175116,7 @@ entities: - 99 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22468 + - uid: 22391 components: - type: Transform pos: 46.5,-15.5 @@ -175105,7 +175126,7 @@ entities: - 100 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22469 + - uid: 22392 components: - type: Transform pos: 57.5,-15.5 @@ -175115,7 +175136,7 @@ entities: - 101 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22470 + - uid: 22393 components: - type: Transform pos: 61.5,-15.5 @@ -175125,7 +175146,7 @@ entities: - 101 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22471 + - uid: 22394 components: - type: Transform pos: 22.5,9.5 @@ -175135,7 +175156,7 @@ entities: - 85 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22472 + - uid: 22395 components: - type: Transform pos: 29.5,10.5 @@ -175145,7 +175166,7 @@ entities: - 85 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22473 + - uid: 22396 components: - type: Transform pos: 37.5,9.5 @@ -175155,7 +175176,7 @@ entities: - 86 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22474 + - uid: 22397 components: - type: Transform pos: 36.5,11.5 @@ -175165,7 +175186,7 @@ entities: - 86 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22475 + - uid: 22398 components: - type: Transform rot: 1.5707963267948966 rad @@ -175176,7 +175197,7 @@ entities: - 86 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22476 + - uid: 22399 components: - type: Transform pos: 52.5,5.5 @@ -175186,7 +175207,7 @@ entities: - 88 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22477 + - uid: 22400 components: - type: Transform rot: -1.5707963267948966 rad @@ -175197,7 +175218,7 @@ entities: - 89 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22478 + - uid: 22401 components: - type: Transform rot: -1.5707963267948966 rad @@ -175208,7 +175229,7 @@ entities: - 89 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22479 + - uid: 22402 components: - type: Transform rot: 1.5707963267948966 rad @@ -175219,7 +175240,7 @@ entities: - 90 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22480 + - uid: 22403 components: - type: Transform rot: 3.141592653589793 rad @@ -175230,7 +175251,7 @@ entities: - 91 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22481 + - uid: 22404 components: - type: Transform pos: 64.5,26.5 @@ -175240,7 +175261,7 @@ entities: - 91 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22482 + - uid: 22405 components: - type: Transform rot: 3.141592653589793 rad @@ -175251,7 +175272,7 @@ entities: - 70 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22483 + - uid: 22406 components: - type: Transform rot: 1.5707963267948966 rad @@ -175262,7 +175283,7 @@ entities: - 97 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22484 + - uid: 22407 components: - type: Transform rot: 1.5707963267948966 rad @@ -175273,7 +175294,7 @@ entities: - 97 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22485 + - uid: 22408 components: - type: Transform rot: 1.5707963267948966 rad @@ -175284,7 +175305,7 @@ entities: - 94 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22486 + - uid: 22409 components: - type: Transform pos: 73.5,22.5 @@ -175294,7 +175315,7 @@ entities: - 94 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22487 + - uid: 22410 components: - type: Transform rot: -1.5707963267948966 rad @@ -175305,7 +175326,7 @@ entities: - 112 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22488 + - uid: 22411 components: - type: Transform pos: 8.5,23.5 @@ -175315,7 +175336,7 @@ entities: - 95 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22489 + - uid: 22412 components: - type: Transform rot: -1.5707963267948966 rad @@ -175326,7 +175347,7 @@ entities: - 79 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22490 + - uid: 22413 components: - type: Transform rot: -1.5707963267948966 rad @@ -175337,7 +175358,7 @@ entities: - 79 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22491 + - uid: 22414 components: - type: Transform rot: 1.5707963267948966 rad @@ -175348,7 +175369,7 @@ entities: - 79 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22492 + - uid: 22415 components: - type: Transform rot: -1.5707963267948966 rad @@ -175359,7 +175380,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22493 + - uid: 22416 components: - type: Transform rot: 3.141592653589793 rad @@ -175370,7 +175391,7 @@ entities: - 83 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22494 + - uid: 22417 components: - type: Transform rot: 3.141592653589793 rad @@ -175381,7 +175402,7 @@ entities: - 83 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22495 + - uid: 22418 components: - type: Transform pos: 35.5,35.5 @@ -175391,7 +175412,7 @@ entities: - 83 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22496 + - uid: 22419 components: - type: Transform rot: -1.5707963267948966 rad @@ -175402,7 +175423,7 @@ entities: - 82 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22497 + - uid: 22420 components: - type: Transform pos: 28.5,42.5 @@ -175412,7 +175433,7 @@ entities: - 82 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22498 + - uid: 22421 components: - type: Transform rot: -1.5707963267948966 rad @@ -175423,7 +175444,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22499 + - uid: 22422 components: - type: Transform pos: 24.5,50.5 @@ -175433,7 +175454,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22500 + - uid: 22423 components: - type: Transform pos: 31.5,50.5 @@ -175443,7 +175464,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22501 + - uid: 22424 components: - type: Transform rot: 1.5707963267948966 rad @@ -175454,7 +175475,7 @@ entities: - 92 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22502 + - uid: 22425 components: - type: Transform pos: -9.5,23.5 @@ -175464,7 +175485,7 @@ entities: - 95 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22503 + - uid: 22426 components: - type: Transform rot: -1.5707963267948966 rad @@ -175475,7 +175496,7 @@ entities: - 71 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22504 + - uid: 22427 components: - type: Transform pos: -29.5,42.5 @@ -175485,7 +175506,7 @@ entities: - 72 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22505 + - uid: 22428 components: - type: Transform rot: -1.5707963267948966 rad @@ -175496,7 +175517,7 @@ entities: - 54 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22506 + - uid: 22429 components: - type: Transform pos: -2.5,38.5 @@ -175506,7 +175527,7 @@ entities: - 54 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22507 + - uid: 22430 components: - type: Transform pos: -28.5,50.5 @@ -175516,7 +175537,7 @@ entities: - 73 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22508 + - uid: 22431 components: - type: Transform pos: -25.5,53.5 @@ -175526,7 +175547,7 @@ entities: - 73 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22509 + - uid: 22432 components: - type: Transform pos: -12.5,49.5 @@ -175536,7 +175557,7 @@ entities: - 77 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22510 + - uid: 22433 components: - type: Transform rot: 3.141592653589793 rad @@ -175547,7 +175568,7 @@ entities: - 125 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22511 + - uid: 22434 components: - type: Transform rot: 1.5707963267948966 rad @@ -175558,7 +175579,7 @@ entities: - 74 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22512 + - uid: 22435 components: - type: Transform rot: -1.5707963267948966 rad @@ -175569,7 +175590,7 @@ entities: - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22513 + - uid: 22436 components: - type: Transform pos: 2.5,62.5 @@ -175579,7 +175600,7 @@ entities: - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22514 + - uid: 22437 components: - type: Transform rot: 3.141592653589793 rad @@ -175590,7 +175611,7 @@ entities: - 77 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22515 + - uid: 22438 components: - type: Transform pos: -7.5,68.5 @@ -175600,7 +175621,7 @@ entities: - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22516 + - uid: 22439 components: - type: Transform pos: -21.5,68.5 @@ -175610,7 +175631,7 @@ entities: - 74 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22517 + - uid: 22440 components: - type: Transform rot: -1.5707963267948966 rad @@ -175621,7 +175642,7 @@ entities: - 74 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22518 + - uid: 22441 components: - type: Transform rot: 1.5707963267948966 rad @@ -175632,7 +175653,7 @@ entities: - 126 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22519 + - uid: 22442 components: - type: Transform rot: 3.141592653589793 rad @@ -175643,7 +175664,7 @@ entities: - 76 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22520 + - uid: 22443 components: - type: Transform pos: 11.5,77.5 @@ -175653,7 +175674,7 @@ entities: - 78 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22521 + - uid: 22444 components: - type: Transform rot: 1.5707963267948966 rad @@ -175664,7 +175685,7 @@ entities: - 78 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22522 + - uid: 22445 components: - type: Transform pos: -25.5,9.5 @@ -175674,7 +175695,7 @@ entities: - 53 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22523 + - uid: 22446 components: - type: Transform rot: 3.141592653589793 rad @@ -175685,7 +175706,7 @@ entities: - 53 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22524 + - uid: 22447 components: - type: Transform pos: -35.5,12.5 @@ -175695,7 +175716,7 @@ entities: - 53 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22525 + - uid: 22448 components: - type: Transform rot: 1.5707963267948966 rad @@ -175706,7 +175727,7 @@ entities: - 69 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22526 + - uid: 22449 components: - type: Transform rot: 1.5707963267948966 rad @@ -175717,7 +175738,7 @@ entities: - 60 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22527 + - uid: 22450 components: - type: Transform rot: -1.5707963267948966 rad @@ -175728,7 +175749,7 @@ entities: - 60 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22528 + - uid: 22451 components: - type: Transform rot: 3.141592653589793 rad @@ -175739,7 +175760,7 @@ entities: - 60 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22529 + - uid: 22452 components: - type: Transform rot: -1.5707963267948966 rad @@ -175751,7 +175772,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22530 + - uid: 22453 components: - type: Transform rot: 1.5707963267948966 rad @@ -175763,7 +175784,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22531 + - uid: 22454 components: - type: Transform rot: 3.141592653589793 rad @@ -175774,7 +175795,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22532 + - uid: 22455 components: - type: Transform rot: 3.141592653589793 rad @@ -175785,7 +175806,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22533 + - uid: 22456 components: - type: Transform rot: 1.5707963267948966 rad @@ -175796,7 +175817,7 @@ entities: - 42 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22534 + - uid: 22457 components: - type: Transform rot: 1.5707963267948966 rad @@ -175807,7 +175828,7 @@ entities: - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22535 + - uid: 22458 components: - type: Transform rot: 1.5707963267948966 rad @@ -175818,7 +175839,7 @@ entities: - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22536 + - uid: 22459 components: - type: Transform rot: -1.5707963267948966 rad @@ -175829,7 +175850,7 @@ entities: - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22537 + - uid: 22460 components: - type: Transform rot: 3.141592653589793 rad @@ -175840,7 +175861,7 @@ entities: - 63 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22538 + - uid: 22461 components: - type: Transform rot: 3.141592653589793 rad @@ -175851,7 +175872,7 @@ entities: - 61 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22539 + - uid: 22462 components: - type: Transform pos: -66.5,-5.5 @@ -175861,7 +175882,7 @@ entities: - 61 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22540 + - uid: 22463 components: - type: Transform rot: 1.5707963267948966 rad @@ -175872,7 +175893,7 @@ entities: - 61 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22541 + - uid: 22464 components: - type: Transform rot: 3.141592653589793 rad @@ -175883,7 +175904,7 @@ entities: - 83 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22542 + - uid: 22465 components: - type: Transform rot: -1.5707963267948966 rad @@ -175894,20 +175915,20 @@ entities: - 109 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22543 + - uid: 22466 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-30.5 parent: 2 - - uid: 22544 + - uid: 22467 components: - type: Transform pos: 39.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22545 + - uid: 22468 components: - type: Transform rot: -1.5707963267948966 rad @@ -175918,7 +175939,7 @@ entities: - 38 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22546 + - uid: 22469 components: - type: Transform rot: 3.141592653589793 rad @@ -175927,7 +175948,7 @@ entities: - type: DeviceNetwork deviceLists: - 110 - - uid: 22547 + - uid: 22470 components: - type: Transform rot: 3.141592653589793 rad @@ -175935,7 +175956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22548 + - uid: 22471 components: - type: Transform rot: 1.5707963267948966 rad @@ -175943,7 +175964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22549 + - uid: 22472 components: - type: Transform rot: 1.5707963267948966 rad @@ -175951,7 +175972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22550 + - uid: 22473 components: - type: Transform rot: -1.5707963267948966 rad @@ -175959,7 +175980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22551 + - uid: 22474 components: - type: Transform rot: -1.5707963267948966 rad @@ -175967,14 +175988,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22552 + - uid: 22475 components: - type: Transform pos: -119.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22553 + - uid: 22476 components: - type: Transform rot: 3.141592653589793 rad @@ -175982,7 +176003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22554 + - uid: 22477 components: - type: Transform rot: -1.5707963267948966 rad @@ -175990,7 +176011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22555 + - uid: 22478 components: - type: Transform rot: -1.5707963267948966 rad @@ -175998,14 +176019,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22556 + - uid: 22479 components: - type: Transform pos: 72.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22557 + - uid: 22480 components: - type: Transform rot: 3.141592653589793 rad @@ -176016,7 +176037,7 @@ entities: - 52 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22558 + - uid: 22481 components: - type: Transform rot: 3.141592653589793 rad @@ -176024,7 +176045,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22559 + - uid: 22482 components: - type: Transform rot: 3.141592653589793 rad @@ -176032,7 +176053,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22560 + - uid: 22483 components: - type: Transform pos: 84.5,5.5 @@ -176042,7 +176063,7 @@ entities: - 34 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22561 + - uid: 22484 components: - type: Transform rot: 3.141592653589793 rad @@ -176053,7 +176074,7 @@ entities: - 96 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22562 + - uid: 22485 components: - type: Transform rot: -1.5707963267948966 rad @@ -176061,84 +176082,84 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39394 + - uid: 39221 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,31.5 - parent: 38584 - - uid: 39395 + parent: 38411 + - uid: 39222 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-4.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39396 + - uid: 39223 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39397 + - uid: 39224 components: - type: Transform pos: 0.5,2.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38585 + - 38412 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39398 + - uid: 39225 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39399 + - uid: 39226 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39400 + - uid: 39227 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,3.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38586 + - 38413 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39401 + - uid: 39228 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39402 + - uid: 39229 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,1.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasVentScrubber entities: - - uid: 22563 + - uid: 22486 components: - type: Transform pos: 56.5,0.5 @@ -176148,7 +176169,7 @@ entities: - 70 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22564 + - uid: 22487 components: - type: Transform rot: 3.141592653589793 rad @@ -176156,7 +176177,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22565 + - uid: 22488 components: - type: Transform rot: 1.5707963267948966 rad @@ -176167,7 +176188,7 @@ entities: - 94 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22566 + - uid: 22489 components: - type: Transform rot: 3.141592653589793 rad @@ -176178,7 +176199,7 @@ entities: - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22567 + - uid: 22490 components: - type: Transform pos: -20.5,38.5 @@ -176188,7 +176209,7 @@ entities: - 75 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22568 + - uid: 22491 components: - type: Transform rot: -1.5707963267948966 rad @@ -176199,7 +176220,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22569 + - uid: 22492 components: - type: Transform pos: -24.5,-44.5 @@ -176209,7 +176230,7 @@ entities: - 105 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22570 + - uid: 22493 components: - type: Transform pos: 3.5,17.5 @@ -176219,7 +176240,7 @@ entities: - 52 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22571 + - uid: 22494 components: - type: Transform rot: 3.141592653589793 rad @@ -176230,7 +176251,7 @@ entities: - 66 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22572 + - uid: 22495 components: - type: Transform pos: -71.5,-5.5 @@ -176240,7 +176261,7 @@ entities: - 61 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22573 + - uid: 22496 components: - type: Transform rot: 3.141592653589793 rad @@ -176251,7 +176272,7 @@ entities: - 52 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22574 + - uid: 22497 components: - type: Transform rot: 1.5707963267948966 rad @@ -176262,7 +176283,7 @@ entities: - 117 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22575 + - uid: 22498 components: - type: Transform rot: -1.5707963267948966 rad @@ -176273,7 +176294,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22576 + - uid: 22499 components: - type: Transform rot: 3.141592653589793 rad @@ -176284,7 +176305,7 @@ entities: - 60 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22577 + - uid: 22500 components: - type: Transform rot: -1.5707963267948966 rad @@ -176295,7 +176316,7 @@ entities: - 42 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22578 + - uid: 22501 components: - type: Transform pos: -76.5,4.5 @@ -176305,7 +176326,7 @@ entities: - 42 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22579 + - uid: 22502 components: - type: Transform rot: 1.5707963267948966 rad @@ -176316,7 +176337,7 @@ entities: - 42 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22580 + - uid: 22503 components: - type: Transform rot: -1.5707963267948966 rad @@ -176327,7 +176348,7 @@ entities: - 42 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22581 + - uid: 22504 components: - type: Transform rot: 1.5707963267948966 rad @@ -176338,7 +176359,7 @@ entities: - 61 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22582 + - uid: 22505 components: - type: Transform rot: 3.141592653589793 rad @@ -176349,7 +176370,7 @@ entities: - 61 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22583 + - uid: 22506 components: - type: Transform pos: -57.5,-7.5 @@ -176359,7 +176380,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22584 + - uid: 22507 components: - type: Transform rot: 1.5707963267948966 rad @@ -176370,7 +176391,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22585 + - uid: 22508 components: - type: Transform rot: -1.5707963267948966 rad @@ -176381,7 +176402,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22586 + - uid: 22509 components: - type: Transform rot: -1.5707963267948966 rad @@ -176392,7 +176413,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22587 + - uid: 22510 components: - type: Transform pos: -46.5,2.5 @@ -176402,7 +176423,7 @@ entities: - 63 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22588 + - uid: 22511 components: - type: Transform rot: -1.5707963267948966 rad @@ -176413,7 +176434,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22589 + - uid: 22512 components: - type: Transform rot: -1.5707963267948966 rad @@ -176424,7 +176445,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22590 + - uid: 22513 components: - type: Transform rot: -1.5707963267948966 rad @@ -176435,7 +176456,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22591 + - uid: 22514 components: - type: Transform rot: -1.5707963267948966 rad @@ -176446,7 +176467,7 @@ entities: - 60 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22592 + - uid: 22515 components: - type: Transform pos: -55.5,6.5 @@ -176456,7 +176477,7 @@ entities: - 60 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22593 + - uid: 22516 components: - type: Transform rot: -1.5707963267948966 rad @@ -176467,7 +176488,7 @@ entities: - 69 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22594 + - uid: 22517 components: - type: Transform pos: -38.5,5.5 @@ -176477,7 +176498,7 @@ entities: - 53 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22595 + - uid: 22518 components: - type: Transform rot: -1.5707963267948966 rad @@ -176488,7 +176509,7 @@ entities: - 64 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22596 + - uid: 22519 components: - type: Transform rot: -1.5707963267948966 rad @@ -176499,7 +176520,7 @@ entities: - 64 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22597 + - uid: 22520 components: - type: Transform rot: 3.141592653589793 rad @@ -176510,7 +176531,7 @@ entities: - 64 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22598 + - uid: 22521 components: - type: Transform pos: -23.5,1.5 @@ -176520,7 +176541,7 @@ entities: - 64 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22599 + - uid: 22522 components: - type: Transform pos: -24.5,9.5 @@ -176530,7 +176551,7 @@ entities: - 53 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22600 + - uid: 22523 components: - type: Transform rot: -1.5707963267948966 rad @@ -176541,7 +176562,7 @@ entities: - 37 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22601 + - uid: 22524 components: - type: Transform rot: -1.5707963267948966 rad @@ -176552,7 +176573,7 @@ entities: - 124 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22602 + - uid: 22525 components: - type: Transform rot: 1.5707963267948966 rad @@ -176563,7 +176584,7 @@ entities: - 124 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22603 + - uid: 22526 components: - type: Transform rot: 3.141592653589793 rad @@ -176574,7 +176595,7 @@ entities: - 68 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22604 + - uid: 22527 components: - type: Transform rot: 3.141592653589793 rad @@ -176585,7 +176606,7 @@ entities: - 65 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22605 + - uid: 22528 components: - type: Transform rot: 3.141592653589793 rad @@ -176596,7 +176617,7 @@ entities: - 33 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22606 + - uid: 22529 components: - type: Transform pos: 8.5,-19.5 @@ -176606,14 +176627,14 @@ entities: - 122 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22607 + - uid: 22530 components: - type: Transform pos: -23.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22608 + - uid: 22531 components: - type: Transform rot: 3.141592653589793 rad @@ -176624,7 +176645,7 @@ entities: - 95 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22609 + - uid: 22532 components: - type: Transform rot: 1.5707963267948966 rad @@ -176632,7 +176653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22610 + - uid: 22533 components: - type: Transform rot: 1.5707963267948966 rad @@ -176643,7 +176664,7 @@ entities: - 112 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22611 + - uid: 22534 components: - type: Transform rot: 1.5707963267948966 rad @@ -176654,7 +176675,7 @@ entities: - 84 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22612 + - uid: 22535 components: - type: Transform rot: -1.5707963267948966 rad @@ -176665,7 +176686,7 @@ entities: - 84 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22613 + - uid: 22536 components: - type: Transform rot: 3.141592653589793 rad @@ -176676,7 +176697,7 @@ entities: - 98 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22614 + - uid: 22537 components: - type: Transform rot: -1.5707963267948966 rad @@ -176687,7 +176708,7 @@ entities: - 99 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22615 + - uid: 22538 components: - type: Transform rot: 3.141592653589793 rad @@ -176698,7 +176719,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22616 + - uid: 22539 components: - type: Transform rot: 3.141592653589793 rad @@ -176709,7 +176730,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22617 + - uid: 22540 components: - type: Transform rot: 3.141592653589793 rad @@ -176720,7 +176741,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22618 + - uid: 22541 components: - type: Transform pos: 52.5,-15.5 @@ -176730,7 +176751,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22619 + - uid: 22542 components: - type: Transform pos: 47.5,-15.5 @@ -176740,7 +176761,7 @@ entities: - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22620 + - uid: 22543 components: - type: Transform rot: 3.141592653589793 rad @@ -176751,7 +176772,7 @@ entities: - 101 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22621 + - uid: 22544 components: - type: Transform rot: 3.141592653589793 rad @@ -176762,7 +176783,7 @@ entities: - 101 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22622 + - uid: 22545 components: - type: Transform rot: 1.5707963267948966 rad @@ -176773,7 +176794,7 @@ entities: - 33 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22623 + - uid: 22546 components: - type: Transform rot: -1.5707963267948966 rad @@ -176781,7 +176802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22624 + - uid: 22547 components: - type: Transform rot: -1.5707963267948966 rad @@ -176792,7 +176813,7 @@ entities: - 66 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22625 + - uid: 22548 components: - type: Transform pos: 10.5,9.5 @@ -176802,7 +176823,7 @@ entities: - 67 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22626 + - uid: 22549 components: - type: Transform rot: -1.5707963267948966 rad @@ -176813,7 +176834,7 @@ entities: - 67 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22627 + - uid: 22550 components: - type: Transform pos: 8.5,-3.5 @@ -176823,7 +176844,7 @@ entities: - 67 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22628 + - uid: 22551 components: - type: Transform rot: 1.5707963267948966 rad @@ -176834,7 +176855,7 @@ entities: - 79 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22629 + - uid: 22552 components: - type: Transform rot: -1.5707963267948966 rad @@ -176845,7 +176866,7 @@ entities: - 79 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22630 + - uid: 22553 components: - type: Transform rot: -1.5707963267948966 rad @@ -176856,7 +176877,7 @@ entities: - 79 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22631 + - uid: 22554 components: - type: Transform rot: 1.5707963267948966 rad @@ -176867,7 +176888,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22632 + - uid: 22555 components: - type: Transform rot: -1.5707963267948966 rad @@ -176878,7 +176899,7 @@ entities: - 83 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22633 + - uid: 22556 components: - type: Transform rot: 1.5707963267948966 rad @@ -176889,7 +176910,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22634 + - uid: 22557 components: - type: Transform rot: 1.5707963267948966 rad @@ -176900,7 +176921,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22635 + - uid: 22558 components: - type: Transform rot: 3.141592653589793 rad @@ -176911,7 +176932,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22636 + - uid: 22559 components: - type: Transform pos: 10.5,44.5 @@ -176921,7 +176942,7 @@ entities: - 79 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22637 + - uid: 22560 components: - type: Transform rot: 1.5707963267948966 rad @@ -176932,7 +176953,7 @@ entities: - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22638 + - uid: 22561 components: - type: Transform rot: 1.5707963267948966 rad @@ -176943,7 +176964,7 @@ entities: - 72 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22639 + - uid: 22562 components: - type: Transform rot: 1.5707963267948966 rad @@ -176954,7 +176975,7 @@ entities: - 72 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22640 + - uid: 22563 components: - type: Transform rot: -1.5707963267948966 rad @@ -176965,7 +176986,7 @@ entities: - 71 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22641 + - uid: 22564 components: - type: Transform rot: -1.5707963267948966 rad @@ -176976,7 +176997,7 @@ entities: - 54 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22642 + - uid: 22565 components: - type: Transform rot: -1.5707963267948966 rad @@ -176987,7 +177008,7 @@ entities: - 73 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22643 + - uid: 22566 components: - type: Transform rot: 3.141592653589793 rad @@ -176998,7 +177019,7 @@ entities: - 73 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22644 + - uid: 22567 components: - type: Transform rot: -1.5707963267948966 rad @@ -177009,7 +177030,7 @@ entities: - 54 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22645 + - uid: 22568 components: - type: Transform pos: -5.5,53.5 @@ -177019,7 +177040,7 @@ entities: - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22646 + - uid: 22569 components: - type: Transform pos: -11.5,53.5 @@ -177029,7 +177050,7 @@ entities: - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22647 + - uid: 22570 components: - type: Transform pos: -8.5,57.5 @@ -177039,7 +177060,7 @@ entities: - 125 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22648 + - uid: 22571 components: - type: Transform rot: 3.141592653589793 rad @@ -177050,7 +177071,7 @@ entities: - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22649 + - uid: 22572 components: - type: Transform rot: 1.5707963267948966 rad @@ -177061,7 +177082,7 @@ entities: - 76 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22650 + - uid: 22573 components: - type: Transform rot: 3.141592653589793 rad @@ -177072,7 +177093,7 @@ entities: - 76 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22651 + - uid: 22574 components: - type: Transform rot: -1.5707963267948966 rad @@ -177080,7 +177101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22652 + - uid: 22575 components: - type: Transform rot: -1.5707963267948966 rad @@ -177091,7 +177112,7 @@ entities: - 78 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22653 + - uid: 22576 components: - type: Transform pos: 10.5,86.5 @@ -177101,7 +177122,7 @@ entities: - 78 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22654 + - uid: 22577 components: - type: Transform rot: -1.5707963267948966 rad @@ -177112,7 +177133,7 @@ entities: - 126 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22655 + - uid: 22578 components: - type: Transform rot: 3.141592653589793 rad @@ -177123,7 +177144,7 @@ entities: - 74 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22656 + - uid: 22579 components: - type: Transform rot: -1.5707963267948966 rad @@ -177134,7 +177155,7 @@ entities: - 74 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22657 + - uid: 22580 components: - type: Transform rot: 1.5707963267948966 rad @@ -177145,7 +177166,7 @@ entities: - 74 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22658 + - uid: 22581 components: - type: Transform rot: 3.141592653589793 rad @@ -177156,7 +177177,7 @@ entities: - 74 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22659 + - uid: 22582 components: - type: Transform rot: 3.141592653589793 rad @@ -177167,7 +177188,7 @@ entities: - 84 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22660 + - uid: 22583 components: - type: Transform rot: 3.141592653589793 rad @@ -177178,7 +177199,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22661 + - uid: 22584 components: - type: Transform pos: 43.5,4.5 @@ -177188,7 +177209,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22662 + - uid: 22585 components: - type: Transform rot: 1.5707963267948966 rad @@ -177199,7 +177220,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22663 + - uid: 22586 components: - type: Transform rot: 3.141592653589793 rad @@ -177210,7 +177231,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22664 + - uid: 22587 components: - type: Transform rot: 3.141592653589793 rad @@ -177221,7 +177242,7 @@ entities: - 70 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22665 + - uid: 22588 components: - type: Transform rot: 3.141592653589793 rad @@ -177229,7 +177250,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22666 + - uid: 22589 components: - type: Transform rot: -1.5707963267948966 rad @@ -177240,7 +177261,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22667 + - uid: 22590 components: - type: Transform pos: 40.5,12.5 @@ -177250,7 +177271,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22668 + - uid: 22591 components: - type: Transform rot: 1.5707963267948966 rad @@ -177261,7 +177282,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22669 + - uid: 22592 components: - type: Transform rot: 1.5707963267948966 rad @@ -177272,7 +177293,7 @@ entities: - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22670 + - uid: 22593 components: - type: Transform rot: 3.141592653589793 rad @@ -177283,7 +177304,7 @@ entities: - 88 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22671 + - uid: 22594 components: - type: Transform rot: 1.5707963267948966 rad @@ -177294,7 +177315,7 @@ entities: - 90 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22672 + - uid: 22595 components: - type: Transform pos: 51.5,24.5 @@ -177304,7 +177325,7 @@ entities: - 91 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22673 + - uid: 22596 components: - type: Transform rot: 3.141592653589793 rad @@ -177315,7 +177336,7 @@ entities: - 88 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22674 + - uid: 22597 components: - type: Transform rot: 3.141592653589793 rad @@ -177326,7 +177347,7 @@ entities: - 70 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22675 + - uid: 22598 components: - type: Transform pos: 74.5,22.5 @@ -177336,7 +177357,7 @@ entities: - 94 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22676 + - uid: 22599 components: - type: Transform rot: -1.5707963267948966 rad @@ -177347,7 +177368,7 @@ entities: - 117 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22677 + - uid: 22600 components: - type: Transform rot: -1.5707963267948966 rad @@ -177358,7 +177379,7 @@ entities: - 38 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22678 + - uid: 22601 components: - type: Transform pos: 21.5,-31.5 @@ -177368,7 +177389,7 @@ entities: - 38 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22679 + - uid: 22602 components: - type: Transform pos: 11.5,-37.5 @@ -177378,7 +177399,7 @@ entities: - 120 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22680 + - uid: 22603 components: - type: Transform rot: 1.5707963267948966 rad @@ -177389,7 +177410,7 @@ entities: - 120 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22681 + - uid: 22604 components: - type: Transform rot: 3.141592653589793 rad @@ -177400,7 +177421,7 @@ entities: - 121 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22682 + - uid: 22605 components: - type: Transform rot: 1.5707963267948966 rad @@ -177411,7 +177432,7 @@ entities: - 40 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22683 + - uid: 22606 components: - type: Transform rot: -1.5707963267948966 rad @@ -177422,7 +177443,7 @@ entities: - 40 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22684 + - uid: 22607 components: - type: Transform rot: 3.141592653589793 rad @@ -177433,7 +177454,7 @@ entities: - 40 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22685 + - uid: 22608 components: - type: Transform rot: -1.5707963267948966 rad @@ -177444,7 +177465,7 @@ entities: - 38 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22686 + - uid: 22609 components: - type: Transform rot: -1.5707963267948966 rad @@ -177455,7 +177476,7 @@ entities: - 39 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22687 + - uid: 22610 components: - type: Transform rot: -1.5707963267948966 rad @@ -177466,7 +177487,7 @@ entities: - 39 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22688 + - uid: 22611 components: - type: Transform rot: 1.5707963267948966 rad @@ -177477,7 +177498,7 @@ entities: - 102 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22689 + - uid: 22612 components: - type: Transform rot: 3.141592653589793 rad @@ -177488,7 +177509,7 @@ entities: - 107 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22690 + - uid: 22613 components: - type: Transform pos: -4.5,-32.5 @@ -177498,7 +177519,7 @@ entities: - 102 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22691 + - uid: 22614 components: - type: Transform rot: 1.5707963267948966 rad @@ -177509,7 +177530,7 @@ entities: - 109 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22692 + - uid: 22615 components: - type: Transform rot: 3.141592653589793 rad @@ -177517,7 +177538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22693 + - uid: 22616 components: - type: Transform rot: 3.141592653589793 rad @@ -177528,7 +177549,7 @@ entities: - 110 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22694 + - uid: 22617 components: - type: Transform rot: 1.5707963267948966 rad @@ -177539,7 +177560,7 @@ entities: - 110 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22695 + - uid: 22618 components: - type: Transform rot: 1.5707963267948966 rad @@ -177550,7 +177571,7 @@ entities: - 110 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22696 + - uid: 22619 components: - type: Transform rot: 1.5707963267948966 rad @@ -177561,7 +177582,7 @@ entities: - 108 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22697 + - uid: 22620 components: - type: Transform pos: -21.5,-34.5 @@ -177571,7 +177592,7 @@ entities: - 105 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22698 + - uid: 22621 components: - type: Transform rot: -1.5707963267948966 rad @@ -177582,7 +177603,7 @@ entities: - 107 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22699 + - uid: 22622 components: - type: Transform rot: 1.5707963267948966 rad @@ -177593,7 +177614,7 @@ entities: - 106 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22700 + - uid: 22623 components: - type: Transform rot: 1.5707963267948966 rad @@ -177604,7 +177625,7 @@ entities: - 105 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22701 + - uid: 22624 components: - type: Transform rot: 3.141592653589793 rad @@ -177615,7 +177636,7 @@ entities: - 111 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22702 + - uid: 22625 components: - type: Transform rot: -1.5707963267948966 rad @@ -177626,7 +177647,7 @@ entities: - 87 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22703 + - uid: 22626 components: - type: Transform rot: -1.5707963267948966 rad @@ -177637,7 +177658,7 @@ entities: - 113 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22704 + - uid: 22627 components: - type: Transform rot: 1.5707963267948966 rad @@ -177648,7 +177669,7 @@ entities: - 113 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22705 + - uid: 22628 components: - type: Transform pos: 5.5,-64.5 @@ -177658,7 +177679,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22706 + - uid: 22629 components: - type: Transform rot: 1.5707963267948966 rad @@ -177669,7 +177690,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22707 + - uid: 22630 components: - type: Transform rot: -1.5707963267948966 rad @@ -177680,7 +177701,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22708 + - uid: 22631 components: - type: Transform rot: 3.141592653589793 rad @@ -177691,7 +177712,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22709 + - uid: 22632 components: - type: Transform rot: 3.141592653589793 rad @@ -177702,7 +177723,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22710 + - uid: 22633 components: - type: Transform rot: -1.5707963267948966 rad @@ -177713,7 +177734,7 @@ entities: - 114 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22711 + - uid: 22634 components: - type: Transform pos: -17.5,-64.5 @@ -177723,7 +177744,7 @@ entities: - 115 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22712 + - uid: 22635 components: - type: Transform rot: 1.5707963267948966 rad @@ -177734,7 +177755,7 @@ entities: - 115 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22713 + - uid: 22636 components: - type: Transform rot: 3.141592653589793 rad @@ -177745,7 +177766,7 @@ entities: - 115 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22714 + - uid: 22637 components: - type: Transform rot: -1.5707963267948966 rad @@ -177753,7 +177774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22715 + - uid: 22638 components: - type: Transform rot: 1.5707963267948966 rad @@ -177761,7 +177782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22716 + - uid: 22639 components: - type: Transform rot: -1.5707963267948966 rad @@ -177769,7 +177790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22717 + - uid: 22640 components: - type: Transform rot: 1.5707963267948966 rad @@ -177777,14 +177798,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22718 + - uid: 22641 components: - type: Transform pos: -117.5,45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22719 + - uid: 22642 components: - type: Transform rot: 1.5707963267948966 rad @@ -177792,7 +177813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22720 + - uid: 22643 components: - type: Transform rot: 1.5707963267948966 rad @@ -177800,7 +177821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22721 + - uid: 22644 components: - type: Transform rot: 3.141592653589793 rad @@ -177811,7 +177832,7 @@ entities: - 75 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22722 + - uid: 22645 components: - type: Transform pos: 81.5,1.5 @@ -177821,7 +177842,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22723 + - uid: 22646 components: - type: Transform rot: 3.141592653589793 rad @@ -177832,7 +177853,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22724 + - uid: 22647 components: - type: Transform rot: 3.141592653589793 rad @@ -177843,7 +177864,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22725 + - uid: 22648 components: - type: Transform rot: 3.141592653589793 rad @@ -177854,7 +177875,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22726 + - uid: 22649 components: - type: Transform pos: 86.5,5.5 @@ -177864,7 +177885,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22727 + - uid: 22650 components: - type: Transform pos: 93.5,2.5 @@ -177874,7 +177895,7 @@ entities: - 96 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22728 + - uid: 22651 components: - type: Transform pos: 78.5,5.5 @@ -177884,7 +177905,7 @@ entities: - 34 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22729 + - uid: 22652 components: - type: Transform rot: -1.5707963267948966 rad @@ -177892,85 +177913,85 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39403 + - uid: 39230 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38585 + - 38412 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39404 + - uid: 39231 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39405 + - uid: 39232 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,7.5 - parent: 38584 + parent: 38411 - type: DeviceNetwork deviceLists: - - 38586 + - 38413 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39406 + - uid: 39233 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,8.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39407 + - uid: 39234 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,9.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39408 + - uid: 39235 components: - type: Transform pos: -12.5,-5.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39409 + - uid: 39236 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39410 + - uid: 39237 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 - parent: 38584 + parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 22730 + - uid: 22653 components: - type: Transform pos: -117.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22731 + - uid: 22654 components: - type: Transform rot: -1.5707963267948966 rad @@ -177980,218 +178001,218 @@ entities: color: '#FF0000FF' - proto: Gauze entities: - - uid: 22732 + - uid: 22655 components: - type: Transform pos: 24.5022,-31.36834 parent: 2 - - uid: 22733 + - uid: 22656 components: - type: Transform pos: 25.122957,-24.40516 parent: 2 - - uid: 22734 + - uid: 22657 components: - type: Transform pos: 35.5,-41.5 parent: 2 - proto: GeneratorBasic entities: - - uid: 22735 + - uid: 22658 components: - type: Transform pos: -49.5,-13.5 parent: 2 - proto: GeneratorBasic15kW entities: - - uid: 39411 + - uid: 39238 components: - type: Transform pos: 10.5,7.5 - parent: 38584 - - uid: 39412 + parent: 38411 + - uid: 39239 components: - type: Transform pos: 9.5,7.5 - parent: 38584 - - uid: 39413 + parent: 38411 + - uid: 39240 components: - type: Transform pos: 8.5,7.5 - parent: 38584 + parent: 38411 - proto: GeneratorRTG entities: - - uid: 22736 + - uid: 22659 components: - type: Transform pos: 13.5,-5.5 parent: 2 - - uid: 22737 + - uid: 22660 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 22738 + - uid: 22661 components: - type: Transform pos: -121.5,26.5 parent: 2 - - uid: 22739 + - uid: 22662 components: - type: Transform pos: -122.5,26.5 parent: 2 - - uid: 22740 + - uid: 22663 components: - type: Transform pos: -123.5,26.5 parent: 2 - proto: GeneratorRTGDamaged entities: - - uid: 9975 + - uid: 22664 components: - type: Transform pos: -37.5,-22.5 parent: 2 - proto: GeneratorWallmountAPU entities: - - uid: 38526 + - uid: 38353 components: - type: Transform pos: 0.5,2.5 - parent: 38484 + parent: 38311 - type: PowerSupplier supplyRate: 60000 - proto: Girder entities: - - uid: 22741 + - uid: 22665 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-19.5 parent: 2 - - uid: 22742 + - uid: 22666 components: - type: Transform pos: 7.5,56.5 parent: 2 - - uid: 22743 + - uid: 22667 components: - type: Transform pos: 39.5,-47.5 parent: 2 - - uid: 22744 + - uid: 22668 components: - type: Transform pos: -66.5,-31.5 parent: 2 - - uid: 22745 + - uid: 22669 components: - type: Transform pos: -10.5,-56.5 parent: 2 - - uid: 22746 + - uid: 22670 components: - type: Transform pos: 49.5,-39.5 parent: 2 - - uid: 22747 + - uid: 22671 components: - type: Transform pos: -73.5,-21.5 parent: 2 - - uid: 22748 + - uid: 22672 components: - type: Transform pos: 22.5,-18.5 parent: 2 - - uid: 22749 + - uid: 22673 components: - type: Transform pos: -59.5,-20.5 parent: 2 - - uid: 22750 + - uid: 22674 components: - type: Transform pos: 48.5,-11.5 parent: 2 - - uid: 22751 + - uid: 22675 components: - type: Transform pos: 20.5,-55.5 parent: 2 - - uid: 22752 + - uid: 22676 components: - type: Transform pos: 41.5,-26.5 parent: 2 - - uid: 22753 + - uid: 22677 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 22754 + - uid: 22678 components: - type: Transform pos: -30.5,-18.5 parent: 2 - - uid: 22755 + - uid: 22679 components: - type: Transform pos: -29.5,-18.5 parent: 2 - - uid: 22756 + - uid: 22680 components: - type: Transform pos: 35.5,-4.5 parent: 2 - - uid: 22757 + - uid: 22681 components: - type: Transform pos: 14.5,-54.5 parent: 2 - - uid: 22758 + - uid: 22682 components: - type: Transform pos: 37.5,-67.5 parent: 2 - - uid: 22759 + - uid: 22683 components: - type: Transform pos: -34.5,-18.5 parent: 2 - - uid: 22760 + - uid: 22684 components: - type: Transform pos: -19.5,-62.5 parent: 2 - - uid: 22761 + - uid: 22685 components: - type: Transform pos: 36.5,-53.5 parent: 2 - - uid: 22762 + - uid: 22686 components: - type: Transform pos: 13.5,-83.5 parent: 2 - proto: GlassBoxBroken entities: - - uid: 22763 + - uid: 22687 components: - type: Transform pos: 49.5,-27.5 parent: 2 - proto: Gohei entities: - - uid: 39414 + - uid: 39241 components: - type: Transform pos: 3.0654716,35.37439 - parent: 38584 + parent: 38411 - proto: GoldOre1 entities: - - uid: 22764 + - uid: 22688 components: - type: Transform rot: 3.141593671850739 rad @@ -178199,9818 +178220,9818 @@ entities: parent: 2 - proto: GravityGenerator entities: - - uid: 22765 + - uid: 22689 components: - type: Transform pos: -71.5,6.5 parent: 2 - proto: GravityGeneratorMini entities: - - uid: 38527 + - uid: 38354 components: - type: Transform pos: 1.5,-2.5 - parent: 38484 + parent: 38311 - type: Visibility layer: 12 - - uid: 39415 + - uid: 39242 components: - type: Transform pos: 7.5,4.5 - parent: 38584 + parent: 38411 - proto: Grille entities: - - uid: 2809 + - uid: 22690 components: - type: Transform pos: 80.5,-24.5 parent: 2 - - uid: 22766 + - uid: 22691 components: - type: Transform pos: 26.5,20.5 parent: 2 - - uid: 22767 + - uid: 22692 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-40.5 parent: 2 - - uid: 22768 + - uid: 22693 components: - type: Transform pos: 63.5,31.5 parent: 2 - - uid: 22769 + - uid: 22694 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,33.5 parent: 2 - - uid: 22770 + - uid: 22695 components: - type: Transform pos: -72.5,21.5 parent: 2 - - uid: 22771 + - uid: 22696 components: - type: Transform pos: -72.5,24.5 parent: 2 - - uid: 22772 + - uid: 22697 components: - type: Transform pos: -67.5,30.5 parent: 2 - - uid: 22773 + - uid: 22698 components: - type: Transform pos: -72.5,20.5 parent: 2 - - uid: 22774 + - uid: 22699 components: - type: Transform pos: -67.5,28.5 parent: 2 - - uid: 22775 + - uid: 22700 components: - type: Transform pos: -72.5,23.5 parent: 2 - - uid: 22776 + - uid: 22701 components: - type: Transform pos: -69.5,29.5 parent: 2 - - uid: 22777 + - uid: 22702 components: - type: Transform pos: -67.5,29.5 parent: 2 - - uid: 22778 + - uid: 22703 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,3.5 parent: 2 - - uid: 22779 + - uid: 22704 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,4.5 parent: 2 - - uid: 22780 + - uid: 22705 components: - type: Transform pos: 94.5,9.5 parent: 2 - - uid: 22781 + - uid: 22706 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-5.5 parent: 2 - - uid: 22782 + - uid: 22707 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-5.5 parent: 2 - - uid: 22783 + - uid: 22708 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-5.5 parent: 2 - - uid: 22784 + - uid: 22709 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-5.5 parent: 2 - - uid: 22785 + - uid: 22710 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-5.5 parent: 2 - - uid: 22786 + - uid: 22711 components: - type: Transform pos: 98.5,1.5 parent: 2 - - uid: 22787 + - uid: 22712 components: - type: Transform pos: 93.5,8.5 parent: 2 - - uid: 22788 + - uid: 22713 components: - type: Transform pos: -69.5,38.5 parent: 2 - - uid: 22789 + - uid: 22714 components: - type: Transform pos: -67.5,52.5 parent: 2 - - uid: 22790 + - uid: 22715 components: - type: Transform pos: -67.5,32.5 parent: 2 - - uid: 22791 + - uid: 22716 components: - type: Transform pos: -69.5,36.5 parent: 2 - - uid: 22792 + - uid: 22717 components: - type: Transform pos: -67.5,37.5 parent: 2 - - uid: 22793 + - uid: 22718 components: - type: Transform pos: -67.5,34.5 parent: 2 - - uid: 22794 + - uid: 22719 components: - type: Transform pos: -69.5,33.5 parent: 2 - - uid: 22795 + - uid: 22720 components: - type: Transform pos: -67.5,38.5 parent: 2 - - uid: 22796 + - uid: 22721 components: - type: Transform pos: -67.5,33.5 parent: 2 - - uid: 22797 + - uid: 22722 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,22.5 parent: 2 - - uid: 22798 + - uid: 22723 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-5.5 parent: 2 - - uid: 22799 + - uid: 22724 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,2.5 parent: 2 - - uid: 22800 + - uid: 22725 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-71.5 parent: 2 - - uid: 22801 + - uid: 22726 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,26.5 parent: 2 - - uid: 22802 + - uid: 22727 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,26.5 parent: 2 - - uid: 22803 + - uid: 22728 components: - type: Transform pos: 8.5,32.5 parent: 2 - - uid: 22804 + - uid: 22729 components: - type: Transform pos: -0.5,63.5 parent: 2 - - uid: 22805 + - uid: 22730 components: - type: Transform pos: 5.5,86.5 parent: 2 - - uid: 22806 + - uid: 22731 components: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 22807 + - uid: 22732 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,71.5 parent: 2 - - uid: 22808 + - uid: 22733 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,4.5 parent: 2 - - uid: 22809 + - uid: 22734 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,5.5 parent: 2 - - uid: 22810 + - uid: 22735 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 - - uid: 22811 + - uid: 22736 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 - - uid: 22812 + - uid: 22737 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-11.5 parent: 2 - - uid: 22813 + - uid: 22738 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 22814 + - uid: 22739 components: - type: Transform pos: 1.5,-6.5 parent: 2 - - uid: 22815 + - uid: 22740 components: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 22816 + - uid: 22741 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,33.5 parent: 2 - - uid: 22817 + - uid: 22742 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 - - uid: 22818 + - uid: 22743 components: - type: Transform pos: -16.5,3.5 parent: 2 - - uid: 22819 + - uid: 22744 components: - type: Transform pos: 3.5,-6.5 parent: 2 - - uid: 22820 + - uid: 22745 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 - - uid: 22821 + - uid: 22746 components: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 22822 + - uid: 22747 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 22823 + - uid: 22748 components: - type: Transform pos: -82.5,13.5 parent: 2 - - uid: 22824 + - uid: 22749 components: - type: Transform pos: -56.5,64.5 parent: 2 - - uid: 22825 + - uid: 22750 components: - type: Transform pos: 27.5,33.5 parent: 2 - - uid: 22826 + - uid: 22751 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,3.5 parent: 2 - - uid: 22827 + - uid: 22752 components: - type: Transform pos: 42.5,24.5 parent: 2 - - uid: 22828 + - uid: 22753 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,94.5 parent: 2 - - uid: 22829 + - uid: 22754 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-45.5 parent: 2 - - uid: 22830 + - uid: 22755 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-46.5 parent: 2 - - uid: 22831 + - uid: 22756 components: - type: Transform pos: -23.5,3.5 parent: 2 - - uid: 22832 + - uid: 22757 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,6.5 parent: 2 - - uid: 22833 + - uid: 22758 components: - type: Transform pos: 49.5,17.5 parent: 2 - - uid: 22834 + - uid: 22759 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,6.5 parent: 2 - - uid: 22835 + - uid: 22760 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,70.5 parent: 2 - - uid: 22836 + - uid: 22761 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,6.5 parent: 2 - - uid: 22837 + - uid: 22762 components: - type: Transform pos: -83.5,-8.5 parent: 2 - - uid: 22838 + - uid: 22763 components: - type: Transform pos: -61.5,64.5 parent: 2 - - uid: 22839 + - uid: 22764 components: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 22840 + - uid: 22765 components: - type: Transform pos: -60.5,65.5 parent: 2 - - uid: 22841 + - uid: 22766 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,36.5 parent: 2 - - uid: 22842 + - uid: 22767 components: - type: Transform pos: 31.5,53.5 parent: 2 - - uid: 22843 + - uid: 22768 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,69.5 parent: 2 - - uid: 22844 + - uid: 22769 components: - type: Transform pos: -31.5,73.5 parent: 2 - - uid: 22845 + - uid: 22770 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,4.5 parent: 2 - - uid: 22846 + - uid: 22771 components: - type: Transform pos: 65.5,-5.5 parent: 2 - - uid: 22847 + - uid: 22772 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,65.5 parent: 2 - - uid: 22848 + - uid: 22773 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,97.5 parent: 2 - - uid: 22849 + - uid: 22774 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,4.5 parent: 2 - - uid: 22850 + - uid: 22775 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,91.5 parent: 2 - - uid: 22851 + - uid: 22776 components: - type: Transform pos: -83.5,-9.5 parent: 2 - - uid: 22852 + - uid: 22777 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-3.5 parent: 2 - - uid: 22853 + - uid: 22778 components: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 22854 + - uid: 22779 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,99.5 parent: 2 - - uid: 22855 + - uid: 22780 components: - type: Transform pos: -82.5,15.5 parent: 2 - - uid: 22856 + - uid: 22781 components: - type: Transform pos: 84.5,-8.5 parent: 2 - - uid: 22857 + - uid: 22782 components: - type: Transform pos: 45.5,-17.5 parent: 2 - - uid: 22858 + - uid: 22783 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,6.5 parent: 2 - - uid: 22859 + - uid: 22784 components: - type: Transform pos: 75.5,17.5 parent: 2 - - uid: 22860 + - uid: 22785 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-78.5 parent: 2 - - uid: 22861 + - uid: 22786 components: - type: Transform pos: 32.5,53.5 parent: 2 - - uid: 22862 + - uid: 22787 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,4.5 parent: 2 - - uid: 22863 + - uid: 22788 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-46.5 parent: 2 - - uid: 22864 + - uid: 22789 components: - type: Transform pos: 65.5,-17.5 parent: 2 - - uid: 22865 + - uid: 22790 components: - type: Transform pos: 64.5,-8.5 parent: 2 - - uid: 22866 + - uid: 22791 components: - type: Transform pos: 67.5,-14.5 parent: 2 - - uid: 22867 + - uid: 22792 components: - type: Transform pos: 50.5,14.5 parent: 2 - - uid: 22868 + - uid: 22793 components: - type: Transform pos: 49.5,15.5 parent: 2 - - uid: 22869 + - uid: 22794 components: - type: Transform pos: 49.5,9.5 parent: 2 - - uid: 22870 + - uid: 22795 components: - type: Transform pos: 64.5,-17.5 parent: 2 - - uid: 22872 + - uid: 22796 components: - type: Transform pos: 65.5,-31.5 parent: 2 - - uid: 22873 + - uid: 22797 components: - type: Transform pos: 76.5,-17.5 parent: 2 - - uid: 22874 + - uid: 22798 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,4.5 parent: 2 - - uid: 22875 + - uid: 22799 components: - type: Transform pos: 52.5,14.5 parent: 2 - - uid: 22876 + - uid: 22800 components: - type: Transform pos: 48.5,-17.5 parent: 2 - - uid: 22877 + - uid: 22801 components: - type: Transform pos: 30.5,53.5 parent: 2 - - uid: 22878 + - uid: 22802 components: - type: Transform pos: 52.5,10.5 parent: 2 - - uid: 22879 + - uid: 22803 components: - type: Transform pos: -27.5,72.5 parent: 2 - - uid: 22880 + - uid: 22804 components: - type: Transform pos: -27.5,73.5 parent: 2 - - uid: 22881 + - uid: 22805 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,86.5 parent: 2 - - uid: 22882 + - uid: 22806 components: - type: Transform pos: -28.5,99.5 parent: 2 - - uid: 22883 + - uid: 22807 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-36.5 parent: 2 - - uid: 22884 + - uid: 22808 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,88.5 parent: 2 - - uid: 22885 + - uid: 22809 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-36.5 parent: 2 - - uid: 22886 + - uid: 22810 components: - type: Transform pos: 48.5,24.5 parent: 2 - - uid: 22887 + - uid: 22811 components: - type: Transform pos: 48.5,21.5 parent: 2 - - uid: 22888 + - uid: 22812 components: - type: Transform pos: 51.5,20.5 parent: 2 - - uid: 22889 + - uid: 22813 components: - type: Transform pos: 53.5,20.5 parent: 2 - - uid: 22890 + - uid: 22814 components: - type: Transform pos: 75.5,18.5 parent: 2 - - uid: 22892 + - uid: 22815 components: - type: Transform pos: 64.5,-31.5 parent: 2 - - uid: 22893 + - uid: 22816 components: - type: Transform pos: 4.5,-6.5 parent: 2 - - uid: 22894 + - uid: 22817 components: - type: Transform pos: 64.5,-15.5 parent: 2 - - uid: 22895 + - uid: 22818 components: - type: Transform pos: 64.5,-24.5 parent: 2 - - uid: 22896 + - uid: 22819 components: - type: Transform pos: 64.5,-13.5 parent: 2 - - uid: 22897 + - uid: 22820 components: - type: Transform pos: 67.5,-25.5 parent: 2 - - uid: 22898 + - uid: 22821 components: - type: Transform pos: 64.5,-14.5 parent: 2 - - uid: 22899 + - uid: 22822 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,95.5 parent: 2 - - uid: 22900 + - uid: 22823 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,97.5 parent: 2 - - uid: 22901 + - uid: 22824 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,99.5 parent: 2 - - uid: 22902 + - uid: 22825 components: - type: Transform pos: 66.5,-25.5 parent: 2 - - uid: 22903 + - uid: 22826 components: - type: Transform pos: -16.5,1.5 parent: 2 - - uid: 22904 + - uid: 22827 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,92.5 parent: 2 - - uid: 22905 + - uid: 22828 components: - type: Transform pos: -16.5,2.5 parent: 2 - - uid: 22906 + - uid: 22829 components: - type: Transform pos: -30.5,99.5 parent: 2 - - uid: 22907 + - uid: 22830 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,68.5 parent: 2 - - uid: 22908 + - uid: 22831 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-48.5 parent: 2 - - uid: 22909 + - uid: 22832 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,4.5 parent: 2 - - uid: 22910 + - uid: 22833 components: - type: Transform pos: -31.5,72.5 parent: 2 - - uid: 22911 + - uid: 22834 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-36.5 parent: 2 - - uid: 22912 + - uid: 22835 components: - type: Transform pos: -29.5,-42.5 parent: 2 - - uid: 22913 + - uid: 22836 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,86.5 parent: 2 - - uid: 22914 + - uid: 22837 components: - type: Transform pos: 75.5,-14.5 parent: 2 - - uid: 22915 + - uid: 22838 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,89.5 parent: 2 - - uid: 22916 + - uid: 22839 components: - type: Transform pos: 71.5,12.5 parent: 2 - - uid: 22917 + - uid: 22840 components: - type: Transform pos: -32.5,82.5 parent: 2 - - uid: 22918 + - uid: 22841 components: - type: Transform pos: -9.5,73.5 parent: 2 - - uid: 22919 + - uid: 22842 components: - type: Transform pos: 68.5,-25.5 parent: 2 - - uid: 22920 + - uid: 22843 components: - type: Transform pos: -9.5,72.5 parent: 2 - - uid: 22921 + - uid: 22844 components: - type: Transform pos: -27.5,95.5 parent: 2 - - uid: 22922 + - uid: 22845 components: - type: Transform pos: 7.5,86.5 parent: 2 - - uid: 22923 + - uid: 22846 components: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 22924 + - uid: 22847 components: - type: Transform pos: 49.5,3.5 parent: 2 - - uid: 22925 + - uid: 22848 components: - type: Transform pos: 49.5,5.5 parent: 2 - - uid: 22926 + - uid: 22849 components: - type: Transform pos: -11.5,-50.5 parent: 2 - - uid: 22927 + - uid: 22850 components: - type: Transform pos: 39.5,53.5 parent: 2 - - uid: 22928 + - uid: 22851 components: - type: Transform pos: 65.5,-8.5 parent: 2 - - uid: 22929 + - uid: 22852 components: - type: Transform pos: 60.5,-1.5 parent: 2 - - uid: 22930 + - uid: 22853 components: - type: Transform pos: -17.5,-52.5 parent: 2 - - uid: 22931 + - uid: 22854 components: - type: Transform pos: 28.5,47.5 parent: 2 - - uid: 22932 + - uid: 22855 components: - type: Transform pos: 78.5,-22.5 parent: 2 - - uid: 22933 + - uid: 22856 components: - type: Transform pos: 64.5,-22.5 parent: 2 - - uid: 22934 + - uid: 22857 components: - type: Transform pos: -14.5,79.5 parent: 2 - - uid: 22935 + - uid: 22858 components: - type: Transform pos: 49.5,11.5 parent: 2 - - uid: 22936 + - uid: 22859 components: - type: Transform pos: -13.5,72.5 parent: 2 - - uid: 22937 + - uid: 22860 components: - type: Transform pos: -13.5,73.5 parent: 2 - - uid: 22938 + - uid: 22861 components: - type: Transform pos: 68.5,0.5 parent: 2 - - uid: 22939 + - uid: 22862 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-66.5 parent: 2 - - uid: 22940 + - uid: 22863 components: - type: Transform pos: 66.5,-14.5 parent: 2 - - uid: 22941 + - uid: 22864 components: - type: Transform pos: -8.5,82.5 parent: 2 - - uid: 22942 + - uid: 22865 components: - type: Transform pos: -4.5,70.5 parent: 2 - - uid: 22943 + - uid: 22866 components: - type: Transform pos: 28.5,53.5 parent: 2 - - uid: 22944 + - uid: 22867 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,97.5 parent: 2 - - uid: 22945 + - uid: 22868 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 22946 + - uid: 22869 components: - type: Transform pos: 76.5,24.5 parent: 2 - - uid: 22947 + - uid: 22870 components: - type: Transform pos: 74.5,24.5 parent: 2 - - uid: 22948 + - uid: 22871 components: - type: Transform pos: -11.5,-6.5 parent: 2 - - uid: 22949 + - uid: 22872 components: - type: Transform pos: -14.5,1.5 parent: 2 - - uid: 22950 + - uid: 22873 components: - type: Transform pos: -14.5,3.5 parent: 2 - - uid: 22951 + - uid: 22874 components: - type: Transform pos: -16.5,9.5 parent: 2 - - uid: 22952 + - uid: 22875 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 22953 + - uid: 22876 components: - type: Transform pos: -16.5,8.5 parent: 2 - - uid: 22954 + - uid: 22877 components: - type: Transform pos: -60.5,16.5 parent: 2 - - uid: 22955 + - uid: 22878 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 22956 + - uid: 22879 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-55.5 parent: 2 - - uid: 22957 + - uid: 22880 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-54.5 parent: 2 - - uid: 22958 + - uid: 22881 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 22959 + - uid: 22882 components: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 22960 + - uid: 22883 components: - type: Transform pos: 46.5,-56.5 parent: 2 - - uid: 22961 + - uid: 22884 components: - type: Transform pos: -79.5,-42.5 parent: 2 - - uid: 22962 + - uid: 22885 components: - type: Transform pos: -58.5,-78.5 parent: 2 - - uid: 22963 + - uid: 22886 components: - type: Transform pos: -69.5,-49.5 parent: 2 - - uid: 22964 + - uid: 22887 components: - type: Transform pos: 30.5,65.5 parent: 2 - - uid: 22965 + - uid: 22888 components: - type: Transform pos: 66.5,-9.5 parent: 2 - - uid: 22966 + - uid: 22889 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,-21.5 parent: 2 - - uid: 22967 + - uid: 22890 components: - type: Transform pos: -26.5,82.5 parent: 2 - - uid: 22968 + - uid: 22891 components: - type: Transform pos: -31.5,86.5 parent: 2 - - uid: 22969 + - uid: 22892 components: - type: Transform pos: -47.5,26.5 parent: 2 - - uid: 22970 + - uid: 22893 components: - type: Transform pos: 36.5,102.5 parent: 2 - - uid: 22971 + - uid: 22894 components: - type: Transform pos: 71.5,-25.5 parent: 2 - - uid: 22972 + - uid: 22895 components: - type: Transform pos: 25.5,62.5 parent: 2 - - uid: 22973 + - uid: 22896 components: - type: Transform pos: 24.5,62.5 parent: 2 - - uid: 22974 + - uid: 22897 components: - type: Transform pos: -56.5,4.5 parent: 2 - - uid: 22975 + - uid: 22898 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,81.5 parent: 2 - - uid: 22976 + - uid: 22899 components: - type: Transform pos: 30.5,47.5 parent: 2 - - uid: 22977 + - uid: 22900 components: - type: Transform pos: -77.5,30.5 parent: 2 - - uid: 22978 + - uid: 22901 components: - type: Transform pos: -83.5,77.5 parent: 2 - - uid: 22979 + - uid: 22902 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,3.5 parent: 2 - - uid: 22980 + - uid: 22903 components: - type: Transform pos: 32.5,47.5 parent: 2 - - uid: 22981 + - uid: 22904 components: - type: Transform pos: 23.5,38.5 parent: 2 - - uid: 22982 + - uid: 22905 components: - type: Transform pos: -33.5,19.5 parent: 2 - - uid: 22983 + - uid: 22906 components: - type: Transform pos: 24.5,60.5 parent: 2 - - uid: 22984 + - uid: 22907 components: - type: Transform pos: 74.5,-40.5 parent: 2 - - uid: 22985 + - uid: 22908 components: - type: Transform pos: -77.5,50.5 parent: 2 - - uid: 22986 + - uid: 22909 components: - type: Transform pos: -80.5,20.5 parent: 2 - - uid: 22987 + - uid: 22910 components: - type: Transform pos: -77.5,26.5 parent: 2 - - uid: 22988 + - uid: 22911 components: - type: Transform pos: -83.5,69.5 parent: 2 - - uid: 22989 + - uid: 22912 components: - type: Transform pos: -82.5,18.5 parent: 2 - - uid: 22990 + - uid: 22913 components: - type: Transform pos: -82.5,20.5 parent: 2 - - uid: 22991 + - uid: 22914 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-21.5 parent: 2 - - uid: 22992 + - uid: 22915 components: - type: Transform pos: -77.5,51.5 parent: 2 - - uid: 22993 + - uid: 22916 components: - type: Transform pos: 83.5,-48.5 parent: 2 - - uid: 22994 + - uid: 22917 components: - type: Transform pos: -77.5,29.5 parent: 2 - - uid: 22995 + - uid: 22918 components: - type: Transform pos: -77.5,32.5 parent: 2 - - uid: 22996 + - uid: 22919 components: - type: Transform pos: 83.5,-49.5 parent: 2 - - uid: 22997 + - uid: 22920 components: - type: Transform pos: 58.5,-56.5 parent: 2 - - uid: 22998 + - uid: 22921 components: - type: Transform pos: 53.5,-60.5 parent: 2 - - uid: 22999 + - uid: 22922 components: - type: Transform pos: 37.5,21.5 parent: 2 - - uid: 23000 + - uid: 22923 components: - type: Transform pos: -75.5,37.5 parent: 2 - - uid: 23001 + - uid: 22924 components: - type: Transform pos: -58.5,-53.5 parent: 2 - - uid: 23002 + - uid: 22925 components: - type: Transform pos: 73.5,-35.5 parent: 2 - - uid: 23003 + - uid: 22926 components: - type: Transform pos: 55.5,-60.5 parent: 2 - - uid: 23004 + - uid: 22927 components: - type: Transform pos: 72.5,-35.5 parent: 2 - - uid: 23005 + - uid: 22928 components: - type: Transform pos: -82.5,17.5 parent: 2 - - uid: 23006 + - uid: 22929 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,-21.5 parent: 2 - - uid: 23007 + - uid: 22930 components: - type: Transform pos: 29.5,47.5 parent: 2 - - uid: 23008 + - uid: 22931 components: - type: Transform pos: -48.5,26.5 parent: 2 - - uid: 23009 + - uid: 22932 components: - type: Transform pos: 31.5,47.5 parent: 2 - - uid: 23010 + - uid: 22933 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - uid: 23011 + - uid: 22934 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-36.5 parent: 2 - - uid: 23012 + - uid: 22935 components: - type: Transform pos: -84.5,70.5 parent: 2 - - uid: 23013 + - uid: 22936 components: - type: Transform pos: -83.5,70.5 parent: 2 - - uid: 23014 + - uid: 22937 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,37.5 parent: 2 - - uid: 23015 + - uid: 22938 components: - type: Transform pos: -42.5,-87.5 parent: 2 - - uid: 23016 + - uid: 22939 components: - type: Transform pos: -50.5,69.5 parent: 2 - - uid: 23017 + - uid: 22940 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-21.5 parent: 2 - - uid: 23018 + - uid: 22941 components: - type: Transform pos: -79.5,-41.5 parent: 2 - - uid: 23019 + - uid: 22942 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-21.5 parent: 2 - - uid: 23020 + - uid: 22943 components: - type: Transform pos: -56.5,-53.5 parent: 2 - - uid: 23021 + - uid: 22944 components: - type: Transform pos: -75.5,39.5 parent: 2 - - uid: 23022 + - uid: 22945 components: - type: Transform pos: 74.5,-52.5 parent: 2 - - uid: 23023 + - uid: 22946 components: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 23024 + - uid: 22947 components: - type: Transform pos: 58.5,-54.5 parent: 2 - - uid: 23025 + - uid: 22948 components: - type: Transform pos: 50.5,-62.5 parent: 2 - - uid: 23026 + - uid: 22949 components: - type: Transform pos: 73.5,-52.5 parent: 2 - - uid: 23027 + - uid: 22950 components: - type: Transform pos: 23.5,3.5 parent: 2 - - uid: 23028 + - uid: 22951 components: - type: Transform pos: 11.5,38.5 parent: 2 - - uid: 23029 + - uid: 22952 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,36.5 parent: 2 - - uid: 23030 + - uid: 22953 components: - type: Transform pos: -22.5,70.5 parent: 2 - - uid: 23031 + - uid: 22954 components: - type: Transform pos: 56.5,-58.5 parent: 2 - - uid: 23032 + - uid: 22955 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,88.5 parent: 2 - - uid: 23033 + - uid: 22956 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 23034 + - uid: 22957 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,35.5 parent: 2 - - uid: 23035 + - uid: 22958 components: - type: Transform pos: 54.5,-19.5 parent: 2 - - uid: 23036 + - uid: 22959 components: - type: Transform pos: 9.5,38.5 parent: 2 - - uid: 23037 + - uid: 22960 components: - type: Transform pos: 78.5,-16.5 parent: 2 - - uid: 23038 + - uid: 22961 components: - type: Transform pos: -83.5,79.5 parent: 2 - - uid: 23039 + - uid: 22962 components: - type: Transform pos: 13.5,74.5 parent: 2 - - uid: 23040 + - uid: 22963 components: - type: Transform pos: -0.5,30.5 parent: 2 - - uid: 23041 + - uid: 22964 components: - type: Transform pos: -8.5,79.5 parent: 2 - - uid: 23042 + - uid: 22965 components: - type: Transform pos: 74.5,-12.5 parent: 2 - - uid: 23043 + - uid: 22966 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,18.5 parent: 2 - - uid: 23044 + - uid: 22967 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-68.5 parent: 2 - - uid: 23045 + - uid: 22968 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-68.5 parent: 2 - - uid: 23046 + - uid: 22969 components: - type: Transform pos: -21.5,3.5 parent: 2 - - uid: 23047 + - uid: 22970 components: - type: Transform pos: 13.5,75.5 parent: 2 - - uid: 23048 + - uid: 22971 components: - type: Transform pos: -15.5,-82.5 parent: 2 - - uid: 23049 + - uid: 22972 components: - type: Transform pos: -26.5,79.5 parent: 2 - - uid: 23050 + - uid: 22973 components: - type: Transform pos: -13.5,-82.5 parent: 2 - - uid: 23051 + - uid: 22974 components: - type: Transform pos: -36.5,28.5 parent: 2 - - uid: 23052 + - uid: 22975 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 23053 + - uid: 22976 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,4.5 parent: 2 - - uid: 23054 + - uid: 22977 components: - type: Transform pos: -57.5,35.5 parent: 2 - - uid: 23055 + - uid: 22978 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - uid: 23056 + - uid: 22979 components: - type: Transform pos: -56.5,58.5 parent: 2 - - uid: 23057 + - uid: 22980 components: - type: Transform pos: -40.5,-24.5 parent: 2 - - uid: 23058 + - uid: 22981 components: - type: Transform pos: 25.5,-69.5 parent: 2 - - uid: 23059 + - uid: 22982 components: - type: Transform pos: 26.5,-70.5 parent: 2 - - uid: 23060 + - uid: 22983 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,0.5 parent: 2 - - uid: 23061 + - uid: 22984 components: - type: Transform pos: -48.5,-26.5 parent: 2 - - uid: 23062 + - uid: 22985 components: - type: Transform pos: 15.5,-29.5 parent: 2 - - uid: 23063 + - uid: 22986 components: - type: Transform pos: -48.5,-28.5 parent: 2 - - uid: 23064 + - uid: 22987 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 23065 + - uid: 22988 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-0.5 parent: 2 - - uid: 23066 + - uid: 22989 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-19.5 parent: 2 - - uid: 23067 + - uid: 22990 components: - type: Transform pos: -11.5,-21.5 parent: 2 - - uid: 23068 + - uid: 22991 components: - type: Transform pos: -13.5,21.5 parent: 2 - - uid: 23069 + - uid: 22992 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 23070 + - uid: 22993 components: - type: Transform pos: 9.5,-21.5 parent: 2 - - uid: 23071 + - uid: 22994 components: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 23072 + - uid: 22995 components: - type: Transform pos: -57.5,8.5 parent: 2 - - uid: 23073 + - uid: 22996 components: - type: Transform pos: 24.5,33.5 parent: 2 - - uid: 23074 + - uid: 22997 components: - type: Transform pos: 37.5,53.5 parent: 2 - - uid: 23075 + - uid: 22998 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,88.5 parent: 2 - - uid: 23076 + - uid: 22999 components: - type: Transform pos: -77.5,64.5 parent: 2 - - uid: 23077 + - uid: 23000 components: - type: Transform pos: -61.5,-48.5 parent: 2 - - uid: 23078 + - uid: 23001 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,95.5 parent: 2 - - uid: 23079 + - uid: 23002 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,91.5 parent: 2 - - uid: 23080 + - uid: 23003 components: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 23081 + - uid: 23004 components: - type: Transform pos: 24.5,39.5 parent: 2 - - uid: 23082 + - uid: 23005 components: - type: Transform pos: 34.5,53.5 parent: 2 - - uid: 23083 + - uid: 23006 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,8.5 parent: 2 - - uid: 23084 + - uid: 23007 components: - type: Transform pos: 72.5,-25.5 parent: 2 - - uid: 23085 + - uid: 23008 components: - type: Transform pos: -48.5,-29.5 parent: 2 - - uid: 23086 + - uid: 23009 components: - type: Transform pos: 19.5,-42.5 parent: 2 - - uid: 23087 + - uid: 23010 components: - type: Transform pos: -75.5,38.5 parent: 2 - - uid: 23088 + - uid: 23011 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,7.5 parent: 2 - - uid: 23089 + - uid: 23012 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,3.5 parent: 2 - - uid: 23090 + - uid: 23013 components: - type: Transform pos: 12.5,16.5 parent: 2 - - uid: 23091 + - uid: 23014 components: - type: Transform pos: -56.5,8.5 parent: 2 - - uid: 23092 + - uid: 23015 components: - type: Transform pos: 35.5,53.5 parent: 2 - - uid: 23093 + - uid: 23016 components: - type: Transform pos: 22.5,60.5 parent: 2 - - uid: 23094 + - uid: 23017 components: - type: Transform pos: 36.5,53.5 parent: 2 - - uid: 23095 + - uid: 23018 components: - type: Transform pos: 77.5,-27.5 parent: 2 - - uid: 23096 + - uid: 23019 components: - type: Transform pos: 4.5,72.5 parent: 2 - - uid: 23097 + - uid: 23020 components: - type: Transform pos: 4.5,73.5 parent: 2 - - uid: 23098 + - uid: 23021 components: - type: Transform pos: -36.5,22.5 parent: 2 - - uid: 23099 + - uid: 23022 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 23100 + - uid: 23023 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 23101 + - uid: 23024 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 23102 + - uid: 23025 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 23103 + - uid: 23026 components: - type: Transform pos: 22.5,-56.5 parent: 2 - - uid: 23104 + - uid: 23027 components: - type: Transform pos: -64.5,68.5 parent: 2 - - uid: 23105 + - uid: 23028 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,3.5 parent: 2 - - uid: 23106 + - uid: 23029 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 23107 + - uid: 23030 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,4.5 parent: 2 - - uid: 23108 + - uid: 23031 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 23109 + - uid: 23032 components: - type: Transform pos: 19.5,-46.5 parent: 2 - - uid: 23110 + - uid: 23033 components: - type: Transform pos: -105.5,-7.5 parent: 2 - - uid: 23111 + - uid: 23034 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,1.5 parent: 2 - - uid: 23112 + - uid: 23035 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,6.5 parent: 2 - - uid: 23113 + - uid: 23036 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,4.5 parent: 2 - - uid: 23114 + - uid: 23037 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 23115 + - uid: 23038 components: - type: Transform pos: 25.5,-44.5 parent: 2 - - uid: 23116 + - uid: 23039 components: - type: Transform pos: 12.5,21.5 parent: 2 - - uid: 23117 + - uid: 23040 components: - type: Transform pos: 29.5,-64.5 parent: 2 - - uid: 23118 + - uid: 23041 components: - type: Transform pos: 25.5,-64.5 parent: 2 - - uid: 23119 + - uid: 23042 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 23120 + - uid: 23043 components: - type: Transform pos: 23.5,-31.5 parent: 2 - - uid: 23121 + - uid: 23044 components: - type: Transform pos: 28.5,-64.5 parent: 2 - - uid: 23122 + - uid: 23045 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,4.5 parent: 2 - - uid: 23123 + - uid: 23046 components: - type: Transform pos: 11.5,21.5 parent: 2 - - uid: 23124 + - uid: 23047 components: - type: Transform pos: 13.5,21.5 parent: 2 - - uid: 23125 + - uid: 23048 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-18.5 parent: 2 - - uid: 23126 + - uid: 23049 components: - type: Transform pos: 19.5,-56.5 parent: 2 - - uid: 23127 + - uid: 23050 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,19.5 parent: 2 - - uid: 23128 + - uid: 23051 components: - type: Transform pos: 20.5,92.5 parent: 2 - - uid: 23129 + - uid: 23052 components: - type: Transform pos: 76.5,-12.5 parent: 2 - - uid: 23130 + - uid: 23053 components: - type: Transform pos: 66.5,-19.5 parent: 2 - - uid: 23131 + - uid: 23054 components: - type: Transform pos: -5.5,70.5 parent: 2 - - uid: 23132 + - uid: 23055 components: - type: Transform pos: -4.5,21.5 parent: 2 - - uid: 23133 + - uid: 23056 components: - type: Transform pos: -3.5,19.5 parent: 2 - - uid: 23134 + - uid: 23057 components: - type: Transform pos: -6.5,21.5 parent: 2 - - uid: 23135 + - uid: 23058 components: - type: Transform pos: -0.5,19.5 parent: 2 - - uid: 23136 + - uid: 23059 components: - type: Transform pos: 25.5,-46.5 parent: 2 - - uid: 23137 + - uid: 23060 components: - type: Transform pos: -14.5,21.5 parent: 2 - - uid: 23138 + - uid: 23061 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 23139 + - uid: 23062 components: - type: Transform pos: 23.5,-41.5 parent: 2 - - uid: 23140 + - uid: 23063 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 23141 + - uid: 23064 components: - type: Transform pos: 59.5,-50.5 parent: 2 - - uid: 23142 + - uid: 23065 components: - type: Transform pos: 19.5,-31.5 parent: 2 - - uid: 23143 + - uid: 23066 components: - type: Transform pos: 66.5,-12.5 parent: 2 - - uid: 23144 + - uid: 23067 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 23145 + - uid: 23068 components: - type: Transform pos: -8.5,-21.5 parent: 2 - - uid: 23146 + - uid: 23069 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 23147 + - uid: 23070 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 23148 + - uid: 23071 components: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 23149 + - uid: 23072 components: - type: Transform pos: 42.5,-71.5 parent: 2 - - uid: 23150 + - uid: 23073 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 23151 + - uid: 23074 components: - type: Transform pos: 38.5,-71.5 parent: 2 - - uid: 23152 + - uid: 23075 components: - type: Transform pos: -29.5,-36.5 parent: 2 - - uid: 23153 + - uid: 23076 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,1.5 parent: 2 - - uid: 23154 + - uid: 23077 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-19.5 parent: 2 - - uid: 23156 + - uid: 23078 components: - type: Transform pos: 25.5,-37.5 parent: 2 - - uid: 23158 + - uid: 23079 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 23159 + - uid: 23080 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 23160 + - uid: 23081 components: - type: Transform pos: -105.5,-4.5 parent: 2 - - uid: 23161 + - uid: 23082 components: - type: Transform pos: 19.5,-37.5 parent: 2 - - uid: 23162 + - uid: 23083 components: - type: Transform pos: 11.5,-12.5 parent: 2 - - uid: 23163 + - uid: 23084 components: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 23164 + - uid: 23085 components: - type: Transform pos: -16.5,16.5 parent: 2 - - uid: 23165 + - uid: 23086 components: - type: Transform pos: -16.5,-26.5 parent: 2 - - uid: 23166 + - uid: 23087 components: - type: Transform pos: 20.5,-32.5 parent: 2 - - uid: 23167 + - uid: 23088 components: - type: Transform pos: 76.5,26.5 parent: 2 - - uid: 23168 + - uid: 23089 components: - type: Transform pos: 65.5,-22.5 parent: 2 - - uid: 23169 + - uid: 23090 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 23170 + - uid: 23091 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,6.5 parent: 2 - - uid: 23171 + - uid: 23092 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,6.5 parent: 2 - - uid: 23172 + - uid: 23093 components: - type: Transform pos: -72.5,9.5 parent: 2 - - uid: 23173 + - uid: 23094 components: - type: Transform pos: -68.5,7.5 parent: 2 - - uid: 23174 + - uid: 23095 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-16.5 parent: 2 - - uid: 23175 + - uid: 23096 components: - type: Transform pos: -33.5,3.5 parent: 2 - - uid: 23176 + - uid: 23097 components: - type: Transform pos: -54.5,43.5 parent: 2 - - uid: 23177 + - uid: 23098 components: - type: Transform pos: -34.5,22.5 parent: 2 - - uid: 23179 + - uid: 23099 components: - type: Transform pos: 77.5,-17.5 parent: 2 - - uid: 23180 + - uid: 23100 components: - type: Transform pos: 78.5,-17.5 parent: 2 - - uid: 23181 + - uid: 23101 components: - type: Transform pos: -63.5,68.5 parent: 2 - - uid: 23182 + - uid: 23102 components: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 23183 + - uid: 23103 components: - type: Transform pos: -77.5,8.5 parent: 2 - - uid: 23184 + - uid: 23104 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,0.5 parent: 2 - - uid: 23185 + - uid: 23105 components: - type: Transform pos: 4.5,21.5 parent: 2 - - uid: 23186 + - uid: 23106 components: - type: Transform pos: -5.5,19.5 parent: 2 - - uid: 23187 + - uid: 23107 components: - type: Transform pos: -0.5,21.5 parent: 2 - - uid: 23188 + - uid: 23108 components: - type: Transform pos: 5.5,21.5 parent: 2 - - uid: 23189 + - uid: 23109 components: - type: Transform pos: 0.5,21.5 parent: 2 - - uid: 23190 + - uid: 23110 components: - type: Transform pos: -6.5,19.5 parent: 2 - - uid: 23191 + - uid: 23111 components: - type: Transform pos: -15.5,-38.5 parent: 2 - - uid: 23192 + - uid: 23112 components: - type: Transform pos: -8.5,17.5 parent: 2 - - uid: 23193 + - uid: 23113 components: - type: Transform pos: -15.5,-42.5 parent: 2 - - uid: 23194 + - uid: 23114 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 23195 + - uid: 23115 components: - type: Transform pos: -19.5,-44.5 parent: 2 - - uid: 23196 + - uid: 23116 components: - type: Transform pos: -7.5,17.5 parent: 2 - - uid: 23197 + - uid: 23117 components: - type: Transform pos: -1.5,21.5 parent: 2 - - uid: 23198 + - uid: 23118 components: - type: Transform pos: -3.5,21.5 parent: 2 - - uid: 23199 + - uid: 23119 components: - type: Transform pos: 3.5,21.5 parent: 2 - - uid: 23200 + - uid: 23120 components: - type: Transform pos: 2.5,21.5 parent: 2 - - uid: 23201 + - uid: 23121 components: - type: Transform pos: 10.5,-28.5 parent: 2 - - uid: 23202 + - uid: 23122 components: - type: Transform pos: -16.5,-36.5 parent: 2 - - uid: 23203 + - uid: 23123 components: - type: Transform pos: 15.5,16.5 parent: 2 - - uid: 23204 + - uid: 23124 components: - type: Transform pos: -70.5,-48.5 parent: 2 - - uid: 23205 + - uid: 23125 components: - type: Transform pos: 30.5,64.5 parent: 2 - - uid: 23206 + - uid: 23126 components: - type: Transform pos: -61.5,-13.5 parent: 2 - - uid: 23207 + - uid: 23127 components: - type: Transform pos: 61.5,-8.5 parent: 2 - - uid: 23208 + - uid: 23128 components: - type: Transform pos: 70.5,-14.5 parent: 2 - - uid: 23210 + - uid: 23129 components: - type: Transform pos: 66.5,-22.5 parent: 2 - - uid: 23211 + - uid: 23130 components: - type: Transform pos: -44.5,-78.5 parent: 2 - - uid: 23212 + - uid: 23131 components: - type: Transform pos: -11.5,-38.5 parent: 2 - - uid: 23213 + - uid: 23132 components: - type: Transform pos: 23.5,-25.5 parent: 2 - - uid: 23214 + - uid: 23133 components: - type: Transform pos: 68.5,-14.5 parent: 2 - - uid: 23215 + - uid: 23134 components: - type: Transform pos: 33.5,-66.5 parent: 2 - - uid: 23216 + - uid: 23135 components: - type: Transform pos: 2.5,25.5 parent: 2 - - uid: 23217 + - uid: 23136 components: - type: Transform pos: 16.5,-56.5 parent: 2 - - uid: 23218 + - uid: 23137 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,67.5 parent: 2 - - uid: 23219 + - uid: 23138 components: - type: Transform pos: 14.5,-28.5 parent: 2 - - uid: 23220 + - uid: 23139 components: - type: Transform pos: -42.5,-53.5 parent: 2 - - uid: 23221 + - uid: 23140 components: - type: Transform pos: -56.5,16.5 parent: 2 - - uid: 23222 + - uid: 23141 components: - type: Transform pos: -8.5,21.5 parent: 2 - - uid: 23223 + - uid: 23142 components: - type: Transform pos: -15.5,-36.5 parent: 2 - - uid: 23224 + - uid: 23143 components: - type: Transform pos: 6.5,17.5 parent: 2 - - uid: 23225 + - uid: 23144 components: - type: Transform pos: 3.5,19.5 parent: 2 - - uid: 23226 + - uid: 23145 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-33.5 parent: 2 - - uid: 23227 + - uid: 23146 components: - type: Transform pos: 4.5,19.5 parent: 2 - - uid: 23228 + - uid: 23147 components: - type: Transform pos: -41.5,-49.5 parent: 2 - - uid: 23229 + - uid: 23148 components: - type: Transform pos: -75.5,8.5 parent: 2 - - uid: 23230 + - uid: 23149 components: - type: Transform pos: -52.5,43.5 parent: 2 - - uid: 23231 + - uid: 23150 components: - type: Transform pos: -13.5,16.5 parent: 2 - - uid: 23232 + - uid: 23151 components: - type: Transform pos: 2.5,19.5 parent: 2 - - uid: 23233 + - uid: 23152 components: - type: Transform pos: -40.5,-49.5 parent: 2 - - uid: 23235 + - uid: 23153 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 23236 + - uid: 23154 components: - type: Transform pos: 0.5,19.5 parent: 2 - - uid: 23237 + - uid: 23155 components: - type: Transform pos: 13.5,-32.5 parent: 2 - - uid: 23238 + - uid: 23156 components: - type: Transform pos: -75.5,29.5 parent: 2 - - uid: 23239 + - uid: 23157 components: - type: Transform pos: -50.5,20.5 parent: 2 - - uid: 23240 + - uid: 23158 components: - type: Transform pos: 43.5,-69.5 parent: 2 - - uid: 23241 + - uid: 23159 components: - type: Transform pos: -50.5,23.5 parent: 2 - - uid: 23242 + - uid: 23160 components: - type: Transform pos: 19.5,-30.5 parent: 2 - - uid: 23243 + - uid: 23161 components: - type: Transform pos: 42.5,16.5 parent: 2 - - uid: 23244 + - uid: 23162 components: - type: Transform pos: 57.5,-45.5 parent: 2 - - uid: 23245 + - uid: 23163 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 23246 + - uid: 23164 components: - type: Transform pos: 54.5,-7.5 parent: 2 - - uid: 23247 + - uid: 23165 components: - type: Transform pos: 50.5,-63.5 parent: 2 - - uid: 23248 + - uid: 23166 components: - type: Transform pos: 79.5,-35.5 parent: 2 - - uid: 23249 + - uid: 23167 components: - type: Transform pos: 78.5,-35.5 parent: 2 - - uid: 23250 + - uid: 23168 components: - type: Transform pos: 80.5,-35.5 parent: 2 - - uid: 23251 + - uid: 23169 components: - type: Transform pos: 77.5,-36.5 parent: 2 - - uid: 23252 + - uid: 23170 components: - type: Transform pos: -11.5,-69.5 parent: 2 - - uid: 23253 + - uid: 23171 components: - type: Transform pos: -57.5,4.5 parent: 2 - - uid: 23254 + - uid: 23172 components: - type: Transform pos: 11.5,65.5 parent: 2 - - uid: 23255 + - uid: 23173 components: - type: Transform pos: 13.5,69.5 parent: 2 - - uid: 23256 + - uid: 23174 components: - type: Transform pos: 26.5,62.5 parent: 2 - - uid: 23257 + - uid: 23175 components: - type: Transform pos: 32.5,-10.5 parent: 2 - - uid: 23258 + - uid: 23176 components: - type: Transform pos: 23.5,-8.5 parent: 2 - - uid: 23259 + - uid: 23177 components: - type: Transform pos: 28.5,62.5 parent: 2 - - uid: 23260 + - uid: 23178 components: - type: Transform pos: 32.5,58.5 parent: 2 - - uid: 23261 + - uid: 23179 components: - type: Transform pos: 32.5,57.5 parent: 2 - - uid: 23262 + - uid: 23180 components: - type: Transform pos: 74.5,-27.5 parent: 2 - - uid: 23263 + - uid: 23181 components: - type: Transform pos: 29.5,62.5 parent: 2 - - uid: 23264 + - uid: 23182 components: - type: Transform pos: 10.5,65.5 parent: 2 - - uid: 23265 + - uid: 23183 components: - type: Transform pos: 77.5,-52.5 parent: 2 - - uid: 23266 + - uid: 23184 components: - type: Transform pos: -25.5,-79.5 parent: 2 - - uid: 23267 + - uid: 23185 components: - type: Transform pos: -5.5,-62.5 parent: 2 - - uid: 23268 + - uid: 23186 components: - type: Transform pos: -17.5,70.5 parent: 2 - - uid: 23269 + - uid: 23187 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-57.5 parent: 2 - - uid: 23270 + - uid: 23188 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,97.5 parent: 2 - - uid: 23271 + - uid: 23189 components: - type: Transform pos: -21.5,70.5 parent: 2 - - uid: 23272 + - uid: 23190 components: - type: Transform pos: -42.5,-24.5 parent: 2 - - uid: 23273 + - uid: 23191 components: - type: Transform pos: -32.5,79.5 parent: 2 - - uid: 23274 + - uid: 23192 components: - type: Transform pos: -74.5,17.5 parent: 2 - - uid: 23275 + - uid: 23193 components: - type: Transform pos: -42.5,61.5 parent: 2 - - uid: 23276 + - uid: 23194 components: - type: Transform pos: -42.5,60.5 parent: 2 - - uid: 23277 + - uid: 23195 components: - type: Transform pos: 18.5,88.5 parent: 2 - - uid: 23278 + - uid: 23196 components: - type: Transform pos: 18.5,86.5 parent: 2 - - uid: 23279 + - uid: 23197 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,91.5 parent: 2 - - uid: 23280 + - uid: 23198 components: - type: Transform pos: 16.5,89.5 parent: 2 - - uid: 23281 + - uid: 23199 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,35.5 parent: 2 - - uid: 23282 + - uid: 23200 components: - type: Transform pos: 3.5,32.5 parent: 2 - - uid: 23283 + - uid: 23201 components: - type: Transform pos: 17.5,88.5 parent: 2 - - uid: 23284 + - uid: 23202 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,92.5 parent: 2 - - uid: 23285 + - uid: 23203 components: - type: Transform pos: -39.5,64.5 parent: 2 - - uid: 23286 + - uid: 23204 components: - type: Transform pos: 16.5,67.5 parent: 2 - - uid: 23287 + - uid: 23205 components: - type: Transform pos: 68.5,-27.5 parent: 2 - - uid: 23288 + - uid: 23206 components: - type: Transform pos: 9.5,41.5 parent: 2 - - uid: 23289 + - uid: 23207 components: - type: Transform pos: 8.5,45.5 parent: 2 - - uid: 23290 + - uid: 23208 components: - type: Transform pos: 6.5,92.5 parent: 2 - - uid: 23291 + - uid: 23209 components: - type: Transform pos: 4.5,92.5 parent: 2 - - uid: 23292 + - uid: 23210 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 - - uid: 23293 + - uid: 23211 components: - type: Transform pos: -27.5,7.5 parent: 2 - - uid: 23294 + - uid: 23212 components: - type: Transform pos: -33.5,-9.5 parent: 2 - - uid: 23295 + - uid: 23213 components: - type: Transform pos: 32.5,-59.5 parent: 2 - - uid: 23296 + - uid: 23214 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-18.5 parent: 2 - - uid: 23297 + - uid: 23215 components: - type: Transform pos: 82.5,-22.5 parent: 2 - - uid: 23298 + - uid: 23216 components: - type: Transform pos: 76.5,-25.5 parent: 2 - - uid: 23299 + - uid: 23217 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 23300 + - uid: 23218 components: - type: Transform rot: 1.5707963267948966 rad pos: -102.5,1.5 parent: 2 - - uid: 23301 + - uid: 23219 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 23302 + - uid: 23220 components: - type: Transform pos: 6.5,-21.5 parent: 2 - - uid: 23303 + - uid: 23221 components: - type: Transform pos: 7.5,-21.5 parent: 2 - - uid: 23304 + - uid: 23222 components: - type: Transform pos: 39.5,-75.5 parent: 2 - - uid: 23305 + - uid: 23223 components: - type: Transform pos: -61.5,-7.5 parent: 2 - - uid: 23306 + - uid: 23224 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-4.5 parent: 2 - - uid: 23307 + - uid: 23225 components: - type: Transform pos: 31.5,-70.5 parent: 2 - - uid: 23308 + - uid: 23226 components: - type: Transform pos: 15.5,-37.5 parent: 2 - - uid: 23309 + - uid: 23227 components: - type: Transform pos: -61.5,18.5 parent: 2 - - uid: 23310 + - uid: 23228 components: - type: Transform pos: -36.5,33.5 parent: 2 - - uid: 23311 + - uid: 23229 components: - type: Transform pos: -76.5,61.5 parent: 2 - - uid: 23312 + - uid: 23230 components: - type: Transform pos: 58.5,-8.5 parent: 2 - - uid: 23313 + - uid: 23231 components: - type: Transform pos: -68.5,-46.5 parent: 2 - - uid: 23314 + - uid: 23232 components: - type: Transform pos: -70.5,-44.5 parent: 2 - - uid: 23315 + - uid: 23233 components: - type: Transform pos: -105.5,-0.5 parent: 2 - - uid: 23316 + - uid: 23234 components: - type: Transform pos: 50.5,-56.5 parent: 2 - - uid: 23317 + - uid: 23235 components: - type: Transform pos: 80.5,-13.5 parent: 2 - - uid: 23318 + - uid: 23236 components: - type: Transform pos: 62.5,-31.5 parent: 2 - - uid: 23319 + - uid: 23237 components: - type: Transform pos: -43.5,29.5 parent: 2 - - uid: 23320 + - uid: 23238 components: - type: Transform pos: 71.5,14.5 parent: 2 - - uid: 23321 + - uid: 23239 components: - type: Transform pos: 76.5,-22.5 parent: 2 - - uid: 23322 + - uid: 23240 components: - type: Transform pos: -13.5,49.5 parent: 2 - - uid: 23323 + - uid: 23241 components: - type: Transform pos: -42.5,-30.5 parent: 2 - - uid: 23324 + - uid: 23242 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,50.5 parent: 2 - - uid: 23325 + - uid: 23243 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,92.5 parent: 2 - - uid: 23326 + - uid: 23244 components: - type: Transform pos: -6.5,-62.5 parent: 2 - - uid: 23327 + - uid: 23245 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,43.5 parent: 2 - - uid: 23328 + - uid: 23246 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 - - uid: 23329 + - uid: 23247 components: - type: Transform pos: 57.5,-42.5 parent: 2 - - uid: 23330 + - uid: 23248 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 23331 + - uid: 23249 components: - type: Transform pos: 71.5,16.5 parent: 2 - - uid: 23332 + - uid: 23250 components: - type: Transform pos: 25.5,39.5 parent: 2 - - uid: 23333 + - uid: 23251 components: - type: Transform pos: -59.5,9.5 parent: 2 - - uid: 23334 + - uid: 23252 components: - type: Transform pos: -37.5,64.5 parent: 2 - - uid: 23335 + - uid: 23253 components: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 23336 + - uid: 23254 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,89.5 parent: 2 - - uid: 23337 + - uid: 23255 components: - type: Transform pos: 10.5,32.5 parent: 2 - - uid: 23338 + - uid: 23256 components: - type: Transform pos: 57.5,-44.5 parent: 2 - - uid: 23339 + - uid: 23257 components: - type: Transform pos: 74.5,-25.5 parent: 2 - - uid: 23340 + - uid: 23258 components: - type: Transform pos: -69.5,17.5 parent: 2 - - uid: 23341 + - uid: 23259 components: - type: Transform pos: -55.5,31.5 parent: 2 - - uid: 23342 + - uid: 23260 components: - type: Transform pos: -57.5,33.5 parent: 2 - - uid: 23343 + - uid: 23261 components: - type: Transform pos: -53.5,31.5 parent: 2 - - uid: 23344 + - uid: 23262 components: - type: Transform pos: 81.5,11.5 parent: 2 - - uid: 23345 + - uid: 23263 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-2.5 parent: 2 - - uid: 23346 + - uid: 23264 components: - type: Transform pos: -47.5,-0.5 parent: 2 - - uid: 23347 + - uid: 23265 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-3.5 parent: 2 - - uid: 23348 + - uid: 23266 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-39.5 parent: 2 - - uid: 23349 + - uid: 23267 components: - type: Transform pos: -24.5,-80.5 parent: 2 - - uid: 23350 + - uid: 23268 components: - type: Transform pos: 16.5,65.5 parent: 2 - - uid: 23351 + - uid: 23269 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-58.5 parent: 2 - - uid: 23352 + - uid: 23270 components: - type: Transform pos: -20.5,10.5 parent: 2 - - uid: 23353 + - uid: 23271 components: - type: Transform pos: -38.5,-24.5 parent: 2 - - uid: 23354 + - uid: 23272 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 23355 + - uid: 23273 components: - type: Transform pos: -22.5,7.5 parent: 2 - - uid: 23356 + - uid: 23274 components: - type: Transform pos: -23.5,70.5 parent: 2 - - uid: 23357 + - uid: 23275 components: - type: Transform pos: -61.5,53.5 parent: 2 - - uid: 23358 + - uid: 23276 components: - type: Transform pos: 66.5,-24.5 parent: 2 - - uid: 23359 + - uid: 23277 components: - type: Transform pos: 77.5,-22.5 parent: 2 - - uid: 23360 + - uid: 23278 components: - type: Transform pos: -2.5,-31.5 parent: 2 - - uid: 23361 + - uid: 23279 components: - type: Transform pos: -16.5,-82.5 parent: 2 - - uid: 23362 + - uid: 23280 components: - type: Transform pos: -53.5,39.5 parent: 2 - - uid: 23363 + - uid: 23281 components: - type: Transform pos: -60.5,51.5 parent: 2 - - uid: 23364 + - uid: 23282 components: - type: Transform pos: -51.5,33.5 parent: 2 - - uid: 23365 + - uid: 23283 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 23366 + - uid: 23284 components: - type: Transform pos: -46.5,-73.5 parent: 2 - - uid: 23367 + - uid: 23285 components: - type: Transform pos: 23.5,37.5 parent: 2 - - uid: 23368 + - uid: 23286 components: - type: Transform pos: 5.5,18.5 parent: 2 - - uid: 23369 + - uid: 23287 components: - type: Transform pos: -27.5,-42.5 parent: 2 - - uid: 23370 + - uid: 23288 components: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 23371 + - uid: 23289 components: - type: Transform pos: 1.5,-23.5 parent: 2 - - uid: 23372 + - uid: 23290 components: - type: Transform pos: 15.5,-40.5 parent: 2 - - uid: 23373 + - uid: 23291 components: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 23374 + - uid: 23292 components: - type: Transform pos: -76.5,17.5 parent: 2 - - uid: 23375 + - uid: 23293 components: - type: Transform pos: -103.5,-7.5 parent: 2 - - uid: 23376 + - uid: 23294 components: - type: Transform pos: 2.5,66.5 parent: 2 - - uid: 23377 + - uid: 23295 components: - type: Transform pos: 4.5,63.5 parent: 2 - - uid: 23378 + - uid: 23296 components: - type: Transform pos: -36.5,17.5 parent: 2 - - uid: 23379 + - uid: 23297 components: - type: Transform pos: 39.5,47.5 parent: 2 - - uid: 23380 + - uid: 23298 components: - type: Transform pos: -0.5,70.5 parent: 2 - - uid: 23381 + - uid: 23299 components: - type: Transform pos: -34.5,17.5 parent: 2 - - uid: 23382 + - uid: 23300 components: - type: Transform pos: 4.5,89.5 parent: 2 - - uid: 23383 + - uid: 23301 components: - type: Transform pos: 4.5,86.5 parent: 2 - - uid: 23384 + - uid: 23302 components: - type: Transform pos: 63.5,-8.5 parent: 2 - - uid: 23385 + - uid: 23303 components: - type: Transform pos: 66.5,-29.5 parent: 2 - - uid: 23386 + - uid: 23304 components: - type: Transform pos: -45.5,27.5 parent: 2 - - uid: 23387 + - uid: 23305 components: - type: Transform pos: 72.5,-14.5 parent: 2 - - uid: 23388 + - uid: 23306 components: - type: Transform pos: -21.5,22.5 parent: 2 - - uid: 23389 + - uid: 23307 components: - type: Transform pos: -66.5,53.5 parent: 2 - - uid: 23390 + - uid: 23308 components: - type: Transform pos: -55.5,39.5 parent: 2 - - uid: 23391 + - uid: 23309 components: - type: Transform pos: -31.5,95.5 parent: 2 - - uid: 23392 + - uid: 23310 components: - type: Transform pos: -30.5,-9.5 parent: 2 - - uid: 23393 + - uid: 23311 components: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 23394 + - uid: 23312 components: - type: Transform pos: 66.5,-27.5 parent: 2 - - uid: 23395 + - uid: 23313 components: - type: Transform pos: 81.5,-22.5 parent: 2 - - uid: 23396 + - uid: 23314 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-5.5 parent: 2 - - uid: 23397 + - uid: 23315 components: - type: Transform pos: 76.5,-15.5 parent: 2 - - uid: 23398 + - uid: 23316 components: - type: Transform pos: -44.5,-75.5 parent: 2 - - uid: 23399 + - uid: 23317 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,33.5 parent: 2 - - uid: 23400 + - uid: 23318 components: - type: Transform pos: 71.5,15.5 parent: 2 - - uid: 23401 + - uid: 23319 components: - type: Transform pos: -73.5,17.5 parent: 2 - - uid: 23402 + - uid: 23320 components: - type: Transform pos: -75.5,17.5 parent: 2 - - uid: 23403 + - uid: 23321 components: - type: Transform pos: -47.5,2.5 parent: 2 - - uid: 23404 + - uid: 23322 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - uid: 23405 + - uid: 23323 components: - type: Transform pos: -47.5,0.5 parent: 2 - - uid: 23406 + - uid: 23324 components: - type: Transform pos: -61.5,-11.5 parent: 2 - - uid: 23407 + - uid: 23325 components: - type: Transform pos: -11.5,-42.5 parent: 2 - - uid: 23408 + - uid: 23326 components: - type: Transform pos: -20.5,-51.5 parent: 2 - - uid: 23409 + - uid: 23327 components: - type: Transform pos: -10.5,-35.5 parent: 2 - - uid: 23410 + - uid: 23328 components: - type: Transform pos: -9.5,-44.5 parent: 2 - - uid: 23411 + - uid: 23329 components: - type: Transform pos: -10.5,-21.5 parent: 2 - - uid: 23412 + - uid: 23330 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,33.5 parent: 2 - - uid: 23413 + - uid: 23331 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 23414 + - uid: 23332 components: - type: Transform pos: -12.5,21.5 parent: 2 - - uid: 23415 + - uid: 23333 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-61.5 parent: 2 - - uid: 23416 + - uid: 23334 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,6.5 parent: 2 - - uid: 23417 + - uid: 23335 components: - type: Transform pos: 44.5,-59.5 parent: 2 - - uid: 23418 + - uid: 23336 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 23419 + - uid: 23337 components: - type: Transform pos: 25.5,-42.5 parent: 2 - - uid: 23420 + - uid: 23338 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,33.5 parent: 2 - - uid: 23421 + - uid: 23339 components: - type: Transform pos: 37.5,-62.5 parent: 2 - - uid: 23422 + - uid: 23340 components: - type: Transform pos: -7.5,-21.5 parent: 2 - - uid: 23423 + - uid: 23341 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,33.5 parent: 2 - - uid: 23424 + - uid: 23342 components: - type: Transform pos: -11.5,-48.5 parent: 2 - - uid: 23425 + - uid: 23343 components: - type: Transform pos: 37.5,-60.5 parent: 2 - - uid: 23426 + - uid: 23344 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 23427 + - uid: 23345 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,32.5 parent: 2 - - uid: 23428 + - uid: 23346 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,33.5 parent: 2 - - uid: 23429 + - uid: 23347 components: - type: Transform pos: -86.5,12.5 parent: 2 - - uid: 23430 + - uid: 23348 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,-19.5 parent: 2 - - uid: 23431 + - uid: 23349 components: - type: Transform pos: -60.5,-53.5 parent: 2 - - uid: 23432 + - uid: 23350 components: - type: Transform pos: -77.5,39.5 parent: 2 - - uid: 23433 + - uid: 23351 components: - type: Transform pos: 31.5,-72.5 parent: 2 - - uid: 23434 + - uid: 23352 components: - type: Transform pos: 55.5,-41.5 parent: 2 - - uid: 23435 + - uid: 23353 components: - type: Transform pos: 31.5,88.5 parent: 2 - - uid: 23436 + - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-19.5 parent: 2 - - uid: 23437 + - uid: 23355 components: - type: Transform pos: 11.5,59.5 parent: 2 - - uid: 23438 + - uid: 23356 components: - type: Transform pos: 6.5,38.5 parent: 2 - - uid: 23439 + - uid: 23357 components: - type: Transform pos: 82.5,-19.5 parent: 2 - - uid: 23440 + - uid: 23358 components: - type: Transform pos: 38.5,47.5 parent: 2 - - uid: 23441 + - uid: 23359 components: - type: Transform pos: -60.5,-82.5 parent: 2 - - uid: 23442 + - uid: 23360 components: - type: Transform pos: -65.5,-51.5 parent: 2 - - uid: 23443 + - uid: 23361 components: - type: Transform pos: -60.5,68.5 parent: 2 - - uid: 23444 + - uid: 23362 components: - type: Transform pos: -83.5,78.5 parent: 2 - - uid: 23445 + - uid: 23363 components: - type: Transform pos: -59.5,68.5 parent: 2 - - uid: 23446 + - uid: 23364 components: - type: Transform pos: 77.5,-37.5 parent: 2 - - uid: 23447 + - uid: 23365 components: - type: Transform pos: 81.5,-35.5 parent: 2 - - uid: 23448 + - uid: 23366 components: - type: Transform pos: 70.5,-25.5 parent: 2 - - uid: 23449 + - uid: 23367 components: - type: Transform pos: 89.5,-43.5 parent: 2 - - uid: 23450 + - uid: 23368 components: - type: Transform pos: 77.5,-49.5 parent: 2 - - uid: 23451 + - uid: 23369 components: - type: Transform pos: 26.5,105.5 parent: 2 - - uid: 23452 + - uid: 23370 components: - type: Transform pos: 84.5,-41.5 parent: 2 - - uid: 23453 + - uid: 23371 components: - type: Transform pos: 41.5,-79.5 parent: 2 - - uid: 23454 + - uid: 23372 components: - type: Transform pos: 33.5,102.5 parent: 2 - - uid: 23455 + - uid: 23373 components: - type: Transform pos: -77.5,44.5 parent: 2 - - uid: 23456 + - uid: 23374 components: - type: Transform pos: -79.5,-36.5 parent: 2 - - uid: 23457 + - uid: 23375 components: - type: Transform pos: -77.5,43.5 parent: 2 - - uid: 23458 + - uid: 23376 components: - type: Transform pos: -55.5,-51.5 parent: 2 - - uid: 23459 + - uid: 23377 components: - type: Transform pos: 31.5,-56.5 parent: 2 - - uid: 23460 + - uid: 23378 components: - type: Transform pos: 13.5,70.5 parent: 2 - - uid: 23461 + - uid: 23379 components: - type: Transform pos: 77.5,-35.5 parent: 2 - - uid: 23462 + - uid: 23380 components: - type: Transform pos: 32.5,-74.5 parent: 2 - - uid: 23463 + - uid: 23381 components: - type: Transform pos: -24.5,-84.5 parent: 2 - - uid: 23464 + - uid: 23382 components: - type: Transform pos: 77.5,-51.5 parent: 2 - - uid: 23465 + - uid: 23383 components: - type: Transform pos: 77.5,-39.5 parent: 2 - - uid: 23466 + - uid: 23384 components: - type: Transform pos: 83.5,-37.5 parent: 2 - - uid: 23467 + - uid: 23385 components: - type: Transform pos: -53.5,69.5 parent: 2 - - uid: 23468 + - uid: 23386 components: - type: Transform pos: -52.5,69.5 parent: 2 - - uid: 23469 + - uid: 23387 components: - type: Transform pos: 83.5,-52.5 parent: 2 - - uid: 23470 + - uid: 23388 components: - type: Transform pos: 83.5,-38.5 parent: 2 - - uid: 23471 + - uid: 23389 components: - type: Transform pos: 83.5,-39.5 parent: 2 - - uid: 23472 + - uid: 23390 components: - type: Transform pos: 40.5,16.5 parent: 2 - - uid: 23473 + - uid: 23391 components: - type: Transform pos: 36.5,98.5 parent: 2 - - uid: 23474 + - uid: 23392 components: - type: Transform pos: 37.5,94.5 parent: 2 - - uid: 23475 + - uid: 23393 components: - type: Transform pos: 37.5,95.5 parent: 2 - - uid: 23476 + - uid: 23394 components: - type: Transform pos: 37.5,92.5 parent: 2 - - uid: 23477 + - uid: 23395 components: - type: Transform pos: 36.5,92.5 parent: 2 - - uid: 23478 + - uid: 23396 components: - type: Transform pos: 36.5,101.5 parent: 2 - - uid: 23479 + - uid: 23397 components: - type: Transform pos: 36.5,99.5 parent: 2 - - uid: 23480 + - uid: 23398 components: - type: Transform pos: 83.5,-40.5 parent: 2 - - uid: 23481 + - uid: 23399 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,7.5 parent: 2 - - uid: 23482 + - uid: 23400 components: - type: Transform pos: 25.5,85.5 parent: 2 - - uid: 23483 + - uid: 23401 components: - type: Transform pos: -43.5,-82.5 parent: 2 - - uid: 23484 + - uid: 23402 components: - type: Transform pos: -44.5,66.5 parent: 2 - - uid: 23485 + - uid: 23403 components: - type: Transform pos: -45.5,68.5 parent: 2 - - uid: 23486 + - uid: 23404 components: - type: Transform pos: -53.5,-75.5 parent: 2 - - uid: 23487 + - uid: 23405 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,6.5 parent: 2 - - uid: 23488 + - uid: 23406 components: - type: Transform pos: -49.5,69.5 parent: 2 - - uid: 23489 + - uid: 23407 components: - type: Transform pos: -42.5,-84.5 parent: 2 - - uid: 23490 + - uid: 23408 components: - type: Transform pos: -45.5,66.5 parent: 2 - - uid: 23491 + - uid: 23409 components: - type: Transform pos: 68.5,-12.5 parent: 2 - - uid: 23492 + - uid: 23410 components: - type: Transform pos: 74.5,-14.5 parent: 2 - - uid: 23493 + - uid: 23411 components: - type: Transform pos: 78.5,-12.5 parent: 2 - - uid: 23494 + - uid: 23412 components: - type: Transform pos: 58.5,-31.5 parent: 2 - - uid: 23495 + - uid: 23413 components: - type: Transform pos: 72.5,-27.5 parent: 2 - - uid: 23496 + - uid: 23414 components: - type: Transform pos: 62.5,-8.5 parent: 2 - - uid: 23497 + - uid: 23415 components: - type: Transform pos: -59.5,7.5 parent: 2 - - uid: 23498 + - uid: 23416 components: - type: Transform pos: 66.5,-15.5 parent: 2 - - uid: 23499 + - uid: 23417 components: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 23500 + - uid: 23418 components: - type: Transform pos: 75.5,-25.5 parent: 2 - - uid: 23501 + - uid: 23419 components: - type: Transform pos: -42.5,-86.5 parent: 2 - - uid: 23502 + - uid: 23420 components: - type: Transform pos: 10.5,25.5 parent: 2 - - uid: 23503 + - uid: 23421 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 23504 + - uid: 23422 components: - type: Transform pos: 83.5,-36.5 parent: 2 - - uid: 23505 + - uid: 23423 components: - type: Transform pos: 72.5,-47.5 parent: 2 - - uid: 23506 + - uid: 23424 components: - type: Transform pos: 82.5,-35.5 parent: 2 - - uid: 23507 + - uid: 23425 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-71.5 parent: 2 - - uid: 23508 + - uid: 23426 components: - type: Transform pos: 85.5,-41.5 parent: 2 - - uid: 23509 + - uid: 23427 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-59.5 parent: 2 - - uid: 23510 + - uid: 23428 components: - type: Transform pos: 37.5,7.5 parent: 2 - - uid: 23511 + - uid: 23429 components: - type: Transform pos: -79.5,-37.5 parent: 2 - - uid: 23512 + - uid: 23430 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,6.5 parent: 2 - - uid: 23513 + - uid: 23431 components: - type: Transform pos: -59.5,-81.5 parent: 2 - - uid: 23514 + - uid: 23432 components: - type: Transform pos: -53.5,-76.5 parent: 2 - - uid: 23515 + - uid: 23433 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-19.5 parent: 2 - - uid: 23516 + - uid: 23434 components: - type: Transform pos: -77.5,38.5 parent: 2 - - uid: 23517 + - uid: 23435 components: - type: Transform pos: 30.5,88.5 parent: 2 - - uid: 23518 + - uid: 23436 components: - type: Transform pos: -56.5,68.5 parent: 2 - - uid: 23519 + - uid: 23437 components: - type: Transform pos: -67.5,79.5 parent: 2 - - uid: 23520 + - uid: 23438 components: - type: Transform pos: 39.5,2.5 parent: 2 - - uid: 23521 + - uid: 23439 components: - type: Transform pos: -66.5,9.5 parent: 2 - - uid: 23522 + - uid: 23440 components: - type: Transform pos: 23.5,58.5 parent: 2 - - uid: 23523 + - uid: 23441 components: - type: Transform pos: 73.5,-12.5 parent: 2 - - uid: 23524 + - uid: 23442 components: - type: Transform pos: 66.5,-28.5 parent: 2 - - uid: 23525 + - uid: 23443 components: - type: Transform pos: -23.5,-84.5 parent: 2 - - uid: 23526 + - uid: 23444 components: - type: Transform pos: 36.5,89.5 parent: 2 - - uid: 23527 + - uid: 23445 components: - type: Transform pos: 64.5,-19.5 parent: 2 - - uid: 23528 + - uid: 23446 components: - type: Transform pos: 30.5,86.5 parent: 2 - - uid: 23529 + - uid: 23447 components: - type: Transform pos: 33.5,88.5 parent: 2 - - uid: 23530 + - uid: 23448 components: - type: Transform pos: 89.5,-47.5 parent: 2 - - uid: 23531 + - uid: 23449 components: - type: Transform pos: 24.5,70.5 parent: 2 - - uid: 23532 + - uid: 23450 components: - type: Transform pos: 24.5,71.5 parent: 2 - - uid: 23533 + - uid: 23451 components: - type: Transform pos: 16.5,69.5 parent: 2 - - uid: 23534 + - uid: 23452 components: - type: Transform pos: 23.5,34.5 parent: 2 - - uid: 23535 + - uid: 23453 components: - type: Transform pos: -59.5,5.5 parent: 2 - - uid: 23536 + - uid: 23454 components: - type: Transform pos: 2.5,46.5 parent: 2 - - uid: 23537 + - uid: 23455 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,88.5 parent: 2 - - uid: 23538 + - uid: 23456 components: - type: Transform pos: -11.5,-64.5 parent: 2 - - uid: 23539 + - uid: 23457 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,89.5 parent: 2 - - uid: 23540 + - uid: 23458 components: - type: Transform pos: -26.5,7.5 parent: 2 - - uid: 23541 + - uid: 23459 components: - type: Transform pos: 5.5,32.5 parent: 2 - - uid: 23542 + - uid: 23460 components: - type: Transform pos: 16.5,33.5 parent: 2 - - uid: 23543 + - uid: 23461 components: - type: Transform pos: 12.5,39.5 parent: 2 - - uid: 23544 + - uid: 23462 components: - type: Transform pos: 8.5,39.5 parent: 2 - - uid: 23545 + - uid: 23463 components: - type: Transform pos: 8.5,40.5 parent: 2 - - uid: 23546 + - uid: 23464 components: - type: Transform pos: -31.5,75.5 parent: 2 - - uid: 23547 + - uid: 23465 components: - type: Transform pos: 3.5,-70.5 parent: 2 - - uid: 23548 + - uid: 23466 components: - type: Transform pos: -16.5,-25.5 parent: 2 - - uid: 23549 + - uid: 23467 components: - type: Transform pos: -103.5,-2.5 parent: 2 - - uid: 23550 + - uid: 23468 components: - type: Transform pos: 28.5,7.5 parent: 2 - - uid: 23551 + - uid: 23469 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,31.5 parent: 2 - - uid: 23552 + - uid: 23470 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,41.5 parent: 2 - - uid: 23553 + - uid: 23471 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,42.5 parent: 2 - - uid: 23554 + - uid: 23472 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,0.5 parent: 2 - - uid: 23555 + - uid: 23473 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 - - uid: 23556 + - uid: 23474 components: - type: Transform pos: 37.5,47.5 parent: 2 - - uid: 23557 + - uid: 23475 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,1.5 parent: 2 - - uid: 23558 + - uid: 23476 components: - type: Transform pos: 34.5,47.5 parent: 2 - - uid: 23559 + - uid: 23477 components: - type: Transform pos: 35.5,47.5 parent: 2 - - uid: 23560 + - uid: 23478 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-0.5 parent: 2 - - uid: 23561 + - uid: 23479 components: - type: Transform pos: 39.5,50.5 parent: 2 - - uid: 23562 + - uid: 23480 components: - type: Transform pos: 38.5,53.5 parent: 2 - - uid: 23563 + - uid: 23481 components: - type: Transform pos: 36.5,47.5 parent: 2 - - uid: 23564 + - uid: 23482 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,39.5 parent: 2 - - uid: 23565 + - uid: 23483 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-17.5 parent: 2 - - uid: 23566 + - uid: 23484 components: - type: Transform pos: 60.5,-31.5 parent: 2 - - uid: 23567 + - uid: 23485 components: - type: Transform pos: 63.5,-31.5 parent: 2 - - uid: 23568 + - uid: 23486 components: - type: Transform pos: -27.5,75.5 parent: 2 - - uid: 23569 + - uid: 23487 components: - type: Transform pos: 13.5,81.5 parent: 2 - - uid: 23570 + - uid: 23488 components: - type: Transform pos: 61.5,-6.5 parent: 2 - - uid: 23571 + - uid: 23489 components: - type: Transform pos: -23.5,49.5 parent: 2 - - uid: 23572 + - uid: 23490 components: - type: Transform pos: -42.5,57.5 parent: 2 - - uid: 23573 + - uid: 23491 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-56.5 parent: 2 - - uid: 23574 + - uid: 23492 components: - type: Transform pos: 59.5,-8.5 parent: 2 - - uid: 23575 + - uid: 23493 components: - type: Transform pos: -56.5,43.5 parent: 2 - - uid: 23576 + - uid: 23494 components: - type: Transform pos: 41.5,-75.5 parent: 2 - - uid: 23577 + - uid: 23495 components: - type: Transform pos: -77.5,63.5 parent: 2 - - uid: 23578 + - uid: 23496 components: - type: Transform pos: -79.5,10.5 parent: 2 - - uid: 23579 + - uid: 23497 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-19.5 parent: 2 - - uid: 23580 + - uid: 23498 components: - type: Transform pos: -79.5,11.5 parent: 2 - - uid: 23581 + - uid: 23499 components: - type: Transform pos: -77.5,65.5 parent: 2 - - uid: 23582 + - uid: 23500 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,4.5 parent: 2 - - uid: 23583 + - uid: 23501 components: - type: Transform pos: -71.5,17.5 parent: 2 - - uid: 23584 + - uid: 23502 components: - type: Transform pos: -45.5,29.5 parent: 2 - - uid: 23585 + - uid: 23503 components: - type: Transform pos: -45.5,32.5 parent: 2 - - uid: 23586 + - uid: 23504 components: - type: Transform pos: -44.5,17.5 parent: 2 - - uid: 23587 + - uid: 23505 components: - type: Transform pos: -45.5,33.5 parent: 2 - - uid: 23588 + - uid: 23506 components: - type: Transform pos: -45.5,34.5 parent: 2 - - uid: 23589 + - uid: 23507 components: - type: Transform pos: -44.5,19.5 parent: 2 - - uid: 23590 + - uid: 23508 components: - type: Transform pos: -51.5,67.5 parent: 2 - - uid: 23591 + - uid: 23509 components: - type: Transform pos: 38.5,-79.5 parent: 2 - - uid: 23592 + - uid: 23510 components: - type: Transform pos: -89.5,15.5 parent: 2 - - uid: 23593 + - uid: 23511 components: - type: Transform pos: -89.5,13.5 parent: 2 - - uid: 23594 + - uid: 23512 components: - type: Transform pos: -53.5,-73.5 parent: 2 - - uid: 23595 + - uid: 23513 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-21.5 parent: 2 - - uid: 23596 + - uid: 23514 components: - type: Transform pos: -75.5,44.5 parent: 2 - - uid: 23597 + - uid: 23515 components: - type: Transform pos: -58.5,-92.5 parent: 2 - - uid: 23598 + - uid: 23516 components: - type: Transform pos: -59.5,-92.5 parent: 2 - - uid: 23599 + - uid: 23517 components: - type: Transform pos: -53.5,-95.5 parent: 2 - - uid: 23600 + - uid: 23518 components: - type: Transform pos: -66.5,69.5 parent: 2 - - uid: 23601 + - uid: 23519 components: - type: Transform pos: -77.5,33.5 parent: 2 - - uid: 23602 + - uid: 23520 components: - type: Transform pos: -56.5,66.5 parent: 2 - - uid: 23603 + - uid: 23521 components: - type: Transform pos: -43.5,-90.5 parent: 2 - - uid: 23604 + - uid: 23522 components: - type: Transform pos: -59.5,-91.5 parent: 2 - - uid: 23605 + - uid: 23523 components: - type: Transform pos: -49.5,-72.5 parent: 2 - - uid: 23606 + - uid: 23524 components: - type: Transform pos: -75.5,34.5 parent: 2 - - uid: 23607 + - uid: 23525 components: - type: Transform pos: -77.5,46.5 parent: 2 - - uid: 23608 + - uid: 23526 components: - type: Transform pos: -66.5,-51.5 parent: 2 - - uid: 23609 + - uid: 23527 components: - type: Transform pos: -60.5,-83.5 parent: 2 - - uid: 23610 + - uid: 23528 components: - type: Transform pos: -75.5,47.5 parent: 2 - - uid: 23611 + - uid: 23529 components: - type: Transform pos: -77.5,37.5 parent: 2 - - uid: 23612 + - uid: 23530 components: - type: Transform pos: -66.5,72.5 parent: 2 - - uid: 23613 + - uid: 23531 components: - type: Transform pos: -43.5,-92.5 parent: 2 - - uid: 23614 + - uid: 23532 components: - type: Transform pos: -55.5,-92.5 parent: 2 - - uid: 23615 + - uid: 23533 components: - type: Transform pos: -57.5,66.5 parent: 2 - - uid: 23616 + - uid: 23534 components: - type: Transform pos: -77.5,47.5 parent: 2 - - uid: 23617 + - uid: 23535 components: - type: Transform pos: -67.5,-51.5 parent: 2 - - uid: 23618 + - uid: 23536 components: - type: Transform pos: -60.5,-84.5 parent: 2 - - uid: 23619 + - uid: 23537 components: - type: Transform pos: -51.5,-72.5 parent: 2 - - uid: 23620 + - uid: 23538 components: - type: Transform pos: -56.5,-92.5 parent: 2 - - uid: 23621 + - uid: 23539 components: - type: Transform pos: -49.5,-95.5 parent: 2 - - uid: 23622 + - uid: 23540 components: - type: Transform pos: -75.5,-43.5 parent: 2 - - uid: 23623 + - uid: 23541 components: - type: Transform pos: -75.5,-42.5 parent: 2 - - uid: 23624 + - uid: 23542 components: - type: Transform pos: -75.5,-41.5 parent: 2 - - uid: 23625 + - uid: 23543 components: - type: Transform pos: -76.5,54.5 parent: 2 - - uid: 23626 + - uid: 23544 components: - type: Transform pos: -75.5,-40.5 parent: 2 - - uid: 23627 + - uid: 23545 components: - type: Transform pos: 66.5,-17.5 parent: 2 - - uid: 23628 + - uid: 23546 components: - type: Transform pos: -49.5,-94.5 parent: 2 - - uid: 23629 + - uid: 23547 components: - type: Transform pos: -75.5,26.5 parent: 2 - - uid: 23630 + - uid: 23548 components: - type: Transform pos: -75.5,27.5 parent: 2 - - uid: 23631 + - uid: 23549 components: - type: Transform pos: -46.5,-78.5 parent: 2 - - uid: 23632 + - uid: 23550 components: - type: Transform pos: -52.5,67.5 parent: 2 - - uid: 23633 + - uid: 23551 components: - type: Transform pos: -67.5,69.5 parent: 2 - - uid: 23634 + - uid: 23552 components: - type: Transform pos: -50.5,-95.5 parent: 2 - - uid: 23635 + - uid: 23553 components: - type: Transform pos: -75.5,52.5 parent: 2 - - uid: 23636 + - uid: 23554 components: - type: Transform pos: -77.5,-43.5 parent: 2 - - uid: 23637 + - uid: 23555 components: - type: Transform pos: 20.5,98.5 parent: 2 - - uid: 23638 + - uid: 23556 components: - type: Transform pos: 19.5,98.5 parent: 2 - - uid: 23639 + - uid: 23557 components: - type: Transform pos: 33.5,20.5 parent: 2 - - uid: 23640 + - uid: 23558 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 23641 + - uid: 23559 components: - type: Transform pos: 78.5,-23.5 parent: 2 - - uid: 23642 + - uid: 23560 components: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 23643 + - uid: 23561 components: - type: Transform pos: 57.5,-8.5 parent: 2 - - uid: 23644 + - uid: 23562 components: - type: Transform pos: 83.5,-50.5 parent: 2 - - uid: 23645 + - uid: 23563 components: - type: Transform pos: 64.5,-25.5 parent: 2 - - uid: 23646 + - uid: 23564 components: - type: Transform pos: 61.5,-31.5 parent: 2 - - uid: 23647 + - uid: 23565 components: - type: Transform pos: 85.5,15.5 parent: 2 - - uid: 23648 + - uid: 23566 components: - type: Transform pos: -75.5,28.5 parent: 2 - - uid: 23649 + - uid: 23567 components: - type: Transform pos: -75.5,45.5 parent: 2 - - uid: 23650 + - uid: 23568 components: - type: Transform pos: 64.5,-26.5 parent: 2 - - uid: 23651 + - uid: 23569 components: - type: Transform pos: 65.5,-12.5 parent: 2 - - uid: 23652 + - uid: 23570 components: - type: Transform pos: -89.5,14.5 parent: 2 - - uid: 23653 + - uid: 23571 components: - type: Transform pos: -82.5,66.5 parent: 2 - - uid: 23654 + - uid: 23572 components: - type: Transform pos: -87.5,15.5 parent: 2 - - uid: 23655 + - uid: 23573 components: - type: Transform pos: -80.5,66.5 parent: 2 - - uid: 23656 + - uid: 23574 components: - type: Transform pos: -84.5,74.5 parent: 2 - - uid: 23657 + - uid: 23575 components: - type: Transform pos: -84.5,72.5 parent: 2 - - uid: 23658 + - uid: 23576 components: - type: Transform pos: -53.5,-72.5 parent: 2 - - uid: 23659 + - uid: 23577 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,-19.5 parent: 2 - - uid: 23660 + - uid: 23578 components: - type: Transform pos: -84.5,76.5 parent: 2 - - uid: 23661 + - uid: 23579 components: - type: Transform pos: -83.5,66.5 parent: 2 - - uid: 23662 + - uid: 23580 components: - type: Transform pos: 78.5,-13.5 parent: 2 - - uid: 23663 + - uid: 23581 components: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 23664 + - uid: 23582 components: - type: Transform pos: 57.5,-31.5 parent: 2 - - uid: 23665 + - uid: 23583 components: - type: Transform pos: 82.5,-17.5 parent: 2 - - uid: 23666 + - uid: 23584 components: - type: Transform pos: 79.5,-22.5 parent: 2 - - uid: 23667 + - uid: 23585 components: - type: Transform pos: 81.5,-17.5 parent: 2 - - uid: 23668 + - uid: 23586 components: - type: Transform pos: -65.5,-48.5 parent: 2 - - uid: 23669 + - uid: 23587 components: - type: Transform pos: -41.5,33.5 parent: 2 - - uid: 23670 + - uid: 23588 components: - type: Transform pos: -67.5,36.5 parent: 2 - - uid: 23671 + - uid: 23589 components: - type: Transform pos: -41.5,32.5 parent: 2 - - uid: 23672 + - uid: 23590 components: - type: Transform pos: -77.5,27.5 parent: 2 - - uid: 23673 + - uid: 23591 components: - type: Transform pos: 57.5,-57.5 parent: 2 - - uid: 23674 + - uid: 23592 components: - type: Transform pos: -44.5,57.5 parent: 2 - - uid: 23675 + - uid: 23593 components: - type: Transform pos: -42.5,-51.5 parent: 2 - - uid: 23676 + - uid: 23594 components: - type: Transform pos: -59.5,-89.5 parent: 2 - - uid: 23677 + - uid: 23595 components: - type: Transform pos: 15.5,-23.5 parent: 2 - - uid: 23678 + - uid: 23596 components: - type: Transform pos: -61.5,-2.5 parent: 2 - - uid: 23679 + - uid: 23597 components: - type: Transform pos: 30.5,-27.5 parent: 2 - - uid: 23680 + - uid: 23598 components: - type: Transform pos: -56.5,57.5 parent: 2 - - uid: 23681 + - uid: 23599 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,33.5 parent: 2 - - uid: 23682 + - uid: 23600 components: - type: Transform pos: 21.5,-49.5 parent: 2 - - uid: 23683 + - uid: 23601 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-54.5 parent: 2 - - uid: 23684 + - uid: 23602 components: - type: Transform pos: -14.5,-21.5 parent: 2 - - uid: 23685 + - uid: 23603 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 23686 + - uid: 23604 components: - type: Transform pos: 25.5,-32.5 parent: 2 - - uid: 23687 + - uid: 23605 components: - type: Transform pos: 27.5,-25.5 parent: 2 - - uid: 23688 + - uid: 23606 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-63.5 parent: 2 - - uid: 23689 + - uid: 23607 components: - type: Transform pos: 15.5,-31.5 parent: 2 - - uid: 23690 + - uid: 23608 components: - type: Transform pos: 66.5,-11.5 parent: 2 - - uid: 23691 + - uid: 23609 components: - type: Transform pos: -75.5,33.5 parent: 2 - - uid: 23692 + - uid: 23610 components: - type: Transform pos: -60.5,-87.5 parent: 2 - - uid: 23693 + - uid: 23611 components: - type: Transform pos: 46.5,14.5 parent: 2 - - uid: 23694 + - uid: 23612 components: - type: Transform pos: 76.5,-24.5 parent: 2 - - uid: 23695 + - uid: 23613 components: - type: Transform pos: 51.5,-56.5 parent: 2 - - uid: 23696 + - uid: 23614 components: - type: Transform pos: 50.5,-60.5 parent: 2 - - uid: 23697 + - uid: 23615 components: - type: Transform pos: -66.5,-47.5 parent: 2 - - uid: 23698 + - uid: 23616 components: - type: Transform pos: -36.5,34.5 parent: 2 - - uid: 23699 + - uid: 23617 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-57.5 parent: 2 - - uid: 23700 + - uid: 23618 components: - type: Transform pos: 7.5,91.5 parent: 2 - - uid: 23701 + - uid: 23619 components: - type: Transform pos: 8.5,90.5 parent: 2 - - uid: 23702 + - uid: 23620 components: - type: Transform pos: 70.5,-12.5 parent: 2 - - uid: 23703 + - uid: 23621 components: - type: Transform pos: 19.5,92.5 parent: 2 - - uid: 23704 + - uid: 23622 components: - type: Transform pos: -63.5,-48.5 parent: 2 - - uid: 23705 + - uid: 23623 components: - type: Transform pos: -43.5,27.5 parent: 2 - - uid: 23706 + - uid: 23624 components: - type: Transform pos: 82.5,-20.5 parent: 2 - - uid: 23707 + - uid: 23625 components: - type: Transform pos: -67.5,13.5 parent: 2 - - uid: 23708 + - uid: 23626 components: - type: Transform pos: 3.5,25.5 parent: 2 - - uid: 23709 + - uid: 23627 components: - type: Transform pos: 33.5,47.5 parent: 2 - - uid: 23710 + - uid: 23628 components: - type: Transform pos: 29.5,53.5 parent: 2 - - uid: 23711 + - uid: 23629 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-67.5 parent: 2 - - uid: 23712 + - uid: 23630 components: - type: Transform pos: 20.5,99.5 parent: 2 - - uid: 23713 + - uid: 23631 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,-21.5 parent: 2 - - uid: 23714 + - uid: 23632 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-70.5 parent: 2 - - uid: 23715 + - uid: 23633 components: - type: Transform pos: -77.5,42.5 parent: 2 - - uid: 23716 + - uid: 23634 components: - type: Transform pos: 36.5,3.5 parent: 2 - - uid: 23717 + - uid: 23635 components: - type: Transform pos: 76.5,-14.5 parent: 2 - - uid: 23718 + - uid: 23636 components: - type: Transform pos: -63.5,53.5 parent: 2 - - uid: 23719 + - uid: 23637 components: - type: Transform pos: 66.5,-10.5 parent: 2 - - uid: 23720 + - uid: 23638 components: - type: Transform pos: -5.5,21.5 parent: 2 - - uid: 23721 + - uid: 23639 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 23722 + - uid: 23640 components: - type: Transform pos: 7.5,17.5 parent: 2 - - uid: 23723 + - uid: 23641 components: - type: Transform pos: -4.5,19.5 parent: 2 - - uid: 23724 + - uid: 23642 components: - type: Transform pos: -6.5,18.5 parent: 2 - - uid: 23725 + - uid: 23643 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-60.5 parent: 2 - - uid: 23726 + - uid: 23644 components: - type: Transform pos: -105.5,-3.5 parent: 2 - - uid: 23727 + - uid: 23645 components: - type: Transform pos: 13.5,-36.5 parent: 2 - - uid: 23728 + - uid: 23646 components: - type: Transform pos: -70.5,17.5 parent: 2 - - uid: 23729 + - uid: 23647 components: - type: Transform pos: -105.5,-2.5 parent: 2 - - uid: 23730 + - uid: 23648 components: - type: Transform pos: 27.5,-24.5 parent: 2 - - uid: 23731 + - uid: 23649 components: - type: Transform pos: -103.5,-4.5 parent: 2 - - uid: 23732 + - uid: 23650 components: - type: Transform pos: 20.5,89.5 parent: 2 - - uid: 23733 + - uid: 23651 components: - type: Transform pos: 87.5,-41.5 parent: 2 - - uid: 23734 + - uid: 23652 components: - type: Transform pos: 29.5,85.5 parent: 2 - - uid: 23735 + - uid: 23653 components: - type: Transform pos: 20.5,85.5 parent: 2 - - uid: 23736 + - uid: 23654 components: - type: Transform pos: 21.5,85.5 parent: 2 - - uid: 23737 + - uid: 23655 components: - type: Transform pos: 30.5,85.5 parent: 2 - - uid: 23738 + - uid: 23656 components: - type: Transform pos: 86.5,-41.5 parent: 2 - - uid: 23739 + - uid: 23657 components: - type: Transform pos: 67.5,-27.5 parent: 2 - - uid: 23740 + - uid: 23658 components: - type: Transform pos: -49.5,56.5 parent: 2 - - uid: 23741 + - uid: 23659 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,6.5 parent: 2 - - uid: 23742 + - uid: 23660 components: - type: Transform pos: -58.5,68.5 parent: 2 - - uid: 23743 + - uid: 23661 components: - type: Transform pos: 37.5,98.5 parent: 2 - - uid: 23744 + - uid: 23662 components: - type: Transform pos: 83.5,-35.5 parent: 2 - - uid: 23745 + - uid: 23663 components: - type: Transform pos: 79.5,-41.5 parent: 2 - - uid: 23746 + - uid: 23664 components: - type: Transform pos: 27.5,25.5 parent: 2 - - uid: 23747 + - uid: 23665 components: - type: Transform pos: -50.5,56.5 parent: 2 - - uid: 23748 + - uid: 23666 components: - type: Transform pos: 2.5,-60.5 parent: 2 - - uid: 23749 + - uid: 23667 components: - type: Transform pos: -3.5,-60.5 parent: 2 - - uid: 23750 + - uid: 23668 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-55.5 parent: 2 - - uid: 23751 + - uid: 23669 components: - type: Transform pos: 29.5,-70.5 parent: 2 - - uid: 23752 + - uid: 23670 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-60.5 parent: 2 - - uid: 23753 + - uid: 23671 components: - type: Transform pos: 3.5,82.5 parent: 2 - - uid: 23754 + - uid: 23672 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-48.5 parent: 2 - - uid: 23755 + - uid: 23673 components: - type: Transform pos: -44.5,-73.5 parent: 2 - - uid: 23756 + - uid: 23674 components: - type: Transform pos: -44.5,-72.5 parent: 2 - - uid: 23757 + - uid: 23675 components: - type: Transform pos: 4.5,75.5 parent: 2 - - uid: 23758 + - uid: 23676 components: - type: Transform pos: 7.5,-77.5 parent: 2 - - uid: 23759 + - uid: 23677 components: - type: Transform pos: 35.5,-72.5 parent: 2 - - uid: 23760 + - uid: 23678 components: - type: Transform pos: -66.5,68.5 parent: 2 - - uid: 23761 + - uid: 23679 components: - type: Transform pos: 83.5,-51.5 parent: 2 - - uid: 23762 + - uid: 23680 components: - type: Transform pos: 6.5,-78.5 parent: 2 - - uid: 23763 + - uid: 23681 components: - type: Transform pos: 9.5,25.5 parent: 2 - - uid: 23764 + - uid: 23682 components: - type: Transform pos: 26.5,85.5 parent: 2 - - uid: 23765 + - uid: 23683 components: - type: Transform pos: 19.5,95.5 parent: 2 - - uid: 23766 + - uid: 23684 components: - type: Transform pos: -86.5,11.5 parent: 2 - - uid: 23767 + - uid: 23685 components: - type: Transform pos: 78.5,-20.5 parent: 2 - - uid: 23768 + - uid: 23686 components: - type: Transform pos: 4.5,-78.5 parent: 2 - - uid: 23769 + - uid: 23687 components: - type: Transform pos: -59.5,11.5 parent: 2 - - uid: 23770 + - uid: 23688 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-46.5 parent: 2 - - uid: 23771 + - uid: 23689 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-54.5 parent: 2 - - uid: 23772 + - uid: 23690 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-60.5 parent: 2 - - uid: 23773 + - uid: 23691 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,91.5 parent: 2 - - uid: 23774 + - uid: 23692 components: - type: Transform pos: -36.5,64.5 parent: 2 - - uid: 23775 + - uid: 23693 components: - type: Transform pos: 11.5,-66.5 parent: 2 - - uid: 23776 + - uid: 23694 components: - type: Transform pos: 79.5,-17.5 parent: 2 - - uid: 23777 + - uid: 23695 components: - type: Transform pos: -11.5,-67.5 parent: 2 - - uid: 23778 + - uid: 23696 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-68.5 parent: 2 - - uid: 23779 + - uid: 23697 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,89.5 parent: 2 - - uid: 23780 + - uid: 23698 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 23781 + - uid: 23699 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 23782 + - uid: 23700 components: - type: Transform pos: 16.5,72.5 parent: 2 - - uid: 23783 + - uid: 23701 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,94.5 parent: 2 - - uid: 23784 + - uid: 23702 components: - type: Transform pos: 78.5,-14.5 parent: 2 - - uid: 23785 + - uid: 23703 components: - type: Transform pos: 78.5,-25.5 parent: 2 - - uid: 23786 + - uid: 23704 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-56.5 parent: 2 - - uid: 23787 + - uid: 23705 components: - type: Transform pos: 35.5,-32.5 parent: 2 - - uid: 23788 + - uid: 23706 components: - type: Transform pos: -42.5,-52.5 parent: 2 - - uid: 23789 + - uid: 23707 components: - type: Transform pos: -52.5,56.5 parent: 2 - - uid: 23790 + - uid: 23708 components: - type: Transform pos: -20.5,14.5 parent: 2 - - uid: 23791 + - uid: 23709 components: - type: Transform pos: -27.5,-32.5 parent: 2 - - uid: 23792 + - uid: 23710 components: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 23793 + - uid: 23711 components: - type: Transform pos: -22.5,-82.5 parent: 2 - - uid: 23794 + - uid: 23712 components: - type: Transform pos: 2.5,-58.5 parent: 2 - - uid: 23795 + - uid: 23713 components: - type: Transform pos: -75.5,43.5 parent: 2 - - uid: 23796 + - uid: 23714 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-64.5 parent: 2 - - uid: 23797 + - uid: 23715 components: - type: Transform pos: 80.5,-15.5 parent: 2 - - uid: 23798 + - uid: 23716 components: - type: Transform pos: -59.5,-82.5 parent: 2 - - uid: 23799 + - uid: 23717 components: - type: Transform pos: 5.5,19.5 parent: 2 - - uid: 23800 + - uid: 23718 components: - type: Transform pos: 66.5,-30.5 parent: 2 - - uid: 23801 + - uid: 23719 components: - type: Transform pos: 57.5,-41.5 parent: 2 - - uid: 23802 + - uid: 23720 components: - type: Transform pos: 60.5,-8.5 parent: 2 - - uid: 23803 + - uid: 23721 components: - type: Transform pos: 71.5,-27.5 parent: 2 - - uid: 23804 + - uid: 23722 components: - type: Transform pos: -42.5,62.5 parent: 2 - - uid: 23805 + - uid: 23723 components: - type: Transform pos: 36.5,91.5 parent: 2 - - uid: 23806 + - uid: 23724 components: - type: Transform pos: -75.5,40.5 parent: 2 - - uid: 23807 + - uid: 23725 components: - type: Transform pos: 72.5,-52.5 parent: 2 - - uid: 23808 + - uid: 23726 components: - type: Transform pos: -77.5,52.5 parent: 2 - - uid: 23809 + - uid: 23727 components: - type: Transform pos: 45.5,-79.5 parent: 2 - - uid: 23810 + - uid: 23728 components: - type: Transform pos: 73.5,-27.5 parent: 2 - - uid: 23811 + - uid: 23729 components: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 23812 + - uid: 23730 components: - type: Transform pos: -19.5,-77.5 parent: 2 - - uid: 23813 + - uid: 23731 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,31.5 parent: 2 - - uid: 23814 + - uid: 23732 components: - type: Transform pos: 80.5,-12.5 parent: 2 - - uid: 23815 + - uid: 23733 components: - type: Transform pos: 43.5,-79.5 parent: 2 - - uid: 23816 + - uid: 23734 components: - type: Transform pos: 35.5,88.5 parent: 2 - - uid: 23817 + - uid: 23735 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 23818 + - uid: 23736 components: - type: Transform pos: 18.5,31.5 parent: 2 - - uid: 23819 + - uid: 23737 components: - type: Transform pos: 38.5,9.5 parent: 2 - - uid: 23820 + - uid: 23738 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,9.5 parent: 2 - - uid: 23821 + - uid: 23739 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 23822 + - uid: 23740 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,7.5 parent: 2 - - uid: 23823 + - uid: 23741 components: - type: Transform pos: 4.5,90.5 parent: 2 - - uid: 23824 + - uid: 23742 components: - type: Transform pos: 11.5,60.5 parent: 2 - - uid: 23825 + - uid: 23743 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,8.5 parent: 2 - - uid: 23826 + - uid: 23744 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 23827 + - uid: 23745 components: - type: Transform pos: -35.5,64.5 parent: 2 - - uid: 23828 + - uid: 23746 components: - type: Transform pos: -43.5,28.5 parent: 2 - - uid: 23829 + - uid: 23747 components: - type: Transform pos: 18.5,29.5 parent: 2 - - uid: 23830 + - uid: 23748 components: - type: Transform pos: -46.5,26.5 parent: 2 - - uid: 23831 + - uid: 23749 components: - type: Transform pos: -36.5,26.5 parent: 2 - - uid: 23832 + - uid: 23750 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,9.5 parent: 2 - - uid: 23833 + - uid: 23751 components: - type: Transform pos: -57.5,37.5 parent: 2 - - uid: 23834 + - uid: 23752 components: - type: Transform pos: -18.5,-51.5 parent: 2 - - uid: 23835 + - uid: 23753 components: - type: Transform pos: -49.5,26.5 parent: 2 - - uid: 23836 + - uid: 23754 components: - type: Transform pos: 11.5,-32.5 parent: 2 - - uid: 23837 + - uid: 23755 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,-19.5 parent: 2 - - uid: 23838 + - uid: 23756 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-19.5 parent: 2 - - uid: 23839 + - uid: 23757 components: - type: Transform pos: -61.5,17.5 parent: 2 - - uid: 23840 + - uid: 23758 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 23841 + - uid: 23759 components: - type: Transform pos: 28.5,-70.5 parent: 2 - - uid: 23842 + - uid: 23760 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,31.5 parent: 2 - - uid: 23843 + - uid: 23761 components: - type: Transform pos: 77.5,-38.5 parent: 2 - - uid: 23844 + - uid: 23762 components: - type: Transform pos: 42.5,-79.5 parent: 2 - - uid: 23845 + - uid: 23763 components: - type: Transform pos: 74.5,26.5 parent: 2 - - uid: 23846 + - uid: 23764 components: - type: Transform pos: -19.5,-36.5 parent: 2 - - uid: 23847 + - uid: 23765 components: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 23848 + - uid: 23766 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,3.5 parent: 2 - - uid: 23849 + - uid: 23767 components: - type: Transform pos: -3.5,-35.5 parent: 2 - - uid: 23850 + - uid: 23768 components: - type: Transform pos: 65.5,-27.5 parent: 2 - - uid: 23851 + - uid: 23769 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,6.5 parent: 2 - - uid: 23852 + - uid: 23770 components: - type: Transform pos: 85.5,11.5 parent: 2 - - uid: 23853 + - uid: 23771 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-38.5 parent: 2 - - uid: 23854 + - uid: 23772 components: - type: Transform pos: -103.5,-6.5 parent: 2 - - uid: 23855 + - uid: 23773 components: - type: Transform pos: 27.5,85.5 parent: 2 - - uid: 23856 + - uid: 23774 components: - type: Transform pos: -79.5,-43.5 parent: 2 - - uid: 23857 + - uid: 23775 components: - type: Transform pos: 83.5,-43.5 parent: 2 - - uid: 23858 + - uid: 23776 components: - type: Transform pos: -51.5,56.5 parent: 2 - - uid: 23859 + - uid: 23777 components: - type: Transform pos: -59.5,-78.5 parent: 2 - - uid: 23860 + - uid: 23778 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-19.5 parent: 2 - - uid: 23861 + - uid: 23779 components: - type: Transform pos: -83.5,76.5 parent: 2 - - uid: 23862 + - uid: 23780 components: - type: Transform pos: -83.5,67.5 parent: 2 - - uid: 23863 + - uid: 23781 components: - type: Transform pos: 21.5,102.5 parent: 2 - - uid: 23864 + - uid: 23782 components: - type: Transform pos: 50.5,-61.5 parent: 2 - - uid: 23865 + - uid: 23783 components: - type: Transform pos: 78.5,-41.5 parent: 2 - - uid: 23866 + - uid: 23784 components: - type: Transform pos: 16.5,88.5 parent: 2 - - uid: 23867 + - uid: 23785 components: - type: Transform pos: -27.5,86.5 parent: 2 - - uid: 23868 + - uid: 23786 components: - type: Transform pos: -44.5,-76.5 parent: 2 - - uid: 23869 + - uid: 23787 components: - type: Transform pos: 14.5,89.5 parent: 2 - - uid: 23870 + - uid: 23788 components: - type: Transform pos: 77.5,-12.5 parent: 2 - - uid: 23871 + - uid: 23789 components: - type: Transform pos: 21.5,-8.5 parent: 2 - - uid: 23872 + - uid: 23790 components: - type: Transform pos: 33.5,21.5 parent: 2 - - uid: 23873 + - uid: 23791 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-21.5 parent: 2 - - uid: 23874 + - uid: 23792 components: - type: Transform pos: -59.5,-53.5 parent: 2 - - uid: 23875 + - uid: 23793 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-19.5 parent: 2 - - uid: 23876 + - uid: 23794 components: - type: Transform pos: 45.5,13.5 parent: 2 - - uid: 23877 + - uid: 23795 components: - type: Transform pos: 39.5,10.5 parent: 2 - - uid: 23878 + - uid: 23796 components: - type: Transform pos: 4.5,88.5 parent: 2 - - uid: 23879 + - uid: 23797 components: - type: Transform pos: -60.5,58.5 parent: 2 - - uid: 23880 + - uid: 23798 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,8.5 parent: 2 - - uid: 23881 + - uid: 23799 components: - type: Transform pos: -31.5,19.5 parent: 2 - - uid: 23882 + - uid: 23800 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-65.5 parent: 2 - - uid: 23883 + - uid: 23801 components: - type: Transform pos: -51.5,34.5 parent: 2 - - uid: 23884 + - uid: 23802 components: - type: Transform pos: -61.5,-3.5 parent: 2 - - uid: 23885 + - uid: 23803 components: - type: Transform pos: -105.5,-6.5 parent: 2 - - uid: 23886 + - uid: 23804 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,-19.5 parent: 2 - - uid: 23887 + - uid: 23805 components: - type: Transform pos: -77.5,36.5 parent: 2 - - uid: 23888 + - uid: 23806 components: - type: Transform pos: 19.5,94.5 parent: 2 - - uid: 23889 + - uid: 23807 components: - type: Transform pos: -1.5,30.5 parent: 2 - - uid: 23890 + - uid: 23808 components: - type: Transform pos: -27.5,94.5 parent: 2 - - uid: 23891 + - uid: 23809 components: - type: Transform pos: 12.5,90.5 parent: 2 - - uid: 23892 + - uid: 23810 components: - type: Transform pos: -20.5,2.5 parent: 2 - - uid: 23893 + - uid: 23811 components: - type: Transform pos: 88.5,-41.5 parent: 2 - - uid: 23894 + - uid: 23812 components: - type: Transform pos: -79.5,-38.5 parent: 2 - - uid: 23895 + - uid: 23813 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 23896 + - uid: 23814 components: - type: Transform pos: -45.5,-75.5 parent: 2 - - uid: 23897 + - uid: 23815 components: - type: Transform pos: 83.5,-42.5 parent: 2 - - uid: 23898 + - uid: 23816 components: - type: Transform pos: 89.5,-44.5 parent: 2 - - uid: 23899 + - uid: 23817 components: - type: Transform pos: 11.5,-36.5 parent: 2 - - uid: 23900 + - uid: 23818 components: - type: Transform pos: 37.5,97.5 parent: 2 - - uid: 23901 + - uid: 23819 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,4.5 parent: 2 - - uid: 23902 + - uid: 23820 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,6.5 parent: 2 - - uid: 23903 + - uid: 23821 components: - type: Transform pos: -75.5,49.5 parent: 2 - - uid: 23904 + - uid: 23822 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,6.5 parent: 2 - - uid: 23905 + - uid: 23823 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 23906 + - uid: 23824 components: - type: Transform pos: -57.5,-53.5 parent: 2 - - uid: 23907 + - uid: 23825 components: - type: Transform pos: 50.5,-59.5 parent: 2 - - uid: 23908 + - uid: 23826 components: - type: Transform pos: 52.5,-58.5 parent: 2 - - uid: 23909 + - uid: 23827 components: - type: Transform pos: -55.5,68.5 parent: 2 - - uid: 23910 + - uid: 23828 components: - type: Transform pos: -48.5,-78.5 parent: 2 - - uid: 23911 + - uid: 23829 components: - type: Transform pos: -47.5,-78.5 parent: 2 - - uid: 23912 + - uid: 23830 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-15.5 parent: 2 - - uid: 23913 + - uid: 23831 components: - type: Transform pos: -79.5,66.5 parent: 2 - - uid: 23914 + - uid: 23832 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,-21.5 parent: 2 - - uid: 23915 + - uid: 23833 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-21.5 parent: 2 - - uid: 23916 + - uid: 23834 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,6.5 parent: 2 - - uid: 23917 + - uid: 23835 components: - type: Transform pos: 36.5,88.5 parent: 2 - - uid: 23918 + - uid: 23836 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-4.5 parent: 2 - - uid: 23919 + - uid: 23837 components: - type: Transform pos: 56.5,-41.5 parent: 2 - - uid: 23920 + - uid: 23838 components: - type: Transform pos: 76.5,-20.5 parent: 2 - - uid: 23921 + - uid: 23839 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-3.5 parent: 2 - - uid: 23922 + - uid: 23840 components: - type: Transform pos: 70.5,-27.5 parent: 2 - - uid: 23923 + - uid: 23841 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 23924 + - uid: 23842 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-2.5 parent: 2 - - uid: 23925 + - uid: 23843 components: - type: Transform pos: -33.5,64.5 parent: 2 - - uid: 23926 + - uid: 23844 components: - type: Transform pos: -45.5,-73.5 parent: 2 - - uid: 23927 + - uid: 23845 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 23928 + - uid: 23846 components: - type: Transform pos: -42.5,54.5 parent: 2 - - uid: 23929 + - uid: 23847 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-70.5 parent: 2 - - uid: 23930 + - uid: 23848 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-68.5 parent: 2 - - uid: 23931 + - uid: 23849 components: - type: Transform pos: -18.5,70.5 parent: 2 - - uid: 23932 + - uid: 23850 components: - type: Transform pos: 3.5,79.5 parent: 2 - - uid: 23933 + - uid: 23851 components: - type: Transform pos: 13.5,82.5 parent: 2 - - uid: 23934 + - uid: 23852 components: - type: Transform pos: -37.5,-49.5 parent: 2 - - uid: 23935 + - uid: 23853 components: - type: Transform pos: 44.5,-64.5 parent: 2 - - uid: 23936 + - uid: 23854 components: - type: Transform pos: 39.5,-58.5 parent: 2 - - uid: 23937 + - uid: 23855 components: - type: Transform pos: -50.5,-13.5 parent: 2 - - uid: 23938 + - uid: 23856 components: - type: Transform pos: -59.5,15.5 parent: 2 - - uid: 23939 + - uid: 23857 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,3.5 parent: 2 - - uid: 23940 + - uid: 23858 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-18.5 parent: 2 - - uid: 23941 + - uid: 23859 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 23942 + - uid: 23860 components: - type: Transform pos: 23.5,-30.5 parent: 2 - - uid: 23943 + - uid: 23861 components: - type: Transform pos: 19.5,-44.5 parent: 2 - - uid: 23944 + - uid: 23862 components: - type: Transform pos: -31.5,94.5 parent: 2 - - uid: 23945 + - uid: 23863 components: - type: Transform pos: -50.5,-12.5 parent: 2 - - uid: 23946 + - uid: 23864 components: - type: Transform pos: -45.5,28.5 parent: 2 - - uid: 23947 + - uid: 23865 components: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 23948 + - uid: 23866 components: - type: Transform pos: 18.5,30.5 parent: 2 - - uid: 23949 + - uid: 23867 components: - type: Transform pos: -48.5,56.5 parent: 2 - - uid: 23950 + - uid: 23868 components: - type: Transform pos: -79.5,-39.5 parent: 2 - - uid: 23951 + - uid: 23869 components: - type: Transform pos: -42.5,-82.5 parent: 2 - - uid: 23952 + - uid: 23870 components: - type: Transform pos: -14.5,82.5 parent: 2 - - uid: 23953 + - uid: 23871 components: - type: Transform pos: -26.5,-79.5 parent: 2 - - uid: 23954 + - uid: 23872 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - uid: 23955 + - uid: 23873 components: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 23956 + - uid: 23874 components: - type: Transform pos: -48.5,43.5 parent: 2 - - uid: 23957 + - uid: 23875 components: - type: Transform pos: -79.5,9.5 parent: 2 - - uid: 23958 + - uid: 23876 components: - type: Transform pos: -60.5,47.5 parent: 2 - - uid: 23959 + - uid: 23877 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,4.5 parent: 2 - - uid: 23960 + - uid: 23878 components: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 23961 + - uid: 23879 components: - type: Transform pos: -10.5,21.5 parent: 2 - - uid: 23962 + - uid: 23880 components: - type: Transform pos: 15.5,13.5 parent: 2 - - uid: 23963 + - uid: 23881 components: - type: Transform pos: 26.5,103.5 parent: 2 - - uid: 23964 + - uid: 23882 components: - type: Transform pos: 38.5,-77.5 parent: 2 - - uid: 23965 + - uid: 23883 components: - type: Transform pos: 89.5,-45.5 parent: 2 - - uid: 23966 + - uid: 23884 components: - type: Transform pos: 37.5,-77.5 parent: 2 - - uid: 23967 + - uid: 23885 components: - type: Transform pos: 35.5,102.5 parent: 2 - - uid: 23968 + - uid: 23886 components: - type: Transform pos: 31.5,102.5 parent: 2 - - uid: 23969 + - uid: 23887 components: - type: Transform pos: 20.5,101.5 parent: 2 - - uid: 23970 + - uid: 23888 components: - type: Transform pos: 32.5,-75.5 parent: 2 - - uid: 23971 + - uid: 23889 components: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 23972 + - uid: 23890 components: - type: Transform pos: 30.5,105.5 parent: 2 - - uid: 23973 + - uid: 23891 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 23974 + - uid: 23892 components: - type: Transform pos: 64.5,-20.5 parent: 2 - - uid: 23975 + - uid: 23893 components: - type: Transform pos: 41.5,16.5 parent: 2 - - uid: 23976 + - uid: 23894 components: - type: Transform pos: -44.5,-92.5 parent: 2 - - uid: 23977 + - uid: 23895 components: - type: Transform pos: -58.5,16.5 parent: 2 - - uid: 23978 + - uid: 23896 components: - type: Transform pos: -78.5,-30.5 parent: 2 - - uid: 23979 + - uid: 23897 components: - type: Transform pos: -48.5,-25.5 parent: 2 - - uid: 23980 + - uid: 23898 components: - type: Transform pos: -61.5,-12.5 parent: 2 - - uid: 23981 + - uid: 23899 components: - type: Transform pos: 48.5,14.5 parent: 2 - - uid: 23982 + - uid: 23900 components: - type: Transform pos: -59.5,-51.5 parent: 2 - - uid: 23983 + - uid: 23901 components: - type: Transform pos: -76.5,60.5 parent: 2 - - uid: 23984 + - uid: 23902 components: - type: Transform pos: 16.5,86.5 parent: 2 - - uid: 23985 + - uid: 23903 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-44.5 parent: 2 - - uid: 23986 + - uid: 23904 components: - type: Transform pos: -43.5,34.5 parent: 2 - - uid: 23987 + - uid: 23905 components: - type: Transform pos: -77.5,48.5 parent: 2 - - uid: 23988 + - uid: 23906 components: - type: Transform pos: -66.5,71.5 parent: 2 - - uid: 23989 + - uid: 23907 components: - type: Transform pos: -53.5,-93.5 parent: 2 - - uid: 23990 + - uid: 23908 components: - type: Transform pos: -75.5,32.5 parent: 2 - - uid: 23991 + - uid: 23909 components: - type: Transform pos: 40.5,-79.5 parent: 2 - - uid: 23992 + - uid: 23910 components: - type: Transform pos: 42.5,-77.5 parent: 2 - - uid: 23993 + - uid: 23911 components: - type: Transform pos: 34.5,57.5 parent: 2 - - uid: 23994 + - uid: 23912 components: - type: Transform pos: 86.5,-47.5 parent: 2 - - uid: 23995 + - uid: 23913 components: - type: Transform pos: 78.5,-53.5 parent: 2 - - uid: 23996 + - uid: 23914 components: - type: Transform pos: 22.5,85.5 parent: 2 - - uid: 23997 + - uid: 23915 components: - type: Transform pos: 45.5,-48.5 parent: 2 - - uid: 23998 + - uid: 23916 components: - type: Transform pos: 78.5,-27.5 parent: 2 - - uid: 23999 + - uid: 23917 components: - type: Transform pos: 14.5,92.5 parent: 2 - - uid: 24000 + - uid: 23918 components: - type: Transform pos: 40.5,24.5 parent: 2 - - uid: 24001 + - uid: 23919 components: - type: Transform pos: 12.5,93.5 parent: 2 - - uid: 24002 + - uid: 23920 components: - type: Transform pos: 80.5,-26.5 parent: 2 - - uid: 24003 + - uid: 23921 components: - type: Transform pos: 19.5,97.5 parent: 2 - - uid: 24004 + - uid: 23922 components: - type: Transform pos: 37.5,19.5 parent: 2 - - uid: 24005 + - uid: 23923 components: - type: Transform pos: 32.5,64.5 parent: 2 - - uid: 24006 + - uid: 23924 components: - type: Transform pos: 29.5,105.5 parent: 2 - - uid: 24007 + - uid: 23925 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 24008 + - uid: 23926 components: - type: Transform pos: 82.5,-41.5 parent: 2 - - uid: 24009 + - uid: 23927 components: - type: Transform pos: 78.5,-19.5 parent: 2 - - uid: 24010 + - uid: 23928 components: - type: Transform pos: 22.5,61.5 parent: 2 - - uid: 24011 + - uid: 23929 components: - type: Transform pos: 30.5,55.5 parent: 2 - - uid: 24012 + - uid: 23930 components: - type: Transform pos: 29.5,55.5 parent: 2 - - uid: 24013 + - uid: 23931 components: - type: Transform pos: 46.5,-48.5 parent: 2 - - uid: 24014 + - uid: 23932 components: - type: Transform pos: 16.5,91.5 parent: 2 - - uid: 24015 + - uid: 23933 components: - type: Transform pos: 80.5,-25.5 parent: 2 - - uid: 24016 + - uid: 23934 components: - type: Transform pos: 54.5,10.5 parent: 2 - - uid: 24017 + - uid: 23935 components: - type: Transform pos: 30.5,102.5 parent: 2 - - uid: 24018 + - uid: 23936 components: - type: Transform pos: 88.5,-47.5 parent: 2 - - uid: 24019 + - uid: 23937 components: - type: Transform pos: 34.5,58.5 parent: 2 - - uid: 24020 + - uid: 23938 components: - type: Transform pos: 13.5,93.5 parent: 2 - - uid: 24021 + - uid: 23939 components: - type: Transform pos: 81.5,-47.5 parent: 2 - - uid: 24022 + - uid: 23940 components: - type: Transform pos: 24.5,85.5 parent: 2 - - uid: 24023 + - uid: 23941 components: - type: Transform pos: 23.5,102.5 parent: 2 - - uid: 24024 + - uid: 23942 components: - type: Transform pos: 33.5,19.5 parent: 2 - - uid: 24025 + - uid: 23943 components: - type: Transform pos: 21.5,7.5 parent: 2 - - uid: 24026 + - uid: 23944 components: - type: Transform pos: 52.5,-7.5 parent: 2 - - uid: 24027 + - uid: 23945 components: - type: Transform pos: 77.5,-53.5 parent: 2 - - uid: 24028 + - uid: 23946 components: - type: Transform pos: 77.5,-50.5 parent: 2 - - uid: 24029 + - uid: 23947 components: - type: Transform pos: -46.5,-92.5 parent: 2 - - uid: 24030 + - uid: 23948 components: - type: Transform pos: -76.5,59.5 parent: 2 - - uid: 24031 + - uid: 23949 components: - type: Transform pos: 8.5,44.5 parent: 2 - - uid: 24032 + - uid: 23950 components: - type: Transform pos: 8.5,43.5 parent: 2 - - uid: 24033 + - uid: 23951 components: - type: Transform pos: 12.5,44.5 parent: 2 - - uid: 24034 + - uid: 23952 components: - type: Transform pos: 84.5,-47.5 parent: 2 - - uid: 24035 + - uid: 23953 components: - type: Transform pos: 26.5,102.5 parent: 2 - - uid: 24036 + - uid: 23954 components: - type: Transform pos: 45.5,1.5 parent: 2 - - uid: 24037 + - uid: 23955 components: - type: Transform pos: -53.5,-94.5 parent: 2 - - uid: 24038 + - uid: 23956 components: - type: Transform pos: -75.5,31.5 parent: 2 - - uid: 24039 + - uid: 23957 components: - type: Transform pos: -52.5,-72.5 parent: 2 - - uid: 24040 + - uid: 23958 components: - type: Transform pos: 78.5,-26.5 parent: 2 - - uid: 24041 + - uid: 23959 components: - type: Transform pos: -69.5,-4.5 parent: 2 - - uid: 24042 + - uid: 23960 components: - type: Transform pos: -39.5,19.5 parent: 2 - - uid: 24043 + - uid: 23961 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 24044 + - uid: 23962 components: - type: Transform pos: 4.5,-62.5 parent: 2 - - uid: 24045 + - uid: 23963 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,29.5 parent: 2 - - uid: 24046 + - uid: 23964 components: - type: Transform pos: 27.5,-72.5 parent: 2 - - uid: 24047 + - uid: 23965 components: - type: Transform pos: 44.5,22.5 parent: 2 - - uid: 24048 + - uid: 23966 components: - type: Transform pos: 24.5,102.5 parent: 2 - - uid: 24049 + - uid: 23967 components: - type: Transform pos: 83.5,-53.5 parent: 2 - - uid: 24050 + - uid: 23968 components: - type: Transform pos: 82.5,-53.5 parent: 2 - - uid: 24051 + - uid: 23969 components: - type: Transform pos: 72.5,-12.5 parent: 2 - - uid: 24052 + - uid: 23970 components: - type: Transform pos: 14.5,93.5 parent: 2 - - uid: 24053 + - uid: 23971 components: - type: Transform pos: 38.5,-50.5 parent: 2 - - uid: 24054 + - uid: 23972 components: - type: Transform pos: -66.5,70.5 parent: 2 - - uid: 24055 + - uid: 23973 components: - type: Transform pos: 82.5,-47.5 parent: 2 - - uid: 24056 + - uid: 23974 components: - type: Transform pos: 87.5,-47.5 parent: 2 - - uid: 24057 + - uid: 23975 components: - type: Transform pos: -50.5,67.5 parent: 2 - - uid: 24058 + - uid: 23976 components: - type: Transform pos: -47.5,-92.5 parent: 2 - - uid: 24059 + - uid: 23977 components: - type: Transform pos: -53.5,-78.5 parent: 2 - - uid: 24060 + - uid: 23978 components: - type: Transform pos: -43.5,33.5 parent: 2 - - uid: 24061 + - uid: 23979 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,92.5 parent: 2 - - uid: 24062 + - uid: 23980 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 24063 + - uid: 23981 components: - type: Transform pos: -54.5,-78.5 parent: 2 - - uid: 24064 + - uid: 23982 components: - type: Transform pos: -49.5,-93.5 parent: 2 - - uid: 24065 + - uid: 23983 components: - type: Transform pos: 7.5,-73.5 parent: 2 - - uid: 24066 + - uid: 23984 components: - type: Transform pos: 54.5,-60.5 parent: 2 - - uid: 24067 + - uid: 23985 components: - type: Transform pos: 34.5,102.5 parent: 2 - - uid: 24068 + - uid: 23986 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-21.5 parent: 2 - - uid: 24069 + - uid: 23987 components: - type: Transform pos: -103.5,-8.5 parent: 2 - - uid: 24070 + - uid: 23988 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-21.5 parent: 2 - - uid: 24071 + - uid: 23989 components: - type: Transform pos: 28.5,-72.5 parent: 2 - - uid: 24072 + - uid: 23990 components: - type: Transform pos: 20.5,-36.5 parent: 2 - - uid: 24073 + - uid: 23991 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 24074 + - uid: 23992 components: - type: Transform pos: 30.5,104.5 parent: 2 - - uid: 24075 + - uid: 23993 components: - type: Transform pos: 83.5,-46.5 parent: 2 - - uid: 24076 + - uid: 23994 components: - type: Transform pos: 83.5,-45.5 parent: 2 - - uid: 24077 + - uid: 23995 components: - type: Transform pos: 30.5,103.5 parent: 2 - - uid: 24078 + - uid: 23996 components: - type: Transform pos: 30.5,-74.5 parent: 2 - - uid: 24079 + - uid: 23997 components: - type: Transform pos: 81.5,-53.5 parent: 2 - - uid: 24080 + - uid: 23998 components: - type: Transform pos: 54.5,-58.5 parent: 2 - - uid: 24081 + - uid: 23999 components: - type: Transform pos: 30.5,-72.5 parent: 2 - - uid: 24082 + - uid: 24000 components: - type: Transform pos: 77.5,-48.5 parent: 2 - - uid: 24083 + - uid: 24001 components: - type: Transform pos: 80.5,-53.5 parent: 2 - - uid: 24084 + - uid: 24002 components: - type: Transform pos: 20.5,102.5 parent: 2 - - uid: 24085 + - uid: 24003 components: - type: Transform pos: 53.5,-58.5 parent: 2 - - uid: 24086 + - uid: 24004 components: - type: Transform pos: 7.5,-69.5 parent: 2 - - uid: 24087 + - uid: 24005 components: - type: Transform pos: -66.5,7.5 parent: 2 - - uid: 24088 + - uid: 24006 components: - type: Transform pos: 32.5,-61.5 parent: 2 - - uid: 24089 + - uid: 24007 components: - type: Transform pos: 23.5,35.5 parent: 2 - - uid: 24090 + - uid: 24008 components: - type: Transform pos: -71.5,-4.5 parent: 2 - - uid: 24091 + - uid: 24009 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 24092 + - uid: 24010 components: - type: Transform pos: -42.5,-50.5 parent: 2 - - uid: 24093 + - uid: 24011 components: - type: Transform pos: -9.5,21.5 parent: 2 - - uid: 24094 + - uid: 24012 components: - type: Transform pos: -49.5,43.5 parent: 2 - - uid: 24095 + - uid: 24013 components: - type: Transform pos: -58.5,-51.5 parent: 2 - - uid: 24096 + - uid: 24014 components: - type: Transform pos: -47.5,68.5 parent: 2 - - uid: 24097 + - uid: 24015 components: - type: Transform pos: -48.5,-72.5 parent: 2 - - uid: 24098 + - uid: 24016 components: - type: Transform pos: -46.5,-75.5 parent: 2 - - uid: 24099 + - uid: 24017 components: - type: Transform pos: -76.5,55.5 parent: 2 - - uid: 24100 + - uid: 24018 components: - type: Transform pos: -49.5,-78.5 parent: 2 - - uid: 24101 + - uid: 24019 components: - type: Transform pos: 81.5,-41.5 parent: 2 - - uid: 24102 + - uid: 24020 components: - type: Transform pos: -84.5,71.5 parent: 2 - - uid: 24103 + - uid: 24021 components: - type: Transform pos: -46.5,68.5 parent: 2 - - uid: 24104 + - uid: 24022 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 24105 + - uid: 24023 components: - type: Transform pos: -20.5,13.5 parent: 2 - - uid: 24106 + - uid: 24024 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 24107 + - uid: 24025 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,6.5 parent: 2 - - uid: 24108 + - uid: 24026 components: - type: Transform pos: -20.5,19.5 parent: 2 - - uid: 24109 + - uid: 24027 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 24110 + - uid: 24028 components: - type: Transform pos: -38.5,-49.5 parent: 2 - - uid: 24111 + - uid: 24029 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,1.5 parent: 2 - - uid: 24112 + - uid: 24030 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-0.5 parent: 2 - - uid: 24113 + - uid: 24031 components: - type: Transform pos: 15.5,-26.5 parent: 2 - - uid: 24114 + - uid: 24032 components: - type: Transform pos: 45.5,-56.5 parent: 2 - - uid: 24115 + - uid: 24033 components: - type: Transform pos: 41.5,-56.5 parent: 2 - - uid: 24116 + - uid: 24034 components: - type: Transform pos: 30.5,66.5 parent: 2 - - uid: 24117 + - uid: 24035 components: - type: Transform pos: 72.5,-40.5 parent: 2 - - uid: 24118 + - uid: 24036 components: - type: Transform pos: 30.5,70.5 parent: 2 - - uid: 24119 + - uid: 24037 components: - type: Transform pos: -72.5,-45.5 parent: 2 - - uid: 24120 + - uid: 24038 components: - type: Transform pos: -59.5,-88.5 parent: 2 - - uid: 24121 + - uid: 24039 components: - type: Transform pos: 27.5,105.5 parent: 2 - - uid: 24122 + - uid: 24040 components: - type: Transform pos: -60.5,-88.5 parent: 2 - - uid: 24123 + - uid: 24041 components: - type: Transform pos: -72.5,-46.5 parent: 2 - - uid: 24124 + - uid: 24042 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 24125 + - uid: 24043 components: - type: Transform pos: 30.5,69.5 parent: 2 - - uid: 24126 + - uid: 24044 components: - type: Transform pos: -55.5,17.5 parent: 2 - - uid: 24127 + - uid: 24045 components: - type: Transform pos: -57.5,-78.5 parent: 2 - - uid: 24128 + - uid: 24046 components: - type: Transform pos: 5.5,48.5 parent: 2 - - uid: 24129 + - uid: 24047 components: - type: Transform pos: 24.5,61.5 parent: 2 - - uid: 24130 + - uid: 24048 components: - type: Transform pos: -77.5,31.5 parent: 2 - - uid: 24131 + - uid: 24049 components: - type: Transform pos: 74.5,-35.5 parent: 2 - - uid: 24132 + - uid: 24050 components: - type: Transform pos: 77.5,-40.5 parent: 2 - - uid: 24133 + - uid: 24051 components: - type: Transform pos: 19.5,-1.5 parent: 2 - - uid: 24134 + - uid: 24052 components: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 24135 + - uid: 24053 components: - type: Transform pos: 57.5,-48.5 parent: 2 - - uid: 24136 + - uid: 24054 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 24137 + - uid: 24055 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,-19.5 parent: 2 - - uid: 24138 + - uid: 24056 components: - type: Transform pos: 25.5,-70.5 parent: 2 - - uid: 24139 + - uid: 24057 components: - type: Transform pos: 66.5,-20.5 parent: 2 - - uid: 24140 + - uid: 24058 components: - type: Transform pos: 76.5,-27.5 parent: 2 - - uid: 24141 + - uid: 24059 components: - type: Transform pos: 11.5,31.5 parent: 2 - - uid: 24142 + - uid: 24060 components: - type: Transform pos: -29.5,-24.5 parent: 2 - - uid: 24143 + - uid: 24061 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,-21.5 parent: 2 - - uid: 24144 + - uid: 24062 components: - type: Transform pos: 26.5,-64.5 parent: 2 - - uid: 24145 + - uid: 24063 components: - type: Transform pos: 9.5,21.5 parent: 2 - - uid: 24146 + - uid: 24064 components: - type: Transform pos: 20.5,91.5 parent: 2 - - uid: 24147 + - uid: 24065 components: - type: Transform pos: -1.5,19.5 parent: 2 - - uid: 24148 + - uid: 24066 components: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 24149 + - uid: 24067 components: - type: Transform pos: 31.5,-64.5 parent: 2 - - uid: 24150 + - uid: 24068 components: - type: Transform pos: 23.5,-49.5 parent: 2 - - uid: 24151 + - uid: 24069 components: - type: Transform pos: -20.5,-29.5 parent: 2 - - uid: 24152 + - uid: 24070 components: - type: Transform pos: -20.5,-26.5 parent: 2 - - uid: 24153 + - uid: 24071 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 24154 + - uid: 24072 components: - type: Transform pos: -50.5,-16.5 parent: 2 - - uid: 24155 + - uid: 24073 components: - type: Transform pos: -73.5,9.5 parent: 2 - - uid: 24156 + - uid: 24074 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 24157 + - uid: 24075 components: - type: Transform pos: -34.5,42.5 parent: 2 - - uid: 24158 + - uid: 24076 components: - type: Transform pos: -35.5,22.5 parent: 2 - - uid: 24159 + - uid: 24077 components: - type: Transform pos: -69.5,-48.5 parent: 2 - - uid: 24160 + - uid: 24078 components: - type: Transform pos: 23.5,-27.5 parent: 2 - - uid: 24161 + - uid: 24079 components: - type: Transform pos: -50.5,22.5 parent: 2 - - uid: 24162 + - uid: 24080 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,4.5 parent: 2 - - uid: 24163 + - uid: 24081 components: - type: Transform pos: 32.5,13.5 parent: 2 - - uid: 24164 + - uid: 24082 components: - type: Transform pos: -11.5,-72.5 parent: 2 - - uid: 24165 + - uid: 24083 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,6.5 parent: 2 - - uid: 24166 + - uid: 24084 components: - type: Transform pos: 17.5,86.5 parent: 2 - - uid: 24167 + - uid: 24085 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 24168 + - uid: 24086 components: - type: Transform pos: 10.5,-21.5 parent: 2 - - uid: 24169 + - uid: 24087 components: - type: Transform pos: -103.5,-10.5 parent: 2 - - uid: 24170 + - uid: 24088 components: - type: Transform pos: 13.5,-21.5 parent: 2 - - uid: 24171 + - uid: 24089 components: - type: Transform pos: -43.5,32.5 parent: 2 - - uid: 24172 + - uid: 24090 components: - type: Transform pos: -19.5,70.5 parent: 2 - - uid: 24173 + - uid: 24091 components: - type: Transform pos: 71.5,-12.5 parent: 2 - - uid: 24174 + - uid: 24092 components: - type: Transform pos: -68.5,17.5 parent: 2 - - uid: 24175 + - uid: 24093 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 24176 + - uid: 24094 components: - type: Transform pos: -36.5,-30.5 parent: 2 - - uid: 24177 + - uid: 24095 components: - type: Transform pos: -34.5,-30.5 parent: 2 - - uid: 24178 + - uid: 24096 components: - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 24179 + - uid: 24097 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 24180 + - uid: 24098 components: - type: Transform pos: -36.5,-24.5 parent: 2 - - uid: 24181 + - uid: 24099 components: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 24182 + - uid: 24100 components: - type: Transform pos: -60.5,49.5 parent: 2 - - uid: 24183 + - uid: 24101 components: - type: Transform pos: -51.5,32.5 parent: 2 - - uid: 24184 + - uid: 24102 components: - type: Transform pos: -67.5,21.5 parent: 2 - - uid: 24185 + - uid: 24103 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 24186 + - uid: 24104 components: - type: Transform pos: -62.5,68.5 parent: 2 - - uid: 24187 + - uid: 24105 components: - type: Transform pos: -67.5,77.5 parent: 2 - - uid: 24188 + - uid: 24106 components: - type: Transform pos: -66.5,77.5 parent: 2 - - uid: 24189 + - uid: 24107 components: - type: Transform pos: -66.5,76.5 parent: 2 - - uid: 24190 + - uid: 24108 components: - type: Transform pos: -66.5,75.5 parent: 2 - - uid: 24191 + - uid: 24109 components: - type: Transform pos: -66.5,74.5 parent: 2 - - uid: 24192 + - uid: 24110 components: - type: Transform pos: -66.5,73.5 parent: 2 - - uid: 24193 + - uid: 24111 components: - type: Transform pos: -52.5,-95.5 parent: 2 - - uid: 24194 + - uid: 24112 components: - type: Transform pos: 85.5,-47.5 parent: 2 - - uid: 24195 + - uid: 24113 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 24196 + - uid: 24114 components: - type: Transform pos: 57.5,-60.5 parent: 2 - - uid: 24197 + - uid: 24115 components: - type: Transform pos: -46.5,66.5 parent: 2 - - uid: 24198 + - uid: 24116 components: - type: Transform pos: -42.5,-83.5 parent: 2 - - uid: 24199 + - uid: 24117 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 24200 + - uid: 24118 components: - type: Transform pos: 42.5,-19.5 parent: 2 - - uid: 24201 + - uid: 24119 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 24202 + - uid: 24120 components: - type: Transform pos: 32.5,88.5 parent: 2 - - uid: 24203 + - uid: 24121 components: - type: Transform pos: 0.5,46.5 parent: 2 - - uid: 24204 + - uid: 24122 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,4.5 parent: 2 - - uid: 24205 + - uid: 24123 components: - type: Transform pos: -75.5,46.5 parent: 2 - - uid: 24206 + - uid: 24124 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,6.5 parent: 2 - - uid: 24207 + - uid: 24125 components: - type: Transform pos: -43.5,-89.5 parent: 2 - - uid: 24208 + - uid: 24126 components: - type: Transform pos: -75.5,50.5 parent: 2 - - uid: 24209 + - uid: 24127 components: - type: Transform pos: -75.5,51.5 parent: 2 - - uid: 24210 + - uid: 24128 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,-21.5 parent: 2 - - uid: 24211 + - uid: 24129 components: - type: Transform pos: 12.5,-36.5 parent: 2 - - uid: 24212 + - uid: 24130 components: - type: Transform pos: -22.5,-84.5 parent: 2 - - uid: 24213 + - uid: 24131 components: - type: Transform pos: -46.5,43.5 parent: 2 - - uid: 24214 + - uid: 24132 components: - type: Transform pos: 79.5,-47.5 parent: 2 - - uid: 24215 + - uid: 24133 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,57.5 parent: 2 - - uid: 24216 + - uid: 24134 components: - type: Transform pos: -66.5,5.5 parent: 2 - - uid: 24217 + - uid: 24135 components: - type: Transform pos: 44.5,-79.5 parent: 2 - - uid: 24218 + - uid: 24136 components: - type: Transform pos: 82.5,11.5 parent: 2 - - uid: 24219 + - uid: 24137 components: - type: Transform pos: -57.5,-51.5 parent: 2 - - uid: 24220 + - uid: 24138 components: - type: Transform pos: 16.5,85.5 parent: 2 - - uid: 24221 + - uid: 24139 components: - type: Transform pos: 39.5,-79.5 parent: 2 - - uid: 24222 + - uid: 24140 components: - type: Transform pos: 40.5,-77.5 parent: 2 - - uid: 24223 + - uid: 24141 components: - type: Transform pos: 89.5,-41.5 parent: 2 - - uid: 24224 + - uid: 24142 components: - type: Transform pos: 79.5,-53.5 parent: 2 - - uid: 24225 + - uid: 24143 components: - type: Transform pos: 11.5,41.5 parent: 2 - - uid: 24226 + - uid: 24144 components: - type: Transform pos: 24.5,-36.5 parent: 2 - - uid: 24227 + - uid: 24145 components: - type: Transform pos: 22.5,-36.5 parent: 2 - - uid: 24228 + - uid: 24146 components: - type: Transform pos: 29.5,-74.5 parent: 2 - - uid: 24229 + - uid: 24147 components: - type: Transform pos: 31.5,64.5 parent: 2 - - uid: 24230 + - uid: 24148 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 24231 + - uid: 24149 components: - type: Transform pos: 35.5,-56.5 parent: 2 - - uid: 24232 + - uid: 24150 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 24233 + - uid: 24151 components: - type: Transform pos: -4.5,-82.5 parent: 2 - - uid: 24234 + - uid: 24152 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 24235 + - uid: 24153 components: - type: Transform pos: -0.5,-82.5 parent: 2 - - uid: 24236 + - uid: 24154 components: - type: Transform pos: 0.5,-82.5 parent: 2 - - uid: 24237 + - uid: 24155 components: - type: Transform pos: 21.5,-60.5 parent: 2 - - uid: 24238 + - uid: 24156 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 24239 + - uid: 24157 components: - type: Transform pos: 19.5,-60.5 parent: 2 - - uid: 24240 + - uid: 24158 components: - type: Transform pos: 8.5,-70.5 parent: 2 - - uid: 24241 + - uid: 24159 components: - type: Transform pos: -13.5,-83.5 parent: 2 - - uid: 24242 + - uid: 24160 components: - type: Transform pos: -17.5,-84.5 parent: 2 - - uid: 24243 + - uid: 24161 components: - type: Transform pos: -18.5,-84.5 parent: 2 - - uid: 24244 + - uid: 24162 components: - type: Transform pos: -19.5,-84.5 parent: 2 - - uid: 24245 + - uid: 24163 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-83.5 parent: 2 - - uid: 24246 + - uid: 24164 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-84.5 parent: 2 - - uid: 24247 + - uid: 24165 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-85.5 parent: 2 - - uid: 24248 + - uid: 24166 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-82.5 parent: 2 - - uid: 24249 + - uid: 24167 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-83.5 parent: 2 - - uid: 24250 + - uid: 24168 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-84.5 parent: 2 - - uid: 24251 + - uid: 24169 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-85.5 parent: 2 - - uid: 24252 + - uid: 24170 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-84.5 parent: 2 - - uid: 24253 + - uid: 24171 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-84.5 parent: 2 - - uid: 24254 + - uid: 24172 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-84.5 parent: 2 - - uid: 24255 + - uid: 24173 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-84.5 parent: 2 - - uid: 24256 + - uid: 24174 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-85.5 parent: 2 - - uid: 24257 + - uid: 24175 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-83.5 parent: 2 - - uid: 24258 + - uid: 24176 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-83.5 parent: 2 - - uid: 24259 + - uid: 24177 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-84.5 parent: 2 - - uid: 24260 + - uid: 24178 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-85.5 parent: 2 - - uid: 24261 + - uid: 24179 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-85.5 parent: 2 - - uid: 24262 + - uid: 24180 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-84.5 parent: 2 - - uid: 24263 + - uid: 24181 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-83.5 parent: 2 - - uid: 24264 + - uid: 24182 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,70.5 parent: 2 - - uid: 24265 + - uid: 24183 components: - type: Transform pos: 84.5,11.5 parent: 2 - - uid: 24266 + - uid: 24184 components: - type: Transform pos: 11.5,-65.5 parent: 2 - - uid: 24267 + - uid: 24185 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-16.5 parent: 2 - - uid: 24268 + - uid: 24186 components: - type: Transform pos: -103.5,-3.5 parent: 2 - - uid: 24269 + - uid: 24187 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-15.5 parent: 2 - - uid: 24270 + - uid: 24188 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-14.5 parent: 2 - - uid: 24271 + - uid: 24189 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-14.5 parent: 2 - - uid: 24272 + - uid: 24190 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-10.5 parent: 2 - - uid: 24273 + - uid: 24191 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-8.5 parent: 2 - - uid: 24274 + - uid: 24192 components: - type: Transform pos: -103.5,-12.5 parent: 2 - - uid: 24275 + - uid: 24193 components: - type: Transform pos: -67.5,-4.5 parent: 2 - - uid: 24276 + - uid: 24194 components: - type: Transform rot: 1.5707963267948966 rad pos: -100.5,-16.5 parent: 2 - - uid: 24277 + - uid: 24195 components: - type: Transform rot: 1.5707963267948966 rad pos: -102.5,-16.5 parent: 2 - - uid: 24278 + - uid: 24196 components: - type: Transform rot: 1.5707963267948966 rad pos: -100.5,1.5 parent: 2 - - uid: 24279 + - uid: 24197 components: - type: Transform pos: -83.5,-7.5 parent: 2 - - uid: 24280 + - uid: 24198 components: - type: Transform pos: -83.5,-6.5 parent: 2 - - uid: 24281 + - uid: 24199 components: - type: Transform pos: -83.5,-5.5 parent: 2 - - uid: 24282 + - uid: 24200 components: - type: Transform pos: -61.5,-5.5 parent: 2 - - uid: 24283 + - uid: 24201 components: - type: Transform pos: 89.5,-46.5 parent: 2 - - uid: 24284 + - uid: 24202 components: - type: Transform pos: 89.5,-42.5 parent: 2 - - uid: 24285 + - uid: 24203 components: - type: Transform pos: 74.5,-47.5 parent: 2 - - uid: 24286 + - uid: 24204 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-42.5 parent: 2 - - uid: 24287 + - uid: 24205 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-42.5 parent: 2 - - uid: 24288 + - uid: 24206 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-38.5 parent: 2 - - uid: 24289 + - uid: 24207 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-42.5 parent: 2 - - uid: 24290 + - uid: 24208 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-42.5 parent: 2 - - uid: 24291 + - uid: 24209 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-38.5 parent: 2 - - uid: 24292 + - uid: 24210 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-42.5 parent: 2 - - uid: 24293 + - uid: 24211 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-42.5 parent: 2 - - uid: 24294 + - uid: 24212 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-42.5 parent: 2 - - uid: 24295 + - uid: 24213 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-42.5 parent: 2 - - uid: 24296 + - uid: 24214 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,82.5 parent: 2 - - uid: 24297 + - uid: 24215 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,83.5 parent: 2 - - uid: 24298 + - uid: 24216 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,84.5 parent: 2 - - uid: 24299 + - uid: 24217 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,84.5 parent: 2 - - uid: 24300 + - uid: 24218 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,80.5 parent: 2 - - uid: 24301 + - uid: 24219 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,81.5 parent: 2 - - uid: 24302 + - uid: 24220 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-35.5 parent: 2 - - uid: 24303 + - uid: 24221 components: - type: Transform pos: 58.5,-53.5 parent: 2 - - uid: 24304 + - uid: 24222 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 - - uid: 24305 + - uid: 24223 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,83.5 parent: 2 - - uid: 24306 + - uid: 24224 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,11.5 parent: 2 - - uid: 24307 + - uid: 24225 components: - type: Transform pos: -86.5,26.5 parent: 2 - - uid: 24308 + - uid: 24226 components: - type: Transform pos: -85.5,26.5 parent: 2 - - uid: 24309 + - uid: 24227 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,23.5 parent: 2 - - uid: 24310 + - uid: 24228 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,22.5 parent: 2 - - uid: 24311 + - uid: 24229 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,22.5 parent: 2 - - uid: 24312 + - uid: 24230 components: - type: Transform pos: -107.5,26.5 parent: 2 - - uid: 24313 + - uid: 24231 components: - type: Transform pos: -103.5,26.5 parent: 2 - - uid: 24314 + - uid: 24232 components: - type: Transform pos: -104.5,26.5 parent: 2 - - uid: 24315 + - uid: 24233 components: - type: Transform pos: -90.5,26.5 parent: 2 - - uid: 24316 + - uid: 24234 components: - type: Transform pos: -101.5,26.5 parent: 2 - - uid: 24317 + - uid: 24235 components: - type: Transform pos: -100.5,26.5 parent: 2 - - uid: 24318 + - uid: 24236 components: - type: Transform pos: -98.5,26.5 parent: 2 - - uid: 24319 + - uid: 24237 components: - type: Transform pos: -95.5,26.5 parent: 2 - - uid: 24320 + - uid: 24238 components: - type: Transform pos: -94.5,26.5 parent: 2 - - uid: 24321 + - uid: 24239 components: - type: Transform pos: -93.5,26.5 parent: 2 - - uid: 24322 + - uid: 24240 components: - type: Transform pos: -92.5,26.5 parent: 2 - - uid: 24323 + - uid: 24241 components: - type: Transform pos: -89.5,26.5 parent: 2 - - uid: 24324 + - uid: 24242 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,23.5 parent: 2 - - uid: 24325 + - uid: 24243 components: - type: Transform pos: -81.5,22.5 parent: 2 - - uid: 24326 + - uid: 24244 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,84.5 parent: 2 - - uid: 24327 + - uid: 24245 components: - type: Transform pos: -118.5,44.5 parent: 2 - - uid: 24328 + - uid: 24246 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,84.5 parent: 2 - - uid: 24329 + - uid: 24247 components: - type: Transform pos: -110.5,19.5 parent: 2 - - uid: 24330 + - uid: 24248 components: - type: Transform pos: -107.5,20.5 parent: 2 - - uid: 24331 + - uid: 24249 components: - type: Transform pos: -106.5,20.5 parent: 2 - - uid: 24332 + - uid: 24250 components: - type: Transform pos: -105.5,20.5 parent: 2 - - uid: 24333 + - uid: 24251 components: - type: Transform pos: -103.5,20.5 parent: 2 - - uid: 24334 + - uid: 24252 components: - type: Transform pos: -102.5,20.5 parent: 2 - - uid: 24335 + - uid: 24253 components: - type: Transform pos: -100.5,20.5 parent: 2 - - uid: 24336 + - uid: 24254 components: - type: Transform pos: -99.5,20.5 parent: 2 - - uid: 24337 + - uid: 24255 components: - type: Transform rot: 3.141592653589793 rad pos: -96.5,20.5 parent: 2 - - uid: 24338 + - uid: 24256 components: - type: Transform rot: 3.141592653589793 rad pos: -95.5,20.5 parent: 2 - - uid: 24339 + - uid: 24257 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,20.5 parent: 2 - - uid: 24340 + - uid: 24258 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,20.5 parent: 2 - - uid: 24341 + - uid: 24259 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,17.5 parent: 2 - - uid: 24342 + - uid: 24260 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,16.5 parent: 2 - - uid: 24343 + - uid: 24261 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,15.5 parent: 2 - - uid: 24344 + - uid: 24262 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,14.5 parent: 2 - - uid: 24345 + - uid: 24263 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,12.5 parent: 2 - - uid: 24346 + - uid: 24264 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,10.5 parent: 2 - - uid: 24347 + - uid: 24265 components: - type: Transform pos: -90.5,9.5 parent: 2 - - uid: 24348 + - uid: 24266 components: - type: Transform pos: -89.5,9.5 parent: 2 - - uid: 24349 + - uid: 24267 components: - type: Transform pos: -87.5,9.5 parent: 2 - - uid: 24350 + - uid: 24268 components: - type: Transform pos: -86.5,9.5 parent: 2 - - uid: 24351 + - uid: 24269 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,9.5 parent: 2 - - uid: 24352 + - uid: 24270 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,9.5 parent: 2 - - uid: 24353 + - uid: 24271 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,9.5 parent: 2 - - uid: 24354 + - uid: 24272 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,9.5 parent: 2 - - uid: 24355 + - uid: 24273 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,7.5 parent: 2 - - uid: 24356 + - uid: 24274 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,84.5 parent: 2 - - uid: 24357 + - uid: 24275 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,45.5 parent: 2 - - uid: 24358 + - uid: 24276 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,43.5 parent: 2 - - uid: 24359 + - uid: 24277 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,42.5 parent: 2 - - uid: 24360 + - uid: 24278 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,40.5 parent: 2 - - uid: 24361 + - uid: 24279 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,39.5 parent: 2 - - uid: 24362 + - uid: 24280 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,38.5 parent: 2 - - uid: 24363 + - uid: 24281 components: - type: Transform rot: 3.141592653589793 rad pos: -128.5,37.5 parent: 2 - - uid: 24364 + - uid: 24282 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,25.5 parent: 2 - - uid: 24365 + - uid: 24283 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,22.5 parent: 2 - - uid: 24366 + - uid: 24284 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,23.5 parent: 2 - - uid: 24367 + - uid: 24285 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,19.5 parent: 2 - - uid: 24368 + - uid: 24286 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,14.5 parent: 2 - - uid: 24369 + - uid: 24287 components: - type: Transform rot: -1.5707963267948966 rad pos: -122.5,14.5 parent: 2 - - uid: 24370 + - uid: 24288 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,14.5 parent: 2 - - uid: 24371 + - uid: 24289 components: - type: Transform rot: -1.5707963267948966 rad pos: -117.5,14.5 parent: 2 - - uid: 24372 + - uid: 24290 components: - type: Transform rot: -1.5707963267948966 rad pos: -116.5,14.5 parent: 2 - - uid: 24373 + - uid: 24291 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,14.5 parent: 2 - - uid: 24374 + - uid: 24292 components: - type: Transform rot: -1.5707963267948966 rad pos: -113.5,14.5 parent: 2 - - uid: 24375 + - uid: 24293 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,15.5 parent: 2 - - uid: 24376 + - uid: 24294 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,16.5 parent: 2 - - uid: 24377 + - uid: 24295 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,17.5 parent: 2 - - uid: 24378 + - uid: 24296 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,84.5 parent: 2 - - uid: 24380 + - uid: 24297 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,84.5 parent: 2 - - uid: 24381 + - uid: 24298 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,84.5 parent: 2 - - uid: 24382 + - uid: 24299 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,85.5 parent: 2 - - uid: 24383 + - uid: 24300 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,86.5 parent: 2 - - uid: 24384 + - uid: 24301 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,86.5 parent: 2 - - uid: 24385 + - uid: 24302 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,86.5 parent: 2 - - uid: 24386 + - uid: 24303 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,86.5 parent: 2 - - uid: 24387 + - uid: 24304 components: - type: Transform pos: -118.5,27.5 parent: 2 - - uid: 24388 + - uid: 24305 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,85.5 parent: 2 - - uid: 24389 + - uid: 24306 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,84.5 parent: 2 - - uid: 24390 + - uid: 24307 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,84.5 parent: 2 - - uid: 24391 + - uid: 24308 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,84.5 parent: 2 - - uid: 24392 + - uid: 24309 components: - type: Transform pos: -126.5,52.5 parent: 2 - - uid: 24393 + - uid: 24310 components: - type: Transform pos: -126.5,51.5 parent: 2 - - uid: 24394 + - uid: 24311 components: - type: Transform pos: -126.5,50.5 parent: 2 - - uid: 24395 + - uid: 24312 components: - type: Transform pos: -127.5,47.5 parent: 2 - - uid: 24396 + - uid: 24313 components: - type: Transform pos: -126.5,47.5 parent: 2 - - uid: 24397 + - uid: 24314 components: - type: Transform pos: -126.5,48.5 parent: 2 - - uid: 24399 + - uid: 24315 components: - type: Transform pos: 82.5,-23.5 parent: 2 - - uid: 24469 + - uid: 24316 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-38.5 parent: 2 - - uid: 24470 + - uid: 24317 components: - type: Transform pos: 59.5,-51.5 parent: 2 - - uid: 24471 + - uid: 24318 components: - type: Transform pos: 80.5,28.5 parent: 2 - - uid: 24472 + - uid: 24319 components: - type: Transform pos: 82.5,15.5 parent: 2 - - uid: 24473 + - uid: 24320 components: - type: Transform pos: 83.5,15.5 parent: 2 - - uid: 24474 + - uid: 24321 components: - type: Transform pos: 86.5,15.5 parent: 2 - - uid: 24475 + - uid: 24322 components: - type: Transform pos: 90.5,17.5 parent: 2 - - uid: 24476 + - uid: 24323 components: - type: Transform pos: 90.5,18.5 parent: 2 - - uid: 24477 + - uid: 24324 components: - type: Transform pos: 80.5,29.5 parent: 2 - - uid: 24478 + - uid: 24325 components: - type: Transform pos: 80.5,30.5 parent: 2 - - uid: 24479 + - uid: 24326 components: - type: Transform pos: 81.5,18.5 parent: 2 - - uid: 24480 + - uid: 24327 components: - type: Transform pos: 81.5,19.5 parent: 2 - - uid: 24481 + - uid: 24328 components: - type: Transform pos: 81.5,24.5 parent: 2 - - uid: 24482 + - uid: 24329 components: - type: Transform pos: 81.5,25.5 parent: 2 - - uid: 24483 + - uid: 24330 components: - type: Transform pos: 80.5,27.5 parent: 2 - - uid: 24484 + - uid: 24331 components: - type: Transform pos: 81.5,20.5 parent: 2 - - uid: 24485 + - uid: 24332 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-85.5 parent: 2 - - uid: 24486 + - uid: 24333 components: - type: Transform pos: 11.5,-84.5 parent: 2 - - uid: 24487 + - uid: 24334 components: - type: Transform pos: 6.5,-84.5 parent: 2 - - uid: 24488 + - uid: 24335 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 24489 + - uid: 24336 components: - type: Transform pos: 12.5,-84.5 parent: 2 - - uid: 24490 + - uid: 24337 components: - type: Transform pos: 13.5,-84.5 parent: 2 - - uid: 24491 + - uid: 24338 components: - type: Transform pos: 13.5,-82.5 parent: 2 - - uid: 24492 + - uid: 24339 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-83.5 parent: 2 - - uid: 24493 + - uid: 24340 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 24494 + - uid: 24341 components: - type: Transform pos: -0.5,62.5 parent: 2 - - uid: 24495 + - uid: 24342 components: - type: Transform pos: -0.5,64.5 parent: 2 - - uid: 24496 + - uid: 24343 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,70.5 parent: 2 - - uid: 24497 + - uid: 24344 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 - - uid: 24498 + - uid: 24345 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,13.5 parent: 2 - - uid: 24499 + - uid: 24346 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-71.5 parent: 2 - - uid: 24500 + - uid: 24347 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-71.5 parent: 2 - - uid: 24501 + - uid: 24348 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,23.5 parent: 2 - - uid: 24502 + - uid: 24349 components: - type: Transform pos: -69.5,37.5 parent: 2 - - uid: 24503 + - uid: 24350 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,13.5 parent: 2 - - uid: 24504 + - uid: 24351 components: - type: Transform pos: -67.5,46.5 parent: 2 - - uid: 24505 + - uid: 24352 components: - type: Transform pos: -70.5,-43.5 parent: 2 - - uid: 24506 + - uid: 24353 components: - type: Transform pos: -72.5,-39.5 parent: 2 - - uid: 24507 + - uid: 24354 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-3.5 parent: 2 - - uid: 24508 + - uid: 24355 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,12.5 parent: 2 - - uid: 24509 + - uid: 24356 components: - type: Transform pos: -67.5,45.5 parent: 2 - - uid: 24510 + - uid: 24357 components: - type: Transform pos: -69.5,44.5 parent: 2 - - uid: 24511 + - uid: 24358 components: - type: Transform pos: -67.5,41.5 parent: 2 - - uid: 24512 + - uid: 24359 components: - type: Transform pos: 75.5,14.5 parent: 2 - - uid: 24513 + - uid: 24360 components: - type: Transform pos: 75.5,15.5 parent: 2 - - uid: 24514 + - uid: 24361 components: - type: Transform pos: 80.5,13.5 parent: 2 - - uid: 24515 + - uid: 24362 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-5.5 parent: 2 - - uid: 24516 + - uid: 24363 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-5.5 parent: 2 - - uid: 24517 + - uid: 24364 components: - type: Transform pos: 91.5,8.5 parent: 2 - - uid: 24518 + - uid: 24365 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-5.5 parent: 2 - - uid: 24519 + - uid: 24366 components: - type: Transform pos: -69.5,41.5 parent: 2 - - uid: 24520 + - uid: 24367 components: - type: Transform pos: -69.5,48.5 parent: 2 - - uid: 24521 + - uid: 24368 components: - type: Transform pos: -69.5,49.5 parent: 2 - - uid: 24522 + - uid: 24369 components: - type: Transform pos: -69.5,50.5 parent: 2 - - uid: 24523 + - uid: 24370 components: - type: Transform pos: -69.5,46.5 parent: 2 - - uid: 24524 + - uid: 24371 components: - type: Transform pos: -72.5,-41.5 parent: 2 - - uid: 24525 + - uid: 24372 components: - type: Transform pos: -67.5,42.5 parent: 2 - - uid: 24526 + - uid: 24373 components: - type: Transform pos: -69.5,40.5 parent: 2 - - uid: 24527 + - uid: 24374 components: - type: Transform pos: -67.5,50.5 parent: 2 - - uid: 24528 + - uid: 24375 components: - type: Transform pos: -67.5,40.5 parent: 2 - - uid: 24529 + - uid: 24376 components: - type: Transform pos: -67.5,44.5 parent: 2 - - uid: 24530 + - uid: 24377 components: - type: Transform pos: -67.5,49.5 parent: 2 - - uid: 24531 + - uid: 24378 components: - type: Transform pos: 31.5,13.5 parent: 2 - - uid: 24532 + - uid: 24379 components: - type: Transform pos: -69.5,45.5 parent: 2 - - uid: 24533 + - uid: 24380 components: - type: Transform pos: -67.5,48.5 parent: 2 - - uid: 24534 + - uid: 24381 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,23.5 parent: 2 - - uid: 24535 + - uid: 24382 components: - type: Transform pos: -70.5,-45.5 parent: 2 - - uid: 24536 + - uid: 24383 components: - type: Transform pos: -69.5,42.5 parent: 2 - - uid: 24537 + - uid: 24384 components: - type: Transform pos: -67.5,24.5 parent: 2 - - uid: 24538 + - uid: 24385 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,34.5 parent: 2 - - uid: 24539 + - uid: 24386 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,32.5 parent: 2 - - uid: 24540 + - uid: 24387 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,30.5 parent: 2 - - uid: 24541 + - uid: 24388 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,28.5 parent: 2 - - uid: 24542 + - uid: 24389 components: - type: Transform pos: -60.5,39.5 parent: 2 - - uid: 24543 + - uid: 24390 components: - type: Transform pos: -64.5,39.5 parent: 2 - - uid: 24544 + - uid: 24391 components: - type: Transform pos: -66.5,39.5 parent: 2 - - uid: 24545 + - uid: 24392 components: - type: Transform pos: -65.5,39.5 parent: 2 - - uid: 24546 + - uid: 24393 components: - type: Transform pos: -71.5,-42.5 parent: 2 - - uid: 24547 + - uid: 24394 components: - type: Transform pos: -72.5,-40.5 parent: 2 - - uid: 24548 + - uid: 24395 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-8.5 parent: 2 - - uid: 24549 + - uid: 24396 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-8.5 parent: 2 - - uid: 24550 + - uid: 24397 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-8.5 parent: 2 - - uid: 24551 + - uid: 24398 components: - type: Transform pos: 93.5,-8.5 parent: 2 - - uid: 24552 + - uid: 24399 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-8.5 parent: 2 - - uid: 24553 + - uid: 24400 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,4.5 parent: 2 - - uid: 24554 + - uid: 24401 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,3.5 parent: 2 - - uid: 24555 + - uid: 24402 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,3.5 parent: 2 - - uid: 24556 + - uid: 24403 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,3.5 parent: 2 - - uid: 24557 + - uid: 24404 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,5.5 parent: 2 - - uid: 24558 + - uid: 24405 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,6.5 parent: 2 - - uid: 24559 + - uid: 24406 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,7.5 parent: 2 - - uid: 24560 + - uid: 24407 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,7.5 parent: 2 - - uid: 24561 + - uid: 24408 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,7.5 parent: 2 - - uid: 24562 + - uid: 24409 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,7.5 parent: 2 - - uid: 24563 + - uid: 24410 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-4.5 parent: 2 - - uid: 24564 + - uid: 24411 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,2.5 parent: 2 - - uid: 24565 + - uid: 24412 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,1.5 parent: 2 - - uid: 24566 + - uid: 24413 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,0.5 parent: 2 - - uid: 24567 + - uid: 24414 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-0.5 parent: 2 - - uid: 24568 + - uid: 24415 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-1.5 parent: 2 - - uid: 24569 + - uid: 24416 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-2.5 parent: 2 - - uid: 24570 + - uid: 24417 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-5.5 parent: 2 - - uid: 24571 + - uid: 24418 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-6.5 parent: 2 - - uid: 24572 + - uid: 24419 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-7.5 parent: 2 - - uid: 24573 + - uid: 24420 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-8.5 parent: 2 - - uid: 24574 + - uid: 24421 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-8.5 parent: 2 - - uid: 24575 + - uid: 24422 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-8.5 parent: 2 - - uid: 24576 + - uid: 24423 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-7.5 parent: 2 - - uid: 24577 + - uid: 24424 components: - type: Transform rot: 3.141592653589793 rad pos: 101.5,-7.5 parent: 2 - - uid: 24578 + - uid: 24425 components: - type: Transform rot: 3.141592653589793 rad pos: 102.5,-7.5 parent: 2 - - uid: 24579 + - uid: 24426 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-8.5 parent: 2 - - uid: 24580 + - uid: 24427 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-8.5 parent: 2 - - uid: 24581 + - uid: 24428 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-8.5 parent: 2 - - uid: 24582 + - uid: 24429 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-8.5 parent: 2 - - uid: 24583 + - uid: 24430 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-6.5 parent: 2 - - uid: 24584 + - uid: 24431 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-8.5 parent: 2 - - uid: 24585 + - uid: 24432 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-8.5 parent: 2 - - uid: 24586 + - uid: 24433 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-8.5 parent: 2 - - uid: 24587 + - uid: 24434 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-7.5 parent: 2 - - uid: 24588 + - uid: 24435 components: - type: Transform rot: 3.141592653589793 rad pos: 100.5,-7.5 parent: 2 - - uid: 24589 + - uid: 24436 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-8.5 parent: 2 - - uid: 24590 + - uid: 24437 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-9.5 parent: 2 - - uid: 24591 + - uid: 24438 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-9.5 parent: 2 - - uid: 24592 + - uid: 24439 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-9.5 parent: 2 - - uid: 24593 + - uid: 24440 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,-9.5 parent: 2 - - uid: 24594 + - uid: 24441 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-9.5 parent: 2 - - uid: 24595 + - uid: 24442 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-9.5 parent: 2 - - uid: 24596 + - uid: 24443 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-9.5 parent: 2 - - uid: 24597 + - uid: 24444 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-9.5 parent: 2 - - uid: 24598 + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-9.5 parent: 2 - - uid: 24599 + - uid: 24446 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-9.5 parent: 2 - - uid: 24600 + - uid: 24447 components: - type: Transform pos: 80.5,-14.5 parent: 2 - - uid: 24601 + - uid: 24448 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,0.5 parent: 2 - - uid: 24602 + - uid: 24449 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,2.5 parent: 2 - - uid: 24603 + - uid: 24450 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 24604 + - uid: 24451 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,33.5 parent: 2 - - uid: 24605 + - uid: 24452 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,30.5 parent: 2 - - uid: 24606 + - uid: 24453 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,28.5 parent: 2 - - uid: 24607 + - uid: 24454 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,29.5 parent: 2 - - uid: 24608 + - uid: 24455 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,33.5 parent: 2 - - uid: 24609 + - uid: 24456 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,33.5 parent: 2 - - uid: 24610 + - uid: 24457 components: - type: Transform pos: 37.5,37.5 parent: 2 - - uid: 24611 + - uid: 24458 components: - type: Transform pos: 62.5,31.5 parent: 2 - - uid: 24612 + - uid: 24459 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-43.5 parent: 2 - - uid: 24613 + - uid: 24460 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-45.5 parent: 2 - - uid: 24614 + - uid: 24461 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-2.5 parent: 2 - - uid: 24615 + - uid: 24462 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-3.5 parent: 2 - - uid: 24616 + - uid: 24463 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-4.5 parent: 2 - - uid: 24617 + - uid: 24464 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 24618 + - uid: 24465 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 24619 + - uid: 24466 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 24620 + - uid: 24467 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 24621 + - uid: 24468 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 24622 + - uid: 24469 components: - type: Transform pos: 23.5,20.5 parent: 2 - - uid: 24623 + - uid: 24470 components: - type: Transform pos: 20.5,17.5 parent: 2 - - uid: 24624 + - uid: 24471 components: - type: Transform pos: 20.5,12.5 parent: 2 - - uid: 38528 + - uid: 38355 components: - type: Transform pos: 0.5,4.5 - parent: 38484 - - uid: 38529 + parent: 38311 + - uid: 38356 components: - type: Transform pos: 1.5,5.5 - parent: 38484 - - uid: 38530 + parent: 38311 + - uid: 38357 components: - type: Transform pos: 2.5,4.5 - parent: 38484 - - uid: 38531 + parent: 38311 + - uid: 38358 components: - type: Transform pos: 0.5,3.5 - parent: 38484 - - uid: 38532 + parent: 38311 + - uid: 38359 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 - parent: 38484 - - uid: 38533 + parent: 38311 + - uid: 38360 components: - type: Transform pos: 0.5,5.5 - parent: 38484 - - uid: 38534 + parent: 38311 + - uid: 38361 components: - type: Transform pos: 2.5,3.5 - parent: 38484 - - uid: 38535 + parent: 38311 + - uid: 38362 components: - type: Transform pos: 2.5,5.5 - parent: 38484 - - uid: 38536 + parent: 38311 + - uid: 38363 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 - parent: 38484 - - uid: 39416 + parent: 38311 + - uid: 39243 components: - type: Transform pos: -19.5,3.5 - parent: 38584 - - uid: 39417 + parent: 38411 + - uid: 39244 components: - type: Transform pos: 14.5,2.5 - parent: 38584 - - uid: 39418 + parent: 38411 + - uid: 39245 components: - type: Transform pos: 14.5,4.5 - parent: 38584 - - uid: 39419 + parent: 38411 + - uid: 39246 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,33.5 - parent: 38584 - - uid: 39420 + parent: 38411 + - uid: 39247 components: - type: Transform pos: -14.5,-8.5 - parent: 38584 - - uid: 39421 + parent: 38411 + - uid: 39248 components: - type: Transform pos: -13.5,-8.5 - parent: 38584 - - uid: 39422 + parent: 38411 + - uid: 39249 components: - type: Transform pos: -15.5,-8.5 - parent: 38584 - - uid: 39423 + parent: 38411 + - uid: 39250 components: - type: Transform pos: -12.5,-8.5 - parent: 38584 - - uid: 39424 + parent: 38411 + - uid: 39251 components: - type: Transform pos: 2.5,2.5 - parent: 38584 - - uid: 39425 + parent: 38411 + - uid: 39252 components: - type: Transform pos: 2.5,4.5 - parent: 38584 - - uid: 39426 + parent: 38411 + - uid: 39253 components: - type: Transform pos: -19.5,7.5 - parent: 38584 - - uid: 39427 + parent: 38411 + - uid: 39254 components: - type: Transform pos: -16.5,7.5 - parent: 38584 - - uid: 39428 + parent: 38411 + - uid: 39255 components: - type: Transform pos: -22.5,3.5 - parent: 38584 - - uid: 39429 + parent: 38411 + - uid: 39256 components: - type: Transform pos: -22.5,7.5 - parent: 38584 - - uid: 39430 + parent: 38411 + - uid: 39257 components: - type: Transform pos: -16.5,3.5 - parent: 38584 - - uid: 39431 + parent: 38411 + - uid: 39258 components: - type: Transform pos: 2.5,0.5 - parent: 38584 + parent: 38411 - proto: GrilleBroken entities: - - uid: 24625 + - uid: 24472 components: - type: Transform pos: -80.5,24.5 parent: 2 - - uid: 24626 + - uid: 24473 components: - type: Transform pos: -84.5,15.5 parent: 2 - - uid: 24627 + - uid: 24474 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,12.5 parent: 2 - - uid: 24628 + - uid: 24475 components: - type: Transform pos: -27.5,-24.5 parent: 2 - - uid: 24629 + - uid: 24476 components: - type: Transform pos: -38.5,-30.5 parent: 2 - - uid: 24630 + - uid: 24477 components: - type: Transform pos: -40.5,-30.5 parent: 2 - - uid: 24631 + - uid: 24478 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-68.5 parent: 2 - - uid: 24632 + - uid: 24479 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,33.5 parent: 2 - - uid: 24633 + - uid: 24480 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-68.5 parent: 2 - - uid: 24634 + - uid: 24481 components: - type: Transform pos: 1.5,46.5 parent: 2 - - uid: 24635 + - uid: 24482 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-36.5 parent: 2 - - uid: 24636 + - uid: 24483 components: - type: Transform pos: 57.5,-56.5 parent: 2 - - uid: 24637 + - uid: 24484 components: - type: Transform pos: -105.5,26.5 parent: 2 - - uid: 24638 + - uid: 24485 components: - type: Transform pos: -91.5,26.5 parent: 2 - - uid: 24639 + - uid: 24486 components: - type: Transform pos: -88.5,26.5 parent: 2 - - uid: 24640 + - uid: 24487 components: - type: Transform pos: -87.5,26.5 parent: 2 - - uid: 24641 + - uid: 24488 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,24.5 parent: 2 - - uid: 24642 + - uid: 24489 components: - type: Transform pos: -91.5,9.5 parent: 2 - - uid: 24643 + - uid: 24490 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,22.5 parent: 2 - - uid: 24644 + - uid: 24491 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,25.5 parent: 2 - - uid: 24645 + - uid: 24492 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,22.5 parent: 2 - - uid: 24646 + - uid: 24493 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,9.5 parent: 2 - - uid: 24647 + - uid: 24494 components: - type: Transform pos: -102.5,26.5 parent: 2 - - uid: 24648 + - uid: 24495 components: - type: Transform pos: -96.5,26.5 parent: 2 - - uid: 24649 + - uid: 24496 components: - type: Transform pos: -97.5,26.5 parent: 2 - - uid: 24650 + - uid: 24497 components: - type: Transform pos: -92.5,20.5 parent: 2 - - uid: 24651 + - uid: 24498 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,9.5 parent: 2 - - uid: 24652 + - uid: 24499 components: - type: Transform rot: 1.5707963267948966 rad pos: -109.5,19.5 parent: 2 - - uid: 24653 + - uid: 24500 components: - type: Transform pos: -108.5,20.5 parent: 2 - - uid: 24654 + - uid: 24501 components: - type: Transform pos: -101.5,20.5 parent: 2 - - uid: 24655 + - uid: 24502 components: - type: Transform rot: 3.141592653589793 rad pos: -98.5,20.5 parent: 2 - - uid: 24656 + - uid: 24503 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,20.5 parent: 2 - - uid: 24657 + - uid: 24504 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,19.5 parent: 2 - - uid: 24658 + - uid: 24505 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,13.5 parent: 2 - - uid: 24659 + - uid: 24506 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,41.5 parent: 2 - - uid: 24660 + - uid: 24507 components: - type: Transform rot: -1.5707963267948966 rad pos: -128.5,44.5 parent: 2 - - uid: 24661 + - uid: 24508 components: - type: Transform rot: -1.5707963267948966 rad pos: -128.5,46.5 parent: 2 - - uid: 24662 + - uid: 24509 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,24.5 parent: 2 - - uid: 24663 + - uid: 24510 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,18.5 parent: 2 - - uid: 24664 + - uid: 24511 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,14.5 parent: 2 - - uid: 24665 + - uid: 24512 components: - type: Transform pos: -112.5,14.5 parent: 2 - - uid: 24666 + - uid: 24513 components: - type: Transform pos: -115.5,14.5 parent: 2 - - uid: 24667 + - uid: 24514 components: - type: Transform pos: -119.5,14.5 parent: 2 - - uid: 24668 + - uid: 24515 components: - type: Transform pos: -123.5,14.5 parent: 2 - - uid: 24669 + - uid: 24516 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,47.5 parent: 2 - - uid: 24670 + - uid: 24517 components: - type: Transform rot: 1.5707963267948966 rad pos: -126.5,49.5 parent: 2 - - uid: 24671 + - uid: 24518 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-60.5 parent: 2 - - uid: 24672 + - uid: 24519 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-55.5 parent: 2 - - uid: 24673 + - uid: 24520 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-82.5 parent: 2 - - uid: 24674 + - uid: 24521 components: - type: Transform pos: 12.5,-80.5 parent: 2 - - uid: 24675 + - uid: 24522 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-80.5 parent: 2 - - uid: 24676 + - uid: 24523 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-82.5 parent: 2 - - uid: 24677 + - uid: 24524 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,26.5 parent: 2 - - uid: 24678 + - uid: 24525 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-7.5 parent: 2 - - uid: 39432 + - uid: 39259 components: - type: Transform pos: -18.5,33.5 - parent: 38584 - - uid: 39433 + parent: 38411 + - uid: 39260 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,33.5 - parent: 38584 - - uid: 39434 + parent: 38411 + - uid: 39261 components: - type: Transform pos: 8.5,19.5 - parent: 38584 - - uid: 39435 + parent: 38411 + - uid: 39262 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,19.5 - parent: 38584 - - uid: 39436 + parent: 38411 + - uid: 39263 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,33.5 - parent: 38584 + parent: 38411 - proto: GrilleDiagonal entities: - - uid: 24679 + - uid: 24526 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-6.5 parent: 2 - - uid: 24680 + - uid: 24527 components: - type: Transform rot: -1.5707963267948966 rad @@ -188018,7 +188039,7 @@ entities: parent: 2 - proto: GunSafe entities: - - uid: 14514 + - uid: 14456 components: - type: MetaData name: сейф аркады @@ -188049,18 +188070,18 @@ entities: showEnts: False occludes: True ents: - - 14515 - - 14517 - - 14518 - - 14519 - - 14516 + - 14457 + - 14459 + - 14460 + - 14461 + - 14458 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: GunSafeDisabler entities: - - uid: 24681 + - uid: 24528 components: - type: Transform pos: 57.5,6.5 @@ -188085,167 +188106,167 @@ entities: - 0 - proto: Gyroscope entities: - - uid: 38537 + - uid: 38364 components: - type: Transform pos: 1.5,-0.5 - parent: 38484 - - uid: 39437 + parent: 38311 + - uid: 39264 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,20.5 - parent: 38584 + parent: 38411 - proto: Handcuffs entities: - - uid: 24682 + - uid: 24529 components: - type: Transform pos: 72.458984,23.247822 parent: 2 - - uid: 24683 + - uid: 24530 components: - type: Transform pos: -2.4961772,18.561342 parent: 2 - type: Physics canCollide: False - - uid: 24684 + - uid: 24531 components: - type: Transform pos: 27.5,67.5 parent: 2 - - uid: 24685 + - uid: 24532 components: - type: Transform pos: 2.544464,65.52478 parent: 2 - type: Physics canCollide: False - - uid: 24686 + - uid: 24533 components: - type: Transform pos: -22.414896,0.570341 parent: 2 - - uid: 24687 + - uid: 24534 components: - type: Transform pos: -2.5,14.5 parent: 2 - type: Physics canCollide: False - - uid: 24688 + - uid: 24535 components: - type: Transform pos: 6.5382733,-63.500446 parent: 2 - - uid: 24689 + - uid: 24536 components: - type: Transform pos: -18.563082,-27.472807 parent: 2 - - uid: 24690 + - uid: 24537 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.56891,10.451007 parent: 2 - - uid: 39438 + - uid: 39265 components: - type: Transform pos: -2.5,11.5 - parent: 38584 - - uid: 39439 + parent: 38411 + - uid: 39266 components: - type: Transform pos: 3.249548,34.703247 - parent: 38584 - - uid: 39440 + parent: 38411 + - uid: 39267 components: - type: Transform pos: 1.717948,-1.2679749 - parent: 38584 - - uid: 39441 + parent: 38411 + - uid: 39268 components: - type: Transform pos: 1.452323,-1.4085999 - parent: 38584 + parent: 38411 - proto: HandheldGPSBasic entities: - - uid: 24691 + - uid: 24538 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -15.423151,-12.526148 parent: 2 - - uid: 24692 + - uid: 24539 components: - type: Transform pos: -61.501175,11.534443 parent: 2 - type: Physics canCollide: False - - uid: 24693 + - uid: 24540 components: - type: Transform pos: 24.512302,38.588974 parent: 2 - - uid: 24694 + - uid: 24541 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -15.610651,-12.526149 parent: 2 - - uid: 24695 + - uid: 24542 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.52226,38.589203 parent: 2 - - uid: 39442 + - uid: 39269 components: - type: Transform pos: 1.5406876,6.7720337 - parent: 38584 - - uid: 39443 + parent: 38411 + - uid: 39270 components: - type: Transform pos: 1.6969376,6.5220337 - parent: 38584 - - uid: 39444 + parent: 38411 + - uid: 39271 components: - type: Transform pos: 1.3531876,6.5376587 - parent: 38584 - - uid: 39445 + parent: 38411 + - uid: 39272 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.819557,0.7199707 - parent: 38584 + parent: 38411 - proto: HandheldHealthAnalyzer entities: - - uid: 24696 + - uid: 24543 components: - type: Transform pos: -9.180932,-52.317867 parent: 2 - - uid: 24697 + - uid: 24544 components: - type: Transform pos: 70.53282,12.308504 parent: 2 - - uid: 24698 + - uid: 24545 components: - type: Transform pos: 6.7585454,-48.411568 parent: 2 - - uid: 24699 + - uid: 24546 components: - type: Transform pos: 4.213424,-13.463173 parent: 2 - - uid: 24700 + - uid: 24547 components: - type: Transform rot: -1.5707963267948966 rad @@ -188253,7 +188274,7 @@ entities: parent: 2 - proto: HandheldStationMap entities: - - uid: 24701 + - uid: 24548 components: - type: Transform rot: -1.5707963267948966 rad @@ -188261,150 +188282,150 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 1501 + - uid: 1506 components: - type: Transform - parent: 1500 + parent: 1505 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24702 + - uid: 24549 components: - type: Transform pos: -48.36664,31.64788 parent: 2 - - uid: 24703 + - uid: 24550 components: - type: Transform pos: -65.41571,4.534443 parent: 2 - type: Physics canCollide: False - - uid: 24704 + - uid: 24551 components: - type: Transform pos: 42.573086,-70.16831 parent: 2 - - uid: 24705 + - uid: 24552 components: - type: Transform pos: -24.130608,-4.4762073 parent: 2 - - uid: 24706 + - uid: 24553 components: - type: Transform pos: -30.482952,-30.630163 parent: 2 - - uid: 24707 + - uid: 24554 components: - type: Transform pos: -4.4907737,-58.52011 parent: 2 - type: Physics canCollide: False - - uid: 24708 + - uid: 24555 components: - type: Transform pos: -57.46442,-17.430832 parent: 2 - type: Physics canCollide: False - - uid: 24709 + - uid: 24556 components: - type: Transform pos: -25.375605,12.496101 parent: 2 - type: Physics canCollide: False - - uid: 24710 + - uid: 24557 components: - type: Transform pos: -24.473108,-68.4108 parent: 2 - type: Physics canCollide: False - - uid: 24711 + - uid: 24558 components: - type: Transform pos: -22.592567,23.59421 parent: 2 - - uid: 24712 + - uid: 24559 components: - type: Transform pos: 2.5119066,-29.376064 parent: 2 - - uid: 24713 + - uid: 24560 components: - type: Transform pos: 12.716354,-52.415775 parent: 2 - - uid: 24714 + - uid: 24561 components: - type: Transform pos: 24.461672,8.5619135 parent: 2 - type: Physics canCollide: False - - uid: 24715 + - uid: 24562 components: - type: Transform pos: -8.571838,-35.43139 parent: 2 - type: Physics canCollide: False - - uid: 24716 + - uid: 24563 components: - type: Transform pos: -32.5,-35.5 parent: 2 - - uid: 24717 + - uid: 24564 components: - type: Transform pos: -41.430576,-17.448298 parent: 2 - type: Physics canCollide: False - - uid: 24718 + - uid: 24565 components: - type: Transform pos: 24.446495,38.695435 parent: 2 - - uid: 24719 + - uid: 24566 components: - type: Transform pos: 0.49840114,63.529846 parent: 2 - proto: HappyHonk entities: - - uid: 14892 + - uid: 14839 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24720 + - uid: 24567 components: - type: Transform pos: 63.362576,-15.285653 parent: 2 - proto: HappyHonkMime entities: - - uid: 14903 + - uid: 14838 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24721 + - uid: 24568 components: - type: Transform pos: 63.777294,-15.30936 parent: 2 - proto: HappyHonkNukie entities: - - uid: 24722 + - uid: 24569 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -188412,7 +188433,7 @@ entities: parent: 2 - proto: HappyHonkNukieSnacks entities: - - uid: 24723 + - uid: 24570 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -188420,57 +188441,57 @@ entities: parent: 2 - proto: HarpInstrument entities: - - uid: 24724 + - uid: 24571 components: - type: Transform pos: 10.5,66.5 parent: 2 - proto: HeatExchanger entities: - - uid: 24725 + - uid: 24572 components: - type: Transform pos: -52.5,59.5 parent: 2 - - uid: 24726 + - uid: 24573 components: - type: Transform pos: -52.5,57.5 parent: 2 - - uid: 24727 + - uid: 24574 components: - type: Transform pos: -49.5,59.5 parent: 2 - - uid: 24728 + - uid: 24575 components: - type: Transform pos: -49.5,57.5 parent: 2 - proto: HelicopterInstrument entities: - - uid: 24729 + - uid: 24576 components: - type: Transform pos: 63.569263,-24.38388 parent: 2 - proto: Hemostat entities: - - uid: 24730 + - uid: 24577 components: - type: Transform pos: 32.606625,-46.556606 parent: 2 - type: Physics canCollide: False - - uid: 24731 + - uid: 24578 components: - type: Transform pos: 46.5,-35.5 parent: 2 - type: Physics canCollide: False - - uid: 24732 + - uid: 24579 components: - type: Transform pos: 34.450375,-52.244106 @@ -188479,80 +188500,80 @@ entities: canCollide: False - proto: HighSecArmoryLocked entities: - - uid: 24733 + - uid: 24580 components: - type: MetaData name: запасный выход оружейной - type: Transform pos: 71.5,6.5 parent: 2 - - uid: 24734 + - uid: 24581 components: - type: MetaData name: хранилище скафандров сб - type: Transform pos: 62.5,10.5 parent: 2 - - uid: 24735 + - uid: 24582 components: - type: Transform pos: 56.5,5.5 parent: 2 - - uid: 24736 + - uid: 24583 components: - type: Transform pos: 56.5,4.5 parent: 2 - proto: HighSecCommandLocked entities: - - uid: 24737 + - uid: 24584 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 24738 + - uid: 24585 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 24739 + - uid: 24586 components: - type: Transform pos: 19.5,14.5 parent: 2 - - uid: 24740 + - uid: 24587 components: - type: Transform pos: -119.5,44.5 parent: 2 - - uid: 24741 + - uid: 24588 components: - type: Transform pos: -117.5,44.5 parent: 2 - - uid: 24742 + - uid: 24589 components: - type: Transform pos: -117.5,27.5 parent: 2 - - uid: 24743 + - uid: 24590 components: - type: Transform pos: -116.5,23.5 parent: 2 - - uid: 24744 + - uid: 24591 components: - type: Transform pos: -119.5,27.5 parent: 2 - - uid: 24745 + - uid: 24592 components: - type: Transform pos: 19.5,15.5 parent: 2 - proto: HolofanProjector entities: - - uid: 24746 + - uid: 24593 components: - type: Transform rot: 3.141592653589793 rad @@ -188560,213 +188581,213 @@ entities: parent: 2 - proto: HospitalCurtains entities: - - uid: 24747 + - uid: 24594 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-38.5 parent: 2 - - uid: 24748 + - uid: 24595 components: - type: Transform pos: 34.5,-40.5 parent: 2 - - uid: 24749 + - uid: 24596 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-37.5 parent: 2 - - uid: 24750 + - uid: 24597 components: - type: Transform pos: 14.5,5.5 parent: 2 - - uid: 24751 + - uid: 24598 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-78.5 parent: 2 - - uid: 24752 + - uid: 24599 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-38.5 parent: 2 - - uid: 24753 + - uid: 24600 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-41.5 parent: 2 - - uid: 24754 + - uid: 24601 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-37.5 parent: 2 - - uid: 24755 + - uid: 24602 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-37.5 parent: 2 - - uid: 24756 + - uid: 24603 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-39.5 parent: 2 - - uid: 24757 + - uid: 24604 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-39.5 parent: 2 - - uid: 24758 + - uid: 24605 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-39.5 parent: 2 - - uid: 24759 + - uid: 24606 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-39.5 parent: 2 - - uid: 24760 + - uid: 24607 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-39.5 parent: 2 - - uid: 24761 + - uid: 24608 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-42.5 parent: 2 - - uid: 24762 + - uid: 24609 components: - type: Transform pos: 38.5,-72.5 parent: 2 - - uid: 24763 + - uid: 24610 components: - type: Transform pos: 42.5,-72.5 parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 24764 + - uid: 24611 components: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 24765 + - uid: 24612 components: - type: Transform pos: 40.5,-0.5 parent: 2 - - uid: 24766 + - uid: 24613 components: - type: Transform pos: 43.5,7.5 parent: 2 - - uid: 24767 + - uid: 24614 components: - type: Transform pos: 43.5,11.5 parent: 2 - - uid: 24768 + - uid: 24615 components: - type: Transform pos: 8.5,-37.5 parent: 2 - - uid: 24769 + - uid: 24616 components: - type: Transform pos: 10.5,-37.5 parent: 2 - - uid: 24770 + - uid: 24617 components: - type: Transform pos: 43.5,-0.5 parent: 2 - - uid: 39446 + - uid: 39273 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,27.5 - parent: 38584 + parent: 38411 - proto: hydroponicsSoil entities: - - uid: 24771 + - uid: 24618 components: - type: Transform pos: -38.5,35.5 parent: 2 - - uid: 24772 + - uid: 24619 components: - type: Transform pos: -38.5,32.5 parent: 2 - - uid: 24773 + - uid: 24620 components: - type: Transform pos: -39.5,31.5 parent: 2 - - uid: 24774 + - uid: 24621 components: - type: Transform pos: -37.5,34.5 parent: 2 - - uid: 24775 + - uid: 24622 components: - type: Transform pos: -40.5,33.5 parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 24776 + - uid: 24623 components: - type: Transform rot: 3.141593671850739 rad pos: 95.462135,6.554744 parent: 2 - - uid: 24777 + - uid: 24624 components: - type: Transform pos: -34.28948,51.89193 parent: 2 - - uid: 39447 + - uid: 39274 components: - type: Transform pos: -19.45492,-1.6743469 - parent: 38584 + parent: 38411 - proto: HydroponicsToolMiniHoe entities: - - uid: 24778 + - uid: 24625 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 95.50901,6.5391183 parent: 2 - - uid: 24779 + - uid: 24626 components: - type: Transform pos: -29.390923,49.30703 parent: 2 - - uid: 24780 + - uid: 24627 components: - type: Transform pos: -37.601337,34.28246 parent: 2 - proto: HydroponicsToolScythe entities: - - uid: 24781 + - uid: 24628 components: - type: Transform rot: 1.5707963267948966 rad @@ -188774,154 +188795,154 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 24782 + - uid: 24629 components: - type: Transform pos: -40.182777,33.220512 parent: 2 - - uid: 24783 + - uid: 24630 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.33061,52.655056 parent: 2 - - uid: 39448 + - uid: 39275 components: - type: Transform pos: -21.501795,-1.5947876 - parent: 38584 + parent: 38411 - proto: hydroponicsTray entities: - - uid: 24784 + - uid: 24631 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,47.5 parent: 2 - - uid: 24785 + - uid: 24632 components: - type: Transform pos: -31.5,51.5 parent: 2 - - uid: 24786 + - uid: 24633 components: - type: Transform pos: -31.5,52.5 parent: 2 - - uid: 24787 + - uid: 24634 components: - type: Transform pos: -29.5,53.5 parent: 2 - - uid: 24788 + - uid: 24635 components: - type: Transform pos: -31.5,47.5 parent: 2 - - uid: 24789 + - uid: 24636 components: - type: Transform pos: -29.5,51.5 parent: 2 - - uid: 24790 + - uid: 24637 components: - type: Transform pos: -31.5,49.5 parent: 2 - - uid: 24791 + - uid: 24638 components: - type: Transform pos: -27.5,50.5 parent: 2 - - uid: 24792 + - uid: 24639 components: - type: Transform pos: -29.5,50.5 parent: 2 - - uid: 24793 + - uid: 24640 components: - type: Transform pos: -27.5,47.5 parent: 2 - - uid: 24794 + - uid: 24641 components: - type: Transform pos: -29.5,48.5 parent: 2 - - uid: 24795 + - uid: 24642 components: - type: Transform pos: -29.5,49.5 parent: 2 - - uid: 24796 + - uid: 24643 components: - type: Transform pos: -31.5,53.5 parent: 2 - - uid: 24797 + - uid: 24644 components: - type: Transform pos: -31.5,50.5 parent: 2 - - uid: 24798 + - uid: 24645 components: - type: Transform pos: -29.5,52.5 parent: 2 - - uid: 24799 + - uid: 24646 components: - type: Transform pos: -31.5,48.5 parent: 2 - - uid: 24800 + - uid: 24647 components: - type: Transform pos: -27.5,48.5 parent: 2 - - uid: 24801 + - uid: 24648 components: - type: Transform pos: -27.5,49.5 parent: 2 - - uid: 24802 + - uid: 24649 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,7.5 parent: 2 - - uid: 24803 + - uid: 24650 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,7.5 parent: 2 - - uid: 24804 + - uid: 24651 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,7.5 parent: 2 - - uid: 39449 + - uid: 39276 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-1.5 - parent: 38584 - - uid: 39450 + parent: 38411 + - uid: 39277 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-1.5 - parent: 38584 - - uid: 39451 + parent: 38411 + - uid: 39278 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-1.5 - parent: 38584 + parent: 38411 - proto: HydroponicsTrayEmpty entities: - - uid: 6742 + - uid: 24652 components: - type: Transform rot: -1.5707963267948966 rad @@ -188929,7 +188950,7 @@ entities: parent: 2 - proto: Hypopen entities: - - uid: 24805 + - uid: 24653 components: - type: Transform rot: 1.5707973450558423 rad @@ -188937,251 +188958,251 @@ entities: parent: 2 - proto: IDComputerCircuitboard entities: - - uid: 24806 + - uid: 24654 components: - type: Transform pos: -36.5,19.5 parent: 2 - proto: InflatableDoor entities: - - uid: 2796 + - uid: 24655 components: - type: Transform pos: 79.5,-18.5 parent: 2 - - uid: 2798 + - uid: 24656 components: - type: Transform pos: 79.5,-21.5 parent: 2 - - uid: 2803 + - uid: 24657 components: - type: Transform pos: 83.5,-21.5 parent: 2 - - uid: 2804 + - uid: 24658 components: - type: Transform pos: 83.5,-18.5 parent: 2 - - uid: 24807 + - uid: 24659 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-71.5 parent: 2 - - uid: 24808 + - uid: 24660 components: - type: Transform pos: 33.5,-60.5 parent: 2 - - uid: 24809 + - uid: 24661 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-66.5 parent: 2 - - uid: 39452 + - uid: 39279 components: - type: Transform pos: -15.5,35.5 - parent: 38584 + parent: 38411 - proto: InflatableWall entities: - - uid: 2805 + - uid: 24662 components: - type: Transform pos: 83.5,-17.5 parent: 2 - - uid: 2823 + - uid: 24663 components: - type: Transform pos: 83.5,-22.5 parent: 2 - - uid: 2824 + - uid: 24664 components: - type: Transform pos: 83.5,-20.5 parent: 2 - - uid: 2825 + - uid: 24665 components: - type: Transform pos: 83.5,-19.5 parent: 2 - - uid: 14753 + - uid: 24666 components: - type: Transform pos: -66.5,-30.5 parent: 2 - - uid: 24810 + - uid: 24667 components: - type: Transform pos: 30.5,-69.5 parent: 2 - - uid: 24811 + - uid: 24668 components: - type: Transform pos: 38.5,-62.5 parent: 2 - - uid: 24812 + - uid: 24669 components: - type: Transform pos: 37.5,-61.5 parent: 2 - - uid: 24813 + - uid: 24670 components: - type: Transform pos: -40.5,-36.5 parent: 2 - - uid: 24814 + - uid: 24671 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-60.5 parent: 2 - - uid: 24815 + - uid: 24672 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-69.5 parent: 2 - - uid: 24816 + - uid: 24673 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-66.5 parent: 2 - - uid: 24817 + - uid: 24674 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,59.5 parent: 2 - - uid: 24818 + - uid: 24675 components: - type: Transform pos: 31.5,-68.5 parent: 2 - - uid: 24819 + - uid: 24676 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-40.5 parent: 2 - - uid: 24820 + - uid: 24677 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-66.5 parent: 2 - - uid: 24821 + - uid: 24678 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-66.5 parent: 2 - - uid: 25025 + - uid: 24679 components: - type: Transform pos: -65.5,-30.5 parent: 2 - - uid: 25029 + - uid: 24680 components: - type: Transform pos: -74.5,-27.5 parent: 2 - - uid: 39453 + - uid: 39280 components: - type: Transform pos: -15.5,34.5 - parent: 38584 + parent: 38411 - proto: IngotGold entities: - - uid: 24822 + - uid: 24681 components: - type: Transform pos: 26.549606,17.730206 parent: 2 - - uid: 39454 + - uid: 39281 components: - type: Transform pos: -9.55835,1.5697021 - parent: 38584 + parent: 38411 - proto: IngotGold1 entities: - - uid: 39455 + - uid: 39282 components: - type: Transform pos: -9.62085,0.53845215 - parent: 38584 - - uid: 39456 + parent: 38411 + - uid: 39283 components: - type: Transform pos: -9.417725,0.99157715 - parent: 38584 + parent: 38411 - proto: IngotSilver entities: - - uid: 24823 + - uid: 24682 components: - type: Transform pos: 22.535658,12.496013 parent: 2 - - uid: 39457 + - uid: 39284 components: - type: Transform pos: -8.5896,4.710327 - parent: 38584 + parent: 38411 - proto: IngotSilver1 entities: - - uid: 39458 + - uid: 39285 components: - type: Transform pos: -9.6521,4.741577 - parent: 38584 - - uid: 39459 + parent: 38411 + - uid: 39286 components: - type: Transform pos: -9.4021,4.475952 - parent: 38584 + parent: 38411 - proto: IntercomAll entities: - - uid: 24824 + - uid: 24683 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,11.5 parent: 2 - - uid: 24825 + - uid: 24684 components: - type: Transform pos: -6.5,17.5 parent: 2 - proto: IntercomCommand entities: - - uid: 24826 + - uid: 24685 components: - type: Transform pos: 5.5,17.5 parent: 2 - proto: IntercomEngineering entities: - - uid: 24827 + - uid: 24686 components: - type: Transform pos: -44.5,16.5 parent: 2 - - uid: 24828 + - uid: 24687 components: - type: Transform pos: -61.5,16.5 parent: 2 - - uid: 24829 + - uid: 24688 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,31.5 parent: 2 - - uid: 24830 + - uid: 24689 components: - type: Transform rot: -1.5707963267948966 rad @@ -189189,31 +189210,31 @@ entities: parent: 2 - proto: IntercomMedical entities: - - uid: 24831 + - uid: 24690 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-39.5 parent: 2 - - uid: 24832 + - uid: 24691 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-65.5 parent: 2 - - uid: 24833 + - uid: 24692 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-42.5 parent: 2 - - uid: 24834 + - uid: 24693 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-26.5 parent: 2 - - uid: 24835 + - uid: 24694 components: - type: Transform rot: -1.5707963267948966 rad @@ -189221,13 +189242,13 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 24836 + - uid: 24695 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-28.5 parent: 2 - - uid: 24837 + - uid: 24696 components: - type: Transform rot: -1.5707963267948966 rad @@ -189235,24 +189256,24 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 24838 + - uid: 24697 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,5.5 parent: 2 - - uid: 24839 + - uid: 24698 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 2 - - uid: 24840 + - uid: 24699 components: - type: Transform pos: 74.5,4.5 parent: 2 - - uid: 24841 + - uid: 24700 components: - type: Transform rot: 1.5707963267948966 rad @@ -189260,18 +189281,18 @@ entities: parent: 2 - proto: IntercomService entities: - - uid: 24842 + - uid: 24701 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,32.5 parent: 2 - - uid: 24843 + - uid: 24702 components: - type: Transform pos: -10.5,34.5 parent: 2 - - uid: 24844 + - uid: 24703 components: - type: Transform rot: -1.5707963267948966 rad @@ -189279,13 +189300,13 @@ entities: parent: 2 - proto: IntercomSupply entities: - - uid: 24845 + - uid: 24704 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,39.5 parent: 2 - - uid: 24846 + - uid: 24705 components: - type: Transform rot: -1.5707963267948966 rad @@ -189293,13 +189314,13 @@ entities: parent: 2 - proto: JanitorialTrolley entities: - - uid: 24847 + - uid: 24706 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,54.5 parent: 2 - - uid: 24848 + - uid: 24707 components: - type: Transform rot: 3.141592653589793 rad @@ -189307,24 +189328,24 @@ entities: parent: 2 - proto: JanitorServiceLight entities: - - uid: 24849 + - uid: 24708 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,5.5 parent: 2 - - uid: 24850 + - uid: 24709 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,27.5 parent: 2 - - uid: 24851 + - uid: 24710 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 24852 + - uid: 24711 components: - type: Transform rot: 3.141592653589793 rad @@ -189332,7 +189353,7 @@ entities: parent: 2 - proto: JetpackBlackFilled entities: - - uid: 24853 + - uid: 24712 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -189340,74 +189361,74 @@ entities: parent: 2 - proto: JetpackBlue entities: - - uid: 24854 + - uid: 24713 components: - type: Transform pos: -45.5,-15.5 parent: 2 - proto: JetpackBlueFilled entities: - - uid: 24855 + - uid: 24714 components: - type: Transform pos: -64.5,4.5 parent: 2 - - uid: 24856 + - uid: 24715 components: - type: Transform pos: -52.5,32.5 parent: 2 - proto: JetpackMini entities: - - uid: 39460 + - uid: 39287 components: - type: Transform pos: 2.5,11.5 - parent: 38584 + parent: 38411 - proto: JetpackSecurityFilled entities: - - uid: 24857 + - uid: 24716 components: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 24858 + - uid: 24717 components: - type: Transform pos: 63.5,9.5 parent: 2 - - uid: 24859 + - uid: 24718 components: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 24860 + - uid: 24719 components: - type: Transform pos: 63.5,9.5 parent: 2 - proto: Joint entities: - - uid: 24861 + - uid: 24720 components: - type: Transform pos: -57.645042,57.002453 parent: 2 - - uid: 24862 + - uid: 24721 components: - type: Transform pos: -57.69192,56.814953 parent: 2 - proto: Jukebox entities: - - uid: 24863 + - uid: 24722 components: - type: Transform pos: -18.5,-37.5 parent: 2 - proto: Katana entities: - - uid: 24864 + - uid: 24723 components: - type: MetaData desc: Standing here, I realize you were just like me trying to make history! @@ -189417,38 +189438,38 @@ entities: parent: 2 - proto: KitchenElectricGrill entities: - - uid: 24865 + - uid: 24724 components: - type: Transform pos: -30.5,36.5 parent: 2 - type: ItemPlacer placedEntities: - - 18655 - - uid: 24866 + - 18578 + - uid: 24725 components: - type: Transform pos: 92.5,-4.5 parent: 2 - - uid: 24867 + - uid: 24726 components: - type: Transform pos: 62.5,30.5 parent: 2 - proto: KitchenKnife entities: - - uid: 24868 + - uid: 24727 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.38237,-66.35571 parent: 2 - - uid: 24869 + - uid: 24728 components: - type: Transform pos: 27.5,65.5 parent: 2 - - uid: 24870 + - uid: 24729 components: - type: Transform pos: -29.729101,34.53911 @@ -189457,412 +189478,412 @@ entities: canCollide: False - proto: KitchenMicrowave entities: - - uid: 24871 + - uid: 24730 components: - type: Transform pos: 67.5,30.5 parent: 2 - - uid: 24872 + - uid: 24731 components: - type: Transform pos: 41.5,-63.5 parent: 2 - - uid: 24873 + - uid: 24732 components: - type: Transform pos: -25.5,-40.5 parent: 2 - - uid: 24874 + - uid: 24733 components: - type: Transform pos: -33.5,34.5 parent: 2 - - uid: 24875 + - uid: 24734 components: - type: Transform pos: 20.5,1.5 parent: 2 - - uid: 24876 + - uid: 24735 components: - type: Transform pos: 74.5,-51.5 parent: 2 - - uid: 24877 + - uid: 24736 components: - type: Transform pos: -65.5,18.5 parent: 2 - - uid: 24878 + - uid: 24737 components: - type: Transform pos: 26.5,32.5 parent: 2 - - uid: 24879 + - uid: 24738 components: - type: Transform pos: -33.5,35.5 parent: 2 - - uid: 24880 + - uid: 24739 components: - type: Transform pos: 34.5,-27.5 parent: 2 - - uid: 24881 + - uid: 24740 components: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 24882 + - uid: 24741 components: - type: Transform pos: 23.5,65.5 parent: 2 - - uid: 24883 + - uid: 24742 components: - type: Transform pos: -25.5,-17.5 parent: 2 - - uid: 24884 + - uid: 24743 components: - type: Transform pos: 91.5,-4.5 parent: 2 - - uid: 39461 + - uid: 39288 components: - type: Transform pos: -18.5,30.5 - parent: 38584 - - uid: 39462 + parent: 38411 + - uid: 39289 components: - type: Transform pos: -17.5,-1.5 - parent: 38584 + parent: 38411 - proto: KitchenReagentGrinder entities: - - uid: 24885 + - uid: 24744 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 24886 + - uid: 24745 components: - type: Transform pos: 95.5,-4.5 parent: 2 - - uid: 24887 + - uid: 24746 components: - type: Transform pos: -24.5,-14.5 parent: 2 - - uid: 24888 + - uid: 24747 components: - type: Transform pos: -25.5,-25.5 parent: 2 - - uid: 24889 + - uid: 24748 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 24890 + - uid: 24749 components: - type: Transform pos: -33.5,36.5 parent: 2 - - uid: 24891 + - uid: 24750 components: - type: Transform pos: 26.5,-65.5 parent: 2 - - uid: 24892 + - uid: 24751 components: - type: Transform pos: -5.5,41.5 parent: 2 - - uid: 24893 + - uid: 24752 components: - type: Transform pos: -39.5,52.5 parent: 2 - - uid: 24894 + - uid: 24753 components: - type: Transform pos: -34.5,47.5 parent: 2 - proto: KitchenSpike entities: - - uid: 24895 + - uid: 24754 components: - type: Transform pos: -33.5,30.5 parent: 2 - - uid: 24896 + - uid: 24755 components: - type: Transform pos: -32.5,30.5 parent: 2 - - uid: 24897 + - uid: 24756 components: - type: Transform pos: 26.5,67.5 parent: 2 - - uid: 24898 + - uid: 24757 components: - type: Transform pos: -29.5,-79.5 parent: 2 - proto: KnifePlastic entities: - - uid: 24899 + - uid: 24758 components: - type: Transform rot: 3.141592653589793 rad pos: 65.347626,27.59324 parent: 2 - - uid: 24900 + - uid: 24759 components: - type: Transform rot: 3.141592653589793 rad pos: 65.23825,27.59324 parent: 2 - - uid: 24901 + - uid: 24760 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.508652,-17.53014 parent: 2 - - uid: 24902 + - uid: 24761 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.524275,-17.37389 parent: 2 - - uid: 24903 + - uid: 24762 components: - type: Transform rot: 3.141592653589793 rad pos: 65.48825,27.59324 parent: 2 - - uid: 39463 + - uid: 39290 components: - type: Transform pos: -13.408242,-5.3575134 - parent: 38584 + parent: 38411 - proto: Lamp entities: - - uid: 24904 + - uid: 24763 components: - type: Transform pos: 53.488358,30.704498 parent: 2 - - uid: 24905 + - uid: 24764 components: - type: Transform pos: -34.413235,-15.25878 parent: 2 - - uid: 24906 + - uid: 24765 components: - type: Transform pos: 72.53723,21.71029 parent: 2 - - uid: 24907 + - uid: 24766 components: - type: Transform pos: 27.5,28.5 parent: 2 - - uid: 24908 + - uid: 24767 components: - type: Transform rot: 3.141592653589793 rad pos: 4.355682,-16.29442 parent: 2 - - uid: 24909 + - uid: 24768 components: - type: Transform pos: 24.575024,-52.379463 parent: 2 - - uid: 24910 + - uid: 24769 components: - type: Transform pos: -15.40152,11.692742 parent: 2 - - uid: 24911 + - uid: 24770 components: - type: Transform pos: -18.584768,-41.095764 parent: 2 - - uid: 24912 + - uid: 24771 components: - type: Transform pos: 41.55369,21.383957 parent: 2 - - uid: 24913 + - uid: 24772 components: - type: Transform pos: 27.459814,37.60866 parent: 2 - - uid: 24914 + - uid: 24773 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,28.5 parent: 2 - - uid: 24915 + - uid: 24774 components: - type: Transform pos: 33.652378,-1.3068556 parent: 2 - - uid: 24916 + - uid: 24775 components: - type: Transform pos: -14.380997,-79.49119 parent: 2 - - uid: 24917 + - uid: 24776 components: - type: Transform pos: -46.37526,17.5579 parent: 2 - - uid: 24918 + - uid: 24777 components: - type: Transform pos: 49.699116,-53.372818 parent: 2 - - uid: 24919 + - uid: 24778 components: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 24920 + - uid: 24779 components: - type: Transform pos: -24.41836,23.55868 parent: 2 - - uid: 24921 + - uid: 24780 components: - type: Transform pos: 48.730324,-44.432247 parent: 2 - - uid: 24922 + - uid: 24781 components: - type: Transform pos: -16.443285,-47.389317 parent: 2 - - uid: 24923 + - uid: 24782 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.536855,46.736298 parent: 2 - - uid: 24924 + - uid: 24783 components: - type: Transform pos: -57.398136,7.639348 parent: 2 - - uid: 24925 + - uid: 24784 components: - type: Transform pos: -23.431923,-79.45605 parent: 2 - - uid: 24926 + - uid: 24785 components: - type: Transform pos: 29.563286,44.666252 parent: 2 - - uid: 24927 + - uid: 24786 components: - type: Transform pos: 34.59761,22.545893 parent: 2 - - uid: 24928 + - uid: 24787 components: - type: Transform pos: -27.460869,19.624147 parent: 2 - - uid: 24929 + - uid: 24788 components: - type: Transform pos: 31.585245,8.603551 parent: 2 - - uid: 24930 + - uid: 24789 components: - type: Transform pos: -62.437016,6.65032 parent: 2 - - uid: 24931 + - uid: 24790 components: - type: Transform pos: 43.548054,-60.36112 parent: 2 - - uid: 24932 + - uid: 24791 components: - type: Transform pos: 43.588223,-25.339705 parent: 2 - - uid: 24933 + - uid: 24792 components: - type: Transform pos: 53.588223,-22.402205 parent: 2 - - uid: 24934 + - uid: 24793 components: - type: Transform pos: 47.632286,-25.284323 parent: 2 - - uid: 24935 + - uid: 24794 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.463715,59.64344 parent: 2 - - uid: 24936 + - uid: 24795 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 95.345184,12.656024 parent: 2 - - uid: 24937 + - uid: 24796 components: - type: Transform rot: 3.141593671850739 rad pos: 80.62308,-1.2103617 parent: 2 - - uid: 24938 + - uid: 24797 components: - type: Transform rot: 3.141593671850739 rad pos: 84.6387,-1.1791127 parent: 2 - - uid: 24939 + - uid: 24798 components: - type: Transform rot: 3.141593671850739 rad pos: 88.62308,-1.1634886 parent: 2 - - uid: 24940 + - uid: 24799 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.480155,39.872063 parent: 2 - - uid: 39464 + - uid: 39291 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.447085,-4.3240967 - parent: 38584 + parent: 38411 - proto: LampBanana entities: - - uid: 24941 + - uid: 24800 components: - type: Transform pos: -4.5296516,34.793674 parent: 2 - - uid: 24942 + - uid: 24801 components: - type: Transform pos: -36.5,0.5 parent: 2 - - uid: 24943 + - uid: 24802 components: - type: Transform rot: 3.141592653589793 rad @@ -189891,75 +189912,75 @@ entities: - type: Physics canCollide: True - type: ActionsContainer - - uid: 24944 + - uid: 24803 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.628714,-1.2583096 parent: 2 - - uid: 24945 + - uid: 24804 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.296064,-7.270985 parent: 2 - - uid: 24946 + - uid: 24805 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.666464,-7.2709846 parent: 2 - - uid: 24947 + - uid: 24806 components: - type: Transform pos: 15.555076,-51.159237 parent: 2 - - uid: 24948 + - uid: 24807 components: - type: Transform pos: -15.505793,-5.327181 parent: 2 - - uid: 24949 + - uid: 24808 components: - type: Transform rot: 3.2845950045157224E-05 rad pos: 7.4999056,7.534997 parent: 2 - - uid: 24950 + - uid: 24809 components: - type: Transform pos: 12.52658,2.690349 parent: 2 - - uid: 24951 + - uid: 24810 components: - type: Transform pos: 51.53175,-15.470508 parent: 2 - - uid: 24952 + - uid: 24811 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.608383,2.7133226 parent: 2 - - uid: 24953 + - uid: 24812 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.54723,-1.366355 parent: 2 - - uid: 24954 + - uid: 24813 components: - type: Transform rot: 3.141592653589793 rad pos: -24.441383,-12.320116 parent: 2 - - uid: 24955 + - uid: 24814 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 89.48647,6.2373233 parent: 2 - - uid: 24956 + - uid: 24815 components: - type: Transform rot: 1.5707973450558423 rad @@ -189967,110 +189988,110 @@ entities: parent: 2 - proto: LampInterrogator entities: - - uid: 24957 + - uid: 24816 components: - type: Transform pos: 57.585957,-3.0594435 parent: 2 - - uid: 24958 + - uid: 24817 components: - type: Transform pos: 46.304855,-3.075148 parent: 2 - proto: LandMineExplosive entities: - - uid: 24959 + - uid: 24818 components: - type: Transform pos: 25.484495,19.590271 parent: 2 - - uid: 24960 + - uid: 24819 components: - type: Transform pos: -36.26618,-76.37121 parent: 2 - - uid: 24961 + - uid: 24820 components: - type: Transform pos: -29.624964,-73.38694 parent: 2 - - uid: 24962 + - uid: 24821 components: - type: Transform pos: 10.635908,-81.58474 parent: 2 - - uid: 24963 + - uid: 24822 components: - type: Transform pos: -30.53003,-78.41371 parent: 2 - - uid: 24964 + - uid: 24823 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 94.944466,-7.075639 parent: 2 - - uid: 24965 + - uid: 24824 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 102.5955,-5.8056355 parent: 2 - - uid: 24966 + - uid: 24825 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 102.78937,1.4545923 parent: 2 - - uid: 24967 + - uid: 24826 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 88.45106,-7.8689337 parent: 2 - - uid: 24968 + - uid: 24827 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 79.66605,-6.566653 parent: 2 - - uid: 24969 + - uid: 24828 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 76.59095,-6.7160645 parent: 2 - - uid: 24970 + - uid: 24829 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 85.51197,-6.512925 parent: 2 - - uid: 24971 + - uid: 24830 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 99.69662,5.9101176 parent: 2 - - uid: 24972 + - uid: 24831 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 100.477875,1.0753798 parent: 2 - - uid: 24973 + - uid: 24832 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 103.12242,-2.637576 parent: 2 - - uid: 24974 + - uid: 24833 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 28.495996,16.534618 parent: 2 - - uid: 24975 + - uid: 24834 components: - type: MetaData desc: Она настоящая?.. или нет... @@ -190078,61 +190099,61 @@ entities: rot: 1.0182609457842773E-06 rad pos: 99.183014,-2.5589252 parent: 2 - - uid: 24976 + - uid: 24835 components: - type: Transform pos: 20.62512,19.574646 parent: 2 - proto: LandMineModular entities: - - uid: 24977 + - uid: 24836 components: - type: Transform pos: 10.348714,-79.62576 parent: 2 - - uid: 24978 + - uid: 24837 components: - type: Transform pos: 9.364339,-80.29764 parent: 2 - - uid: 24979 + - uid: 24838 components: - type: Transform pos: 9.708088,-82.43826 parent: 2 - - uid: 24980 + - uid: 24839 components: - type: Transform pos: -38.540127,-55.51454 parent: 2 - proto: Lantern entities: - - uid: 39465 + - uid: 39292 components: - type: Transform pos: -8.5,12.5 - parent: 38584 - - uid: 39466 + parent: 38411 + - uid: 39293 components: - type: Transform pos: -0.5,25.5 - parent: 38584 - - uid: 39467 + parent: 38411 + - uid: 39294 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,13.5 - parent: 38584 + parent: 38411 - proto: LanternFlash entities: - - uid: 24981 + - uid: 24840 components: - type: Transform pos: -14.489479,-74.273415 parent: 2 - type: Physics canCollide: False - - uid: 24982 + - uid: 24841 components: - type: Transform pos: -18.52073,-74.304665 @@ -190141,43 +190162,43 @@ entities: canCollide: False - proto: LargeBeaker entities: - - uid: 24983 + - uid: 24842 components: - type: Transform pos: -10.623464,-52.304737 parent: 2 - - uid: 24984 + - uid: 24843 components: - type: Transform pos: -25.45797,-27.47972 parent: 2 - - uid: 24985 + - uid: 24844 components: - type: Transform pos: 8.488844,-31.37006 parent: 2 - type: Physics canCollide: False - - uid: 24986 + - uid: 24845 components: - type: Transform pos: -26.653925,45.56316 parent: 2 - - uid: 24987 + - uid: 24846 components: - type: Transform pos: -33.420307,37.262516 parent: 2 - proto: LauncherCreamPie entities: - - uid: 24988 + - uid: 24847 components: - type: Transform pos: -5.626899,32.597004 parent: 2 - proto: LedLightTube entities: - - uid: 24989 + - uid: 24848 components: - type: Transform rot: 6.283185307179586 rad @@ -190240,7 +190261,7 @@ entities: min: 1 - !type:DoActsBehavior acts: Destruction - - uid: 24990 + - uid: 24849 components: - type: Transform rot: 6.283185307179586 rad @@ -190303,7 +190324,7 @@ entities: min: 1 - !type:DoActsBehavior acts: Destruction - - uid: 24991 + - uid: 24850 components: - type: Transform rot: 6.283185307179586 rad @@ -190368,7 +190389,7 @@ entities: acts: Destruction - proto: LeftArmBorg entities: - - uid: 24992 + - uid: 24851 components: - type: Transform rot: 3.141592653589793 rad @@ -190376,39 +190397,39 @@ entities: parent: 2 - proto: LemonSeeds entities: - - uid: 24993 + - uid: 24852 components: - type: Transform pos: -70.34853,-20.410847 parent: 2 - proto: LemoonSeeds entities: - - uid: 24994 + - uid: 24853 components: - type: Transform pos: -70.73916,-20.723347 parent: 2 - proto: LightBulbBroken entities: - - uid: 24995 + - uid: 24854 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.984306,-73.144775 parent: 2 - - uid: 24996 + - uid: 24855 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.981056,-60.351532 parent: 2 - - uid: 24997 + - uid: 24856 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.968693,-61.888454 parent: 2 - - uid: 24998 + - uid: 24857 components: - type: Transform rot: -1.5707953085339508 rad @@ -190416,33 +190437,33 @@ entities: parent: 2 - proto: Lighter entities: - - uid: 24999 + - uid: 24858 components: - type: Transform rot: 3.141592653589793 rad pos: 53.769608,31.360748 parent: 2 - - uid: 25000 + - uid: 24859 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.60087,10.400426 parent: 2 - - uid: 25001 + - uid: 24860 components: - type: Transform pos: -62.635532,18.450417 parent: 2 - type: Physics canCollide: False - - uid: 25002 + - uid: 24861 components: - type: Transform pos: -11.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 25003 + - uid: 24862 components: - type: Transform pos: -62.479282,18.606667 @@ -190451,14 +190472,14 @@ entities: canCollide: False - proto: LightReplacer entities: - - uid: 25004 + - uid: 24863 components: - type: Transform pos: -55.503292,12.67932 parent: 2 - type: Physics canCollide: False - - uid: 25005 + - uid: 24864 components: - type: Transform pos: -53.50574,38.601086 @@ -190467,13 +190488,13 @@ entities: canCollide: False - proto: LightTubeBroken entities: - - uid: 25006 + - uid: 24865 components: - type: Transform rot: 3.141592653589793 rad pos: 36.112137,-69.765274 parent: 2 - - uid: 25007 + - uid: 24866 components: - type: Transform rot: -1.5707963267948966 rad @@ -190481,10 +190502,10 @@ entities: parent: 2 - proto: LightTubeCrystalOrange entities: - - uid: 25009 + - uid: 24868 components: - type: Transform - parent: 25008 + parent: 24867 - type: LightBulb lightRadius: 2 lightEnergy: 1 @@ -190492,19 +190513,19 @@ entities: canCollide: False - proto: LightTubeCrystalPink entities: - - uid: 25011 + - uid: 24870 components: - type: Transform - parent: 25010 + parent: 24869 - type: LightBulb lightRadius: 4 lightEnergy: 2 - type: Physics canCollide: False - - uid: 25013 + - uid: 24872 components: - type: Transform - parent: 25012 + parent: 24871 - type: LightBulb lightRadius: 2 lightEnergy: 1 @@ -190512,693 +190533,693 @@ entities: canCollide: False - proto: LightTubeCrystalRed entities: - - uid: 25015 + - uid: 24874 components: - type: Transform - parent: 25847 + parent: 24873 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25017 + - uid: 24876 components: - type: Transform - parent: 25016 + parent: 24875 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25019 + - uid: 24878 components: - type: Transform - parent: 25018 + parent: 24877 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25021 + - uid: 24880 components: - type: Transform - parent: 25020 + parent: 24879 - type: LightBulb lightRadius: 4 lightEnergy: 2 - type: Physics canCollide: False - - uid: 25023 + - uid: 24882 components: - type: Transform - parent: 25022 + parent: 24881 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25027 + - uid: 24884 components: - type: Transform - parent: 25026 + parent: 24883 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25031 + - uid: 24886 components: - type: Transform - parent: 25030 + parent: 24885 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25033 + - uid: 24888 components: - type: Transform - parent: 25032 + parent: 24887 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25035 + - uid: 24890 components: - type: Transform - parent: 25034 + parent: 24889 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25037 + - uid: 24892 components: - type: Transform - parent: 25036 + parent: 24891 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25039 + - uid: 24894 components: - type: Transform - parent: 25038 + parent: 24893 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25041 + - uid: 24896 components: - type: Transform - parent: 25040 + parent: 24895 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25043 + - uid: 24898 components: - type: Transform - parent: 25042 + parent: 24897 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25045 + - uid: 24900 components: - type: Transform - parent: 25044 + parent: 24899 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25047 + - uid: 24902 components: - type: Transform - parent: 25046 + parent: 24901 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25049 + - uid: 24904 components: - type: Transform - parent: 25048 + parent: 24903 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25051 + - uid: 24906 components: - type: Transform - parent: 25050 + parent: 24905 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25053 + - uid: 24908 components: - type: Transform - parent: 25052 + parent: 24907 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25055 + - uid: 24910 components: - type: Transform - parent: 25054 + parent: 24909 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25057 + - uid: 24912 components: - type: Transform - parent: 25056 + parent: 24911 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25059 + - uid: 24914 components: - type: Transform - parent: 25058 + parent: 24913 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25061 + - uid: 24916 components: - type: Transform - parent: 25060 + parent: 24915 - type: LightBulb lightRadius: 2 - type: Physics canCollide: False - - uid: 25063 + - uid: 24918 components: - type: Transform - parent: 25062 + parent: 24917 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25065 + - uid: 24920 components: - type: Transform - parent: 25064 + parent: 24919 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25067 + - uid: 24922 components: - type: Transform - parent: 25066 + parent: 24921 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25069 + - uid: 24924 components: - type: Transform - parent: 25068 + parent: 24923 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25071 + - uid: 24926 components: - type: Transform - parent: 25070 + parent: 24925 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25073 + - uid: 24928 components: - type: Transform - parent: 25072 + parent: 24927 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25075 + - uid: 24930 components: - type: Transform - parent: 25074 + parent: 24929 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25077 + - uid: 24932 components: - type: Transform - parent: 25076 + parent: 24931 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25079 + - uid: 24934 components: - type: Transform - parent: 25078 + parent: 24933 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25081 + - uid: 24936 components: - type: Transform - parent: 25080 + parent: 24935 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25083 + - uid: 24938 components: - type: Transform - parent: 25082 + parent: 24937 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25085 + - uid: 24940 components: - type: Transform - parent: 25084 + parent: 24939 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25087 + - uid: 24942 components: - type: Transform - parent: 25086 + parent: 24941 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25089 + - uid: 24944 components: - type: Transform - parent: 25088 + parent: 24943 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25091 + - uid: 24946 components: - type: Transform - parent: 25090 + parent: 24945 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25093 + - uid: 24948 components: - type: Transform - parent: 25092 + parent: 24947 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25095 + - uid: 24950 components: - type: Transform - parent: 25094 + parent: 24949 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25097 + - uid: 24952 components: - type: Transform - parent: 25096 + parent: 24951 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25099 + - uid: 24954 components: - type: Transform - parent: 25098 + parent: 24953 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25101 + - uid: 24956 components: - type: Transform - parent: 25100 + parent: 24955 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25103 + - uid: 24958 components: - type: Transform - parent: 25102 + parent: 24957 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25105 + - uid: 24960 components: - type: Transform - parent: 25104 + parent: 24959 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25107 + - uid: 24962 components: - type: Transform - parent: 25106 + parent: 24961 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25109 + - uid: 24964 components: - type: Transform - parent: 25108 + parent: 24963 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25111 + - uid: 24966 components: - type: Transform - parent: 25110 + parent: 24965 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25113 + - uid: 24968 components: - type: Transform - parent: 25112 + parent: 24967 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25115 + - uid: 24970 components: - type: Transform - parent: 25114 + parent: 24969 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25117 + - uid: 24972 components: - type: Transform - parent: 25116 + parent: 24971 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25119 + - uid: 24974 components: - type: Transform - parent: 25118 + parent: 24973 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25121 + - uid: 24976 components: - type: Transform - parent: 25120 + parent: 24975 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25123 + - uid: 24978 components: - type: Transform - parent: 25122 + parent: 24977 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25125 + - uid: 24980 components: - type: Transform - parent: 25124 + parent: 24979 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25127 + - uid: 24982 components: - type: Transform - parent: 25126 + parent: 24981 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25129 + - uid: 24984 components: - type: Transform - parent: 25128 + parent: 24983 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25131 + - uid: 24986 components: - type: Transform - parent: 25130 + parent: 24985 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25133 + - uid: 24988 components: - type: Transform - parent: 25132 + parent: 24987 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25135 + - uid: 24990 components: - type: Transform - parent: 25134 + parent: 24989 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25137 + - uid: 24992 components: - type: Transform - parent: 25136 + parent: 24991 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25139 + - uid: 24994 components: - type: Transform - parent: 25138 + parent: 24993 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25141 + - uid: 24996 components: - type: Transform - parent: 25140 + parent: 24995 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25143 + - uid: 24998 components: - type: Transform - parent: 25142 + parent: 24997 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25145 + - uid: 25000 components: - type: Transform - parent: 25144 + parent: 24999 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25147 + - uid: 25002 components: - type: Transform - parent: 25146 + parent: 25001 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25149 + - uid: 25004 components: - type: Transform - parent: 25148 + parent: 25003 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25151 + - uid: 25006 components: - type: Transform - parent: 25150 + parent: 25005 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25153 + - uid: 25008 components: - type: Transform - parent: 25152 + parent: 25007 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25155 + - uid: 25010 components: - type: Transform - parent: 25154 + parent: 25009 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25157 + - uid: 25012 components: - type: Transform - parent: 25156 + parent: 25011 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25159 + - uid: 25014 components: - type: Transform - parent: 25158 + parent: 25013 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25161 + - uid: 25016 components: - type: Transform - parent: 25160 + parent: 25015 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25163 + - uid: 25018 components: - type: Transform - parent: 25162 + parent: 25017 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25165 + - uid: 25020 components: - type: Transform - parent: 25164 + parent: 25019 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - proto: LiquidCarbonDioxideCanister entities: - - uid: 25166 + - uid: 25021 components: - type: Transform pos: -49.5,25.5 parent: 2 - proto: LiquidNitrogenCanister entities: - - uid: 25167 + - uid: 25022 components: - type: Transform pos: -47.5,24.5 parent: 2 - - uid: 25168 + - uid: 25023 components: - type: Transform pos: -47.5,25.5 parent: 2 - proto: LiquidOxygenCanister entities: - - uid: 25169 + - uid: 25024 components: - type: Transform pos: -46.5,24.5 parent: 2 - - uid: 25170 + - uid: 25025 components: - type: Transform pos: -46.5,25.5 parent: 2 - proto: LockableButtonArmory entities: - - uid: 25171 + - uid: 25026 components: - type: MetaData name: арсенал красного кода @@ -191208,9 +191229,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1513: + 1518: - Pressed: Toggle - - uid: 25172 + - uid: 25027 components: - type: MetaData name: дополнительный арсенал @@ -191220,9 +191241,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1514: + 1519: - Pressed: Toggle - - uid: 25173 + - uid: 25028 components: - type: MetaData name: арсенал синего кода @@ -191232,9 +191253,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1512: + 1517: - Pressed: Toggle - - uid: 25174 + - uid: 25029 components: - type: Transform rot: 1.5707963267948966 rad @@ -191242,11 +191263,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1515: + 1520: - Pressed: Toggle - proto: LockableButtonAtmospherics entities: - - uid: 25175 + - uid: 25030 components: - type: Transform rot: 1.5707963267948966 rad @@ -191254,17 +191275,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1548: + 1553: - Pressed: Toggle - 1547: + 1552: - Pressed: Toggle - 1546: + 1551: - Pressed: Toggle - 1549: + 1554: - Pressed: Toggle - proto: LockableButtonHeadOfSecurity entities: - - uid: 25176 + - uid: 25031 components: - type: Transform rot: -1.5707963267948966 rad @@ -191272,39 +191293,39 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29250: + 29048: - Pressed: Toggle - 29335: + 29133: - Pressed: Toggle - 29321: + 29119: - Pressed: Toggle - 29306: + 29104: - Pressed: Toggle - 29342: + 29140: - Pressed: Toggle - 29337: + 29135: - Pressed: Toggle - 29308: + 29106: - Pressed: Toggle - 29334: + 29132: - Pressed: Toggle - 29331: + 29129: - Pressed: Toggle - 29336: + 29134: - Pressed: Toggle - 29307: + 29105: - Pressed: Toggle - 29320: + 29118: - Pressed: Toggle - 29318: + 29116: - Pressed: Toggle - 29319: + 29117: - Pressed: Toggle - 29305: + 29103: - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - - uid: 14956 + - uid: 14897 components: - type: Transform pos: -56.5,33.5 @@ -191333,14 +191354,14 @@ entities: showEnts: False occludes: True ents: - - 14957 - - 14958 - - 14959 + - 14898 + - 14899 + - 14900 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14960 + - uid: 14901 components: - type: Transform pos: -56.5,34.5 @@ -191369,14 +191390,14 @@ entities: showEnts: False occludes: True ents: - - 14962 - - 14961 - - 14963 + - 14903 + - 14902 + - 14904 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14964 + - uid: 14905 components: - type: Transform pos: -56.5,32.5 @@ -191405,16 +191426,16 @@ entities: showEnts: False occludes: True ents: - - 14967 - - 14965 - - 14966 + - 14908 + - 14906 + - 14907 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerBooze entities: - - uid: 1836 + - uid: 1840 components: - type: MetaData desc: Обычный шкаф для хранения вещей. @@ -191448,40 +191469,40 @@ entities: showEnts: False occludes: True ents: - - 1837 - - 1838 - - 1839 + - 1841 + - 1842 + - 1843 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerBoozeFilled entities: - - uid: 25177 + - uid: 25032 components: - type: Transform pos: -3.5,40.5 parent: 2 - proto: LockerBotanistFilled entities: - - uid: 25178 + - uid: 25033 components: - type: Transform pos: -38.5,48.5 parent: 2 - - uid: 25179 + - uid: 25034 components: - type: Transform pos: -38.5,49.5 parent: 2 - - uid: 25180 + - uid: 25035 components: - type: Transform pos: -38.5,50.5 parent: 2 - proto: LockerBrigmedic entities: - - uid: 14810 + - uid: 14750 components: - type: Transform pos: 66.5,-2.5 @@ -191510,28 +191531,28 @@ entities: showEnts: False occludes: True ents: - - 14824 - - 14825 - - 14811 - - 14819 - - 14818 - - 14813 - - 14817 - - 14812 - - 14814 - - 14821 - - 14820 - - 14823 - - 14815 - - 14816 - - 14822 + - 14764 + - 14765 + - 14751 + - 14759 + - 14758 + - 14753 + - 14757 + - 14752 + - 14754 + - 14761 + - 14760 + - 14763 + - 14755 + - 14756 + - 14762 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerCaptainFilled entities: - - uid: 25181 + - uid: 25036 components: - type: Transform pos: 11.5,3.5 @@ -191556,7 +191577,7 @@ entities: - 0 - proto: LockerChemistryFilled entities: - - uid: 25182 + - uid: 25037 components: - type: Transform pos: 8.5,-29.481438 @@ -191581,14 +191602,14 @@ entities: - 0 - proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 25183 + - uid: 25038 components: - type: Transform pos: -55.5,7.5 parent: 2 - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 25184 + - uid: 25039 components: - type: Transform pos: 20.5,-50.5 @@ -191613,7 +191634,7 @@ entities: - 0 - proto: LockerClown entities: - - uid: 14826 + - uid: 14766 components: - type: Transform pos: -9.5,52.5 @@ -191642,23 +191663,23 @@ entities: showEnts: False occludes: True ents: - - 14832 - - 14830 - - 14831 - - 14827 - - 14837 - - 14834 - - 14833 - - 14829 - - 14838 - - 14836 - - 14835 - - 14828 + - 14772 + - 14770 + - 14771 + - 14767 + - 14777 + - 14774 + - 14773 + - 14769 + - 14778 + - 14776 + - 14775 + - 14768 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25185 + - uid: 25040 components: - type: Transform pos: -4.5,32.5 @@ -191683,7 +191704,7 @@ entities: - 0 - proto: LockerDetective entities: - - uid: 1645 + - uid: 1649 components: - type: MetaData name: шкаф отца Гарсии @@ -191716,14 +191737,14 @@ entities: showEnts: False occludes: True ents: - - 1646 - - 1647 - - 1648 + - 1650 + - 1651 + - 1652 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14916 + - uid: 14857 components: - type: Transform pos: 72.5,-36.5 @@ -191752,19 +191773,19 @@ entities: showEnts: False occludes: True ents: - - 14919 - - 14917 - - 14918 - - 14920 - - 14921 - - 14922 + - 14860 + - 14858 + - 14859 + - 14861 + - 14862 + - 14863 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerDetectiveFilled entities: - - uid: 25186 + - uid: 25041 components: - type: Transform pos: 29.5,12.5 @@ -191793,15 +191814,15 @@ entities: showEnts: False occludes: True ents: - - 25188 - - 25187 + - 25043 + - 25042 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerElectricalSuppliesFilled entities: - - uid: 25190 + - uid: 25044 components: - type: Transform pos: -58.5,-11.5 @@ -191824,39 +191845,39 @@ entities: - 0 - 0 - 0 - - uid: 25191 + - uid: 25045 components: - type: Transform pos: -38.5,-6.5 parent: 2 - - uid: 25192 + - uid: 25046 components: - type: Transform pos: -77.5,-23.5 parent: 2 - proto: LockerEngineerFilled entities: - - uid: 25193 + - uid: 25047 components: - type: Transform pos: -81.5,15.5 parent: 2 - - uid: 25194 + - uid: 25048 components: - type: Transform pos: -60.5,-12.5 parent: 2 - - uid: 25195 + - uid: 25049 components: - type: Transform pos: -60.5,-13.5 parent: 2 - - uid: 25196 + - uid: 25050 components: - type: Transform pos: -60.5,-11.5 parent: 2 - - uid: 25197 + - uid: 25051 components: - type: Transform pos: -60.5,-1.5 @@ -191879,7 +191900,7 @@ entities: - 0 - 0 - 0 - - uid: 25198 + - uid: 25052 components: - type: Transform pos: -60.5,-2.5 @@ -191902,7 +191923,7 @@ entities: - 0 - 0 - 0 - - uid: 25199 + - uid: 25053 components: - type: Transform pos: -55.5,3.5000002 @@ -191925,7 +191946,7 @@ entities: - 0 - 0 - 0 - - uid: 25200 + - uid: 25054 components: - type: Transform pos: -48.5,-3.5 @@ -191948,7 +191969,7 @@ entities: - 0 - 0 - 0 - - uid: 25201 + - uid: 25055 components: - type: Transform pos: -56.5,3.5000002 @@ -191971,7 +191992,7 @@ entities: - 0 - 0 - 0 - - uid: 25202 + - uid: 25056 components: - type: Transform pos: -60.5,-3.5 @@ -191994,7 +192015,7 @@ entities: - 0 - 0 - 0 - - uid: 25203 + - uid: 25057 components: - type: Transform pos: -49.5,-3.5 @@ -192019,7 +192040,7 @@ entities: - 0 - proto: LockerEvidence entities: - - uid: 1668 + - uid: 1672 components: - type: Transform pos: 31.5,12.5 @@ -192050,27 +192071,27 @@ entities: showEnts: False occludes: True ents: - - 1669 + - 1673 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25204 + - uid: 25058 components: - type: Transform pos: 49.5,-8.5 parent: 2 - - uid: 25205 + - uid: 25059 components: - type: Transform pos: 48.5,-6.5 parent: 2 - - uid: 25206 + - uid: 25060 components: - type: Transform pos: 46.5,9.5 parent: 2 - - uid: 25207 + - uid: 25061 components: - type: Transform pos: 46.5,1.5 @@ -192093,12 +192114,12 @@ entities: - 0 - 0 - 0 - - uid: 25208 + - uid: 25062 components: - type: Transform pos: 65.5,3.5 parent: 2 - - uid: 25209 + - uid: 25063 components: - type: Transform pos: 6.5,-77.5 @@ -192121,7 +192142,7 @@ entities: - 0 - 0 - 0 - - uid: 25210 + - uid: 25064 components: - type: Transform pos: 6.5,-73.5 @@ -192144,7 +192165,7 @@ entities: - 0 - 0 - 0 - - uid: 25211 + - uid: 25065 components: - type: Transform pos: 39.5,9.5 @@ -192167,7 +192188,7 @@ entities: - 0 - 0 - 0 - - uid: 25212 + - uid: 25066 components: - type: Transform pos: 35.5,11.5 @@ -192190,12 +192211,12 @@ entities: - 0 - 0 - 0 - - uid: 25213 + - uid: 25067 components: - type: Transform pos: 35.5,12.5 parent: 2 - - uid: 25214 + - uid: 25068 components: - type: Transform pos: 39.5,3.5 @@ -192218,7 +192239,7 @@ entities: - 0 - 0 - 0 - - uid: 25215 + - uid: 25069 components: - type: Transform pos: 46.5,13.5 @@ -192241,64 +192262,64 @@ entities: - 0 - 0 - 0 - - uid: 25216 + - uid: 25070 components: - type: Transform pos: 74.5,2.5 parent: 2 - - uid: 25217 + - uid: 25071 components: - type: Transform pos: 74.49999,3.5 parent: 2 - - uid: 25218 + - uid: 25072 components: - type: Transform pos: 49.5,-6.5 parent: 2 - - uid: 25219 + - uid: 25073 components: - type: Transform pos: 47.5,-8.5 parent: 2 - - uid: 25220 + - uid: 25074 components: - type: Transform pos: 48.5,-8.5 parent: 2 - - uid: 25221 + - uid: 25075 components: - type: Transform pos: 47.5,-6.5 parent: 2 - - uid: 39468 + - uid: 39295 components: - type: Transform pos: 1.5,-10.5 - parent: 38584 - - uid: 39469 + parent: 38411 + - uid: 39296 components: - type: Transform pos: 1.5,-8.5 - parent: 38584 - - uid: 39470 + parent: 38411 + - uid: 39297 components: - type: Transform pos: 1.5,-9.5 - parent: 38584 - - uid: 39471 + parent: 38411 + - uid: 39298 components: - type: Transform pos: 1.5,-7.5 - parent: 38584 - - uid: 39472 + parent: 38411 + - uid: 39299 components: - type: Transform pos: -2.5,-1.5 - parent: 38584 + parent: 38411 - proto: LockerFreezer entities: - - uid: 25222 + - uid: 25076 components: - type: Transform pos: 18.5,65.5 @@ -192323,7 +192344,7 @@ entities: - 0 - 0 - 0 - - uid: 25223 + - uid: 25077 components: - type: Transform pos: -30.5,25.5 @@ -192346,7 +192367,7 @@ entities: - 0 - 0 - 0 - - uid: 25224 + - uid: 25078 components: - type: Transform pos: -31.5,25.5 @@ -192371,7 +192392,7 @@ entities: - 0 - proto: LockerFreezerBase entities: - - uid: 18591 + - uid: 18517 components: - type: Transform pos: 64.5,30.5 @@ -192402,14 +192423,14 @@ entities: showEnts: False occludes: True ents: - - 18594 - - 18593 - - 18592 + - 18520 + - 18519 + - 18518 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 18652 + - uid: 18575 components: - type: Transform pos: -25.5,-14.5 @@ -192438,21 +192459,21 @@ entities: showEnts: False occludes: True ents: - - 18653 + - 18576 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25225 + - uid: 25079 components: - type: Transform pos: -5.5,38.5 parent: 2 - - uid: 39473 + - uid: 39300 components: - type: Transform pos: -19.5,30.5 - parent: 38584 + parent: 38411 - type: Lock locked: False - type: EntityStorage @@ -192473,21 +192494,21 @@ entities: - 0 - 0 - 0 - - uid: 39474 + - uid: 39301 components: - type: Transform pos: -18.5,-1.5 - parent: 38584 + parent: 38411 - proto: LockerFreezerVaultFilled entities: - - uid: 13180 + - uid: 25080 components: - type: Transform pos: 24.5,12.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: - - uid: 25226 + - uid: 25081 components: - type: Transform pos: -14.5,-5.5 @@ -192512,7 +192533,7 @@ entities: - 0 - proto: LockerHeadOfSecurityFilled entities: - - uid: 15235 + - uid: 15179 components: - type: Transform pos: 34.5,18.5 @@ -192541,15 +192562,15 @@ entities: showEnts: False occludes: True ents: - - 15237 - - 15236 + - 15181 + - 15180 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerMedicalFilled entities: - - uid: 14997 + - uid: 14938 components: - type: Transform pos: 29.5,-21.5 @@ -192578,13 +192599,13 @@ entities: showEnts: False occludes: True ents: - - 14998 - - 14999 + - 14939 + - 14940 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15000 + - uid: 14941 components: - type: Transform pos: 30.5,-21.5 @@ -192613,54 +192634,54 @@ entities: showEnts: False occludes: True ents: - - 15001 + - 14942 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25227 + - uid: 25082 components: - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 25228 + - uid: 25083 components: - type: Transform pos: 22.5,-24.5 parent: 2 - - uid: 25229 + - uid: 25084 components: - type: Transform pos: 69.5,16.5 parent: 2 - - uid: 25230 + - uid: 25085 components: - type: Transform pos: 6.5,-46.5 parent: 2 - proto: LockerMedicineFilled entities: - - uid: 25231 + - uid: 25086 components: - type: Transform pos: 6.5,-12.5 parent: 2 - - uid: 25232 + - uid: 25087 components: - type: Transform pos: -4.5,-61.5 parent: 2 - - uid: 25233 + - uid: 25088 components: - type: Transform pos: 5.5,65.5 parent: 2 - - uid: 25234 + - uid: 25089 components: - type: Transform pos: 5.5,-46.5 parent: 2 - - uid: 25235 + - uid: 25090 components: - type: Transform pos: 32.5,-69.5 @@ -192683,17 +192704,17 @@ entities: - 0 - 0 - 0 - - uid: 25236 + - uid: 25091 components: - type: Transform pos: 9.5,-54.5 parent: 2 - - uid: 25237 + - uid: 25092 components: - type: Transform pos: 8.5,-46.5 parent: 2 - - uid: 25238 + - uid: 25093 components: - type: Transform pos: 44.5,-30.5 @@ -192718,7 +192739,7 @@ entities: - 0 - proto: LockerMime entities: - - uid: 14840 + - uid: 14780 components: - type: Transform pos: -2.5,46.5 @@ -192747,31 +192768,31 @@ entities: showEnts: False occludes: True ents: - - 14859 - - 14858 - - 14857 - - 14850 - - 14841 - - 14844 - - 14849 - - 14856 - - 9974 - - 14846 - - 14855 - - 14847 - - 14852 - - 14854 - - 14853 - - 14845 - - 14848 - - 14843 - - 14842 - - 14851 + - 14800 + - 14799 + - 14798 + - 14791 + - 14781 + - 14784 + - 14790 + - 14797 + - 14789 + - 14786 + - 14796 + - 14787 + - 14793 + - 14795 + - 14794 + - 14785 + - 14788 + - 14783 + - 14782 + - 14792 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25239 + - uid: 25094 components: - type: Transform pos: -6.5,28.5 @@ -192796,7 +192817,7 @@ entities: - 0 - proto: LockerParamedicFilled entities: - - uid: 25240 + - uid: 25095 components: - type: Transform pos: 12.5,-42.5 @@ -192821,14 +192842,14 @@ entities: - 0 - proto: LockerQuarterMasterFilled entities: - - uid: 25241 + - uid: 25096 components: - type: Transform pos: 29.5,40.5 parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 25242 + - uid: 25097 components: - type: Transform pos: -20.5,-45.5 @@ -192853,22 +192874,22 @@ entities: - 0 - proto: LockerSalvageSpecialistFilled entities: - - uid: 25243 + - uid: 25098 components: - type: Transform pos: 24.5,32.5 parent: 2 - - uid: 25244 + - uid: 25099 components: - type: Transform pos: 23.5,32.5 parent: 2 - - uid: 25245 + - uid: 25100 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 25246 + - uid: 25101 components: - type: Transform pos: 11.5,86.5 @@ -192907,7 +192928,7 @@ entities: ent: null - proto: LockerSecurityFilled entities: - - uid: 25247 + - uid: 25102 components: - type: Transform pos: 55.5,13.5 @@ -192930,7 +192951,7 @@ entities: - 0 - 0 - 0 - - uid: 25248 + - uid: 25103 components: - type: Transform pos: 59.5,11.5 @@ -192953,7 +192974,7 @@ entities: - 0 - 0 - 0 - - uid: 25249 + - uid: 25104 components: - type: Transform pos: 59.5,13.5 @@ -192976,7 +192997,7 @@ entities: - 0 - 0 - 0 - - uid: 25250 + - uid: 25105 components: - type: Transform pos: 60.5,13.5 @@ -192999,7 +193020,7 @@ entities: - 0 - 0 - 0 - - uid: 25251 + - uid: 25106 components: - type: Transform pos: 14.5,-29.5 @@ -193022,7 +193043,7 @@ entities: - 0 - 0 - 0 - - uid: 25252 + - uid: 25107 components: - type: Transform pos: 53.5,13.5 @@ -193045,7 +193066,7 @@ entities: - 0 - 0 - 0 - - uid: 25253 + - uid: 25108 components: - type: Transform pos: 60.5,11.5 @@ -193068,7 +193089,7 @@ entities: - 0 - 0 - 0 - - uid: 25254 + - uid: 25109 components: - type: Transform pos: 8.5,-57.5 @@ -193091,7 +193112,7 @@ entities: - 0 - 0 - 0 - - uid: 25255 + - uid: 25110 components: - type: Transform pos: -23.5,2.5 @@ -193114,7 +193135,7 @@ entities: - 0 - 0 - 0 - - uid: 25256 + - uid: 25111 components: - type: Transform pos: -19.5,-27.5 @@ -193137,7 +193158,7 @@ entities: - 0 - 0 - 0 - - uid: 25257 + - uid: 25112 components: - type: Transform pos: 58.5,11.5 @@ -193160,7 +193181,7 @@ entities: - 0 - 0 - 0 - - uid: 25258 + - uid: 25113 components: - type: Transform pos: 3.5,65.5 @@ -193185,7 +193206,7 @@ entities: - 0 - proto: LockerSteel entities: - - uid: 15705 + - uid: 15688 components: - type: Transform pos: 55.5,-34.5 @@ -193216,21 +193237,21 @@ entities: showEnts: False occludes: True ents: - - 15706 - - 15713 - - 15712 - - 15711 - - 15710 - - 15709 - - 15708 - - 15707 + - 15689 + - 15696 + - 15695 + - 15694 + - 15693 + - 15692 + - 15691 + - 15690 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerSyndicatePersonal entities: - - uid: 1388 + - uid: 1392 components: - type: Transform pos: -36.5,-55.5 @@ -193261,18 +193282,18 @@ entities: showEnts: False occludes: True ents: - - 1389 - - 1391 - - 1390 + - 1393 + - 1395 + - 1394 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 39100 + - uid: 38927 components: - type: Transform pos: -22.5,27.5 - parent: 38584 + parent: 38411 - type: Lock locked: False - type: EntityStorage @@ -193299,19 +193320,19 @@ entities: showEnts: False occludes: True ents: - - 39103 - - 39106 - - 39104 - - 39105 - - 39101 - - 39102 + - 38930 + - 38933 + - 38931 + - 38932 + - 38928 + - 38929 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerWallMedical entities: - - uid: 25259 + - uid: 25114 components: - type: Transform rot: 1.5707963267948966 rad @@ -193337,14 +193358,14 @@ entities: - 0 - proto: LockerWarden entities: - - uid: 39475 + - uid: 39302 components: - type: Transform pos: 11.5,-5.5 - parent: 38584 + parent: 38411 - proto: LockerWardenFilled entities: - - uid: 15009 + - uid: 14950 components: - type: Transform pos: 55.5,6.5 @@ -193373,25 +193394,25 @@ entities: showEnts: False occludes: True ents: - - 15016 - - 15013 - - 15010 - - 15011 - - 15012 - - 15015 - - 15014 + - 14957 + - 14954 + - 14951 + - 14952 + - 14953 + - 14956 + - 14955 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerWeldingSuppliesFilled entities: - - uid: 25260 + - uid: 25115 components: - type: Transform pos: 10.500001,-14.5 parent: 2 - - uid: 25261 + - uid: 25116 components: - type: Transform pos: -58.5,-3.5 @@ -193416,39 +193437,39 @@ entities: - 0 - proto: Log entities: - - uid: 25262 + - uid: 25117 components: - type: Transform pos: -67.311874,62.552517 parent: 2 - - uid: 25263 + - uid: 25118 components: - type: Transform pos: -67.39,62.818142 parent: 2 - - uid: 25264 + - uid: 25119 components: - type: Transform pos: -67.29626,62.833767 parent: 2 - - uid: 25265 + - uid: 25120 components: - type: Transform pos: -32.549194,-64.52818 parent: 2 - - uid: 25266 + - uid: 25121 components: - type: Transform pos: -67.54625,62.583767 parent: 2 - - uid: 25267 + - uid: 25122 components: - type: Transform pos: -32.292347,-64.430336 parent: 2 - proto: LuxuryPen entities: - - uid: 25268 + - uid: 25123 components: - type: Transform rot: -1.5707953085339508 rad @@ -193456,24 +193477,24 @@ entities: parent: 2 - proto: MachineAnomalyGenerator entities: - - uid: 25269 + - uid: 25124 components: - type: Transform pos: -22.5,-56.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 25270 + - uid: 25125 components: - type: Transform pos: -13.5,-59.5 parent: 2 - - uid: 25271 + - uid: 25126 components: - type: Transform pos: -12.5,-59.5 parent: 2 - - uid: 25272 + - uid: 25127 components: - type: Transform rot: 3.141592653589793 rad @@ -193481,19 +193502,19 @@ entities: parent: 2 - proto: MachineAPE entities: - - uid: 25273 + - uid: 25128 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 - - uid: 25274 + - uid: 25129 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-59.5 parent: 2 - - uid: 25275 + - uid: 25130 components: - type: Transform rot: 3.141592653589793 rad @@ -193501,197 +193522,197 @@ entities: parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 25276 + - uid: 25131 components: - type: Transform pos: -37.5,-40.5 parent: 2 - proto: MachineCentrifuge entities: - - uid: 25277 + - uid: 25132 components: - type: Transform pos: 2.5,-30.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 25278 + - uid: 25133 components: - type: Transform pos: 3.5,-29.5 parent: 2 - proto: MachineFrame entities: - - uid: 25279 + - uid: 25134 components: - type: Transform pos: -7.5,-41.5 parent: 2 - - uid: 25280 + - uid: 25135 components: - type: Transform pos: -6.5,-41.5 parent: 2 - - uid: 25281 + - uid: 25136 components: - type: Transform pos: -44.5,-8.5 parent: 2 - - uid: 25282 + - uid: 25137 components: - type: Transform pos: -44.5,-9.5 parent: 2 - - uid: 25283 + - uid: 25138 components: - type: Transform pos: -45.5,-8.5 parent: 2 - - uid: 25284 + - uid: 25139 components: - type: Transform pos: -45.5,-9.5 parent: 2 - - uid: 25285 + - uid: 25140 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,58.5 parent: 2 - - uid: 25286 + - uid: 25141 components: - type: Transform pos: -7.5,-52.5 parent: 2 - - uid: 25287 + - uid: 25142 components: - type: Transform pos: -112.5,39.5 parent: 2 - - uid: 25288 + - uid: 25143 components: - type: Transform pos: -37.5,-43.5 parent: 2 - - uid: 25289 + - uid: 25144 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-35.5 parent: 2 - - uid: 25290 + - uid: 25145 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,52.5 parent: 2 - - uid: 25291 + - uid: 25146 components: - type: Transform pos: -112.5,37.5 parent: 2 - - uid: 25292 + - uid: 25147 components: - type: Transform pos: -114.5,41.5 parent: 2 - - uid: 25293 + - uid: 25148 components: - type: Transform pos: -112.5,41.5 parent: 2 - - uid: 25294 + - uid: 25149 components: - type: Transform pos: -114.5,39.5 parent: 2 - - uid: 25295 + - uid: 25150 components: - type: Transform pos: -114.5,37.5 parent: 2 - proto: MachineFrameDestroyed entities: - - uid: 25297 + - uid: 25151 components: - type: Transform pos: -40.5,-55.5 parent: 2 - - uid: 25298 + - uid: 25152 components: - type: Transform pos: 28.5,-65.5 parent: 2 - - uid: 25300 + - uid: 25153 components: - type: Transform pos: -38.5,-35.5 parent: 2 - - uid: 25301 + - uid: 25154 components: - type: Transform pos: -66.5,-36.5 parent: 2 - - uid: 39476 + - uid: 39303 components: - type: Transform pos: 13.5,18.5 - parent: 38584 - - uid: 39477 + parent: 38411 + - uid: 39304 components: - type: Transform pos: 14.5,16.5 - parent: 38584 - - uid: 39478 + parent: 38411 + - uid: 39305 components: - type: Transform pos: 11.5,22.5 - parent: 38584 - - uid: 39479 + parent: 38411 + - uid: 39306 components: - type: Transform pos: -4.5,1.5 - parent: 38584 + parent: 38411 - proto: MagazineBoxMagnum entities: - - uid: 25187 + - uid: 25042 components: - type: Transform - parent: 25186 + parent: 25041 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MagazineBoxMagnumPractice entities: - - uid: 25188 + - uid: 25043 components: - type: Transform - parent: 25186 + parent: 25041 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MagazineBoxPistolPractice entities: - - uid: 25302 + - uid: 25155 components: - type: Transform pos: 56.684937,19.51429 parent: 2 - proto: MagazineLightRifle entities: - - uid: 25303 + - uid: 25156 components: - type: Transform pos: 40.69412,17.532423 parent: 2 - - uid: 25304 + - uid: 25157 components: - type: Transform pos: 40.4283,17.514713 parent: 2 - proto: MagazineLightRifleMaxim entities: - - uid: 37660 + - uid: 25158 components: - type: MetaData name: проигрыватель @@ -193705,427 +193726,427 @@ entities: - Pullable - proto: MagazineLightRiflePractice entities: - - uid: 25305 + - uid: 25159 components: - type: Transform pos: 41.438423,17.514713 parent: 2 - proto: MagazinePistol entities: - - uid: 25306 + - uid: 25160 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 25307 + - uid: 25161 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 25308 + - uid: 25162 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 25309 + - uid: 25163 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 25310 + - uid: 25164 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 25311 + - uid: 25165 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 25312 + - uid: 25166 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 25313 + - uid: 25167 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 25314 + - uid: 25168 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.565617,7.4610443 parent: 2 - - uid: 25315 + - uid: 25169 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.516697,8.451722 parent: 2 - - uid: 25316 + - uid: 25170 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.504467,8.378339 parent: 2 - - uid: 25317 + - uid: 25171 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.541157,7.4610443 parent: 2 - - uid: 39480 + - uid: 39307 components: - type: Transform rot: 3.141592653589793 rad pos: 11.3486,-2.849823 - parent: 38584 + parent: 38411 - proto: MaintenanceFluffSpawner entities: - - uid: 25318 + - uid: 25172 components: - type: Transform pos: -29.5,58.5 parent: 2 - - uid: 25319 + - uid: 25173 components: - type: Transform pos: 7.5,48.5 parent: 2 - - uid: 25320 + - uid: 25174 components: - type: Transform pos: -46.5,-48.5 parent: 2 - - uid: 25321 + - uid: 25175 components: - type: Transform pos: -37.5,25.5 parent: 2 - - uid: 25322 + - uid: 25176 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 25323 + - uid: 25177 components: - type: Transform pos: 36.5,-51.5 parent: 2 - - uid: 25324 + - uid: 25178 components: - type: Transform pos: 20.5,-17.5 parent: 2 - - uid: 25325 + - uid: 25179 components: - type: Transform pos: 22.5,68.5 parent: 2 - - uid: 25326 + - uid: 25180 components: - type: Transform pos: 50.5,-53.5 parent: 2 - - uid: 25327 + - uid: 25181 components: - type: Transform pos: -34.5,-56.5 parent: 2 - - uid: 25328 + - uid: 25182 components: - type: Transform pos: -36.5,59.5 parent: 2 - - uid: 25329 + - uid: 25183 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 25330 + - uid: 25184 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 25331 + - uid: 25185 components: - type: Transform pos: 13.5,61.5 parent: 2 - - uid: 25332 + - uid: 25186 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,21.5 parent: 2 - - uid: 25333 + - uid: 25187 components: - type: Transform pos: -40.5,48.5 parent: 2 - proto: MaintenanceToolSpawner entities: - - uid: 25334 + - uid: 25188 components: - type: Transform pos: 20.5,41.5 parent: 2 - - uid: 25335 + - uid: 25189 components: - type: Transform pos: 9.5,64.5 parent: 2 - - uid: 25336 + - uid: 25190 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 25337 + - uid: 25191 components: - type: Transform pos: 5.5,87.5 parent: 2 - - uid: 25338 + - uid: 25192 components: - type: Transform pos: 19.5,41.5 parent: 2 - - uid: 25339 + - uid: 25193 components: - type: Transform pos: -113.5,21.5 parent: 2 - - uid: 25340 + - uid: 25194 components: - type: Transform pos: -42.5,1.5 parent: 2 - - uid: 25341 + - uid: 25195 components: - type: Transform pos: -42.5,-5.5 parent: 2 - - uid: 25342 + - uid: 25196 components: - type: Transform pos: -42.5,-4.5 parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 25343 + - uid: 25197 components: - type: Transform pos: 20.5,-18.5 parent: 2 - proto: Matchbox entities: - - uid: 25344 + - uid: 25198 components: - type: Transform pos: -45.316975,-32.250988 parent: 2 - - uid: 25345 + - uid: 25199 components: - type: Transform pos: -62.510532,18.544167 parent: 2 - type: Physics canCollide: False - - uid: 25346 + - uid: 25200 components: - type: Transform pos: 72.99635,-45.369106 parent: 2 - proto: MaterialCloth entities: - - uid: 25347 + - uid: 25201 components: - type: Transform pos: -13.644094,1.6663073 parent: 2 - type: Stack count: 29 - - uid: 25348 + - uid: 25202 components: - type: Transform pos: 30.5,-46.5 parent: 2 - proto: MaterialCloth1 entities: - - uid: 15216 + - uid: 15160 components: - type: MetaData desc: Мягкое махровое полотенце. name: полотенце - type: Transform - parent: 15214 + parent: 15158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15221 + - uid: 15165 components: - type: MetaData desc: Мягкое махровое полотенце. name: полотенце - type: Transform - parent: 15219 + parent: 15163 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15226 + - uid: 15170 components: - type: MetaData desc: Мягкое махровое полотенце. name: полотенце - type: Transform - parent: 15224 + parent: 15168 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MaterialDurathread entities: - - uid: 25349 + - uid: 25203 components: - type: Transform pos: -13.332681,1.5413071 parent: 2 - proto: MaterialReclaimer entities: - - uid: 25351 + - uid: 25204 components: - type: Transform pos: 11.5,37.5 parent: 2 - proto: MaterialWoodPlank1 entities: - - uid: 39481 + - uid: 39308 components: - type: Transform pos: -20.5,13.5 - parent: 38584 - - uid: 39482 + parent: 38411 + - uid: 39309 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,15.5 - parent: 38584 - - uid: 39483 + parent: 38411 + - uid: 39310 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,17.5 - parent: 38584 - - uid: 39484 + parent: 38411 + - uid: 39311 components: - type: Transform pos: -3.5,12.5 - parent: 38584 - - uid: 39485 + parent: 38411 + - uid: 39312 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,25.5 - parent: 38584 - - uid: 39486 + parent: 38411 + - uid: 39313 components: - type: Transform pos: -7.5,21.5 - parent: 38584 + parent: 38411 - proto: MatterBinStockPart entities: - - uid: 25352 + - uid: 25205 components: - type: Transform pos: -32.5,13.5 parent: 2 - - uid: 25353 + - uid: 25206 components: - type: Transform pos: -9.5,-30.5 parent: 2 - proto: Mattress entities: - - uid: 25354 + - uid: 25207 components: - type: Transform pos: 69.5,19.5 parent: 2 - proto: MedicalBed entities: - - uid: 25355 + - uid: 25208 components: - type: Transform pos: 32.5,-37.5 parent: 2 - - uid: 25356 + - uid: 25209 components: - type: Transform pos: 70.5,16.5 parent: 2 - - uid: 25357 + - uid: 25210 components: - type: Transform pos: 68.5,16.5 parent: 2 - - uid: 25358 + - uid: 25211 components: - type: Transform pos: 38.5,-67.5 parent: 2 - - uid: 25359 + - uid: 25212 components: - type: Transform pos: 42.5,-67.5 parent: 2 - - uid: 25360 + - uid: 25213 components: - type: Transform pos: 63.5,-4.5 parent: 2 - - uid: 25361 + - uid: 25214 components: - type: Transform pos: 36.5,-41.5 parent: 2 - - uid: 25362 + - uid: 25215 components: - type: Transform pos: 34.5,-37.5 parent: 2 - - uid: 25363 + - uid: 25216 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - uid: 25364 + - uid: 25217 components: - type: Transform pos: 38.5,-37.5 parent: 2 - - uid: 25365 + - uid: 25218 components: - type: Transform pos: 30.5,-52.5 parent: 2 - proto: MedicalScanner entities: - - uid: 25366 + - uid: 25219 components: - type: Transform pos: 10.5,-37.5 parent: 2 - proto: MedicalTechFab entities: - - uid: 25367 + - uid: 25220 components: - type: Transform pos: 28.5,-23.5 parent: 2 - proto: Medkit entities: - - uid: 25368 + - uid: 25221 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -194133,156 +194154,156 @@ entities: parent: 2 - proto: MedkitBruteFilled entities: - - uid: 25369 + - uid: 25222 components: - type: Transform pos: 28.497252,-25.883469 parent: 2 - - uid: 25370 + - uid: 25223 components: - type: Transform pos: 28.497252,-25.688663 parent: 2 - - uid: 25371 + - uid: 25224 components: - type: Transform pos: 60.678944,-5.763924 parent: 2 - - uid: 25372 + - uid: 25225 components: - type: Transform pos: 28.492884,-26.049799 parent: 2 - - uid: 39487 + - uid: 39314 components: - type: Transform pos: -8.4065895,-3.576355 - parent: 38584 + parent: 38411 - proto: MedkitBurnFilled entities: - - uid: 25373 + - uid: 25226 components: - type: Transform pos: 61.667484,-5.7213755 parent: 2 - - uid: 25374 + - uid: 25227 components: - type: Transform pos: -63.42579,4.5084105 parent: 2 - - uid: 25375 + - uid: 25228 components: - type: Transform pos: 28.492886,-24.471674 parent: 2 - - uid: 25376 + - uid: 25229 components: - type: Transform pos: 28.479532,-24.696926 parent: 2 - - uid: 25377 + - uid: 25230 components: - type: Transform pos: 28.479532,-25.0157 parent: 2 - - uid: 25378 + - uid: 25231 components: - type: Transform pos: 69.40965,12.287214 parent: 2 - - uid: 25379 + - uid: 25232 components: - type: Transform pos: -58.513634,3.5297406 parent: 2 - type: Physics canCollide: False - - uid: 39488 + - uid: 39315 components: - type: Transform pos: -7.484714,-3.576355 - parent: 38584 + parent: 38411 - proto: MedkitCombatFilled entities: - - uid: 25380 + - uid: 25233 components: - type: Transform pos: 60.215004,-4.3548026 parent: 2 - - uid: 39489 + - uid: 39316 components: - type: Transform pos: -20.5,27.5 - parent: 38584 + parent: 38411 - proto: MedkitFilled entities: - - uid: 25381 + - uid: 25234 components: - type: Transform rot: 3.141592653589793 rad pos: 33.53191,26.566101 parent: 2 - - uid: 25382 + - uid: 25235 components: - type: Transform pos: 60.215675,-4.7851834 parent: 2 - - uid: 25383 + - uid: 25236 components: - type: Transform pos: 68.3671,12.308491 parent: 2 - - uid: 25384 + - uid: 25237 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 25385 + - uid: 25238 components: - type: Transform pos: 14.52385,-22.462849 parent: 2 - type: Physics canCollide: False - - uid: 25386 + - uid: 25239 components: - type: Transform pos: -5.50263,18.494661 parent: 2 - - uid: 25387 + - uid: 25240 components: - type: Transform pos: 23.182888,-42.310036 parent: 2 - - uid: 25388 + - uid: 25241 components: - type: Transform pos: 81.5,-20.5 parent: 2 - - uid: 25389 + - uid: 25242 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.354641,-44.521282 parent: 2 - - uid: 25390 + - uid: 25243 components: - type: Transform pos: 33.505825,42.528225 parent: 2 - - uid: 25391 + - uid: 25244 components: - type: Transform pos: 36.50758,-18.520462 parent: 2 - type: Physics canCollide: False - - uid: 25392 + - uid: 25245 components: - type: Transform pos: 3.5583289,-13.353186 parent: 2 - - uid: 25393 + - uid: 25246 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -194290,98 +194311,98 @@ entities: parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 25394 + - uid: 25247 components: - type: Transform pos: 60.21086,-5.763924 parent: 2 - - uid: 25395 + - uid: 25248 components: - type: Transform pos: 68.90039,12.308502 parent: 2 - - uid: 25396 + - uid: 25249 components: - type: Transform pos: 32.55548,-26.078274 parent: 2 - - uid: 25397 + - uid: 25250 components: - type: Transform pos: 32.55548,-25.79492 parent: 2 - - uid: 25398 + - uid: 25251 components: - type: Transform pos: 32.570004,-26.357931 parent: 2 - - uid: 25399 + - uid: 25252 components: - type: Transform pos: 4.558329,-13.337561 parent: 2 - - uid: 39490 + - uid: 39317 components: - type: Transform pos: -8.7034645,-3.607605 - parent: 38584 + parent: 38411 - proto: MedkitRadiationFilled entities: - - uid: 25400 + - uid: 25253 components: - type: Transform pos: -63.5,0.5 parent: 2 - - uid: 25401 + - uid: 25254 components: - type: Transform pos: 68.5,-4.5 parent: 2 - - uid: 39491 + - uid: 39318 components: - type: Transform pos: -8.6722145,-3.045105 - parent: 38584 + parent: 38411 - proto: MedkitToxinFilled entities: - - uid: 25402 + - uid: 25255 components: - type: Transform pos: 68.5,-2.5 parent: 2 - - uid: 25403 + - uid: 25256 components: - type: Transform pos: 32.55548,-24.92715 parent: 2 - - uid: 25404 + - uid: 25257 components: - type: Transform pos: 32.55548,-25.175085 parent: 2 - - uid: 25405 + - uid: 25258 components: - type: Transform pos: 61.13557,-5.7852044 parent: 2 - - uid: 25406 + - uid: 25259 components: - type: Transform pos: 32.57,-24.607931 parent: 2 - - uid: 25407 + - uid: 25260 components: - type: Transform pos: -24.596327,-43.40592 parent: 2 - - uid: 39492 + - uid: 39319 components: - type: Transform pos: -7.906589,-3.62323 - parent: 38584 + parent: 38411 - proto: Memorial entities: - - uid: 25408 + - uid: 25261 components: - type: MetaData desc: Монумент в честь победы над врагом! Павшие никогда не будут забыты... @@ -194391,14 +194412,14 @@ entities: parent: 2 - proto: MimanaSeeds entities: - - uid: 25409 + - uid: 25262 components: - type: Transform pos: -70.36416,-20.707722 parent: 2 - proto: MindShieldImplanter entities: - - uid: 25410 + - uid: 25263 components: - type: Transform rot: 3.141592653589793 rad @@ -194406,145 +194427,145 @@ entities: parent: 2 - proto: MinimoogInstrument entities: - - uid: 25411 + - uid: 25264 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-55.5 parent: 2 - - uid: 25412 + - uid: 25265 components: - type: Transform pos: 70.5,-46.5 parent: 2 - proto: MiningDrill entities: - - uid: 39493 + - uid: 39320 components: - type: Transform pos: 13.5,32.5 - parent: 38584 + parent: 38411 - proto: Mirror entities: - - uid: 25413 + - uid: 25266 components: - type: Transform pos: -11.5,55.5 parent: 2 - - uid: 25414 + - uid: 25267 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-60.5 parent: 2 - - uid: 25415 + - uid: 25268 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 25416 + - uid: 25269 components: - type: Transform pos: -5.5,55.5 parent: 2 - - uid: 25417 + - uid: 25270 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 - - uid: 25418 + - uid: 25271 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-16.5 parent: 2 - - uid: 25419 + - uid: 25272 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,45.5 parent: 2 - - uid: 25420 + - uid: 25273 components: - type: Transform pos: 39.5,-25.5 parent: 2 - - uid: 25421 + - uid: 25274 components: - type: Transform pos: -5.5,35.5 parent: 2 - - uid: 25422 + - uid: 25275 components: - type: Transform pos: 25.5,-50.5 parent: 2 - - uid: 25423 + - uid: 25276 components: - type: Transform pos: -5.5,29.5 parent: 2 - - uid: 25424 + - uid: 25277 components: - type: Transform pos: 30.5,-36.5 parent: 2 - - uid: 25425 + - uid: 25278 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-51.5 parent: 2 - - uid: 25426 + - uid: 25279 components: - type: Transform pos: 13.5,6.5 parent: 2 - proto: MobCatCake entities: - - uid: 25427 + - uid: 25280 components: - type: Transform pos: -57.435246,-48.499123 parent: 2 - proto: ModularGrenade entities: - - uid: 25428 + - uid: 25281 components: - type: Transform pos: 2.4978142,-31.385086 parent: 2 - type: Physics canCollide: False - - uid: 25429 + - uid: 25282 components: - type: Transform pos: 2.4978142,-31.385086 parent: 2 - type: Physics canCollide: False - - uid: 25430 + - uid: 25283 components: - type: Transform pos: 2.4978142,-31.385086 parent: 2 - type: Physics canCollide: False - - uid: 25431 + - uid: 25284 components: - type: Transform pos: 2.4978142,-31.385086 parent: 2 - type: Physics canCollide: False - - uid: 25432 + - uid: 25285 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.621467,-47.40556 parent: 2 - - uid: 25433 + - uid: 25286 components: - type: Transform pos: 2.4978142,-31.385086 @@ -194553,100 +194574,100 @@ entities: canCollide: False - proto: MopBucket entities: - - uid: 25434 + - uid: 25287 components: - type: Transform pos: 22.477804,-17.365536 parent: 2 - proto: MopBucketFull entities: - - uid: 25435 + - uid: 25288 components: - type: Transform pos: 91.50001,7.5 parent: 2 - - uid: 25436 + - uid: 25289 components: - type: Transform pos: -7.5,46.5 parent: 2 - - uid: 25437 + - uid: 25290 components: - type: Transform pos: -77.5,-29.5 parent: 2 - - uid: 25438 + - uid: 25291 components: - type: Transform pos: -40.5,-61.5 parent: 2 - - uid: 39494 + - uid: 39321 components: - type: Transform pos: -13.5,13.5 - parent: 38584 + parent: 38411 - proto: MopItem entities: - - uid: 25439 + - uid: 25292 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 91.478065,7.477974 parent: 2 - - uid: 25440 + - uid: 25293 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.56199,-62.480965 parent: 2 - - uid: 25441 + - uid: 25294 components: - type: Transform pos: -7.4661264,46.474117 parent: 2 - - uid: 25442 + - uid: 25295 components: - type: Transform pos: 3.517602,-48.53627 parent: 2 - - uid: 25443 + - uid: 25296 components: - type: Transform pos: 0.16766292,54.493546 parent: 2 - - uid: 25444 + - uid: 25297 components: - type: Transform pos: 0.53458077,54.493546 parent: 2 - - uid: 25445 + - uid: 25298 components: - type: Transform pos: -77.562874,-29.50979 parent: 2 - type: Physics canCollide: False - - uid: 25446 + - uid: 25299 components: - type: Transform pos: 22.477804,-17.490536 parent: 2 - type: Physics canCollide: False - - uid: 39495 + - uid: 39322 components: - type: Transform pos: -13.487375,13.4696045 - parent: 38584 + parent: 38411 - proto: Morgue entities: - - uid: 25447 + - uid: 25300 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-51.5 parent: 2 - - uid: 25448 + - uid: 25301 components: - type: Transform pos: 9.5,-48.5 @@ -194669,13 +194690,13 @@ entities: - 0 - 0 - 0 - - uid: 25449 + - uid: 25302 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-61.5 parent: 2 - - uid: 25450 + - uid: 25303 components: - type: Transform rot: 1.5707963267948966 rad @@ -194699,7 +194720,7 @@ entities: - 0 - 0 - 0 - - uid: 25451 + - uid: 25304 components: - type: Transform rot: 1.5707963267948966 rad @@ -194723,7 +194744,7 @@ entities: - 0 - 0 - 0 - - uid: 25452 + - uid: 25305 components: - type: Transform rot: 1.5707963267948966 rad @@ -194747,19 +194768,19 @@ entities: - 0 - 0 - 0 - - uid: 25453 + - uid: 25306 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-61.5 parent: 2 - - uid: 25454 + - uid: 25307 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-61.5 parent: 2 - - uid: 25455 + - uid: 25308 components: - type: Transform rot: 1.5707963267948966 rad @@ -194783,7 +194804,7 @@ entities: - 0 - 0 - 0 - - uid: 25456 + - uid: 25309 components: - type: Transform rot: 1.5707963267948966 rad @@ -194807,7 +194828,7 @@ entities: - 0 - 0 - 0 - - uid: 25457 + - uid: 25310 components: - type: Transform pos: 8.5,-48.5 @@ -194830,7 +194851,7 @@ entities: - 0 - 0 - 0 - - uid: 25458 + - uid: 25311 components: - type: Transform rot: 3.141592653589793 rad @@ -194854,19 +194875,19 @@ entities: - 0 - 0 - 0 - - uid: 25459 + - uid: 25312 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-61.5 parent: 2 - - uid: 25460 + - uid: 25313 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-61.5 parent: 2 - - uid: 25461 + - uid: 25314 components: - type: Transform rot: 1.5707963267948966 rad @@ -194890,7 +194911,7 @@ entities: - 0 - 0 - 0 - - uid: 25462 + - uid: 25315 components: - type: Transform pos: 10.5,-48.5 @@ -194913,7 +194934,7 @@ entities: - 0 - 0 - 0 - - uid: 25463 + - uid: 25316 components: - type: Transform rot: 3.141592653589793 rad @@ -194937,7 +194958,7 @@ entities: - 0 - 0 - 0 - - uid: 25464 + - uid: 25317 components: - type: Transform rot: 3.141592653589793 rad @@ -194961,7 +194982,7 @@ entities: - 0 - 0 - 0 - - uid: 25465 + - uid: 25318 components: - type: Transform rot: 3.141592653589793 rad @@ -194985,7 +195006,7 @@ entities: - 0 - 0 - 0 - - uid: 25466 + - uid: 25319 components: - type: Transform rot: 1.5707963267948966 rad @@ -195009,7 +195030,7 @@ entities: - 0 - 0 - 0 - - uid: 25467 + - uid: 25320 components: - type: Transform rot: 3.141592653589793 rad @@ -195033,12 +195054,12 @@ entities: - 0 - 0 - 0 - - uid: 39496 + - uid: 39323 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-4.5 - parent: 38584 + parent: 38411 - type: EntityStorage air: volume: 200 @@ -195057,35 +195078,35 @@ entities: - 0 - 0 - 0 - - uid: 39497 + - uid: 39324 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-5.5 - parent: 38584 + parent: 38411 - proto: MousetrapArmed entities: - - uid: 25468 + - uid: 25321 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.503742,-63.27595 parent: 2 - type: StepTriggerActive - - uid: 25469 + - uid: 25322 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.561108,47.6237 parent: 2 - - uid: 25470 + - uid: 25323 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5169544,33.6237 parent: 2 - type: StepTriggerActive - - uid: 25471 + - uid: 25324 components: - type: Transform rot: 1.5707963267948966 rad @@ -195093,61 +195114,61 @@ entities: parent: 2 - proto: Multitool entities: - - uid: 25473 + - uid: 25326 components: - type: Transform - parent: 25472 + parent: 25325 - type: Physics canCollide: False - - uid: 25474 + - uid: 25327 components: - type: Transform pos: 50.207417,5.437244 parent: 2 - - uid: 25475 + - uid: 25328 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 25476 + - uid: 25329 components: - type: Transform pos: -9.5,-30.5 parent: 2 - - uid: 25477 + - uid: 25330 components: - type: Transform pos: -5.53388,17.811007 parent: 2 - - uid: 25478 + - uid: 25331 components: - type: Transform pos: -56.627308,-13.403177 parent: 2 - type: Physics canCollide: False - - uid: 25479 + - uid: 25332 components: - type: Transform pos: -26.474976,-47.36569 parent: 2 - - uid: 25480 + - uid: 25333 components: - type: Transform pos: -74.57158,-8.273829 parent: 2 - - uid: 25481 + - uid: 25334 components: - type: Transform pos: -37.6697,8.6269455 parent: 2 - - uid: 25482 + - uid: 25335 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.467197,-41.43791 parent: 2 - - uid: 25483 + - uid: 25336 components: - type: Transform pos: -61.506416,13.606666 @@ -195156,14 +195177,14 @@ entities: canCollide: False - proto: MusicalLungInstrument entities: - - uid: 25484 + - uid: 25337 components: - type: Transform pos: -6.5073404,53.184387 parent: 2 - proto: MusicBoxInstrument entities: - - uid: 25485 + - uid: 25338 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -195171,7 +195192,7 @@ entities: parent: 2 - proto: Nettle entities: - - uid: 25486 + - uid: 25339 components: - type: MetaData desc: Удобный веник из свежей берёзы. @@ -195179,7 +195200,7 @@ entities: - type: Transform pos: -67.42256,58.902588 parent: 2 - - uid: 25487 + - uid: 25340 components: - type: MetaData desc: Удобный веник из свежей берёзы. @@ -195190,116 +195211,116 @@ entities: parent: 2 - proto: NetworkConfigurator entities: - - uid: 25488 + - uid: 25341 components: - type: Transform pos: -25.317003,-43.32779 parent: 2 - proto: NitrogenCanister entities: - - uid: 25489 + - uid: 25342 components: - type: Transform pos: -21.5,-60.5 parent: 2 - - uid: 25490 + - uid: 25343 components: - type: Transform pos: -43.5,-43.5 parent: 2 - - uid: 25491 + - uid: 25344 components: - type: Transform pos: 63.5,13.5 parent: 2 - - uid: 25492 + - uid: 25345 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 25493 + - uid: 25346 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 25494 + - uid: 25347 components: - type: Transform pos: 19.5,28.5 parent: 2 - - uid: 25495 + - uid: 25348 components: - type: Transform pos: 36.5,31.5 parent: 2 - - uid: 25496 + - uid: 25349 components: - type: Transform pos: -120.5,17.5 parent: 2 - - uid: 25497 + - uid: 25350 components: - type: Transform pos: 91.5,26.5 parent: 2 - - uid: 25498 + - uid: 25351 components: - type: Transform pos: -36.5,-51.5 parent: 2 - - uid: 25499 + - uid: 25352 components: - type: Transform pos: -70.49999,37.5 parent: 2 - - uid: 25500 + - uid: 25353 components: - type: Transform pos: -23.5,25.500002 parent: 2 - - uid: 25501 + - uid: 25354 components: - type: Transform pos: -7.5,-11.5 parent: 2 - - uid: 39498 + - uid: 39325 components: - type: Transform pos: 16.5,2.5 - parent: 38584 + parent: 38411 - proto: NitrogenTankFilled entities: - - uid: 14836 + - uid: 14776 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14857 + - uid: 14798 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25502 + - uid: 25355 components: - type: Transform pos: -77.649734,-18.332254 parent: 2 - - uid: 25505 + - uid: 25356 components: - type: Transform pos: -77.516975,-18.553493 parent: 2 - - uid: 40934 + - uid: 25357 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5477,-27.74824 parent: 2 - - uid: 40935 + - uid: 25358 components: - type: Transform rot: 3.141592653589793 rad @@ -195307,31 +195328,31 @@ entities: parent: 2 - proto: NitrousOxideCanister entities: - - uid: 25506 + - uid: 25359 components: - type: Transform pos: -48.5,25.5 parent: 2 - - uid: 25507 + - uid: 25360 components: - type: Transform pos: 78.5,23.5 parent: 2 - - uid: 25508 + - uid: 25361 components: - type: Transform pos: -48.5,24.5 parent: 2 - proto: NitrousOxideTankFilled entities: - - uid: 25509 + - uid: 25362 components: - type: Transform pos: 33.549213,-46.450466 parent: 2 - proto: NocturineChemistryBottle entities: - - uid: 25510 + - uid: 25363 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -195339,52 +195360,52 @@ entities: parent: 2 - proto: NodeScanner entities: - - uid: 25511 + - uid: 25364 components: - type: Transform pos: -9.606294,-31.675497 parent: 2 - - uid: 25512 + - uid: 25365 components: - type: Transform pos: -25.606216,-28.370153 parent: 2 - proto: NoticeBoard entities: - - uid: 25513 + - uid: 25366 components: - type: Transform pos: -65.5,-44.5 parent: 2 - - uid: 25514 + - uid: 25367 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,31.5 parent: 2 - - uid: 25515 + - uid: 25368 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,2.5 parent: 2 - - uid: 25516 + - uid: 25369 components: - type: Transform pos: 44.5,6.5 parent: 2 - - uid: 25517 + - uid: 25370 components: - type: Transform pos: 10.5,-32.5 parent: 2 - - uid: 25518 + - uid: 25371 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - - uid: 25519 + - uid: 25372 components: - type: Transform rot: -1.5707963267948966 rad @@ -195392,7 +195413,7 @@ entities: parent: 2 - proto: NTFlag entities: - - uid: 25520 + - uid: 25373 components: - type: Transform rot: -1.5707963267948966 rad @@ -195400,7 +195421,7 @@ entities: parent: 2 - proto: NuclearBomb entities: - - uid: 25521 + - uid: 25374 components: - type: Transform rot: -1.5707963267948966 rad @@ -195408,7 +195429,7 @@ entities: parent: 2 - proto: NuclearBombKeg entities: - - uid: 25522 + - uid: 25375 components: - type: MetaData name: дельта-тян @@ -195417,37 +195438,37 @@ entities: parent: 2 - proto: NukeDiskFake entities: - - uid: 25523 + - uid: 25376 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 9.230305,72.39888 parent: 2 - - uid: 39499 + - uid: 39326 components: - type: Transform pos: 8.5,10.5 - parent: 38584 + parent: 38411 - proto: OcarinaInstrument entities: - - uid: 25524 + - uid: 25377 components: - type: Transform pos: -6.4073434,52.61495 parent: 2 - proto: Ointment entities: - - uid: 25525 + - uid: 25378 components: - type: Transform pos: -31.3629,-42.28948 parent: 2 - - uid: 25526 + - uid: 25379 components: - type: Transform pos: 26.607332,-24.483286 parent: 2 - - uid: 25527 + - uid: 25380 components: - type: Transform rot: 1.5707963267948966 rad @@ -195455,127 +195476,127 @@ entities: parent: 2 - proto: OperatingTable entities: - - uid: 25528 + - uid: 25381 components: - type: Transform pos: -0.5,-13.5 parent: 2 - - uid: 25529 + - uid: 25382 components: - type: Transform pos: 6.5,-49.5 parent: 2 - - uid: 25530 + - uid: 25383 components: - type: Transform pos: 33.5,-51.5 parent: 2 - - uid: 25531 + - uid: 25384 components: - type: Transform pos: 33.5,-47.5 parent: 2 - - uid: 25532 + - uid: 25385 components: - type: Transform pos: 46.5,-37.5 parent: 2 - proto: OreBag entities: - - uid: 25533 + - uid: 25386 components: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 39500 + - uid: 39327 components: - type: Transform pos: 1.6969376,7.2251587 - parent: 38584 - - uid: 39501 + parent: 38411 + - uid: 39328 components: - type: Transform pos: -20.038795,15.526978 - parent: 38584 - - uid: 39502 + parent: 38411 + - uid: 39329 components: - type: Transform pos: 1.3219376,7.1314087 - parent: 38584 - - uid: 39503 + parent: 38411 + - uid: 39330 components: - type: Transform pos: 1.5406876,7.5689087 - parent: 38584 - - uid: 39504 + parent: 38411 + - uid: 39331 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.43044233,2.6262207 - parent: 38584 + parent: 38411 - proto: OreBox entities: - - uid: 25534 + - uid: 25387 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 52.499996,-47.5 parent: 2 - - uid: 39505 + - uid: 39332 components: - type: Transform pos: -4.5,2.5 - parent: 38584 - - uid: 39506 + parent: 38411 + - uid: 39333 components: - type: Transform pos: -6.5,3.5 - parent: 38584 - - uid: 39507 + parent: 38411 + - uid: 39334 components: - type: Transform pos: -8.5,14.5 - parent: 38584 - - uid: 39508 + parent: 38411 + - uid: 39335 components: - type: Transform pos: -8.5,15.5 - parent: 38584 - - uid: 39509 + parent: 38411 + - uid: 39336 components: - type: Transform pos: 0.5,16.5 - parent: 38584 - - uid: 39510 + parent: 38411 + - uid: 39337 components: - type: Transform pos: -1.5,3.5 - parent: 38584 - - uid: 39511 + parent: 38411 + - uid: 39338 components: - type: Transform pos: -5.5,1.5 - parent: 38584 - - uid: 39512 + parent: 38411 + - uid: 39339 components: - type: Transform pos: -2.5,1.5 - parent: 38584 + parent: 38411 - proto: OreProcessor entities: - - uid: 25535 + - uid: 25388 components: - type: Transform pos: 34.5,32.5 parent: 2 - - uid: 39513 + - uid: 39340 components: - type: Transform pos: 0.5,3.5 - parent: 38584 + parent: 38411 - proto: OrganDionaStomach entities: - - uid: 25536 + - uid: 25389 components: - type: Transform rot: -1.5707963267948966 rad @@ -195583,144 +195604,144 @@ entities: parent: 2 - proto: OrganHumanKidneys entities: - - uid: 15619 + - uid: 15602 components: - type: Transform - parent: 15618 + parent: 15601 - type: Physics canCollide: False - type: InsideEntityStorage - proto: OxygenCanister entities: - - uid: 25537 + - uid: 25390 components: - type: Transform pos: -10.5,-59.5 parent: 2 - - uid: 25538 + - uid: 25391 components: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 25539 + - uid: 25392 components: - type: Transform pos: 32.5,28.5 parent: 2 - - uid: 25540 + - uid: 25393 components: - type: Transform pos: -29.5,-50.5 parent: 2 - - uid: 25541 + - uid: 25394 components: - type: Transform pos: -76.5,-27.5 parent: 2 - - uid: 25542 + - uid: 25395 components: - type: Transform pos: -41.5,-15.5 parent: 2 - - uid: 25543 + - uid: 25396 components: - type: Transform pos: -47.5,-17.5 parent: 2 - - uid: 25544 + - uid: 25397 components: - type: Transform pos: 19.5,27.5 parent: 2 - - uid: 25545 + - uid: 25398 components: - type: Transform pos: -31.5,63.500004 parent: 2 - - uid: 25546 + - uid: 25399 components: - type: Transform pos: -45.5,-21.5 parent: 2 - - uid: 25547 + - uid: 25400 components: - type: Transform pos: 36.5,27.5 parent: 2 - - uid: 25548 + - uid: 25401 components: - type: Transform pos: -29.5,-49.5 parent: 2 - - uid: 25549 + - uid: 25402 components: - type: Transform pos: -122.5,17.5 parent: 2 - - uid: 25550 + - uid: 25403 components: - type: Transform pos: 91.5,25.5 parent: 2 - - uid: 25551 + - uid: 25404 components: - type: Transform pos: -38.5,-51.5 parent: 2 - - uid: 25552 + - uid: 25405 components: - type: Transform pos: 11.5,90.5 parent: 2 - - uid: 25553 + - uid: 25406 components: - type: Transform pos: -70.50001,33.5 parent: 2 - - uid: 25554 + - uid: 25407 components: - type: Transform pos: -47.5,-35.5 parent: 2 - - uid: 25555 + - uid: 25408 components: - type: Transform pos: -38.5,43.5 parent: 2 - - uid: 25556 + - uid: 25409 components: - type: Transform pos: -7.5,-12.5 parent: 2 - - uid: 39514 + - uid: 39341 components: - type: Transform pos: -18.5,36.5 - parent: 38584 - - uid: 39515 + parent: 38411 + - uid: 39342 components: - type: Transform pos: 16.5,4.5 - parent: 38584 + parent: 38411 - proto: OxygenTankFilled entities: - - uid: 14837 + - uid: 14777 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14858 + - uid: 14799 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PaintingRedBlueYellow entities: - - uid: 25557 + - uid: 25410 components: - type: Transform rot: 3.141592653589793 rad @@ -195728,7 +195749,7 @@ entities: parent: 2 - proto: PaintingTheGreatWave entities: - - uid: 25558 + - uid: 25411 components: - type: Transform pos: -54.5,-47.5 @@ -196082,270 +196103,270 @@ entities: containers: solution@food: !type:ContainerSlot ent: 10 - - uid: 1736 + - uid: 1740 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1737 + - uid: 1741 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1738 + - uid: 1742 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1739 + - uid: 1743 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1740 + - uid: 1744 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1741 + - uid: 1745 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1742 + - uid: 1746 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1743 + - uid: 1747 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1744 + - uid: 1748 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 1745 + - uid: 1749 components: - type: Transform - parent: 1731 + parent: 1735 - type: Physics canCollide: False - - uid: 14921 + - uid: 14862 components: - type: Transform - parent: 14916 + parent: 14857 - type: Paper content: "Станция погрязла в грязи преступности.. \r\nСлишком много смертей невинных, но ничего. \r\nМой револьвер - путь к очищению. " - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15707 + - uid: 15690 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15708 + - uid: 15691 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15709 + - uid: 15692 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15710 + - uid: 15693 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15711 + - uid: 15694 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15712 + - uid: 15695 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15713 + - uid: 15696 components: - type: Transform - parent: 15705 + parent: 15688 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25559 + - uid: 25412 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.491467,-2.888534 parent: 2 - - uid: 25560 + - uid: 25413 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -58.601784,-43.373722 parent: 2 - - uid: 25561 + - uid: 25414 components: - type: Transform rot: -1.5707953085339508 rad pos: 81.326546,5.56637 parent: 2 - - uid: 25562 + - uid: 25415 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 88.51772,7.6123247 parent: 2 - - uid: 25563 + - uid: 25416 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.809055,-35.313763 parent: 2 - - uid: 25564 + - uid: 25417 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.725723,-37.42834 parent: 2 - - uid: 25565 + - uid: 25418 components: - type: Transform pos: 54.559055,-38.40751 parent: 2 - - uid: 25566 + - uid: 25419 components: - type: Transform rot: 3.141592653589793 rad pos: 54.600723,-34.45959 parent: 2 - - uid: 25567 + - uid: 25420 components: - type: Transform pos: -17.473228,-41.420036 parent: 2 - - uid: 25569 + - uid: 25422 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25570 + - uid: 25423 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25571 + - uid: 25424 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25572 + - uid: 25425 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25573 + - uid: 25426 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25574 + - uid: 25427 components: - type: Transform - parent: 25568 + parent: 25421 - type: Physics canCollide: False - - uid: 25575 + - uid: 25428 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.579336,-40.439713 parent: 2 - - uid: 25576 + - uid: 25429 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.422057,-49.2071 parent: 2 - - uid: 25577 + - uid: 25430 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.607666,-16.196762 parent: 2 - - uid: 25578 + - uid: 25431 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.538372,9.353551 parent: 2 - - uid: 25579 + - uid: 25432 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.59338,0.41316766 parent: 2 - - uid: 25580 + - uid: 25433 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.298086,-40.689713 parent: 2 - - uid: 25581 + - uid: 25434 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.332867,-7.728602 parent: 2 - - uid: 25582 + - uid: 25435 components: - type: Transform pos: -20.435146,-43.307297 parent: 2 - - uid: 25583 + - uid: 25436 components: - type: Transform pos: -20.528896,-43.192635 parent: 2 - - uid: 25584 + - uid: 25437 components: - type: Transform pos: -20.622646,-43.119667 parent: 2 - - uid: 25585 + - uid: 25438 components: - type: Transform rot: 6.283185307179586 rad @@ -196354,7 +196375,7 @@ entities: - type: Paper content: > ОНО... - - uid: 25586 + - uid: 25439 components: - type: Transform rot: 6.283185307179586 rad @@ -196363,7 +196384,7 @@ entities: - type: Paper content: > оно на свободе! - - uid: 25587 + - uid: 25440 components: - type: Transform rot: 6.283185307179586 rad @@ -196372,331 +196393,331 @@ entities: - type: Paper content: > Экмперемент в̵͉̘̅Ь̸̨̖̈̈́о̸͉͆|̶̨̫̿̊ #655 - - uid: 25588 + - uid: 25441 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.467596,-3.3337493 parent: 2 - - uid: 25589 + - uid: 25442 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5412,-7.8952684 parent: 2 - - uid: 25590 + - uid: 25443 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.496994,1.136191 parent: 2 - - uid: 25591 + - uid: 25444 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.560791,-16.040512 parent: 2 - - uid: 25592 + - uid: 25445 components: - type: Transform pos: 3.4307036,-60.35931 parent: 2 - - uid: 25593 + - uid: 25446 components: - type: Transform pos: 3.4932036,-60.406185 parent: 2 - - uid: 25594 + - uid: 25447 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.44807,-0.6344657 parent: 2 - - uid: 25595 + - uid: 25448 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.640255,0.35066766 parent: 2 - - uid: 25596 + - uid: 25449 components: - type: Transform rot: 3.141592653589793 rad pos: 11.466052,-52.343544 parent: 2 - - uid: 25597 + - uid: 25450 components: - type: Transform pos: 3.3682036,-60.26556 parent: 2 - - uid: 25598 + - uid: 25451 components: - type: Transform pos: -51.534542,12.58557 parent: 2 - type: Physics canCollide: False - - uid: 25599 + - uid: 25452 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.514471,-3.3962493 parent: 2 - - uid: 25600 + - uid: 25453 components: - type: Transform pos: -51.409542,12.58557 parent: 2 - type: Physics canCollide: False - - uid: 25601 + - uid: 25454 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.344963,-40.299088 parent: 2 - - uid: 25602 + - uid: 25455 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.598495,-1.6193767 parent: 2 - - uid: 25603 + - uid: 25456 components: - type: Transform pos: -51.690792,12.58557 parent: 2 - type: Physics canCollide: False - - uid: 25604 + - uid: 25457 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.329336,-40.455338 parent: 2 - - uid: 25605 + - uid: 25458 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.548086,-40.595963 parent: 2 - - uid: 25606 + - uid: 25459 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.394325,-37.419067 parent: 2 - - uid: 25607 + - uid: 25460 components: - type: Transform pos: -26.638914,-7.6800103 parent: 2 - - uid: 25608 + - uid: 25461 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.513914,-7.8466763 parent: 2 - - uid: 25609 + - uid: 25462 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.458359,-7.9577875 parent: 2 - - uid: 25610 + - uid: 25463 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.428997,9.384801 parent: 2 - - uid: 25611 + - uid: 25464 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.491495,9.306676 parent: 2 - - uid: 25612 + - uid: 25465 components: - type: Transform pos: -4.7436075,45.570145 parent: 2 - - uid: 25613 + - uid: 25466 components: - type: Transform pos: -4.6186075,45.71077 parent: 2 - - uid: 25614 + - uid: 25467 components: - type: Transform pos: -4.3998575,45.67952 parent: 2 - - uid: 25615 + - uid: 25468 components: - type: Transform pos: -4.4779825,45.507645 parent: 2 - - uid: 25616 + - uid: 25469 components: - type: Transform pos: -4.6029825,45.445145 parent: 2 - - uid: 25617 + - uid: 25470 components: - type: Transform pos: -4.6186075,45.42952 parent: 2 - - uid: 25618 + - uid: 25471 components: - type: Transform pos: 19.616335,-27.48899 parent: 2 - - uid: 25619 + - uid: 25472 components: - type: Transform pos: 19.616335,-27.48899 parent: 2 - - uid: 25620 + - uid: 25473 components: - type: Transform pos: 19.616335,-27.48899 parent: 2 - - uid: 25621 + - uid: 25474 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.340981,-58.260864 parent: 2 - - uid: 25622 + - uid: 25475 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.512856,-58.15149 parent: 2 - - uid: 25623 + - uid: 25476 components: - type: Transform pos: -17.632225,-41.50565 parent: 2 - - uid: 25624 + - uid: 25477 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.63197,-35.449177 parent: 2 - - uid: 25625 + - uid: 25478 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.236137,-35.720013 parent: 2 - - uid: 25626 + - uid: 25479 components: - type: Transform pos: 53.309055,-37.011677 parent: 2 - - uid: 25627 + - uid: 25480 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.66322,-36.35543 parent: 2 - - uid: 25628 + - uid: 25481 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.381973,-37.209595 parent: 2 - - uid: 25629 + - uid: 25482 components: - type: Transform rot: -1.5707953085339508 rad pos: 89.48647,4.7216983 parent: 2 - - uid: 25630 + - uid: 25483 components: - type: Transform rot: -1.5707953085339508 rad pos: 88.5646,7.5654497 parent: 2 - - uid: 25631 + - uid: 25484 components: - type: Transform rot: 1.5707973450558423 rad pos: -62.548584,-36.53318 parent: 2 - - uid: 25632 + - uid: 25485 components: - type: Transform rot: -1.5707953085339508 rad pos: -67.861084,-34.439426 parent: 2 - - uid: 25633 + - uid: 25486 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 82.451546,5.6132445 parent: 2 - - uid: 25634 + - uid: 25487 components: - type: Transform rot: -1.5707953085339508 rad pos: -27.556807,0.63810754 parent: 2 - - uid: 25635 + - uid: 25488 components: - type: Transform rot: 1.5707973450558423 rad pos: -27.291182,0.60685766 parent: 2 - - uid: 25636 + - uid: 25489 components: - type: Transform rot: 3.141593671850739 rad pos: 95.86081,12.546649 parent: 2 - - uid: 25637 + - uid: 25490 components: - type: Transform rot: 3.141593671850739 rad pos: 96.563934,12.671649 parent: 2 - - uid: 25638 + - uid: 25491 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 79.7637,-1.3353615 parent: 2 - - uid: 25639 + - uid: 25492 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.0137,-1.3978615 parent: 2 - - uid: 25640 + - uid: 25493 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 83.8262,-1.3041124 parent: 2 - - uid: 25641 + - uid: 25494 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 84.10745,-1.4603624 parent: 2 - - uid: 25642 + - uid: 25495 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 87.87308,-1.2884884 parent: 2 - - uid: 25643 + - uid: 25496 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 88.18558,-1.4603636 parent: 2 - - uid: 25644 + - uid: 25497 components: - type: Transform rot: -1.5707963267948966 rad @@ -196738,95 +196759,147 @@ entities: [italic]28.05.3024[/italic] Кажется меня начинают в чём-то подозревать.. Их смущает что я постоянно трусь у пермы. Оставлю свои вещи здесь. Блин, кажется глава зовёт.. потом допишу отчёт. - - uid: 25645 + - uid: 25498 components: - type: Transform rot: 3.141593671850739 rad pos: -70.4392,-36.70505 parent: 2 - - uid: 25646 + - uid: 25499 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -51.228695,-35.401863 parent: 2 - - uid: 25647 + - uid: 25500 components: - type: Transform pos: -51.01004,-35.338703 parent: 2 - - uid: 25648 + - uid: 25501 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -58.30491,-43.498722 parent: 2 - - uid: 25649 + - uid: 25502 components: - type: Transform pos: 56.37655,25.567564 parent: 2 - - uid: 25650 + - uid: 25503 components: - type: Transform pos: 56.5953,25.614439 parent: 2 - - uid: 25651 + - uid: 25504 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.528156,-2.5399623 parent: 2 - - uid: 25652 + - uid: 25505 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.619884,-2.7050753 parent: 2 - - uid: 25653 + - uid: 25506 components: - type: Transform rot: 3.141592653589793 rad pos: 25.592388,21.552462 parent: 2 - - uid: 25654 + - uid: 25507 components: - type: Transform rot: 3.141592653589793 rad pos: 25.764263,21.61496 parent: 2 - - uid: 25655 + - uid: 25508 components: - type: Transform rot: 3.141592653589793 rad pos: 25.983013,21.48996 parent: 2 - - uid: 39516 + - uid: 38306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.448128,-38.384327 + parent: 2 + - type: Paper + stampState: paper_stamp-qm + stampedBy: + - stampedColor: '#A23E3EFF' + stampedName: stamp-component-stamped-name-qm + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold] Delta-Station МЕД-СНБ[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + ЗАКАЗ НА ЗАКУПКУ РЕСУРСОВ, СНАРЯЖЕНИЯ + ============================================= + + Время от начала смены и дата: + + 11.07.3024 + + Составитель документа: + + Евгения Акишина + + Должность составителя: + + Химик + + Перечень товаров для заказа: + + Резервуар с водой. + + Место доставки товара: + + Медицинский отдел. + + Причина: + + Нехватка воды. + + ============================================= + [italic]Место для печатей[/italic] + - uid: 39343 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.413131,-3.0951538 - parent: 38584 - - uid: 39517 + parent: 38411 + - uid: 39344 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.288131,-3.0795288 - parent: 38584 - - uid: 39518 + parent: 38411 + - uid: 39345 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.607052,33.54294 - parent: 38584 - - uid: 39519 + parent: 38411 + - uid: 39346 components: - type: MetaData name: предсмертная записка - type: Transform rot: 3.141592653589793 rad pos: 13.269722,19.279083 - parent: 38584 + parent: 38411 - type: Paper content: >2- @@ -196837,118 +196910,118 @@ entities: [italic]Кто-бы мог подумать, что листок бумаги и ручка будет последним, что мои руки будут держать прежде, чем я умру. К сожалению, воздух практически закончился, и описать всё, что произошло со мной, я не смогу. - Моё имя - Йонас Андор. Я командир 17-го разведывательного звена, выполняющий особое задание по проникновению в тыл врага. К сожалению, моя группа вступила в неравный бой с теми, кого мы должны были обойти. До последних сил надеялся, что моё подбитое корыто сможет дотянуть до ближайшей базы, но у проклятого астероида, видимо, были свои планы на меня. + Моё имя - Йонас Андор. Я командир 17-го разведывательного звена, выполняющий особое задание по проникновению в тыл врага. К сожалению, моя группа вступила в неравный бой с теми, кого мы должны были обойти. До последних сил надеялся, что моё подбитое корыто сможет дотянуть до ближайшей базы, но у проклятого астероида, видимо, были свои планы на меня. - Воздуха в моём баллоне вот вот не станет, по крайней мере, карп, который не позволяет мне даже выйти в космос, позаботится о моих останках. + Воздуха в моём баллоне вот вот не станет, по крайней мере, карп, который не позволяет мне даже выйти в космос, позаботится о моих останках. Я прожил достойную жизнь. Слава Синдикату![/italic] - - uid: 39520 + - uid: 39347 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.460006,-3.3764038 - parent: 38584 - - uid: 39521 + parent: 38411 + - uid: 39348 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.538131,-2.7982788 - parent: 38584 + parent: 38411 - proto: PaperBin10 entities: - - uid: 25568 + - uid: 25421 components: - type: Transform pos: -12.5,-1.5 parent: 2 - type: Bin items: - - 25569 - - 25570 - - 25571 - - 25572 - - 25573 - - 25574 + - 25422 + - 25423 + - 25424 + - 25425 + - 25426 + - 25427 - type: ContainerContainer containers: bin-container: !type:Container showEnts: False occludes: True ents: - - 25569 - - 25570 - - 25571 - - 25572 - - 25573 - - 25574 - - uid: 25656 + - 25422 + - 25423 + - 25424 + - 25425 + - 25426 + - 25427 + - uid: 25509 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,29.5 parent: 2 - - uid: 25657 + - uid: 25510 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,62.5 parent: 2 - - uid: 25658 + - uid: 25511 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 25659 + - uid: 25512 components: - type: Transform pos: -16.5,-40.5 parent: 2 - - uid: 25660 + - uid: 25513 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 25661 + - uid: 25514 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,23.5 parent: 2 - - uid: 25662 + - uid: 25515 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,19.5 parent: 2 - - uid: 25663 + - uid: 25516 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-47.5 parent: 2 - - uid: 25664 + - uid: 25517 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-51.5 parent: 2 - - uid: 25665 + - uid: 25518 components: - type: Transform pos: 21.5,-28.5 parent: 2 - - uid: 25666 + - uid: 25519 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 25667 + - uid: 25520 components: - type: Transform pos: 29.5,38.5 parent: 2 - - uid: 25668 + - uid: 25521 components: - type: Transform rot: -1.5707963267948966 rad @@ -196956,13 +197029,13 @@ entities: parent: 2 - proto: PaperBin20 entities: - - uid: 25669 + - uid: 25522 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-4.5 parent: 2 - - uid: 25670 + - uid: 25523 components: - type: Transform rot: -1.5707963267948966 rad @@ -196970,13 +197043,13 @@ entities: parent: 2 - proto: PaperBin5 entities: - - uid: 25671 + - uid: 25524 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -57.500004,-43.5 parent: 2 - - uid: 25672 + - uid: 25525 components: - type: Transform rot: 3.141592653589793 rad @@ -196984,24 +197057,24 @@ entities: parent: 2 - proto: PaperCaptainsThoughts entities: - - uid: 25673 + - uid: 25526 components: - type: Transform pos: 7.420329,1.4533973 parent: 2 - proto: PaperDoor entities: - - uid: 25674 + - uid: 25527 components: - type: Transform pos: -46.5,-45.5 parent: 2 - proto: PaperOffice entities: - - uid: 14901 + - uid: 14836 components: - type: Transform - parent: 14891 + parent: 14832 - type: Paper stampState: paper_stamp-centcom stampedBy: @@ -197037,7 +197110,7 @@ entities: [bold]Содержание обращения:[/bold] - Капитан, уведомляю вас, что ваша подписка на КосмоХаб в категории Горячие Вульпакинши была успешно продлена с вашего основного счёта. Нехватка средств на счету была компенсирована вычетом с баланса отдела Снабжения вашей станции. Операция окончательна и не может быть оспорена в соответствии с пользовательским соглашением от 30.01.2986. + Капитан, уведомляю вас, что ваша подписка на КосмоХаб в категории Горячие Вульпакинши была успешно продлена с вашего основного счёта. Нехватка средств на счету была компенсирована вычетом с баланса отдела Снабжения вашей станции. Операция окончательна и не может быть оспорена в соответствии с пользовательским соглашением от 30.01.2986. В случае возникновения вопросов - обратитесь непосредственно в бухгалтерию по коду RT1337. @@ -197047,7 +197120,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25675 + - uid: 25528 components: - type: Transform pos: 25.475117,67.40114 @@ -197090,22 +197163,22 @@ entities: ============================================= [italic]Место для печатей[/italic] - - uid: 25676 + - uid: 25529 components: - type: Transform rot: 3.141592653589793 rad pos: 55.425858,31.376373 parent: 2 - - uid: 25677 + - uid: 25530 components: - type: Transform rot: 3.141592653589793 rad pos: 55.535233,31.501373 parent: 2 - - uid: 25679 + - uid: 25532 components: - type: Transform - parent: 25678 + parent: 25531 - type: Paper stampState: paper_stamp-cmo stampedBy: @@ -197139,66 +197212,66 @@ entities: Все эти врачи работали вместе и помогали друг другу в трудные моменты. Они были настоящей командой профессионалов и всегда старались делать все, чтобы помочь своим пациентам. Благодаря этому, братья по врачебному делу справлялись со своим нелегким трудом на высшем уровне. - type: Physics canCollide: False - - uid: 25680 + - uid: 25533 components: - type: Transform pos: -36.374428,60.761806 parent: 2 - - uid: 25681 + - uid: 25534 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.950905,59.658222 parent: 2 - - uid: 25682 + - uid: 25535 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.54007,61.959106 parent: 2 - - uid: 25683 + - uid: 25536 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.381355,63.286507 parent: 2 - - uid: 25684 + - uid: 25537 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.522644,38.518795 parent: 2 - - uid: 25685 + - uid: 25538 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.417274,61.98857 parent: 2 - - uid: 25686 + - uid: 25539 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.098415,62.947308 parent: 2 - - uid: 25687 + - uid: 25540 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.48461,63.153763 parent: 2 - - uid: 25688 + - uid: 25541 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.686966,61.560875 parent: 2 - - uid: 25689 + - uid: 25542 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.535282,61.885326 parent: 2 - - uid: 25690 + - uid: 25543 components: - type: Transform rot: 3.141592653589793 rad @@ -197206,7 +197279,7 @@ entities: parent: 2 - proto: PaperRolling1 entities: - - uid: 25691 + - uid: 25544 components: - type: MetaData desc: Тонкий лист бумаги, который кто-то уже использовал. @@ -197216,54 +197289,54 @@ entities: parent: 2 - proto: PaperScrap entities: - - uid: 25692 + - uid: 25545 components: - type: Transform pos: 53.283215,-37.653236 parent: 2 - - uid: 25693 + - uid: 25546 components: - type: Transform pos: 55.545273,23.560537 parent: 2 - - uid: 25694 + - uid: 25547 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.89638,23.55645 parent: 2 - - uid: 39522 + - uid: 39349 components: - type: Transform rot: 3.141592653589793 rad pos: -11.53682,4.657074 - parent: 38584 - - uid: 39523 + parent: 38411 + - uid: 39350 components: - type: Transform rot: 3.141592653589793 rad pos: -11.458695,4.938324 - parent: 38584 + parent: 38411 - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 25695 + - uid: 25548 components: - type: Transform pos: 8.5,-1.5 parent: 2 - - uid: 25696 + - uid: 25549 components: - type: Transform pos: -75.5,-5.5 parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 25697 + - uid: 25550 components: - type: Transform pos: 7.5,-1.5 parent: 2 - - uid: 25698 + - uid: 25551 components: - type: Transform rot: -1.5707963267948966 rad @@ -197271,7 +197344,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 25699 + - uid: 25552 components: - type: Transform rot: -1.5707963267948966 rad @@ -197279,7 +197352,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 25700 + - uid: 25553 components: - type: Transform rot: -1.5707963267948966 rad @@ -197287,13 +197360,13 @@ entities: parent: 2 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 25701 + - uid: 25554 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 - - uid: 25702 + - uid: 25555 components: - type: Transform rot: -1.5707963267948966 rad @@ -197301,7 +197374,7 @@ entities: parent: 2 - proto: ParticleAcceleratorFuelChamberUnfinished entities: - - uid: 25703 + - uid: 25556 components: - type: Transform rot: -1.5707963267948966 rad @@ -197309,12 +197382,12 @@ entities: parent: 2 - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 25704 + - uid: 25557 components: - type: Transform pos: 14.5,-5.5 parent: 2 - - uid: 25705 + - uid: 25558 components: - type: Transform rot: -1.5707963267948966 rad @@ -197322,328 +197395,328 @@ entities: parent: 2 - proto: PartRodMetal entities: - - uid: 25706 + - uid: 25559 components: - type: Transform pos: -28.5,15.5 parent: 2 - - uid: 25707 + - uid: 25560 components: - type: Transform pos: 12.5,81.5 parent: 2 - - uid: 25708 + - uid: 25561 components: - type: Transform pos: 30.5,30.5 parent: 2 - - uid: 25709 + - uid: 25562 components: - type: Transform pos: 21.5,8.5 parent: 2 - proto: PartRodMetal1 entities: - - uid: 25710 + - uid: 25563 components: - type: Transform rot: 3.141593671850739 rad pos: 59.33862,-40.570953 parent: 2 - - uid: 25711 + - uid: 25564 components: - type: Transform pos: -25.351421,-29.692646 parent: 2 - - uid: 25712 + - uid: 25565 components: - type: Transform pos: -40.326496,-30.266003 parent: 2 - - uid: 25713 + - uid: 25566 components: - type: Transform pos: -37.768337,-25.146555 parent: 2 - - uid: 25714 + - uid: 25567 components: - type: Transform pos: -51.80867,-29.275694 parent: 2 - - uid: 25715 + - uid: 25568 components: - type: Transform pos: -25.45559,-29.265266 parent: 2 - - uid: 25716 + - uid: 25569 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.51996,-66.81522 parent: 2 - - uid: 25717 + - uid: 25570 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.572918,-62.433575 parent: 2 - - uid: 25718 + - uid: 25571 components: - type: Transform rot: -1.5707953085339508 rad pos: 61.572994,-40.555332 parent: 2 - - uid: 39524 + - uid: 39351 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.028293,19.568909 - parent: 38584 - - uid: 39525 + parent: 38411 + - uid: 39352 components: - type: Transform rot: 3.141592653589793 rad pos: 8.95761,19.583649 - parent: 38584 + parent: 38411 - proto: Pen entities: - - uid: 1391 + - uid: 1395 components: - type: Transform - parent: 1388 + parent: 1392 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25719 + - uid: 25572 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.491467,-3.7691374 parent: 2 - - uid: 25720 + - uid: 25573 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.097733,30.704498 parent: 2 - - uid: 25721 + - uid: 25574 components: - type: Transform pos: -17.069618,-41.371113 parent: 2 - - uid: 25722 + - uid: 25575 components: - type: Transform pos: 9.351555,32.663494 parent: 2 - - uid: 25723 + - uid: 25576 components: - type: Transform pos: 15.707917,-49.4478 parent: 2 - - uid: 25724 + - uid: 25577 components: - type: Transform pos: -24.506498,22.68696 parent: 2 - type: Physics canCollide: False - - uid: 25725 + - uid: 25578 components: - type: Transform rot: 3.141592653589793 rad pos: -40.579536,61.501842 parent: 2 - - uid: 25726 + - uid: 25579 components: - type: Transform rot: 6.283185307179586 rad pos: -26.690697,-29.727829 parent: 2 - - uid: 25727 + - uid: 25580 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.439426,15.789871 parent: 2 - - uid: 25728 + - uid: 25581 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.626926,15.805496 parent: 2 - - uid: 25729 + - uid: 25582 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.0607932,-16.36893 parent: 2 - - uid: 25730 + - uid: 25583 components: - type: Transform pos: 26.2638,-3.5469248 parent: 2 - - uid: 25731 + - uid: 25584 components: - type: Transform rot: 3.141592653589793 rad pos: 48.420795,18.954248 parent: 2 - - uid: 25732 + - uid: 25585 components: - type: Transform rot: 3.141592653589793 rad pos: 48.639545,18.985498 parent: 2 - - uid: 25733 + - uid: 25586 components: - type: Transform pos: 23.450024,-46.379463 parent: 2 - type: Physics canCollide: False - - uid: 25734 + - uid: 25587 components: - type: Transform pos: -20.383062,-42.942463 parent: 2 - - uid: 25735 + - uid: 25588 components: - type: Transform rot: 6.283185307179586 rad pos: -26.28472,-27.577341 parent: 2 - - uid: 25736 + - uid: 25589 components: - type: Transform pos: 37.470917,-10.411614 parent: 2 - type: Physics canCollide: False - - uid: 25737 + - uid: 25590 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.655098,-3.739999 parent: 2 - - uid: 25738 + - uid: 25591 components: - type: Transform pos: -19.216114,-49.46148 parent: 2 - - uid: 25739 + - uid: 25592 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.316475,63.006268 parent: 2 - - uid: 25740 + - uid: 25593 components: - type: Transform pos: -31.636566,-37.46047 parent: 2 - - uid: 25741 + - uid: 25594 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.440341,-60.388588 parent: 2 - - uid: 25742 + - uid: 25595 components: - type: Transform pos: 11.677389,-52.41908 parent: 2 - - uid: 25743 + - uid: 25596 components: - type: Transform pos: 36.533417,-13.349114 parent: 2 - type: Physics canCollide: False - - uid: 25744 + - uid: 25597 components: - type: Transform pos: -51.472042,12.58557 parent: 2 - type: Physics canCollide: False - - uid: 25745 + - uid: 25598 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.613075,-37.497192 parent: 2 - - uid: 25746 + - uid: 25599 components: - type: Transform pos: -12.5,9.5 parent: 2 - type: Physics canCollide: False - - uid: 25747 + - uid: 25600 components: - type: Transform pos: -13.537247,-79.39744 parent: 2 - type: Physics canCollide: False - - uid: 25748 + - uid: 25601 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.421505,0.58504266 parent: 2 - - uid: 25749 + - uid: 25602 components: - type: Transform rot: 3.141592653589793 rad pos: 25.701292,0.63588446 parent: 2 - - uid: 25750 + - uid: 25603 components: - type: Transform pos: 51.494473,-22.433455 parent: 2 - type: Physics canCollide: False - - uid: 25751 + - uid: 25604 components: - type: Transform pos: 30.719963,-40.205338 parent: 2 - - uid: 25752 + - uid: 25605 components: - type: Transform pos: 38.53962,22.54246 parent: 2 - type: Physics canCollide: False - - uid: 25753 + - uid: 25606 components: - type: Transform pos: -34.399147,-0.24586654 parent: 2 - - uid: 25754 + - uid: 25607 components: - type: Transform pos: 35.53883,-18.364212 parent: 2 - type: Physics canCollide: False - - uid: 25755 + - uid: 25608 components: - type: Transform pos: 51.46925,-14.439258 parent: 2 - type: Physics canCollide: False - - uid: 25756 + - uid: 25609 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.264614,1.0505768 parent: 2 - - uid: 25757 + - uid: 25610 components: - type: MetaData desc: надпись "взрывчатка" @@ -197651,232 +197724,232 @@ entities: - type: Transform pos: 49.443283,-42.569252 parent: 2 - - uid: 25758 + - uid: 25611 components: - type: Transform pos: -4.5355453,-60.37103 parent: 2 - - uid: 25759 + - uid: 25612 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.783176,15.774246 parent: 2 - - uid: 25760 + - uid: 25613 components: - type: Transform pos: 1.5124657,13.635027 parent: 2 - type: Physics canCollide: False - - uid: 25761 + - uid: 25614 components: - type: Transform pos: -22.454296,-81.41032 parent: 2 - - uid: 25762 + - uid: 25615 components: - type: Transform pos: -46.678894,38.893795 parent: 2 - - uid: 25763 + - uid: 25616 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.20707,60.17441 parent: 2 - - uid: 25764 + - uid: 25617 components: - type: Transform rot: 3.141592653589793 rad pos: -39.69104,27.481401 parent: 2 - - uid: 25765 + - uid: 25618 components: - type: Transform pos: 38.632412,-59.93169 parent: 2 - - uid: 25766 + - uid: 25619 components: - type: Transform pos: 19.428835,-27.442116 parent: 2 - - uid: 25767 + - uid: 25620 components: - type: Transform rot: 3.141592653589793 rad pos: 14.528481,-58.354614 parent: 2 - - uid: 25768 + - uid: 25621 components: - type: Transform pos: 72.66701,-44.147068 parent: 2 - - uid: 25769 + - uid: 25622 components: - type: Transform rot: -1.5707953085339508 rad pos: 89.44131,4.9716973 parent: 2 - - uid: 25770 + - uid: 25623 components: - type: Transform rot: -1.5707953085339508 rad pos: 88.70693,7.581073 parent: 2 - - uid: 25771 + - uid: 25624 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -30.61369,-7.7008057 parent: 2 - - uid: 25772 + - uid: 25625 components: - type: Transform rot: -1.5707953085339508 rad pos: -26.699986,-7.2377434 parent: 2 - - uid: 25773 + - uid: 25626 components: - type: Transform rot: 3.141593671850739 rad pos: -27.52549,0.4504242 parent: 2 - - uid: 25774 + - uid: 25627 components: - type: Transform rot: -1.5707953085339508 rad pos: 96.251434,12.531024 parent: 2 - - uid: 25775 + - uid: 25628 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.2637,-1.4916117 parent: 2 - - uid: 25776 + - uid: 25629 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 88.3887,-1.4916136 parent: 2 - - uid: 25777 + - uid: 25630 components: - type: Transform pos: 56.04083,25.61718 parent: 2 - - uid: 25778 + - uid: 25631 components: - type: Transform rot: 3.141592653589793 rad pos: 57.21884,29.658722 parent: 2 - - uid: 25779 + - uid: 25632 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.203777,23.580559 parent: 2 - - uid: 25780 + - uid: 25633 components: - type: Transform rot: 3.141592653589793 rad pos: 53.47312,-3.4022193 parent: 2 - - uid: 25781 + - uid: 25634 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.139263,21.552462 parent: 2 - - uid: 25782 + - uid: 25635 components: - type: Transform pos: 22.483013,21.724337 parent: 2 - - uid: 25783 + - uid: 25636 components: - type: Transform rot: 3.141592653589793 rad pos: 26.420513,21.48996 parent: 2 - - uid: 25784 + - uid: 25637 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.592388,21.630585 parent: 2 - - uid: 39526 + - uid: 39353 components: - type: Transform rot: 3.141592653589793 rad pos: -10.475631,-2.3764038 - parent: 38584 - - uid: 39527 + parent: 38411 + - uid: 39354 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.290835,-3.7772217 - parent: 38584 + parent: 38411 - proto: PersonalAI entities: - - uid: 25785 + - uid: 25638 components: - type: Transform pos: -7.4952707,11.598992 parent: 2 - type: Physics canCollide: False - - uid: 25786 + - uid: 25639 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 25787 + - uid: 25640 components: - type: Transform pos: -20.469707,-37.495167 parent: 2 - type: Physics canCollide: False - - uid: 25788 + - uid: 25641 components: - type: Transform pos: -32.382526,-12.516092 parent: 2 - type: Physics canCollide: False - - uid: 25789 + - uid: 25642 components: - type: Transform pos: 37.533417,-13.286614 parent: 2 - type: Physics canCollide: False - - uid: 25790 + - uid: 25643 components: - type: Transform pos: -10.475416,-22.421984 parent: 2 - type: Physics canCollide: False - - uid: 25791 + - uid: 25644 components: - type: Transform pos: -32.48197,16.390942 parent: 2 - - uid: 25792 + - uid: 25645 components: - type: Transform pos: -31.460695,-43.416817 parent: 2 - - uid: 25793 + - uid: 25646 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.194735,-43.42964 parent: 2 - - uid: 25794 + - uid: 25647 components: - type: Transform pos: -24.465235,21.68368 @@ -197885,53 +197958,53 @@ entities: canCollide: False - proto: PetCarrier entities: - - uid: 25795 + - uid: 25648 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-59.5 parent: 2 - - uid: 25796 + - uid: 25649 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 25797 + - uid: 25650 components: - type: Transform pos: -1.5,-16.5 parent: 2 - proto: PhoneInstrument entities: - - uid: 25798 + - uid: 25651 components: - type: Transform pos: 41.402508,19.727028 parent: 2 - type: Physics canCollide: False - - uid: 25799 + - uid: 25652 components: - type: Transform pos: -63.606014,6.5975237 parent: 2 - type: Physics canCollide: False - - uid: 25800 + - uid: 25653 components: - type: Transform pos: -9.435662,10.440056 parent: 2 - type: Physics canCollide: False - - uid: 25801 + - uid: 25654 components: - type: MetaData desc: Ало, это булошная? - type: Transform pos: 72.45427,0.6379792 parent: 2 - - uid: 41052 + - uid: 25655 components: - type: Transform pos: -62.532547,-23.342627 @@ -197944,209 +198017,209 @@ entities: - Pullable - proto: Pickaxe entities: - - uid: 25802 + - uid: 25656 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 55.4228,-49.467365 parent: 2 - - uid: 25803 + - uid: 25657 components: - type: Transform pos: -55.42047,-50.5453 parent: 2 - - uid: 25804 + - uid: 25658 components: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 25805 + - uid: 25659 components: - type: Transform rot: -4.71238898038469 rad pos: 100.49681,-3.3690634 parent: 2 - - uid: 39528 + - uid: 39355 components: - type: Transform pos: -5.5,14.5 - parent: 38584 - - uid: 39529 + parent: 38411 + - uid: 39356 components: - type: Transform pos: -21.18938,17.355896 - parent: 38584 - - uid: 39530 + parent: 38411 + - uid: 39357 components: - type: Transform pos: 1.5094376,8.475464 - parent: 38584 - - uid: 39531 + parent: 38411 + - uid: 39358 components: - type: Transform pos: 1.5563126,8.209839 - parent: 38584 - - uid: 39532 + parent: 38411 + - uid: 39359 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.460182,3.7668457 - parent: 38584 + parent: 38411 - proto: PillCanister entities: - - uid: 25806 + - uid: 25660 components: - type: Transform pos: 8.582031,-43.28059 parent: 2 - - uid: 25807 + - uid: 25661 components: - type: Transform pos: 8.749899,-43.44664 parent: 2 - - uid: 25808 + - uid: 25662 components: - type: Transform pos: 8.410156,-43.40559 parent: 2 - - uid: 25809 + - uid: 25663 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.785163,-44.64352 parent: 2 - - uid: 25810 + - uid: 25664 components: - type: Transform pos: 22.489054,-37.315258 parent: 2 - proto: PillSpaceDrugs entities: - - uid: 25811 + - uid: 25665 components: - type: Transform pos: -39.5,54.5 parent: 2 - - uid: 25812 + - uid: 25666 components: - type: Transform pos: -39.5,54.5 parent: 2 - - uid: 25813 + - uid: 25667 components: - type: Transform pos: -39.5,54.5 parent: 2 - proto: PinpointerNuclear entities: - - uid: 25814 + - uid: 25668 components: - type: Transform pos: 7.824789,0.54907286 parent: 2 - proto: PinpointerSyndicateNuclear entities: - - uid: 25816 + - uid: 25670 components: - type: Transform - parent: 25815 + parent: 25669 - type: Physics canCollide: False - proto: PlantBag entities: - - uid: 25817 + - uid: 25671 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 97.32841,6.43131 parent: 2 - - uid: 25818 + - uid: 25672 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 97.60966,6.603186 parent: 2 - - uid: 39533 + - uid: 39360 components: - type: Transform pos: -21.59623,-2.532013 - parent: 38584 + parent: 38411 - proto: PlasmaCanister entities: - - uid: 25819 + - uid: 25673 components: - type: Transform pos: -49.5,24.5 parent: 2 - - uid: 25820 + - uid: 25674 components: - type: Transform pos: -59.5,61.5 parent: 2 - - uid: 25821 + - uid: 25675 components: - type: Transform pos: -27.5,-49.5 parent: 2 - - uid: 25822 + - uid: 25676 components: - type: Transform pos: -70.5,29.5 parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 25823 + - uid: 25677 components: - type: Transform rot: 3.141592653589793 rad pos: -119.5,46.5 parent: 2 - - uid: 25824 + - uid: 25678 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,46.5 parent: 2 - - uid: 25825 + - uid: 25679 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-48.5 parent: 2 - - uid: 25826 + - uid: 25680 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 - - uid: 25827 + - uid: 25681 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,46.5 parent: 2 - - uid: 25828 + - uid: 25682 components: - type: Transform pos: -118.5,49.5 parent: 2 - - uid: 25829 + - uid: 25683 components: - type: Transform pos: -117.5,49.5 parent: 2 - - uid: 25830 + - uid: 25684 components: - type: Transform pos: -119.5,49.5 parent: 2 - - uid: 25831 + - uid: 25685 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,47.5 parent: 2 - - uid: 25832 + - uid: 25686 components: - type: Transform rot: 1.5707963267948966 rad @@ -198154,102 +198227,102 @@ entities: parent: 2 - proto: PlasmaTankFilled entities: - - uid: 25833 + - uid: 25687 components: - type: Transform pos: -54.62513,-9.336228 parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 25834 + - uid: 25688 components: - type: Transform pos: 39.5,48.5 parent: 2 - - uid: 25835 + - uid: 25689 components: - type: Transform pos: 39.5,52.5 parent: 2 - - uid: 25836 + - uid: 25690 components: - type: Transform pos: 30.5,61.5 parent: 2 - - uid: 25837 + - uid: 25691 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,48.5 parent: 2 - - uid: 25838 + - uid: 25692 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,52.5 parent: 2 - - uid: 25839 + - uid: 25693 components: - type: Transform pos: 27.5,57.5 parent: 2 - proto: PlasticFlapsOpaque entities: - - uid: 25840 + - uid: 25694 components: - type: Transform pos: -55.5,-18.5 parent: 2 - - uid: 25841 + - uid: 25695 components: - type: Transform pos: -43.5,23.5 parent: 2 - proto: PlastitaniumWindow entities: - - uid: 39534 + - uid: 39361 components: - type: Transform pos: -18.5,33.5 - parent: 38584 - - uid: 39535 + parent: 38411 + - uid: 39362 components: - type: Transform pos: -16.5,33.5 - parent: 38584 + parent: 38411 - proto: Plunger entities: - - uid: 25842 + - uid: 25696 components: - type: Transform pos: -76.535095,-30.484901 parent: 2 - proto: PlushieArachind entities: - - uid: 25843 + - uid: 25697 components: - type: Transform pos: -54.48039,-19.462519 parent: 2 - - uid: 25844 + - uid: 25698 components: - type: Transform pos: 15.5,59.5 parent: 2 - proto: PlushieAtmosian entities: - - uid: 25296 + - uid: 25699 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.6727,-23.279488 parent: 2 - - uid: 25845 + - uid: 25700 components: - type: Transform pos: -43.53502,-44.42827 parent: 2 - - uid: 25846 + - uid: 25701 components: - type: MetaData name: Rombzes @@ -198258,7 +198331,7 @@ entities: parent: 2 - proto: PlushieBee entities: - - uid: 25848 + - uid: 25702 components: - type: MetaData desc: Милая игрушка, напоминающая ещё более милого "программиста" и маппера. Пожалуйста, не давайте ему энергетики... @@ -198266,38 +198339,38 @@ entities: - type: Transform pos: -64.06701,-44.41243 parent: 2 - - uid: 39536 + - uid: 39363 components: - type: Transform pos: 6.435026,-5.5044556 - parent: 38584 + parent: 38411 - proto: PlushieCarp entities: - - uid: 25849 + - uid: 25703 components: - type: Transform pos: -51.5,-42.5 parent: 2 - - uid: 25851 + - uid: 25704 components: - type: Transform pos: -39.5,-8.5 parent: 2 - - uid: 25852 + - uid: 25705 components: - type: Transform pos: -40.5,-10.5 parent: 2 - proto: PlushieDiona entities: - - uid: 25853 + - uid: 25706 components: - type: Transform pos: -3.4434888,1.7209707 parent: 2 - proto: PlushieHampter entities: - - uid: 25854 + - uid: 25707 components: - type: MetaData desc: Этот хомяк правит целой китайской партией, в отличии от тебя. Слава КНПРМК! @@ -198305,43 +198378,43 @@ entities: - type: Transform pos: -50.5,-44.5 parent: 2 - - uid: 25855 + - uid: 25708 components: - type: Transform pos: 88.424194,-43.53203 parent: 2 - - uid: 25856 + - uid: 25709 components: - type: MetaData name: SayroN - type: Transform pos: -10.535128,-57.3854 parent: 2 - - uid: 25857 + - uid: 25710 components: - type: Transform pos: -80.54381,2.7824435 parent: 2 - proto: PlushieHuman entities: - - uid: 25858 + - uid: 25711 components: - type: Transform pos: -55.544044,-33.47897 parent: 2 - proto: PlushieLamp entities: - - uid: 25859 + - uid: 25712 components: - type: Transform pos: -30.68368,-67.59529 parent: 2 - - uid: 25860 + - uid: 25713 components: - type: Transform pos: -12.554631,54.68616 parent: 2 - - uid: 25861 + - uid: 25714 components: - type: MetaData desc: Думает... @@ -198349,12 +198422,12 @@ entities: - type: Transform pos: -122.46826,32.54152 parent: 2 - - uid: 25862 + - uid: 25715 components: - type: Transform pos: -34.448166,0.61967087 parent: 2 - - uid: 25863 + - uid: 25716 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198362,13 +198435,13 @@ entities: parent: 2 - proto: PlushieLizard entities: - - uid: 25864 + - uid: 25717 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -111.65515,32.620216 parent: 2 - - uid: 25865 + - uid: 25718 components: - type: MetaData name: плюшевый Asfgdh @@ -198377,13 +198450,13 @@ entities: parent: 2 - proto: PlushieLizardMirrored entities: - - uid: 25866 + - uid: 25719 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.42313,-4.4171724 parent: 2 - - uid: 25867 + - uid: 25720 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198391,35 +198464,40 @@ entities: parent: 2 - proto: PlushieMagicarp entities: - - uid: 25869 + - uid: 25721 components: - type: Transform pos: -38.429466,-9.485341 parent: 2 - proto: PlushieMoth entities: - - uid: 25870 + - uid: 25722 components: - type: Transform pos: 79.53357,-36.610157 parent: 2 + - uid: 38309 + components: + - type: Transform + pos: -11.493735,-0.5834905 + parent: 2 - proto: PlushieNuke entities: - - uid: 25872 + - uid: 25723 components: - type: MetaData name: плюшевая коммандер Триннк - type: Transform pos: 14.60019,-27.428131 parent: 2 - - uid: 39537 + - uid: 39364 components: - type: Transform pos: -16.5,30.5 - parent: 38584 + parent: 38411 - proto: PlushiePenguin entities: - - uid: 25873 + - uid: 25724 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198427,21 +198505,21 @@ entities: parent: 2 - proto: PlushieRainbowCarp entities: - - uid: 25874 + - uid: 25725 components: - type: Transform pos: -57.52734,-31.52434 parent: 2 - proto: PlushieRGBee entities: - - uid: 25875 + - uid: 25726 components: - type: Transform pos: 47.448463,-24.545958 parent: 2 - proto: PlushieRouny entities: - - uid: 25876 + - uid: 25727 components: - type: MetaData desc: Милаха @@ -198451,21 +198529,21 @@ entities: parent: 2 - proto: PlushieSharkBlue entities: - - uid: 25877 + - uid: 25728 components: - type: MetaData name: Nagano - type: Transform pos: -31.47719,-65.66022 parent: 2 - - uid: 25878 + - uid: 25729 components: - type: Transform pos: -22.533066,-12.404669 parent: 2 - proto: PlushieSharkGrey entities: - - uid: 25879 + - uid: 25730 components: - type: MetaData desc: Спонсор счастья. @@ -198475,14 +198553,14 @@ entities: parent: 2 - proto: PlushieSharkPink entities: - - uid: 25880 + - uid: 25731 components: - type: MetaData name: Imera - type: Transform pos: -31.465832,-67.69834 parent: 2 - - uid: 25881 + - uid: 25732 components: - type: MetaData name: розовая плюшевая Melissandra @@ -198492,21 +198570,21 @@ entities: parent: 2 - proto: PlushieSlime entities: - - uid: 25882 + - uid: 25733 components: - type: MetaData name: плюшевая meowstushka - type: Transform pos: -52.5,-45.5 parent: 2 - - uid: 25883 + - uid: 25734 components: - type: Transform pos: 36.49726,-4.6241965 parent: 2 - proto: PlushieSnake entities: - - uid: 25884 + - uid: 25735 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198514,12 +198592,12 @@ entities: parent: 2 - proto: PlushieSpaceLizard entities: - - uid: 25885 + - uid: 25736 components: - type: Transform pos: -3.5128639,42.268387 parent: 2 - - uid: 25886 + - uid: 25737 components: - type: MetaData desc: Какой же он позитивный! @@ -198527,7 +198605,7 @@ entities: - type: Transform pos: -122.43088,33.380764 parent: 2 - - uid: 25887 + - uid: 25738 components: - type: MetaData desc: Очаровательная мягкая игрушка, напоминающая унатха в EVA костюме. "Приветствуйте своих новых коллег как вы приветствуете эту игрушку, с распростертыми объятиями!". @@ -198535,7 +198613,7 @@ entities: - type: Transform pos: -36.5417,-50.486084 parent: 2 - - uid: 25888 + - uid: 25739 components: - type: MetaData desc: Он смотрит в космос, а космос смотрит в него... Глубоко... @@ -198543,7 +198621,7 @@ entities: - type: Transform pos: 28.562729,105.623215 parent: 2 - - uid: 25889 + - uid: 25740 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198551,124 +198629,124 @@ entities: parent: 2 - proto: PonderingOrb entities: - - uid: 25890 + - uid: 25741 components: - type: Transform pos: -74.52181,-11.459025 parent: 2 - proto: PortableFlasher entities: - - uid: 25891 + - uid: 25742 components: - type: Transform pos: 70.5,3.5 parent: 2 - - uid: 25892 + - uid: 25743 components: - type: Transform pos: 69.5,3.5 parent: 2 - - uid: 25893 + - uid: 25744 components: - type: Transform pos: 68.5,3.5 parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 25895 + - uid: 25745 components: - type: Transform pos: -27.5,-56.5 parent: 2 - - uid: 25896 + - uid: 25746 components: - type: Transform pos: -73.5,-24.5 parent: 2 - - uid: 25897 + - uid: 25747 components: - type: Transform pos: 9.5,62.5 parent: 2 - - uid: 25898 + - uid: 25748 components: - type: Transform pos: 2.5,-39.5 parent: 2 - - uid: 25899 + - uid: 25749 components: - type: Transform pos: 52.5,-41.5 parent: 2 - - uid: 25900 + - uid: 25750 components: - type: Transform pos: -32.5,-48.5 parent: 2 - - uid: 25901 + - uid: 25751 components: - type: Transform pos: 7.5,-3.5 parent: 2 - - uid: 25902 + - uid: 25752 components: - type: Transform pos: -31.5,64.5 parent: 2 - - uid: 25903 + - uid: 25753 components: - type: Transform pos: -38.5,-17.5 parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 25904 + - uid: 25754 components: - type: Transform pos: 16.5,-54.5 parent: 2 - - uid: 25905 + - uid: 25755 components: - type: Transform pos: -70.5,12.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 25906 + - uid: 25756 components: - type: Transform pos: -46.5,-5.5 parent: 2 - - uid: 25907 + - uid: 25757 components: - type: Transform pos: -44.5,-5.5 parent: 2 - proto: PortableScrubber entities: - - uid: 25908 + - uid: 25758 components: - type: Transform pos: -45.5,22.5 parent: 2 - - uid: 25909 + - uid: 25759 components: - type: Transform pos: -51.5,23.5 parent: 2 - - uid: 25910 + - uid: 25760 components: - type: Transform pos: -51.5,22.5 parent: 2 - - uid: 25911 + - uid: 25761 components: - type: Transform pos: -45.5,21.5 parent: 2 - proto: PosterBroken entities: - - uid: 25912 + - uid: 25762 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198676,14 +198754,14 @@ entities: parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 25914 + - uid: 25763 components: - type: Transform pos: -56.5,31.5 parent: 2 - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 25915 + - uid: 25764 components: - type: MetaData name: Пляжная звезда Триннк! @@ -198692,7 +198770,7 @@ entities: parent: 2 - proto: PosterContrabandBustyBackdoorExoBabes6 entities: - - uid: 25916 + - uid: 25765 components: - type: Transform rot: 3.141593671850739 rad @@ -198700,42 +198778,42 @@ entities: parent: 2 - proto: PosterContrabandClown entities: - - uid: 25917 + - uid: 25766 components: - type: Transform pos: -10.5,25.5 parent: 2 - proto: PosterContrabandCybersun600 entities: - - uid: 25918 + - uid: 25767 components: - type: Transform pos: -47.5,-45.5 parent: 2 - proto: PosterContrabandEAT entities: - - uid: 25919 + - uid: 25768 components: - type: Transform pos: -23.5,29.5 parent: 2 - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 25920 + - uid: 25769 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -112.5,45.5 parent: 2 - - uid: 39538 + - uid: 39365 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,33.5 - parent: 38584 + parent: 38411 - proto: PosterContrabandFunPolice entities: - - uid: 25921 + - uid: 25770 components: - type: Transform rot: 3.141592653589793 rad @@ -198743,47 +198821,47 @@ entities: parent: 2 - proto: PosterContrabandGreyTide entities: - - uid: 25922 + - uid: 25771 components: - type: Transform pos: -22.5,24.5 parent: 2 - proto: PosterContrabandKudzu entities: - - uid: 25923 + - uid: 25772 components: - type: Transform pos: -38.5,30.5 parent: 2 - proto: PosterContrabandLamarr entities: - - uid: 25924 + - uid: 25773 components: - type: Transform pos: -53.5,-26.5 parent: 2 - proto: PosterContrabandLustyExomorph entities: - - uid: 25925 + - uid: 25774 components: - type: Transform pos: -29.5,-9.5 parent: 2 - - uid: 25926 + - uid: 25775 components: - type: Transform pos: -67.5,57.5 parent: 2 - proto: PosterContrabandMissingGloves entities: - - uid: 25927 + - uid: 25776 components: - type: Transform pos: -30.5,-68.5 parent: 2 - proto: PosterContrabandMoth entities: - - uid: 25928 + - uid: 25777 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198791,14 +198869,14 @@ entities: parent: 2 - proto: PosterContrabandRebelsUnite entities: - - uid: 25929 + - uid: 25778 components: - type: Transform pos: 13.5,-2.5 parent: 2 - proto: PosterContrabandRevolver entities: - - uid: 25930 + - uid: 25779 components: - type: Transform rot: 1.5707963267948966 rad @@ -198806,41 +198884,41 @@ entities: parent: 2 - proto: PosterContrabandShamblersJuice entities: - - uid: 25931 + - uid: 25780 components: - type: Transform pos: -53.5,-41.5 parent: 2 - proto: PosterContrabandSpaceCola entities: - - uid: 25932 + - uid: 25781 components: - type: Transform pos: -40.5,-60.5 parent: 2 - proto: PosterContrabandSpaceUp entities: - - uid: 25933 + - uid: 25782 components: - type: Transform pos: -64.5,-48.5 parent: 2 - proto: PosterContrabandSunkist entities: - - uid: 25934 + - uid: 25783 components: - type: Transform pos: -62.5,-48.5 parent: 2 - proto: PosterContrabandVoteWeh entities: - - uid: 25935 + - uid: 25784 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -115.50001,33.5 parent: 2 - - uid: 25936 + - uid: 25785 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198848,7 +198926,7 @@ entities: parent: 2 - proto: PosterContrabandWehWatches entities: - - uid: 25937 + - uid: 25786 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -198856,24 +198934,24 @@ entities: parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 25938 + - uid: 25787 components: - type: Transform pos: -36.5,-69.5 parent: 2 - - uid: 25939 + - uid: 25788 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,10.5 parent: 2 - - uid: 25940 + - uid: 25789 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-37.5 parent: 2 - - uid: 25941 + - uid: 25790 components: - type: Transform rot: 1.5707963267948966 rad @@ -198881,151 +198959,151 @@ entities: parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 25942 + - uid: 25791 components: - type: Transform pos: 7.5,-39.5 parent: 2 - proto: PosterLegitBlessThisSpess entities: - - uid: 25943 + - uid: 25792 components: - type: Transform pos: 7.5,-53.5 parent: 2 - proto: PosterLegitBuild entities: - - uid: 25944 + - uid: 25793 components: - type: Transform pos: -57.5,43.5 parent: 2 - proto: PosterLegitCarbonDioxide entities: - - uid: 25945 + - uid: 25794 components: - type: Transform pos: -51.5,31.5 parent: 2 - proto: PosterLegitCarpMount entities: - - uid: 25946 + - uid: 25795 components: - type: Transform pos: -66.5,-29.5 parent: 2 - proto: PosterLegitCleanliness entities: - - uid: 25947 + - uid: 25796 components: - type: Transform pos: 42.5,-60.5 parent: 2 - - uid: 25948 + - uid: 25797 components: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 25949 + - uid: 25798 components: - type: Transform pos: 33.5,-28.5 parent: 2 - - uid: 25950 + - uid: 25799 components: - type: Transform pos: -31.5,-36.5 parent: 2 - proto: PosterLegitDoNotQuestion entities: - - uid: 25951 + - uid: 25800 components: - type: Transform pos: -11.5,21.5 parent: 2 - - uid: 25952 + - uid: 25801 components: - type: Transform pos: -7.5,-62.5 parent: 2 - - uid: 25953 + - uid: 25802 components: - type: Transform pos: 54.5,-52.5 parent: 2 - - uid: 25954 + - uid: 25803 components: - type: Transform pos: 71.5,3.5 parent: 2 - proto: PosterLegitEnlist entities: - - uid: 25955 + - uid: 25804 components: - type: Transform pos: 39.5,-1.5 parent: 2 - proto: PosterLegitGetYourLEGS entities: - - uid: 25956 + - uid: 25805 components: - type: Transform pos: -26.5,-15.5 parent: 2 - proto: PosterLegitHelpOthers entities: - - uid: 25957 + - uid: 25806 components: - type: Transform pos: 29.5,-40.5 parent: 2 - - uid: 25958 + - uid: 25807 components: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 25959 + - uid: 25808 components: - type: Transform pos: 23.5,-29.5 parent: 2 - - uid: 25960 + - uid: 25809 components: - type: Transform pos: 38.5,3.5 parent: 2 - - uid: 25961 + - uid: 25810 components: - type: Transform pos: 2.5,-61.5 parent: 2 - - uid: 25962 + - uid: 25811 components: - type: Transform pos: 32.5,-6.5 parent: 2 - proto: PosterLegitHereForYourSafety entities: - - uid: 25963 + - uid: 25812 components: - type: Transform pos: 60.5,2.5 parent: 2 - proto: PosterLegitIan entities: - - uid: 25964 + - uid: 25813 components: - type: Transform pos: -24.5,-70.5 parent: 2 - - uid: 25965 + - uid: 25814 components: - type: Transform pos: -15.5,-2.5 parent: 2 - proto: PosterLegitIonRifle entities: - - uid: 25966 + - uid: 25815 components: - type: Transform rot: 1.5707963267948966 rad @@ -199033,249 +199111,249 @@ entities: parent: 2 - proto: PosterLegitLoveIan entities: - - uid: 25967 + - uid: 25816 components: - type: Transform pos: -39.5,-59.5 parent: 2 - - uid: 25968 + - uid: 25817 components: - type: Transform pos: -40.5,-59.5 parent: 2 - - uid: 25969 + - uid: 25818 components: - type: Transform pos: -32.5,-63.5 parent: 2 - - uid: 25970 + - uid: 25819 components: - type: Transform pos: -14.5,-2.5 parent: 2 - proto: PosterLegitMime entities: - - uid: 25971 + - uid: 25820 components: - type: Transform pos: -4.5,44.5 parent: 2 - proto: PosterLegitNanomichiAd entities: - - uid: 25972 + - uid: 25821 components: - type: Transform pos: -34.5,64.5 parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 25973 + - uid: 25822 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,59.5 parent: 2 - - uid: 25974 + - uid: 25823 components: - type: Transform pos: 49.5,10.5 parent: 2 - - uid: 25975 + - uid: 25824 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 - - uid: 25976 + - uid: 25825 components: - type: Transform pos: -82.5,16.5 parent: 2 - - uid: 25977 + - uid: 25826 components: - type: Transform pos: -82.5,12.5 parent: 2 - - uid: 25978 + - uid: 25827 components: - type: Transform pos: -14.5,17.5 parent: 2 - - uid: 25979 + - uid: 25828 components: - type: Transform pos: -21.5,59.5 parent: 2 - - uid: 25980 + - uid: 25829 components: - type: Transform pos: 54.5,-24.5 parent: 2 - - uid: 25981 + - uid: 25830 components: - type: Transform pos: -20.5,-32.5 parent: 2 - - uid: 25982 + - uid: 25831 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-12.5 parent: 2 - - uid: 25983 + - uid: 25832 components: - type: Transform pos: -15.5,-44.5 parent: 2 - - uid: 25984 + - uid: 25833 components: - type: Transform pos: -21.5,-36.5 parent: 2 - - uid: 25985 + - uid: 25834 components: - type: Transform pos: -16.5,-13.5 parent: 2 - - uid: 25986 + - uid: 25835 components: - type: Transform pos: 32.5,-1.5 parent: 2 - - uid: 25987 + - uid: 25836 components: - type: Transform pos: 1.5,26.5 parent: 2 - - uid: 25988 + - uid: 25837 components: - type: Transform pos: 42.5,-25.5 parent: 2 - - uid: 25989 + - uid: 25838 components: - type: Transform pos: 34.5,-72.5 parent: 2 - - uid: 25990 + - uid: 25839 components: - type: Transform pos: -7.5,25.5 parent: 2 - - uid: 25991 + - uid: 25840 components: - type: Transform pos: -16.5,-6.5 parent: 2 - - uid: 25992 + - uid: 25841 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 25993 + - uid: 25842 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-32.5 parent: 2 - - uid: 25994 + - uid: 25843 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - uid: 25995 + - uid: 25844 components: - type: Transform pos: 25.5,-52.5 parent: 2 - - uid: 25996 + - uid: 25845 components: - type: Transform pos: 66.5,-31.5 parent: 2 - - uid: 25997 + - uid: 25846 components: - type: Transform pos: -16.5,-28.5 parent: 2 - - uid: 25998 + - uid: 25847 components: - type: Transform pos: 42.5,-58.5 parent: 2 - - uid: 25999 + - uid: 25848 components: - type: Transform pos: -21.5,66.5 parent: 2 - - uid: 26000 + - uid: 25849 components: - type: Transform pos: 38.5,16.5 parent: 2 - - uid: 26001 + - uid: 25850 components: - type: Transform pos: 40.5,-72.5 parent: 2 - - uid: 26002 + - uid: 25851 components: - type: Transform pos: 46.5,-24.5 parent: 2 - - uid: 26003 + - uid: 25852 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 26004 + - uid: 25853 components: - type: Transform pos: -4.5,-62.5 parent: 2 - - uid: 26005 + - uid: 25854 components: - type: Transform pos: 13.5,12.5 parent: 2 - - uid: 26006 + - uid: 25855 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 26007 + - uid: 25856 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 26008 + - uid: 25857 components: - type: Transform pos: 15.5,-6.5 parent: 2 - - uid: 26009 + - uid: 25858 components: - type: Transform pos: -14.5,12.5 parent: 2 - - uid: 26010 + - uid: 25859 components: - type: Transform pos: 19.5,-49.5 parent: 2 - - uid: 26011 + - uid: 25860 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-32.5 parent: 2 - - uid: 26012 + - uid: 25861 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-8.5 parent: 2 - - uid: 26013 + - uid: 25862 components: - type: Transform rot: 3.141592653589793 rad @@ -199283,47 +199361,47 @@ entities: parent: 2 - proto: PosterLegitNoERP entities: - - uid: 26014 + - uid: 25863 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 50.5,-21.5 parent: 2 - - uid: 26016 + - uid: 25864 components: - type: Transform pos: -54.5,26.5 parent: 2 - proto: PosterLegitNTTGC entities: - - uid: 26017 + - uid: 25865 components: - type: Transform pos: 64.5,-16.5 parent: 2 - proto: PosterLegitObey entities: - - uid: 26018 + - uid: 25866 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,10.5 parent: 2 - - uid: 26019 + - uid: 25867 components: - type: Transform pos: 73.5,-1.5 parent: 2 - proto: PosterLegitPDAAd entities: - - uid: 26020 + - uid: 25868 components: - type: Transform pos: -38.5,64.5 parent: 2 - proto: PosterLegitPeriodicTable entities: - - uid: 26021 + - uid: 25869 components: - type: Transform rot: 1.5707963267948966 rad @@ -199331,110 +199409,110 @@ entities: parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 26022 + - uid: 25870 components: - type: Transform pos: 52.5,2.5 parent: 2 - - uid: 26023 + - uid: 25871 components: - type: Transform pos: 52.5,-48.5 parent: 2 - - uid: 26024 + - uid: 25872 components: - type: Transform pos: 34.5,-32.5 parent: 2 - - uid: 26025 + - uid: 25873 components: - type: Transform pos: -27.5,16.5 parent: 2 - - uid: 26026 + - uid: 25874 components: - type: Transform pos: 10.5,21.5 parent: 2 - - uid: 26027 + - uid: 25875 components: - type: Transform pos: 35.5,-2.5 parent: 2 - proto: PosterLegitSafetyInternals entities: - - uid: 26028 + - uid: 25876 components: - type: Transform pos: -48.5,35.5 parent: 2 - - uid: 26029 + - uid: 25877 components: - type: Transform pos: 21.5,-29.5 parent: 2 - proto: PosterLegitSafetyMothPiping entities: - - uid: 26030 + - uid: 25878 components: - type: Transform pos: -19.5,-60.5 parent: 2 - proto: PosterLegitScience entities: - - uid: 26031 + - uid: 25879 components: - type: Transform pos: -24.5,-42.5 parent: 2 - - uid: 26032 + - uid: 25880 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-48.5 parent: 2 - - uid: 26033 + - uid: 25881 components: - type: Transform pos: -16.5,-22.5 parent: 2 - - uid: 26034 + - uid: 25882 components: - type: Transform pos: -41.5,-35.5 parent: 2 - proto: PosterLegitSoftCapPopArt entities: - - uid: 26035 + - uid: 25883 components: - type: Transform pos: -25.5,24.5 parent: 2 - proto: PosterLegitWorkForAFuture entities: - - uid: 26036 + - uid: 25884 components: - type: Transform pos: 19.5,-7.5 parent: 2 - - uid: 26037 + - uid: 25885 components: - type: Transform pos: -27.5,18.5 parent: 2 - proto: PosterMapDelta entities: - - uid: 26038 + - uid: 25886 components: - type: Transform pos: -15.5,55.5 parent: 2 - - uid: 26039 + - uid: 25887 components: - type: Transform pos: -3.5,25.5 parent: 2 - - uid: 26040 + - uid: 25888 components: - type: Transform rot: 1.5707963267948966 rad @@ -199442,7 +199520,7 @@ entities: parent: 2 - proto: PottedPlant1 entities: - - uid: 25815 + - uid: 25669 components: - type: Transform pos: -49.5,-35.5 @@ -199452,106 +199530,106 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 25816 + ent: 25670 - proto: PottedPlant10 entities: - - uid: 26041 + - uid: 25889 components: - type: Transform pos: -55.5,-46.5 parent: 2 - - uid: 26042 + - uid: 25890 components: - type: Transform pos: -49.5,-42.5 parent: 2 - - uid: 26043 + - uid: 25891 components: - type: Transform pos: -48.5,-45.5 parent: 2 - - uid: 26044 + - uid: 25892 components: - type: Transform pos: -55.5,-42.5 parent: 2 - proto: PottedPlant15 entities: - - uid: 26045 + - uid: 25893 components: - type: Transform pos: -15.5,-22.5 parent: 2 - - uid: 26046 + - uid: 25894 components: - type: Transform pos: -15.5,5.5 parent: 2 - - uid: 26047 + - uid: 25895 components: - type: Transform pos: 24.5,34.5 parent: 2 - - uid: 26048 + - uid: 25896 components: - type: Transform pos: 18.5,-45.5 parent: 2 - - uid: 26049 + - uid: 25897 components: - type: Transform pos: 46.5,2.5 parent: 2 - - uid: 26050 + - uid: 25898 components: - type: Transform pos: 20.5,-5.5 parent: 2 - - uid: 26051 + - uid: 25899 components: - type: Transform pos: 6.5,11.5 parent: 2 - - uid: 26052 + - uid: 25900 components: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 26053 + - uid: 25901 components: - type: Transform pos: 14.5,-48.5 parent: 2 - - uid: 26054 + - uid: 25902 components: - type: Transform pos: 7.5,-48.5 parent: 2 - - uid: 26055 + - uid: 25903 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 26056 + - uid: 25904 components: - type: Transform pos: 13.5,7.5 parent: 2 - - uid: 26057 + - uid: 25905 components: - type: Transform pos: 21.5,-52.5 parent: 2 - proto: PottedPlant21 entities: - - uid: 26058 + - uid: 25906 components: - type: Transform pos: 71.5,0.5 parent: 2 - proto: PottedPlant22 entities: - - uid: 26059 + - uid: 25907 components: - type: Transform pos: 91.50001,5.5000005 @@ -199561,34 +199639,34 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 26060 + ent: 25908 - proto: PottedPlantAlt2 entities: - - uid: 26061 + - uid: 25909 components: - type: Transform pos: 81.5,12.5 parent: 2 - proto: PottedPlantAlt4 entities: - - uid: 869 + - uid: 25910 components: - type: Transform pos: -63.83441,-23.085978 parent: 2 - - uid: 6746 + - uid: 25911 components: - type: Transform pos: -59.162537,-22.992228 parent: 2 - - uid: 26062 + - uid: 25912 components: - type: Transform pos: 81.5,14.5 parent: 2 - proto: PottedPlantBioluminscent entities: - - uid: 25678 + - uid: 25531 components: - type: Transform pos: 8.5,-39.5 @@ -199598,170 +199676,170 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 25679 + ent: 25532 - proto: PottedPlantRandom entities: - - uid: 26063 + - uid: 25913 components: - type: Transform pos: 70.5,21.5 parent: 2 - - uid: 26064 + - uid: 25914 components: - type: Transform pos: 61.5,21.5 parent: 2 - - uid: 26065 + - uid: 25915 components: - type: Transform pos: 61.5,26.5 parent: 2 - - uid: 26066 + - uid: 25916 components: - type: Transform pos: 50.5,32.5 parent: 2 - - uid: 26067 + - uid: 25917 components: - type: Transform pos: -59.5,-45.5 parent: 2 - - uid: 26068 + - uid: 25918 components: - type: Transform pos: 97.5,0.5 parent: 2 - - uid: 26069 + - uid: 25919 components: - type: Transform pos: -33.5,-64.5 parent: 2 - - uid: 26070 + - uid: 25920 components: - type: Transform pos: -54.5,20.5 parent: 2 - - uid: 26071 + - uid: 25921 components: - type: Transform pos: 55.5,-27.5 parent: 2 - - uid: 26072 + - uid: 25922 components: - type: Transform pos: -16.5,-43.5 parent: 2 - - uid: 26073 + - uid: 25923 components: - type: Transform pos: 56.5,-30.5 parent: 2 - - uid: 26074 + - uid: 25924 components: - type: Transform pos: -8.5,3.5 parent: 2 - - uid: 26075 + - uid: 25925 components: - type: Transform pos: -34.5,50.5 parent: 2 - - uid: 26076 + - uid: 25926 components: - type: Transform pos: -5.5,34.5 parent: 2 - - uid: 26077 + - uid: 25927 components: - type: Transform pos: -28.5,43.5 parent: 2 - - uid: 26078 + - uid: 25928 components: - type: Transform pos: -4.5,28.5 parent: 2 - - uid: 26079 + - uid: 25929 components: - type: Transform pos: -36.5,50.5 parent: 2 - - uid: 26080 + - uid: 25930 components: - type: Transform pos: 63.5,-30.5 parent: 2 - - uid: 26081 + - uid: 25931 components: - type: Transform pos: -12.5,96.5 parent: 2 - - uid: 26082 + - uid: 25932 components: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 26083 + - uid: 25933 components: - type: Transform pos: -12.5,-2.5 parent: 2 - - uid: 26084 + - uid: 25934 components: - type: Transform pos: -7.5,65.5 parent: 2 - - uid: 26085 + - uid: 25935 components: - type: Transform pos: -7.5,60.5 parent: 2 - - uid: 26086 + - uid: 25936 components: - type: Transform pos: -7.5,-81.5 parent: 2 - - uid: 26087 + - uid: 25937 components: - type: Transform pos: -29.5,0.5 parent: 2 - - uid: 26088 + - uid: 25938 components: - type: Transform pos: -10.5,96.5 parent: 2 - - uid: 26089 + - uid: 25939 components: - type: Transform pos: -30.5,96.5 parent: 2 - - uid: 26090 + - uid: 25940 components: - type: Transform pos: -10.5,-5.5 parent: 2 - - uid: 26091 + - uid: 25941 components: - type: Transform pos: -22.5,-17.5 parent: 2 - - uid: 26092 + - uid: 25942 components: - type: Transform pos: -75.5,-2.5 parent: 2 - - uid: 26093 + - uid: 25943 components: - type: Transform pos: 16.5,-41.5 parent: 2 - - uid: 26094 + - uid: 25944 components: - type: Transform pos: 2.5,33.5 parent: 2 - - uid: 26095 + - uid: 25945 components: - type: Transform pos: -14.5,-53.5 @@ -199769,7 +199847,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26096 + - uid: 25946 components: - type: Transform pos: -10.5,-70.5 @@ -199777,7 +199855,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26097 + - uid: 25947 components: - type: Transform pos: -21.5,-23.5 @@ -199785,7 +199863,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26098 + - uid: 25948 components: - type: Transform pos: 55.5,3.5 @@ -199793,27 +199871,27 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26099 + - uid: 25949 components: - type: Transform pos: 10.5,-46.5 parent: 2 - - uid: 26100 + - uid: 25950 components: - type: Transform pos: -1.5,41.5 parent: 2 - - uid: 26101 + - uid: 25951 components: - type: Transform pos: -27.5,-41.5 parent: 2 - - uid: 26102 + - uid: 25952 components: - type: Transform pos: 31.5,2.5 parent: 2 - - uid: 26103 + - uid: 25953 components: - type: Transform pos: -15.5,35.5 @@ -199821,7 +199899,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26104 + - uid: 25954 components: - type: Transform pos: -11.5,-35.5 @@ -199829,12 +199907,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26105 + - uid: 25955 components: - type: Transform pos: 10.5,-40.5 parent: 2 - - uid: 26106 + - uid: 25956 components: - type: Transform pos: -6.5,8.5 @@ -199842,7 +199920,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26107 + - uid: 25957 components: - type: Transform pos: -13.5,7.5 @@ -199850,7 +199928,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26108 + - uid: 25958 components: - type: Transform pos: -13.5,11.5 @@ -199858,7 +199936,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26109 + - uid: 25959 components: - type: Transform pos: 14.5,11.5 @@ -199866,7 +199944,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26110 + - uid: 25960 components: - type: Transform pos: 2.5,37.5 @@ -199874,7 +199952,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26111 + - uid: 25961 components: - type: Transform pos: 31.5,-10.5 @@ -199882,7 +199960,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26112 + - uid: 25962 components: - type: Transform pos: 31.5,-13.5 @@ -199890,22 +199968,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26113 + - uid: 25963 components: - type: Transform pos: 28.5,-31.5 parent: 2 - - uid: 26114 + - uid: 25964 components: - type: Transform pos: 18.5,-48.5 parent: 2 - - uid: 26115 + - uid: 25965 components: - type: Transform pos: 16.5,-46.5 parent: 2 - - uid: 26116 + - uid: 25966 components: - type: Transform pos: 4.5,41.5 @@ -199913,7 +199991,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26117 + - uid: 25967 components: - type: Transform pos: -10.5,-63.5 @@ -199921,7 +199999,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26118 + - uid: 25968 components: - type: Transform pos: 44.5,-35.5 @@ -199929,7 +200007,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26119 + - uid: 25969 components: - type: Transform pos: -20.5,-67.5 @@ -199937,17 +200015,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26120 + - uid: 25970 components: - type: Transform pos: -8.5,52.5 parent: 2 - - uid: 26121 + - uid: 25971 components: - type: Transform pos: -7.5,-27.5 parent: 2 - - uid: 26122 + - uid: 25972 components: - type: Transform pos: -54.5,-7.5 @@ -199955,12 +200033,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26123 + - uid: 25973 components: - type: Transform pos: -22.5,19.5 parent: 2 - - uid: 26124 + - uid: 25974 components: - type: Transform pos: 34.5,-71.5 @@ -199968,7 +200046,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26125 + - uid: 25975 components: - type: Transform pos: 30.5,-69.5 @@ -199976,7 +200054,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26126 + - uid: 25976 components: - type: Transform pos: 29.5,-69.5 @@ -199984,12 +200062,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26127 + - uid: 25977 components: - type: Transform pos: -35.5,-64.5 parent: 2 - - uid: 26128 + - uid: 25978 components: - type: Transform pos: 34.5,-16.5 @@ -199997,7 +200075,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26129 + - uid: 25979 components: - type: Transform pos: 6.5,-27.5 @@ -200005,12 +200083,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26130 + - uid: 25980 components: - type: Transform pos: -1.5,46.5 parent: 2 - - uid: 26131 + - uid: 25981 components: - type: Transform pos: -10.5,-64.5 @@ -200018,7 +200096,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26132 + - uid: 25982 components: - type: Transform pos: -20.5,39.5 @@ -200026,7 +200104,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26133 + - uid: 25983 components: - type: Transform pos: -34.5,8.5 @@ -200034,7 +200112,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26134 + - uid: 25984 components: - type: Transform pos: -10.5,-75.5 @@ -200042,7 +200120,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26135 + - uid: 25985 components: - type: Transform pos: 11.5,16.5 @@ -200050,7 +200128,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26136 + - uid: 25986 components: - type: Transform pos: 20.5,-44.5 @@ -200058,7 +200136,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26137 + - uid: 25987 components: - type: Transform pos: 24.5,-44.5 @@ -200066,7 +200144,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26138 + - uid: 25988 components: - type: Transform pos: -9.5,15.5 @@ -200074,7 +200152,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26139 + - uid: 25989 components: - type: Transform pos: 8.5,15.5 @@ -200082,7 +200160,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26140 + - uid: 25990 components: - type: Transform pos: 14.5,2.5 @@ -200090,7 +200168,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26141 + - uid: 25991 components: - type: Transform pos: -20.5,43.5 @@ -200098,7 +200176,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26142 + - uid: 25992 components: - type: Transform pos: 8.5,-22.5 @@ -200106,7 +200184,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26143 + - uid: 25993 components: - type: Transform pos: 2.5,-42.5 @@ -200114,7 +200192,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26144 + - uid: 25994 components: - type: Transform pos: -38.5,-14.5 @@ -200122,7 +200200,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26145 + - uid: 25995 components: - type: Transform pos: -75.5,11.5 @@ -200130,7 +200208,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26146 + - uid: 25996 components: - type: Transform pos: -12.5,16.5 @@ -200138,7 +200216,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26147 + - uid: 25997 components: - type: Transform pos: -58.5,-17.5 @@ -200146,7 +200224,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26148 + - uid: 25998 components: - type: Transform pos: -31.5,-15.5 @@ -200154,7 +200232,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26149 + - uid: 25999 components: - type: Transform pos: -34.5,-13.5 @@ -200162,7 +200240,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26150 + - uid: 26000 components: - type: Transform pos: 26.5,-57.5 @@ -200170,7 +200248,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26151 + - uid: 26001 components: - type: Transform pos: 9.5,-16.5 @@ -200178,7 +200256,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26152 + - uid: 26002 components: - type: Transform pos: 11.5,42.5 @@ -200186,7 +200264,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26153 + - uid: 26003 components: - type: Transform pos: 11.5,34.5 @@ -200194,7 +200272,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26154 + - uid: 26004 components: - type: Transform pos: -60.5,11.5 @@ -200202,7 +200280,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26155 + - uid: 26005 components: - type: Transform pos: 24.5,-13.5 @@ -200210,7 +200288,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26156 + - uid: 26006 components: - type: Transform pos: 43.5,-31.5 @@ -200218,7 +200296,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26157 + - uid: 26007 components: - type: Transform pos: -12.5,-75.5 @@ -200226,7 +200304,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26158 + - uid: 26008 components: - type: Transform pos: 28.5,-54.5 @@ -200234,7 +200312,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26159 + - uid: 26009 components: - type: Transform pos: 26.5,-52.5 @@ -200242,7 +200320,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26160 + - uid: 26010 components: - type: Transform pos: -58.5,15.5 @@ -200250,7 +200328,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26161 + - uid: 26011 components: - type: Transform pos: 43.5,-19.5 @@ -200258,7 +200336,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26162 + - uid: 26012 components: - type: Transform pos: 19.5,72.5 @@ -200266,7 +200344,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26163 + - uid: 26013 components: - type: Transform pos: -65.5,16.5 @@ -200274,7 +200352,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26164 + - uid: 26014 components: - type: Transform pos: -62.5,16.5 @@ -200282,7 +200360,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26165 + - uid: 26015 components: - type: Transform pos: -22.5,-63.5 @@ -200290,7 +200368,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26166 + - uid: 26016 components: - type: Transform pos: 3.5,63.5 @@ -200298,7 +200376,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26167 + - uid: 26017 components: - type: Transform pos: -49.5,-11.5 @@ -200306,7 +200384,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26168 + - uid: 26018 components: - type: Transform pos: -25.5,19.5 @@ -200314,7 +200392,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26169 + - uid: 26019 components: - type: Transform pos: -49.5,17.5 @@ -200322,7 +200400,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26170 + - uid: 26020 components: - type: Transform pos: -45.5,19.5 @@ -200330,7 +200408,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26171 + - uid: 26021 components: - type: Transform pos: -15.5,16.5 @@ -200338,7 +200416,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26172 + - uid: 26022 components: - type: Transform pos: -15.5,13.5 @@ -200346,7 +200424,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26173 + - uid: 26023 components: - type: Transform pos: -44.5,-29.5 @@ -200354,7 +200432,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26174 + - uid: 26024 components: - type: Transform pos: 41.5,-59.5 @@ -200362,7 +200440,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26175 + - uid: 26025 components: - type: Transform pos: -4.5,-33.5 @@ -200370,12 +200448,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26176 + - uid: 26026 components: - type: Transform pos: -39.5,63.5 parent: 2 - - uid: 26177 + - uid: 26027 components: - type: Transform pos: 23.5,72.5 @@ -200383,7 +200461,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26178 + - uid: 26028 components: - type: Transform pos: 40.5,-20.5 @@ -200391,7 +200469,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26179 + - uid: 26029 components: - type: Transform pos: -59.5,44.5 @@ -200399,7 +200477,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26180 + - uid: 26030 components: - type: Transform pos: -45.5,44.5 @@ -200407,7 +200485,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26181 + - uid: 26031 components: - type: Transform pos: -51.5,44.5 @@ -200415,7 +200493,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26182 + - uid: 26032 components: - type: Transform pos: -58.5,7.5 @@ -200423,7 +200501,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26183 + - uid: 26033 components: - type: Transform pos: 44.5,-54.5 @@ -200431,7 +200509,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26184 + - uid: 26034 components: - type: Transform pos: 41.5,-55.5 @@ -200439,7 +200517,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26185 + - uid: 26035 components: - type: Transform pos: 53.5,-52.5 @@ -200447,7 +200525,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26186 + - uid: 26036 components: - type: Transform pos: -22.5,-64.5 @@ -200455,7 +200533,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26187 + - uid: 26037 components: - type: Transform pos: 2.5,-63.5 @@ -200463,17 +200541,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26188 + - uid: 26038 components: - type: Transform pos: 29.5,-6.5 parent: 2 - - uid: 26189 + - uid: 26039 components: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 26190 + - uid: 26040 components: - type: Transform pos: 39.5,17.5 @@ -200481,12 +200559,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26191 + - uid: 26041 components: - type: Transform pos: 91.5,12.5 parent: 2 - - uid: 26192 + - uid: 26042 components: - type: Transform pos: -38.5,14.5 @@ -200494,7 +200572,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26193 + - uid: 26043 components: - type: Transform pos: -36.5,16.5 @@ -200502,7 +200580,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26194 + - uid: 26044 components: - type: Transform pos: -32.5,10.5 @@ -200510,7 +200588,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26195 + - uid: 26045 components: - type: Transform pos: -16.5,53.5 @@ -200518,12 +200596,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26196 + - uid: 26046 components: - type: Transform pos: -6.5,36.5 parent: 2 - - uid: 26197 + - uid: 26047 components: - type: Transform pos: -2.5,-54.5 @@ -200531,12 +200609,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26198 + - uid: 26048 components: - type: Transform pos: 27.5,42.5 parent: 2 - - uid: 26199 + - uid: 26049 components: - type: Transform pos: -2.5,-57.5 @@ -200544,7 +200622,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26200 + - uid: 26050 components: - type: Transform pos: -32.5,14.5 @@ -200552,22 +200630,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26201 + - uid: 26051 components: - type: Transform pos: 47.5,-23.5 parent: 2 - - uid: 26202 + - uid: 26052 components: - type: Transform pos: 59.5,-0.5 parent: 2 - - uid: 26203 + - uid: 26053 components: - type: Transform pos: 74.5,8.5 parent: 2 - - uid: 26204 + - uid: 26054 components: - type: Transform pos: 35.5,-1.5 @@ -200575,7 +200653,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26205 + - uid: 26055 components: - type: Transform pos: -49.5,-17.5 @@ -200583,7 +200661,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26206 + - uid: 26056 components: - type: Transform pos: 36.5,-59.5 @@ -200591,17 +200669,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26207 + - uid: 26057 components: - type: Transform pos: 45.5,-25.5 parent: 2 - - uid: 26208 + - uid: 26058 components: - type: Transform pos: 22.5,-5.5 parent: 2 - - uid: 26209 + - uid: 26059 components: - type: Transform pos: -36.5,8.5 @@ -200609,7 +200687,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26210 + - uid: 26060 components: - type: Transform pos: 26.5,-54.5 @@ -200617,12 +200695,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26211 + - uid: 26061 components: - type: Transform pos: -25.5,-8.5 parent: 2 - - uid: 26212 + - uid: 26062 components: - type: Transform pos: -20.5,53.5 @@ -200630,22 +200708,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26213 + - uid: 26063 components: - type: Transform pos: 26.5,2.5 parent: 2 - - uid: 26214 + - uid: 26064 components: - type: Transform pos: -2.5,36.5 parent: 2 - - uid: 26215 + - uid: 26065 components: - type: Transform pos: 27.5,-6.5 parent: 2 - - uid: 26216 + - uid: 26066 components: - type: Transform pos: 45.5,-49.5 @@ -200653,7 +200731,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26217 + - uid: 26067 components: - type: Transform pos: 5.5,31.5 @@ -200661,17 +200739,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26218 + - uid: 26068 components: - type: Transform pos: 49.5,-25.5 parent: 2 - - uid: 26219 + - uid: 26069 components: - type: Transform pos: 38.5,-35.5 parent: 2 - - uid: 26220 + - uid: 26070 components: - type: Transform pos: 16.5,-23.5 @@ -200679,7 +200757,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26221 + - uid: 26071 components: - type: Transform pos: 34.5,-59.5 @@ -200687,12 +200765,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26222 + - uid: 26072 components: - type: Transform pos: 11.5,0.5 parent: 2 - - uid: 26223 + - uid: 26073 components: - type: Transform pos: -21.5,13.5 @@ -200700,7 +200778,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26224 + - uid: 26074 components: - type: Transform pos: -28.5,19.5 @@ -200708,22 +200786,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26225 + - uid: 26075 components: - type: Transform pos: 50.5,21.5 parent: 2 - - uid: 26226 + - uid: 26076 components: - type: Transform pos: -4.5,52.5 parent: 2 - - uid: 26227 + - uid: 26077 components: - type: Transform pos: -11.5,-27.5 parent: 2 - - uid: 26228 + - uid: 26078 components: - type: Transform pos: -12.5,-74.5 @@ -200731,7 +200809,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26229 + - uid: 26079 components: - type: Transform pos: -16.5,39.5 @@ -200739,12 +200817,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26230 + - uid: 26080 components: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 26231 + - uid: 26081 components: - type: Transform pos: -21.5,10.5 @@ -200752,7 +200830,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26232 + - uid: 26082 components: - type: Transform pos: 35.5,-59.5 @@ -200760,7 +200838,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26233 + - uid: 26083 components: - type: Transform pos: -16.5,43.5 @@ -200768,7 +200846,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26234 + - uid: 26084 components: - type: Transform pos: -7.5,-57.5 @@ -200776,12 +200854,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26235 + - uid: 26085 components: - type: Transform pos: -28.5,96.5 parent: 2 - - uid: 26236 + - uid: 26086 components: - type: Transform pos: -20.5,-79.5 @@ -200789,7 +200867,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26237 + - uid: 26087 components: - type: Transform pos: -34.5,16.5 @@ -200797,7 +200875,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26238 + - uid: 26088 components: - type: Transform pos: -58.5,9.5 @@ -200805,12 +200883,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26239 + - uid: 26089 components: - type: Transform pos: 18.5,-51.5 parent: 2 - - uid: 26240 + - uid: 26090 components: - type: Transform pos: 53.5,-23.5 @@ -200818,7 +200896,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26241 + - uid: 26091 components: - type: Transform pos: -65.5,5.5 @@ -200826,7 +200904,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26242 + - uid: 26092 components: - type: Transform pos: 7.5,62.5 @@ -200834,7 +200912,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26243 + - uid: 26093 components: - type: Transform pos: -12.5,-78.5 @@ -200842,7 +200920,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26244 + - uid: 26094 components: - type: Transform pos: -44.5,-25.5 @@ -200850,7 +200928,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26245 + - uid: 26095 components: - type: Transform pos: 30.5,-65.5 @@ -200858,7 +200936,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26246 + - uid: 26096 components: - type: Transform pos: -12.5,-67.5 @@ -200866,7 +200944,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26247 + - uid: 26097 components: - type: Transform pos: -2.5,-35.5 @@ -200874,12 +200952,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26248 + - uid: 26098 components: - type: Transform pos: -25.5,-7.5 parent: 2 - - uid: 26249 + - uid: 26099 components: - type: Transform pos: 10.5,-27.5 @@ -200887,7 +200965,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26250 + - uid: 26100 components: - type: Transform pos: -38.5,10.5 @@ -200895,7 +200973,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26251 + - uid: 26101 components: - type: Transform pos: -23.5,8.5 @@ -200903,7 +200981,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26252 + - uid: 26102 components: - type: Transform pos: 49.5,-35.5 @@ -200911,22 +200989,22 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26253 + - uid: 26103 components: - type: Transform pos: 2.5,-77.5 parent: 2 - - uid: 26254 + - uid: 26104 components: - type: Transform pos: -42.5,4.5 parent: 2 - - uid: 26255 + - uid: 26105 components: - type: Transform pos: -21.5,-3.5 parent: 2 - - uid: 26256 + - uid: 26106 components: - type: Transform pos: -26.5,8.5 @@ -200934,7 +201012,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26257 + - uid: 26107 components: - type: Transform pos: -17.5,-64.5 @@ -200942,7 +201020,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26258 + - uid: 26108 components: - type: Transform pos: -27.5,-13.5 @@ -200950,7 +201028,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26259 + - uid: 26109 components: - type: Transform pos: -67.5,16.5 @@ -200958,7 +201036,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26260 + - uid: 26110 components: - type: Transform pos: 28.5,8.5 @@ -200966,7 +201044,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26261 + - uid: 26111 components: - type: Transform pos: -38.5,-16.5 @@ -200974,12 +201052,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26262 + - uid: 26112 components: - type: Transform pos: -4.5,-16.5 parent: 2 - - uid: 26263 + - uid: 26113 components: - type: Transform pos: 40.5,-16.5 @@ -200987,7 +201065,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26264 + - uid: 26114 components: - type: Transform pos: 53.5,-16.5 @@ -200995,7 +201073,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26265 + - uid: 26115 components: - type: Transform pos: 20.5,-0.5 @@ -201003,7 +201081,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26266 + - uid: 26116 components: - type: Transform pos: 49.5,-31.5 @@ -201011,7 +201089,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26267 + - uid: 26117 components: - type: Transform pos: -56.5,18.5 @@ -201019,7 +201097,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26268 + - uid: 26118 components: - type: Transform pos: -77.5,16.5 @@ -201027,7 +201105,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26269 + - uid: 26119 components: - type: Transform pos: -72.5,16.5 @@ -201035,7 +201113,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26270 + - uid: 26120 components: - type: Transform pos: -15.5,60.5 @@ -201043,17 +201121,17 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26271 + - uid: 26121 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 26272 + - uid: 26122 components: - type: Transform pos: -29.5,-37.5 parent: 2 - - uid: 26273 + - uid: 26123 components: - type: Transform pos: 42.5,-55.5 @@ -201061,12 +201139,12 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26274 + - uid: 26124 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 26275 + - uid: 26125 components: - type: Transform pos: -15.5,-64.5 @@ -201074,7 +201152,7 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26276 + - uid: 26126 components: - type: Transform pos: -60.5,4.5 @@ -201082,311 +201160,311 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 26277 + - uid: 26127 components: - type: Transform pos: 9.5,0.5 parent: 2 - - uid: 26278 + - uid: 26128 components: - type: Transform pos: 74.5,12.5 parent: 2 - - uid: 26279 + - uid: 26129 components: - type: Transform pos: 9.5,11.5 parent: 2 - - uid: 26280 + - uid: 26130 components: - type: Transform pos: 5.5,8.5 parent: 2 - - uid: 26281 + - uid: 26131 components: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 26282 + - uid: 26132 components: - type: Transform pos: 51.5,-24.5 parent: 2 - - uid: 26283 + - uid: 26133 components: - type: Transform pos: 53.5,-13.5 parent: 2 - - uid: 26284 + - uid: 26134 components: - type: Transform pos: 38.5,-41.5 parent: 2 - - uid: 26285 + - uid: 26135 components: - type: Transform pos: -75.5,-3.5 parent: 2 - - uid: 26286 + - uid: 26136 components: - type: Transform pos: 91.5,23.5 parent: 2 - - uid: 26287 + - uid: 26137 components: - type: Transform pos: 93.5,23.5 parent: 2 - - uid: 26288 + - uid: 26138 components: - type: Transform pos: 59.5,21.5 parent: 2 - - uid: 26289 + - uid: 26139 components: - type: Transform pos: 53.5,-49.5 parent: 2 - - uid: 26290 + - uid: 26140 components: - type: Transform pos: 49.5,-49.5 parent: 2 - - uid: 26291 + - uid: 26141 components: - type: Transform pos: 56.5,-30.5 parent: 2 - - uid: 26292 + - uid: 26142 components: - type: Transform pos: -15.5,65.5 parent: 2 - - uid: 26293 + - uid: 26143 components: - type: Transform pos: 55.5,-11.5 parent: 2 - - uid: 26294 + - uid: 26144 components: - type: Transform pos: 55.5,-17.5 parent: 2 - - uid: 26295 + - uid: 26145 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 26296 + - uid: 26146 components: - type: Transform pos: -27.5,65.5 parent: 2 - - uid: 26297 + - uid: 26147 components: - type: Transform pos: -46.5,15.5 parent: 2 - - uid: 26298 + - uid: 26148 components: - type: Transform pos: 98.5,14.5 parent: 2 - - uid: 26299 + - uid: 26149 components: - type: Transform pos: 76.5,2.5 parent: 2 - - uid: 26300 + - uid: 26150 components: - type: Transform pos: 76.5,0.5 parent: 2 - - uid: 26301 + - uid: 26151 components: - type: Transform pos: -71.5,-41.5 parent: 2 - - uid: 26302 + - uid: 26152 components: - type: Transform pos: 41.5,-6.5 parent: 2 - - uid: 26303 + - uid: 26153 components: - type: Transform pos: 9.5,-11.5 parent: 2 - - uid: 26304 + - uid: 26154 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 26305 + - uid: 26155 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 26306 + - uid: 26156 components: - type: Transform pos: 10.5,26.5 parent: 2 - - uid: 26307 + - uid: 26157 components: - type: Transform pos: 58.5,32.5 parent: 2 - - uid: 26308 + - uid: 26158 components: - type: Transform pos: 2.5,26.5 parent: 2 - - uid: 26309 + - uid: 26159 components: - type: Transform pos: 17.5,32.5 parent: 2 - - uid: 26310 + - uid: 26160 components: - type: Transform pos: 61.5,28.5 parent: 2 - - uid: 26311 + - uid: 26161 components: - type: Transform pos: 12.5,27.5 parent: 2 - - uid: 26312 + - uid: 26162 components: - type: Transform pos: 20.5,21.5 parent: 2 - - uid: 26313 + - uid: 26163 components: - type: Transform pos: 28.5,21.5 parent: 2 - - uid: 39539 + - uid: 39366 components: - type: Transform pos: -19.5,32.5 - parent: 38584 - - uid: 39540 + parent: 38411 + - uid: 39367 components: - type: Transform pos: -10.5,-1.5 - parent: 38584 - - uid: 39541 + parent: 38411 + - uid: 39368 components: - type: Transform pos: -14.5,-1.5 - parent: 38584 - - uid: 39542 + parent: 38411 + - uid: 39369 components: - type: Transform pos: -17.5,-7.5 - parent: 38584 - - uid: 39543 + parent: 38411 + - uid: 39370 components: - type: Transform pos: 3.5,-1.5 - parent: 38584 - - uid: 39544 + parent: 38411 + - uid: 39371 components: - type: Transform pos: -22.5,4.5 - parent: 38584 - - uid: 39545 + parent: 38411 + - uid: 39372 components: - type: Transform pos: -22.5,6.5 - parent: 38584 - - uid: 39546 + parent: 38411 + - uid: 39373 components: - type: Transform pos: -13.5,10.5 - parent: 38584 - - uid: 39547 + parent: 38411 + - uid: 39374 components: - type: Transform pos: -11.5,10.5 - parent: 38584 - - uid: 39548 + parent: 38411 + - uid: 39375 components: - type: Transform pos: -2.5,-5.5 - parent: 38584 - - uid: 39549 + parent: 38411 + - uid: 39376 components: - type: Transform pos: -6.5,-3.5 - parent: 38584 - - uid: 39550 + parent: 38411 + - uid: 39377 components: - type: Transform pos: -7.5,0.5 - parent: 38584 - - uid: 39551 + parent: 38411 + - uid: 39378 components: - type: Transform pos: 5.5,0.5 - parent: 38584 + parent: 38411 - proto: PottedPlantRandomPlastic entities: - - uid: 26314 + - uid: 26164 components: - type: Transform pos: 48.5,-2.5 parent: 2 - - uid: 26315 + - uid: 26165 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 26316 + - uid: 26166 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 26317 + - uid: 26167 components: - type: Transform pos: -41.5,-53.5 parent: 2 - - uid: 26318 + - uid: 26168 components: - type: Transform pos: 55.5,-2.5 parent: 2 - - uid: 26319 + - uid: 26169 components: - type: Transform pos: 48.5,-4.5 parent: 2 - - uid: 26320 + - uid: 26170 components: - type: Transform pos: 55.5,-4.5 parent: 2 - - uid: 26321 + - uid: 26171 components: - type: Transform pos: 46.5,-8.5 parent: 2 - - uid: 26322 + - uid: 26172 components: - type: Transform pos: 46.5,-6.5 parent: 2 - proto: PottedPlantRD entities: - - uid: 26323 + - uid: 26173 components: - type: Transform pos: -20.5,-40.5 parent: 2 - - uid: 26324 + - uid: 26174 components: - type: MetaData desc: Выглядит не очень здоровым... @@ -201396,32 +201474,32 @@ entities: parent: 2 - proto: PowerCageHighEmpty entities: - - uid: 39552 + - uid: 39379 components: - type: Transform pos: 10.0045595,21.720764 - parent: 38584 - - uid: 39553 + parent: 38411 + - uid: 39380 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.64746,22.502472 - parent: 38584 + parent: 38411 - proto: PowerCellHigh entities: - - uid: 26325 + - uid: 26175 components: - type: Transform pos: -48.422817,29.613514 parent: 2 - - uid: 26326 + - uid: 26176 components: - type: Transform pos: 27.5,-69.5 parent: 2 - proto: PowerCellRecharger entities: - - uid: 26327 + - uid: 26177 components: - type: Transform pos: -10.5,-27.5 @@ -201446,17 +201524,17 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26328 + - uid: 26178 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 26329 + - uid: 26179 components: - type: Transform pos: 8.5,-60.5 parent: 2 - - uid: 26330 + - uid: 26180 components: - type: Transform pos: -45.5,-12.5 @@ -201481,13 +201559,13 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26331 + - uid: 26181 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-40.5 parent: 2 - - uid: 26332 + - uid: 26182 components: - type: Transform pos: -47.5,-29.5 @@ -201512,7 +201590,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26333 + - uid: 26183 components: - type: Transform pos: -60.5,13.5 @@ -201537,13 +201615,13 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26334 + - uid: 26184 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,9.5 parent: 2 - - uid: 26335 + - uid: 26185 components: - type: Transform pos: 11.5,-3.5 @@ -201574,7 +201652,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26336 + - uid: 26186 components: - type: Transform pos: -50.5,-9.5 @@ -201599,18 +201677,18 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26337 + - uid: 26187 components: - type: Transform pos: 38.5,-63.5 parent: 2 - - uid: 26338 + - uid: 26188 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-55.5 parent: 2 - - uid: 26339 + - uid: 26189 components: - type: Transform pos: -22.5,8.5 @@ -201637,7 +201715,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26340 + - uid: 26190 components: - type: Transform pos: 10.5,46.5 @@ -201662,7 +201740,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26341 + - uid: 26191 components: - type: Transform pos: -55.5,9.5 @@ -201687,7 +201765,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26342 + - uid: 26192 components: - type: Transform pos: 7.5,-16.5 @@ -201712,7 +201790,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26343 + - uid: 26193 components: - type: Transform pos: -4.5,12.5 @@ -201743,7 +201821,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26344 + - uid: 26194 components: - type: Transform pos: -53.5,35.5 @@ -201770,7 +201848,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26345 + - uid: 26195 components: - type: Transform pos: -38.5,13.5 @@ -201797,7 +201875,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 26346 + - uid: 26196 components: - type: Transform pos: 43.5,-44.5 @@ -201822,7 +201900,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26347 + - uid: 26197 components: - type: Transform pos: -9.5,-35.5 @@ -201847,145 +201925,145 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 26348 + - uid: 26198 components: - type: Transform pos: 7.5,90.5 parent: 2 - - uid: 26349 + - uid: 26199 components: - type: Transform pos: 7.5,65.5 parent: 2 - - uid: 26350 + - uid: 26200 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-26.5 parent: 2 - - uid: 26351 + - uid: 26201 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-31.5 parent: 2 - - uid: 26352 + - uid: 26202 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-45.5 parent: 2 - - uid: 26353 + - uid: 26203 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-48.5 parent: 2 - - uid: 26354 + - uid: 26204 components: - type: Transform pos: 75.5,-41.5 parent: 2 - - uid: 26355 + - uid: 26205 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,23.5 parent: 2 - - uid: 26356 + - uid: 26206 components: - type: Transform pos: 36.5,37.5 parent: 2 - - uid: 26357 + - uid: 26207 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-8.5 parent: 2 - - uid: 39554 + - uid: 39381 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 - parent: 38584 + parent: 38411 - proto: PowerCellSmall entities: - - uid: 26358 + - uid: 26208 components: - type: Transform pos: 12.279408,82.24263 parent: 2 - - uid: 26359 + - uid: 26209 components: - type: Transform pos: 16.412798,54.560455 parent: 2 - type: Physics canCollide: False - - uid: 26360 + - uid: 26210 components: - type: Transform pos: -50.5,-9.5 parent: 2 - type: Physics canCollide: False - - uid: 26361 + - uid: 26211 components: - type: Transform pos: 43.575706,-44.36233 parent: 2 - type: Physics canCollide: False - - uid: 26362 + - uid: 26212 components: - type: Transform pos: 9.637667,-3.4686117 parent: 2 - proto: PoweredLEDSmallLight entities: - - uid: 26363 + - uid: 26213 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,29.5 parent: 2 - - uid: 26364 + - uid: 26214 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,33.5 parent: 2 - - uid: 26365 + - uid: 26215 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,37.5 parent: 2 - - uid: 26366 + - uid: 26216 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,41.5 parent: 2 - - uid: 26367 + - uid: 26217 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,45.5 parent: 2 - - uid: 26368 + - uid: 26218 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,49.5 parent: 2 - - uid: 26369 + - uid: 26219 components: - type: Transform pos: -76.5,24.5 parent: 2 - - uid: 26370 + - uid: 26220 components: - type: Transform rot: 3.141592653589793 rad @@ -201993,194 +202071,194 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 26371 + - uid: 26221 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-8.5 parent: 2 - - uid: 26372 + - uid: 26222 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-6.5 parent: 2 - - uid: 26373 + - uid: 26223 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,21.5 parent: 2 - - uid: 26374 + - uid: 26224 components: - type: Transform pos: 63.5,26.5 parent: 2 - - uid: 26375 + - uid: 26225 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 - - uid: 26376 + - uid: 26226 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,31.5 parent: 2 - - uid: 26377 + - uid: 26227 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,31.5 parent: 2 - - uid: 26378 + - uid: 26228 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,29.5 parent: 2 - - uid: 26379 + - uid: 26229 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-9.5 parent: 2 - - uid: 26380 + - uid: 26230 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,54.5 parent: 2 - - uid: 26381 + - uid: 26231 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,59.5 parent: 2 - - uid: 26382 + - uid: 26232 components: - type: Transform pos: -64.5,56.5 parent: 2 - - uid: 26383 + - uid: 26233 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,11.5 parent: 2 - - uid: 26384 + - uid: 26234 components: - type: Transform pos: -51.5,30.5 parent: 2 - - uid: 26385 + - uid: 26235 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,63.5 parent: 2 - - uid: 26386 + - uid: 26236 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,72.5 parent: 2 - - uid: 26387 + - uid: 26237 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,93.5 parent: 2 - - uid: 26388 + - uid: 26238 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,87.5 parent: 2 - - uid: 26389 + - uid: 26239 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,59.5 parent: 2 - - uid: 26390 + - uid: 26240 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,31.5 parent: 2 - - uid: 26391 + - uid: 26241 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-64.5 parent: 2 - - uid: 26392 + - uid: 26242 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-64.5 parent: 2 - - uid: 26393 + - uid: 26243 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-64.5 parent: 2 - - uid: 26394 + - uid: 26244 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,26.5 parent: 2 - - uid: 26395 + - uid: 26245 components: - type: Transform pos: -8.5,58.5 parent: 2 - - uid: 26396 + - uid: 26246 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,67.5 parent: 2 - - uid: 26397 + - uid: 26247 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,67.5 parent: 2 - - uid: 26398 + - uid: 26248 components: - type: Transform pos: -14.5,58.5 parent: 2 - - uid: 26399 + - uid: 26249 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,3.5 parent: 2 - - uid: 26400 + - uid: 26250 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,66.5 parent: 2 - - uid: 26401 + - uid: 26251 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,59.5 parent: 2 - - uid: 26402 + - uid: 26252 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-45.5 parent: 2 - - uid: 26403 + - uid: 26253 components: - type: Transform rot: 3.141592653589793 rad @@ -202188,14 +202266,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26404 + - uid: 26254 components: - type: Transform pos: -8.5,-18.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26405 + - uid: 26255 components: - type: Transform rot: 3.141592653589793 rad @@ -202203,7 +202281,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26406 + - uid: 26256 components: - type: Transform rot: 1.5707963267948966 rad @@ -202211,7 +202289,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26407 + - uid: 26257 components: - type: Transform rot: -1.5707963267948966 rad @@ -202219,7 +202297,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26408 + - uid: 26258 components: - type: Transform rot: 1.5707963267948966 rad @@ -202227,7 +202305,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26409 + - uid: 26259 components: - type: Transform rot: 1.5707963267948966 rad @@ -202235,7 +202313,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26410 + - uid: 26260 components: - type: Transform rot: 1.5707963267948966 rad @@ -202243,13 +202321,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26411 + - uid: 26261 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-46.5 parent: 2 - - uid: 26412 + - uid: 26262 components: - type: Transform rot: 1.5707963267948966 rad @@ -202257,20 +202335,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26413 + - uid: 26263 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-5.5 parent: 2 - - uid: 26414 + - uid: 26264 components: - type: Transform pos: -58.5,20.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26415 + - uid: 26265 components: - type: Transform rot: -1.5707963267948966 rad @@ -202278,7 +202356,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26416 + - uid: 26266 components: - type: Transform rot: 1.5707963267948966 rad @@ -202286,7 +202364,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26417 + - uid: 26267 components: - type: Transform rot: 3.141592653589793 rad @@ -202294,7 +202372,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26418 + - uid: 26268 components: - type: Transform rot: 1.5707963267948966 rad @@ -202302,7 +202380,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26419 + - uid: 26269 components: - type: Transform rot: 1.5707963267948966 rad @@ -202310,7 +202388,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26420 + - uid: 26270 components: - type: Transform rot: 1.5707963267948966 rad @@ -202318,7 +202396,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26421 + - uid: 26271 components: - type: Transform rot: 1.5707963267948966 rad @@ -202326,7 +202404,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26422 + - uid: 26272 components: - type: Transform rot: 3.141592653589793 rad @@ -202334,7 +202412,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26423 + - uid: 26273 components: - type: Transform rot: 3.141592653589793 rad @@ -202342,20 +202420,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26424 + - uid: 26274 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,14.5 parent: 2 - - uid: 26425 + - uid: 26275 components: - type: Transform pos: -50.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26426 + - uid: 26276 components: - type: Transform rot: 1.5707963267948966 rad @@ -202363,7 +202441,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26427 + - uid: 26277 components: - type: Transform rot: 1.5707963267948966 rad @@ -202371,21 +202449,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26428 + - uid: 26278 components: - type: Transform pos: -2.5,24.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26429 + - uid: 26279 components: - type: Transform pos: -20.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26430 + - uid: 26280 components: - type: Transform rot: -1.5707963267948966 rad @@ -202393,30 +202471,30 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26431 + - uid: 26281 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,29.5 parent: 2 - - uid: 26432 + - uid: 26282 components: - type: Transform pos: -10.5,24.5 parent: 2 - - uid: 26433 + - uid: 26283 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-41.5 parent: 2 - - uid: 26434 + - uid: 26284 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,5.5 parent: 2 - - uid: 26435 + - uid: 26285 components: - type: Transform rot: 3.141592653589793 rad @@ -202424,7 +202502,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26436 + - uid: 26286 components: - type: Transform rot: -1.5707963267948966 rad @@ -202432,18 +202510,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26437 + - uid: 26287 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-14.5 parent: 2 - - uid: 26438 + - uid: 26288 components: - type: Transform pos: 28.5,-24.5 parent: 2 - - uid: 26439 + - uid: 26289 components: - type: Transform rot: 3.141592653589793 rad @@ -202451,28 +202529,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26440 + - uid: 26290 components: - type: Transform pos: 53.5,13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26441 + - uid: 26291 components: - type: Transform pos: 57.5,13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26442 + - uid: 26292 components: - type: Transform pos: 50.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26443 + - uid: 26293 components: - type: Transform rot: 3.141592653589793 rad @@ -202480,7 +202558,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26444 + - uid: 26294 components: - type: Transform rot: -1.5707963267948966 rad @@ -202488,14 +202566,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26445 + - uid: 26295 components: - type: Transform pos: 5.5,-7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26446 + - uid: 26296 components: - type: Transform rot: 3.141592653589793 rad @@ -202503,7 +202581,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26447 + - uid: 26297 components: - type: Transform rot: 1.5707963267948966 rad @@ -202511,7 +202589,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26448 + - uid: 26298 components: - type: Transform rot: 3.141592653589793 rad @@ -202519,29 +202597,29 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26449 + - uid: 26299 components: - type: Transform pos: -13.5,-55.5 parent: 2 - - uid: 26450 + - uid: 26300 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-59.5 parent: 2 - - uid: 26451 + - uid: 26301 components: - type: Transform pos: 29.5,52.5 parent: 2 - - uid: 26452 + - uid: 26302 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,48.5 parent: 2 - - uid: 26453 + - uid: 26303 components: - type: Transform rot: -1.5707963267948966 rad @@ -202549,14 +202627,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26454 + - uid: 26304 components: - type: Transform pos: 46.5,13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26455 + - uid: 26305 components: - type: Transform rot: -1.5707963267948966 rad @@ -202564,12 +202642,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26456 + - uid: 26306 components: - type: Transform pos: 7.5,-18.5 parent: 2 - - uid: 26457 + - uid: 26307 components: - type: Transform rot: 1.5707963267948966 rad @@ -202577,13 +202655,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26458 + - uid: 26308 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,48.5 parent: 2 - - uid: 26459 + - uid: 26309 components: - type: Transform rot: 3.141592653589793 rad @@ -202591,7 +202669,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26460 + - uid: 26310 components: - type: Transform rot: 3.141592653589793 rad @@ -202599,14 +202677,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26461 + - uid: 26311 components: - type: Transform pos: -18.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26462 + - uid: 26312 components: - type: Transform rot: 1.5707963267948966 rad @@ -202614,7 +202692,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26463 + - uid: 26313 components: - type: Transform rot: 3.141592653589793 rad @@ -202622,7 +202700,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26464 + - uid: 26314 components: - type: Transform rot: 3.141592653589793 rad @@ -202630,7 +202708,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26465 + - uid: 26315 components: - type: Transform rot: 1.5707963267948966 rad @@ -202638,7 +202716,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26466 + - uid: 26316 components: - type: Transform rot: 3.141592653589793 rad @@ -202647,14 +202725,14 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26467 + - uid: 26317 components: - type: Transform pos: -45.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26468 + - uid: 26318 components: - type: Transform rot: -1.5707963267948966 rad @@ -202662,7 +202740,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26469 + - uid: 26319 components: - type: Transform rot: 3.141592653589793 rad @@ -202670,26 +202748,26 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26470 + - uid: 26320 components: - type: Transform pos: 35.5,52.5 parent: 2 - - uid: 26471 + - uid: 26321 components: - type: Transform pos: 72.5,19.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26472 + - uid: 26322 components: - type: Transform pos: -6.5,-7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26473 + - uid: 26323 components: - type: Transform rot: 3.141592653589793 rad @@ -202697,24 +202775,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26474 + - uid: 26324 components: - type: Transform pos: -69.5,2.5 parent: 2 - - uid: 26475 + - uid: 26325 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 2 - - uid: 26476 + - uid: 26326 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-59.5 parent: 2 - - uid: 26477 + - uid: 26327 components: - type: Transform rot: 1.5707963267948966 rad @@ -202722,7 +202800,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26478 + - uid: 26328 components: - type: Transform rot: -1.5707963267948966 rad @@ -202730,14 +202808,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26479 + - uid: 26329 components: - type: Transform pos: -13.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26480 + - uid: 26330 components: - type: Transform rot: -1.5707963267948966 rad @@ -202745,14 +202823,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26481 + - uid: 26331 components: - type: Transform pos: -7.5,-63.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26482 + - uid: 26332 components: - type: Transform rot: 3.141592653589793 rad @@ -202760,7 +202838,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26483 + - uid: 26333 components: - type: Transform rot: -1.5707963267948966 rad @@ -202768,7 +202846,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26484 + - uid: 26334 components: - type: Transform rot: 3.141592653589793 rad @@ -202776,19 +202854,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26485 + - uid: 26335 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,19.5 parent: 2 - - uid: 26486 + - uid: 26336 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,15.5 parent: 2 - - uid: 26487 + - uid: 26337 components: - type: Transform rot: 3.141592653589793 rad @@ -202796,30 +202874,30 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26488 + - uid: 26338 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-14.5 parent: 2 - - uid: 26489 + - uid: 26339 components: - type: Transform pos: -14.5,-64.5 parent: 2 - - uid: 26490 + - uid: 26340 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,24.5 parent: 2 - - uid: 26491 + - uid: 26341 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-39.5 parent: 2 - - uid: 26492 + - uid: 26342 components: - type: Transform rot: 3.141592653589793 rad @@ -202827,7 +202905,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26493 + - uid: 26343 components: - type: Transform rot: -1.5707963267948966 rad @@ -202835,7 +202913,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26494 + - uid: 26344 components: - type: Transform rot: 3.141592653589793 rad @@ -202843,14 +202921,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26495 + - uid: 26345 components: - type: Transform pos: -13.5,11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26496 + - uid: 26346 components: - type: Transform rot: 1.5707963267948966 rad @@ -202858,21 +202936,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26497 + - uid: 26347 components: - type: Transform pos: -8.5,0.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26498 + - uid: 26348 components: - type: Transform pos: -14.5,-3.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26499 + - uid: 26349 components: - type: Transform rot: 1.5707963267948966 rad @@ -202880,7 +202958,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26500 + - uid: 26350 components: - type: Transform rot: 3.141592653589793 rad @@ -202888,14 +202966,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26501 + - uid: 26351 components: - type: Transform pos: -18.5,-32.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26502 + - uid: 26352 components: - type: Transform rot: 3.141592653589793 rad @@ -202903,7 +202981,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26503 + - uid: 26353 components: - type: Transform rot: -1.5707963267948966 rad @@ -202911,13 +202989,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26504 + - uid: 26354 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-53.5 parent: 2 - - uid: 26505 + - uid: 26355 components: - type: Transform rot: 1.5707963267948966 rad @@ -202925,14 +203003,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26506 + - uid: 26356 components: - type: Transform pos: -29.5,55.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26507 + - uid: 26357 components: - type: Transform rot: -1.5707963267948966 rad @@ -202940,7 +203018,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26508 + - uid: 26358 components: - type: Transform rot: 3.141592653589793 rad @@ -202948,14 +203026,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26509 + - uid: 26359 components: - type: Transform pos: 25.5,32.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26510 + - uid: 26360 components: - type: Transform rot: 1.5707963267948966 rad @@ -202963,25 +203041,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26511 + - uid: 26361 components: - type: Transform pos: 59.5,-9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26512 + - uid: 26362 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,32.5 parent: 2 - - uid: 26513 + - uid: 26363 components: - type: Transform pos: -10.5,54.5 parent: 2 - - uid: 26514 + - uid: 26364 components: - type: Transform rot: 3.141592653589793 rad @@ -202989,7 +203067,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26515 + - uid: 26365 components: - type: Transform rot: 1.5707963267948966 rad @@ -202997,7 +203075,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26516 + - uid: 26366 components: - type: Transform rot: 1.5707963267948966 rad @@ -203005,7 +203083,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26517 + - uid: 26367 components: - type: Transform rot: 1.5707963267948966 rad @@ -203013,7 +203091,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26518 + - uid: 26368 components: - type: Transform rot: -1.5707963267948966 rad @@ -203021,24 +203099,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26519 + - uid: 26369 components: - type: Transform pos: -2.5,42.5 parent: 2 - - uid: 26520 + - uid: 26370 components: - type: Transform pos: 28.5,2.5 parent: 2 - - uid: 26521 + - uid: 26371 components: - type: Transform pos: -51.5,-24.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26522 + - uid: 26372 components: - type: Transform rot: 1.5707963267948966 rad @@ -203046,7 +203124,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26523 + - uid: 26373 components: - type: Transform rot: -1.5707963267948966 rad @@ -203054,14 +203132,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26524 + - uid: 26374 components: - type: Transform pos: -9.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26525 + - uid: 26375 components: - type: Transform rot: 1.5707963267948966 rad @@ -203069,7 +203147,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26526 + - uid: 26376 components: - type: Transform rot: 3.141592653589793 rad @@ -203077,14 +203155,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26527 + - uid: 26377 components: - type: Transform pos: 52.5,-13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26528 + - uid: 26378 components: - type: Transform rot: 1.5707963267948966 rad @@ -203092,7 +203170,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26529 + - uid: 26379 components: - type: Transform rot: -1.5707963267948966 rad @@ -203100,7 +203178,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26530 + - uid: 26380 components: - type: Transform rot: -1.5707963267948966 rad @@ -203108,7 +203186,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26531 + - uid: 26381 components: - type: Transform rot: 1.5707963267948966 rad @@ -203116,7 +203194,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26532 + - uid: 26382 components: - type: Transform rot: 1.5707963267948966 rad @@ -203124,21 +203202,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26533 + - uid: 26383 components: - type: Transform pos: 16.5,54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26534 + - uid: 26384 components: - type: Transform pos: 22.5,54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26535 + - uid: 26385 components: - type: Transform rot: 1.5707963267948966 rad @@ -203146,7 +203224,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26536 + - uid: 26386 components: - type: Transform rot: 3.141592653589793 rad @@ -203154,7 +203232,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26537 + - uid: 26387 components: - type: Transform rot: -1.5707963267948966 rad @@ -203162,14 +203240,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26538 + - uid: 26388 components: - type: Transform pos: -59.5,42.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26539 + - uid: 26389 components: - type: Transform rot: 1.5707963267948966 rad @@ -203177,7 +203255,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26540 + - uid: 26390 components: - type: Transform rot: -1.5707963267948966 rad @@ -203185,12 +203263,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26541 + - uid: 26391 components: - type: Transform pos: 62.5,-2.5 parent: 2 - - uid: 26542 + - uid: 26392 components: - type: Transform rot: 3.141592653589793 rad @@ -203198,13 +203276,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26543 + - uid: 26393 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,52.5 parent: 2 - - uid: 26544 + - uid: 26394 components: - type: Transform rot: 1.5707963267948966 rad @@ -203212,7 +203290,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26545 + - uid: 26395 components: - type: Transform rot: -1.5707963267948966 rad @@ -203220,14 +203298,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26546 + - uid: 26396 components: - type: Transform pos: 10.5,46.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26547 + - uid: 26397 components: - type: Transform rot: -1.5707963267948966 rad @@ -203235,7 +203313,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26548 + - uid: 26398 components: - type: Transform rot: -1.5707963267948966 rad @@ -203243,7 +203321,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26549 + - uid: 26399 components: - type: Transform rot: 3.141592653589793 rad @@ -203251,7 +203329,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26550 + - uid: 26400 components: - type: Transform rot: 1.5707963267948966 rad @@ -203259,7 +203337,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26551 + - uid: 26401 components: - type: Transform rot: 1.5707963267948966 rad @@ -203267,7 +203345,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26552 + - uid: 26402 components: - type: Transform rot: 1.5707963267948966 rad @@ -203275,7 +203353,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26553 + - uid: 26403 components: - type: Transform rot: 1.5707963267948966 rad @@ -203284,14 +203362,14 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26554 + - uid: 26404 components: - type: Transform pos: 5.5,-42.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26555 + - uid: 26405 components: - type: Transform rot: 1.5707963267948966 rad @@ -203299,7 +203377,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26556 + - uid: 26406 components: - type: Transform rot: 3.141592653589793 rad @@ -203307,21 +203385,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26557 + - uid: 26407 components: - type: Transform pos: -21.5,-79.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26558 + - uid: 26408 components: - type: Transform pos: 9.5,11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26559 + - uid: 26409 components: - type: Transform rot: 3.141592653589793 rad @@ -203329,7 +203407,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26560 + - uid: 26410 components: - type: Transform rot: 3.141592653589793 rad @@ -203337,7 +203415,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26561 + - uid: 26411 components: - type: Transform rot: 1.5707963267948966 rad @@ -203345,7 +203423,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26562 + - uid: 26412 components: - type: Transform rot: 1.5707963267948966 rad @@ -203353,7 +203431,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26563 + - uid: 26413 components: - type: Transform rot: -1.5707963267948966 rad @@ -203361,7 +203439,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26564 + - uid: 26414 components: - type: Transform rot: -1.5707963267948966 rad @@ -203369,7 +203447,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26565 + - uid: 26415 components: - type: Transform rot: -1.5707963267948966 rad @@ -203377,7 +203455,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26566 + - uid: 26416 components: - type: Transform rot: 1.5707963267948966 rad @@ -203385,7 +203463,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26567 + - uid: 26417 components: - type: Transform rot: 1.5707963267948966 rad @@ -203393,34 +203471,34 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26568 + - uid: 26418 components: - type: Transform pos: -50.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26569 + - uid: 26419 components: - type: Transform pos: -55.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26570 + - uid: 26420 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,45.5 parent: 2 - - uid: 26571 + - uid: 26421 components: - type: Transform pos: 9.5,-37.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26572 + - uid: 26422 components: - type: Transform rot: 1.5707963267948966 rad @@ -203428,7 +203506,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26573 + - uid: 26423 components: - type: Transform rot: 1.5707963267948966 rad @@ -203436,7 +203514,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26574 + - uid: 26424 components: - type: Transform rot: -1.5707963267948966 rad @@ -203444,7 +203522,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26575 + - uid: 26425 components: - type: Transform rot: -1.5707963267948966 rad @@ -203452,7 +203530,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26576 + - uid: 26426 components: - type: Transform rot: 1.5707963267948966 rad @@ -203460,7 +203538,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26577 + - uid: 26427 components: - type: Transform rot: 1.5707963267948966 rad @@ -203468,7 +203546,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26578 + - uid: 26428 components: - type: Transform rot: -1.5707963267948966 rad @@ -203476,7 +203554,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26579 + - uid: 26429 components: - type: Transform rot: 3.141592653589793 rad @@ -203484,7 +203562,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26580 + - uid: 26430 components: - type: Transform rot: 1.5707963267948966 rad @@ -203492,7 +203570,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26581 + - uid: 26431 components: - type: Transform rot: -1.5707963267948966 rad @@ -203500,7 +203578,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26582 + - uid: 26432 components: - type: Transform rot: 3.141592653589793 rad @@ -203508,18 +203586,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26583 + - uid: 26433 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,11.5 parent: 2 - - uid: 26584 + - uid: 26434 components: - type: Transform pos: -19.5,-49.5 parent: 2 - - uid: 26585 + - uid: 26435 components: - type: Transform rot: -1.5707963267948966 rad @@ -203527,7 +203605,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26586 + - uid: 26436 components: - type: Transform rot: -1.5707963267948966 rad @@ -203535,7 +203613,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26587 + - uid: 26437 components: - type: Transform rot: 1.5707963267948966 rad @@ -203543,13 +203621,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26588 + - uid: 26438 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 - - uid: 26589 + - uid: 26439 components: - type: Transform rot: 3.141592653589793 rad @@ -203557,7 +203635,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26590 + - uid: 26440 components: - type: Transform rot: 3.141592653589793 rad @@ -203565,7 +203643,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26591 + - uid: 26441 components: - type: Transform rot: 3.141592653589793 rad @@ -203573,7 +203651,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26592 + - uid: 26442 components: - type: Transform rot: 1.5707963267948966 rad @@ -203581,7 +203659,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26593 + - uid: 26443 components: - type: Transform rot: 1.5707963267948966 rad @@ -203589,20 +203667,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26594 + - uid: 26444 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,53.5 parent: 2 - - uid: 26595 + - uid: 26445 components: - type: Transform pos: -35.5,-26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26596 + - uid: 26446 components: - type: Transform rot: 1.5707963267948966 rad @@ -203610,7 +203688,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26597 + - uid: 26447 components: - type: Transform rot: 3.141592653589793 rad @@ -203618,33 +203696,33 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26598 + - uid: 26448 components: - type: Transform pos: -11.5,46.5 parent: 2 - - uid: 26599 + - uid: 26449 components: - type: Transform pos: -47.5,-11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26600 + - uid: 26450 components: - type: Transform pos: 17.5,-23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26601 + - uid: 26451 components: - type: Transform pos: -63.5,11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26602 + - uid: 26452 components: - type: Transform rot: 3.141592653589793 rad @@ -203652,20 +203730,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26603 + - uid: 26453 components: - type: Transform pos: 21.5,-30.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26604 + - uid: 26454 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-16.5 parent: 2 - - uid: 26605 + - uid: 26455 components: - type: Transform rot: 1.5707963267948966 rad @@ -203673,25 +203751,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26606 + - uid: 26456 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,52.5 parent: 2 - - uid: 26607 + - uid: 26457 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,52.5 parent: 2 - - uid: 26608 + - uid: 26458 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,50.5 parent: 2 - - uid: 26609 + - uid: 26459 components: - type: Transform rot: 3.141592653589793 rad @@ -203699,25 +203777,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26610 + - uid: 26460 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,37.5 parent: 2 - - uid: 26611 + - uid: 26461 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,52.5 parent: 2 - - uid: 26612 + - uid: 26462 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,56.5 parent: 2 - - uid: 26613 + - uid: 26463 components: - type: Transform rot: 1.5707963267948966 rad @@ -203725,7 +203803,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26614 + - uid: 26464 components: - type: Transform rot: -1.5707963267948966 rad @@ -203733,13 +203811,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26615 + - uid: 26465 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,33.5 parent: 2 - - uid: 26616 + - uid: 26466 components: - type: Transform rot: 1.5707963267948966 rad @@ -203747,7 +203825,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26617 + - uid: 26467 components: - type: Transform rot: 1.5707963267948966 rad @@ -203755,7 +203833,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26618 + - uid: 26468 components: - type: Transform rot: 1.5707963267948966 rad @@ -203763,7 +203841,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26619 + - uid: 26469 components: - type: Transform rot: -1.5707963267948966 rad @@ -203771,7 +203849,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26620 + - uid: 26470 components: - type: Transform rot: 3.141592653589793 rad @@ -203780,7 +203858,7 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26621 + - uid: 26471 components: - type: Transform rot: 1.5707963267948966 rad @@ -203788,14 +203866,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26622 + - uid: 26472 components: - type: Transform pos: -21.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26623 + - uid: 26473 components: - type: Transform rot: -1.5707963267948966 rad @@ -203803,13 +203881,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26624 + - uid: 26474 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,36.5 parent: 2 - - uid: 26625 + - uid: 26475 components: - type: Transform rot: 1.5707963267948966 rad @@ -203817,7 +203895,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26626 + - uid: 26476 components: - type: Transform rot: -1.5707963267948966 rad @@ -203825,7 +203903,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26627 + - uid: 26477 components: - type: Transform rot: 1.5707963267948966 rad @@ -203833,7 +203911,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26628 + - uid: 26478 components: - type: Transform rot: 3.141592653589793 rad @@ -203841,7 +203919,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26629 + - uid: 26479 components: - type: Transform rot: -1.5707963267948966 rad @@ -203849,7 +203927,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26630 + - uid: 26480 components: - type: Transform rot: 1.5707963267948966 rad @@ -203857,7 +203935,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26631 + - uid: 26481 components: - type: Transform rot: 1.5707963267948966 rad @@ -203865,20 +203943,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26632 + - uid: 26482 components: - type: Transform pos: -28.5,-1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26633 + - uid: 26483 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-58.5 parent: 2 - - uid: 26634 + - uid: 26484 components: - type: Transform rot: 1.5707963267948966 rad @@ -203886,13 +203964,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26635 + - uid: 26485 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,14.5 parent: 2 - - uid: 26636 + - uid: 26486 components: - type: Transform rot: -1.5707963267948966 rad @@ -203900,7 +203978,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26637 + - uid: 26487 components: - type: Transform rot: 3.141592653589793 rad @@ -203908,13 +203986,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26638 + - uid: 26488 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 - - uid: 26639 + - uid: 26489 components: - type: Transform rot: 3.141592653589793 rad @@ -203922,14 +204000,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26640 + - uid: 26490 components: - type: Transform pos: -7.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26641 + - uid: 26491 components: - type: Transform rot: -1.5707963267948966 rad @@ -203937,7 +204015,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26642 + - uid: 26492 components: - type: Transform rot: -1.5707963267948966 rad @@ -203945,7 +204023,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26643 + - uid: 26493 components: - type: Transform rot: 1.5707963267948966 rad @@ -203953,7 +204031,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26644 + - uid: 26494 components: - type: Transform rot: 1.5707963267948966 rad @@ -203961,7 +204039,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26645 + - uid: 26495 components: - type: Transform rot: 1.5707963267948966 rad @@ -203969,7 +204047,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26646 + - uid: 26496 components: - type: Transform rot: 1.5707963267948966 rad @@ -203977,7 +204055,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26647 + - uid: 26497 components: - type: Transform rot: -1.5707963267948966 rad @@ -203985,14 +204063,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26648 + - uid: 26498 components: - type: Transform pos: -2.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26649 + - uid: 26499 components: - type: Transform rot: 3.141592653589793 rad @@ -204000,13 +204078,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26650 + - uid: 26500 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-47.5 parent: 2 - - uid: 26651 + - uid: 26501 components: - type: Transform rot: 3.141592653589793 rad @@ -204014,13 +204092,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26652 + - uid: 26502 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 - - uid: 26653 + - uid: 26503 components: - type: Transform rot: 1.5707963267948966 rad @@ -204028,19 +204106,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26654 + - uid: 26504 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-24.5 parent: 2 - - uid: 26655 + - uid: 26505 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 - - uid: 26656 + - uid: 26506 components: - type: Transform rot: 3.141592653589793 rad @@ -204048,7 +204126,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26657 + - uid: 26507 components: - type: Transform rot: 3.141592653589793 rad @@ -204056,12 +204134,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26658 + - uid: 26508 components: - type: Transform pos: 32.5,32.5 parent: 2 - - uid: 26659 + - uid: 26509 components: - type: Transform rot: 3.141592653589793 rad @@ -204069,7 +204147,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26660 + - uid: 26510 components: - type: Transform rot: 3.141592653589793 rad @@ -204077,7 +204155,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26661 + - uid: 26511 components: - type: Transform rot: -1.5707963267948966 rad @@ -204085,7 +204163,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26662 + - uid: 26512 components: - type: Transform rot: 3.141592653589793 rad @@ -204093,7 +204171,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26663 + - uid: 26513 components: - type: Transform rot: 3.141592653589793 rad @@ -204101,7 +204179,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26664 + - uid: 26514 components: - type: Transform rot: -1.5707963267948966 rad @@ -204109,7 +204187,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26665 + - uid: 26515 components: - type: Transform rot: -1.5707963267948966 rad @@ -204117,7 +204195,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26666 + - uid: 26516 components: - type: Transform rot: -1.5707963267948966 rad @@ -204125,7 +204203,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26667 + - uid: 26517 components: - type: Transform rot: 1.5707963267948966 rad @@ -204133,13 +204211,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26669 + - uid: 26518 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,8.5 parent: 2 - - uid: 26670 + - uid: 26519 components: - type: Transform rot: 1.5707963267948966 rad @@ -204147,7 +204225,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26671 + - uid: 26520 components: - type: Transform rot: 1.5707963267948966 rad @@ -204155,37 +204233,37 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26672 + - uid: 26521 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,42.5 parent: 2 - - uid: 26674 + - uid: 26522 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,52.5 parent: 2 - - uid: 26675 + - uid: 26523 components: - type: Transform pos: 36.5,12.5 parent: 2 - - uid: 26676 + - uid: 26524 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-16.5 parent: 2 - - uid: 26677 + - uid: 26525 components: - type: Transform pos: 77.5,-21.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26678 + - uid: 26526 components: - type: Transform rot: 3.141592653589793 rad @@ -204193,7 +204271,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26679 + - uid: 26527 components: - type: Transform rot: 1.5707963267948966 rad @@ -204201,13 +204279,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26680 + - uid: 26528 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-58.5 parent: 2 - - uid: 26681 + - uid: 26529 components: - type: Transform rot: -1.5707963267948966 rad @@ -204215,7 +204293,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26682 + - uid: 26530 components: - type: Transform rot: 3.141592653589793 rad @@ -204223,7 +204301,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26683 + - uid: 26531 components: - type: Transform rot: 3.141592653589793 rad @@ -204231,7 +204309,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26684 + - uid: 26532 components: - type: Transform rot: 1.5707963267948966 rad @@ -204239,12 +204317,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26685 + - uid: 26533 components: - type: Transform pos: -18.5,-55.5 parent: 2 - - uid: 26686 + - uid: 26534 components: - type: Transform rot: 3.141592653589793 rad @@ -204252,13 +204330,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26687 + - uid: 26535 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,21.5 parent: 2 - - uid: 26688 + - uid: 26536 components: - type: Transform rot: 1.5707963267948966 rad @@ -204266,19 +204344,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26689 + - uid: 26537 components: - type: Transform pos: -9.5,-45.5 parent: 2 - - uid: 26690 + - uid: 26538 components: - type: Transform pos: 2.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26691 + - uid: 26539 components: - type: Transform rot: -1.5707963267948966 rad @@ -204286,7 +204364,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26692 + - uid: 26540 components: - type: Transform rot: -1.5707963267948966 rad @@ -204294,7 +204372,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26693 + - uid: 26541 components: - type: Transform rot: 3.141592653589793 rad @@ -204302,7 +204380,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26694 + - uid: 26542 components: - type: Transform rot: -1.5707963267948966 rad @@ -204310,13 +204388,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26695 + - uid: 26543 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,47.5 parent: 2 - - uid: 26696 + - uid: 26544 components: - type: Transform rot: 3.141592653589793 rad @@ -204324,7 +204402,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26697 + - uid: 26545 components: - type: Transform rot: 1.5707963267948966 rad @@ -204332,7 +204410,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26698 + - uid: 26546 components: - type: Transform rot: 1.5707963267948966 rad @@ -204341,7 +204419,7 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26699 + - uid: 26547 components: - type: Transform rot: -1.5707963267948966 rad @@ -204349,55 +204427,55 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26700 + - uid: 26548 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,5.5 parent: 2 - - uid: 26701 + - uid: 26549 components: - type: Transform pos: 15.5,-48.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26702 + - uid: 26550 components: - type: Transform pos: -37.5,50.5 parent: 2 - - uid: 26703 + - uid: 26551 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,37.5 parent: 2 - - uid: 26704 + - uid: 26552 components: - type: Transform pos: -29.5,-49.5 parent: 2 - - uid: 26705 + - uid: 26553 components: - type: Transform pos: -18.5,-23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26706 + - uid: 26554 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-47.5 parent: 2 - - uid: 26707 + - uid: 26555 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 - - uid: 26708 + - uid: 26556 components: - type: Transform rot: 3.141592653589793 rad @@ -204405,13 +204483,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26709 + - uid: 26557 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-44.5 parent: 2 - - uid: 26710 + - uid: 26558 components: - type: Transform rot: 3.141592653589793 rad @@ -204419,7 +204497,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26711 + - uid: 26559 components: - type: Transform rot: 3.141592653589793 rad @@ -204427,19 +204505,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26712 + - uid: 26560 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-14.5 parent: 2 - - uid: 26713 + - uid: 26561 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-49.5 parent: 2 - - uid: 26714 + - uid: 26562 components: - type: Transform rot: 3.141592653589793 rad @@ -204447,7 +204525,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26715 + - uid: 26563 components: - type: Transform rot: 1.5707963267948966 rad @@ -204455,31 +204533,31 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26716 + - uid: 26564 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,45.5 parent: 2 - - uid: 26717 + - uid: 26565 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-2.5 parent: 2 - - uid: 26718 + - uid: 26566 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-0.5 parent: 2 - - uid: 26719 + - uid: 26567 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-54.5 parent: 2 - - uid: 26720 + - uid: 26568 components: - type: Transform rot: -1.5707963267948966 rad @@ -204487,25 +204565,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26721 + - uid: 26569 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-16.5 parent: 2 - - uid: 26722 + - uid: 26570 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-27.5 parent: 2 - - uid: 26723 + - uid: 26571 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,31.5 parent: 2 - - uid: 26724 + - uid: 26572 components: - type: Transform rot: -1.5707963267948966 rad @@ -204513,18 +204591,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26725 + - uid: 26573 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 - - uid: 26726 + - uid: 26574 components: - type: Transform pos: -56.5,51.5 parent: 2 - - uid: 26727 + - uid: 26575 components: - type: Transform rot: -1.5707963267948966 rad @@ -204532,7 +204610,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26728 + - uid: 26576 components: - type: Transform rot: -1.5707963267948966 rad @@ -204540,7 +204618,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26729 + - uid: 26577 components: - type: Transform rot: 3.141592653589793 rad @@ -204548,7 +204626,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26730 + - uid: 26578 components: - type: Transform rot: 3.141592653589793 rad @@ -204556,7 +204634,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26731 + - uid: 26579 components: - type: Transform rot: -1.5707963267948966 rad @@ -204564,7 +204642,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26732 + - uid: 26580 components: - type: Transform rot: 1.5707963267948966 rad @@ -204572,7 +204650,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26733 + - uid: 26581 components: - type: Transform rot: 3.141592653589793 rad @@ -204580,19 +204658,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26734 + - uid: 26582 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,28.5 parent: 2 - - uid: 26735 + - uid: 26583 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,16.5 parent: 2 - - uid: 26736 + - uid: 26584 components: - type: Transform rot: -1.5707963267948966 rad @@ -204600,7 +204678,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26737 + - uid: 26585 components: - type: Transform rot: 3.141592653589793 rad @@ -204608,7 +204686,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26738 + - uid: 26586 components: - type: Transform rot: -1.5707963267948966 rad @@ -204616,7 +204694,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26739 + - uid: 26587 components: - type: Transform rot: -1.5707963267948966 rad @@ -204624,7 +204702,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26740 + - uid: 26588 components: - type: Transform rot: 3.141592653589793 rad @@ -204632,19 +204710,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26741 + - uid: 26589 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,45.5 parent: 2 - - uid: 26742 + - uid: 26590 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,40.5 parent: 2 - - uid: 26743 + - uid: 26591 components: - type: Transform rot: 1.5707963267948966 rad @@ -204652,7 +204730,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26744 + - uid: 26592 components: - type: Transform rot: -1.5707963267948966 rad @@ -204660,14 +204738,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26745 + - uid: 26593 components: - type: Transform pos: -46.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26746 + - uid: 26594 components: - type: Transform rot: 3.141592653589793 rad @@ -204675,7 +204753,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26747 + - uid: 26595 components: - type: Transform rot: 1.5707963267948966 rad @@ -204683,14 +204761,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26748 + - uid: 26596 components: - type: Transform pos: 10.5,3.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26749 + - uid: 26597 components: - type: Transform rot: 1.5707963267948966 rad @@ -204698,7 +204776,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26750 + - uid: 26598 components: - type: Transform rot: -1.5707963267948966 rad @@ -204706,7 +204784,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26751 + - uid: 26599 components: - type: Transform rot: 3.141592653589793 rad @@ -204714,23 +204792,23 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26752 + - uid: 26600 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-46.5 parent: 2 - - uid: 26753 + - uid: 26601 components: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 26754 + - uid: 26602 components: - type: Transform pos: -18.5,-64.5 parent: 2 - - uid: 26755 + - uid: 26603 components: - type: Transform rot: -1.5707963267948966 rad @@ -204738,7 +204816,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26756 + - uid: 26604 components: - type: Transform rot: -1.5707963267948966 rad @@ -204746,7 +204824,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26757 + - uid: 26605 components: - type: Transform rot: 1.5707963267948966 rad @@ -204754,14 +204832,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26758 + - uid: 26606 components: - type: Transform pos: 43.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26759 + - uid: 26607 components: - type: Transform rot: 3.141592653589793 rad @@ -204769,7 +204847,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26760 + - uid: 26608 components: - type: Transform rot: 1.5707963267948966 rad @@ -204777,13 +204855,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26761 + - uid: 26609 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-8.5 parent: 2 - - uid: 26762 + - uid: 26610 components: - type: Transform rot: -1.5707963267948966 rad @@ -204791,7 +204869,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26763 + - uid: 26611 components: - type: Transform rot: -1.5707963267948966 rad @@ -204799,7 +204877,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26764 + - uid: 26612 components: - type: Transform rot: 3.141592653589793 rad @@ -204807,20 +204885,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26765 + - uid: 26613 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,21.5 parent: 2 - - uid: 26766 + - uid: 26614 components: - type: Transform pos: -15.5,-77.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26767 + - uid: 26615 components: - type: Transform rot: 1.5707963267948966 rad @@ -204828,25 +204906,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26768 + - uid: 26616 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-46.5 parent: 2 - - uid: 26769 + - uid: 26617 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-52.5 parent: 2 - - uid: 26770 + - uid: 26618 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-52.5 parent: 2 - - uid: 26771 + - uid: 26619 components: - type: Transform rot: -1.5707963267948966 rad @@ -204854,13 +204932,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26772 + - uid: 26620 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-50.5 parent: 2 - - uid: 26773 + - uid: 26621 components: - type: Transform rot: 3.141592653589793 rad @@ -204868,29 +204946,29 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26774 + - uid: 26622 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 26775 + - uid: 26623 components: - type: Transform pos: -9.5,-37.5 parent: 2 - - uid: 26776 + - uid: 26624 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-43.5 parent: 2 - - uid: 26777 + - uid: 26625 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-43.5 parent: 2 - - uid: 26778 + - uid: 26626 components: - type: Transform rot: -1.5707963267948966 rad @@ -204898,7 +204976,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26779 + - uid: 26627 components: - type: Transform rot: 3.141592653589793 rad @@ -204906,7 +204984,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26780 + - uid: 26628 components: - type: Transform rot: 3.141592653589793 rad @@ -204914,7 +204992,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26781 + - uid: 26629 components: - type: Transform rot: -1.5707963267948966 rad @@ -204922,30 +205000,30 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26782 + - uid: 26630 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 26783 + - uid: 26631 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-42.5 parent: 2 - - uid: 26784 + - uid: 26632 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-45.5 parent: 2 - - uid: 26785 + - uid: 26633 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-37.5 parent: 2 - - uid: 26786 + - uid: 26634 components: - type: Transform rot: 1.5707963267948966 rad @@ -204953,18 +205031,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26787 + - uid: 26635 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-49.5 parent: 2 - - uid: 26788 + - uid: 26636 components: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 26789 + - uid: 26637 components: - type: Transform rot: 1.5707963267948966 rad @@ -204972,7 +205050,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26790 + - uid: 26638 components: - type: Transform rot: 1.5707963267948966 rad @@ -204980,13 +205058,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26791 + - uid: 26639 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 - - uid: 26792 + - uid: 26640 components: - type: Transform rot: 1.5707963267948966 rad @@ -204994,7 +205072,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26793 + - uid: 26641 components: - type: Transform rot: -1.5707963267948966 rad @@ -205002,7 +205080,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26794 + - uid: 26642 components: - type: Transform rot: -1.5707963267948966 rad @@ -205010,7 +205088,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26795 + - uid: 26643 components: - type: Transform rot: -1.5707963267948966 rad @@ -205018,7 +205096,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26796 + - uid: 26644 components: - type: Transform rot: -1.5707963267948966 rad @@ -205026,13 +205104,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26797 + - uid: 26645 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-40.5 parent: 2 - - uid: 26798 + - uid: 26646 components: - type: Transform rot: 1.5707963267948966 rad @@ -205040,13 +205118,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26799 + - uid: 26647 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,8.5 parent: 2 - - uid: 26800 + - uid: 26648 components: - type: Transform rot: -1.5707963267948966 rad @@ -205054,13 +205132,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26801 + - uid: 26649 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-41.5 parent: 2 - - uid: 26802 + - uid: 26650 components: - type: Transform rot: 1.5707963267948966 rad @@ -205068,14 +205146,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26803 + - uid: 26651 components: - type: Transform pos: 35.5,22.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26804 + - uid: 26652 components: - type: Transform rot: 1.5707963267948966 rad @@ -205083,24 +205161,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26805 + - uid: 26653 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-46.5 parent: 2 - - uid: 26806 + - uid: 26654 components: - type: Transform pos: -9.5,-22.5 parent: 2 - - uid: 26807 + - uid: 26655 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-16.5 parent: 2 - - uid: 26808 + - uid: 26656 components: - type: Transform rot: 1.5707963267948966 rad @@ -205108,7 +205186,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26809 + - uid: 26657 components: - type: Transform rot: 1.5707963267948966 rad @@ -205116,14 +205194,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26810 + - uid: 26658 components: - type: Transform pos: -48.5,34.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26811 + - uid: 26659 components: - type: Transform rot: 1.5707963267948966 rad @@ -205131,7 +205209,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26812 + - uid: 26660 components: - type: Transform rot: -1.5707963267948966 rad @@ -205139,7 +205217,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26813 + - uid: 26661 components: - type: Transform rot: 1.5707963267948966 rad @@ -205147,7 +205225,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26814 + - uid: 26662 components: - type: Transform rot: 1.5707963267948966 rad @@ -205155,13 +205233,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26817 + - uid: 26663 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-8.5 parent: 2 - - uid: 26818 + - uid: 26664 components: - type: Transform rot: 1.5707963267948966 rad @@ -205169,7 +205247,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26819 + - uid: 26665 components: - type: Transform rot: 1.5707963267948966 rad @@ -205177,7 +205255,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26820 + - uid: 26666 components: - type: Transform rot: -1.5707963267948966 rad @@ -205185,14 +205263,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26821 + - uid: 26667 components: - type: Transform pos: 10.5,-42.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26822 + - uid: 26668 components: - type: Transform rot: -1.5707963267948966 rad @@ -205200,18 +205278,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26823 + - uid: 26669 components: - type: Transform pos: -25.5,54.5 parent: 2 - - uid: 26824 + - uid: 26670 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,11.5 parent: 2 - - uid: 26825 + - uid: 26671 components: - type: Transform rot: 1.5707963267948966 rad @@ -205219,7 +205297,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26826 + - uid: 26672 components: - type: Transform rot: 1.5707963267948966 rad @@ -205228,7 +205306,7 @@ entities: - type: ApcPowerReceiver powerLoad: 0 - type: Timer - - uid: 26827 + - uid: 26673 components: - type: Transform rot: 1.5707963267948966 rad @@ -205236,7 +205314,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26828 + - uid: 26674 components: - type: Transform rot: -1.5707963267948966 rad @@ -205244,7 +205322,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26829 + - uid: 26675 components: - type: Transform rot: 3.141592653589793 rad @@ -205252,7 +205330,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26830 + - uid: 26676 components: - type: Transform rot: 1.5707963267948966 rad @@ -205260,7 +205338,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26831 + - uid: 26677 components: - type: Transform rot: 3.141592653589793 rad @@ -205268,14 +205346,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26832 + - uid: 26678 components: - type: Transform pos: 19.5,32.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26833 + - uid: 26679 components: - type: Transform rot: 3.141592653589793 rad @@ -205283,7 +205361,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26834 + - uid: 26680 components: - type: Transform rot: 1.5707963267948966 rad @@ -205291,7 +205369,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26835 + - uid: 26681 components: - type: Transform rot: 1.5707963267948966 rad @@ -205299,7 +205377,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26836 + - uid: 26682 components: - type: Transform rot: -1.5707963267948966 rad @@ -205307,21 +205385,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26837 + - uid: 26683 components: - type: Transform pos: -58.5,-11.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26838 + - uid: 26684 components: - type: Transform pos: -59.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26839 + - uid: 26685 components: - type: Transform rot: -1.5707963267948966 rad @@ -205329,7 +205407,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26840 + - uid: 26686 components: - type: Transform rot: -1.5707963267948966 rad @@ -205337,7 +205415,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26841 + - uid: 26687 components: - type: Transform rot: 3.141592653589793 rad @@ -205345,7 +205423,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26842 + - uid: 26688 components: - type: Transform rot: 3.141592653589793 rad @@ -205353,7 +205431,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26843 + - uid: 26689 components: - type: Transform rot: -1.5707963267948966 rad @@ -205361,13 +205439,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26844 + - uid: 26690 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 - - uid: 26845 + - uid: 26691 components: - type: Transform rot: -1.5707963267948966 rad @@ -205375,14 +205453,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26846 + - uid: 26692 components: - type: Transform pos: 8.5,15.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26847 + - uid: 26693 components: - type: Transform rot: 3.141592653589793 rad @@ -205390,7 +205468,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26848 + - uid: 26694 components: - type: Transform rot: 3.141592653589793 rad @@ -205398,14 +205476,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26849 + - uid: 26695 components: - type: Transform pos: 21.5,-24.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26850 + - uid: 26696 components: - type: Transform rot: -1.5707963267948966 rad @@ -205413,12 +205491,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26851 + - uid: 26697 components: - type: Transform pos: -46.5,55.5 parent: 2 - - uid: 26852 + - uid: 26698 components: - type: Transform rot: 3.141592653589793 rad @@ -205426,19 +205504,19 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26853 + - uid: 26699 components: - type: Transform pos: 32.5,-46.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26854 + - uid: 26700 components: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 26855 + - uid: 26701 components: - type: Transform rot: 1.5707963267948966 rad @@ -205446,20 +205524,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26856 + - uid: 26702 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-37.5 parent: 2 - - uid: 26857 + - uid: 26703 components: - type: Transform pos: -18.5,-37.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26858 + - uid: 26704 components: - type: Transform rot: 1.5707963267948966 rad @@ -205467,14 +205545,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26859 + - uid: 26705 components: - type: Transform pos: -23.5,-14.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26860 + - uid: 26706 components: - type: Transform rot: 3.141592653589793 rad @@ -205482,14 +205560,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26861 + - uid: 26707 components: - type: Transform pos: 1.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26862 + - uid: 26708 components: - type: Transform rot: 3.141592653589793 rad @@ -205497,27 +205575,27 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26863 + - uid: 26709 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,52.5 parent: 2 - - uid: 26864 + - uid: 26710 components: - type: Transform pos: 65.5,-21.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26865 + - uid: 26711 components: - type: Transform pos: -10.5,50.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26866 + - uid: 26712 components: - type: Transform rot: -1.5707963267948966 rad @@ -205525,7 +205603,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26867 + - uid: 26713 components: - type: Transform rot: 1.5707963267948966 rad @@ -205533,7 +205611,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26868 + - uid: 26714 components: - type: Transform rot: 1.5707963267948966 rad @@ -205541,7 +205619,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26869 + - uid: 26715 components: - type: Transform rot: 1.5707963267948966 rad @@ -205549,7 +205627,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26870 + - uid: 26716 components: - type: Transform rot: 1.5707963267948966 rad @@ -205557,13 +205635,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26871 + - uid: 26717 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-39.5 parent: 2 - - uid: 26872 + - uid: 26718 components: - type: Transform rot: 1.5707963267948966 rad @@ -205571,7 +205649,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26873 + - uid: 26719 components: - type: Transform rot: -1.5707963267948966 rad @@ -205579,7 +205657,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26874 + - uid: 26720 components: - type: Transform rot: -1.5707963267948966 rad @@ -205587,7 +205665,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26875 + - uid: 26721 components: - type: Transform rot: -1.5707963267948966 rad @@ -205595,7 +205673,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26876 + - uid: 26722 components: - type: Transform rot: 1.5707963267948966 rad @@ -205603,7 +205681,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26877 + - uid: 26723 components: - type: Transform rot: 1.5707963267948966 rad @@ -205611,28 +205689,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26878 + - uid: 26724 components: - type: Transform pos: -6.5,-74.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26879 + - uid: 26725 components: - type: Transform pos: -1.5,-74.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26880 + - uid: 26726 components: - type: Transform pos: -31.5,69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26881 + - uid: 26727 components: - type: Transform rot: -1.5707963267948966 rad @@ -205640,7 +205718,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26882 + - uid: 26728 components: - type: Transform rot: 1.5707963267948966 rad @@ -205648,21 +205726,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26883 + - uid: 26729 components: - type: Transform pos: -24.5,69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26884 + - uid: 26730 components: - type: Transform pos: 1.5,69.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26885 + - uid: 26731 components: - type: Transform rot: 1.5707963267948966 rad @@ -205670,7 +205748,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26886 + - uid: 26732 components: - type: Transform rot: -1.5707963267948966 rad @@ -205678,7 +205756,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26887 + - uid: 26733 components: - type: Transform rot: 1.5707963267948966 rad @@ -205686,7 +205764,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26888 + - uid: 26734 components: - type: Transform rot: 1.5707963267948966 rad @@ -205694,7 +205772,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26889 + - uid: 26735 components: - type: Transform rot: -1.5707963267948966 rad @@ -205702,7 +205780,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26890 + - uid: 26736 components: - type: Transform rot: 1.5707963267948966 rad @@ -205710,25 +205788,25 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26891 + - uid: 26737 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,8.5 parent: 2 - - uid: 26892 + - uid: 26738 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,16.5 parent: 2 - - uid: 26893 + - uid: 26739 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,26.5 parent: 2 - - uid: 26894 + - uid: 26740 components: - type: Transform rot: 1.5707963267948966 rad @@ -205736,7 +205814,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26895 + - uid: 26741 components: - type: Transform rot: 1.5707963267948966 rad @@ -205744,21 +205822,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26896 + - uid: 26742 components: - type: Transform pos: 68.5,-2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26897 + - uid: 26743 components: - type: Transform pos: -63.5,2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26898 + - uid: 26744 components: - type: Transform rot: 1.5707963267948966 rad @@ -205766,7 +205844,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26899 + - uid: 26745 components: - type: Transform rot: -1.5707963267948966 rad @@ -205774,7 +205852,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26900 + - uid: 26746 components: - type: Transform rot: 3.141592653589793 rad @@ -205782,21 +205860,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26901 + - uid: 26747 components: - type: Transform pos: -63.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26902 + - uid: 26748 components: - type: Transform pos: -72.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26903 + - uid: 26749 components: - type: Transform rot: 3.141592653589793 rad @@ -205804,7 +205882,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26904 + - uid: 26750 components: - type: Transform rot: 3.141592653589793 rad @@ -205812,21 +205890,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26905 + - uid: 26751 components: - type: Transform pos: -76.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26906 + - uid: 26752 components: - type: Transform pos: -81.5,-5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26907 + - uid: 26753 components: - type: Transform rot: 3.141592653589793 rad @@ -205834,7 +205912,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26908 + - uid: 26754 components: - type: Transform rot: 1.5707963267948966 rad @@ -205842,7 +205920,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26909 + - uid: 26755 components: - type: Transform rot: -1.5707963267948966 rad @@ -205850,7 +205928,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26910 + - uid: 26756 components: - type: Transform rot: -1.5707963267948966 rad @@ -205858,7 +205936,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26911 + - uid: 26757 components: - type: Transform rot: 1.5707963267948966 rad @@ -205866,7 +205944,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26912 + - uid: 26758 components: - type: Transform rot: -1.5707963267948966 rad @@ -205874,21 +205952,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26913 + - uid: 26759 components: - type: Transform pos: 14.5,-33.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26914 + - uid: 26760 components: - type: Transform pos: 34.5,-37.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26915 + - uid: 26761 components: - type: Transform rot: 3.141592653589793 rad @@ -205896,7 +205974,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26916 + - uid: 26762 components: - type: Transform rot: 3.141592653589793 rad @@ -205904,7 +205982,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26917 + - uid: 26763 components: - type: Transform rot: 3.141592653589793 rad @@ -205912,21 +205990,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26918 + - uid: 26764 components: - type: Transform pos: -122.5,26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26919 + - uid: 26765 components: - type: Transform pos: -114.5,26.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26920 + - uid: 26766 components: - type: Transform rot: 3.141592653589793 rad @@ -205934,7 +206012,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26921 + - uid: 26767 components: - type: Transform rot: -1.5707963267948966 rad @@ -205942,7 +206020,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26922 + - uid: 26768 components: - type: Transform rot: 1.5707963267948966 rad @@ -205950,7 +206028,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26923 + - uid: 26769 components: - type: Transform rot: 1.5707963267948966 rad @@ -205958,7 +206036,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26924 + - uid: 26770 components: - type: Transform rot: -1.5707963267948966 rad @@ -205966,7 +206044,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26925 + - uid: 26771 components: - type: Transform rot: 1.5707963267948966 rad @@ -205974,7 +206052,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26926 + - uid: 26772 components: - type: Transform rot: -1.5707963267948966 rad @@ -205982,7 +206060,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26927 + - uid: 26773 components: - type: Transform rot: -1.5707963267948966 rad @@ -205990,7 +206068,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26928 + - uid: 26774 components: - type: Transform rot: 1.5707963267948966 rad @@ -205998,7 +206076,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26929 + - uid: 26775 components: - type: Transform rot: 1.5707963267948966 rad @@ -206006,7 +206084,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26930 + - uid: 26776 components: - type: Transform rot: -1.5707963267948966 rad @@ -206014,7 +206092,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26931 + - uid: 26777 components: - type: Transform rot: -1.5707963267948966 rad @@ -206022,7 +206100,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26932 + - uid: 26778 components: - type: Transform rot: 1.5707963267948966 rad @@ -206030,7 +206108,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26933 + - uid: 26779 components: - type: Transform rot: 1.5707963267948966 rad @@ -206038,7 +206116,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26934 + - uid: 26780 components: - type: Transform rot: -1.5707963267948966 rad @@ -206046,7 +206124,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26935 + - uid: 26781 components: - type: Transform rot: -1.5707963267948966 rad @@ -206054,7 +206132,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26936 + - uid: 26782 components: - type: Transform rot: 1.5707963267948966 rad @@ -206062,388 +206140,388 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26937 + - uid: 26783 components: - type: Transform pos: 32.5,-43.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26938 + - uid: 26784 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-23.5 parent: 2 - - uid: 26939 + - uid: 26785 components: - type: Transform pos: -23.5,45.5 parent: 2 - - uid: 26940 + - uid: 26786 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,52.5 parent: 2 - - uid: 26943 + - uid: 26787 components: - type: Transform pos: 84.5,14.5 parent: 2 - - uid: 26944 + - uid: 26788 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,23.5 parent: 2 - - uid: 26945 + - uid: 26789 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,12.5 parent: 2 - - uid: 26946 + - uid: 26790 components: - type: Transform pos: 90.5,14.5 parent: 2 - - uid: 26947 + - uid: 26791 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,23.5 parent: 2 - - uid: 26948 + - uid: 26792 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-31.5 parent: 2 - - uid: 26949 + - uid: 26793 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,25.5 parent: 2 - - uid: 26950 + - uid: 26794 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-27.5 parent: 2 - - uid: 26951 + - uid: 26795 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,9.5 parent: 2 - - uid: 26952 + - uid: 26796 components: - type: Transform pos: 54.5,19.5 parent: 2 - - uid: 26953 + - uid: 26797 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,59.5 parent: 2 - - uid: 26954 + - uid: 26798 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,56.5 parent: 2 - - uid: 26955 + - uid: 26799 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,1.5 parent: 2 - - uid: 26956 + - uid: 26800 components: - type: Transform pos: -28.5,2.5 parent: 2 - - uid: 26957 + - uid: 26801 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-16.5 parent: 2 - - uid: 26958 + - uid: 26802 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-12.5 parent: 2 - - uid: 26959 + - uid: 26803 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,66.5 parent: 2 - - uid: 26960 + - uid: 26804 components: - type: Transform pos: 3.5,58.5 parent: 2 - - uid: 26961 + - uid: 26805 components: - type: Transform pos: 90.5,2.5 parent: 2 - - uid: 26962 + - uid: 26806 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,0.5 parent: 2 - - uid: 26963 + - uid: 26807 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,0.5 parent: 2 - - uid: 26964 + - uid: 26808 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,0.5 parent: 2 - - uid: 26965 + - uid: 26809 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,0.5 parent: 2 - - uid: 26966 + - uid: 26810 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 - - uid: 26967 + - uid: 26811 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-0.5 parent: 2 - - uid: 26968 + - uid: 26812 components: - type: Transform pos: -14.5,-11.5 parent: 2 - - uid: 26969 + - uid: 26813 components: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 26970 + - uid: 26814 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,18.5 parent: 2 - - uid: 26971 + - uid: 26815 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,20.5 parent: 2 - - uid: 26972 + - uid: 26816 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,20.5 parent: 2 - - uid: 26973 + - uid: 26817 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 2 - - uid: 39555 + - uid: 39382 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-7.5 - parent: 38584 - - uid: 39556 + parent: 38411 + - uid: 39383 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,9.5 - parent: 38584 - - uid: 39557 + parent: 38411 + - uid: 39384 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 - parent: 38584 - - uid: 39558 + parent: 38411 + - uid: 39385 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 - parent: 38584 - - uid: 39559 + parent: 38411 + - uid: 39386 components: - type: Transform pos: -0.5,8.5 - parent: 38584 - - uid: 39560 + parent: 38411 + - uid: 39387 components: - type: Transform pos: 12.5,6.5 - parent: 38584 - - uid: 39561 + parent: 38411 + - uid: 39388 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-2.5 - parent: 38584 - - uid: 39562 + parent: 38411 + - uid: 39389 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-2.5 - parent: 38584 - - uid: 39563 + parent: 38411 + - uid: 39390 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 - parent: 38584 - - uid: 39564 + parent: 38411 + - uid: 39391 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-7.5 - parent: 38584 - - uid: 39565 + parent: 38411 + - uid: 39392 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-7.5 - parent: 38584 - - uid: 39566 + parent: 38411 + - uid: 39393 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-5.5 - parent: 38584 - - uid: 39567 + parent: 38411 + - uid: 39394 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,5.5 - parent: 38584 - - uid: 39568 + parent: 38411 + - uid: 39395 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 - parent: 38584 - - uid: 39569 + parent: 38411 + - uid: 39396 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,0.5 - parent: 38584 - - uid: 39570 + parent: 38411 + - uid: 39397 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,1.5 - parent: 38584 - - uid: 39571 + parent: 38411 + - uid: 39398 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 - parent: 38584 - - uid: 39572 + parent: 38411 + - uid: 39399 components: - type: Transform pos: -6.5,4.5 - parent: 38584 - - uid: 39573 + parent: 38411 + - uid: 39400 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 - parent: 38584 - - uid: 39574 + parent: 38411 + - uid: 39401 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-3.5 - parent: 38584 - - uid: 39575 + parent: 38411 + - uid: 39402 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-2.5 - parent: 38584 - - uid: 39576 + parent: 38411 + - uid: 39403 components: - type: Transform pos: -15.5,-1.5 - parent: 38584 - - uid: 39577 + parent: 38411 + - uid: 39404 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-4.5 - parent: 38584 - - uid: 39578 + parent: 38411 + - uid: 39405 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,5.5 - parent: 38584 - - uid: 39579 + parent: 38411 + - uid: 39406 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 - parent: 38584 + parent: 38411 - proto: PoweredlightBlue entities: - - uid: 26974 + - uid: 26818 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,38.5 parent: 2 - - uid: 26975 + - uid: 26819 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,44.5 parent: 2 - - uid: 26976 + - uid: 26820 components: - type: Transform pos: 58.5,9.5 parent: 2 - - uid: 26977 + - uid: 26821 components: - type: Transform pos: 48.5,-13.5 parent: 2 - proto: PoweredlightCyan entities: - - uid: 26978 + - uid: 26822 components: - type: Transform pos: -70.5,58.5 parent: 2 - proto: PoweredlightEmpty entities: - - uid: 25008 + - uid: 24867 components: - type: Transform rot: 3.141592653589793 rad @@ -206460,10 +206538,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25009 + ent: 24868 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25010 + - uid: 24869 components: - type: Transform rot: -1.5707963267948966 rad @@ -206480,10 +206558,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25011 + ent: 24870 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25012 + - uid: 24871 components: - type: Transform rot: -1.5707963267948966 rad @@ -206500,10 +206578,23 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25013 + ent: 24872 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25016 + - uid: 24873 + components: + - type: Transform + pos: -63.5,-28.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 24874 + - type: ApcPowerReceiver + powerLoad: 60 + - uid: 24875 components: - type: Transform pos: 27.5,61.5 @@ -206519,10 +206610,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25017 + ent: 24876 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25018 + - uid: 24877 components: - type: Transform pos: 20.5,72.5 @@ -206538,10 +206629,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25019 + ent: 24878 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25020 + - uid: 24879 components: - type: Transform rot: -1.5707963267948966 rad @@ -206558,10 +206649,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25021 + ent: 24880 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25022 + - uid: 24881 components: - type: Transform rot: -1.5707963267948966 rad @@ -206578,10 +206669,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25023 + ent: 24882 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25026 + - uid: 24883 components: - type: Transform rot: -1.5707963267948966 rad @@ -206598,10 +206689,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25027 + ent: 24884 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25030 + - uid: 24885 components: - type: Transform pos: 14.5,62.5 @@ -206617,10 +206708,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25031 + ent: 24886 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25032 + - uid: 24887 components: - type: Transform pos: 55.5,-45.5 @@ -206636,10 +206727,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25033 + ent: 24888 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25034 + - uid: 24889 components: - type: Transform pos: -39.5,-50.5 @@ -206655,10 +206746,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25035 + ent: 24890 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25036 + - uid: 24891 components: - type: Transform pos: -38.5,-64.5 @@ -206674,10 +206765,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25037 + ent: 24892 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25038 + - uid: 24893 components: - type: Transform pos: 12.5,56.5 @@ -206693,10 +206784,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25039 + ent: 24894 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25040 + - uid: 24895 components: - type: Transform rot: -1.5707963267948966 rad @@ -206713,10 +206804,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25041 + ent: 24896 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25042 + - uid: 24897 components: - type: Transform rot: 3.141592653589793 rad @@ -206733,10 +206824,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25043 + ent: 24898 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25044 + - uid: 24899 components: - type: Transform rot: 3.141592653589793 rad @@ -206753,10 +206844,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25045 + ent: 24900 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25046 + - uid: 24901 components: - type: Transform pos: -22.5,-19.5 @@ -206772,10 +206863,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25047 + ent: 24902 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25048 + - uid: 24903 components: - type: Transform rot: -1.5707963267948966 rad @@ -206792,10 +206883,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25049 + ent: 24904 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25050 + - uid: 24905 components: - type: Transform rot: 1.5707963267948966 rad @@ -206812,10 +206903,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25051 + ent: 24906 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25052 + - uid: 24907 components: - type: Transform rot: -1.5707963267948966 rad @@ -206832,10 +206923,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25053 + ent: 24908 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25054 + - uid: 24909 components: - type: Transform rot: -1.5707963267948966 rad @@ -206852,10 +206943,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25055 + ent: 24910 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25056 + - uid: 24911 components: - type: Transform rot: -1.5707963267948966 rad @@ -206872,10 +206963,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25057 + ent: 24912 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25058 + - uid: 24913 components: - type: Transform rot: 3.141592653589793 rad @@ -206892,10 +206983,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25059 + ent: 24914 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25060 + - uid: 24915 components: - type: Transform rot: 3.141592653589793 rad @@ -206912,10 +207003,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25061 + ent: 24916 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25062 + - uid: 24917 components: - type: Transform rot: -1.5707963267948966 rad @@ -206932,10 +207023,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25063 + ent: 24918 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25064 + - uid: 24919 components: - type: Transform rot: 1.5707963267948966 rad @@ -206952,10 +207043,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25065 + ent: 24920 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25066 + - uid: 24921 components: - type: Transform rot: 1.5707963267948966 rad @@ -206972,10 +207063,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25067 + ent: 24922 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25068 + - uid: 24923 components: - type: Transform pos: -41.5,-57.5 @@ -206991,10 +207082,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25069 + ent: 24924 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25070 + - uid: 24925 components: - type: Transform pos: 37.5,-3.5 @@ -207010,10 +207101,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25071 + ent: 24926 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25072 + - uid: 24927 components: - type: Transform pos: -48.5,-33.5 @@ -207029,10 +207120,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25073 + ent: 24928 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25074 + - uid: 24929 components: - type: Transform rot: 3.141592653589793 rad @@ -207049,10 +207140,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25075 + ent: 24930 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25076 + - uid: 24931 components: - type: Transform pos: 7.5,54.5 @@ -207068,10 +207159,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25077 + ent: 24932 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25078 + - uid: 24933 components: - type: Transform pos: -1.5,27.5 @@ -207087,10 +207178,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25079 + ent: 24934 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25080 + - uid: 24935 components: - type: Transform rot: 1.5707963267948966 rad @@ -207107,10 +207198,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25081 + ent: 24936 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25082 + - uid: 24937 components: - type: Transform rot: -1.5707963267948966 rad @@ -207127,10 +207218,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25083 + ent: 24938 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25084 + - uid: 24939 components: - type: Transform rot: 3.141592653589793 rad @@ -207147,10 +207238,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25085 + ent: 24940 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25086 + - uid: 24941 components: - type: Transform pos: -41.5,-19.5 @@ -207166,10 +207257,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25087 + ent: 24942 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25088 + - uid: 24943 components: - type: Transform rot: -1.5707963267948966 rad @@ -207186,10 +207277,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25089 + ent: 24944 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25090 + - uid: 24945 components: - type: Transform pos: -32.5,-17.5 @@ -207205,10 +207296,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25091 + ent: 24946 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25092 + - uid: 24947 components: - type: Transform rot: 1.5707963267948966 rad @@ -207225,10 +207316,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25093 + ent: 24948 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25094 + - uid: 24949 components: - type: Transform rot: -1.5707963267948966 rad @@ -207245,10 +207336,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25095 + ent: 24950 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25096 + - uid: 24951 components: - type: Transform pos: -39.5,-8.5 @@ -207264,10 +207355,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25097 + ent: 24952 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25098 + - uid: 24953 components: - type: Transform rot: 3.141592653589793 rad @@ -207284,10 +207375,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25099 + ent: 24954 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25100 + - uid: 24955 components: - type: Transform rot: -1.5707963267948966 rad @@ -207304,10 +207395,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25101 + ent: 24956 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25102 + - uid: 24957 components: - type: Transform rot: 3.141592653589793 rad @@ -207324,10 +207415,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25103 + ent: 24958 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25104 + - uid: 24959 components: - type: Transform rot: -1.5707963267948966 rad @@ -207344,10 +207435,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25105 + ent: 24960 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25106 + - uid: 24961 components: - type: Transform rot: 1.5707963267948966 rad @@ -207364,10 +207455,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25107 + ent: 24962 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25108 + - uid: 24963 components: - type: Transform pos: -30.5,23.5 @@ -207377,10 +207468,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25109 + ent: 24964 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25110 + - uid: 24965 components: - type: Transform pos: -41.5,40.5 @@ -207396,10 +207487,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25111 + ent: 24966 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25112 + - uid: 24967 components: - type: Transform pos: -38.5,40.5 @@ -207415,10 +207506,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25113 + ent: 24968 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25114 + - uid: 24969 components: - type: Transform rot: -1.5707963267948966 rad @@ -207435,10 +207526,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25115 + ent: 24970 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25116 + - uid: 24971 components: - type: Transform rot: -1.5707963267948966 rad @@ -207455,10 +207546,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25117 + ent: 24972 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25118 + - uid: 24973 components: - type: Transform rot: -1.5707963267948966 rad @@ -207475,10 +207566,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25119 + ent: 24974 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25120 + - uid: 24975 components: - type: Transform rot: 1.5707963267948966 rad @@ -207495,10 +207586,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25121 + ent: 24976 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25122 + - uid: 24977 components: - type: Transform rot: 3.141592653589793 rad @@ -207515,10 +207606,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25123 + ent: 24978 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25124 + - uid: 24979 components: - type: Transform pos: -25.5,57.5 @@ -207534,10 +207625,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25125 + ent: 24980 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25126 + - uid: 24981 components: - type: Transform rot: 1.5707963267948966 rad @@ -207554,10 +207645,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25127 + ent: 24982 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25128 + - uid: 24983 components: - type: Transform pos: -32.5,-69.5 @@ -207573,10 +207664,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25129 + ent: 24984 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25130 + - uid: 24985 components: - type: Transform rot: 1.5707963267948966 rad @@ -207593,10 +207684,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25131 + ent: 24986 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25132 + - uid: 24987 components: - type: Transform pos: -16.5,-61.5 @@ -207612,10 +207703,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25133 + ent: 24988 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25134 + - uid: 24989 components: - type: Transform pos: -8.5,-54.5 @@ -207631,10 +207722,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25135 + ent: 24990 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25136 + - uid: 24991 components: - type: Transform pos: 5.5,-54.5 @@ -207650,10 +207741,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25137 + ent: 24992 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25138 + - uid: 24993 components: - type: Transform rot: 1.5707963267948966 rad @@ -207670,10 +207761,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25139 + ent: 24994 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25140 + - uid: 24995 components: - type: Transform rot: 3.141592653589793 rad @@ -207690,10 +207781,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25141 + ent: 24996 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25142 + - uid: 24997 components: - type: Transform rot: 3.141592653589793 rad @@ -207710,10 +207801,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25143 + ent: 24998 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25144 + - uid: 24999 components: - type: Transform rot: 3.141592653589793 rad @@ -207730,10 +207821,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25145 + ent: 25000 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25146 + - uid: 25001 components: - type: Transform rot: 3.141592653589793 rad @@ -207750,10 +207841,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25147 + ent: 25002 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25148 + - uid: 25003 components: - type: Transform pos: 37.5,-46.5 @@ -207769,10 +207860,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25149 + ent: 25004 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25150 + - uid: 25005 components: - type: Transform pos: 44.5,-46.5 @@ -207788,10 +207879,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25151 + ent: 25006 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25152 + - uid: 25007 components: - type: Transform rot: 1.5707963267948966 rad @@ -207808,10 +207899,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25153 + ent: 25008 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25154 + - uid: 25009 components: - type: Transform rot: 1.5707963267948966 rad @@ -207828,10 +207919,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25155 + ent: 25010 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25156 + - uid: 25011 components: - type: Transform rot: 1.5707963267948966 rad @@ -207848,10 +207939,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25157 + ent: 25012 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25158 + - uid: 25013 components: - type: Transform rot: 3.141592653589793 rad @@ -207868,10 +207959,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25159 + ent: 25014 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25160 + - uid: 25015 components: - type: Transform rot: 3.141592653589793 rad @@ -207888,10 +207979,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25161 + ent: 25016 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25162 + - uid: 25017 components: - type: Transform rot: 3.141592653589793 rad @@ -207908,10 +207999,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25163 + ent: 25018 - type: ApcPowerReceiver powerLoad: 60 - - uid: 25164 + - uid: 25019 components: - type: Transform rot: -1.5707963267948966 rad @@ -207928,23 +208019,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25165 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 25847 - components: - - type: Transform - pos: -63.5,-28.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 25015 + ent: 25020 - type: ApcPowerReceiver powerLoad: 60 - - uid: 26979 + - uid: 26823 components: - type: Transform rot: -1.5707963267948966 rad @@ -207952,7 +208030,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26980 + - uid: 26824 components: - type: Transform pos: 11.5,70.5 @@ -207968,10 +208046,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26981 + ent: 26825 - type: ApcPowerReceiver powerLoad: 100 - - uid: 26982 + - uid: 26826 components: - type: Transform pos: -39.5,29.5 @@ -207987,10 +208065,10 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26983 + ent: 26827 - type: ApcPowerReceiver powerLoad: 100 - - uid: 26984 + - uid: 26828 components: - type: Transform rot: 3.141592653589793 rad @@ -207998,111 +208076,111 @@ entities: parent: 2 - proto: PoweredlightExterior entities: - - uid: 26985 + - uid: 26829 components: - type: Transform pos: -69.5,25.5 parent: 2 - proto: PoweredlightLED entities: - - uid: 26986 + - uid: 26830 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,22.5 parent: 2 - - uid: 26987 + - uid: 26831 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,27.5 parent: 2 - - uid: 26988 + - uid: 26832 components: - type: Transform pos: -62.5,38.5 parent: 2 - - uid: 26989 + - uid: 26833 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,26.5 parent: 2 - - uid: 26990 + - uid: 26834 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,51.5 parent: 2 - - uid: 26991 + - uid: 26835 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,47.5 parent: 2 - - uid: 26992 + - uid: 26836 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,43.5 parent: 2 - - uid: 26993 + - uid: 26837 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,35.5 parent: 2 - - uid: 26994 + - uid: 26838 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,31.5 parent: 2 - - uid: 26995 + - uid: 26839 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,24.5 parent: 2 - - uid: 26996 + - uid: 26840 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,20.5 parent: 2 - - uid: 38538 + - uid: 38365 components: - type: Transform pos: 2.5,1.5 - parent: 38484 + parent: 38311 - type: ApcPowerReceiver powerLoad: 0 - - uid: 38539 + - uid: 38366 components: - type: Transform pos: 0.5,1.5 - parent: 38484 + parent: 38311 - type: ApcPowerReceiver powerLoad: 0 - - uid: 38540 + - uid: 38367 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 - parent: 38484 + parent: 38311 - type: ApcPowerReceiver powerLoad: 0 - - uid: 38541 + - uid: 38368 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 - parent: 38484 + parent: 38311 - type: ApcPowerReceiver powerLoad: 0 - proto: PoweredlightOrange entities: - - uid: 26997 + - uid: 26841 components: - type: Transform rot: 3.141592653589793 rad @@ -208110,19 +208188,19 @@ entities: parent: 2 - proto: PoweredlightPink entities: - - uid: 26998 + - uid: 26842 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,38.5 parent: 2 - - uid: 26999 + - uid: 26843 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,44.5 parent: 2 - - uid: 27000 + - uid: 26844 components: - type: Transform rot: -1.5707963267948966 rad @@ -208130,17 +208208,17 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 27001 + - uid: 26845 components: - type: Transform pos: -1.5,-4.5 parent: 2 - - uid: 27002 + - uid: 26846 components: - type: Transform pos: 0.49999997,-4.5 parent: 2 - - uid: 27003 + - uid: 26847 components: - type: Transform pos: -1.5,7.5 @@ -208149,17 +208227,17 @@ entities: radius: 8 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27004 + - uid: 26848 components: - type: Transform pos: -85.5,13.5 parent: 2 - - uid: 27005 + - uid: 26849 components: - type: Transform pos: -85.5,15.5 parent: 2 - - uid: 27006 + - uid: 26850 components: - type: Transform pos: 0.5,7.5 @@ -208168,54 +208246,54 @@ entities: radius: 8 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27007 + - uid: 26851 components: - type: Transform pos: -106.5,22.5 parent: 2 - - uid: 27008 + - uid: 26852 components: - type: Transform pos: -106.5,24.5 parent: 2 - proto: PoweredlightRed entities: - - uid: 27009 + - uid: 26853 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-36.5 parent: 2 - - uid: 27010 + - uid: 26854 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-78.5 parent: 2 - - uid: 27011 + - uid: 26855 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,8.5 parent: 2 - - uid: 27012 + - uid: 26856 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,4.5 parent: 2 - - uid: 27013 + - uid: 26857 components: - type: Transform pos: 69.5,10.5 parent: 2 - - uid: 27014 + - uid: 26858 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-34.5 parent: 2 - - uid: 27015 + - uid: 26859 components: - type: Transform rot: 1.5707963267948966 rad @@ -208223,7 +208301,7 @@ entities: parent: 2 - proto: PoweredlightSodium entities: - - uid: 27016 + - uid: 26860 components: - type: Transform rot: 3.141592653589793 rad @@ -208231,122 +208309,122 @@ entities: parent: 2 - proto: PoweredSmallLight entities: - - uid: 27017 + - uid: 26861 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 2 - - uid: 27018 + - uid: 26862 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-9.5 parent: 2 - - uid: 27019 + - uid: 26863 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-10.5 parent: 2 - - uid: 27020 + - uid: 26864 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-9.5 parent: 2 - - uid: 27021 + - uid: 26865 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,84.5 parent: 2 - - uid: 27022 + - uid: 26866 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-2.5 parent: 2 - - uid: 27023 + - uid: 26867 components: - type: Transform pos: 96.5,7.5 parent: 2 - - uid: 27024 + - uid: 26868 components: - type: Transform rot: -1.5707963267948966 rad pos: 97.5,-2.5 parent: 2 - - uid: 27025 + - uid: 26869 components: - type: Transform pos: -26.5,77.5 parent: 2 - - uid: 27026 + - uid: 26870 components: - type: Transform pos: -32.5,77.5 parent: 2 - - uid: 27027 + - uid: 26871 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,84.5 parent: 2 - - uid: 27028 + - uid: 26872 components: - type: Transform pos: -14.5,77.5 parent: 2 - - uid: 27029 + - uid: 26873 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-2.5 parent: 2 - - uid: 27030 + - uid: 26874 components: - type: Transform pos: -8.5,77.5 parent: 2 - - uid: 27031 + - uid: 26875 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-59.5 parent: 2 - - uid: 27032 + - uid: 26876 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-35.5 parent: 2 - - uid: 27033 + - uid: 26877 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,60.5 parent: 2 - - uid: 27034 + - uid: 26878 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,74.5 parent: 2 - - uid: 27035 + - uid: 26879 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,45.5 parent: 2 - - uid: 27036 + - uid: 26880 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,65.5 parent: 2 - - uid: 27037 + - uid: 26881 components: - type: Transform rot: 3.141592653589793 rad @@ -208354,43 +208432,43 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27038 + - uid: 26882 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-5.5 parent: 2 - - uid: 27039 + - uid: 26883 components: - type: Transform pos: 9.5,-76.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27040 + - uid: 26884 components: - type: Transform pos: 69.5,1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27041 + - uid: 26885 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,29.5 parent: 2 - - uid: 27042 + - uid: 26886 components: - type: Transform pos: -59.5,64.5 parent: 2 - - uid: 27043 + - uid: 26887 components: - type: Transform pos: -59.5,61.5 parent: 2 - - uid: 27044 + - uid: 26888 components: - type: Transform rot: 1.5707963267948966 rad @@ -208398,31 +208476,31 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27045 + - uid: 26889 components: - type: Transform pos: 39.5,30.5 parent: 2 - - uid: 27046 + - uid: 26890 components: - type: Transform pos: -15.5,5.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27047 + - uid: 26891 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-0.5 parent: 2 - - uid: 27048 + - uid: 26892 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,19.5 parent: 2 - - uid: 27049 + - uid: 26893 components: - type: Transform rot: 3.141592653589793 rad @@ -208430,7 +208508,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27050 + - uid: 26894 components: - type: Transform rot: 1.5707963267948966 rad @@ -208438,7 +208516,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27051 + - uid: 26895 components: - type: Transform rot: 3.141592653589793 rad @@ -208446,7 +208524,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27052 + - uid: 26896 components: - type: Transform rot: -1.5707963267948966 rad @@ -208454,12 +208532,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27053 + - uid: 26897 components: - type: Transform pos: 74.5,3.5 parent: 2 - - uid: 27054 + - uid: 26898 components: - type: Transform rot: 3.141592653589793 rad @@ -208467,28 +208545,28 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27055 + - uid: 26899 components: - type: Transform pos: 38.5,-25.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27056 + - uid: 26900 components: - type: Transform pos: 66.5,-2.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27057 + - uid: 26901 components: - type: Transform pos: -13.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27058 + - uid: 26902 components: - type: Transform rot: 3.141592653589793 rad @@ -208496,35 +208574,35 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27059 + - uid: 26903 components: - type: Transform pos: 64.5,19.5 parent: 2 - - uid: 27060 + - uid: 26904 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,29.5 parent: 2 - - uid: 27061 + - uid: 26905 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,15.5 parent: 2 - - uid: 27062 + - uid: 26906 components: - type: Transform pos: 60.5,19.5 parent: 2 - - uid: 27063 + - uid: 26907 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,15.5 parent: 2 - - uid: 27064 + - uid: 26908 components: - type: Transform rot: 3.141592653589793 rad @@ -208532,7 +208610,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27065 + - uid: 26909 components: - type: Transform rot: 1.5707963267948966 rad @@ -208540,20 +208618,20 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27066 + - uid: 26910 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-3.5 parent: 2 - - uid: 27067 + - uid: 26911 components: - type: Transform pos: -53.5,6.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27068 + - uid: 26912 components: - type: Transform rot: 3.141592653589793 rad @@ -208561,13 +208639,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27069 + - uid: 26913 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-43.5 parent: 2 - - uid: 27070 + - uid: 26914 components: - type: Transform rot: -1.5707963267948966 rad @@ -208575,7 +208653,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27071 + - uid: 26915 components: - type: Transform rot: 3.141592653589793 rad @@ -208583,12 +208661,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27072 + - uid: 26916 components: - type: Transform pos: 15.5,79.5 parent: 2 - - uid: 27073 + - uid: 26917 components: - type: Transform rot: 1.5707963267948966 rad @@ -208596,14 +208674,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27074 + - uid: 26918 components: - type: Transform pos: -77.5,-29.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27075 + - uid: 26919 components: - type: Transform rot: 1.5707963267948966 rad @@ -208611,14 +208689,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27076 + - uid: 26920 components: - type: Transform pos: -17.5,-79.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27077 + - uid: 26921 components: - type: Transform rot: 3.141592653589793 rad @@ -208626,21 +208704,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27078 + - uid: 26922 components: - type: Transform pos: 3.5,-37.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27079 + - uid: 26923 components: - type: Transform pos: 11.5,-48.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27080 + - uid: 26924 components: - type: Transform rot: 3.141592653589793 rad @@ -208648,7 +208726,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27081 + - uid: 26925 components: - type: Transform rot: 3.141592653589793 rad @@ -208656,7 +208734,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27082 + - uid: 26926 components: - type: Transform rot: 3.141592653589793 rad @@ -208664,7 +208742,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27083 + - uid: 26927 components: - type: Transform rot: -1.5707963267948966 rad @@ -208672,17 +208750,17 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27084 + - uid: 26928 components: - type: Transform pos: -77.5,-18.5 parent: 2 - - uid: 27085 + - uid: 26929 components: - type: Transform pos: -32.5,43.5 parent: 2 - - uid: 27086 + - uid: 26930 components: - type: Transform rot: -1.5707963267948966 rad @@ -208690,7 +208768,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27087 + - uid: 26931 components: - type: Transform rot: 3.141592653589793 rad @@ -208698,7 +208776,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27088 + - uid: 26932 components: - type: Transform rot: 3.141592653589793 rad @@ -208706,7 +208784,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27089 + - uid: 26933 components: - type: Transform rot: 3.141592653589793 rad @@ -208714,7 +208792,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27090 + - uid: 26934 components: - type: Transform rot: 3.141592653589793 rad @@ -208722,7 +208800,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27091 + - uid: 26935 components: - type: Transform rot: 3.141592653589793 rad @@ -208730,7 +208808,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27092 + - uid: 26936 components: - type: Transform rot: 3.141592653589793 rad @@ -208738,14 +208816,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27093 + - uid: 26937 components: - type: Transform pos: 5.5,-48.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27094 + - uid: 26938 components: - type: Transform rot: -1.5707963267948966 rad @@ -208753,13 +208831,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27095 + - uid: 26939 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-40.5 parent: 2 - - uid: 27096 + - uid: 26940 components: - type: Transform rot: 1.5707963267948966 rad @@ -208767,21 +208845,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27097 + - uid: 26941 components: - type: Transform pos: 15.5,88.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27098 + - uid: 26942 components: - type: Transform pos: 9.5,90.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27099 + - uid: 26943 components: - type: Transform rot: 1.5707963267948966 rad @@ -208789,7 +208867,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27100 + - uid: 26944 components: - type: Transform rot: -1.5707963267948966 rad @@ -208797,24 +208875,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27101 + - uid: 26945 components: - type: Transform pos: -37.5,-43.5 parent: 2 - - uid: 27102 + - uid: 26946 components: - type: Transform pos: -9.5,34.5 parent: 2 - - uid: 27103 + - uid: 26947 components: - type: Transform pos: -78.5,7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27104 + - uid: 26948 components: - type: Transform rot: 3.141592653589793 rad @@ -208822,7 +208900,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27105 + - uid: 26949 components: - type: Transform rot: 3.141592653589793 rad @@ -208830,7 +208908,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27106 + - uid: 26950 components: - type: Transform rot: -1.5707963267948966 rad @@ -208838,7 +208916,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27107 + - uid: 26951 components: - type: Transform rot: 3.141592653589793 rad @@ -208846,7 +208924,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27108 + - uid: 26952 components: - type: Transform rot: 3.141592653589793 rad @@ -208854,14 +208932,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27109 + - uid: 26953 components: - type: Transform pos: 14.5,16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27110 + - uid: 26954 components: - type: Transform rot: 3.141592653589793 rad @@ -208869,7 +208947,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27111 + - uid: 26955 components: - type: Transform rot: 3.141592653589793 rad @@ -208877,18 +208955,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27112 + - uid: 26956 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-46.5 parent: 2 - - uid: 27113 + - uid: 26957 components: - type: Transform pos: -2.5,51.5 parent: 2 - - uid: 27114 + - uid: 26958 components: - type: Transform rot: 3.141592653589793 rad @@ -208896,7 +208974,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27115 + - uid: 26959 components: - type: Transform rot: 3.141592653589793 rad @@ -208904,21 +208982,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27116 + - uid: 26960 components: - type: Transform pos: 21.5,-13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27117 + - uid: 26961 components: - type: Transform pos: 43.5,1.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27118 + - uid: 26962 components: - type: Transform rot: -1.5707963267948966 rad @@ -208926,7 +209004,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27119 + - uid: 26963 components: - type: Transform rot: -1.5707963267948966 rad @@ -208934,13 +209012,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27120 + - uid: 26964 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-40.5 parent: 2 - - uid: 27121 + - uid: 26965 components: - type: Transform rot: -1.5707963267948966 rad @@ -208948,14 +209026,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27122 + - uid: 26966 components: - type: Transform pos: 13.5,88.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27123 + - uid: 26967 components: - type: Transform rot: 3.141592653589793 rad @@ -208963,14 +209041,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27124 + - uid: 26968 components: - type: Transform pos: -23.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27125 + - uid: 26969 components: - type: Transform rot: 3.141592653589793 rad @@ -208978,13 +209056,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27126 + - uid: 26970 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,42.5 parent: 2 - - uid: 27127 + - uid: 26971 components: - type: Transform rot: 3.141592653589793 rad @@ -208992,7 +209070,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27128 + - uid: 26972 components: - type: Transform rot: 3.141592653589793 rad @@ -209000,39 +209078,39 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27129 + - uid: 26973 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,27.5 parent: 2 - - uid: 27130 + - uid: 26974 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,35.5 parent: 2 - - uid: 27131 + - uid: 26975 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,27.5 parent: 2 - - uid: 27132 + - uid: 26976 components: - type: Transform pos: -57.5,58.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27133 + - uid: 26977 components: - type: Transform pos: -0.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27134 + - uid: 26978 components: - type: Transform rot: -1.5707963267948966 rad @@ -209040,12 +209118,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27135 + - uid: 26979 components: - type: Transform pos: -37.5,-35.5 parent: 2 - - uid: 27136 + - uid: 26980 components: - type: Transform rot: 3.141592653589793 rad @@ -209053,69 +209131,69 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27137 + - uid: 26981 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,3.5 parent: 2 - - uid: 27138 + - uid: 26982 components: - type: Transform pos: -58.5,7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27139 + - uid: 26983 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,3.5 parent: 2 - - uid: 27140 + - uid: 26984 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,3.5 parent: 2 - - uid: 27141 + - uid: 26985 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,26.5 parent: 2 - - uid: 27142 + - uid: 26986 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,41.5 parent: 2 - - uid: 27143 + - uid: 26987 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,40.5 parent: 2 - - uid: 27144 + - uid: 26988 components: - type: Transform pos: 11.5,54.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27145 + - uid: 26989 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,44.5 parent: 2 - - uid: 27146 + - uid: 26990 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-52.5 parent: 2 - - uid: 27147 + - uid: 26991 components: - type: Transform rot: -1.5707963267948966 rad @@ -209123,41 +209201,41 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27148 + - uid: 26992 components: - type: Transform pos: -40.5,23.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27149 + - uid: 26993 components: - type: Transform pos: -50.5,6.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27150 + - uid: 26994 components: - type: Transform pos: -55.5,7.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27151 + - uid: 26995 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-9.5 parent: 2 - - uid: 27152 + - uid: 26996 components: - type: Transform pos: 43.5,13.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27153 + - uid: 26997 components: - type: Transform rot: 3.141592653589793 rad @@ -209165,7 +209243,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27154 + - uid: 26998 components: - type: Transform rot: 3.141592653589793 rad @@ -209173,7 +209251,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27155 + - uid: 26999 components: - type: Transform rot: 3.141592653589793 rad @@ -209181,13 +209259,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27156 + - uid: 27000 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,26.5 parent: 2 - - uid: 27157 + - uid: 27001 components: - type: Transform rot: 3.141592653589793 rad @@ -209195,14 +209273,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27158 + - uid: 27002 components: - type: Transform pos: -15.5,16.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27159 + - uid: 27003 components: - type: Transform rot: 1.5707963267948966 rad @@ -209210,7 +209288,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27160 + - uid: 27004 components: - type: Transform rot: 1.5707963267948966 rad @@ -209218,7 +209296,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27161 + - uid: 27005 components: - type: Transform rot: 1.5707963267948966 rad @@ -209226,7 +209304,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27162 + - uid: 27006 components: - type: Transform rot: -1.5707963267948966 rad @@ -209234,14 +209312,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27163 + - uid: 27007 components: - type: Transform pos: 67.5,-40.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27164 + - uid: 27008 components: - type: Transform rot: 1.5707963267948966 rad @@ -209249,14 +209327,14 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27165 + - uid: 27009 components: - type: Transform pos: 43.5,9.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27166 + - uid: 27010 components: - type: Transform rot: 1.5707963267948966 rad @@ -209264,7 +209342,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27167 + - uid: 27011 components: - type: Transform rot: 3.141592653589793 rad @@ -209272,13 +209350,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27168 + - uid: 27012 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,55.5 parent: 2 - - uid: 27169 + - uid: 27013 components: - type: Transform rot: 1.5707963267948966 rad @@ -209286,37 +209364,37 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27170 + - uid: 27014 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,26.5 parent: 2 - - uid: 27171 + - uid: 27015 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,26.5 parent: 2 - - uid: 27172 + - uid: 27016 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,34.5 parent: 2 - - uid: 27173 + - uid: 27017 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,31.5 parent: 2 - - uid: 27174 + - uid: 27018 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,29.5 parent: 2 - - uid: 27175 + - uid: 27019 components: - type: Transform rot: 1.5707963267948966 rad @@ -209324,7 +209402,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27176 + - uid: 27020 components: - type: Transform rot: -1.5707963267948966 rad @@ -209332,7 +209410,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27177 + - uid: 27021 components: - type: Transform rot: 3.141592653589793 rad @@ -209340,7 +209418,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27178 + - uid: 27022 components: - type: Transform rot: -1.5707963267948966 rad @@ -209348,21 +209426,21 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27179 + - uid: 27023 components: - type: Transform pos: -54.5,18.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27180 + - uid: 27024 components: - type: Transform pos: -51.5,18.5 parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27181 + - uid: 27025 components: - type: Transform rot: 3.141592653589793 rad @@ -209370,7 +209448,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27182 + - uid: 27026 components: - type: Transform rot: 3.141592653589793 rad @@ -209378,7 +209456,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27183 + - uid: 27027 components: - type: Transform rot: -1.5707963267948966 rad @@ -209386,7 +209464,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27184 + - uid: 27028 components: - type: Transform rot: -1.5707963267948966 rad @@ -209394,7 +209472,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27185 + - uid: 27029 components: - type: Transform rot: -1.5707963267948966 rad @@ -209402,7 +209480,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27186 + - uid: 27030 components: - type: Transform rot: 3.141592653589793 rad @@ -209410,7 +209488,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27187 + - uid: 27031 components: - type: Transform rot: 1.5707963267948966 rad @@ -209418,7 +209496,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27188 + - uid: 27032 components: - type: Transform rot: 1.5707963267948966 rad @@ -209426,7 +209504,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27189 + - uid: 27033 components: - type: Transform rot: 1.5707963267948966 rad @@ -209434,7 +209512,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27190 + - uid: 27034 components: - type: Transform rot: 3.141592653589793 rad @@ -209442,7 +209520,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27191 + - uid: 27035 components: - type: Transform rot: 1.5707963267948966 rad @@ -209450,7 +209528,7 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27192 + - uid: 27036 components: - type: Transform rot: 3.141592653589793 rad @@ -209458,240 +209536,240 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27193 + - uid: 27037 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-59.5 parent: 2 - - uid: 27194 + - uid: 27038 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,26.5 parent: 2 - - uid: 27195 + - uid: 27039 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,13.5 parent: 2 - - uid: 27196 + - uid: 27040 components: - type: Transform pos: -77.5,1.5 parent: 2 - - uid: 27197 + - uid: 27041 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-1.5 parent: 2 - - uid: 27198 + - uid: 27042 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,84.5 parent: 2 - - uid: 27199 + - uid: 27043 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,84.5 parent: 2 - - uid: 27200 + - uid: 27044 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,84.5 parent: 2 - - uid: 27201 + - uid: 27045 components: - type: Transform pos: 42.5,5.5 parent: 2 - - uid: 27202 + - uid: 27046 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,12.5 parent: 2 - - uid: 27203 + - uid: 27047 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,5.5 parent: 2 - - uid: 27204 + - uid: 27048 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-2.5 parent: 2 - - uid: 27205 + - uid: 27049 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-2.5 parent: 2 - - uid: 27206 + - uid: 27050 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-2.5 parent: 2 - - uid: 27207 + - uid: 27051 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-4.5 parent: 2 - - uid: 27208 + - uid: 27052 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,6.5 parent: 2 - - uid: 27209 + - uid: 27053 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,6.5 parent: 2 - - uid: 27210 + - uid: 27054 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,6.5 parent: 2 - - uid: 27211 + - uid: 27055 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,24.5 parent: 2 - - uid: 27212 + - uid: 27056 components: - type: Transform pos: 3.5,77.5 parent: 2 - - uid: 27213 + - uid: 27057 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,9.5 parent: 2 - - uid: 27214 + - uid: 27058 components: - type: Transform pos: 35.5,39.5 parent: 2 - - uid: 27215 + - uid: 27059 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 - - uid: 27216 + - uid: 27060 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-3.5 parent: 2 - - uid: 27217 + - uid: 27061 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,13.5 parent: 2 - - uid: 27218 + - uid: 27062 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,16.5 parent: 2 - - uid: 27219 + - uid: 27063 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 2 - - uid: 27220 + - uid: 27064 components: - type: Transform pos: 24.5,22.5 parent: 2 - - uid: 39580 + - uid: 39407 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,0.5 - parent: 38584 - - uid: 39581 + parent: 38411 + - uid: 39408 components: - type: Transform pos: -15.5,10.5 - parent: 38584 - - uid: 39582 + parent: 38411 + - uid: 39409 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 - parent: 38584 - - uid: 39583 + parent: 38411 + - uid: 39410 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-8.5 - parent: 38584 - - uid: 39584 + parent: 38411 + - uid: 39411 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,6.5 - parent: 38584 - - uid: 39585 + parent: 38411 + - uid: 39412 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,0.5 - parent: 38584 - - uid: 39586 + parent: 38411 + - uid: 39413 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,0.5 - parent: 38584 - - uid: 39587 + parent: 38411 + - uid: 39414 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 - parent: 38584 - - uid: 39588 + parent: 38411 + - uid: 39415 components: - type: Transform pos: -18.5,10.5 - parent: 38584 - - uid: 39589 + parent: 38411 + - uid: 39416 components: - type: Transform pos: -21.5,10.5 - parent: 38584 - - uid: 39590 + parent: 38411 + - uid: 39417 components: - type: Transform pos: -13.5,13.5 - parent: 38584 - - uid: 39591 + parent: 38411 + - uid: 39418 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,6.5 - parent: 38584 + parent: 38411 - proto: PoweredSmallLightEmpty entities: - - uid: 27221 + - uid: 27065 components: - type: Transform rot: 3.141592653589793 rad @@ -209699,13 +209777,13 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27222 + - uid: 27066 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-37.5 parent: 2 - - uid: 27223 + - uid: 27067 components: - type: Transform rot: 3.141592653589793 rad @@ -209713,2286 +209791,2286 @@ entities: parent: 2 - proto: PrinterDoc entities: - - uid: 27224 + - uid: 27068 components: - type: Transform pos: -25.5,-6.5 parent: 2 - - uid: 27225 + - uid: 27069 components: - type: Transform pos: -11.5,5.5 parent: 2 - - uid: 27226 + - uid: 27070 components: - type: Transform pos: 36.5,2.5 parent: 2 - proto: Protolathe entities: - - uid: 27227 + - uid: 27071 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 27228 + - uid: 27072 components: - type: Transform pos: -8.5,-39.5 parent: 2 - proto: PsychBed entities: - - uid: 27229 + - uid: 27073 components: - type: Transform pos: 18.5,-52.5 parent: 2 - proto: PuddleEgg entities: - - uid: 27230 + - uid: 27074 components: - type: Transform pos: 56.5,-38.5 parent: 2 - proto: Rack entities: - - uid: 27231 + - uid: 27075 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,17.5 parent: 2 - - uid: 27232 + - uid: 27076 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,12.5 parent: 2 - - uid: 27233 + - uid: 27077 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 27234 + - uid: 27078 components: - type: Transform pos: 6.5,-14.5 parent: 2 - - uid: 27235 + - uid: 27079 components: - type: Transform pos: -40.5,45.5 parent: 2 - - uid: 27236 + - uid: 27080 components: - type: Transform pos: -40.5,44.5 parent: 2 - - uid: 27237 + - uid: 27081 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,7.5 parent: 2 - - uid: 27238 + - uid: 27082 components: - type: Transform pos: 95.5,6.5 parent: 2 - - uid: 27239 + - uid: 27083 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-47.5 parent: 2 - - uid: 27240 + - uid: 27084 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-37.5 parent: 2 - - uid: 27241 + - uid: 27085 components: - type: Transform pos: -30.5,-69.5 parent: 2 - - uid: 27242 + - uid: 27086 components: - type: Transform pos: -49.5,-32.5 parent: 2 - - uid: 27243 + - uid: 27087 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-55.5 parent: 2 - - uid: 27244 + - uid: 27088 components: - type: Transform pos: -29.5,-69.5 parent: 2 - - uid: 27245 + - uid: 27089 components: - type: Transform pos: -50.5,-32.5 parent: 2 - - uid: 27246 + - uid: 27090 components: - type: Transform pos: -55.5,-37.5 parent: 2 - - uid: 27247 + - uid: 27091 components: - type: Transform pos: -51.5,-32.5 parent: 2 - - uid: 27248 + - uid: 27092 components: - type: Transform pos: -47.5,-32.5 parent: 2 - - uid: 27249 + - uid: 27093 components: - type: Transform pos: -35.5,-62.5 parent: 2 - - uid: 27250 + - uid: 27094 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,36.5 parent: 2 - - uid: 27251 + - uid: 27095 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,36.5 parent: 2 - - uid: 27252 + - uid: 27096 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,36.5 parent: 2 - - uid: 27253 + - uid: 27097 components: - type: Transform pos: 9.5,72.5 parent: 2 - - uid: 27254 + - uid: 27098 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,8.5 parent: 2 - - uid: 27255 + - uid: 27099 components: - type: Transform pos: 50.5,5.5 parent: 2 - - uid: 27256 + - uid: 27100 components: - type: Transform pos: -52.5,32.5 parent: 2 - - uid: 27257 + - uid: 27101 components: - type: Transform pos: -10.5,-43.5 parent: 2 - - uid: 27258 + - uid: 27102 components: - type: Transform pos: -80.5,13.5 parent: 2 - - uid: 27259 + - uid: 27103 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-4.5 parent: 2 - - uid: 27261 + - uid: 27104 components: - type: Transform pos: -43.5,-48.5 parent: 2 - - uid: 27262 + - uid: 27105 components: - type: Transform pos: -26.5,-47.5 parent: 2 - - uid: 27263 + - uid: 27106 components: - type: Transform pos: -4.5,26.5 parent: 2 - - uid: 27264 + - uid: 27107 components: - type: Transform pos: -63.5,0.5 parent: 2 - - uid: 27265 + - uid: 27108 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-60.5 parent: 2 - - uid: 27266 + - uid: 27109 components: - type: Transform pos: 40.5,-31.5 parent: 2 - - uid: 27267 + - uid: 27110 components: - type: Transform pos: -46.5,-48.5 parent: 2 - - uid: 27268 + - uid: 27111 components: - type: Transform pos: -64.5,-31.5 parent: 2 - - uid: 27269 + - uid: 27112 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,1.5 parent: 2 - - uid: 27270 + - uid: 27113 components: - type: Transform pos: 20.5,65.5 parent: 2 - - uid: 27271 + - uid: 27114 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 27272 + - uid: 27115 components: - type: Transform pos: -63.5,4.5 parent: 2 - - uid: 27273 + - uid: 27116 components: - type: Transform pos: 71.5,-4.5 parent: 2 - - uid: 27274 + - uid: 27117 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-43.5 parent: 2 - - uid: 27275 + - uid: 27118 components: - type: Transform pos: -34.5,-56.5 parent: 2 - - uid: 27276 + - uid: 27119 components: - type: Transform pos: 63.5,7.5 parent: 2 - - uid: 27277 + - uid: 27120 components: - type: Transform pos: -60.5,20.5 parent: 2 - - uid: 27278 + - uid: 27121 components: - type: Transform pos: 2.5,-37.5 parent: 2 - - uid: 27279 + - uid: 27122 components: - type: Transform pos: -29.5,58.5 parent: 2 - - uid: 27280 + - uid: 27123 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-27.5 parent: 2 - - uid: 27281 + - uid: 27124 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,9.5 parent: 2 - - uid: 27282 + - uid: 27125 components: - type: Transform pos: -34.5,13.5 parent: 2 - - uid: 27283 + - uid: 27126 components: - type: Transform pos: -77.5,-19.5 parent: 2 - - uid: 27284 + - uid: 27127 components: - type: Transform pos: 15.5,-54.5 parent: 2 - - uid: 27285 + - uid: 27128 components: - type: Transform pos: 10.5,74.5 parent: 2 - - uid: 27286 + - uid: 27129 components: - type: Transform pos: 23.5,57.5 parent: 2 - - uid: 27287 + - uid: 27130 components: - type: Transform pos: 43.5,-38.5 parent: 2 - - uid: 27288 + - uid: 27131 components: - type: Transform pos: 34.5,-18.5 parent: 2 - - uid: 27289 + - uid: 27132 components: - type: Transform pos: -28.5,13.5 parent: 2 - - uid: 27290 + - uid: 27133 components: - type: Transform pos: -28.5,10.5 parent: 2 - - uid: 27291 + - uid: 27134 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-59.5 parent: 2 - - uid: 27292 + - uid: 27135 components: - type: Transform pos: -36.5,13.5 parent: 2 - - uid: 27293 + - uid: 27136 components: - type: Transform pos: -34.5,11.5 parent: 2 - - uid: 27294 + - uid: 27137 components: - type: Transform pos: -49.5,-12.5 parent: 2 - - uid: 27295 + - uid: 27138 components: - type: Transform pos: -61.5,13.5 parent: 2 - - uid: 27296 + - uid: 27139 components: - type: Transform pos: 36.5,-51.5 parent: 2 - - uid: 27297 + - uid: 27140 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,26.5 parent: 2 - - uid: 27298 + - uid: 27141 components: - type: Transform pos: 9.5,84.5 parent: 2 - - uid: 27299 + - uid: 27142 components: - type: Transform pos: -35.5,19.5 parent: 2 - - uid: 27300 + - uid: 27143 components: - type: Transform pos: -3.5,13.5 parent: 2 - - uid: 27301 + - uid: 27144 components: - type: Transform pos: -45.5,-48.5 parent: 2 - - uid: 27302 + - uid: 27145 components: - type: Transform pos: 2.5,13.5 parent: 2 - - uid: 27303 + - uid: 27146 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,26.5 parent: 2 - - uid: 27304 + - uid: 27147 components: - type: Transform pos: -64.5,4.5 parent: 2 - - uid: 27305 + - uid: 27148 components: - type: Transform pos: 20.5,10.5 parent: 2 - - uid: 27306 + - uid: 27149 components: - type: Transform pos: -15.5,-12.5 parent: 2 - - uid: 27307 + - uid: 27150 components: - type: Transform pos: -40.5,48.5 parent: 2 - - uid: 27308 + - uid: 27151 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,8.5 parent: 2 - - uid: 27309 + - uid: 27152 components: - type: Transform pos: 30.5,32.5 parent: 2 - - uid: 27310 + - uid: 27153 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 27311 + - uid: 27154 components: - type: Transform pos: -15.5,-14.5 parent: 2 - - uid: 27312 + - uid: 27155 components: - type: Transform pos: 20.5,-18.5 parent: 2 - - uid: 27313 + - uid: 27156 components: - type: Transform pos: -36.5,59.5 parent: 2 - - uid: 27314 + - uid: 27157 components: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 27315 + - uid: 27158 components: - type: Transform pos: 20.5,26.5 parent: 2 - - uid: 27316 + - uid: 27159 components: - type: Transform pos: 20.5,-17.5 parent: 2 - - uid: 27317 + - uid: 27160 components: - type: Transform pos: -36.5,11.5 parent: 2 - - uid: 27318 + - uid: 27161 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 27319 + - uid: 27162 components: - type: Transform pos: 61.5,9.5 parent: 2 - - uid: 27320 + - uid: 27163 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 27321 + - uid: 27164 components: - type: Transform pos: -36.5,19.5 parent: 2 - - uid: 27322 + - uid: 27165 components: - type: Transform pos: 4.5,42.5 parent: 2 - - uid: 27323 + - uid: 27166 components: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 27324 + - uid: 27167 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,9.5 parent: 2 - - uid: 27325 + - uid: 27168 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,9.5 parent: 2 - - uid: 27326 + - uid: 27169 components: - type: Transform pos: -32.5,-35.5 parent: 2 - - uid: 27327 + - uid: 27170 components: - type: Transform pos: 34.5,-29.5 parent: 2 - - uid: 27328 + - uid: 27171 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,9.5 parent: 2 - - uid: 27329 + - uid: 27172 components: - type: Transform pos: 43.5,-43.5 parent: 2 - - uid: 27330 + - uid: 27173 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,8.5 parent: 2 - - uid: 27331 + - uid: 27174 components: - type: Transform pos: 3.5,-48.5 parent: 2 - - uid: 27332 + - uid: 27175 components: - type: Transform pos: -61.5,11.5 parent: 2 - - uid: 27333 + - uid: 27176 components: - type: Transform pos: 20.5,8.5 parent: 2 - - uid: 27334 + - uid: 27177 components: - type: Transform pos: 53.5,-54.5 parent: 2 - - uid: 27335 + - uid: 27178 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-47.5 parent: 2 - - uid: 27336 + - uid: 27179 components: - type: Transform pos: -33.5,-35.5 parent: 2 - - uid: 27337 + - uid: 27180 components: - type: Transform pos: -22.5,54.5 parent: 2 - - uid: 27338 + - uid: 27181 components: - type: Transform pos: 36.5,-4.5 parent: 2 - - uid: 27339 + - uid: 27182 components: - type: Transform pos: -39.5,56.5 parent: 2 - - uid: 27340 + - uid: 27183 components: - type: Transform pos: -37.5,25.5 parent: 2 - - uid: 27341 + - uid: 27184 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-41.5 parent: 2 - - uid: 27342 + - uid: 27185 components: - type: Transform pos: -57.5,-20.5 parent: 2 - - uid: 27343 + - uid: 27186 components: - type: Transform pos: -36.5,14.5 parent: 2 - - uid: 27344 + - uid: 27187 components: - type: Transform pos: -36.5,10.5 parent: 2 - - uid: 27345 + - uid: 27188 components: - type: Transform pos: -34.5,14.5 parent: 2 - - uid: 27346 + - uid: 27189 components: - type: Transform pos: -34.5,10.5 parent: 2 - - uid: 27347 + - uid: 27190 components: - type: Transform pos: 37.5,-1.5 parent: 2 - - uid: 27348 + - uid: 27191 components: - type: Transform pos: 43.5,-39.5 parent: 2 - - uid: 27349 + - uid: 27192 components: - type: Transform pos: -65.5,-31.5 parent: 2 - - uid: 27350 + - uid: 27193 components: - type: Transform pos: -29.5,-44.5 parent: 2 - - uid: 27351 + - uid: 27194 components: - type: Transform pos: -34.5,19.5 parent: 2 - - uid: 27352 + - uid: 27195 components: - type: Transform pos: 9.5,64.5 parent: 2 - - uid: 27353 + - uid: 27196 components: - type: Transform pos: -28.5,32.5 parent: 2 - - uid: 27354 + - uid: 27197 components: - type: Transform pos: -51.5,-22.5 parent: 2 - - uid: 27355 + - uid: 27198 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-13.5 parent: 2 - - uid: 27356 + - uid: 27199 components: - type: Transform pos: 49.5,-11.5 parent: 2 - - uid: 27357 + - uid: 27200 components: - type: Transform pos: -10.5,-57.5 parent: 2 - - uid: 27358 + - uid: 27201 components: - type: Transform pos: -53.5,38.5 parent: 2 - - uid: 27359 + - uid: 27202 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 27360 + - uid: 27203 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-15.5 parent: 2 - - uid: 27361 + - uid: 27204 components: - type: Transform pos: 12.5,62.5 parent: 2 - - uid: 27362 + - uid: 27205 components: - type: Transform pos: 11.5,70.5 parent: 2 - - uid: 27363 + - uid: 27206 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 - - uid: 27364 + - uid: 27207 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 - - uid: 27365 + - uid: 27208 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 - - uid: 27366 + - uid: 27209 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-46.5 parent: 2 - - uid: 27367 + - uid: 27210 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,10.5 parent: 2 - - uid: 27368 + - uid: 27211 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,7.5 parent: 2 - - uid: 27369 + - uid: 27212 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,8.5 parent: 2 - - uid: 27370 + - uid: 27213 components: - type: Transform pos: 63.5,9.5 parent: 2 - - uid: 27371 + - uid: 27214 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,10.5 parent: 2 - - uid: 27372 + - uid: 27215 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,7.5 parent: 2 - - uid: 27373 + - uid: 27216 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,10.5 parent: 2 - - uid: 27374 + - uid: 27217 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,10.5 parent: 2 - - uid: 27375 + - uid: 27218 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,7.5 parent: 2 - - uid: 27376 + - uid: 27219 components: - type: Transform pos: -41.5,63.5 parent: 2 - - uid: 27377 + - uid: 27220 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-34.5 parent: 2 - - uid: 27378 + - uid: 27221 components: - type: Transform pos: -36.5,-54.5 parent: 2 - - uid: 27379 + - uid: 27222 components: - type: Transform pos: 10.5,70.5 parent: 2 - - uid: 27380 + - uid: 27223 components: - type: Transform pos: -31.5,-79.5 parent: 2 - - uid: 27381 + - uid: 27224 components: - type: Transform pos: -30.5,-79.5 parent: 2 - - uid: 27382 + - uid: 27225 components: - type: Transform pos: -39.5,-61.5 parent: 2 - - uid: 27383 + - uid: 27226 components: - type: Transform pos: -71.5,-20.5 parent: 2 - - uid: 27384 + - uid: 27227 components: - type: Transform pos: -70.5,-20.5 parent: 2 - - uid: 27385 + - uid: 27228 components: - type: Transform pos: 93.5,7.5 parent: 2 - - uid: 27386 + - uid: 27229 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-1.5 parent: 2 - - uid: 27387 + - uid: 27230 components: - type: Transform pos: 77.5,-1.5 parent: 2 - - uid: 27388 + - uid: 27231 components: - type: Transform pos: -42.5,-5.5 parent: 2 - - uid: 27389 + - uid: 27232 components: - type: Transform pos: -42.5,-4.5 parent: 2 - - uid: 27390 + - uid: 27233 components: - type: Transform pos: -70.5,-31.5 parent: 2 - - uid: 27391 + - uid: 27234 components: - type: Transform pos: 10.5,-11.5 parent: 2 - - uid: 27392 + - uid: 27235 components: - type: Transform pos: 52.5,-32.5 parent: 2 - - uid: 27393 + - uid: 27236 components: - type: Transform pos: 40.5,-41.5 parent: 2 - - uid: 27394 + - uid: 27237 components: - type: Transform pos: 40.5,-40.5 parent: 2 - - uid: 27395 + - uid: 27238 components: - type: Transform pos: 52.5,-42.5 parent: 2 - - uid: 27396 + - uid: 27239 components: - type: Transform pos: 51.5,-47.5 parent: 2 - - uid: 27397 + - uid: 27240 components: - type: Transform pos: 26.5,12.5 parent: 2 - - uid: 27398 + - uid: 27241 components: - type: Transform pos: 24.5,21.5 parent: 2 - - uid: 39592 + - uid: 39419 components: - type: Transform pos: -11.5,13.5 - parent: 38584 - - uid: 39593 + parent: 38411 + - uid: 39420 components: - type: Transform pos: 11.5,-1.5 - parent: 38584 - - uid: 39594 + parent: 38411 + - uid: 39421 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,36.5 - parent: 38584 - - uid: 39595 + parent: 38411 + - uid: 39422 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,18.5 - parent: 38584 - - uid: 39596 + parent: 38411 + - uid: 39423 components: - type: Transform pos: 10.5,0.5 - parent: 38584 - - uid: 39597 + parent: 38411 + - uid: 39424 components: - type: Transform pos: 9.5,0.5 - parent: 38584 - - uid: 39598 + parent: 38411 + - uid: 39425 components: - type: Transform pos: 11.5,-6.5 - parent: 38584 + parent: 38411 - proto: RadAutoInjector entities: - - uid: 886 + - uid: 878 components: - type: Transform - parent: 879 + parent: 871 - type: Physics canCollide: False - type: InsideEntityStorage - proto: RadiationCollectorNoTank entities: - - uid: 27399 + - uid: 27242 components: - type: Transform pos: -68.5,-12.5 parent: 2 - - uid: 27400 + - uid: 27243 components: - type: Transform pos: -67.5,-12.5 parent: 2 - proto: RadioHandheld entities: - - uid: 27401 + - uid: 27244 components: - type: Transform pos: -38.507664,16.494808 parent: 2 - type: Physics canCollide: False - - uid: 27402 + - uid: 27245 components: - type: Transform pos: -7.4282737,-61.33261 parent: 2 - type: Physics canCollide: False - - uid: 27403 + - uid: 27246 components: - type: Transform pos: -21.521952,8.828284 parent: 2 - type: Physics canCollide: False - - uid: 27404 + - uid: 27247 components: - type: Transform pos: -21.899271,0.773466 parent: 2 - - uid: 27405 + - uid: 27248 components: - type: Transform pos: -21.303202,8.797034 parent: 2 - type: Physics canCollide: False - - uid: 27406 + - uid: 27249 components: - type: Transform pos: 9.521468,46.629864 parent: 2 - type: Physics canCollide: False - - uid: 27407 + - uid: 27250 components: - type: Transform pos: -23.483797,-20.528557 parent: 2 - type: Physics canCollide: False - - uid: 27408 + - uid: 27251 components: - type: Transform pos: 72.508095,-44.48285 parent: 2 - - uid: 27409 + - uid: 27252 components: - type: Transform pos: 0.5350927,62.72263 parent: 2 - proto: Railing entities: - - uid: 27410 + - uid: 27253 components: - type: Transform pos: -32.5,-75.5 parent: 2 - - uid: 27411 + - uid: 27254 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-79.5 parent: 2 - - uid: 27412 + - uid: 27255 components: - type: Transform pos: -31.5,-75.5 parent: 2 - - uid: 27413 + - uid: 27256 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 - - uid: 27414 + - uid: 27257 components: - type: Transform pos: -30.5,-75.5 parent: 2 - - uid: 27415 + - uid: 27258 components: - type: Transform pos: -33.5,-75.5 parent: 2 - - uid: 27416 + - uid: 27259 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-76.5 parent: 2 - - uid: 27417 + - uid: 27260 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,64.5 parent: 2 - - uid: 27418 + - uid: 27261 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,63.5 parent: 2 - - uid: 27419 + - uid: 27262 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,62.5 parent: 2 - - uid: 27420 + - uid: 27263 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,61.5 parent: 2 - - uid: 27421 + - uid: 27264 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-18.5 parent: 2 - - uid: 27422 + - uid: 27265 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-23.5 parent: 2 - - uid: 27423 + - uid: 27266 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-18.5 parent: 2 - - uid: 27424 + - uid: 27267 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-23.5 parent: 2 - - uid: 27425 + - uid: 27268 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-23.5 parent: 2 - - uid: 27426 + - uid: 27269 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-17.5 parent: 2 - - uid: 27427 + - uid: 27270 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-19.5 parent: 2 - - uid: 27428 + - uid: 27271 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-23.5 parent: 2 - - uid: 27429 + - uid: 27272 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-21.5 parent: 2 - - uid: 27430 + - uid: 27273 components: - type: Transform pos: 57.5,-16.5 parent: 2 - - uid: 27431 + - uid: 27274 components: - type: Transform pos: 60.5,-16.5 parent: 2 - - uid: 27432 + - uid: 27275 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-21.5 parent: 2 - - uid: 27433 + - uid: 27276 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-22.5 parent: 2 - - uid: 27434 + - uid: 27277 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-20.5 parent: 2 - - uid: 27435 + - uid: 27278 components: - type: Transform pos: 61.5,-16.5 parent: 2 - - uid: 27436 + - uid: 27279 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,44.5 parent: 2 - - uid: 27437 + - uid: 27280 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-15.5 parent: 2 - - uid: 27438 + - uid: 27281 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,44.5 parent: 2 - - uid: 27439 + - uid: 27282 components: - type: Transform pos: -62.5,-17.5 parent: 2 - - uid: 27440 + - uid: 27283 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-6.5 parent: 2 - - uid: 27441 + - uid: 27284 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-6.5 parent: 2 - - uid: 27442 + - uid: 27285 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-6.5 parent: 2 - - uid: 27443 + - uid: 27286 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 - - uid: 27444 + - uid: 27287 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,32.5 parent: 2 - - uid: 27445 + - uid: 27288 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,30.5 parent: 2 - - uid: 27446 + - uid: 27289 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,27.5 parent: 2 - - uid: 27447 + - uid: 27290 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,40.5 parent: 2 - - uid: 27448 + - uid: 27291 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,41.5 parent: 2 - - uid: 27449 + - uid: 27292 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,38.5 parent: 2 - - uid: 27450 + - uid: 27293 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,29.5 parent: 2 - - uid: 27451 + - uid: 27294 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,31.5 parent: 2 - - uid: 27452 + - uid: 27295 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,28.5 parent: 2 - - uid: 27453 + - uid: 27296 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 - - uid: 27454 + - uid: 27297 components: - type: Transform pos: -16.5,35.5 parent: 2 - - uid: 27455 + - uid: 27298 components: - type: Transform pos: -15.5,35.5 parent: 2 - - uid: 27456 + - uid: 27299 components: - type: Transform pos: -19.5,44.5 parent: 2 - - uid: 27457 + - uid: 27300 components: - type: Transform pos: -17.5,44.5 parent: 2 - - uid: 27458 + - uid: 27301 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,42.5 parent: 2 - - uid: 27459 + - uid: 27302 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,43.5 parent: 2 - - uid: 27460 + - uid: 27303 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,26.5 parent: 2 - - uid: 27461 + - uid: 27304 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,31.5 parent: 2 - - uid: 27462 + - uid: 27305 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,29.5 parent: 2 - - uid: 27463 + - uid: 27306 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,40.5 parent: 2 - - uid: 27464 + - uid: 27307 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,41.5 parent: 2 - - uid: 27465 + - uid: 27308 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,38.5 parent: 2 - - uid: 27466 + - uid: 27309 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,34.5 parent: 2 - - uid: 27467 + - uid: 27310 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,33.5 parent: 2 - - uid: 27468 + - uid: 27311 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-3.5 parent: 2 - - uid: 27469 + - uid: 27312 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,0.5 parent: 2 - - uid: 27470 + - uid: 27313 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,42.5 parent: 2 - - uid: 27471 + - uid: 27314 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,40.5 parent: 2 - - uid: 27472 + - uid: 27315 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,38.5 parent: 2 - - uid: 27473 + - uid: 27316 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,33.5 parent: 2 - - uid: 27474 + - uid: 27317 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 2 - - uid: 27475 + - uid: 27318 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,41.5 parent: 2 - - uid: 27476 + - uid: 27319 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,27.5 parent: 2 - - uid: 27477 + - uid: 27320 components: - type: Transform pos: -18.5,44.5 parent: 2 - - uid: 27478 + - uid: 27321 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-27.5 parent: 2 - - uid: 27479 + - uid: 27322 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-26.5 parent: 2 - - uid: 27480 + - uid: 27323 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-27.5 parent: 2 - - uid: 27481 + - uid: 27324 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-26.5 parent: 2 - - uid: 27482 + - uid: 27325 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,42.5 parent: 2 - - uid: 27483 + - uid: 27326 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-23.5 parent: 2 - - uid: 27484 + - uid: 27327 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-17.5 parent: 2 - - uid: 27485 + - uid: 27328 components: - type: Transform pos: 59.5,-16.5 parent: 2 - - uid: 27486 + - uid: 27329 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-22.5 parent: 2 - - uid: 27487 + - uid: 27330 components: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 27488 + - uid: 27331 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-76.5 parent: 2 - - uid: 27489 + - uid: 27332 components: - type: Transform pos: -34.5,-75.5 parent: 2 - - uid: 27490 + - uid: 27333 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 - - uid: 27491 + - uid: 27334 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 - - uid: 27492 + - uid: 27335 components: - type: Transform pos: -1.5,-9.5 parent: 2 - - uid: 27493 + - uid: 27336 components: - type: Transform pos: -2.5,-9.5 parent: 2 - - uid: 27494 + - uid: 27337 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 27495 + - uid: 27338 components: - type: Transform pos: 0.50000006,-9.5 parent: 2 - - uid: 27496 + - uid: 27339 components: - type: Transform pos: 1.5,-9.5 parent: 2 - - uid: 27497 + - uid: 27340 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 2 - - uid: 27498 + - uid: 27341 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - - uid: 27499 + - uid: 27342 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,5.5 parent: 2 - - uid: 27500 + - uid: 27343 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,5.5 parent: 2 - - uid: 39599 + - uid: 39426 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-2.5 - parent: 38584 - - uid: 39600 + parent: 38411 + - uid: 39427 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-1.5 - parent: 38584 - - uid: 39601 + parent: 38411 + - uid: 39428 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 - parent: 38584 - - uid: 39602 + parent: 38411 + - uid: 39429 components: - type: Transform pos: -1.5,23.5 - parent: 38584 - - uid: 39603 + parent: 38411 + - uid: 39430 components: - type: Transform pos: -2.5,23.5 - parent: 38584 - - uid: 39604 + parent: 38411 + - uid: 39431 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,25.5 - parent: 38584 - - uid: 39605 + parent: 38411 + - uid: 39432 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,26.5 - parent: 38584 - - uid: 39606 + parent: 38411 + - uid: 39433 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,27.5 - parent: 38584 - - uid: 39607 + parent: 38411 + - uid: 39434 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,29.5 - parent: 38584 - - uid: 39608 + parent: 38411 + - uid: 39435 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,28.5 - parent: 38584 - - uid: 39609 + parent: 38411 + - uid: 39436 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,16.5 - parent: 38584 - - uid: 39610 + parent: 38411 + - uid: 39437 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,17.5 - parent: 38584 - - uid: 39611 + parent: 38411 + - uid: 39438 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,14.5 - parent: 38584 - - uid: 39612 + parent: 38411 + - uid: 39439 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,18.5 - parent: 38584 - - uid: 39613 + parent: 38411 + - uid: 39440 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,18.5 - parent: 38584 - - uid: 39614 + parent: 38411 + - uid: 39441 components: - type: Transform pos: 14.5,20.5 - parent: 38584 - - uid: 39615 + parent: 38411 + - uid: 39442 components: - type: Transform pos: 12.5,20.5 - parent: 38584 - - uid: 39616 + parent: 38411 + - uid: 39443 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,15.5 - parent: 38584 + parent: 38411 - proto: RailingCorner entities: - - uid: 27501 + - uid: 27344 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,28.5 parent: 2 - - uid: 27502 + - uid: 27345 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,44.5 parent: 2 - - uid: 27503 + - uid: 27346 components: - type: Transform pos: -20.5,43.5 parent: 2 - - uid: 27504 + - uid: 27347 components: - type: Transform pos: -14.5,32.5 parent: 2 - - uid: 27505 + - uid: 27348 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,43.5 parent: 2 - - uid: 27506 + - uid: 27349 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,39.5 parent: 2 - - uid: 27507 + - uid: 27350 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,39.5 parent: 2 - - uid: 27508 + - uid: 27351 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 - - uid: 39617 + - uid: 39444 components: - type: Transform pos: -19.5,-3.5 - parent: 38584 - - uid: 39618 + parent: 38411 + - uid: 39445 components: - type: Transform pos: -20.5,24.5 - parent: 38584 + parent: 38411 - proto: RailingCornerSmall entities: - - uid: 14189 + - uid: 27352 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-25.5 parent: 2 - - uid: 14192 + - uid: 27353 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 - - uid: 27509 + - uid: 27354 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-75.5 parent: 2 - - uid: 27510 + - uid: 27355 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-75.5 parent: 2 - - uid: 27511 + - uid: 27356 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-23.5 parent: 2 - - uid: 27512 + - uid: 27357 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-20.5 parent: 2 - - uid: 27513 + - uid: 27358 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,60.5 parent: 2 - - uid: 27514 + - uid: 27359 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-16.5 parent: 2 - - uid: 27515 + - uid: 27360 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-23.5 parent: 2 - - uid: 27516 + - uid: 27361 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-19.5 parent: 2 - - uid: 27517 + - uid: 27362 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-20.5 parent: 2 - - uid: 27518 + - uid: 27363 components: - type: Transform pos: 62.5,-23.5 parent: 2 - - uid: 27519 + - uid: 27364 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-16.5 parent: 2 - - uid: 27520 + - uid: 27365 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,44.5 parent: 2 - - uid: 27521 + - uid: 27366 components: - type: Transform pos: -16.5,38.5 parent: 2 - - uid: 27522 + - uid: 27367 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,44.5 parent: 2 - - uid: 27523 + - uid: 27368 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,43.5 parent: 2 - - uid: 27524 + - uid: 27369 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,43.5 parent: 2 - - uid: 27525 + - uid: 27370 components: - type: Transform pos: -15.5,39.5 parent: 2 - - uid: 27526 + - uid: 27371 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,32.5 parent: 2 - - uid: 27527 + - uid: 27372 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,28.5 parent: 2 - - uid: 27528 + - uid: 27373 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-4.5 parent: 2 - - uid: 27529 + - uid: 27374 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,1.5 parent: 2 - - uid: 27530 + - uid: 27375 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,35.5 parent: 2 - - uid: 27531 + - uid: 27376 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,38.5 parent: 2 - - uid: 27532 + - uid: 27377 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,39.5 parent: 2 - - uid: 27533 + - uid: 27378 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,65.5 parent: 2 - - uid: 27534 + - uid: 27379 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - - uid: 27535 + - uid: 27380 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 27536 + - uid: 27381 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-9.5 parent: 2 - - uid: 27537 + - uid: 27382 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 - - uid: 27538 + - uid: 27383 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 27539 + - uid: 27384 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - - uid: 27540 + - uid: 27385 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 parent: 2 - - uid: 27541 + - uid: 27386 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 27542 + - uid: 27387 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 39619 + - uid: 39446 components: - type: Transform pos: -18.5,-3.5 - parent: 38584 - - uid: 39620 + parent: 38411 + - uid: 39447 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-2.5 - parent: 38584 - - uid: 39621 + parent: 38411 + - uid: 39448 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-3.5 - parent: 38584 - - uid: 39622 + parent: 38411 + - uid: 39449 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,23.5 - parent: 38584 - - uid: 39623 + parent: 38411 + - uid: 39450 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,23.5 - parent: 38584 - - uid: 39624 + parent: 38411 + - uid: 39451 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,24.5 - parent: 38584 - - uid: 39625 + parent: 38411 + - uid: 39452 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,30.5 - parent: 38584 - - uid: 39626 + parent: 38411 + - uid: 39453 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,27.5 - parent: 38584 - - uid: 39627 + parent: 38411 + - uid: 39454 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,29.5 - parent: 38584 - - uid: 39628 + parent: 38411 + - uid: 39455 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,13.5 - parent: 38584 - - uid: 39629 + parent: 38411 + - uid: 39456 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,16.5 - parent: 38584 - - uid: 39630 + parent: 38411 + - uid: 39457 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,18.5 - parent: 38584 + parent: 38411 - proto: RandomArtifactSpawner entities: - - uid: 27543 + - uid: 27388 components: - type: Transform pos: -37.5,-40.5 parent: 2 - proto: RandomDrinkBottle entities: - - uid: 27544 + - uid: 27389 components: - type: Transform pos: -3.5,41.5 parent: 2 - proto: RandomDrinkGlass entities: - - uid: 27545 + - uid: 27390 components: - type: Transform pos: -11.5,44.5 parent: 2 - - uid: 27546 + - uid: 27391 components: - type: Transform pos: 95.5,2.5 parent: 2 - proto: RandomDrinkSoda entities: - - uid: 27547 + - uid: 27392 components: - type: Transform pos: 63.5,24.5 parent: 2 - - uid: 27548 + - uid: 27393 components: - type: Transform pos: 68.5,21.5 parent: 2 - proto: RandomFoodBakedWhole entities: - - uid: 27549 + - uid: 27394 components: - type: Transform pos: 63.5,22.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 27550 + - uid: 27395 components: - type: Transform pos: 68.5,23.5 parent: 2 - - uid: 27551 + - uid: 27396 components: - type: Transform pos: 59.5,-9.5 parent: 2 - - uid: 27552 + - uid: 27397 components: - type: Transform pos: 7.5,84.5 parent: 2 - - uid: 27553 + - uid: 27398 components: - type: Transform pos: -69.5,16.5 parent: 2 - - uid: 27554 + - uid: 27399 components: - type: Transform pos: -27.5,37.5 parent: 2 - - uid: 27555 + - uid: 27400 components: - type: Transform pos: -75.5,16.5 parent: 2 - - uid: 27556 + - uid: 27401 components: - type: Transform pos: -70.5,16.5 parent: 2 - - uid: 27557 + - uid: 27402 components: - type: Transform pos: -74.5,16.5 parent: 2 - - uid: 27558 + - uid: 27403 components: - type: Transform pos: -36.5,48.5 parent: 2 - - uid: 27559 + - uid: 27404 components: - type: Transform pos: -24.5,38.5 parent: 2 - - uid: 27560 + - uid: 27405 components: - type: Transform pos: -27.5,34.5 parent: 2 - - uid: 27561 + - uid: 27406 components: - type: Transform pos: 92.5,-1.5 parent: 2 - proto: RandomFoodSingle entities: - - uid: 27562 + - uid: 27407 components: - type: Transform pos: -27.5,32.5 parent: 2 - - uid: 27563 + - uid: 27408 components: - type: Transform pos: 38.5,29.5 parent: 2 - - uid: 27564 + - uid: 27409 components: - type: Transform pos: -24.5,32.5 parent: 2 - - uid: 27565 + - uid: 27410 components: - type: Transform pos: -24.5,34.5 parent: 2 - proto: RandomInstruments entities: - - uid: 27566 + - uid: 27411 components: - type: Transform pos: -6.5,53.5 parent: 2 - - uid: 27567 + - uid: 27412 components: - type: Transform pos: 44.5,13.5 parent: 2 - - uid: 27568 + - uid: 27413 components: - type: Transform pos: 44.5,9.5 parent: 2 - - uid: 27569 + - uid: 27414 components: - type: Transform pos: 41.5,11.5 parent: 2 - - uid: 27570 + - uid: 27415 components: - type: Transform pos: 44.5,1.5 parent: 2 - - uid: 27571 + - uid: 27416 components: - type: Transform pos: 41.5,1.5 parent: 2 - - uid: 27572 + - uid: 27417 components: - type: Transform pos: -70.5,-31.5 parent: 2 - proto: RandomPainting entities: - - uid: 27573 + - uid: 27418 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-0.5 parent: 2 - - uid: 27574 + - uid: 27419 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-0.5 parent: 2 - - uid: 27575 + - uid: 27420 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-2.5 parent: 2 - - uid: 27576 + - uid: 27421 components: - type: Transform pos: -28.5,-0.5 parent: 2 - - uid: 27577 + - uid: 27422 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,0.5 parent: 2 - - uid: 27578 + - uid: 27423 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,3.5 parent: 2 - - uid: 27579 + - uid: 27424 components: - type: Transform pos: 42.5,27.5 parent: 2 - - uid: 27580 + - uid: 27425 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 - - uid: 27581 + - uid: 27426 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-51.5 parent: 2 - - uid: 27582 + - uid: 27427 components: - type: Transform pos: 12.5,-41.5 parent: 2 - - uid: 27583 + - uid: 27428 components: - type: Transform pos: -34.5,-9.5 parent: 2 - - uid: 27584 + - uid: 27429 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,44.5 parent: 2 - - uid: 27585 + - uid: 27430 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 - - uid: 27586 + - uid: 27431 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 - - uid: 27587 + - uid: 27432 components: - type: Transform pos: 9.5,4.5 parent: 2 - - uid: 27588 + - uid: 27433 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,23.5 parent: 2 - - uid: 27589 + - uid: 27434 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,3.5 parent: 2 - - uid: 27590 + - uid: 27435 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,6.5 parent: 2 - - uid: 27591 + - uid: 27436 components: - type: Transform rot: 3.141592653589793 rad @@ -212000,372 +212078,372 @@ entities: parent: 2 - proto: RandomPosterAny entities: - - uid: 27592 + - uid: 27437 components: - type: Transform pos: -23.5,-13.5 parent: 2 - - uid: 27593 + - uid: 27438 components: - type: Transform pos: -25.5,45.5 parent: 2 - - uid: 27594 + - uid: 27439 components: - type: Transform pos: -33.5,45.5 parent: 2 - - uid: 27595 + - uid: 27440 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-63.5 parent: 2 - - uid: 27596 + - uid: 27441 components: - type: Transform pos: 82.5,8.5 parent: 2 - - uid: 27597 + - uid: 27442 components: - type: Transform pos: 90.5,11.5 parent: 2 - proto: RandomPosterContraband entities: - - uid: 27598 + - uid: 27443 components: - type: Transform pos: 8.5,-82.5 parent: 2 - - uid: 27599 + - uid: 27444 components: - type: Transform pos: 98.5,-1.5 parent: 2 - proto: RandomPosterLegit entities: - - uid: 27600 + - uid: 27445 components: - type: Transform pos: 63.5,27.5 parent: 2 - - uid: 27601 + - uid: 27446 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 27602 + - uid: 27447 components: - type: Transform pos: -11.5,35.5 parent: 2 - - uid: 27603 + - uid: 27448 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 27604 + - uid: 27449 components: - type: Transform pos: -2.5,-52.5 parent: 2 - - uid: 27605 + - uid: 27450 components: - type: Transform pos: -11.5,-68.5 parent: 2 - - uid: 27606 + - uid: 27451 components: - type: Transform pos: 4.5,66.5 parent: 2 - - uid: 27607 + - uid: 27452 components: - type: Transform pos: -28.5,66.5 parent: 2 - - uid: 27608 + - uid: 27453 components: - type: Transform pos: 9.5,-30.5 parent: 2 - - uid: 27609 + - uid: 27454 components: - type: Transform pos: 8.5,41.5 parent: 2 - - uid: 27610 + - uid: 27455 components: - type: Transform pos: 76.5,7.5 parent: 2 - - uid: 27611 + - uid: 27456 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,7.5 parent: 2 - - uid: 27612 + - uid: 27457 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,17.5 parent: 2 - - uid: 27613 + - uid: 27458 components: - type: Transform pos: 23.5,-12.5 parent: 2 - - uid: 27614 + - uid: 27459 components: - type: Transform pos: 23.5,39.5 parent: 2 - - uid: 27615 + - uid: 27460 components: - type: Transform pos: -20.5,54.5 parent: 2 - - uid: 27616 + - uid: 27461 components: - type: Transform pos: -24.5,44.5 parent: 2 - - uid: 27617 + - uid: 27462 components: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 27618 + - uid: 27463 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,17.5 parent: 2 - - uid: 27619 + - uid: 27464 components: - type: Transform pos: 60.5,26.5 parent: 2 - - uid: 27620 + - uid: 27465 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,10.5 parent: 2 - - uid: 27621 + - uid: 27466 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 27622 + - uid: 27467 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,53.5 parent: 2 - - uid: 27623 + - uid: 27468 components: - type: Transform pos: 4.5,87.5 parent: 2 - - uid: 27624 + - uid: 27469 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,29.5 parent: 2 - - uid: 27625 + - uid: 27470 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,31.5 parent: 2 - - uid: 27626 + - uid: 27471 components: - type: Transform pos: -31.5,87.5 parent: 2 - - uid: 27627 + - uid: 27472 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,19.5 parent: 2 - - uid: 27628 + - uid: 27473 components: - type: Transform pos: 12.5,47.5 parent: 2 - - uid: 27629 + - uid: 27474 components: - type: Transform pos: -20.5,8.5 parent: 2 - - uid: 27630 + - uid: 27475 components: - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 27631 + - uid: 27476 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,84.5 parent: 2 - - uid: 27632 + - uid: 27477 components: - type: Transform pos: 17.5,33.5 parent: 2 - - uid: 27633 + - uid: 27478 components: - type: Transform pos: -35.5,51.5 parent: 2 - - uid: 27634 + - uid: 27479 components: - type: Transform pos: 2.5,32.5 parent: 2 - - uid: 27635 + - uid: 27480 components: - type: Transform pos: 50.5,-14.5 parent: 2 - - uid: 27636 + - uid: 27481 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,3.5 parent: 2 - - uid: 27637 + - uid: 27482 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-4.5 parent: 2 - - uid: 27638 + - uid: 27483 components: - type: Transform pos: 77.5,7.5 parent: 2 - - uid: 27639 + - uid: 27484 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 27640 + - uid: 27485 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 27641 + - uid: 27486 components: - type: Transform pos: 15.5,-13.5 parent: 2 - - uid: 27642 + - uid: 27487 components: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 27643 + - uid: 27488 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-8.5 parent: 2 - - uid: 27644 + - uid: 27489 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,3.5 parent: 2 - - uid: 27645 + - uid: 27490 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-1.5 parent: 2 - - uid: 27646 + - uid: 27491 components: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 27647 + - uid: 27492 components: - type: Transform pos: 60.5,23.5 parent: 2 - - uid: 27648 + - uid: 27493 components: - type: Transform pos: 55.5,20.5 parent: 2 - - uid: 27649 + - uid: 27494 components: - type: Transform pos: 56.5,-8.5 parent: 2 - - uid: 27650 + - uid: 27495 components: - type: Transform pos: 54.5,-15.5 parent: 2 - - uid: 27651 + - uid: 27496 components: - type: Transform pos: 59.5,-31.5 parent: 2 - - uid: 27652 + - uid: 27497 components: - type: Transform pos: 64.5,-23.5 parent: 2 - - uid: 27653 + - uid: 27498 components: - type: Transform pos: -62.5,39.5 parent: 2 - - uid: 27654 + - uid: 27499 components: - type: Transform pos: 22.5,33.5 parent: 2 - - uid: 27655 + - uid: 27500 components: - type: Transform pos: 86.5,-2.5 parent: 2 - - uid: 27656 + - uid: 27501 components: - type: Transform pos: 82.5,-2.5 parent: 2 - - uid: 27657 + - uid: 27502 components: - type: Transform pos: 78.5,-2.5 parent: 2 - - uid: 27658 + - uid: 27503 components: - type: Transform pos: 80.5,5.5 parent: 2 - - uid: 27659 + - uid: 27504 components: - type: Transform pos: 88.5,8.5 parent: 2 - - uid: 27660 + - uid: 27505 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,31.5 parent: 2 - - uid: 27661 + - uid: 27506 components: - type: Transform rot: 3.141592653589793 rad @@ -212373,907 +212451,907 @@ entities: parent: 2 - proto: RandomSnacks entities: - - uid: 27662 + - uid: 27507 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-41.5 parent: 2 - - uid: 27663 + - uid: 27508 components: - type: Transform pos: -6.5,-77.5 parent: 2 - proto: RandomSoap entities: - - uid: 27664 + - uid: 27509 components: - type: Transform pos: 93.5,6.5 parent: 2 - - uid: 27665 + - uid: 27510 components: - type: Transform pos: -39.5,-61.5 parent: 2 - - uid: 27666 + - uid: 27511 components: - type: Transform pos: -10.5,54.5 parent: 2 - - uid: 27667 + - uid: 27512 components: - type: Transform pos: -8.5,32.5 parent: 2 - - uid: 27668 + - uid: 27513 components: - type: Transform pos: -76.5,-31.5 parent: 2 - proto: RandomSpawner entities: - - uid: 27669 + - uid: 27514 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-74.5 parent: 2 - - uid: 27670 + - uid: 27515 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-79.5 parent: 2 - - uid: 27671 + - uid: 27516 components: - type: Transform pos: -26.5,-67.5 parent: 2 - - uid: 27672 + - uid: 27517 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-57.5 parent: 2 - - uid: 27673 + - uid: 27518 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-60.5 parent: 2 - - uid: 27674 + - uid: 27519 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-55.5 parent: 2 - - uid: 27675 + - uid: 27520 components: - type: Transform pos: -30.5,86.5 parent: 2 - - uid: 27676 + - uid: 27521 components: - type: Transform pos: -12.5,93.5 parent: 2 - - uid: 27677 + - uid: 27522 components: - type: Transform pos: -30.5,70.5 parent: 2 - - uid: 27678 + - uid: 27523 components: - type: Transform pos: -11.5,81.5 parent: 2 - - uid: 27679 + - uid: 27524 components: - type: Transform pos: -28.5,94.5 parent: 2 - - uid: 27680 + - uid: 27525 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 27681 + - uid: 27526 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-33.5 parent: 2 - - uid: 27682 + - uid: 27527 components: - type: Transform pos: 3.5,-20.5 parent: 2 - - uid: 27683 + - uid: 27528 components: - type: Transform pos: 14.5,23.5 parent: 2 - - uid: 27684 + - uid: 27529 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 27685 + - uid: 27530 components: - type: Transform pos: -1.5,-20.5 parent: 2 - - uid: 27686 + - uid: 27531 components: - type: Transform pos: 17.5,-35.5 parent: 2 - - uid: 27687 + - uid: 27532 components: - type: Transform pos: 64.5,1.5 parent: 2 - - uid: 27688 + - uid: 27533 components: - type: Transform pos: 92.5,14.5 parent: 2 - - uid: 27689 + - uid: 27534 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 27690 + - uid: 27535 components: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 27691 + - uid: 27536 components: - type: Transform pos: -10.5,22.5 parent: 2 - - uid: 27692 + - uid: 27537 components: - type: Transform pos: 30.5,4.5 parent: 2 - - uid: 27693 + - uid: 27538 components: - type: Transform pos: -12.5,-25.5 parent: 2 - - uid: 27694 + - uid: 27539 components: - type: Transform pos: 18.5,24.5 parent: 2 - - uid: 27695 + - uid: 27540 components: - type: Transform pos: 18.5,2.5 parent: 2 - - uid: 27696 + - uid: 27541 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,9.5 parent: 2 - - uid: 27697 + - uid: 27542 components: - type: Transform pos: -7.5,-33.5 parent: 2 - - uid: 27698 + - uid: 27543 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 27699 + - uid: 27544 components: - type: Transform pos: 24.5,56.5 parent: 2 - - uid: 27700 + - uid: 27545 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-14.5 parent: 2 - - uid: 27701 + - uid: 27546 components: - type: Transform pos: 29.5,-67.5 parent: 2 - - uid: 27702 + - uid: 27547 components: - type: Transform pos: -24.5,56.5 parent: 2 - - uid: 27703 + - uid: 27548 components: - type: Transform pos: -34.5,-31.5 parent: 2 - - uid: 27704 + - uid: 27549 components: - type: Transform pos: -32.5,-33.5 parent: 2 - - uid: 27705 + - uid: 27550 components: - type: Transform pos: -37.5,-33.5 parent: 2 - - uid: 27706 + - uid: 27551 components: - type: Transform pos: -33.5,-23.5 parent: 2 - - uid: 27707 + - uid: 27552 components: - type: Transform pos: -38.5,-21.5 parent: 2 - - uid: 27708 + - uid: 27553 components: - type: Transform pos: -41.5,-23.5 parent: 2 - - uid: 27709 + - uid: 27554 components: - type: Transform pos: -42.5,-21.5 parent: 2 - - uid: 27710 + - uid: 27555 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 27711 + - uid: 27556 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 27712 + - uid: 27557 components: - type: Transform pos: -31.5,-28.5 parent: 2 - - uid: 27713 + - uid: 27558 components: - type: Transform pos: -30.5,-26.5 parent: 2 - - uid: 27714 + - uid: 27559 components: - type: Transform pos: -33.5,-26.5 parent: 2 - - uid: 27715 + - uid: 27560 components: - type: Transform pos: -36.5,-28.5 parent: 2 - - uid: 27716 + - uid: 27561 components: - type: Transform pos: -38.5,-26.5 parent: 2 - - uid: 27717 + - uid: 27562 components: - type: Transform pos: -41.5,-28.5 parent: 2 - - uid: 27718 + - uid: 27563 components: - type: Transform pos: -43.5,-26.5 parent: 2 - - uid: 27719 + - uid: 27564 components: - type: Transform pos: -45.5,-27.5 parent: 2 - - uid: 27720 + - uid: 27565 components: - type: Transform pos: -46.5,-29.5 parent: 2 - - uid: 27721 + - uid: 27566 components: - type: Transform pos: 5.5,34.5 parent: 2 - - uid: 27722 + - uid: 27567 components: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 27723 + - uid: 27568 components: - type: Transform pos: 40.5,-32.5 parent: 2 - - uid: 27724 + - uid: 27569 components: - type: Transform pos: -62.5,-31.5 parent: 2 - - uid: 27725 + - uid: 27570 components: - type: Transform pos: 31.5,58.5 parent: 2 - - uid: 27726 + - uid: 27571 components: - type: Transform pos: 15.5,65.5 parent: 2 - - uid: 27727 + - uid: 27572 components: - type: Transform pos: 2.5,39.5 parent: 2 - - uid: 27728 + - uid: 27573 components: - type: Transform pos: -23.5,36.5 parent: 2 - - uid: 27729 + - uid: 27574 components: - type: Transform pos: 10.5,59.5 parent: 2 - - uid: 27730 + - uid: 27575 components: - type: Transform pos: 23.5,52.5 parent: 2 - - uid: 27731 + - uid: 27576 components: - type: Transform pos: 5.5,58.5 parent: 2 - - uid: 27732 + - uid: 27577 components: - type: Transform pos: -16.5,26.5 parent: 2 - - uid: 27733 + - uid: 27578 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-39.5 parent: 2 - - uid: 27734 + - uid: 27579 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-37.5 parent: 2 - - uid: 27735 + - uid: 27580 components: - type: Transform pos: 16.5,24.5 parent: 2 - - uid: 27736 + - uid: 27581 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 27737 + - uid: 27582 components: - type: Transform pos: -2.5,62.5 parent: 2 - - uid: 27738 + - uid: 27583 components: - type: Transform pos: 26.5,60.5 parent: 2 - - uid: 27739 + - uid: 27584 components: - type: Transform pos: 30.5,59.5 parent: 2 - - uid: 27740 + - uid: 27585 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-35.5 parent: 2 - - uid: 27741 + - uid: 27586 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-36.5 parent: 2 - - uid: 27742 + - uid: 27587 components: - type: Transform pos: -23.5,-21.5 parent: 2 - - uid: 27743 + - uid: 27588 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 27744 + - uid: 27589 components: - type: Transform pos: -28.5,-61.5 parent: 2 - - uid: 27745 + - uid: 27590 components: - type: Transform pos: 19.5,-54.5 parent: 2 - - uid: 27746 + - uid: 27591 components: - type: Transform pos: 6.5,-54.5 parent: 2 - - uid: 27747 + - uid: 27592 components: - type: Transform pos: -25.5,-71.5 parent: 2 - - uid: 27748 + - uid: 27593 components: - type: Transform pos: -38.5,-72.5 parent: 2 - - uid: 27749 + - uid: 27594 components: - type: Transform pos: 46.5,-50.5 parent: 2 - - uid: 27750 + - uid: 27595 components: - type: Transform pos: 32.5,-55.5 parent: 2 - - uid: 27751 + - uid: 27596 components: - type: Transform pos: 52.5,-34.5 parent: 2 - - uid: 27752 + - uid: 27597 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 27753 + - uid: 27598 components: - type: Transform pos: 28.5,61.5 parent: 2 - - uid: 27754 + - uid: 27599 components: - type: Transform pos: -6.5,67.5 parent: 2 - - uid: 27755 + - uid: 27600 components: - type: Transform pos: -73.5,-30.5 parent: 2 - - uid: 27756 + - uid: 27601 components: - type: Transform pos: 40.5,-22.5 parent: 2 - - uid: 27757 + - uid: 27602 components: - type: Transform pos: -30.5,13.5 parent: 2 - - uid: 27758 + - uid: 27603 components: - type: Transform pos: 36.5,-70.5 parent: 2 - - uid: 27759 + - uid: 27604 components: - type: Transform pos: 2.5,45.5 parent: 2 - - uid: 27760 + - uid: 27605 components: - type: Transform pos: 4.5,69.5 parent: 2 - - uid: 27761 + - uid: 27606 components: - type: Transform pos: 44.5,-27.5 parent: 2 - - uid: 27762 + - uid: 27607 components: - type: Transform pos: -19.5,18.5 parent: 2 - - uid: 27763 + - uid: 27608 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 27764 + - uid: 27609 components: - type: Transform pos: 35.5,-60.5 parent: 2 - - uid: 27765 + - uid: 27610 components: - type: Transform pos: 26.5,58.5 parent: 2 - - uid: 27766 + - uid: 27611 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 2 - - uid: 27767 + - uid: 27612 components: - type: Transform pos: 40.5,-53.5 parent: 2 - - uid: 27768 + - uid: 27613 components: - type: Transform pos: 44.5,-62.5 parent: 2 - - uid: 27769 + - uid: 27614 components: - type: Transform pos: -31.5,-17.5 parent: 2 - - uid: 27770 + - uid: 27615 components: - type: Transform pos: -10.5,-54.5 parent: 2 - - uid: 27771 + - uid: 27616 components: - type: Transform pos: 27.5,-59.5 parent: 2 - - uid: 27772 + - uid: 27617 components: - type: Transform pos: -42.5,-46.5 parent: 2 - - uid: 27773 + - uid: 27618 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 27774 + - uid: 27619 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 27775 + - uid: 27620 components: - type: Transform pos: -14.5,22.5 parent: 2 - - uid: 27776 + - uid: 27621 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-34.5 parent: 2 - - uid: 27777 + - uid: 27622 components: - type: Transform pos: 7.5,22.5 parent: 2 - - uid: 27778 + - uid: 27623 components: - type: Transform pos: -20.5,-17.5 parent: 2 - - uid: 27779 + - uid: 27624 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 27780 + - uid: 27625 components: - type: Transform pos: 5.5,81.5 parent: 2 - - uid: 27781 + - uid: 27626 components: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 27782 + - uid: 27627 components: - type: Transform pos: -23.5,4.5 parent: 2 - - uid: 27783 + - uid: 27628 components: - type: Transform pos: -40.5,19.5 parent: 2 - - uid: 27784 + - uid: 27629 components: - type: Transform pos: 28.5,-9.5 parent: 2 - - uid: 27785 + - uid: 27630 components: - type: Transform pos: 14.5,-35.5 parent: 2 - - uid: 27786 + - uid: 27631 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 27787 + - uid: 27632 components: - type: Transform pos: -35.5,36.5 parent: 2 - - uid: 27788 + - uid: 27633 components: - type: Transform pos: -4.5,26.5 parent: 2 - - uid: 27789 + - uid: 27634 components: - type: Transform pos: -55.5,-38.5 parent: 2 - - uid: 27790 + - uid: 27635 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-40.5 parent: 2 - - uid: 27791 + - uid: 27636 components: - type: Transform pos: 31.5,-35.5 parent: 2 - - uid: 27792 + - uid: 27637 components: - type: Transform pos: -9.5,-20.5 parent: 2 - - uid: 27793 + - uid: 27638 components: - type: Transform pos: -43.5,39.5 parent: 2 - - uid: 27794 + - uid: 27639 components: - type: Transform pos: 35.5,-34.5 parent: 2 - - uid: 27795 + - uid: 27640 components: - type: Transform pos: 50.5,-10.5 parent: 2 - - uid: 27796 + - uid: 27641 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 27797 + - uid: 27642 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 27798 + - uid: 27643 components: - type: Transform pos: -48.5,-20.5 parent: 2 - - uid: 27799 + - uid: 27644 components: - type: Transform pos: -73.5,-20.5 parent: 2 - - uid: 27800 + - uid: 27645 components: - type: Transform pos: 19.5,56.5 parent: 2 - - uid: 27801 + - uid: 27646 components: - type: Transform pos: 20.5,71.5 parent: 2 - - uid: 27802 + - uid: 27647 components: - type: Transform pos: 20.5,-21.5 parent: 2 - - uid: 27803 + - uid: 27648 components: - type: Transform pos: -35.5,23.5 parent: 2 - - uid: 27804 + - uid: 27649 components: - type: Transform pos: -17.5,10.5 parent: 2 - - uid: 27805 + - uid: 27650 components: - type: Transform pos: 28.5,58.5 parent: 2 - - uid: 27806 + - uid: 27651 components: - type: Transform pos: -12.5,69.5 parent: 2 - - uid: 27807 + - uid: 27652 components: - type: Transform pos: 26.5,56.5 parent: 2 - - uid: 27808 + - uid: 27653 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 27809 + - uid: 27654 components: - type: Transform pos: 22.5,66.5 parent: 2 - - uid: 27810 + - uid: 27655 components: - type: Transform pos: -13.5,-62.5 parent: 2 - - uid: 27811 + - uid: 27656 components: - type: Transform pos: 16.5,-9.5 parent: 2 - - uid: 27812 + - uid: 27657 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 27813 + - uid: 27658 components: - type: Transform pos: -6.5,-69.5 parent: 2 - - uid: 27814 + - uid: 27659 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 27815 + - uid: 27660 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-40.5 parent: 2 - - uid: 27816 + - uid: 27661 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 27817 + - uid: 27662 components: - type: Transform pos: -4.5,-47.5 parent: 2 - - uid: 27818 + - uid: 27663 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 27819 + - uid: 27664 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-50.5 parent: 2 - - uid: 27820 + - uid: 27665 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-51.5 parent: 2 - - uid: 27821 + - uid: 27666 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-52.5 parent: 2 - - uid: 27822 + - uid: 27667 components: - type: Transform pos: -14.5,-58.5 parent: 2 - - uid: 27823 + - uid: 27668 components: - type: Transform pos: -18.5,-57.5 parent: 2 - - uid: 27824 + - uid: 27669 components: - type: Transform pos: -24.5,-56.5 parent: 2 - - uid: 27825 + - uid: 27670 components: - type: Transform pos: -25.5,-51.5 parent: 2 - - uid: 27826 + - uid: 27671 components: - type: Transform pos: -45.5,-36.5 parent: 2 - - uid: 27827 + - uid: 27672 components: - type: Transform pos: 14.5,56.5 parent: 2 - - uid: 27828 + - uid: 27673 components: - type: Transform pos: 72.5,10.5 parent: 2 - - uid: 27829 + - uid: 27674 components: - type: Transform pos: 45.5,15.5 parent: 2 - - uid: 27830 + - uid: 27675 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,0.5 parent: 2 - - uid: 27831 + - uid: 27676 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,5.5 parent: 2 - - uid: 27832 + - uid: 27677 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,6.5 parent: 2 - - uid: 27833 + - uid: 27678 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-2.5 parent: 2 - - uid: 27834 + - uid: 27679 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-3.5 parent: 2 - - uid: 27835 + - uid: 27680 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-40.5 parent: 2 - - uid: 27836 + - uid: 27681 components: - type: Transform rot: 1.5707963267948966 rad @@ -213281,533 +213359,533 @@ entities: parent: 2 - proto: RandomSpawner100 entities: - - uid: 9973 + - uid: 27682 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 - - uid: 9977 + - uid: 27683 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-26.5 parent: 2 - - uid: 9978 + - uid: 27684 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-22.5 parent: 2 - - uid: 9979 + - uid: 27685 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-23.5 parent: 2 - - uid: 27837 + - uid: 27686 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-41.5 parent: 2 - - uid: 27838 + - uid: 27687 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-60.5 parent: 2 - - uid: 27839 + - uid: 27688 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-60.5 parent: 2 - - uid: 27840 + - uid: 27689 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-64.5 parent: 2 - - uid: 27841 + - uid: 27690 components: - type: Transform pos: 49.5,21.5 parent: 2 - - uid: 27842 + - uid: 27691 components: - type: Transform pos: 12.5,58.5 parent: 2 - - uid: 27843 + - uid: 27692 components: - type: Transform pos: -37.5,54.5 parent: 2 - - uid: 27844 + - uid: 27693 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 27845 + - uid: 27694 components: - type: Transform pos: -61.5,-43.5 parent: 2 - - uid: 27846 + - uid: 27695 components: - type: Transform pos: -64.5,-45.5 parent: 2 - - uid: 27847 + - uid: 27696 components: - type: Transform pos: -40.5,63.5 parent: 2 - - uid: 27848 + - uid: 27697 components: - type: Transform pos: -39.5,60.5 parent: 2 - - uid: 27849 + - uid: 27698 components: - type: Transform pos: -35.5,61.5 parent: 2 - - uid: 27850 + - uid: 27699 components: - type: Transform pos: -46.5,-44.5 parent: 2 - - uid: 27851 + - uid: 27700 components: - type: Transform pos: -53.5,-47.5 parent: 2 - - uid: 27852 + - uid: 27701 components: - type: Transform pos: -37.5,26.5 parent: 2 - - uid: 27853 + - uid: 27702 components: - type: Transform pos: 18.5,63.5 parent: 2 - - uid: 27854 + - uid: 27703 components: - type: Transform pos: 19.5,59.5 parent: 2 - - uid: 27855 + - uid: 27704 components: - type: Transform pos: -28.5,54.5 parent: 2 - - uid: 27856 + - uid: 27705 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-39.5 parent: 2 - - uid: 27857 + - uid: 27706 components: - type: Transform pos: -69.5,-45.5 parent: 2 - - uid: 27858 + - uid: 27707 components: - type: Transform pos: 41.5,-43.5 parent: 2 - - uid: 27859 + - uid: 27708 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-28.5 parent: 2 - - uid: 27860 + - uid: 27709 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-20.5 parent: 2 - - uid: 27861 + - uid: 27710 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-30.5 parent: 2 - - uid: 39631 + - uid: 39458 components: - type: Transform pos: -11.5,33.5 - parent: 38584 - - uid: 39632 + parent: 38411 + - uid: 39459 components: - type: Transform pos: -1.5,10.5 - parent: 38584 - - uid: 39633 + parent: 38411 + - uid: 39460 components: - type: Transform pos: -7.5,13.5 - parent: 38584 - - uid: 39634 + parent: 38411 + - uid: 39461 components: - type: Transform pos: -8.5,22.5 - parent: 38584 - - uid: 39635 + parent: 38411 + - uid: 39462 components: - type: Transform pos: 1.5,19.5 - parent: 38584 - - uid: 39636 + parent: 38411 + - uid: 39463 components: - type: Transform pos: -3.5,31.5 - parent: 38584 + parent: 38411 - proto: RandomVending entities: - - uid: 27862 + - uid: 27711 components: - type: Transform pos: 12.5,26.5 parent: 2 - - uid: 27863 + - uid: 27712 components: - type: Transform pos: -31.5,90.5 parent: 2 - - uid: 27864 + - uid: 27713 components: - type: Transform pos: -27.5,90.5 parent: 2 - - uid: 27865 + - uid: 27714 components: - type: Transform pos: -13.5,90.5 parent: 2 - - uid: 27866 + - uid: 27715 components: - type: Transform pos: -9.5,90.5 parent: 2 - - uid: 27867 + - uid: 27716 components: - type: Transform pos: -21.5,60.5 parent: 2 - - uid: 27868 + - uid: 27717 components: - type: Transform pos: -21.5,65.5 parent: 2 - - uid: 27869 + - uid: 27718 components: - type: Transform pos: -15.5,-1.5 parent: 2 - - uid: 27870 + - uid: 27719 components: - type: Transform pos: 5.5,85.5 parent: 2 - - uid: 39637 + - uid: 39464 components: - type: Transform pos: 5.5,-1.5 - parent: 38584 + parent: 38411 - proto: RandomVendingDrinks entities: - - uid: 27871 + - uid: 27720 components: - type: Transform pos: 68.5,26.5 parent: 2 - - uid: 27872 + - uid: 27721 components: - type: Transform pos: -58.5,-45.5 parent: 2 - - uid: 27873 + - uid: 27722 components: - type: Transform pos: -47.5,15.5 parent: 2 - - uid: 27874 + - uid: 27723 components: - type: Transform pos: -26.5,41.5 parent: 2 - - uid: 27875 + - uid: 27724 components: - type: Transform pos: 55.5,-12.5 parent: 2 - - uid: 27876 + - uid: 27725 components: - type: Transform pos: 55.5,-25.5 parent: 2 - - uid: 27877 + - uid: 27726 components: - type: Transform pos: -8.5,-81.5 parent: 2 - - uid: 27878 + - uid: 27727 components: - type: Transform pos: -8.5,-5.5 parent: 2 - - uid: 27879 + - uid: 27728 components: - type: Transform pos: 43.5,30.5 parent: 2 - - uid: 27880 + - uid: 27729 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 27881 + - uid: 27730 components: - type: Transform pos: -20.5,23.5 parent: 2 - - uid: 27882 + - uid: 27731 components: - type: Transform pos: 18.5,-21.5 parent: 2 - - uid: 27883 + - uid: 27732 components: - type: Transform pos: 20.5,-7.5 parent: 2 - - uid: 27884 + - uid: 27733 components: - type: Transform pos: -23.5,44.5 parent: 2 - - uid: 27885 + - uid: 27734 components: - type: Transform pos: -8.5,48.5 parent: 2 - - uid: 27886 + - uid: 27735 components: - type: Transform pos: -26.5,29.5 parent: 2 - - uid: 27887 + - uid: 27736 components: - type: Transform pos: -10.5,-72.5 parent: 2 - - uid: 27888 + - uid: 27737 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 27889 + - uid: 27738 components: - type: Transform pos: -43.5,20.5 parent: 2 - - uid: 27890 + - uid: 27739 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 27891 + - uid: 27740 components: - type: Transform pos: -11.5,16.5 parent: 2 - - uid: 27892 + - uid: 27741 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,13.5 parent: 2 - - uid: 27893 + - uid: 27742 components: - type: Transform pos: 93.5,12.5 parent: 2 - - uid: 27894 + - uid: 27743 components: - type: Transform pos: -36.5,-67.5 parent: 2 - - uid: 27895 + - uid: 27744 components: - type: Transform pos: 85.5,9.5 parent: 2 - - uid: 27896 + - uid: 27745 components: - type: Transform pos: 13.5,-10.5 parent: 2 - - uid: 39638 + - uid: 39465 components: - type: Transform pos: -18.5,-5.5 - parent: 38584 - - uid: 39639 + parent: 38411 + - uid: 39466 components: - type: Transform pos: 5.5,3.5 - parent: 38584 + parent: 38411 - proto: RandomVendingSnacks entities: - - uid: 27897 + - uid: 27746 components: - type: Transform pos: 69.5,26.5 parent: 2 - - uid: 27898 + - uid: 27747 components: - type: Transform pos: 14.5,-10.5 parent: 2 - - uid: 27899 + - uid: 27748 components: - type: Transform pos: -57.5,-45.5 parent: 2 - - uid: 27900 + - uid: 27749 components: - type: Transform pos: -48.5,15.5 parent: 2 - - uid: 27901 + - uid: 27750 components: - type: Transform pos: 2.5,-72.5 parent: 2 - - uid: 27902 + - uid: 27751 components: - type: Transform pos: -27.5,41.5 parent: 2 - - uid: 27903 + - uid: 27752 components: - type: Transform pos: 55.5,-13.5 parent: 2 - - uid: 27904 + - uid: 27753 components: - type: Transform pos: 55.5,-26.5 parent: 2 - - uid: 27905 + - uid: 27754 components: - type: Transform pos: -8.5,-2.5 parent: 2 - - uid: 27906 + - uid: 27755 components: - type: Transform pos: 43.5,29.5 parent: 2 - - uid: 27907 + - uid: 27756 components: - type: Transform pos: 17.5,-21.5 parent: 2 - - uid: 27908 + - uid: 27757 components: - type: Transform pos: -10.5,16.5 parent: 2 - - uid: 27909 + - uid: 27758 components: - type: Transform pos: 38.5,-30.5 parent: 2 - - uid: 27910 + - uid: 27759 components: - type: Transform pos: -23.5,45.5 parent: 2 - - uid: 27911 + - uid: 27760 components: - type: Transform pos: -6.5,48.5 parent: 2 - - uid: 27912 + - uid: 27761 components: - type: Transform pos: -25.5,-37.5 parent: 2 - - uid: 27913 + - uid: 27762 components: - type: Transform pos: 20.5,2.5 parent: 2 - - uid: 27914 + - uid: 27763 components: - type: Transform pos: -10.5,-73.5 parent: 2 - - uid: 27915 + - uid: 27764 components: - type: Transform pos: -25.5,29.5 parent: 2 - - uid: 27916 + - uid: 27765 components: - type: Transform pos: -43.5,21.5 parent: 2 - - uid: 27917 + - uid: 27766 components: - type: Transform pos: -6.5,-81.5 parent: 2 - - uid: 27918 + - uid: 27767 components: - type: Transform pos: -7.5,-63.5 parent: 2 - - uid: 27919 + - uid: 27768 components: - type: Transform pos: -75.5,1.5 parent: 2 - - uid: 27920 + - uid: 27769 components: - type: Transform pos: 92.5,12.5 parent: 2 - - uid: 27921 + - uid: 27770 components: - type: Transform pos: -35.5,-67.5 parent: 2 - - uid: 27922 + - uid: 27771 components: - type: Transform pos: 86.5,9.5 parent: 2 - - uid: 39640 + - uid: 39467 components: - type: Transform pos: -18.5,-6.5 - parent: 38584 - - uid: 39641 + parent: 38411 + - uid: 39468 components: - type: Transform pos: 5.5,4.5 - parent: 38584 + parent: 38411 - proto: RecorderInstrument entities: - - uid: 27923 + - uid: 27772 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -213815,7 +213893,7 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 27924 + - uid: 27773 components: - type: Transform rot: 1.5707963267948966 rad @@ -213823,5564 +213901,5564 @@ entities: parent: 2 - proto: ReinforcedGirder entities: - - uid: 27925 + - uid: 27774 components: - type: Transform pos: -75.5,54.5 parent: 2 - - uid: 27926 + - uid: 27775 components: - type: Transform pos: -74.5,55.5 parent: 2 - - uid: 27927 + - uid: 27776 components: - type: Transform pos: -74.5,54.5 parent: 2 - - uid: 39642 + - uid: 39469 components: - type: Transform pos: -1.5,25.5 - parent: 38584 - - uid: 39643 + parent: 38411 + - uid: 39470 components: - type: Transform pos: -0.5,26.5 - parent: 38584 - - uid: 39644 + parent: 38411 + - uid: 39471 components: - type: Transform pos: -5.5,19.5 - parent: 38584 - - uid: 39645 + parent: 38411 + - uid: 39472 components: - type: Transform pos: -4.5,19.5 - parent: 38584 - - uid: 39646 + parent: 38411 + - uid: 39473 components: - type: Transform pos: -6.5,19.5 - parent: 38584 - - uid: 39647 + parent: 38411 + - uid: 39474 components: - type: Transform pos: -2.5,26.5 - parent: 38584 - - uid: 39648 + parent: 38411 + - uid: 39475 components: - type: Transform pos: 12.5,24.5 - parent: 38584 - - uid: 39649 + parent: 38411 + - uid: 39476 components: - type: Transform pos: 13.5,22.5 - parent: 38584 - - uid: 39650 + parent: 38411 + - uid: 39477 components: - type: Transform pos: 14.5,15.5 - parent: 38584 - - uid: 39651 + parent: 38411 + - uid: 39478 components: - type: Transform pos: 10.5,15.5 - parent: 38584 + parent: 38411 - proto: ReinforcedPlasmaWindow entities: - - uid: 2810 + - uid: 27777 components: - type: Transform pos: -79.5,1.5 parent: 2 - - uid: 2820 + - uid: 27778 components: - type: Transform pos: -79.5,-0.5 parent: 2 - - uid: 27928 + - uid: 27779 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-43.5 parent: 2 - - uid: 27929 + - uid: 27780 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-45.5 parent: 2 - - uid: 27930 + - uid: 27781 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-40.5 parent: 2 - - uid: 27931 + - uid: 27782 components: - type: Transform pos: 98.5,3.5 parent: 2 - - uid: 27932 + - uid: 27783 components: - type: Transform pos: -69.5,49.5 parent: 2 - - uid: 27933 + - uid: 27784 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-5.5 parent: 2 - - uid: 27934 + - uid: 27785 components: - type: Transform pos: 98.5,2.5 parent: 2 - - uid: 27935 + - uid: 27786 components: - type: Transform pos: -69.5,37.5 parent: 2 - - uid: 27936 + - uid: 27787 components: - type: Transform pos: -72.5,24.5 parent: 2 - - uid: 27937 + - uid: 27788 components: - type: Transform pos: -72.5,23.5 parent: 2 - - uid: 27938 + - uid: 27789 components: - type: Transform pos: 98.5,1.5 parent: 2 - - uid: 27939 + - uid: 27790 components: - type: Transform pos: -72.5,20.5 parent: 2 - - uid: 27940 + - uid: 27791 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-5.5 parent: 2 - - uid: 27941 + - uid: 27792 components: - type: Transform pos: -72.5,21.5 parent: 2 - - uid: 27942 + - uid: 27793 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-5.5 parent: 2 - - uid: 27943 + - uid: 27794 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-5.5 parent: 2 - - uid: 27944 + - uid: 27795 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-5.5 parent: 2 - - uid: 27945 + - uid: 27796 components: - type: Transform pos: -49.5,56.5 parent: 2 - - uid: 27946 + - uid: 27797 components: - type: Transform pos: -56.5,58.5 parent: 2 - - uid: 27947 + - uid: 27798 components: - type: Transform pos: -48.5,43.5 parent: 2 - - uid: 27948 + - uid: 27799 components: - type: Transform pos: -7.5,-46.5 parent: 2 - - uid: 27949 + - uid: 27800 components: - type: Transform pos: -50.5,56.5 parent: 2 - - uid: 27950 + - uid: 27801 components: - type: Transform pos: -9.5,-44.5 parent: 2 - - uid: 27951 + - uid: 27802 components: - type: Transform pos: -63.5,53.5 parent: 2 - - uid: 27952 + - uid: 27803 components: - type: Transform pos: -56.5,57.5 parent: 2 - - uid: 27953 + - uid: 27804 components: - type: Transform pos: -54.5,43.5 parent: 2 - - uid: 27954 + - uid: 27805 components: - type: Transform pos: -49.5,43.5 parent: 2 - - uid: 27955 + - uid: 27806 components: - type: Transform pos: -56.5,43.5 parent: 2 - - uid: 27956 + - uid: 27807 components: - type: Transform pos: -52.5,43.5 parent: 2 - - uid: 27957 + - uid: 27808 components: - type: Transform pos: -48.5,56.5 parent: 2 - - uid: 27958 + - uid: 27809 components: - type: Transform pos: -54.5,52.5 parent: 2 - - uid: 27959 + - uid: 27810 components: - type: Transform pos: -46.5,43.5 parent: 2 - - uid: 27960 + - uid: 27811 components: - type: Transform pos: -66.5,53.5 parent: 2 - - uid: 27963 + - uid: 27812 components: - type: Transform pos: -83.5,-9.5 parent: 2 - - uid: 27964 + - uid: 27813 components: - type: Transform pos: -83.5,-8.5 parent: 2 - - uid: 27965 + - uid: 27814 components: - type: Transform pos: -83.5,-5.5 parent: 2 - - uid: 27966 + - uid: 27815 components: - type: Transform pos: -83.5,-6.5 parent: 2 - - uid: 27967 + - uid: 27816 components: - type: Transform pos: -83.5,-7.5 parent: 2 - - uid: 27968 + - uid: 27817 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-38.5 parent: 2 - - uid: 27969 + - uid: 27818 components: - type: Transform pos: -52.5,56.5 parent: 2 - - uid: 27970 + - uid: 27819 components: - type: Transform pos: -51.5,56.5 parent: 2 - - uid: 27971 + - uid: 27820 components: - type: Transform pos: -61.5,53.5 parent: 2 - - uid: 27972 + - uid: 27821 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,52.5 parent: 2 - - uid: 27973 + - uid: 27822 components: - type: Transform pos: -60.5,58.5 parent: 2 - - uid: 27974 + - uid: 27823 components: - type: Transform pos: -118.5,44.5 parent: 2 - - uid: 27975 + - uid: 27824 components: - type: Transform pos: -118.5,27.5 parent: 2 - - uid: 27976 + - uid: 27825 components: - type: Transform pos: 98.5,4.5 parent: 2 - - uid: 27977 + - uid: 27826 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-5.5 parent: 2 - - uid: 27978 + - uid: 27827 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-5.5 parent: 2 - - uid: 27979 + - uid: 27828 components: - type: Transform pos: -69.5,41.5 parent: 2 - - uid: 27980 + - uid: 27829 components: - type: Transform pos: -69.5,29.5 parent: 2 - - uid: 27981 + - uid: 27830 components: - type: Transform pos: -69.5,38.5 parent: 2 - - uid: 27982 + - uid: 27831 components: - type: Transform pos: -69.5,46.5 parent: 2 - - uid: 27983 + - uid: 27832 components: - type: Transform pos: -69.5,40.5 parent: 2 - - uid: 27984 + - uid: 27833 components: - type: Transform pos: -69.5,44.5 parent: 2 - - uid: 27985 + - uid: 27834 components: - type: Transform pos: -69.5,36.5 parent: 2 - - uid: 27986 + - uid: 27835 components: - type: Transform pos: -69.5,33.5 parent: 2 - - uid: 27987 + - uid: 27836 components: - type: Transform pos: -69.5,50.5 parent: 2 - - uid: 27988 + - uid: 27837 components: - type: Transform pos: -69.5,48.5 parent: 2 - - uid: 27989 + - uid: 27838 components: - type: Transform pos: -69.5,42.5 parent: 2 - - uid: 27990 + - uid: 27839 components: - type: Transform pos: -69.5,45.5 parent: 2 - - uid: 27991 + - uid: 27840 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,34.5 parent: 2 - - uid: 27992 + - uid: 27841 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,32.5 parent: 2 - - uid: 27993 + - uid: 27842 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,30.5 parent: 2 - - uid: 27994 + - uid: 27843 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,28.5 parent: 2 - - uid: 27995 + - uid: 27844 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-5.5 parent: 2 - - uid: 27996 + - uid: 27845 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-5.5 parent: 2 - - uid: 39652 + - uid: 39479 components: - type: Transform pos: 14.5,2.5 - parent: 38584 - - uid: 39653 + parent: 38411 + - uid: 39480 components: - type: Transform pos: 14.5,4.5 - parent: 38584 - - uid: 39654 + parent: 38411 + - uid: 39481 components: - type: Transform pos: -13.5,-8.5 - parent: 38584 - - uid: 39655 + parent: 38411 + - uid: 39482 components: - type: Transform pos: -12.5,-8.5 - parent: 38584 - - uid: 39656 + parent: 38411 + - uid: 39483 components: - type: Transform pos: -15.5,-8.5 - parent: 38584 - - uid: 39657 + parent: 38411 + - uid: 39484 components: - type: Transform pos: -14.5,-8.5 - parent: 38584 + parent: 38411 - proto: ReinforcedUraniumWindow entities: - - uid: 27997 + - uid: 27846 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-66.5 parent: 2 - - uid: 27998 + - uid: 27847 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-68.5 parent: 2 - - uid: 27999 + - uid: 27848 components: - type: Transform pos: -71.5,-4.5 parent: 2 - - uid: 28000 + - uid: 27849 components: - type: Transform pos: -67.5,-4.5 parent: 2 - - uid: 28001 + - uid: 27850 components: - type: Transform pos: -69.5,-4.5 parent: 2 - proto: ReinforcedWindow entities: - - uid: 2828 + - uid: 27851 components: - type: Transform pos: -9.5,65.5 parent: 2 - - uid: 2829 + - uid: 27852 components: - type: Transform pos: -8.5,64.5 parent: 2 - - uid: 2830 + - uid: 27853 components: - type: Transform pos: -14.5,64.5 parent: 2 - - uid: 2831 + - uid: 27854 components: - type: Transform pos: -12.5,65.5 parent: 2 - - uid: 2832 + - uid: 27855 components: - type: Transform pos: -9.5,60.5 parent: 2 - - uid: 2833 + - uid: 27856 components: - type: Transform pos: -10.5,65.5 parent: 2 - - uid: 2834 + - uid: 27857 components: - type: Transform pos: -14.5,63.5 parent: 2 - - uid: 2835 + - uid: 27858 components: - type: Transform pos: -14.5,62.5 parent: 2 - - uid: 2836 + - uid: 27859 components: - type: Transform pos: -13.5,60.5 parent: 2 - - uid: 2837 + - uid: 27860 components: - type: Transform pos: -8.5,63.5 parent: 2 - - uid: 2838 + - uid: 27861 components: - type: Transform pos: -11.5,65.5 parent: 2 - - uid: 2839 + - uid: 27862 components: - type: Transform pos: -12.5,60.5 parent: 2 - - uid: 2840 + - uid: 27863 components: - type: Transform pos: -11.5,60.5 parent: 2 - - uid: 2841 + - uid: 27864 components: - type: Transform pos: -13.5,65.5 parent: 2 - - uid: 2842 + - uid: 27865 components: - type: Transform pos: -10.5,60.5 parent: 2 - - uid: 2843 + - uid: 27866 components: - type: Transform pos: -8.5,61.5 parent: 2 - - uid: 2844 + - uid: 27867 components: - type: Transform pos: -8.5,62.5 parent: 2 - - uid: 2845 + - uid: 27868 components: - type: Transform pos: -14.5,61.5 parent: 2 - - uid: 28002 + - uid: 27869 components: - type: Transform pos: 21.5,20.5 parent: 2 - - uid: 28003 + - uid: 27870 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 28004 + - uid: 27871 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 28005 + - uid: 27872 components: - type: Transform pos: 23.5,20.5 parent: 2 - - uid: 28006 + - uid: 27873 components: - type: Transform pos: -14.5,21.5 parent: 2 - - uid: 28007 + - uid: 27874 components: - type: Transform pos: 27.5,20.5 parent: 2 - - uid: 28008 + - uid: 27875 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-3.5 parent: 2 - - uid: 28009 + - uid: 27876 components: - type: Transform pos: 48.5,29.5 parent: 2 - - uid: 28010 + - uid: 27877 components: - type: Transform pos: 56.5,33.5 parent: 2 - - uid: 28011 + - uid: 27878 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 28012 + - uid: 27879 components: - type: Transform pos: -67.5,38.5 parent: 2 - - uid: 28013 + - uid: 27880 components: - type: Transform pos: 93.5,8.5 parent: 2 - - uid: 28014 + - uid: 27881 components: - type: Transform pos: -67.5,46.5 parent: 2 - - uid: 28015 + - uid: 27882 components: - type: Transform pos: 91.5,8.5 parent: 2 - - uid: 28016 + - uid: 27883 components: - type: Transform pos: 84.5,-0.5 parent: 2 - - uid: 28017 + - uid: 27884 components: - type: Transform pos: 88.5,-0.5 parent: 2 - - uid: 28018 + - uid: 27885 components: - type: Transform pos: 87.5,-0.5 parent: 2 - - uid: 28019 + - uid: 27886 components: - type: Transform pos: 83.5,-0.5 parent: 2 - - uid: 28020 + - uid: 27887 components: - type: Transform pos: -67.5,42.5 parent: 2 - - uid: 28021 + - uid: 27888 components: - type: Transform pos: -67.5,49.5 parent: 2 - - uid: 28022 + - uid: 27889 components: - type: Transform pos: -67.5,48.5 parent: 2 - - uid: 28023 + - uid: 27890 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,9.5 parent: 2 - - uid: 28024 + - uid: 27891 components: - type: Transform pos: 75.5,17.5 parent: 2 - - uid: 28025 + - uid: 27892 components: - type: Transform pos: 75.5,18.5 parent: 2 - - uid: 28026 + - uid: 27893 components: - type: Transform pos: -67.5,45.5 parent: 2 - - uid: 28027 + - uid: 27894 components: - type: Transform pos: -67.5,50.5 parent: 2 - - uid: 28028 + - uid: 27895 components: - type: Transform pos: -72.5,-41.5 parent: 2 - - uid: 28029 + - uid: 27896 components: - type: Transform pos: -72.5,-39.5 parent: 2 - - uid: 28030 + - uid: 27897 components: - type: Transform pos: 31.5,13.5 parent: 2 - - uid: 28031 + - uid: 27898 components: - type: Transform pos: -67.5,41.5 parent: 2 - - uid: 28032 + - uid: 27899 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,30.5 parent: 2 - - uid: 28033 + - uid: 27900 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,26.5 parent: 2 - - uid: 28034 + - uid: 27901 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-24.5 parent: 2 - - uid: 28035 + - uid: 27902 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-77.5 parent: 2 - - uid: 28036 + - uid: 27903 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,71.5 parent: 2 - - uid: 28037 + - uid: 27904 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,70.5 parent: 2 - - uid: 28038 + - uid: 27905 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,72.5 parent: 2 - - uid: 28039 + - uid: 27906 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,26.5 parent: 2 - - uid: 28040 + - uid: 27907 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 2 - - uid: 28041 + - uid: 27908 components: - type: Transform pos: 5.5,86.5 parent: 2 - - uid: 28042 + - uid: 27909 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-11.5 parent: 2 - - uid: 28043 + - uid: 27910 components: - type: Transform pos: 8.5,32.5 parent: 2 - - uid: 28044 + - uid: 27911 components: - type: Transform pos: 4.5,86.5 parent: 2 - - uid: 28045 + - uid: 27912 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 28046 + - uid: 27913 components: - type: Transform pos: -32.5,79.5 parent: 2 - - uid: 28047 + - uid: 27914 components: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 28048 + - uid: 27915 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 28049 + - uid: 27916 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 - - uid: 28050 + - uid: 27917 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 2 - - uid: 28051 + - uid: 27918 components: - type: Transform pos: -0.5,62.5 parent: 2 - - uid: 28052 + - uid: 27919 components: - type: Transform pos: -0.5,64.5 parent: 2 - - uid: 28053 + - uid: 27920 components: - type: Transform pos: -0.5,63.5 parent: 2 - - uid: 28054 + - uid: 27921 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 28055 + - uid: 27922 components: - type: Transform pos: -16.5,2.5 parent: 2 - - uid: 28056 + - uid: 27923 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 - - uid: 28057 + - uid: 27924 components: - type: Transform pos: -9.5,94.5 parent: 2 - - uid: 28058 + - uid: 27925 components: - type: Transform pos: 71.5,14.5 parent: 2 - - uid: 28059 + - uid: 27926 components: - type: Transform pos: -82.5,13.5 parent: 2 - - uid: 28060 + - uid: 27927 components: - type: Transform pos: -60.5,65.5 parent: 2 - - uid: 28061 + - uid: 27928 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,18.5 parent: 2 - - uid: 28062 + - uid: 27929 components: - type: Transform pos: 65.5,-5.5 parent: 2 - - uid: 28063 + - uid: 27930 components: - type: Transform pos: -61.5,64.5 parent: 2 - - uid: 28064 + - uid: 27931 components: - type: Transform pos: -9.5,95.5 parent: 2 - - uid: 28065 + - uid: 27932 components: - type: Transform pos: -56.5,64.5 parent: 2 - - uid: 28066 + - uid: 27933 components: - type: Transform pos: -13.5,94.5 parent: 2 - - uid: 28067 + - uid: 27934 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-5.5 parent: 2 - - uid: 28068 + - uid: 27935 components: - type: Transform pos: 33.5,47.5 parent: 2 - - uid: 28069 + - uid: 27936 components: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 28070 + - uid: 27937 components: - type: Transform pos: -14.5,82.5 parent: 2 - - uid: 28071 + - uid: 27938 components: - type: Transform pos: 32.5,47.5 parent: 2 - - uid: 28072 + - uid: 27939 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 28073 + - uid: 27940 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-46.5 parent: 2 - - uid: 28074 + - uid: 27941 components: - type: Transform pos: 68.5,0.5 parent: 2 - - uid: 28075 + - uid: 27942 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,19.5 parent: 2 - - uid: 28076 + - uid: 27943 components: - type: Transform pos: 49.5,15.5 parent: 2 - - uid: 28077 + - uid: 27944 components: - type: Transform pos: 49.5,11.5 parent: 2 - - uid: 28078 + - uid: 27945 components: - type: Transform pos: -30.5,99.5 parent: 2 - - uid: 28079 + - uid: 27946 components: - type: Transform pos: 49.5,9.5 parent: 2 - - uid: 28080 + - uid: 27947 components: - type: Transform pos: 49.5,17.5 parent: 2 - - uid: 28081 + - uid: 27948 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 - - uid: 28082 + - uid: 27949 components: - type: Transform pos: -12.5,97.5 parent: 2 - - uid: 28083 + - uid: 27950 components: - type: Transform pos: 52.5,10.5 parent: 2 - - uid: 28084 + - uid: 27951 components: - type: Transform pos: 75.5,15.5 parent: 2 - - uid: 28085 + - uid: 27952 components: - type: Transform pos: 51.5,20.5 parent: 2 - - uid: 28086 + - uid: 27953 components: - type: Transform pos: 51.5,33.5 parent: 2 - - uid: 28087 + - uid: 27954 components: - type: Transform pos: -8.5,82.5 parent: 2 - - uid: 28088 + - uid: 27955 components: - type: Transform pos: -9.5,72.5 parent: 2 - - uid: 28089 + - uid: 27956 components: - type: Transform pos: 28.5,47.5 parent: 2 - - uid: 28090 + - uid: 27957 components: - type: Transform pos: 60.5,-1.5 parent: 2 - - uid: 28091 + - uid: 27958 components: - type: Transform pos: 31.5,47.5 parent: 2 - - uid: 28092 + - uid: 27959 components: - type: Transform pos: 30.5,47.5 parent: 2 - - uid: 28093 + - uid: 27960 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,68.5 parent: 2 - - uid: 28094 + - uid: 27961 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,89.5 parent: 2 - - uid: 28095 + - uid: 27962 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 28096 + - uid: 27963 components: - type: Transform pos: 29.5,47.5 parent: 2 - - uid: 28097 + - uid: 27964 components: - type: Transform pos: 58.5,-31.5 parent: 2 - - uid: 28098 + - uid: 27965 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 28099 + - uid: 27966 components: - type: Transform pos: 61.5,-8.5 parent: 2 - - uid: 28100 + - uid: 27967 components: - type: Transform pos: 71.5,15.5 parent: 2 - - uid: 28101 + - uid: 27968 components: - type: Transform pos: 70.5,-14.5 parent: 2 - - uid: 28102 + - uid: 27969 components: - type: Transform pos: 76.5,-22.5 parent: 2 - - uid: 28103 + - uid: 27970 components: - type: Transform pos: 39.5,50.5 parent: 2 - - uid: 28104 + - uid: 27971 components: - type: Transform pos: 50.5,14.5 parent: 2 - - uid: 28105 + - uid: 27972 components: - type: Transform pos: -21.5,3.5 parent: 2 - - uid: 28106 + - uid: 27973 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-48.5 parent: 2 - - uid: 28107 + - uid: 27974 components: - type: Transform pos: -27.5,-42.5 parent: 2 - - uid: 28108 + - uid: 27975 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,92.5 parent: 2 - - uid: 28109 + - uid: 27976 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,36.5 parent: 2 - - uid: 28110 + - uid: 27977 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,88.5 parent: 2 - - uid: 28111 + - uid: 27978 components: - type: Transform pos: -10.5,97.5 parent: 2 - - uid: 28112 + - uid: 27979 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 28113 + - uid: 27980 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,69.5 parent: 2 - - uid: 28114 + - uid: 27981 components: - type: Transform pos: -13.5,95.5 parent: 2 - - uid: 28115 + - uid: 27982 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-36.5 parent: 2 - - uid: 28116 + - uid: 27983 components: - type: Transform pos: -16.5,1.5 parent: 2 - - uid: 28117 + - uid: 27984 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,91.5 parent: 2 - - uid: 28118 + - uid: 27985 components: - type: Transform pos: 76.5,-17.5 parent: 2 - - uid: 28119 + - uid: 27986 components: - type: Transform pos: 48.5,28.5 parent: 2 - - uid: 28120 + - uid: 27987 components: - type: Transform pos: 67.5,-25.5 parent: 2 - - uid: 28121 + - uid: 27988 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-36.5 parent: 2 - - uid: 28122 + - uid: 27989 components: - type: Transform pos: -82.5,15.5 parent: 2 - - uid: 28123 + - uid: 27990 components: - type: Transform pos: 83.5,15.5 parent: 2 - - uid: 28124 + - uid: 27991 components: - type: Transform pos: 82.5,-20.5 parent: 2 - - uid: 28125 + - uid: 27992 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 28126 + - uid: 27993 components: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 28127 + - uid: 27994 components: - type: Transform pos: 48.5,14.5 parent: 2 - - uid: 28128 + - uid: 27995 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,65.5 parent: 2 - - uid: 28129 + - uid: 27996 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,67.5 parent: 2 - - uid: 28130 + - uid: 27997 components: - type: Transform pos: 65.5,-12.5 parent: 2 - - uid: 28131 + - uid: 27998 components: - type: Transform pos: 70.5,-25.5 parent: 2 - - uid: 28132 + - uid: 27999 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,88.5 parent: 2 - - uid: 28133 + - uid: 28000 components: - type: Transform pos: 76.5,-25.5 parent: 2 - - uid: 28134 + - uid: 28001 components: - type: Transform pos: 64.5,-17.5 parent: 2 - - uid: 28135 + - uid: 28002 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,89.5 parent: 2 - - uid: 28136 + - uid: 28003 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,92.5 parent: 2 - - uid: 28137 + - uid: 28004 components: - type: Transform pos: 53.5,20.5 parent: 2 - - uid: 28138 + - uid: 28005 components: - type: Transform pos: -22.5,70.5 parent: 2 - - uid: 28139 + - uid: 28006 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,31.5 parent: 2 - - uid: 28140 + - uid: 28007 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-4.5 parent: 2 - - uid: 28141 + - uid: 28008 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 - - uid: 28142 + - uid: 28009 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,1.5 parent: 2 - - uid: 28143 + - uid: 28010 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,0.5 parent: 2 - - uid: 28144 + - uid: 28011 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-3.5 parent: 2 - - uid: 28145 + - uid: 28012 components: - type: Transform pos: -4.5,70.5 parent: 2 - - uid: 28146 + - uid: 28013 components: - type: Transform pos: -29.5,-42.5 parent: 2 - - uid: 28147 + - uid: 28014 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-2.5 parent: 2 - - uid: 28148 + - uid: 28015 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,97.5 parent: 2 - - uid: 28149 + - uid: 28016 components: - type: Transform pos: 48.5,24.5 parent: 2 - - uid: 28150 + - uid: 28017 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-51.5 parent: 2 - - uid: 28151 + - uid: 28018 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 28152 + - uid: 28019 components: - type: Transform pos: -13.5,73.5 parent: 2 - - uid: 28153 + - uid: 28020 components: - type: Transform pos: -9.5,73.5 parent: 2 - - uid: 28154 + - uid: 28021 components: - type: Transform pos: 63.5,-31.5 parent: 2 - - uid: 28155 + - uid: 28022 components: - type: Transform pos: 62.5,-8.5 parent: 2 - - uid: 28156 + - uid: 28023 components: - type: Transform pos: 64.5,-25.5 parent: 2 - - uid: 28157 + - uid: 28024 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 28158 + - uid: 28025 components: - type: Transform pos: 40.5,24.5 parent: 2 - - uid: 28159 + - uid: 28026 components: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 28160 + - uid: 28027 components: - type: Transform pos: 49.5,3.5 parent: 2 - - uid: 28161 + - uid: 28028 components: - type: Transform pos: 64.5,-24.5 parent: 2 - - uid: 28162 + - uid: 28029 components: - type: Transform pos: 49.5,5.5 parent: 2 - - uid: 28163 + - uid: 28030 components: - type: Transform pos: 60.5,-8.5 parent: 2 - - uid: 28164 + - uid: 28031 components: - type: Transform pos: 76.5,-15.5 parent: 2 - - uid: 28165 + - uid: 28032 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-46.5 parent: 2 - - uid: 28166 + - uid: 28033 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-51.5 parent: 2 - - uid: 28167 + - uid: 28034 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,35.5 parent: 2 - - uid: 28168 + - uid: 28035 components: - type: Transform pos: -10.5,99.5 parent: 2 - - uid: 28169 + - uid: 28036 components: - type: Transform pos: 82.5,15.5 parent: 2 - - uid: 28170 + - uid: 28037 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 28171 + - uid: 28038 components: - type: Transform pos: 61.5,-6.5 parent: 2 - - uid: 28172 + - uid: 28039 components: - type: Transform pos: -16.5,3.5 parent: 2 - - uid: 28173 + - uid: 28040 components: - type: Transform pos: 29.5,53.5 parent: 2 - - uid: 28174 + - uid: 28041 components: - type: Transform pos: 39.5,47.5 parent: 2 - - uid: 28175 + - uid: 28042 components: - type: Transform pos: 67.5,-14.5 parent: 2 - - uid: 28176 + - uid: 28043 components: - type: Transform pos: -16.5,9.5 parent: 2 - - uid: 28177 + - uid: 28044 components: - type: Transform pos: 76.5,24.5 parent: 2 - - uid: 28178 + - uid: 28045 components: - type: Transform pos: 74.5,24.5 parent: 2 - - uid: 28179 + - uid: 28046 components: - type: Transform pos: -11.5,-6.5 parent: 2 - - uid: 28180 + - uid: 28047 components: - type: Transform pos: -14.5,3.5 parent: 2 - - uid: 28181 + - uid: 28048 components: - type: Transform pos: -14.5,1.5 parent: 2 - - uid: 28182 + - uid: 28049 components: - type: Transform pos: -16.5,8.5 parent: 2 - - uid: 28183 + - uid: 28050 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,31.5 parent: 2 - - uid: 28184 + - uid: 28051 components: - type: Transform pos: -13.5,72.5 parent: 2 - - uid: 28185 + - uid: 28052 components: - type: Transform pos: -21.5,70.5 parent: 2 - - uid: 28186 + - uid: 28053 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-55.5 parent: 2 - - uid: 28187 + - uid: 28054 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-54.5 parent: 2 - - uid: 28188 + - uid: 28055 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,91.5 parent: 2 - - uid: 28189 + - uid: 28056 components: - type: Transform pos: -42.5,-50.5 parent: 2 - - uid: 28190 + - uid: 28057 components: - type: Transform pos: -70.5,17.5 parent: 2 - - uid: 28191 + - uid: 28058 components: - type: Transform pos: -56.5,16.5 parent: 2 - - uid: 28192 + - uid: 28059 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 28193 + - uid: 28060 components: - type: Transform pos: 11.5,-12.5 parent: 2 - - uid: 28194 + - uid: 28061 components: - type: Transform pos: 28.5,53.5 parent: 2 - - uid: 28195 + - uid: 28062 components: - type: Transform pos: 30.5,53.5 parent: 2 - - uid: 28196 + - uid: 28063 components: - type: Transform pos: -44.5,-76.5 parent: 2 - - uid: 28197 + - uid: 28064 components: - type: Transform pos: -73.5,17.5 parent: 2 - - uid: 28198 + - uid: 28065 components: - type: Transform pos: 19.5,-30.5 parent: 2 - - uid: 28199 + - uid: 28066 components: - type: Transform pos: 73.5,-52.5 parent: 2 - - uid: 28200 + - uid: 28067 components: - type: Transform pos: 83.5,-46.5 parent: 2 - - uid: 28201 + - uid: 28068 components: - type: Transform pos: 52.5,14.5 parent: 2 - - uid: 28202 + - uid: 28069 components: - type: Transform pos: 54.5,10.5 parent: 2 - - uid: 28203 + - uid: 28070 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,35.5 parent: 2 - - uid: 28204 + - uid: 28071 components: - type: Transform pos: 31.5,-56.5 parent: 2 - - uid: 28205 + - uid: 28072 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 28206 + - uid: 28073 components: - type: Transform pos: 35.5,-56.5 parent: 2 - - uid: 28207 + - uid: 28074 components: - type: Transform pos: -5.5,-62.5 parent: 2 - - uid: 28208 + - uid: 28075 components: - type: Transform pos: 45.5,-56.5 parent: 2 - - uid: 28209 + - uid: 28076 components: - type: Transform pos: 41.5,-56.5 parent: 2 - - uid: 28210 + - uid: 28077 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,37.5 parent: 2 - - uid: 28211 + - uid: 28078 components: - type: Transform pos: 13.5,74.5 parent: 2 - - uid: 28212 + - uid: 28079 components: - type: Transform pos: -36.5,64.5 parent: 2 - - uid: 28213 + - uid: 28080 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 28214 + - uid: 28081 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 28215 + - uid: 28082 components: - type: Transform pos: 72.5,-27.5 parent: 2 - - uid: 28216 + - uid: 28083 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 28217 + - uid: 28084 components: - type: Transform pos: -42.5,62.5 parent: 2 - - uid: 28218 + - uid: 28085 components: - type: Transform pos: -37.5,64.5 parent: 2 - - uid: 28219 + - uid: 28086 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,97.5 parent: 2 - - uid: 28220 + - uid: 28087 components: - type: Transform pos: -39.5,64.5 parent: 2 - - uid: 28221 + - uid: 28088 components: - type: Transform pos: 16.5,85.5 parent: 2 - - uid: 28222 + - uid: 28089 components: - type: Transform pos: 16.5,86.5 parent: 2 - - uid: 28223 + - uid: 28090 components: - type: Transform pos: 18.5,86.5 parent: 2 - - uid: 28224 + - uid: 28091 components: - type: Transform pos: -33.5,19.5 parent: 2 - - uid: 28225 + - uid: 28092 components: - type: Transform pos: -31.5,19.5 parent: 2 - - uid: 28226 + - uid: 28093 components: - type: Transform pos: -34.5,22.5 parent: 2 - - uid: 28227 + - uid: 28094 components: - type: Transform pos: -34.5,17.5 parent: 2 - - uid: 28228 + - uid: 28095 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 28229 + - uid: 28096 components: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 28230 + - uid: 28097 components: - type: Transform pos: -22.5,-82.5 parent: 2 - - uid: 28231 + - uid: 28098 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-45.5 parent: 2 - - uid: 28232 + - uid: 28099 components: - type: Transform pos: 20.5,-32.5 parent: 2 - - uid: 28233 + - uid: 28100 components: - type: Transform pos: -48.5,-29.5 parent: 2 - - uid: 28234 + - uid: 28101 components: - type: Transform pos: 23.5,-49.5 parent: 2 - - uid: 28235 + - uid: 28102 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-44.5 parent: 2 - - uid: 28236 + - uid: 28103 components: - type: Transform pos: -47.5,2.5 parent: 2 - - uid: 28237 + - uid: 28104 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - uid: 28238 + - uid: 28105 components: - type: Transform pos: -15.5,-38.5 parent: 2 - - uid: 28239 + - uid: 28106 components: - type: Transform pos: -4.5,19.5 parent: 2 - - uid: 28240 + - uid: 28107 components: - type: Transform pos: 15.5,13.5 parent: 2 - - uid: 28241 + - uid: 28108 components: - type: Transform pos: 37.5,-60.5 parent: 2 - - uid: 28242 + - uid: 28109 components: - type: Transform pos: 13.5,-21.5 parent: 2 - - uid: 28243 + - uid: 28110 components: - type: Transform pos: 31.5,-64.5 parent: 2 - - uid: 28244 + - uid: 28111 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 28245 + - uid: 28112 components: - type: Transform pos: 23.5,-30.5 parent: 2 - - uid: 28246 + - uid: 28113 components: - type: Transform pos: 66.5,-20.5 parent: 2 - - uid: 28247 + - uid: 28114 components: - type: Transform pos: 23.5,34.5 parent: 2 - - uid: 28248 + - uid: 28115 components: - type: Transform pos: 23.5,37.5 parent: 2 - - uid: 28249 + - uid: 28116 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 28250 + - uid: 28117 components: - type: Transform pos: -19.5,70.5 parent: 2 - - uid: 28251 + - uid: 28118 components: - type: Transform pos: -18.5,70.5 parent: 2 - - uid: 28252 + - uid: 28119 components: - type: Transform pos: 70.5,-12.5 parent: 2 - - uid: 28253 + - uid: 28120 components: - type: Transform pos: 77.5,-12.5 parent: 2 - - uid: 28254 + - uid: 28121 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,86.5 parent: 2 - - uid: 28255 + - uid: 28122 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-70.5 parent: 2 - - uid: 28256 + - uid: 28123 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,75.5 parent: 2 - - uid: 28257 + - uid: 28124 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,75.5 parent: 2 - - uid: 28258 + - uid: 28125 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,75.5 parent: 2 - - uid: 28259 + - uid: 28126 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,86.5 parent: 2 - - uid: 28260 + - uid: 28127 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-62.5 parent: 2 - - uid: 28261 + - uid: 28128 components: - type: Transform pos: 65.5,-31.5 parent: 2 - - uid: 28262 + - uid: 28129 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,10.5 parent: 2 - - uid: 28263 + - uid: 28130 components: - type: Transform pos: 4.5,73.5 parent: 2 - - uid: 28264 + - uid: 28131 components: - type: Transform pos: 64.5,-31.5 parent: 2 - - uid: 28265 + - uid: 28132 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 28266 + - uid: 28133 components: - type: Transform pos: 32.5,57.5 parent: 2 - - uid: 28267 + - uid: 28134 components: - type: Transform pos: 24.5,39.5 parent: 2 - - uid: 28268 + - uid: 28135 components: - type: Transform pos: 16.5,33.5 parent: 2 - - uid: 28269 + - uid: 28136 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,88.5 parent: 2 - - uid: 28270 + - uid: 28137 components: - type: Transform pos: 64.5,-14.5 parent: 2 - - uid: 28271 + - uid: 28138 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 28272 + - uid: 28139 components: - type: Transform pos: 75.5,-25.5 parent: 2 - - uid: 28273 + - uid: 28140 components: - type: Transform pos: 19.5,-56.5 parent: 2 - - uid: 28274 + - uid: 28141 components: - type: Transform pos: -66.5,5.5 parent: 2 - - uid: 28275 + - uid: 28142 components: - type: Transform pos: 29.5,62.5 parent: 2 - - uid: 28276 + - uid: 28143 components: - type: Transform pos: 28.5,62.5 parent: 2 - - uid: 28277 + - uid: 28144 components: - type: Transform pos: 74.5,-25.5 parent: 2 - - uid: 28278 + - uid: 28145 components: - type: Transform pos: 63.5,-8.5 parent: 2 - - uid: 28279 + - uid: 28146 components: - type: Transform pos: -20.5,2.5 parent: 2 - - uid: 28280 + - uid: 28147 components: - type: Transform pos: 23.5,-25.5 parent: 2 - - uid: 28281 + - uid: 28148 components: - type: Transform pos: -10.5,-21.5 parent: 2 - - uid: 28282 + - uid: 28149 components: - type: Transform pos: -16.5,-36.5 parent: 2 - - uid: 28283 + - uid: 28150 components: - type: Transform pos: 23.5,-27.5 parent: 2 - - uid: 28284 + - uid: 28151 components: - type: Transform pos: 25.5,-44.5 parent: 2 - - uid: 28285 + - uid: 28152 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 28286 + - uid: 28153 components: - type: Transform pos: 23.5,-41.5 parent: 2 - - uid: 28287 + - uid: 28154 components: - type: Transform pos: -13.5,16.5 parent: 2 - - uid: 28288 + - uid: 28155 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 28289 + - uid: 28156 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 28290 + - uid: 28157 components: - type: Transform pos: 4.5,90.5 parent: 2 - - uid: 28291 + - uid: 28158 components: - type: Transform pos: 18.5,31.5 parent: 2 - - uid: 28292 + - uid: 28159 components: - type: Transform pos: 32.5,58.5 parent: 2 - - uid: 28293 + - uid: 28160 components: - type: Transform pos: 65.5,-8.5 parent: 2 - - uid: 28294 + - uid: 28161 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-60.5 parent: 2 - - uid: 28295 + - uid: 28162 components: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 28296 + - uid: 28163 components: - type: Transform pos: -11.5,-21.5 parent: 2 - - uid: 28297 + - uid: 28164 components: - type: Transform pos: 2.5,19.5 parent: 2 - - uid: 28298 + - uid: 28165 components: - type: Transform pos: 15.5,16.5 parent: 2 - - uid: 28299 + - uid: 28166 components: - type: Transform pos: -5.5,19.5 parent: 2 - - uid: 28300 + - uid: 28167 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 28301 + - uid: 28168 components: - type: Transform pos: -19.5,-44.5 parent: 2 - - uid: 28302 + - uid: 28169 components: - type: Transform pos: 38.5,-71.5 parent: 2 - - uid: 28303 + - uid: 28170 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 28304 + - uid: 28171 components: - type: Transform pos: 77.5,-17.5 parent: 2 - - uid: 28305 + - uid: 28172 components: - type: Transform pos: 11.5,-32.5 parent: 2 - - uid: 28306 + - uid: 28173 components: - type: Transform pos: 13.5,-32.5 parent: 2 - - uid: 28307 + - uid: 28174 components: - type: Transform pos: 19.5,-44.5 parent: 2 - - uid: 28308 + - uid: 28175 components: - type: Transform pos: 66.5,-28.5 parent: 2 - - uid: 28309 + - uid: 28176 components: - type: Transform pos: 64.5,-22.5 parent: 2 - - uid: 28310 + - uid: 28177 components: - type: Transform pos: -20.5,-26.5 parent: 2 - - uid: 28311 + - uid: 28178 components: - type: Transform pos: 4.5,19.5 parent: 2 - - uid: 28312 + - uid: 28179 components: - type: Transform pos: -20.5,-29.5 parent: 2 - - uid: 28313 + - uid: 28180 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 28314 + - uid: 28181 components: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 28315 + - uid: 28182 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 28316 + - uid: 28183 components: - type: Transform pos: -44.5,19.5 parent: 2 - - uid: 28317 + - uid: 28184 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 28318 + - uid: 28185 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 28319 + - uid: 28186 components: - type: Transform pos: 27.5,-24.5 parent: 2 - - uid: 28320 + - uid: 28187 components: - type: Transform pos: 20.5,-36.5 parent: 2 - - uid: 28321 + - uid: 28188 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-48.5 parent: 2 - - uid: 28322 + - uid: 28189 components: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 28323 + - uid: 28190 components: - type: Transform pos: 66.5,-29.5 parent: 2 - - uid: 28324 + - uid: 28191 components: - type: Transform pos: -47.5,26.5 parent: 2 - - uid: 28325 + - uid: 28192 components: - type: Transform pos: 65.5,-17.5 parent: 2 - - uid: 28326 + - uid: 28193 components: - type: Transform pos: -77.5,8.5 parent: 2 - - uid: 28327 + - uid: 28194 components: - type: Transform pos: -75.5,8.5 parent: 2 - - uid: 28328 + - uid: 28195 components: - type: Transform pos: 64.5,-8.5 parent: 2 - - uid: 28329 + - uid: 28196 components: - type: Transform pos: -59.5,15.5 parent: 2 - - uid: 28330 + - uid: 28197 components: - type: Transform pos: -60.5,16.5 parent: 2 - - uid: 28331 + - uid: 28198 components: - type: Transform pos: -61.5,17.5 parent: 2 - - uid: 28332 + - uid: 28199 components: - type: Transform pos: -61.5,18.5 parent: 2 - - uid: 28333 + - uid: 28200 components: - type: Transform pos: -5.5,21.5 parent: 2 - - uid: 28334 + - uid: 28201 components: - type: Transform pos: 6.5,17.5 parent: 2 - - uid: 28335 + - uid: 28202 components: - type: Transform pos: 5.5,19.5 parent: 2 - - uid: 28336 + - uid: 28203 components: - type: Transform pos: 7.5,17.5 parent: 2 - - uid: 28337 + - uid: 28204 components: - type: Transform pos: -6.5,21.5 parent: 2 - - uid: 28338 + - uid: 28205 components: - type: Transform pos: 5.5,18.5 parent: 2 - - uid: 28339 + - uid: 28206 components: - type: Transform pos: 21.5,7.5 parent: 2 - - uid: 28340 + - uid: 28207 components: - type: Transform pos: -7.5,17.5 parent: 2 - - uid: 28341 + - uid: 28208 components: - type: Transform pos: -6.5,18.5 parent: 2 - - uid: 28342 + - uid: 28209 components: - type: Transform pos: 71.5,12.5 parent: 2 - - uid: 28343 + - uid: 28210 components: - type: Transform pos: -65.5,-48.5 parent: 2 - - uid: 28344 + - uid: 28211 components: - type: Transform pos: -38.5,-49.5 parent: 2 - - uid: 28345 + - uid: 28212 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 28346 + - uid: 28213 components: - type: Transform pos: 31.5,-70.5 parent: 2 - - uid: 28347 + - uid: 28214 components: - type: Transform pos: 85.5,11.5 parent: 2 - - uid: 28348 + - uid: 28215 components: - type: Transform pos: 68.5,-14.5 parent: 2 - - uid: 28349 + - uid: 28216 components: - type: Transform pos: 26.5,-64.5 parent: 2 - - uid: 28350 + - uid: 28217 components: - type: Transform pos: 72.5,-25.5 parent: 2 - - uid: 28351 + - uid: 28218 components: - type: Transform pos: -73.5,9.5 parent: 2 - - uid: 28352 + - uid: 28219 components: - type: Transform pos: 71.5,16.5 parent: 2 - - uid: 28353 + - uid: 28220 components: - type: Transform pos: -55.5,17.5 parent: 2 - - uid: 28354 + - uid: 28221 components: - type: Transform pos: 79.5,-22.5 parent: 2 - - uid: 28355 + - uid: 28222 components: - type: Transform pos: 43.5,-69.5 parent: 2 - - uid: 28356 + - uid: 28223 components: - type: Transform pos: 82.5,-22.5 parent: 2 - - uid: 28357 + - uid: 28224 components: - type: Transform pos: -37.5,-49.5 parent: 2 - - uid: 28358 + - uid: 28225 components: - type: Transform pos: 74.5,-52.5 parent: 2 - - uid: 28359 + - uid: 28226 components: - type: Transform pos: -12.5,21.5 parent: 2 - - uid: 28360 + - uid: 28227 components: - type: Transform pos: -10.5,21.5 parent: 2 - - uid: 28361 + - uid: 28228 components: - type: Transform pos: 0.5,19.5 parent: 2 - - uid: 28362 + - uid: 28229 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 28363 + - uid: 28230 components: - type: Transform pos: -13.5,21.5 parent: 2 - - uid: 28364 + - uid: 28231 components: - type: Transform pos: 2.5,21.5 parent: 2 - - uid: 28365 + - uid: 28232 components: - type: Transform pos: -9.5,21.5 parent: 2 - - uid: 28366 + - uid: 28233 components: - type: Transform pos: 4.5,21.5 parent: 2 - - uid: 28367 + - uid: 28234 components: - type: Transform pos: -68.5,17.5 parent: 2 - - uid: 28368 + - uid: 28235 components: - type: Transform pos: -50.5,20.5 parent: 2 - - uid: 28369 + - uid: 28236 components: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 28370 + - uid: 28237 components: - type: Transform pos: 19.5,-37.5 parent: 2 - - uid: 28371 + - uid: 28238 components: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 28372 + - uid: 28239 components: - type: Transform pos: 3.5,21.5 parent: 2 - - uid: 28373 + - uid: 28240 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 28374 + - uid: 28241 components: - type: Transform pos: -48.5,26.5 parent: 2 - - uid: 28375 + - uid: 28242 components: - type: Transform pos: 25.5,-37.5 parent: 2 - - uid: 28376 + - uid: 28243 components: - type: Transform pos: 42.5,-71.5 parent: 2 - - uid: 28377 + - uid: 28244 components: - type: Transform pos: -45.5,27.5 parent: 2 - - uid: 28378 + - uid: 28245 components: - type: Transform pos: 4.5,63.5 parent: 2 - - uid: 28379 + - uid: 28246 components: - type: Transform pos: -43.5,32.5 parent: 2 - - uid: 28380 + - uid: 28247 components: - type: Transform pos: 33.5,19.5 parent: 2 - - uid: 28381 + - uid: 28248 components: - type: Transform pos: -12.5,99.5 parent: 2 - - uid: 28382 + - uid: 28249 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-69.5 parent: 2 - - uid: 28383 + - uid: 28250 components: - type: Transform pos: 78.5,-41.5 parent: 2 - - uid: 28384 + - uid: 28251 components: - type: Transform pos: 78.5,-19.5 parent: 2 - - uid: 28385 + - uid: 28252 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 28386 + - uid: 28253 components: - type: Transform pos: -66.5,7.5 parent: 2 - - uid: 28387 + - uid: 28254 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-73.5 parent: 2 - - uid: 28388 + - uid: 28255 components: - type: Transform pos: 24.5,60.5 parent: 2 - - uid: 28389 + - uid: 28256 components: - type: Transform pos: 24.5,61.5 parent: 2 - - uid: 28390 + - uid: 28257 components: - type: Transform pos: 76.5,-27.5 parent: 2 - - uid: 28391 + - uid: 28258 components: - type: Transform pos: 5.5,32.5 parent: 2 - - uid: 28392 + - uid: 28259 components: - type: Transform pos: 23.5,35.5 parent: 2 - - uid: 28393 + - uid: 28260 components: - type: Transform pos: 16.5,69.5 parent: 2 - - uid: 28394 + - uid: 28261 components: - type: Transform pos: -49.5,26.5 parent: 2 - - uid: 28395 + - uid: 28262 components: - type: Transform pos: 37.5,53.5 parent: 2 - - uid: 28396 + - uid: 28263 components: - type: Transform pos: 68.5,-27.5 parent: 2 - - uid: 28397 + - uid: 28264 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-42.5 parent: 2 - - uid: 28398 + - uid: 28265 components: - type: Transform pos: -26.5,-79.5 parent: 2 - - uid: 28399 + - uid: 28266 components: - type: Transform pos: -40.5,-24.5 parent: 2 - - uid: 28400 + - uid: 28267 components: - type: Transform pos: 14.5,89.5 parent: 2 - - uid: 28401 + - uid: 28268 components: - type: Transform pos: -44.5,-72.5 parent: 2 - - uid: 28402 + - uid: 28269 components: - type: Transform pos: -44.5,-73.5 parent: 2 - - uid: 28403 + - uid: 28270 components: - type: Transform pos: 74.5,26.5 parent: 2 - - uid: 28404 + - uid: 28271 components: - type: Transform pos: -45.5,-73.5 parent: 2 - - uid: 28405 + - uid: 28272 components: - type: Transform pos: 35.5,-72.5 parent: 2 - - uid: 28406 + - uid: 28273 components: - type: Transform pos: 11.5,59.5 parent: 2 - - uid: 28407 + - uid: 28274 components: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 28408 + - uid: 28275 components: - type: Transform pos: 66.5,-30.5 parent: 2 - - uid: 28409 + - uid: 28276 components: - type: Transform pos: 16.5,65.5 parent: 2 - - uid: 28410 + - uid: 28277 components: - type: Transform pos: 16.5,72.5 parent: 2 - - uid: 28411 + - uid: 28278 components: - type: Transform pos: -46.5,-75.5 parent: 2 - - uid: 28412 + - uid: 28279 components: - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 28413 + - uid: 28280 components: - type: Transform pos: -29.5,-24.5 parent: 2 - - uid: 28414 + - uid: 28281 components: - type: Transform pos: 66.5,-25.5 parent: 2 - - uid: 28415 + - uid: 28282 components: - type: Transform pos: 3.5,19.5 parent: 2 - - uid: 28416 + - uid: 28283 components: - type: Transform pos: 38.5,53.5 parent: 2 - - uid: 28417 + - uid: 28284 components: - type: Transform pos: -11.5,-50.5 parent: 2 - - uid: 28418 + - uid: 28285 components: - type: Transform pos: 12.5,-36.5 parent: 2 - - uid: 28419 + - uid: 28286 components: - type: Transform pos: -71.5,17.5 parent: 2 - - uid: 28420 + - uid: 28287 components: - type: Transform pos: -61.5,-11.5 parent: 2 - - uid: 28421 + - uid: 28288 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 28422 + - uid: 28289 components: - type: Transform pos: 23.5,-31.5 parent: 2 - - uid: 28423 + - uid: 28290 components: - type: Transform pos: -8.5,21.5 parent: 2 - - uid: 28424 + - uid: 28291 components: - type: Transform pos: 5.5,21.5 parent: 2 - - uid: 28425 + - uid: 28292 components: - type: Transform pos: -43.5,34.5 parent: 2 - - uid: 28426 + - uid: 28293 components: - type: Transform pos: 2.5,-58.5 parent: 2 - - uid: 28427 + - uid: 28294 components: - type: Transform pos: 78.5,-14.5 parent: 2 - - uid: 28428 + - uid: 28295 components: - type: Transform pos: -42.5,54.5 parent: 2 - - uid: 28429 + - uid: 28296 components: - type: Transform pos: -23.5,70.5 parent: 2 - - uid: 28430 + - uid: 28297 components: - type: Transform pos: 57.5,-48.5 parent: 2 - - uid: 28431 + - uid: 28298 components: - type: Transform pos: 33.5,20.5 parent: 2 - - uid: 28432 + - uid: 28299 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,91.5 parent: 2 - - uid: 28433 + - uid: 28300 components: - type: Transform pos: -35.5,64.5 parent: 2 - - uid: 28434 + - uid: 28301 components: - type: Transform pos: -59.5,9.5 parent: 2 - - uid: 28435 + - uid: 28302 components: - type: Transform pos: 70.5,-27.5 parent: 2 - - uid: 28436 + - uid: 28303 components: - type: Transform pos: 24.5,62.5 parent: 2 - - uid: 28437 + - uid: 28304 components: - type: Transform pos: 36.5,53.5 parent: 2 - - uid: 28438 + - uid: 28305 components: - type: Transform pos: 16.5,67.5 parent: 2 - - uid: 28439 + - uid: 28306 components: - type: Transform pos: 41.5,16.5 parent: 2 - - uid: 28440 + - uid: 28307 components: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 28441 + - uid: 28308 components: - type: Transform pos: 13.5,75.5 parent: 2 - - uid: 28442 + - uid: 28309 components: - type: Transform pos: 8.5,43.5 parent: 2 - - uid: 28443 + - uid: 28310 components: - type: Transform pos: -59.5,11.5 parent: 2 - - uid: 28444 + - uid: 28311 components: - type: Transform pos: 78.5,-17.5 parent: 2 - - uid: 28445 + - uid: 28312 components: - type: Transform pos: -76.5,17.5 parent: 2 - - uid: 28446 + - uid: 28313 components: - type: Transform pos: -47.5,0.5 parent: 2 - - uid: 28447 + - uid: 28314 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,50.5 parent: 2 - - uid: 28448 + - uid: 28315 components: - type: Transform pos: -50.5,-12.5 parent: 2 - - uid: 28449 + - uid: 28316 components: - type: Transform pos: 37.5,47.5 parent: 2 - - uid: 28450 + - uid: 28317 components: - type: Transform pos: -28.5,99.5 parent: 2 - - uid: 28451 + - uid: 28318 components: - type: Transform pos: -67.5,21.5 parent: 2 - - uid: 28452 + - uid: 28319 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 28453 + - uid: 28320 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 28454 + - uid: 28321 components: - type: Transform pos: -72.5,9.5 parent: 2 - - uid: 28455 + - uid: 28322 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 28456 + - uid: 28323 components: - type: Transform pos: -27.5,-32.5 parent: 2 - - uid: 28457 + - uid: 28324 components: - type: Transform pos: -53.5,39.5 parent: 2 - - uid: 28458 + - uid: 28325 components: - type: Transform pos: -36.5,-24.5 parent: 2 - - uid: 28459 + - uid: 28326 components: - type: Transform pos: -57.5,33.5 parent: 2 - - uid: 28460 + - uid: 28327 components: - type: Transform pos: -36.5,-30.5 parent: 2 - - uid: 28461 + - uid: 28328 components: - type: Transform pos: -42.5,-30.5 parent: 2 - - uid: 28462 + - uid: 28329 components: - type: Transform pos: -38.5,-30.5 parent: 2 - - uid: 28463 + - uid: 28330 components: - type: Transform pos: 24.5,33.5 parent: 2 - - uid: 28464 + - uid: 28331 components: - type: Transform pos: 15.5,-23.5 parent: 2 - - uid: 28465 + - uid: 28332 components: - type: Transform pos: 13.5,-36.5 parent: 2 - - uid: 28466 + - uid: 28333 components: - type: Transform pos: 15.5,-37.5 parent: 2 - - uid: 28467 + - uid: 28334 components: - type: Transform pos: 31.5,53.5 parent: 2 - - uid: 28468 + - uid: 28335 components: - type: Transform pos: 2.5,66.5 parent: 2 - - uid: 28469 + - uid: 28336 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - uid: 28470 + - uid: 28337 components: - type: Transform pos: -33.5,64.5 parent: 2 - - uid: 28471 + - uid: 28338 components: - type: Transform pos: -45.5,28.5 parent: 2 - - uid: 28472 + - uid: 28339 components: - type: Transform pos: -45.5,29.5 parent: 2 - - uid: 28473 + - uid: 28340 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 28474 + - uid: 28341 components: - type: Transform pos: -45.5,34.5 parent: 2 - - uid: 28475 + - uid: 28342 components: - type: Transform pos: 26.5,-70.5 parent: 2 - - uid: 28476 + - uid: 28343 components: - type: Transform pos: 25.5,-70.5 parent: 2 - - uid: 28477 + - uid: 28344 components: - type: Transform pos: -7.5,-21.5 parent: 2 - - uid: 28478 + - uid: 28345 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-78.5 parent: 2 - - uid: 28479 + - uid: 28346 components: - type: Transform pos: -16.5,16.5 parent: 2 - - uid: 28480 + - uid: 28347 components: - type: Transform pos: -8.5,17.5 parent: 2 - - uid: 28481 + - uid: 28348 components: - type: Transform pos: -42.5,-53.5 parent: 2 - - uid: 28482 + - uid: 28349 components: - type: Transform pos: -42.5,-52.5 parent: 2 - - uid: 28483 + - uid: 28350 components: - type: Transform pos: -78.5,-30.5 parent: 2 - - uid: 28484 + - uid: 28351 components: - type: Transform pos: -68.5,-46.5 parent: 2 - - uid: 28485 + - uid: 28352 components: - type: Transform pos: -66.5,-47.5 parent: 2 - - uid: 28486 + - uid: 28353 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 28487 + - uid: 28354 components: - type: Transform pos: -2.5,-31.5 parent: 2 - - uid: 28488 + - uid: 28355 components: - type: Transform pos: 15.5,-26.5 parent: 2 - - uid: 28489 + - uid: 28356 components: - type: Transform pos: 28.5,-64.5 parent: 2 - - uid: 28490 + - uid: 28357 components: - type: Transform pos: 10.5,-21.5 parent: 2 - - uid: 28491 + - uid: 28358 components: - type: Transform pos: 9.5,-21.5 parent: 2 - - uid: 28492 + - uid: 28359 components: - type: Transform pos: 15.5,-31.5 parent: 2 - - uid: 28493 + - uid: 28360 components: - type: Transform pos: 19.5,-31.5 parent: 2 - - uid: 28494 + - uid: 28361 components: - type: Transform pos: 16.5,-56.5 parent: 2 - - uid: 28495 + - uid: 28362 components: - type: Transform pos: 72.5,-14.5 parent: 2 - - uid: 28496 + - uid: 28363 components: - type: Transform pos: 66.5,-14.5 parent: 2 - - uid: 28497 + - uid: 28364 components: - type: Transform pos: 24.5,71.5 parent: 2 - - uid: 28498 + - uid: 28365 components: - type: Transform pos: -57.5,8.5 parent: 2 - - uid: 28499 + - uid: 28366 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 28500 + - uid: 28367 components: - type: Transform pos: 4.5,92.5 parent: 2 - - uid: 28503 + - uid: 28368 components: - type: Transform pos: 60.5,-42.5 parent: 2 - - uid: 28504 + - uid: 28369 components: - type: Transform pos: 81.5,-22.5 parent: 2 - - uid: 28505 + - uid: 28370 components: - type: Transform pos: 73.5,-27.5 parent: 2 - - uid: 28506 + - uid: 28371 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-70.5 parent: 2 - - uid: 28507 + - uid: 28372 components: - type: Transform pos: 71.5,-27.5 parent: 2 - - uid: 28508 + - uid: 28373 components: - type: Transform pos: 12.5,39.5 parent: 2 - - uid: 28509 + - uid: 28374 components: - type: Transform pos: 0.5,-82.5 parent: 2 - - uid: 28510 + - uid: 28375 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,31.5 parent: 2 - - uid: 28511 + - uid: 28376 components: - type: Transform pos: 72.5,-52.5 parent: 2 - - uid: 28512 + - uid: 28377 components: - type: Transform pos: 74.5,-35.5 parent: 2 - - uid: 28513 + - uid: 28378 components: - type: Transform pos: 76.5,-24.5 parent: 2 - - uid: 28514 + - uid: 28379 components: - type: Transform pos: 76.5,-20.5 parent: 2 - - uid: 28515 + - uid: 28380 components: - type: Transform pos: 51.5,-56.5 parent: 2 - - uid: 28516 + - uid: 28381 components: - type: Transform pos: 64.5,-26.5 parent: 2 - - uid: 28517 + - uid: 28382 components: - type: Transform pos: 50.5,-56.5 parent: 2 - - uid: 28518 + - uid: 28383 components: - type: Transform pos: 71.5,-25.5 parent: 2 - - uid: 28519 + - uid: 28384 components: - type: Transform pos: 27.5,25.5 parent: 2 - - uid: 28520 + - uid: 28385 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-42.5 parent: 2 - - uid: 28521 + - uid: 28386 components: - type: Transform pos: 64.5,-20.5 parent: 2 - - uid: 28522 + - uid: 28387 components: - type: Transform pos: 67.5,-27.5 parent: 2 - - uid: 28523 + - uid: 28388 components: - type: Transform pos: 34.5,47.5 parent: 2 - - uid: 28524 + - uid: 28389 components: - type: Transform pos: 12.5,44.5 parent: 2 - - uid: 28525 + - uid: 28390 components: - type: Transform pos: 10.5,32.5 parent: 2 - - uid: 28527 + - uid: 28391 components: - type: Transform pos: -27.5,86.5 parent: 2 - - uid: 28528 + - uid: 28392 components: - type: Transform pos: 82.5,-19.5 parent: 2 - - uid: 28529 + - uid: 28393 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 28530 + - uid: 28394 components: - type: Transform pos: 40.5,16.5 parent: 2 - - uid: 28531 + - uid: 28395 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-36.5 parent: 2 - - uid: 28532 + - uid: 28396 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 28533 + - uid: 28397 components: - type: Transform pos: 74.5,-14.5 parent: 2 - - uid: 28534 + - uid: 28398 components: - type: Transform pos: 75.5,-14.5 parent: 2 - - uid: 28535 + - uid: 28399 components: - type: Transform pos: 68.5,-12.5 parent: 2 - - uid: 28536 + - uid: 28400 components: - type: Transform pos: -25.5,-79.5 parent: 2 - - uid: 28537 + - uid: 28401 components: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 28538 + - uid: 28402 components: - type: Transform pos: -56.5,8.5 parent: 2 - - uid: 28539 + - uid: 28403 components: - type: Transform pos: 34.5,53.5 parent: 2 - - uid: 28540 + - uid: 28404 components: - type: Transform pos: 6.5,38.5 parent: 2 - - uid: 28541 + - uid: 28405 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-78.5 parent: 2 - - uid: 28542 + - uid: 28406 components: - type: Transform pos: 9.5,38.5 parent: 2 - - uid: 28543 + - uid: 28407 components: - type: Transform pos: 11.5,38.5 parent: 2 - - uid: 28544 + - uid: 28408 components: - type: Transform pos: -44.5,-75.5 parent: 2 - - uid: 28545 + - uid: 28409 components: - type: Transform pos: 38.5,47.5 parent: 2 - - uid: 28546 + - uid: 28410 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,72.5 parent: 2 - - uid: 28547 + - uid: 28411 components: - type: Transform pos: -44.5,57.5 parent: 2 - - uid: 28548 + - uid: 28412 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 28549 + - uid: 28413 components: - type: Transform pos: 39.5,-75.5 parent: 2 - - uid: 28550 + - uid: 28414 components: - type: Transform pos: -58.5,-51.5 parent: 2 - - uid: 28551 + - uid: 28415 components: - type: Transform pos: 35.5,53.5 parent: 2 - - uid: 28552 + - uid: 28416 components: - type: Transform pos: 36.5,47.5 parent: 2 - - uid: 28553 + - uid: 28417 components: - type: Transform pos: 32.5,53.5 parent: 2 - - uid: 28554 + - uid: 28418 components: - type: Transform pos: 35.5,-32.5 parent: 2 - - uid: 28555 + - uid: 28419 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,18.5 parent: 2 - - uid: 28556 + - uid: 28420 components: - type: Transform pos: -13.5,-82.5 parent: 2 - - uid: 28557 + - uid: 28421 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,73.5 parent: 2 - - uid: 28558 + - uid: 28422 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,82.5 parent: 2 - - uid: 28559 + - uid: 28423 components: - type: Transform pos: 62.5,-31.5 parent: 2 - - uid: 28560 + - uid: 28424 components: - type: Transform pos: -79.5,10.5 parent: 2 - - uid: 28561 + - uid: 28425 components: - type: Transform pos: -55.5,31.5 parent: 2 - - uid: 28562 + - uid: 28426 components: - type: Transform pos: -16.5,-82.5 parent: 2 - - uid: 28563 + - uid: 28427 components: - type: Transform pos: -31.5,94.5 parent: 2 - - uid: 28564 + - uid: 28428 components: - type: Transform pos: -67.5,13.5 parent: 2 - - uid: 28565 + - uid: 28429 components: - type: Transform pos: -15.5,-82.5 parent: 2 - - uid: 28566 + - uid: 28430 components: - type: Transform pos: 66.5,-9.5 parent: 2 - - uid: 28567 + - uid: 28431 components: - type: Transform pos: 66.5,-24.5 parent: 2 - - uid: 28568 + - uid: 28432 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-52.5 parent: 2 - - uid: 28569 + - uid: 28433 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-0.5 parent: 2 - - uid: 28570 + - uid: 28434 components: - type: Transform pos: 22.5,61.5 parent: 2 - - uid: 28571 + - uid: 28435 components: - type: Transform pos: 68.5,-25.5 parent: 2 - - uid: 28572 + - uid: 28436 components: - type: Transform pos: 37.5,21.5 parent: 2 - - uid: 28573 + - uid: 28437 components: - type: Transform pos: 73.5,-35.5 parent: 2 - - uid: 28574 + - uid: 28438 components: - type: Transform pos: 64.5,-13.5 parent: 2 - - uid: 28575 + - uid: 28439 components: - type: Transform pos: -16.5,-26.5 parent: 2 - - uid: 28576 + - uid: 28440 components: - type: Transform pos: -16.5,-25.5 parent: 2 - - uid: 28577 + - uid: 28441 components: - type: Transform pos: -43.5,33.5 parent: 2 - - uid: 28578 + - uid: 28442 components: - type: Transform pos: 7.5,91.5 parent: 2 - - uid: 28579 + - uid: 28443 components: - type: Transform pos: 26.5,62.5 parent: 2 - - uid: 28580 + - uid: 28444 components: - type: Transform pos: -57.5,4.5 parent: 2 - - uid: 28581 + - uid: 28445 components: - type: Transform pos: 46.5,-56.5 parent: 2 - - uid: 28582 + - uid: 28446 components: - type: Transform pos: -40.5,-49.5 parent: 2 - - uid: 28583 + - uid: 28447 components: - type: Transform pos: 79.5,-17.5 parent: 2 - - uid: 28584 + - uid: 28448 components: - type: Transform pos: -51.5,34.5 parent: 2 - - uid: 28585 + - uid: 28449 components: - type: Transform pos: 81.5,-17.5 parent: 2 - - uid: 28586 + - uid: 28450 components: - type: Transform pos: -61.5,-48.5 parent: 2 - - uid: 28587 + - uid: 28451 components: - type: Transform pos: -11.5,-38.5 parent: 2 - - uid: 28588 + - uid: 28452 components: - type: Transform pos: -41.5,-49.5 parent: 2 - - uid: 28589 + - uid: 28453 components: - type: Transform pos: 12.5,16.5 parent: 2 - - uid: 28590 + - uid: 28454 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 28591 + - uid: 28455 components: - type: Transform pos: -15.5,-42.5 parent: 2 - - uid: 28592 + - uid: 28456 components: - type: Transform pos: -63.5,-48.5 parent: 2 - - uid: 28593 + - uid: 28457 components: - type: Transform pos: -11.5,-42.5 parent: 2 - - uid: 28594 + - uid: 28458 components: - type: Transform pos: 22.5,-36.5 parent: 2 - - uid: 28595 + - uid: 28459 components: - type: Transform pos: 1.5,-23.5 parent: 2 - - uid: 28596 + - uid: 28460 components: - type: Transform pos: -6.5,19.5 parent: 2 - - uid: 28597 + - uid: 28461 components: - type: Transform pos: 12.5,21.5 parent: 2 - - uid: 28598 + - uid: 28462 components: - type: Transform pos: 0.5,21.5 parent: 2 - - uid: 28599 + - uid: 28463 components: - type: Transform pos: -53.5,31.5 parent: 2 - - uid: 28600 + - uid: 28464 components: - type: Transform pos: -43.5,29.5 parent: 2 - - uid: 28601 + - uid: 28465 components: - type: Transform pos: 64.5,-15.5 parent: 2 - - uid: 28602 + - uid: 28466 components: - type: Transform pos: -66.5,9.5 parent: 2 - - uid: 28603 + - uid: 28467 components: - type: Transform pos: 66.5,-12.5 parent: 2 - - uid: 28604 + - uid: 28468 components: - type: Transform pos: 61.5,-31.5 parent: 2 - - uid: 28605 + - uid: 28469 components: - type: Transform pos: 65.5,-27.5 parent: 2 - - uid: 28606 + - uid: 28470 components: - type: Transform pos: -31.5,95.5 parent: 2 - - uid: 28607 + - uid: 28471 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 28608 + - uid: 28472 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-38.5 parent: 2 - - uid: 28609 + - uid: 28473 components: - type: Transform pos: 66.5,-15.5 parent: 2 - - uid: 28611 + - uid: 28474 components: - type: Transform pos: 59.5,-42.5 parent: 2 - - uid: 28612 + - uid: 28475 components: - type: Transform pos: -0.5,-82.5 parent: 2 - - uid: 28613 + - uid: 28476 components: - type: Transform pos: 77.5,-27.5 parent: 2 - - uid: 28614 + - uid: 28477 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 28615 + - uid: 28478 components: - type: Transform pos: -57.5,37.5 parent: 2 - - uid: 28616 + - uid: 28479 components: - type: Transform pos: 60.5,-31.5 parent: 2 - - uid: 28617 + - uid: 28480 components: - type: Transform pos: -0.5,19.5 parent: 2 - - uid: 28618 + - uid: 28481 components: - type: Transform pos: -3.5,19.5 parent: 2 - - uid: 28619 + - uid: 28482 components: - type: Transform pos: -1.5,19.5 parent: 2 - - uid: 28620 + - uid: 28483 components: - type: Transform pos: -1.5,21.5 parent: 2 - - uid: 28621 + - uid: 28484 components: - type: Transform pos: -4.5,21.5 parent: 2 - - uid: 28622 + - uid: 28485 components: - type: Transform pos: -3.5,21.5 parent: 2 - - uid: 28623 + - uid: 28486 components: - type: Transform pos: -0.5,21.5 parent: 2 - - uid: 28624 + - uid: 28487 components: - type: Transform pos: -36.5,22.5 parent: 2 - - uid: 28625 + - uid: 28488 components: - type: Transform pos: 76.5,-14.5 parent: 2 - - uid: 28626 + - uid: 28489 components: - type: Transform pos: 24.5,-36.5 parent: 2 - - uid: 28627 + - uid: 28490 components: - type: Transform pos: 41.5,-75.5 parent: 2 - - uid: 28628 + - uid: 28491 components: - type: Transform pos: 45.5,1.5 parent: 2 - - uid: 28629 + - uid: 28492 components: - type: Transform pos: -4.5,-82.5 parent: 2 - - uid: 28630 + - uid: 28493 components: - type: Transform pos: -44.5,17.5 parent: 2 - - uid: 28631 + - uid: 28494 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,31.5 parent: 2 - - uid: 28632 + - uid: 28495 components: - type: Transform pos: -39.5,19.5 parent: 2 - - uid: 28633 + - uid: 28496 components: - type: Transform pos: -69.5,17.5 parent: 2 - - uid: 28634 + - uid: 28497 components: - type: Transform pos: 30.5,-27.5 parent: 2 - - uid: 28635 + - uid: 28498 components: - type: Transform pos: -61.5,-2.5 parent: 2 - - uid: 28636 + - uid: 28499 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,89.5 parent: 2 - - uid: 28637 + - uid: 28500 components: - type: Transform pos: 84.5,11.5 parent: 2 - - uid: 28638 + - uid: 28501 components: - type: Transform pos: 25.5,-64.5 parent: 2 - - uid: 28639 + - uid: 28502 components: - type: Transform pos: 35.5,47.5 parent: 2 - - uid: 28640 + - uid: 28503 components: - type: Transform pos: 66.5,-11.5 parent: 2 - - uid: 28641 + - uid: 28504 components: - type: Transform pos: 76.5,26.5 parent: 2 - - uid: 28642 + - uid: 28505 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 28643 + - uid: 28506 components: - type: Transform pos: 57.5,-31.5 parent: 2 - - uid: 28644 + - uid: 28507 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 28645 + - uid: 28508 components: - type: Transform pos: 66.5,-27.5 parent: 2 - - uid: 28646 + - uid: 28509 components: - type: Transform pos: -45.5,32.5 parent: 2 - - uid: 28647 + - uid: 28510 components: - type: Transform pos: 11.5,31.5 parent: 2 - - uid: 28648 + - uid: 28511 components: - type: Transform pos: 30.5,41.5 parent: 2 - - uid: 28649 + - uid: 28512 components: - type: Transform pos: 30.5,42.5 parent: 2 - - uid: 28650 + - uid: 28513 components: - type: Transform pos: 3.5,79.5 parent: 2 - - uid: 28651 + - uid: 28514 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 28652 + - uid: 28515 components: - type: Transform pos: 30.5,43.5 parent: 2 - - uid: 28653 + - uid: 28516 components: - type: Transform pos: 39.5,53.5 parent: 2 - - uid: 28654 + - uid: 28517 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-68.5 parent: 2 - - uid: 28655 + - uid: 28518 components: - type: Transform pos: 23.5,38.5 parent: 2 - - uid: 28656 + - uid: 28519 components: - type: Transform pos: 78.5,-16.5 parent: 2 - - uid: 28657 + - uid: 28520 components: - type: Transform pos: 3.5,32.5 parent: 2 - - uid: 28658 + - uid: 28521 components: - type: Transform pos: 54.5,-7.5 parent: 2 - - uid: 28659 + - uid: 28522 components: - type: Transform pos: 66.5,-22.5 parent: 2 - - uid: 28660 + - uid: 28523 components: - type: Transform pos: 6.5,-21.5 parent: 2 - - uid: 28661 + - uid: 28524 components: - type: Transform pos: -23.5,3.5 parent: 2 - - uid: 28662 + - uid: 28525 components: - type: Transform pos: 66.5,-19.5 parent: 2 - - uid: 28663 + - uid: 28526 components: - type: Transform pos: 66.5,-17.5 parent: 2 - - uid: 28664 + - uid: 28527 components: - type: Transform pos: 78.5,-27.5 parent: 2 - - uid: 28665 + - uid: 28528 components: - type: Transform pos: 82.5,-41.5 parent: 2 - - uid: 28666 + - uid: 28529 components: - type: Transform pos: 57.5,-8.5 parent: 2 - - uid: 28667 + - uid: 28530 components: - type: Transform pos: 58.5,-8.5 parent: 2 - - uid: 28668 + - uid: 28531 components: - type: Transform pos: 82.5,-17.5 parent: 2 - - uid: 28669 + - uid: 28532 components: - type: Transform pos: 78.5,-23.5 parent: 2 - - uid: 28670 + - uid: 28533 components: - type: Transform pos: -46.5,-73.5 parent: 2 - - uid: 28671 + - uid: 28534 components: - type: Transform pos: 78.5,-13.5 parent: 2 - - uid: 28672 + - uid: 28535 components: - type: Transform pos: 18.5,30.5 parent: 2 - - uid: 28673 + - uid: 28536 components: - type: Transform pos: -42.5,60.5 parent: 2 - - uid: 28674 + - uid: 28537 components: - type: Transform pos: -5.5,70.5 parent: 2 - - uid: 28675 + - uid: 28538 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,86.5 parent: 2 - - uid: 28676 + - uid: 28539 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 28677 + - uid: 28540 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,89.5 parent: 2 - - uid: 28678 + - uid: 28541 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,29.5 parent: 2 - - uid: 28679 + - uid: 28542 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,88.5 parent: 2 - - uid: 28680 + - uid: 28543 components: - type: Transform pos: 11.5,21.5 parent: 2 - - uid: 28681 + - uid: 28544 components: - type: Transform pos: -45.5,33.5 parent: 2 - - uid: 28682 + - uid: 28545 components: - type: Transform pos: 73.5,-12.5 parent: 2 - - uid: 28683 + - uid: 28546 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,92.5 parent: 2 - - uid: 28684 + - uid: 28547 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,92.5 parent: 2 - - uid: 28685 + - uid: 28548 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,91.5 parent: 2 - - uid: 28686 + - uid: 28549 components: - type: Transform pos: -36.5,17.5 parent: 2 - - uid: 28687 + - uid: 28550 components: - type: Transform pos: 11.5,-36.5 parent: 2 - - uid: 28688 + - uid: 28551 components: - type: Transform pos: -61.5,-13.5 parent: 2 - - uid: 28689 + - uid: 28552 components: - type: Transform pos: 66.5,-10.5 parent: 2 - - uid: 28690 + - uid: 28553 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-39.5 parent: 2 - - uid: 28691 + - uid: 28554 components: - type: Transform pos: 78.5,-22.5 parent: 2 - - uid: 28692 + - uid: 28555 components: - type: Transform pos: 77.5,-22.5 parent: 2 - - uid: 28693 + - uid: 28556 components: - type: Transform pos: 65.5,-22.5 parent: 2 - - uid: 28694 + - uid: 28557 components: - type: Transform pos: 59.5,-8.5 parent: 2 - - uid: 28695 + - uid: 28558 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - uid: 28696 + - uid: 28559 components: - type: Transform pos: -61.5,-12.5 parent: 2 - - uid: 28697 + - uid: 28560 components: - type: Transform pos: -27.5,95.5 parent: 2 - - uid: 28698 + - uid: 28561 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-36.5 parent: 2 - - uid: 28699 + - uid: 28562 components: - type: Transform pos: 37.5,7.5 parent: 2 - - uid: 28700 + - uid: 28563 components: - type: Transform pos: -26.5,82.5 parent: 2 - - uid: 28701 + - uid: 28564 components: - type: Transform pos: 72.5,-12.5 parent: 2 - - uid: 28702 + - uid: 28565 components: - type: Transform pos: 25.5,-69.5 parent: 2 - - uid: 28703 + - uid: 28566 components: - type: Transform pos: -13.5,49.5 parent: 2 - - uid: 28704 + - uid: 28567 components: - type: Transform pos: -51.5,33.5 parent: 2 - - uid: 28705 + - uid: 28568 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 28706 + - uid: 28569 components: - type: Transform pos: 80.5,13.5 parent: 2 - - uid: 28707 + - uid: 28570 components: - type: Transform pos: -27.5,73.5 parent: 2 - - uid: 28708 + - uid: 28571 components: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 28709 + - uid: 28572 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-3.5 parent: 2 - - uid: 28710 + - uid: 28573 components: - type: Transform pos: -45.5,-75.5 parent: 2 - - uid: 28711 + - uid: 28574 components: - type: Transform pos: 48.5,21.5 parent: 2 - - uid: 28712 + - uid: 28575 components: - type: Transform pos: 83.5,-45.5 parent: 2 - - uid: 28713 + - uid: 28576 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-2.5 parent: 2 - - uid: 28714 + - uid: 28577 components: - type: Transform pos: 83.5,-42.5 parent: 2 - - uid: 28715 + - uid: 28578 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-4.5 parent: 2 - - uid: 28716 + - uid: 28579 components: - type: Transform pos: 45.5,13.5 parent: 2 - - uid: 28717 + - uid: 28580 components: - type: Transform pos: 78.5,-26.5 parent: 2 - - uid: 28718 + - uid: 28581 components: - type: Transform pos: 8.5,45.5 parent: 2 - - uid: 28719 + - uid: 28582 components: - type: Transform pos: 4.5,89.5 parent: 2 - - uid: 28720 + - uid: 28583 components: - type: Transform pos: -14.5,79.5 parent: 2 - - uid: 28721 + - uid: 28584 components: - type: Transform pos: -8.5,79.5 parent: 2 - - uid: 28722 + - uid: 28585 components: - type: Transform pos: -59.5,-51.5 parent: 2 - - uid: 28723 + - uid: 28586 components: - type: Transform pos: 7.5,86.5 parent: 2 - - uid: 28724 + - uid: 28587 components: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 28725 + - uid: 28588 components: - type: Transform pos: 15.5,-29.5 parent: 2 - - uid: 28726 + - uid: 28589 components: - type: Transform pos: -79.5,9.5 parent: 2 - - uid: 28727 + - uid: 28590 components: - type: Transform pos: 25.5,-46.5 parent: 2 - - uid: 28728 + - uid: 28591 components: - type: Transform pos: 21.5,-49.5 parent: 2 - - uid: 28729 + - uid: 28592 components: - type: Transform pos: 25.5,-32.5 parent: 2 - - uid: 28730 + - uid: 28593 components: - type: Transform pos: -29.5,-36.5 parent: 2 - - uid: 28731 + - uid: 28594 components: - type: Transform pos: -15.5,-36.5 parent: 2 - - uid: 28732 + - uid: 28595 components: - type: Transform pos: -19.5,-36.5 parent: 2 - - uid: 28733 + - uid: 28596 components: - type: Transform pos: -8.5,-21.5 parent: 2 - - uid: 28734 + - uid: 28597 components: - type: Transform pos: -42.5,-51.5 parent: 2 - - uid: 28735 + - uid: 28598 components: - type: Transform pos: -46.5,26.5 parent: 2 - - uid: 28736 + - uid: 28599 components: - type: Transform pos: -50.5,23.5 parent: 2 - - uid: 28737 + - uid: 28600 components: - type: Transform pos: -61.5,-3.5 parent: 2 - - uid: 28738 + - uid: 28601 components: - type: Transform pos: 27.5,33.5 parent: 2 - - uid: 28739 + - uid: 28602 components: - type: Transform pos: -43.5,27.5 parent: 2 - - uid: 28740 + - uid: 28603 components: - type: Transform pos: -42.5,57.5 parent: 2 - - uid: 28741 + - uid: 28604 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-68.5 parent: 2 - - uid: 28742 + - uid: 28605 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 28743 + - uid: 28606 components: - type: Transform pos: 25.5,-42.5 parent: 2 - - uid: 28744 + - uid: 28607 components: - type: Transform pos: 78.5,-25.5 parent: 2 - - uid: 28745 + - uid: 28608 components: - type: Transform pos: -3.5,-60.5 parent: 2 - - uid: 28746 + - uid: 28609 components: - type: Transform pos: 37.5,19.5 parent: 2 - - uid: 28748 + - uid: 28610 components: - type: Transform pos: 14.5,-28.5 parent: 2 - - uid: 28749 + - uid: 28611 components: - type: Transform pos: -27.5,72.5 parent: 2 - - uid: 28750 + - uid: 28612 components: - type: Transform pos: -57.5,35.5 parent: 2 - - uid: 28751 + - uid: 28613 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 28752 + - uid: 28614 components: - type: Transform pos: -42.5,61.5 parent: 2 - - uid: 28753 + - uid: 28615 components: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 28754 + - uid: 28616 components: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 28755 + - uid: 28617 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 28756 + - uid: 28618 components: - type: Transform pos: 10.5,-28.5 parent: 2 - - uid: 28757 + - uid: 28619 components: - type: Transform pos: 19.5,-42.5 parent: 2 - - uid: 28758 + - uid: 28620 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 28759 + - uid: 28621 components: - type: Transform pos: 52.5,-7.5 parent: 2 - - uid: 28760 + - uid: 28622 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 28761 + - uid: 28623 components: - type: Transform pos: 28.5,7.5 parent: 2 - - uid: 28762 + - uid: 28624 components: - type: Transform pos: 19.5,-46.5 parent: 2 - - uid: 28763 + - uid: 28625 components: - type: Transform pos: 29.5,-64.5 parent: 2 - - uid: 28764 + - uid: 28626 components: - type: Transform pos: -57.5,-51.5 parent: 2 - - uid: 28765 + - uid: 28627 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-33.5 parent: 2 - - uid: 28766 + - uid: 28628 components: - type: Transform pos: -27.5,94.5 parent: 2 - - uid: 28767 + - uid: 28629 components: - type: Transform pos: 13.5,82.5 parent: 2 - - uid: 28768 + - uid: 28630 components: - type: Transform pos: -10.5,-35.5 parent: 2 - - uid: 28769 + - uid: 28631 components: - type: Transform pos: -26.5,79.5 parent: 2 - - uid: 28770 + - uid: 28632 components: - type: Transform pos: 64.5,-19.5 parent: 2 - - uid: 28771 + - uid: 28633 components: - type: Transform pos: 56.5,-41.5 parent: 2 - - uid: 28772 + - uid: 28634 components: - type: Transform pos: 83.5,-43.5 parent: 2 - - uid: 28773 + - uid: 28635 components: - type: Transform pos: 74.5,-12.5 parent: 2 - - uid: 28774 + - uid: 28636 components: - type: Transform pos: 33.5,21.5 parent: 2 - - uid: 28775 + - uid: 28637 components: - type: Transform pos: 42.5,16.5 parent: 2 - - uid: 28776 + - uid: 28638 components: - type: Transform pos: 36.5,3.5 parent: 2 - - uid: 28777 + - uid: 28639 components: - type: Transform pos: 29.5,55.5 parent: 2 - - uid: 28778 + - uid: 28640 components: - type: Transform pos: 25.5,62.5 parent: 2 - - uid: 28779 + - uid: 28641 components: - type: Transform pos: 8.5,40.5 parent: 2 - - uid: 28780 + - uid: 28642 components: - type: Transform pos: 55.5,-41.5 parent: 2 - - uid: 28781 + - uid: 28643 components: - type: Transform pos: 82.5,-47.5 parent: 2 - - uid: 28782 + - uid: 28644 components: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 28783 + - uid: 28645 components: - type: Transform pos: 81.5,-47.5 parent: 2 - - uid: 28784 + - uid: 28646 components: - type: Transform pos: 78.5,-12.5 parent: 2 - - uid: 28785 + - uid: 28647 components: - type: Transform pos: 17.5,88.5 parent: 2 - - uid: 28786 + - uid: 28648 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 28787 + - uid: 28649 components: - type: Transform pos: 16.5,88.5 parent: 2 - - uid: 28788 + - uid: 28650 components: - type: Transform pos: 12.5,90.5 parent: 2 - - uid: 28789 + - uid: 28651 components: - type: Transform pos: 18.5,88.5 parent: 2 - - uid: 28791 + - uid: 28652 components: - type: Transform pos: 44.5,22.5 parent: 2 - - uid: 28792 + - uid: 28653 components: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 28793 + - uid: 28654 components: - type: Transform pos: 78.5,-20.5 parent: 2 - - uid: 28794 + - uid: 28655 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-62.5 parent: 2 - - uid: 28795 + - uid: 28656 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 28796 + - uid: 28657 components: - type: Transform pos: 38.5,9.5 parent: 2 - - uid: 28797 + - uid: 28658 components: - type: Transform pos: 57.5,-41.5 parent: 2 - - uid: 28798 + - uid: 28659 components: - type: Transform pos: 22.5,60.5 parent: 2 - - uid: 28799 + - uid: 28660 components: - type: Transform pos: 13.5,81.5 parent: 2 - - uid: 28800 + - uid: 28661 components: - type: Transform pos: -6.5,-62.5 parent: 2 - - uid: 28801 + - uid: 28662 components: - type: Transform pos: 27.5,-25.5 parent: 2 - - uid: 28802 + - uid: 28663 components: - type: Transform pos: 30.5,55.5 parent: 2 - - uid: 28803 + - uid: 28664 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 28804 + - uid: 28665 components: - type: Transform pos: -35.5,22.5 parent: 2 - - uid: 28805 + - uid: 28666 components: - type: Transform pos: 4.5,88.5 parent: 2 - - uid: 28806 + - uid: 28667 components: - type: Transform pos: 18.5,29.5 parent: 2 - - uid: 28807 + - uid: 28668 components: - type: Transform pos: 22.5,-56.5 parent: 2 - - uid: 28808 + - uid: 28669 components: - type: Transform pos: 42.5,24.5 parent: 2 - - uid: 28809 + - uid: 28670 components: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 28810 + - uid: 28671 components: - type: Transform pos: 57.5,-45.5 parent: 2 - - uid: 28811 + - uid: 28672 components: - type: Transform pos: 57.5,-44.5 parent: 2 - - uid: 28812 + - uid: 28673 components: - type: Transform pos: -43.5,28.5 parent: 2 - - uid: 28813 + - uid: 28674 components: - type: Transform pos: 6.5,92.5 parent: 2 - - uid: 28814 + - uid: 28675 components: - type: Transform pos: -51.5,32.5 parent: 2 - - uid: 28815 + - uid: 28676 components: - type: Transform pos: 15.5,-40.5 parent: 2 - - uid: 28816 + - uid: 28677 components: - type: Transform pos: 7.5,-21.5 parent: 2 - - uid: 28817 + - uid: 28678 components: - type: Transform pos: 57.5,-42.5 parent: 2 - - uid: 28818 + - uid: 28679 components: - type: Transform pos: 71.5,-12.5 parent: 2 - - uid: 28819 + - uid: 28680 components: - type: Transform pos: -58.5,16.5 parent: 2 - - uid: 28820 + - uid: 28681 components: - type: Transform pos: 8.5,44.5 parent: 2 - - uid: 28821 + - uid: 28682 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 28822 + - uid: 28683 components: - type: Transform pos: 72.5,-35.5 parent: 2 - - uid: 28823 + - uid: 28684 components: - type: Transform pos: 46.5,14.5 parent: 2 - - uid: 28824 + - uid: 28685 components: - type: Transform pos: 24.5,70.5 parent: 2 - - uid: 28825 + - uid: 28686 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 28826 + - uid: 28687 components: - type: Transform pos: -24.5,-80.5 parent: 2 - - uid: 28827 + - uid: 28688 components: - type: Transform pos: 17.5,86.5 parent: 2 - - uid: 28828 + - uid: 28689 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 28829 + - uid: 28690 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 28830 + - uid: 28691 components: - type: Transform pos: -48.5,-25.5 parent: 2 - - uid: 28831 + - uid: 28692 components: - type: Transform pos: -48.5,-26.5 parent: 2 - - uid: 28832 + - uid: 28693 components: - type: Transform pos: -48.5,-28.5 parent: 2 - - uid: 28833 + - uid: 28694 components: - type: Transform pos: 11.5,41.5 parent: 2 - - uid: 28834 + - uid: 28695 components: - type: Transform pos: -17.5,70.5 parent: 2 - - uid: 28835 + - uid: 28696 components: - type: Transform pos: 44.5,-59.5 parent: 2 - - uid: 28836 + - uid: 28697 components: - type: Transform pos: 44.5,-64.5 parent: 2 - - uid: 28837 + - uid: 28698 components: - type: Transform pos: 33.5,-68.5 parent: 2 - - uid: 28838 + - uid: 28699 components: - type: Transform pos: 9.5,21.5 parent: 2 - - uid: 28839 + - uid: 28700 components: - type: Transform pos: -3.5,-35.5 parent: 2 - - uid: 28840 + - uid: 28701 components: - type: Transform pos: 39.5,-58.5 parent: 2 - - uid: 28841 + - uid: 28702 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 28842 + - uid: 28703 components: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 28843 + - uid: 28704 components: - type: Transform pos: 32.5,-59.5 parent: 2 - - uid: 28844 + - uid: 28705 components: - type: Transform pos: 32.5,-61.5 parent: 2 - - uid: 28845 + - uid: 28706 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 28846 + - uid: 28707 components: - type: Transform pos: 28.5,-70.5 parent: 2 - - uid: 28847 + - uid: 28708 components: - type: Transform pos: 29.5,-70.5 parent: 2 - - uid: 28848 + - uid: 28709 components: - type: Transform pos: 33.5,-66.5 parent: 2 - - uid: 28849 + - uid: 28710 components: - type: Transform pos: 13.5,21.5 parent: 2 - - uid: 28850 + - uid: 28711 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 28851 + - uid: 28712 components: - type: Transform pos: -60.5,47.5 parent: 2 - - uid: 28852 + - uid: 28713 components: - type: Transform pos: -60.5,49.5 parent: 2 - - uid: 28853 + - uid: 28714 components: - type: Transform pos: -60.5,51.5 parent: 2 - - uid: 28854 + - uid: 28715 components: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 28855 + - uid: 28716 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 28856 + - uid: 28717 components: - type: Transform pos: 11.5,60.5 parent: 2 - - uid: 28857 + - uid: 28718 components: - type: Transform pos: -50.5,-16.5 parent: 2 - - uid: 28858 + - uid: 28719 components: - type: Transform pos: -14.5,-21.5 parent: 2 - - uid: 28859 + - uid: 28720 components: - type: Transform pos: -42.5,-24.5 parent: 2 - - uid: 28860 + - uid: 28721 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,57.5 parent: 2 - - uid: 28861 + - uid: 28722 components: - type: Transform pos: 26.5,20.5 parent: 2 - - uid: 28862 + - uid: 28723 components: - type: Transform pos: -75.5,17.5 parent: 2 - - uid: 28863 + - uid: 28724 components: - type: Transform pos: -47.5,-0.5 parent: 2 - - uid: 28864 + - uid: 28725 components: - type: Transform pos: 3.5,82.5 parent: 2 - - uid: 28865 + - uid: 28726 components: - type: Transform pos: 25.5,39.5 parent: 2 - - uid: 28866 + - uid: 28727 components: - type: Transform pos: -68.5,7.5 parent: 2 - - uid: 28867 + - uid: 28728 components: - type: Transform pos: -55.5,39.5 parent: 2 - - uid: 28868 + - uid: 28729 components: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 28869 + - uid: 28730 components: - type: Transform pos: 39.5,2.5 parent: 2 - - uid: 28870 + - uid: 28731 components: - type: Transform pos: -56.5,4.5 parent: 2 - - uid: 28871 + - uid: 28732 components: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 28872 + - uid: 28733 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 28873 + - uid: 28734 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-2.5 parent: 2 - - uid: 28874 + - uid: 28735 components: - type: Transform pos: -79.5,11.5 parent: 2 - - uid: 28875 + - uid: 28736 components: - type: Transform pos: 58.5,-42.5 parent: 2 - - uid: 28876 + - uid: 28737 components: - type: Transform pos: 23.5,58.5 parent: 2 - - uid: 28877 + - uid: 28738 components: - type: Transform pos: -74.5,17.5 parent: 2 - - uid: 28878 + - uid: 28739 components: - type: Transform pos: -50.5,-13.5 parent: 2 - - uid: 28879 + - uid: 28740 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-42.5 parent: 2 - - uid: 28880 + - uid: 28741 components: - type: Transform pos: 81.5,-41.5 parent: 2 - - uid: 28881 + - uid: 28742 components: - type: Transform pos: -50.5,22.5 parent: 2 - - uid: 28882 + - uid: 28743 components: - type: Transform pos: 74.5,-27.5 parent: 2 - - uid: 28883 + - uid: 28744 components: - type: Transform pos: 82.5,11.5 parent: 2 - - uid: 28884 + - uid: 28745 components: - type: Transform pos: 81.5,11.5 parent: 2 - - uid: 28885 + - uid: 28746 components: - type: Transform pos: 8.5,39.5 parent: 2 - - uid: 28886 + - uid: 28747 components: - type: Transform pos: 9.5,41.5 parent: 2 - - uid: 28887 + - uid: 28748 components: - type: Transform pos: 16.5,89.5 parent: 2 - - uid: 28888 + - uid: 28749 components: - type: Transform pos: 76.5,-12.5 parent: 2 - - uid: 28889 + - uid: 28750 components: - type: Transform pos: 79.5,-41.5 parent: 2 - - uid: 28890 + - uid: 28751 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 28891 + - uid: 28752 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 28892 + - uid: 28753 components: - type: Transform pos: 1.5,-85.5 parent: 2 - - uid: 28893 + - uid: 28754 components: - type: Transform pos: -11.5,-48.5 parent: 2 - - uid: 28894 + - uid: 28755 components: - type: Transform pos: -4.5,-83.5 parent: 2 - - uid: 28895 + - uid: 28756 components: - type: Transform pos: -4.5,-84.5 parent: 2 - - uid: 28896 + - uid: 28757 components: - type: Transform pos: -4.5,-85.5 parent: 2 - - uid: 28897 + - uid: 28758 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 28898 + - uid: 28759 components: - type: Transform pos: -6.5,-84.5 parent: 2 - - uid: 28899 + - uid: 28760 components: - type: Transform pos: -6.5,-85.5 parent: 2 - - uid: 28900 + - uid: 28761 components: - type: Transform pos: -2.5,-83.5 parent: 2 - - uid: 28901 + - uid: 28762 components: - type: Transform pos: -2.5,-84.5 parent: 2 - - uid: 28902 + - uid: 28763 components: - type: Transform pos: -2.5,-85.5 parent: 2 - - uid: 28903 + - uid: 28764 components: - type: Transform pos: -1.5,-84.5 parent: 2 - - uid: 28904 + - uid: 28765 components: - type: Transform pos: -0.5,-84.5 parent: 2 - - uid: 28905 + - uid: 28766 components: - type: Transform pos: 0.5,-84.5 parent: 2 - - uid: 28906 + - uid: 28767 components: - type: Transform pos: -3.5,70.5 parent: 2 - - uid: 28907 + - uid: 28768 components: - type: Transform pos: -0.5,70.5 parent: 2 - - uid: 28908 + - uid: 28769 components: - type: Transform pos: 0.5,70.5 parent: 2 - - uid: 28909 + - uid: 28770 components: - type: Transform pos: -44.5,8.5 parent: 2 - - uid: 28910 + - uid: 28771 components: - type: Transform pos: -61.5,-7.5 parent: 2 - - uid: 28911 + - uid: 28772 components: - type: Transform pos: -61.5,-5.5 parent: 2 - - uid: 28912 + - uid: 28773 components: - type: Transform pos: 79.5,-47.5 parent: 2 - - uid: 28913 + - uid: 28774 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-42.5 parent: 2 - - uid: 28914 + - uid: 28775 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-42.5 parent: 2 - - uid: 28915 + - uid: 28776 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-35.5 parent: 2 - - uid: 28967 + - uid: 28777 components: - type: Transform pos: 82.5,-23.5 parent: 2 - - uid: 28986 + - uid: 28778 components: - type: Transform pos: 85.5,15.5 parent: 2 - - uid: 28987 + - uid: 28779 components: - type: Transform pos: 86.5,15.5 parent: 2 - - uid: 28988 + - uid: 28780 components: - type: Transform pos: 90.5,17.5 parent: 2 - - uid: 28989 + - uid: 28781 components: - type: Transform pos: 90.5,18.5 parent: 2 - - uid: 28990 + - uid: 28782 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,13.5 parent: 2 - - uid: 28991 + - uid: 28783 components: - type: Transform pos: -67.5,30.5 parent: 2 - - uid: 28992 + - uid: 28784 components: - type: Transform pos: -71.5,-42.5 parent: 2 - - uid: 28993 + - uid: 28785 components: - type: Transform pos: -67.5,37.5 parent: 2 - - uid: 28994 + - uid: 28786 components: - type: Transform pos: 79.5,-0.5 parent: 2 - - uid: 28995 + - uid: 28787 components: - type: Transform pos: -70.5,-43.5 parent: 2 - - uid: 28996 + - uid: 28788 components: - type: Transform pos: -72.5,-40.5 parent: 2 - - uid: 28997 + - uid: 28789 components: - type: Transform pos: -67.5,36.5 parent: 2 - - uid: 28998 + - uid: 28790 components: - type: Transform pos: -70.5,-45.5 parent: 2 - - uid: 28999 + - uid: 28791 components: - type: Transform pos: -67.5,34.5 parent: 2 - - uid: 29000 + - uid: 28792 components: - type: Transform pos: -67.5,52.5 parent: 2 - - uid: 29001 + - uid: 28793 components: - type: Transform pos: -67.5,40.5 parent: 2 - - uid: 29002 + - uid: 28794 components: - type: Transform pos: -67.5,33.5 parent: 2 - - uid: 29003 + - uid: 28795 components: - type: Transform pos: -67.5,44.5 parent: 2 - - uid: 29004 + - uid: 28796 components: - type: Transform pos: -67.5,32.5 parent: 2 - - uid: 29005 + - uid: 28797 components: - type: Transform pos: -67.5,29.5 parent: 2 - - uid: 29006 + - uid: 28798 components: - type: Transform pos: -67.5,28.5 parent: 2 - - uid: 29007 + - uid: 28799 components: - type: Transform pos: -67.5,23.5 parent: 2 - - uid: 29008 + - uid: 28800 components: - type: Transform pos: -67.5,22.5 parent: 2 - - uid: 29009 + - uid: 28801 components: - type: Transform pos: -67.5,24.5 parent: 2 - - uid: 29010 + - uid: 28802 components: - type: Transform pos: -64.5,39.5 parent: 2 - - uid: 29011 + - uid: 28803 components: - type: Transform pos: -66.5,39.5 parent: 2 - - uid: 29012 + - uid: 28804 components: - type: Transform pos: -65.5,39.5 parent: 2 - - uid: 29013 + - uid: 28805 components: - type: Transform pos: -60.5,39.5 parent: 2 - - uid: 29014 + - uid: 28806 components: - type: Transform pos: 75.5,14.5 parent: 2 - - uid: 29015 + - uid: 28807 components: - type: Transform pos: 32.5,13.5 parent: 2 - - uid: 29016 + - uid: 28808 components: - type: Transform pos: -70.5,-44.5 parent: 2 - - uid: 29017 + - uid: 28809 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,2.5 parent: 2 - - uid: 29018 + - uid: 28810 components: - type: Transform pos: 80.5,-0.5 parent: 2 - - uid: 29019 + - uid: 28811 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,0.5 parent: 2 - - uid: 29020 + - uid: 28812 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,12.5 parent: 2 - - uid: 29021 + - uid: 28813 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,13.5 parent: 2 - - uid: 29022 + - uid: 28814 components: - type: Transform pos: 57.5,33.5 parent: 2 - - uid: 29023 + - uid: 28815 components: - type: Transform pos: 62.5,31.5 parent: 2 - - uid: 29024 + - uid: 28816 components: - type: Transform pos: 48.5,30.5 parent: 2 - - uid: 29025 + - uid: 28817 components: - type: Transform pos: 52.5,33.5 parent: 2 - - uid: 29026 + - uid: 28818 components: - type: Transform pos: 37.5,36.5 parent: 2 - - uid: 29027 + - uid: 28819 components: - type: Transform pos: 37.5,37.5 parent: 2 - - uid: 29028 + - uid: 28820 components: - type: Transform pos: 63.5,31.5 parent: 2 - - uid: 29029 + - uid: 28821 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-4.5 parent: 2 - - uid: 29030 + - uid: 28822 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 39658 + - uid: 39485 components: - type: Transform pos: -16.5,7.5 - parent: 38584 - - uid: 39659 + parent: 38411 + - uid: 39486 components: - type: Transform pos: -16.5,3.5 - parent: 38584 - - uid: 39660 + parent: 38411 + - uid: 39487 components: - type: Transform pos: 2.5,4.5 - parent: 38584 - - uid: 39661 + parent: 38411 + - uid: 39488 components: - type: Transform pos: -19.5,3.5 - parent: 38584 - - uid: 39662 + parent: 38411 + - uid: 39489 components: - type: Transform pos: 2.5,0.5 - parent: 38584 - - uid: 39663 + parent: 38411 + - uid: 39490 components: - type: Transform pos: -19.5,7.5 - parent: 38584 - - uid: 39664 + parent: 38411 + - uid: 39491 components: - type: Transform pos: -22.5,7.5 - parent: 38584 - - uid: 39665 + parent: 38411 + - uid: 39492 components: - type: Transform pos: -22.5,3.5 - parent: 38584 - - uid: 39666 + parent: 38411 + - uid: 39493 components: - type: Transform pos: 2.5,2.5 - parent: 38584 + parent: 38411 - proto: RemoteSignaller entities: - - uid: 29031 + - uid: 28823 components: - type: Transform pos: 4.2665925,17.572363 parent: 2 - type: Physics canCollide: False - - uid: 29032 + - uid: 28824 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.654764,-46.826454 parent: 2 - - uid: 29033 + - uid: 28825 components: - type: Transform pos: -29.074722,-47.399815 parent: 2 - - uid: 29034 + - uid: 28826 components: - type: Transform pos: -29.269024,-47.335896 parent: 2 - - uid: 29035 + - uid: 28827 components: - type: Transform pos: -26.325718,-44.254265 parent: 2 - proto: ResearchAndDevelopmentServer entities: - - uid: 29036 + - uid: 28828 components: - type: Transform pos: -19.5,-53.5 parent: 2 - proto: Retractor entities: - - uid: 29037 + - uid: 28829 components: - type: Transform pos: 34.481625,-52.525356 parent: 2 - type: Physics canCollide: False - - uid: 29038 + - uid: 28830 components: - type: Transform pos: 32.606625,-46.306606 @@ -219389,182 +219467,182 @@ entities: canCollide: False - proto: RevolverCapGun entities: - - uid: 29039 + - uid: 28831 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.316975,-32.407238 parent: 2 - - uid: 29040 + - uid: 28832 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.6451,-32.469738 parent: 2 - - uid: 29041 + - uid: 28833 components: - type: Transform pos: 63.422493,-25.025986 parent: 2 - proto: RiotShield entities: - - uid: 29042 + - uid: 28834 components: - type: Transform pos: 71.730034,-4.411479 parent: 2 - - uid: 29043 + - uid: 28835 components: - type: Transform pos: 71.51738,-4.5708656 parent: 2 - - uid: 29044 + - uid: 28836 components: - type: Transform pos: 71.30472,-4.411479 parent: 2 - proto: RipleyLLeg entities: - - uid: 29045 + - uid: 28837 components: - type: Transform pos: 6.2382493,45.321095 parent: 2 - proto: RitualDagger entities: - - uid: 29046 + - uid: 28838 components: - type: Transform pos: -32.479275,-77.35582 parent: 2 - proto: RockGuitarInstrument entities: - - uid: 29047 + - uid: 28839 components: - type: Transform pos: -8.51535,28.534096 parent: 2 - proto: RollerBed entities: - - uid: 29048 + - uid: 28840 components: - type: Transform pos: 10.537059,-44.266212 parent: 2 - - uid: 29049 + - uid: 28841 components: - type: Transform pos: 12.465898,-40.386826 parent: 2 - - uid: 29050 + - uid: 28842 components: - type: Transform pos: 13.481434,-40.38545 parent: 2 - - uid: 29051 + - uid: 28843 components: - type: Transform pos: 3.5143418,-42.36247 parent: 2 - - uid: 29052 + - uid: 28844 components: - type: Transform pos: 60.490154,-2.4327555 parent: 2 - - uid: 29053 + - uid: 28845 components: - type: Transform pos: 70.469666,14.589865 parent: 2 - - uid: 29054 + - uid: 28846 components: - type: Transform pos: 10.507141,-45.24613 parent: 2 - proto: RubberStampApproved entities: - - uid: 29055 + - uid: 28847 components: - type: Transform pos: -12.316359,5.70477 parent: 2 - type: Physics canCollide: False - - uid: 29056 + - uid: 28848 components: - type: Transform pos: 20.247395,39.6103 parent: 2 - type: Physics canCollide: False - - uid: 29057 + - uid: 28849 components: - type: Transform pos: 34.291264,-0.77321684 parent: 2 - proto: RubberStampDenied entities: - - uid: 29058 + - uid: 28850 components: - type: Transform pos: -12.57951,5.7410216 parent: 2 - - uid: 29059 + - uid: 28851 components: - type: Transform pos: 20.247395,39.4228 parent: 2 - type: Physics canCollide: False - - uid: 29060 + - uid: 28852 components: - type: Transform pos: 34.54203,-0.81746423 parent: 2 - proto: SalvageCanisterSpawner entities: - - uid: 29061 + - uid: 28853 components: - type: Transform pos: -9.5,-54.5 parent: 2 - - uid: 29062 + - uid: 28854 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 29063 + - uid: 28855 components: - type: Transform pos: -36.5,43.5 parent: 2 - proto: SalvageHumanCorpseSpawner entities: - - uid: 29064 + - uid: 28856 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-35.5 parent: 2 - - uid: 29065 + - uid: 28857 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-34.5 parent: 2 - - uid: 41034 + - uid: 28858 components: - type: Transform pos: -73.5,-31.5 parent: 2 - - uid: 41035 + - uid: 28859 components: - type: Transform pos: -71.5,-23.5 parent: 2 - proto: SalvageMagnet entities: - - uid: 29066 + - uid: 28860 components: - type: Transform rot: 1.5707963267948966 rad @@ -219572,19 +219650,19 @@ entities: parent: 2 - proto: Saw entities: - - uid: 29067 + - uid: 28861 components: - type: Transform pos: -3.547987,-52.47366 parent: 2 - - uid: 29068 + - uid: 28862 components: - type: Transform pos: 48.360306,-35.411346 parent: 2 - proto: SawElectric entities: - - uid: 29069 + - uid: 28863 components: - type: Transform pos: 32.606625,-52.525356 @@ -219593,21 +219671,21 @@ entities: canCollide: False - proto: SaxophoneInstrument entities: - - uid: 29070 + - uid: 28864 components: - type: Transform pos: 47.52265,-53.668365 parent: 2 - proto: Scalpel entities: - - uid: 29071 + - uid: 28865 components: - type: Transform pos: 32.575375,-52.244106 parent: 2 - type: Physics canCollide: False - - uid: 29072 + - uid: 28866 components: - type: Transform rot: 0.00042098568519577384 rad @@ -219615,272 +219693,272 @@ entities: parent: 2 - type: Physics canCollide: False - - uid: 29073 + - uid: 28867 components: - type: Transform pos: -3.4022403,-52.248302 parent: 2 - - uid: 29074 + - uid: 28868 components: - type: Transform pos: 7.5100083,-49.5816 parent: 2 - - uid: 29075 + - uid: 28869 components: - type: Transform pos: 7.485925,-49.268597 parent: 2 - - uid: 29076 + - uid: 28870 components: - type: Transform pos: 3.4711235,-44.77761 parent: 2 - proto: ScalpelLaser entities: - - uid: 29077 + - uid: 28871 components: - type: Transform pos: 49.458958,-44.049076 parent: 2 - proto: ScalpelShiv entities: - - uid: 26060 + - uid: 25908 components: - type: Transform - parent: 26059 + parent: 25907 - type: Physics canCollide: False - proto: Screen entities: - - uid: 29078 + - uid: 28872 components: - type: Transform pos: -6.5,-82.5 parent: 2 - - uid: 29079 + - uid: 28873 components: - type: Transform pos: 1.5,-82.5 parent: 2 - - uid: 29080 + - uid: 28874 components: - type: Transform pos: -1.5,-66.5 parent: 2 - - uid: 29081 + - uid: 28875 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 29082 + - uid: 28876 components: - type: Transform pos: 2.5,-6.5 parent: 2 - - uid: 29083 + - uid: 28877 components: - type: Transform pos: 14.5,21.5 parent: 2 - - uid: 29084 + - uid: 28878 components: - type: Transform pos: 24.5,7.5 parent: 2 - - uid: 29085 + - uid: 28879 components: - type: Transform pos: 15.5,-10.5 parent: 2 - - uid: 29086 + - uid: 28880 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 29087 + - uid: 28881 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 29088 + - uid: 28882 components: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 29089 + - uid: 28883 components: - type: Transform pos: -20.5,25.5 parent: 2 - - uid: 29090 + - uid: 28884 components: - type: Transform pos: -24.5,45.5 parent: 2 - - uid: 29091 + - uid: 28885 components: - type: Transform pos: 0.5,59.5 parent: 2 - - uid: 29092 + - uid: 28886 components: - type: Transform pos: -21.5,56.5 parent: 2 - proto: Screwdriver entities: - - uid: 29093 + - uid: 28887 components: - type: Transform rot: 3.141592653589793 rad pos: -33.514565,-61.153294 parent: 2 - - uid: 29094 + - uid: 28888 components: - type: Transform rot: 3.141592653589793 rad pos: -6.3283224,-39.523468 parent: 2 - - uid: 29095 + - uid: 28889 components: - type: Transform pos: -43.499428,-48.582058 parent: 2 - - uid: 29096 + - uid: 28890 components: - type: Transform pos: 50.500298,5.5841293 parent: 2 - type: Physics canCollide: False - - uid: 29097 + - uid: 28891 components: - type: Transform pos: 2.4575934,-31.30756 parent: 2 - type: Physics canCollide: False - - uid: 29098 + - uid: 28892 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.44178,21.588465 parent: 2 - - uid: 29099 + - uid: 28893 components: - type: Transform rot: 3.141593671850739 rad pos: 9.661092,72.76665 parent: 2 - - uid: 39667 + - uid: 39494 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5896,0.44470215 - parent: 38584 + parent: 38411 - proto: SecurityTechFab entities: - - uid: 29100 + - uid: 28894 components: - type: Transform pos: 51.5,3.5 parent: 2 - proto: SeedExtractor entities: - - uid: 29101 + - uid: 28895 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 29102 + - uid: 28896 components: - type: Transform pos: -27.5,52.5 parent: 2 - - uid: 29103 + - uid: 28897 components: - type: Transform pos: -40.5,35.5 parent: 2 - - uid: 39668 + - uid: 39495 components: - type: Transform pos: -21.5,-3.5 - parent: 38584 + parent: 38411 - proto: ShardGlass entities: - - uid: 9976 + - uid: 28898 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.844826,-22.4828 parent: 2 - - uid: 9980 + - uid: 28899 components: - type: Transform pos: -62.313576,-25.5453 parent: 2 - - uid: 12858 + - uid: 28900 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.11045,-26.029676 parent: 2 - - uid: 29104 + - uid: 28901 components: - type: Transform rot: 1.5707973450558423 rad pos: 60.479244,-41.30533 parent: 2 - - uid: 29105 + - uid: 28902 components: - type: Transform pos: -35.57051,-59.450092 parent: 2 - - uid: 29106 + - uid: 28903 components: - type: Transform rot: 3.141592653589793 rad pos: -26.777552,-22.366966 parent: 2 - - uid: 29107 + - uid: 28904 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.93237,-23.169579 parent: 2 - - uid: 29108 + - uid: 28905 components: - type: Transform pos: -25.92311,-29.102797 parent: 2 - - uid: 29109 + - uid: 28906 components: - type: Transform pos: 2.4845634,44.46363 parent: 2 - type: Physics canCollide: False - - uid: 29110 + - uid: 28907 components: - type: Transform pos: 0.5470634,47.46363 parent: 2 - type: Physics canCollide: False - - uid: 29111 + - uid: 28908 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.800411,-68.15144 parent: 2 - - uid: 29112 + - uid: 28909 components: - type: Transform rot: 3.141592653589793 rad pos: 35.220165,-67.21759 parent: 2 - - uid: 29113 + - uid: 28910 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -219888,72 +219966,72 @@ entities: parent: 2 - proto: ShardGlassPlasma entities: - - uid: 39669 + - uid: 39496 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.633086,19.539398 - parent: 38584 - - uid: 39670 + parent: 38411 + - uid: 39497 components: - type: Transform pos: 7.7922745,19.362396 - parent: 38584 + parent: 38411 - proto: ShardGlassReinforced entities: - - uid: 29114 + - uid: 28911 components: - type: Transform pos: -30.067194,-28.961529 parent: 2 - - uid: 29115 + - uid: 28912 components: - type: Transform pos: -29.817194,-29.910105 parent: 2 - - uid: 29116 + - uid: 28913 components: - type: Transform pos: -32.254696,-24.604336 parent: 2 - - uid: 29117 + - uid: 28914 components: - type: Transform pos: -32.67136,-24.312468 parent: 2 - - uid: 29118 + - uid: 28915 components: - type: Transform pos: -34.129696,-31.369452 parent: 2 - - uid: 29119 + - uid: 28916 components: - type: Transform pos: -38.556778,-25.261044 parent: 2 - - uid: 29120 + - uid: 28917 components: - type: Transform pos: -40.494278,-30.660627 parent: 2 - - uid: 29121 + - uid: 28918 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.93743,-73.582275 parent: 2 - - uid: 29122 + - uid: 28919 components: - type: Transform rot: 3.141592653589793 rad pos: 39.773544,-67.367836 parent: 2 - - uid: 29123 + - uid: 28920 components: - type: Transform pos: 39.27354,-67.75846 parent: 2 - - uid: 29124 + - uid: 28921 components: - type: Transform rot: -1.5707963267948966 rad @@ -219961,116 +220039,116 @@ entities: parent: 2 - proto: SheetGlass entities: - - uid: 29125 + - uid: 28922 components: - type: Transform pos: -45.459835,-16.570187 parent: 2 - - uid: 29126 + - uid: 28923 components: - type: Transform pos: -3.504601,-29.492645 parent: 2 - - uid: 39671 + - uid: 39498 components: - type: Transform pos: 9.700856,0.52041626 - parent: 38584 + parent: 38411 - proto: SheetGlass10 entities: - - uid: 14726 + - uid: 14667 components: - type: Transform - parent: 14725 + parent: 14666 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14732 + - uid: 14673 components: - type: Transform - parent: 14731 + parent: 14672 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15651 + - uid: 15634 components: - type: Transform - parent: 15650 + parent: 15633 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15653 + - uid: 15636 components: - type: Transform - parent: 15652 + parent: 15635 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29127 + - uid: 28924 components: - type: Transform pos: -25.449247,11.530908 parent: 2 - - uid: 29128 + - uid: 28925 components: - type: Transform pos: -28.510048,14.600449 parent: 2 - - uid: 29129 + - uid: 28926 components: - type: Transform pos: -28.452291,9.444831 parent: 2 - - uid: 29130 + - uid: 28927 components: - type: Transform pos: 21.5,8.5 parent: 2 - proto: SheetPlasma entities: - - uid: 29131 + - uid: 28928 components: - type: Transform pos: -19.5,-56.5 parent: 2 - - uid: 29132 + - uid: 28929 components: - type: Transform pos: -70.50429,10.487547 parent: 2 - proto: SheetPlasma1 entities: - - uid: 29133 + - uid: 28930 components: - type: Transform pos: 8.515777,-30.469122 parent: 2 - - uid: 29134 + - uid: 28931 components: - type: Transform pos: -31.487455,-41.879337 parent: 2 - proto: SheetPlasteel entities: - - uid: 29135 + - uid: 28932 components: - type: Transform pos: -32.5,11.5 parent: 2 - proto: SheetPlasteel1 entities: - - uid: 13982 + - uid: 28933 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.594574,-23.373238 parent: 2 - - uid: 29136 + - uid: 28934 components: - type: Transform pos: -25.61184,-29.536287 parent: 2 - - uid: 29137 + - uid: 28935 components: - type: Transform rot: -2.220446049250313E-16 rad @@ -220078,303 +220156,303 @@ entities: parent: 2 - proto: SheetPlasteel10 entities: - - uid: 29138 + - uid: 28936 components: - type: Transform pos: 10.818345,-3.4416718 parent: 2 - proto: SheetPlastic entities: - - uid: 29139 + - uid: 28937 components: - type: Transform pos: -45.459835,-16.463928 parent: 2 - - uid: 29140 + - uid: 28938 components: - type: Transform pos: -3.592601,-29.581203 parent: 2 - proto: SheetPlastic10 entities: - - uid: 14721 + - uid: 14662 components: - type: Transform - parent: 14720 + parent: 14661 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15654 + - uid: 15637 components: - type: Transform - parent: 15652 + parent: 15635 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29141 + - uid: 28939 components: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 29142 + - uid: 28940 components: - type: Transform pos: -25.393255,11.543351 parent: 2 - - uid: 29143 + - uid: 28941 components: - type: Transform pos: -28.495718,14.554519 parent: 2 - - uid: 29144 + - uid: 28942 components: - type: Transform pos: -77.47386,-19.460953 parent: 2 - - uid: 29145 + - uid: 28943 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 29146 + - uid: 28944 components: - type: Transform pos: 10.718415,70.38263 parent: 2 - proto: SheetRGlass entities: - - uid: 29147 + - uid: 28945 components: - type: Transform pos: -47.60266,29.432966 parent: 2 - - uid: 29148 + - uid: 28946 components: - type: Transform pos: -32.5,11.5 parent: 2 - proto: SheetSteel entities: - - uid: 14959 + - uid: 14900 components: - type: Transform - parent: 14956 + parent: 14897 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14963 + - uid: 14904 components: - type: Transform - parent: 14960 + parent: 14901 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14967 + - uid: 14908 components: - type: Transform - parent: 14964 + parent: 14905 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29149 + - uid: 28947 components: - type: Transform pos: -48.5,36.5 parent: 2 - - uid: 29150 + - uid: 28948 components: - type: Transform pos: -49.5,36.5 parent: 2 - - uid: 29151 + - uid: 28949 components: - type: Transform pos: -47.5,36.5 parent: 2 - - uid: 29152 + - uid: 28950 components: - type: Transform pos: 29.5,30.5 parent: 2 - - uid: 29153 + - uid: 28951 components: - type: Transform pos: 12.5,76.5 parent: 2 - - uid: 29154 + - uid: 28952 components: - type: Transform pos: -45.459835,-16.694153 parent: 2 - - uid: 29155 + - uid: 28953 components: - type: Transform pos: -3.4868789,-29.510355 parent: 2 - - uid: 29157 + - uid: 28954 components: - type: Transform pos: -29.5,58.5 parent: 2 - - uid: 39672 + - uid: 39499 components: - type: Transform pos: 9.482106,0.55166626 - parent: 38584 + parent: 38411 - proto: SheetSteel1 entities: - - uid: 15104 + - uid: 28955 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.844574,-22.732615 parent: 2 - - uid: 29158 + - uid: 28956 components: - type: Transform rot: 1.5707973450558423 rad pos: -70.49613,-41.486595 parent: 2 - - uid: 29159 + - uid: 28957 components: - type: Transform pos: -43.47599,-48.46487 parent: 2 - - uid: 29160 + - uid: 28958 components: - type: Transform pos: -31.496237,60.429638 parent: 2 - type: Physics canCollide: False - - uid: 29161 + - uid: 28959 components: - type: Transform pos: -31.496237,60.429638 parent: 2 - type: Physics canCollide: False - - uid: 29162 + - uid: 28960 components: - type: Transform rot: 3.141592653589793 rad pos: 36.567745,-64.77981 parent: 2 - - uid: 29163 + - uid: 28961 components: - type: Transform pos: 29.64587,-68.67043 parent: 2 - - uid: 29164 + - uid: 28962 components: - type: Transform pos: 40.13075,-66.49325 parent: 2 - - uid: 29165 + - uid: 28963 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.155964,-60.68074 parent: 2 - - uid: 29166 + - uid: 28964 components: - type: Transform pos: -31.496237,60.429638 parent: 2 - type: Physics canCollide: False - - uid: 29167 + - uid: 28965 components: - type: Transform pos: 21.5,69.5 parent: 2 - - uid: 29169 + - uid: 28967 components: - type: Transform - parent: 29168 + parent: 28966 - type: Physics canCollide: False - type: InsideEntityStorage - proto: SheetSteel10 entities: - - uid: 14708 + - uid: 14649 components: - type: Transform - parent: 14707 + parent: 14648 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14711 + - uid: 14652 components: - type: Transform - parent: 14710 + parent: 14651 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14714 + - uid: 14655 components: - type: Transform - parent: 14713 + parent: 14654 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14719 + - uid: 14660 components: - type: Transform - parent: 14718 + parent: 14659 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14740 + - uid: 14681 components: - type: Transform - parent: 14739 + parent: 14680 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15655 + - uid: 15638 components: - type: Transform - parent: 15652 + parent: 15635 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29170 + - uid: 28968 components: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 29171 + - uid: 28969 components: - type: Transform pos: -28.5,14.5 parent: 2 - - uid: 29172 + - uid: 28970 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 29173 + - uid: 28971 components: - type: Transform pos: -28.407343,9.355234 parent: 2 - - uid: 29174 + - uid: 28972 components: - type: Transform pos: 46.5,-55.5 parent: 2 - - uid: 29175 + - uid: 28973 components: - type: Transform pos: 54.5,-47.5 parent: 2 - proto: SheetUranium entities: - - uid: 15591 + - uid: 15574 components: - type: Transform - parent: 15590 + parent: 15573 - type: Stack count: 15 - type: Physics @@ -220382,28 +220460,28 @@ entities: - type: InsideEntityStorage - proto: SheetUranium1 entities: - - uid: 15592 + - uid: 15575 components: - type: Transform - parent: 15590 + parent: 15573 - type: Stack count: 15 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15593 + - uid: 15576 components: - type: Transform - parent: 15590 + parent: 15573 - type: Stack count: 15 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15594 + - uid: 15577 components: - type: Transform - parent: 15590 + parent: 15573 - type: Stack count: 15 - type: Physics @@ -220411,1078 +220489,1078 @@ entities: - type: InsideEntityStorage - proto: Shovel entities: - - uid: 29176 + - uid: 28974 components: - type: Transform pos: 20.5,26.5 parent: 2 - proto: ShowcaseRobot entities: - - uid: 29177 + - uid: 28975 components: - type: Transform pos: -25.5,2.5 parent: 2 - proto: ShowcaseRobotAntique entities: - - uid: 29178 + - uid: 28976 components: - type: Transform pos: 6.5,45.5 parent: 2 - proto: ShuttersNormal entities: - - uid: 29179 + - uid: 28977 components: - type: Transform pos: -37.5,-58.5 parent: 2 - - uid: 29180 + - uid: 28978 components: - type: Transform pos: 14.5,25.5 parent: 2 - - uid: 29181 + - uid: 28979 components: - type: Transform pos: 15.5,-3.5 parent: 2 - - uid: 29182 + - uid: 28980 components: - type: Transform pos: 11.5,-6.5 parent: 2 - - uid: 29183 + - uid: 28981 components: - type: Transform pos: 22.5,60.5 parent: 2 - - uid: 29184 + - uid: 28982 components: - type: Transform pos: 22.5,61.5 parent: 2 - - uid: 29185 + - uid: 28983 components: - type: Transform pos: 15.5,25.5 parent: 2 - - uid: 29186 + - uid: 28984 components: - type: Transform pos: 10.5,-6.5 parent: 2 - - uid: 29187 + - uid: 28985 components: - type: Transform pos: -56.5,4.5 parent: 2 - - uid: 29188 + - uid: 28986 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,8.5 parent: 2 - - uid: 29189 + - uid: 28987 components: - type: Transform pos: 12.5,-17.5 parent: 2 - - uid: 29190 + - uid: 28988 components: - type: Transform pos: 41.5,-68.5 parent: 2 - - uid: 29191 + - uid: 28989 components: - type: MetaData name: незаконченная химическая лаборатория - type: Transform pos: -38.5,55.5 parent: 2 - - uid: 29192 + - uid: 28990 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,9.5 parent: 2 - - uid: 29193 + - uid: 28991 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,8.5 parent: 2 - - uid: 29194 + - uid: 28992 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,11.5 parent: 2 - - uid: 29195 + - uid: 28993 components: - type: Transform pos: -57.5,4.5 parent: 2 - - uid: 29196 + - uid: 28994 components: - type: Transform pos: 14.5,-17.5 parent: 2 - - uid: 29197 + - uid: 28995 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-48.5 parent: 2 - - uid: 29198 + - uid: 28996 components: - type: Transform pos: 13.5,-17.5 parent: 2 - - uid: 29199 + - uid: 28997 components: - type: Transform pos: 1.5,55.5 parent: 2 - - uid: 29200 + - uid: 28998 components: - type: Transform pos: 2.5,55.5 parent: 2 - - uid: 29201 + - uid: 28999 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-36.5 parent: 2 - - uid: 29202 + - uid: 29000 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-36.5 parent: 2 - - uid: 29203 + - uid: 29001 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-36.5 parent: 2 - - uid: 29204 + - uid: 29002 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-40.5 parent: 2 - - uid: 29205 + - uid: 29003 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-37.5 parent: 2 - - uid: 29206 + - uid: 29004 components: - type: Transform pos: -19.5,-44.5 parent: 2 - - uid: 29207 + - uid: 29005 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 29208 + - uid: 29006 components: - type: Transform pos: 18.5,68.5 parent: 2 - - uid: 29209 + - uid: 29007 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,1.5 parent: 2 - - uid: 29210 + - uid: 29008 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,2.5 parent: 2 - - uid: 29211 + - uid: 29009 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,3.5 parent: 2 - - uid: 29212 + - uid: 29010 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,4.5 parent: 2 - - uid: 29213 + - uid: 29011 components: - type: Transform pos: 16.5,25.5 parent: 2 - - uid: 39673 + - uid: 39500 components: - type: Transform pos: -15.5,-8.5 - parent: 38584 - - uid: 39674 + parent: 38411 + - uid: 39501 components: - type: Transform pos: -14.5,-8.5 - parent: 38584 - - uid: 39675 + parent: 38411 + - uid: 39502 components: - type: Transform pos: -13.5,-8.5 - parent: 38584 - - uid: 39676 + parent: 38411 + - uid: 39503 components: - type: Transform pos: -12.5,-8.5 - parent: 38584 + parent: 38411 - proto: ShuttersNormalOpen entities: - - uid: 29214 + - uid: 29012 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 29215 + - uid: 29013 components: - type: Transform pos: 11.5,60.5 parent: 2 - - uid: 29216 + - uid: 29014 components: - type: Transform pos: 22.5,68.5 parent: 2 - - uid: 29217 + - uid: 29015 components: - type: Transform pos: 11.5,59.5 parent: 2 - - uid: 29218 + - uid: 29016 components: - type: Transform pos: -6.5,66.5 parent: 2 - - uid: 29219 + - uid: 29017 components: - type: Transform pos: 19.5,68.5 parent: 2 - - uid: 29220 + - uid: 29018 components: - type: Transform pos: 21.5,68.5 parent: 2 - - uid: 29221 + - uid: 29019 components: - type: Transform pos: 0.5,-62.5 parent: 2 - - uid: 29222 + - uid: 29020 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 29223 + - uid: 29021 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-37.5 parent: 2 - - uid: 29224 + - uid: 29022 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-38.5 parent: 2 - - uid: 29225 + - uid: 29023 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,36.5 parent: 2 - - uid: 29226 + - uid: 29024 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 29227 + - uid: 29025 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-0.5 parent: 2 - - uid: 29228 + - uid: 29026 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,1.5 parent: 2 - - uid: 29229 + - uid: 29027 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-36.5 parent: 2 - - uid: 29230 + - uid: 29028 components: - type: Transform pos: 37.5,7.5 parent: 2 - - uid: 29231 + - uid: 29029 components: - type: Transform pos: -16.5,9.5 parent: 2 - - uid: 29232 + - uid: 29030 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 29233 + - uid: 29031 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-36.5 parent: 2 - - uid: 29234 + - uid: 29032 components: - type: Transform pos: -16.5,-0.5 parent: 2 - - uid: 29235 + - uid: 29033 components: - type: Transform pos: -16.5,4.5 parent: 2 - - uid: 29236 + - uid: 29034 components: - type: Transform pos: -16.5,8.5 parent: 2 - - uid: 29237 + - uid: 29035 components: - type: Transform pos: 36.5,3.5 parent: 2 - - uid: 29238 + - uid: 29036 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 29239 + - uid: 29037 components: - type: Transform pos: 24.5,39.5 parent: 2 - - uid: 29240 + - uid: 29038 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 29241 + - uid: 29039 components: - type: Transform pos: 14.5,50.5 parent: 2 - - uid: 29242 + - uid: 29040 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 29243 + - uid: 29041 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 29244 + - uid: 29042 components: - type: Transform pos: 25.5,-42.5 parent: 2 - - uid: 29245 + - uid: 29043 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,35.5 parent: 2 - - uid: 29246 + - uid: 29044 components: - type: Transform pos: 25.5,-44.5 parent: 2 - - uid: 29247 + - uid: 29045 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,37.5 parent: 2 - - uid: 29248 + - uid: 29046 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 29249 + - uid: 29047 components: - type: Transform pos: -10.5,-34.5 parent: 2 - - uid: 29250 + - uid: 29048 components: - type: Transform pos: 40.5,24.5 parent: 2 - - uid: 29251 + - uid: 29049 components: - type: Transform pos: 19.5,-44.5 parent: 2 - - uid: 29252 + - uid: 29050 components: - type: Transform pos: -10.5,-33.5 parent: 2 - - uid: 29253 + - uid: 29051 components: - type: Transform pos: 23.5,38.5 parent: 2 - - uid: 29254 + - uid: 29052 components: - type: Transform pos: 14.5,49.5 parent: 2 - - uid: 29255 + - uid: 29053 components: - type: Transform pos: 23.5,35.5 parent: 2 - - uid: 29256 + - uid: 29054 components: - type: Transform pos: 25.5,39.5 parent: 2 - - uid: 29257 + - uid: 29055 components: - type: Transform pos: 23.5,34.5 parent: 2 - - uid: 29258 + - uid: 29056 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,43.5 parent: 2 - - uid: 29259 + - uid: 29057 components: - type: Transform pos: 13.5,29.5 parent: 2 - - uid: 29260 + - uid: 29058 components: - type: Transform pos: 14.5,31.5 parent: 2 - - uid: 29261 + - uid: 29059 components: - type: Transform pos: 2.5,-34.5 parent: 2 - - uid: 29262 + - uid: 29060 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,41.5 parent: 2 - - uid: 29263 + - uid: 29061 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 29264 + - uid: 29062 components: - type: Transform pos: 27.5,33.5 parent: 2 - - uid: 29265 + - uid: 29063 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 29266 + - uid: 29064 components: - type: Transform pos: -4.5,66.5 parent: 2 - - uid: 29267 + - uid: 29065 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,42.5 parent: 2 - - uid: 29268 + - uid: 29066 components: - type: Transform pos: 24.5,33.5 parent: 2 - - uid: 29269 + - uid: 29067 components: - type: Transform pos: -17.5,66.5 parent: 2 - - uid: 29270 + - uid: 29068 components: - type: Transform pos: -16.5,66.5 parent: 2 - - uid: 29271 + - uid: 29069 components: - type: Transform pos: -3.5,66.5 parent: 2 - - uid: 29272 + - uid: 29070 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 29273 + - uid: 29071 components: - type: Transform pos: -28.5,38.5 parent: 2 - - uid: 29274 + - uid: 29072 components: - type: Transform pos: -27.5,34.5 parent: 2 - - uid: 29275 + - uid: 29073 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 29276 + - uid: 29074 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 29277 + - uid: 29075 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 29278 + - uid: 29076 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 29279 + - uid: 29077 components: - type: Transform pos: -2.5,-31.5 parent: 2 - - uid: 29280 + - uid: 29078 components: - type: Transform pos: -10.5,-35.5 parent: 2 - - uid: 29281 + - uid: 29079 components: - type: Transform pos: -1.5,-62.5 parent: 2 - - uid: 29282 + - uid: 29080 components: - type: Transform pos: 39.5,10.5 parent: 2 - - uid: 29283 + - uid: 29081 components: - type: Transform pos: 23.5,37.5 parent: 2 - - uid: 29284 + - uid: 29082 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 29285 + - uid: 29083 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-4.5 parent: 2 - - uid: 29286 + - uid: 29084 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-5.5 parent: 2 - - uid: 29287 + - uid: 29085 components: - type: Transform pos: -18.5,66.5 parent: 2 - - uid: 29288 + - uid: 29086 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-3.5 parent: 2 - - uid: 29289 + - uid: 29087 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-2.5 parent: 2 - - uid: 29290 + - uid: 29088 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-0.5 parent: 2 - - uid: 29291 + - uid: 29089 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,0.5 parent: 2 - - uid: 29292 + - uid: 29090 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,1.5 parent: 2 - - uid: 29293 + - uid: 29091 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,2.5 parent: 2 - - uid: 29294 + - uid: 29092 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 - - uid: 29295 + - uid: 29093 components: - type: Transform pos: -2.5,66.5 parent: 2 - - uid: 29296 + - uid: 29094 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 29297 + - uid: 29095 components: - type: Transform pos: 15.5,-45.5 parent: 2 - - uid: 29298 + - uid: 29096 components: - type: Transform pos: 15.5,-46.5 parent: 2 - - uid: 29299 + - uid: 29097 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 29300 + - uid: 29098 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 29301 + - uid: 29099 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 29302 + - uid: 29100 components: - type: Transform pos: -19.5,66.5 parent: 2 - - uid: 29303 + - uid: 29101 components: - type: Transform pos: 19.5,-46.5 parent: 2 - - uid: 29304 + - uid: 29102 components: - type: Transform pos: 19.5,-42.5 parent: 2 - - uid: 29305 + - uid: 29103 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,19.5 parent: 2 - - uid: 29306 + - uid: 29104 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,22.5 parent: 2 - - uid: 29307 + - uid: 29105 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,21.5 parent: 2 - - uid: 29308 + - uid: 29106 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,18.5 parent: 2 - - uid: 29309 + - uid: 29107 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,24.5 parent: 2 - - uid: 29310 + - uid: 29108 components: - type: Transform pos: -16.5,-82.5 parent: 2 - - uid: 29311 + - uid: 29109 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 29312 + - uid: 29110 components: - type: Transform pos: -22.5,-82.5 parent: 2 - - uid: 29313 + - uid: 29111 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 29314 + - uid: 29112 components: - type: Transform pos: -13.5,-82.5 parent: 2 - - uid: 29315 + - uid: 29113 components: - type: Transform pos: -27.5,38.5 parent: 2 - - uid: 29316 + - uid: 29114 components: - type: Transform pos: -27.5,37.5 parent: 2 - - uid: 29317 + - uid: 29115 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 29318 + - uid: 29116 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,21.5 parent: 2 - - uid: 29319 + - uid: 29117 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,20.5 parent: 2 - - uid: 29320 + - uid: 29118 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,19.5 parent: 2 - - uid: 29321 + - uid: 29119 components: - type: Transform pos: 42.5,24.5 parent: 2 - - uid: 29322 + - uid: 29120 components: - type: Transform pos: -0.5,-62.5 parent: 2 - - uid: 29323 + - uid: 29121 components: - type: Transform pos: 25.5,-46.5 parent: 2 - - uid: 29324 + - uid: 29122 components: - type: Transform pos: -27.5,36.5 parent: 2 - - uid: 29325 + - uid: 29123 components: - type: Transform pos: -27.5,35.5 parent: 2 - - uid: 29326 + - uid: 29124 components: - type: Transform pos: -27.5,33.5 parent: 2 - - uid: 29327 + - uid: 29125 components: - type: Transform pos: -27.5,32.5 parent: 2 - - uid: 29328 + - uid: 29126 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 29329 + - uid: 29127 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-80.5 parent: 2 - - uid: 29330 + - uid: 29128 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 29331 + - uid: 29129 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,16.5 parent: 2 - - uid: 29332 + - uid: 29130 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 29333 + - uid: 29131 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 29334 + - uid: 29132 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,16.5 parent: 2 - - uid: 29335 + - uid: 29133 components: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 29336 + - uid: 29134 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,16.5 parent: 2 - - uid: 29337 + - uid: 29135 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,19.5 parent: 2 - - uid: 29338 + - uid: 29136 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,20.5 parent: 2 - - uid: 29339 + - uid: 29137 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,20.5 parent: 2 - - uid: 29340 + - uid: 29138 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,21.5 parent: 2 - - uid: 29341 + - uid: 29139 components: - type: Transform pos: -15.5,-82.5 parent: 2 - - uid: 29342 + - uid: 29140 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,21.5 parent: 2 - - uid: 29343 + - uid: 29141 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-51.5 parent: 2 - - uid: 29344 + - uid: 29142 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 29345 + - uid: 29143 components: - type: Transform pos: 23.5,-41.5 parent: 2 - - uid: 29346 + - uid: 29144 components: - type: Transform pos: -3.5,-35.5 parent: 2 - - uid: 29347 + - uid: 29145 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 29348 + - uid: 29146 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-52.5 parent: 2 - - uid: 29349 + - uid: 29147 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-42.5 parent: 2 - - uid: 29350 + - uid: 29148 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 29351 + - uid: 29149 components: - type: Transform pos: -5.5,66.5 parent: 2 - - uid: 29352 + - uid: 29150 components: - type: Transform pos: -20.5,66.5 parent: 2 - - uid: 29353 + - uid: 29151 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 29354 + - uid: 29152 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 29355 + - uid: 29153 components: - type: Transform pos: 39.5,2.5 parent: 2 - - uid: 29356 + - uid: 29154 components: - type: Transform pos: 45.5,1.5 parent: 2 - - uid: 29357 + - uid: 29155 components: - type: Transform pos: 11.5,31.5 parent: 2 - - uid: 29358 + - uid: 29156 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-50.5 parent: 2 - - uid: 29359 + - uid: 29157 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-48.5 parent: 2 - - uid: 29360 + - uid: 29158 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-47.5 parent: 2 - - uid: 29361 + - uid: 29159 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 - - uid: 29362 + - uid: 29160 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-45.5 parent: 2 - - uid: 29363 + - uid: 29161 components: - type: Transform pos: 61.5,-1.5 parent: 2 - - uid: 29364 + - uid: 29162 components: - type: Transform pos: 60.5,-1.5 parent: 2 - - uid: 29365 + - uid: 29163 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-6.5 parent: 2 - - uid: 29366 + - uid: 29164 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-6.5 parent: 2 - - uid: 29367 + - uid: 29165 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-36.5 parent: 2 - - uid: 29368 + - uid: 29166 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-45.5 parent: 2 - - uid: 29369 + - uid: 29167 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-45.5 parent: 2 - - uid: 29370 + - uid: 29168 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-45.5 parent: 2 - - uid: 29371 + - uid: 29169 components: - type: Transform rot: 3.141592653589793 rad @@ -221490,116 +221568,116 @@ entities: parent: 2 - proto: ShuttersRadiation entities: - - uid: 29372 + - uid: 29170 components: - type: Transform pos: -71.5,-4.5 parent: 2 - - uid: 29373 + - uid: 29171 components: - type: Transform pos: -69.5,-4.5 parent: 2 - - uid: 29374 + - uid: 29172 components: - type: Transform pos: -67.5,-4.5 parent: 2 - proto: ShuttersRadiationOpen entities: - - uid: 29375 + - uid: 29173 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 29376 + - uid: 29174 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,49.5 parent: 2 - - uid: 29377 + - uid: 29175 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,51.5 parent: 2 - - uid: 29378 + - uid: 29176 components: - type: Transform pos: -48.5,43.5 parent: 2 - - uid: 29379 + - uid: 29177 components: - type: Transform pos: -46.5,43.5 parent: 2 - - uid: 29380 + - uid: 29178 components: - type: Transform pos: -49.5,43.5 parent: 2 - - uid: 29381 + - uid: 29179 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,7.5 parent: 2 - - uid: 29382 + - uid: 29180 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,47.5 parent: 2 - - uid: 29383 + - uid: 29181 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,5.5 parent: 2 - - uid: 29384 + - uid: 29182 components: - type: Transform pos: -56.5,43.5 parent: 2 - - uid: 29385 + - uid: 29183 components: - type: Transform pos: -54.5,43.5 parent: 2 - - uid: 29386 + - uid: 29184 components: - type: Transform pos: -52.5,43.5 parent: 2 - - uid: 29387 + - uid: 29185 components: - type: Transform pos: -73.5,9.5 parent: 2 - - uid: 29388 + - uid: 29186 components: - type: Transform pos: -72.5,9.5 parent: 2 - - uid: 29389 + - uid: 29187 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 29390 + - uid: 29188 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,7.5 parent: 2 - - uid: 29391 + - uid: 29189 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,5.5 parent: 2 - - uid: 29392 + - uid: 29190 components: - type: Transform rot: -1.5707963267948966 rad @@ -221607,99 +221685,99 @@ entities: parent: 2 - proto: ShuttersWindow entities: - - uid: 29393 + - uid: 29191 components: - type: Transform pos: -21.5,-16.5 parent: 2 - - uid: 29394 + - uid: 29192 components: - type: Transform pos: -21.5,-15.5 parent: 2 - proto: ShuttersWindowOpen entities: - - uid: 29395 + - uid: 29193 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 29396 + - uid: 29194 components: - type: Transform pos: 45.5,13.5 parent: 2 - proto: ShuttleGunPerforatorCircuitboard entities: - - uid: 39677 + - uid: 39504 components: - type: Transform pos: 10.5,22.5 - parent: 38584 + parent: 38411 - proto: ShuttleWindow entities: - - uid: 38542 + - uid: 38369 components: - type: Transform pos: 2.5,4.5 - parent: 38484 - - uid: 38543 + parent: 38311 + - uid: 38370 components: - type: Transform pos: 1.5,5.5 - parent: 38484 - - uid: 38544 + parent: 38311 + - uid: 38371 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,3.5 - parent: 38484 - - uid: 38545 + parent: 38311 + - uid: 38372 components: - type: Transform pos: 2.5,5.5 - parent: 38484 - - uid: 38546 + parent: 38311 + - uid: 38373 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 - parent: 38484 - - uid: 38547 + parent: 38311 + - uid: 38374 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,2.5 - parent: 38484 - - uid: 38548 + parent: 38311 + - uid: 38375 components: - type: Transform pos: 0.5,5.5 - parent: 38484 - - uid: 38549 + parent: 38311 + - uid: 38376 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,4.5 - parent: 38484 - - uid: 38550 + parent: 38311 + - uid: 38377 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 - parent: 38484 + parent: 38311 - proto: SignalButton entities: - - uid: 29397 + - uid: 29195 components: - type: Transform pos: 14.5,-2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29181: + 28979: - Pressed: Toggle - - uid: 29398 + - uid: 29196 components: - type: Transform rot: 3.141592653589793 rad @@ -221707,9 +221785,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29355: + 29153: - Pressed: Toggle - - uid: 29399 + - uid: 29197 components: - type: Transform rot: -1.5707963267948966 rad @@ -221717,13 +221795,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29213: + 29011: - Pressed: Toggle - 29185: + 28983: - Pressed: Toggle - 29180: + 28978: - Pressed: Toggle - - uid: 29400 + - uid: 29198 components: - type: Transform rot: -1.5707953085339508 rad @@ -221731,11 +221809,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1544: + 1549: - Pressed: Toggle - 1545: + 1550: - Pressed: Close - - uid: 29401 + - uid: 29199 components: - type: Transform rot: 1.5707963267948966 rad @@ -221743,11 +221821,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1541: + 1546: - Pressed: Toggle - 1542: + 1547: - Pressed: Toggle - - uid: 29402 + - uid: 29200 components: - type: Transform rot: -1.5707963267948966 rad @@ -221755,11 +221833,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29393: + 29191: - Pressed: Toggle - 29394: + 29192: - Pressed: Toggle - - uid: 29403 + - uid: 29201 components: - type: Transform rot: 1.5707963267948966 rad @@ -221767,11 +221845,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29186: + 28984: - Pressed: Toggle - 29182: + 28980: - Pressed: Toggle - - uid: 29404 + - uid: 29202 components: - type: MetaData name: аварийные гермозатворы тюремного крыла @@ -221780,13 +221858,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1577: + 1582: - Pressed: Toggle - 1550: + 1555: - Pressed: Toggle - 1551: + 1556: - Pressed: Toggle - - uid: 29405 + - uid: 29203 components: - type: Transform rot: 3.141592653589793 rad @@ -221794,13 +221872,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1536: + 1541: - Pressed: Toggle - 1537: + 1542: - Pressed: Toggle - 1535: + 1540: - Pressed: Toggle - - uid: 29406 + - uid: 29204 components: - type: Transform rot: 1.5707963267948966 rad @@ -221808,11 +221886,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29347: + 29145: - Pressed: Toggle - 29240: + 29038: - Pressed: Toggle - - uid: 29407 + - uid: 29205 components: - type: MetaData name: Window Shutters @@ -221822,11 +221900,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29350: + 29148: - Pressed: Toggle - 29263: + 29061: - Pressed: Toggle - - uid: 29408 + - uid: 29206 components: - type: Transform rot: 3.141592653589793 rad @@ -221834,25 +221912,25 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29246: + 29044: - Pressed: Toggle - 29323: + 29121: - Pressed: Toggle - 29244: + 29042: - Pressed: Toggle - 29345: + 29143: - Pressed: Toggle - 29243: + 29041: - Pressed: Toggle - 29300: + 29098: - Pressed: Toggle - 29304: + 29102: - Pressed: Toggle - 29251: + 29049: - Pressed: Toggle - 29303: + 29101: - Pressed: Toggle - - uid: 29409 + - uid: 29207 components: - type: MetaData name: аварийные гермозатворы брига @@ -221861,19 +221939,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1563: + 1568: - Pressed: Toggle - 1573: + 1578: - Pressed: Toggle - 1562: + 1567: - Pressed: Toggle - 1576: + 1581: - Pressed: Toggle - 1572: + 1577: - Pressed: Toggle - 1561: + 1566: - Pressed: Toggle - - uid: 29410 + - uid: 29208 components: - type: Transform rot: 3.141592653589793 rad @@ -221881,15 +221959,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1558: + 1563: - Pressed: Toggle - 1560: + 1565: - Pressed: Toggle - 1559: + 1564: - Pressed: Toggle - 1552: + 1557: - Pressed: Toggle - - uid: 29411 + - uid: 29209 components: - type: Transform rot: 1.5707963267948966 rad @@ -221897,9 +221975,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1556: + 1561: - Pressed: Toggle - - uid: 29412 + - uid: 29210 components: - type: Transform rot: -1.5707963267948966 rad @@ -221907,31 +221985,31 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29354: + 29152: - Pressed: Toggle - 29346: + 29144: - Pressed: Toggle - 29353: + 29151: - Pressed: Toggle - 29279: + 29077: - Pressed: Toggle - 29272: + 29070: - Pressed: Toggle - 29284: + 29082: - Pressed: Toggle - 29299: + 29097: - Pressed: Toggle - 29344: + 29142: - Pressed: Toggle - 29242: + 29040: - Pressed: Toggle - 29252: + 29050: - Pressed: Toggle - 29280: + 29078: - Pressed: Toggle - 29249: + 29047: - Pressed: Toggle - - uid: 29413 + - uid: 29211 components: - type: Transform rot: 3.141592653589793 rad @@ -221939,15 +222017,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1570: + 1575: - Pressed: Toggle - 1566: + 1571: - Pressed: Toggle - 1575: + 1580: - Pressed: Toggle - 1555: + 1560: - Pressed: Toggle - - uid: 29414 + - uid: 29212 components: - type: Transform rot: -1.5707963267948966 rad @@ -221955,20 +222033,20 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 38016: + 37854: - Pressed: Toggle - - uid: 29415 + - uid: 29213 components: - type: Transform pos: -60.5,12.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29194: + 28992: - Pressed: Toggle - 29192: + 28990: - Pressed: Toggle - - uid: 29416 + - uid: 29214 components: - type: Transform rot: -1.5707963267948966 rad @@ -221976,19 +222054,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29361: + 29159: - Pressed: Toggle - 29360: + 29158: - Pressed: Toggle - 29359: + 29157: - Pressed: Toggle - 29358: + 29156: - Pressed: Toggle - 29343: + 29141: - Pressed: Toggle - 29348: + 29146: - Pressed: Toggle - - uid: 29417 + - uid: 29215 components: - type: Transform rot: -1.5707963267948966 rad @@ -221996,17 +222074,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29371: + 29169: - Pressed: Toggle - 29370: + 29168: - Pressed: Toggle - 29369: + 29167: - Pressed: Toggle - 29368: + 29166: - Pressed: Toggle - 29362: + 29160: - Pressed: Toggle - - uid: 29418 + - uid: 29216 components: - type: Transform rot: -1.5707963267948966 rad @@ -222014,17 +222092,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29295: + 29093: - Pressed: Toggle - 29271: + 29069: - Pressed: Toggle - 29266: + 29064: - Pressed: Toggle - 29351: + 29149: - Pressed: Toggle - 29218: + 29016: - Pressed: Toggle - - uid: 29419 + - uid: 29217 components: - type: Transform rot: 3.141592653589793 rad @@ -222032,15 +222110,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1571: + 1576: - Pressed: Toggle - 1568: + 1573: - Pressed: Toggle - 1567: + 1572: - Pressed: Toggle - 1553: + 1558: - Pressed: Toggle - - uid: 29420 + - uid: 29218 components: - type: Transform rot: 1.5707963267948966 rad @@ -222048,22 +222126,22 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29234: + 29032: - Pressed: Toggle - - uid: 29421 + - uid: 29219 components: - type: Transform pos: -20.5,-44.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29206: + 29004: - Pressed: Toggle - 29207: + 29005: - Pressed: Toggle - 29197: + 28995: - Pressed: Toggle - - uid: 29422 + - uid: 29220 components: - type: Transform rot: 1.5707963267948966 rad @@ -222071,13 +222149,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29265: + 29063: - Pressed: Toggle - 29317: + 29115: - Pressed: Toggle - 29248: + 29046: - Pressed: Toggle - - uid: 29423 + - uid: 29221 components: - type: Transform rot: 1.5707963267948966 rad @@ -222085,31 +222163,31 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29235: + 29033: - Pressed: Toggle - - uid: 29424 + - uid: 29222 components: - type: Transform pos: -72.5,-4.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1510: + 1515: - Pressed: Toggle - 1520: + 1525: - Pressed: Toggle - 1526: + 1531: - Pressed: Toggle - - uid: 29425 + - uid: 29223 components: - type: Transform pos: -34.5,-25.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1565: + 1570: - Pressed: Toggle - - uid: 29426 + - uid: 29224 components: - type: Transform rot: 1.5707963267948966 rad @@ -222117,13 +222195,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29392: + 29190: - Pressed: Toggle - 29381: + 29179: - Pressed: Toggle - 29391: + 29189: - Pressed: Toggle - - uid: 29427 + - uid: 29225 components: - type: Transform rot: 3.141592653589793 rad @@ -222131,16 +222209,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1554: + 1559: - Pressed: Toggle - - uid: 29428 + - uid: 29226 components: - type: MetaData name: R&D Shutters - type: Transform pos: -4.665589,-36.21264 parent: 2 - - uid: 29429 + - uid: 29227 components: - type: Transform rot: -1.5707963267948966 rad @@ -222148,26 +222226,26 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29270: + 29068: - Pressed: Toggle - 29269: + 29067: - Pressed: Toggle - 29287: + 29085: - Pressed: Toggle - 29302: + 29100: - Pressed: Toggle - 29352: + 29150: - Pressed: Toggle - - uid: 29430 + - uid: 29228 components: - type: Transform pos: -38.5,-25.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1574: + 1579: - Pressed: Toggle - - uid: 29431 + - uid: 29229 components: - type: Transform rot: -1.5707963267948966 rad @@ -222175,37 +222253,37 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29187: + 28985: - Pressed: Toggle - 29195: + 28993: - Pressed: Toggle - 29193: + 28991: - Pressed: Toggle - 29188: + 28986: - Pressed: Toggle - - uid: 29432 + - uid: 29230 components: - type: Transform pos: -42.5,-25.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1564: + 1569: - Pressed: Toggle - - uid: 29433 + - uid: 29231 components: - type: Transform pos: 35.881416,10.445328 parent: 2 - type: DeviceLinkSource linkedPorts: - 29226: + 29024: - Pressed: Toggle - 29222: + 29020: - Pressed: Toggle - 29230: + 29028: - Pressed: Toggle - - uid: 29434 + - uid: 29232 components: - type: Transform rot: 1.5707963267948966 rad @@ -222213,18 +222291,18 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29189: + 28987: - Pressed: Toggle - 29198: + 28996: - Pressed: Toggle - 29196: + 28994: - Pressed: Toggle - - uid: 29435 + - uid: 29233 components: - type: Transform pos: -4.353089,-36.21264 parent: 2 - - uid: 29436 + - uid: 29234 components: - type: Transform rot: 3.141592653589793 rad @@ -222232,22 +222310,22 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1557: + 1562: - Pressed: Toggle - - uid: 29437 + - uid: 29235 components: - type: Transform pos: 37.198734,10.464645 parent: 2 - type: DeviceLinkSource linkedPorts: - 1573: + 1578: - Pressed: Toggle - 1576: + 1581: - Pressed: Toggle - 1561: + 1566: - Pressed: Toggle - - uid: 29438 + - uid: 29236 components: - type: Transform rot: 1.5707963267948966 rad @@ -222255,9 +222333,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29396: + 29194: - Pressed: Toggle - - uid: 29439 + - uid: 29237 components: - type: Transform rot: 1.5707963267948966 rad @@ -222265,9 +222343,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29395: + 29193: - Pressed: Toggle - - uid: 29440 + - uid: 29238 components: - type: Transform rot: 1.5707963267948966 rad @@ -222275,18 +222353,18 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29356: + 29154: - Pressed: Toggle - - uid: 29441 + - uid: 29239 components: - type: Transform pos: -37.5,55.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29191: + 28989: - Pressed: Toggle - - uid: 29442 + - uid: 29240 components: - type: Transform rot: -1.5707963267948966 rad @@ -222294,13 +222372,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1538: - - Pressed: Toggle - 1511: + 1543: - Pressed: Toggle 1516: - Pressed: Toggle - - uid: 29443 + 1521: + - Pressed: Toggle + - uid: 29241 components: - type: Transform rot: 3.141592653589793 rad @@ -222308,9 +222386,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1569: + 1574: - Pressed: Toggle - - uid: 29444 + - uid: 29242 components: - type: Transform rot: 3.141592653589793 rad @@ -222318,21 +222396,21 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29349: + 29147: - Pressed: Toggle - 29224: + 29022: - Pressed: Toggle - 29223: + 29021: - Pressed: Toggle - 29367: + 29165: - Pressed: Toggle - 29229: + 29027: - Pressed: Toggle - 29233: + 29031: - Pressed: Toggle - 29294: + 29092: - Pressed: Toggle - - uid: 29445 + - uid: 29243 components: - type: Transform rot: 1.5707963267948966 rad @@ -222340,29 +222418,29 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29247: + 29045: - Pressed: Toggle - 29225: + 29023: - Pressed: Toggle - 29245: + 29043: - Pressed: Toggle - 29264: + 29062: - Pressed: Toggle - 29268: + 29066: - Pressed: Toggle - 29257: + 29055: - Pressed: Toggle - 29255: + 29053: - Pressed: Toggle - 29283: + 29081: - Pressed: Toggle - 29253: + 29051: - Pressed: Toggle - 29239: + 29037: - Pressed: Toggle - 29256: + 29054: - Pressed: Toggle - - uid: 29446 + - uid: 29244 components: - type: Transform rot: 1.5707963267948966 rad @@ -222370,11 +222448,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29254: + 29052: - Pressed: Toggle - 29241: + 29039: - Pressed: Toggle - - uid: 29447 + - uid: 29245 components: - type: Transform rot: 1.5707963267948966 rad @@ -222382,32 +222460,32 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29199: + 28997: - Pressed: Toggle - 29200: + 28998: - Pressed: Toggle - - uid: 29448 + - uid: 29246 components: - type: Transform pos: -31.5,38.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29273: + 29071: - Pressed: Toggle - 29315: + 29113: - Pressed: Toggle - 29316: + 29114: - Pressed: Toggle - 29324: + 29122: - Pressed: Toggle - 29274: + 29072: - Pressed: Toggle - 29326: + 29124: - Pressed: Toggle - 29327: + 29125: - Pressed: Toggle - - uid: 29449 + - uid: 29247 components: - type: Transform rot: 3.141592653589793 rad @@ -222415,13 +222493,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1534: + 1539: - Pressed: Toggle - 1521: + 1526: - Pressed: Toggle - 1525: + 1530: - Pressed: Toggle - - uid: 29450 + - uid: 29248 components: - type: Transform rot: -1.5707963267948966 rad @@ -222429,11 +222507,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29241: + 29039: - Pressed: Toggle - 29254: + 29052: - Pressed: Toggle - - uid: 29451 + - uid: 29249 components: - type: Transform rot: -1.5707963267948966 rad @@ -222441,13 +222519,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1524: + 1529: - Pressed: Toggle - 1522: + 1527: - Pressed: Toggle - 1523: + 1528: - Pressed: Toggle - - uid: 29452 + - uid: 29250 components: - type: Transform rot: 1.5707963267948966 rad @@ -222455,15 +222533,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29277: + 29075: - Pressed: Toggle - 29301: + 29099: - Pressed: Toggle - 29328: + 29126: - Pressed: Toggle - 29332: + 29130: - Pressed: Toggle - - uid: 29453 + - uid: 29251 components: - type: Transform rot: 1.5707963267948966 rad @@ -222471,17 +222549,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29278: + 29076: - Pressed: Toggle - 29261: + 29059: - Pressed: Toggle - 29333: + 29131: - Pressed: Toggle - 29276: + 29074: - Pressed: Toggle - 29275: + 29073: - Pressed: Toggle - - uid: 29454 + - uid: 29252 components: - type: Transform rot: -1.5707963267948966 rad @@ -222489,9 +222567,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 38017: + 37855: - Pressed: Toggle - - uid: 29455 + - uid: 29253 components: - type: Transform rot: 1.5707963267948966 rad @@ -222499,13 +222577,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29221: + 29019: - Pressed: Toggle - 29322: + 29120: - Pressed: Toggle - 29281: + 29079: - Pressed: Toggle - - uid: 29456 + - uid: 29254 components: - type: Transform rot: 1.5707963267948966 rad @@ -222513,11 +222591,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29238: + 29036: - Pressed: Toggle - 29237: + 29035: - Pressed: Toggle - - uid: 29457 + - uid: 29255 components: - type: Transform rot: 1.5707963267948966 rad @@ -222525,15 +222603,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29363: + 29161: - Pressed: Toggle - 29364: + 29162: - Pressed: Toggle - 29365: + 29163: - Pressed: Toggle - 29366: + 29164: - Pressed: Toggle - - uid: 29458 + - uid: 29256 components: - type: Transform rot: 1.5707963267948966 rad @@ -222541,24 +222619,24 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1539: + 1544: - Pressed: Toggle - 1540: + 1545: - Pressed: Toggle - - uid: 29459 + - uid: 29257 components: - type: Transform pos: 37.43311,10.48027 parent: 2 - type: DeviceLinkSource linkedPorts: - 1563: + 1568: - Pressed: Toggle - 1562: + 1567: - Pressed: Toggle - 1572: + 1577: - Pressed: Toggle - - uid: 29460 + - uid: 29258 components: - type: Transform rot: 3.141592653589793 rad @@ -222566,13 +222644,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29296: + 29094: - Pressed: Toggle - 29297: + 29095: - Pressed: Toggle - 29298: + 29096: - Pressed: Toggle - - uid: 29461 + - uid: 29259 components: - type: Transform rot: 3.141592653589793 rad @@ -222580,13 +222658,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29236: + 29034: - Pressed: Toggle - 29231: + 29029: - Pressed: Toggle - 29232: + 29030: - Pressed: Toggle - - uid: 29462 + - uid: 29260 components: - type: Transform rot: 1.5707963267948966 rad @@ -222594,19 +222672,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29390: + 29188: - Pressed: Toggle - 29383: + 29181: - Pressed: Toggle - 29387: + 29185: - Pressed: Toggle - 29388: + 29186: - Pressed: Toggle - 29389: + 29187: - Pressed: Toggle - 29375: + 29173: - Pressed: Toggle - - uid: 29463 + - uid: 29261 components: - type: Transform rot: 1.5707973450558423 rad @@ -222614,9 +222692,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27204: + 27048: - Pressed: Toggle - - uid: 29464 + - uid: 29262 components: - type: Transform rot: 1.5707973450558423 rad @@ -222624,9 +222702,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27206: + 27050: - Pressed: Toggle - - uid: 29465 + - uid: 29263 components: - type: Transform rot: 1.5707973450558423 rad @@ -222634,9 +222712,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27205: + 27049: - Pressed: Toggle - - uid: 29466 + - uid: 29264 components: - type: Transform rot: -1.5707953085339508 rad @@ -222644,15 +222722,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29209: + 29007: - Pressed: Toggle - 29210: + 29008: - Pressed: Toggle - 29211: + 29009: - Pressed: Toggle - 29212: + 29010: - Pressed: Toggle - - uid: 29467 + - uid: 29265 components: - type: Transform rot: -1.5707963267948966 rad @@ -222660,9 +222738,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29282: + 29080: - Pressed: Toggle - - uid: 29468 + - uid: 29266 components: - type: Transform rot: 1.5707963267948966 rad @@ -222670,9 +222748,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27215: + 27059: - Pressed: Toggle - - uid: 29469 + - uid: 29267 components: - type: Transform rot: -1.5707963267948966 rad @@ -222680,9 +222758,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27216: + 27060: - Pressed: Toggle - - uid: 29470 + - uid: 29268 components: - type: Transform pos: -23.5,62.5 @@ -222691,7 +222769,7 @@ entities: linkedPorts: 150: - Pressed: DoorBolt - - uid: 29471 + - uid: 29269 components: - type: Transform pos: -23.5,64.5 @@ -222700,7 +222778,7 @@ entities: linkedPorts: 141: - Pressed: DoorBolt - - uid: 29472 + - uid: 29270 components: - type: Transform pos: -23.5,60.5 @@ -222709,13 +222787,13 @@ entities: linkedPorts: 148: - Pressed: DoorBolt - - uid: 29473 + - uid: 29271 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 - - uid: 29474 + - uid: 29272 components: - type: Transform rot: -1.5707963267948966 rad @@ -222725,7 +222803,7 @@ entities: linkedPorts: 140: - Pressed: DoorBolt - - uid: 29475 + - uid: 29273 components: - type: Transform rot: -1.5707963267948966 rad @@ -222737,7 +222815,7 @@ entities: - Pressed: DoorBolt 168: - Pressed: DoorBolt - - uid: 29476 + - uid: 29274 components: - type: Transform rot: 1.5707963267948966 rad @@ -222747,7 +222825,7 @@ entities: linkedPorts: 155: - Pressed: DoorBolt - - uid: 29477 + - uid: 29275 components: - type: Transform rot: 1.5707963267948966 rad @@ -222757,7 +222835,7 @@ entities: linkedPorts: 136: - Pressed: DoorBolt - - uid: 29478 + - uid: 29276 components: - type: Transform rot: 1.5707963267948966 rad @@ -222767,7 +222845,7 @@ entities: linkedPorts: 161: - Pressed: DoorBolt - - uid: 29479 + - uid: 29277 components: - type: Transform rot: 1.5707963267948966 rad @@ -222777,24 +222855,24 @@ entities: linkedPorts: 156: - Pressed: DoorBolt - - uid: 39678 + - uid: 39505 components: - type: Transform pos: -14.5,-0.5 - parent: 38584 + parent: 38411 - type: DeviceLinkSource linkedPorts: - 39673: + 39500: - Pressed: Toggle - 39674: + 39501: - Pressed: Toggle - 39675: + 39502: - Pressed: Toggle - 39676: + 39503: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 29480 + - uid: 29278 components: - type: Transform rot: -1.5707963267948966 rad @@ -222802,47 +222880,47 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1528: + 1533: - Pressed: Toggle - 1530: + 1535: - Pressed: Toggle - - uid: 29481 + - uid: 29279 components: - type: Transform pos: -64.5,-4.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29374: + 29172: - Pressed: Toggle - 29373: + 29171: - Pressed: Toggle - 29372: + 29170: - Pressed: Toggle - - uid: 29482 + - uid: 29280 components: - type: Transform pos: 30.127745,-0.26775646 parent: 2 - type: DeviceLinkSource linkedPorts: - 29286: + 29084: - Pressed: Toggle - 29285: + 29083: - Pressed: Toggle - 29289: + 29087: - Pressed: Toggle - 29290: + 29088: - Pressed: Toggle - 29291: + 29089: - Pressed: Toggle - 29292: + 29090: - Pressed: Toggle - 29293: + 29091: - Pressed: Toggle - 29288: + 29086: - Pressed: Toggle - - uid: 29483 + - uid: 29281 components: - type: Transform rot: -1.5707963267948966 rad @@ -222850,11 +222928,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1529: + 1534: - Pressed: Toggle - 1527: + 1532: - Pressed: Toggle - - uid: 29484 + - uid: 29282 components: - type: Transform rot: 1.5707963267948966 rad @@ -222862,22 +222940,22 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1531: + 1536: - Pressed: Toggle - 1517: + 1522: - Pressed: Toggle - 1532: + 1537: - Pressed: Toggle - - uid: 29485 + - uid: 29283 components: - type: Transform pos: 8.5,-21.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 24851: + 24710: - Pressed: Toggle - - uid: 29486 + - uid: 29284 components: - type: Transform rot: 1.5707963267948966 rad @@ -222885,13 +222963,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29258: + 29056: - Pressed: Toggle - 29267: + 29065: - Pressed: Toggle - 29262: + 29060: - Pressed: Toggle - - uid: 29487 + - uid: 29285 components: - type: Transform rot: 1.5707963267948966 rad @@ -222899,13 +222977,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1533: + 1538: - Pressed: Toggle - 1509: + 1514: - Pressed: Toggle - 1518: + 1523: - Pressed: Toggle - - uid: 29488 + - uid: 29286 components: - type: Transform rot: -1.5707963267948966 rad @@ -222913,9 +222991,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24849: + 24708: - Pressed: Toggle - - uid: 29489 + - uid: 29287 components: - type: Transform rot: 1.5707963267948966 rad @@ -222923,9 +223001,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24850: + 24709: - Pressed: Toggle - - uid: 29490 + - uid: 29288 components: - type: Transform rot: 3.141592653589793 rad @@ -222933,15 +223011,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29310: + 29108: - Pressed: Toggle - 29341: + 29139: - Pressed: Toggle - 29313: + 29111: - Pressed: Toggle - 29314: + 29112: - Pressed: Toggle - - uid: 29491 + - uid: 29289 components: - type: Transform rot: 3.141592653589793 rad @@ -222949,26 +223027,26 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29312: + 29110: - Pressed: Toggle - 29330: + 29128: - Pressed: Toggle - 29311: + 29109: - Pressed: Toggle - 29329: + 29127: - Pressed: Toggle - - uid: 29492 + - uid: 29290 components: - type: Transform pos: -78.5,2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29228: + 29026: - Pressed: Toggle - 29227: + 29025: - Pressed: Toggle - - uid: 29493 + - uid: 29291 components: - type: Transform rot: 3.141592653589793 rad @@ -222976,9 +223054,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24852: + 24711: - Pressed: Toggle - - uid: 29494 + - uid: 29292 components: - type: Transform rot: 1.5707963267948966 rad @@ -222986,13 +223064,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29260: + 29058: - Pressed: Toggle - 29259: + 29057: - Pressed: Toggle - 29357: + 29155: - Pressed: Toggle - - uid: 29495 + - uid: 29293 components: - type: Transform rot: 1.5707973450558423 rad @@ -223000,9 +223078,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1543: + 1548: - Pressed: Toggle - - uid: 29496 + - uid: 29294 components: - type: Transform rot: 3.141593671850739 rad @@ -223010,9 +223088,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1543: + 1548: - Pressed: Toggle - - uid: 29497 + - uid: 29295 components: - type: Transform rot: 3.141593671850739 rad @@ -223020,31 +223098,31 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 29201: + 28999: - Pressed: Toggle - 29202: + 29000: - Pressed: Toggle - 29203: + 29001: - Pressed: Toggle - 29205: + 29003: - Pressed: Toggle - 29204: + 29002: - Pressed: Toggle - proto: SignArcade entities: - - uid: 29498 + - uid: 29296 components: - type: Transform pos: -29.5,-59.5 parent: 2 - proto: SignArmory entities: - - uid: 29499 + - uid: 29297 components: - type: Transform pos: 56.5,6.5 parent: 2 - - uid: 29500 + - uid: 29298 components: - type: Transform rot: 1.5707963267948966 rad @@ -223052,43 +223130,43 @@ entities: parent: 2 - proto: SignAtmosMinsky entities: - - uid: 29501 + - uid: 29299 components: - type: Transform pos: -54.5,19.5 parent: 2 - proto: SignBio entities: - - uid: 29502 + - uid: 29300 components: - type: Transform pos: -31.5,-29.5 parent: 2 - - uid: 29503 + - uid: 29301 components: - type: Transform pos: -31.5,-25.5 parent: 2 - - uid: 29504 + - uid: 29302 components: - type: Transform pos: 26.5,-53.5 parent: 2 - proto: SignBiohazard entities: - - uid: 29505 + - uid: 29303 components: - type: Transform pos: 26.5,-62.5 parent: 2 - - uid: 29506 + - uid: 29304 components: - type: Transform pos: 28.5,-53.5 parent: 2 - proto: SignBiohazardMed entities: - - uid: 29507 + - uid: 29305 components: - type: Transform rot: 1.5707963267948966 rad @@ -223096,55 +223174,55 @@ entities: parent: 2 - proto: SignBridge entities: - - uid: 29508 + - uid: 29306 components: - type: Transform pos: 15.5,17.5 parent: 2 - - uid: 29509 + - uid: 29307 components: - type: Transform pos: -16.5,12.5 parent: 2 - - uid: 29510 + - uid: 29308 components: - type: Transform pos: -16.5,17.5 parent: 2 - - uid: 29511 + - uid: 29309 components: - type: Transform pos: 15.5,12.5 parent: 2 - proto: SignCanisters entities: - - uid: 29512 + - uid: 29310 components: - type: Transform pos: -24.5,-48.5 parent: 2 - proto: SignChem entities: - - uid: 29513 + - uid: 29311 components: - type: Transform pos: -37.5,56.5 parent: 2 - proto: SignChemistry1 entities: - - uid: 29514 + - uid: 29312 components: - type: Transform pos: 9.5,-28.5 parent: 2 - - uid: 29515 + - uid: 29313 components: - type: Transform pos: 1.5,-32.5 parent: 2 - proto: SignCloning entities: - - uid: 29516 + - uid: 29314 components: - type: Transform rot: 1.5707963267948966 rad @@ -223152,20 +223230,20 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 29517 + - uid: 29315 components: - type: Transform pos: 19.5,-36.5 parent: 2 - proto: SignDirectionalBridge entities: - - uid: 29518 + - uid: 29316 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.508827,7.2060776 parent: 2 - - uid: 29519 + - uid: 29317 components: - type: Transform rot: 3.141592653589793 rad @@ -223173,24 +223251,24 @@ entities: parent: 2 - proto: SignDirectionalEng entities: - - uid: 29520 + - uid: 29318 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.508827,7.7060776 parent: 2 - - uid: 29521 + - uid: 29319 components: - type: Transform pos: -20.53457,21.45121 parent: 2 - - uid: 29522 + - uid: 29320 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.4954174,-21.28422 parent: 2 - - uid: 29523 + - uid: 29321 components: - type: Transform rot: 3.141592653589793 rad @@ -223198,44 +223276,44 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 29524 + - uid: 29322 components: - type: Transform pos: -20.465418,3.2079785 parent: 2 - - uid: 29525 + - uid: 29323 components: - type: Transform pos: -20.53457,21.185585 parent: 2 - - uid: 29526 + - uid: 29324 components: - type: Transform pos: 1.4544559,-21.818363 parent: 2 - - uid: 29527 + - uid: 29325 components: - type: Transform pos: -2.5215883,-62.742023 parent: 2 - - uid: 29528 + - uid: 29326 components: - type: Transform pos: -2.4954174,-21.78422 parent: 2 - - uid: 29529 + - uid: 29327 components: - type: Transform pos: 1.4627867,-62.75765 parent: 2 - - uid: 29530 + - uid: 29328 components: - type: Transform pos: 19.544283,3.1722114 parent: 2 - proto: SignDirectionalLibrary entities: - - uid: 29531 + - uid: 29329 components: - type: Transform rot: -1.5707963267948966 rad @@ -223243,34 +223321,34 @@ entities: parent: 2 - proto: SignDirectionalMed entities: - - uid: 29532 + - uid: 29330 components: - type: Transform pos: -20.465418,3.4582398 parent: 2 - - uid: 29533 + - uid: 29331 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.458973,21.244955 parent: 2 - - uid: 29534 + - uid: 29332 components: - type: Transform pos: 19.544283,3.4222114 parent: 2 - - uid: 29535 + - uid: 29333 components: - type: Transform rot: 3.141592653589793 rad pos: 1.4471617,-62.50765 parent: 2 - - uid: 29536 + - uid: 29334 components: - type: Transform pos: 1.504024,25.238964 parent: 2 - - uid: 29537 + - uid: 29335 components: - type: Transform rot: 1.5707963267948966 rad @@ -223278,28 +223356,28 @@ entities: parent: 2 - proto: SignDirectionalSci entities: - - uid: 29538 + - uid: 29336 components: - type: Transform rot: -1.5707953085339508 rad pos: -2.4999108,-21.532824 parent: 2 - - uid: 29539 + - uid: 29337 components: - type: Transform pos: -20.53457,21.716835 parent: 2 - - uid: 29540 + - uid: 29338 components: - type: Transform pos: -20.508827,7.4560776 parent: 2 - - uid: 29541 + - uid: 29339 components: - type: Transform pos: 19.514046,7.286875 parent: 2 - - uid: 29542 + - uid: 29340 components: - type: Transform rot: 3.141592653589793 rad @@ -223307,36 +223385,36 @@ entities: parent: 2 - proto: SignDirectionalSec entities: - - uid: 29543 + - uid: 29341 components: - type: Transform pos: -20.465418,3.7397835 parent: 2 - - uid: 29544 + - uid: 29342 components: - type: Transform rot: 3.141592653589793 rad pos: 1.4471617,-62.25765 parent: 2 - - uid: 29545 + - uid: 29343 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.458973,21.776205 parent: 2 - - uid: 29546 + - uid: 29344 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.4544559,-21.302738 parent: 2 - - uid: 29547 + - uid: 29345 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.544283,3.6722114 parent: 2 - - uid: 29548 + - uid: 29346 components: - type: Transform rot: 1.5707963267948966 rad @@ -223344,19 +223422,19 @@ entities: parent: 2 - proto: SignDirectionalSupply entities: - - uid: 29549 + - uid: 29347 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.504024,25.520214 parent: 2 - - uid: 29550 + - uid: 29348 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.458973,21.526205 parent: 2 - - uid: 29551 + - uid: 29349 components: - type: Transform rot: 3.141592653589793 rad @@ -223364,115 +223442,115 @@ entities: parent: 2 - proto: SignDisposalSpace entities: - - uid: 29552 + - uid: 29350 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,60.5 parent: 2 - - uid: 29553 + - uid: 29351 components: - type: Transform pos: -67.5,53.5 parent: 2 - - uid: 29554 + - uid: 29352 components: - type: Transform pos: 27.5,-70.5 parent: 2 - proto: SignDoors entities: - - uid: 29555 + - uid: 29353 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,86.5 parent: 2 - - uid: 29556 + - uid: 29354 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,75.5 parent: 2 - - uid: 29557 + - uid: 29355 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,29.5 parent: 2 - - uid: 29558 + - uid: 29356 components: - type: Transform pos: 13.5,79.5 parent: 2 - - uid: 29559 + - uid: 29357 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,80.5 parent: 2 - - uid: 29560 + - uid: 29358 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,74.5 parent: 2 - - uid: 29561 + - uid: 29359 components: - type: Transform pos: -16.5,-17.5 parent: 2 - - uid: 29562 + - uid: 29360 components: - type: Transform pos: -44.5,53.5 parent: 2 - - uid: 29563 + - uid: 29361 components: - type: Transform pos: 6.5,91.5 parent: 2 - - uid: 29564 + - uid: 29362 components: - type: Transform pos: -42.5,49.5 parent: 2 - - uid: 29565 + - uid: 29363 components: - type: Transform pos: 15.5,-17.5 parent: 2 - - uid: 29566 + - uid: 29364 components: - type: Transform pos: -15.5,17.5 parent: 2 - - uid: 29567 + - uid: 29365 components: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 29568 + - uid: 29366 components: - type: Transform pos: -40.5,-73.5 parent: 2 - - uid: 29569 + - uid: 29367 components: - type: Transform pos: -9.5,-81.5 parent: 2 - - uid: 29570 + - uid: 29368 components: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 29571 + - uid: 29369 components: - type: Transform pos: 12.5,86.5 parent: 2 - - uid: 29572 + - uid: 29370 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -223480,244 +223558,244 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 29573 + - uid: 29371 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 5.5,-12.5 parent: 2 - - uid: 29574 + - uid: 29372 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 5.5000005,-10.5 parent: 2 - - uid: 29575 + - uid: 29373 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -6.5,-12.5 parent: 2 - - uid: 29576 + - uid: 29374 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 3.5,-10.5 parent: 2 - - uid: 29577 + - uid: 29375 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -4.4999995,-10.5 parent: 2 - - uid: 29578 + - uid: 29376 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -6.4999995,-10.5 parent: 2 - - uid: 29579 + - uid: 29377 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -4.5,-12.5 parent: 2 - - uid: 29580 + - uid: 29378 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 3.5000002,-12.5 parent: 2 - - uid: 29581 + - uid: 29379 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 98.50001,5.5000005 parent: 2 - - uid: 29582 + - uid: 29380 components: - type: Transform rot: 1.5707973450558423 rad pos: 82.50001,-5.5 parent: 2 - - uid: 29583 + - uid: 29381 components: - type: Transform pos: -79.5,-17.5 parent: 2 - - uid: 29584 + - uid: 29382 components: - type: Transform pos: -105.5,-1.5 parent: 2 - - uid: 29585 + - uid: 29383 components: - type: Transform pos: -86.5,-21.5 parent: 2 - - uid: 29586 + - uid: 29384 components: - type: Transform pos: -94.5,-21.5 parent: 2 - - uid: 29587 + - uid: 29385 components: - type: Transform pos: -94.5,4.5 parent: 2 - - uid: 29588 + - uid: 29386 components: - type: Transform pos: -86.5,4.5 parent: 2 - - uid: 29589 + - uid: 29387 components: - type: Transform pos: -104.5,3.5 parent: 2 - - uid: 29590 + - uid: 29388 components: - type: Transform pos: -105.5,-13.5 parent: 2 - - uid: 29591 + - uid: 29389 components: - type: Transform pos: -94.5,6.5 parent: 2 - - uid: 29592 + - uid: 29390 components: - type: Transform pos: -86.5,6.5 parent: 2 - - uid: 29593 + - uid: 29391 components: - type: Transform pos: -94.5,-19.5 parent: 2 - - uid: 29594 + - uid: 29392 components: - type: Transform pos: -86.5,-19.5 parent: 2 - - uid: 29595 + - uid: 29393 components: - type: Transform pos: -104.5,-18.5 parent: 2 - - uid: 29596 + - uid: 29394 components: - type: Transform pos: -103.5,-13.5 parent: 2 - - uid: 29597 + - uid: 29395 components: - type: Transform pos: -103.5,-1.5 parent: 2 - - uid: 29598 + - uid: 29396 components: - type: Transform pos: -79.5,3.5 parent: 2 - - uid: 29599 + - uid: 29397 components: - type: Transform rot: 1.5707973450558423 rad pos: 90.50001,-5.5 parent: 2 - - uid: 29600 + - uid: 29398 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 98.5,0.5 parent: 2 - - uid: 29601 + - uid: 29399 components: - type: Transform rot: 1.5707973450558423 rad pos: 78.50001,-5.5 parent: 2 - - uid: 29602 + - uid: 29400 components: - type: Transform rot: 1.5707973450558423 rad pos: 86.50001,-5.5 parent: 2 - - uid: 29603 + - uid: 29401 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 75.5,-0.5 parent: 2 - - uid: 29604 + - uid: 29402 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 75.49999,3.5 parent: 2 - - uid: 29605 + - uid: 29403 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.5,11.5 parent: 2 - - uid: 39679 + - uid: 39506 components: - type: Transform pos: -16.5,-8.5 - parent: 38584 - - uid: 39680 + parent: 38411 + - uid: 39507 components: - type: Transform pos: -11.5,-8.5 - parent: 38584 + parent: 38411 - proto: SignEngineering entities: - - uid: 29606 + - uid: 29404 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,11.5 parent: 2 - - uid: 29607 + - uid: 29405 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,85.5 parent: 2 - - uid: 29608 + - uid: 29406 components: - type: Transform pos: -9.5,-78.5 parent: 2 - proto: SignEscapePods entities: - - uid: 29609 + - uid: 29407 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,96.5 parent: 2 - - uid: 29610 + - uid: 29408 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,80.5 parent: 2 - - uid: 29611 + - uid: 29409 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,70.5 parent: 2 - - uid: 29612 + - uid: 29410 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,87.5 parent: 2 - - uid: 29613 + - uid: 29411 components: - type: Transform rot: 1.5707963267948966 rad @@ -223725,13 +223803,13 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 29614 + - uid: 29412 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -14.5,-10.5 parent: 2 - - uid: 29615 + - uid: 29413 components: - type: Transform rot: 3.141592653589793 rad @@ -223739,34 +223817,34 @@ entities: parent: 2 - proto: SignExamroom entities: - - uid: 29616 + - uid: 29414 components: - type: Transform pos: 42.5,-31.5 parent: 2 - - uid: 29617 + - uid: 29415 components: - type: Transform pos: 29.5,-36.5 parent: 2 - - uid: 29618 + - uid: 29416 components: - type: Transform pos: 15.5,-28.5 parent: 2 - proto: SignFlammableMed entities: - - uid: 29619 + - uid: 29417 components: - type: Transform pos: -44.5,52.5 parent: 2 - - uid: 29620 + - uid: 29418 components: - type: Transform pos: -44.5,50.5 parent: 2 - - uid: 29621 + - uid: 29419 components: - type: Transform rot: -1.5707963267948966 rad @@ -223774,21 +223852,21 @@ entities: parent: 2 - proto: SignHydro2 entities: - - uid: 29622 + - uid: 29420 components: - type: Transform pos: -23.5,52.5 parent: 2 - proto: SignInterrogation entities: - - uid: 29623 + - uid: 29421 components: - type: Transform pos: 54.5,-1.5 parent: 2 - proto: SignKiddiePlaque entities: - - uid: 2806 + - uid: 29422 components: - type: MetaData desc: Объявление гласящее о проведении ремонтных работ в области пляжа. @@ -223796,7 +223874,7 @@ entities: - type: Transform pos: 76.5,-17.5 parent: 2 - - uid: 29624 + - uid: 29423 components: - type: MetaData desc: Опора несущая конструкция "Delta ZXC-322" @@ -223805,7 +223883,7 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,54.5 parent: 2 - - uid: 29625 + - uid: 29424 components: - type: MetaData desc: Скромная табличка с сертификатом докторской степени. @@ -223816,7 +223894,7 @@ entities: parent: 2 - proto: SignLibrary entities: - - uid: 29626 + - uid: 29425 components: - type: Transform rot: 1.5707963267948966 rad @@ -223824,71 +223902,71 @@ entities: parent: 2 - proto: SignMedical entities: - - uid: 29627 + - uid: 29426 components: - type: Transform pos: 50.5,-31.5 parent: 2 - - uid: 29628 + - uid: 29427 components: - type: Transform pos: 15.5,-21.5 parent: 2 - - uid: 29629 + - uid: 29428 components: - type: Transform pos: 1.5,-27.5 parent: 2 - - uid: 29630 + - uid: 29429 components: - type: Transform pos: 25.5,-41.5 parent: 2 - - uid: 29631 + - uid: 29430 components: - type: Transform pos: 15.5,-27.5 parent: 2 - - uid: 29632 + - uid: 29431 components: - type: Transform pos: 33.5,-32.5 parent: 2 - - uid: 29633 + - uid: 29432 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 29634 + - uid: 29433 components: - type: Transform pos: 19.5,-41.5 parent: 2 - - uid: 29635 + - uid: 29434 components: - type: Transform pos: 42.5,-33.5 parent: 2 - - uid: 29636 + - uid: 29435 components: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 39681 + - uid: 39508 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 - parent: 38584 + parent: 38411 - proto: SignMorgue entities: - - uid: 29637 + - uid: 29436 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-47.5 parent: 2 - - uid: 29638 + - uid: 29437 components: - type: Transform rot: 1.5707963267948966 rad @@ -223896,59 +223974,59 @@ entities: parent: 2 - proto: SignNanotrasen1 entities: - - uid: 29639 + - uid: 29438 components: - type: Transform pos: -2.5,20.5 parent: 2 - proto: SignNanotrasen2 entities: - - uid: 29640 + - uid: 29439 components: - type: Transform pos: -1.5,20.5 parent: 2 - proto: SignNanotrasen3 entities: - - uid: 29641 + - uid: 29440 components: - type: Transform pos: -0.5,20.5 parent: 2 - proto: SignNanotrasen4 entities: - - uid: 29642 + - uid: 29441 components: - type: Transform pos: 0.5,20.5 parent: 2 - proto: SignNanotrasen5 entities: - - uid: 29643 + - uid: 29442 components: - type: Transform pos: 1.5,20.5 parent: 2 - proto: SignNosmoking entities: - - uid: 29644 + - uid: 29443 components: - type: Transform pos: 17.5,-22.5 parent: 2 - proto: SignRadiationMed entities: - - uid: 29645 + - uid: 29444 components: - type: Transform pos: -50.5,3.5 parent: 2 - - uid: 29646 + - uid: 29445 components: - type: Transform pos: -71.5,3.5 parent: 2 - - uid: 29647 + - uid: 29446 components: - type: Transform rot: -1.5707963267948966 rad @@ -223956,186 +224034,186 @@ entities: parent: 2 - proto: SignRobo entities: - - uid: 29648 + - uid: 29447 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 29649 + - uid: 29448 components: - type: Transform pos: -2.5,-49.5 parent: 2 - proto: SignScience1 entities: - - uid: 29650 + - uid: 29449 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 29651 + - uid: 29450 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 29652 + - uid: 29451 components: - type: Transform pos: -13.5,-28.5 parent: 2 - - uid: 29653 + - uid: 29452 components: - type: Transform pos: -10.5,-28.5 parent: 2 - - uid: 29654 + - uid: 29453 components: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 29655 + - uid: 29454 components: - type: Transform pos: -16.5,-21.5 parent: 2 - - uid: 29656 + - uid: 29455 components: - type: Transform pos: -30.5,-42.5 parent: 2 - - uid: 29657 + - uid: 29456 components: - type: Transform pos: -21.5,-46.5 parent: 2 - - uid: 29658 + - uid: 29457 components: - type: Transform pos: -2.5,-32.5 parent: 2 - proto: SignSecurearea entities: - - uid: 29659 + - uid: 29458 components: - type: Transform pos: -53.5,3.5 parent: 2 - - uid: 29660 + - uid: 29459 components: - type: Transform pos: 49.5,2.5 parent: 2 - - uid: 29661 + - uid: 29460 components: - type: Transform pos: 61.5,13.5 parent: 2 - - uid: 29662 + - uid: 29461 components: - type: Transform pos: 14.5,-6.5 parent: 2 - - uid: 29663 + - uid: 29462 components: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 29664 + - uid: 29463 components: - type: Transform pos: -11.5,-32.5 parent: 2 - - uid: 29665 + - uid: 29464 components: - type: Transform pos: -42.5,52.5 parent: 2 - - uid: 29666 + - uid: 29465 components: - type: Transform pos: -67.5,19.5 parent: 2 - - uid: 29667 + - uid: 29466 components: - type: Transform pos: -49.5,-5.5 parent: 2 - - uid: 29668 + - uid: 29467 components: - type: Transform pos: -11.5,-28.5 parent: 2 - - uid: 29669 + - uid: 29468 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 29670 + - uid: 29469 components: - type: Transform pos: -45.5,26.5 parent: 2 - - uid: 29671 + - uid: 29470 components: - type: Transform pos: 28.5,-62.5 parent: 2 - - uid: 29672 + - uid: 29471 components: - type: Transform pos: -50.5,17.5 parent: 2 - - uid: 29673 + - uid: 29472 components: - type: Transform pos: -50.5,7.5 parent: 2 - - uid: 29674 + - uid: 29473 components: - type: Transform pos: -42.5,50.5 parent: 2 - - uid: 29675 + - uid: 29474 components: - type: Transform pos: -49.5,-9.5 parent: 2 - - uid: 29676 + - uid: 29475 components: - type: Transform pos: -78.5,17.5 parent: 2 - - uid: 29677 + - uid: 29476 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.5,27.5 parent: 2 - - uid: 29678 + - uid: 29477 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.49999,35.5 parent: 2 - - uid: 29679 + - uid: 29478 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.5,31.5 parent: 2 - - uid: 29680 + - uid: 29479 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.5,43.5 parent: 2 - - uid: 29681 + - uid: 29480 components: - type: Transform rot: 1.5707973450558423 rad pos: -67.5,47.5 parent: 2 - - uid: 29682 + - uid: 29481 components: - type: Transform rot: 1.5707973450558423 rad @@ -224143,280 +224221,280 @@ entities: parent: 2 - proto: SignSecureMed entities: - - uid: 39682 + - uid: 39509 components: - type: Transform pos: -2.5,9.5 - parent: 38584 - - uid: 39683 + parent: 38411 + - uid: 39510 components: - type: Transform pos: -4.5,15.5 - parent: 38584 + parent: 38411 - proto: SignSecureSmall entities: - - uid: 39684 + - uid: 39511 components: - type: Transform pos: -13.5,36.5 - parent: 38584 + parent: 38411 - proto: SignSecureSmallRed entities: - - uid: 39685 + - uid: 39512 components: - type: Transform pos: -13.5,34.5 - parent: 38584 + parent: 38411 - proto: SignSecurity entities: - - uid: 29683 + - uid: 29482 components: - type: Transform pos: 33.5,5.5 parent: 2 - - uid: 29684 + - uid: 29483 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,20.5 parent: 2 - - uid: 39686 + - uid: 39513 components: - type: Transform pos: 2.5,2.5 - parent: 38584 + parent: 38411 - proto: SignShipDock entities: - - uid: 29685 + - uid: 29484 components: - type: Transform pos: 80.5,11.5 parent: 2 - proto: SignShock entities: - - uid: 29686 + - uid: 29485 components: - type: Transform pos: -55.5,8.5 parent: 2 - - uid: 29687 + - uid: 29486 components: - type: Transform pos: -58.5,8.5 parent: 2 - - uid: 29688 + - uid: 29487 components: - type: Transform pos: -40.5,-75.5 parent: 2 - - uid: 29689 + - uid: 29488 components: - type: Transform pos: -37.5,20.5 parent: 2 - - uid: 29690 + - uid: 29489 components: - type: Transform pos: -35.5,-29.5 parent: 2 - - uid: 29691 + - uid: 29490 components: - type: Transform pos: -43.5,0.5 parent: 2 - - uid: 29692 + - uid: 29491 components: - type: Transform pos: 28.5,32.5 parent: 2 - - uid: 29693 + - uid: 29492 components: - type: Transform pos: -49.5,-10.5 parent: 2 - - uid: 29694 + - uid: 29493 components: - type: Transform pos: -49.5,-18.5 parent: 2 - - uid: 29695 + - uid: 29494 components: - type: Transform pos: -49.5,-25.5 parent: 2 - - uid: 29696 + - uid: 29495 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 29697 + - uid: 29496 components: - type: Transform pos: -33.5,20.5 parent: 2 - - uid: 29698 + - uid: 29497 components: - type: Transform pos: -49.5,3.5 parent: 2 - - uid: 29699 + - uid: 29498 components: - type: Transform pos: -49.5,-29.5 parent: 2 - - uid: 29700 + - uid: 29499 components: - type: Transform pos: 42.5,10.5 parent: 2 - - uid: 29701 + - uid: 29500 components: - type: Transform pos: 12.5,88.5 parent: 2 - - uid: 29702 + - uid: 29501 components: - type: Transform pos: 42.5,6.5 parent: 2 - - uid: 29703 + - uid: 29502 components: - type: Transform pos: -68.5,11.5 parent: 2 - - uid: 29704 + - uid: 29503 components: - type: Transform rot: 1.5707973450558423 rad pos: 84.50001,-9.5 parent: 2 - - uid: 29705 + - uid: 29504 components: - type: Transform rot: 1.5707973450558423 rad pos: 104.49999,3.5 parent: 2 - - uid: 29706 + - uid: 29505 components: - type: Transform rot: 1.5707973450558423 rad pos: 102.50001,7.5 parent: 2 - - uid: 29707 + - uid: 29506 components: - type: Transform rot: 1.5707973450558423 rad pos: 104.50001,-8.500001 parent: 2 - - uid: 29708 + - uid: 29507 components: - type: Transform rot: 1.5707973450558423 rad pos: 93.50001,-9.5 parent: 2 - - uid: 29709 + - uid: 29508 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 29710 + - uid: 29509 components: - type: Transform pos: 19.5,12.5 parent: 2 - proto: SignSmoking entities: - - uid: 29711 + - uid: 29510 components: - type: Transform pos: -21.5,-47.5 parent: 2 - - uid: 29712 + - uid: 29511 components: - type: Transform pos: -26.5,-36.5 parent: 2 - - uid: 29713 + - uid: 29512 components: - type: Transform pos: 65.5,-20.5 parent: 2 - - uid: 29714 + - uid: 29513 components: - type: Transform pos: 9.5,-47.5 parent: 2 - - uid: 29715 + - uid: 29514 components: - type: Transform pos: -2.5,-37.5 parent: 2 - - uid: 29716 + - uid: 29515 components: - type: Transform pos: 33.5,-65.5 parent: 2 - - uid: 29717 + - uid: 29516 components: - type: Transform pos: -57.5,34.5 parent: 2 - - uid: 29718 + - uid: 29517 components: - type: Transform pos: -10.5,-29.5 parent: 2 - - uid: 29719 + - uid: 29518 components: - type: Transform pos: 77.5,-19.5 parent: 2 - - uid: 29720 + - uid: 29519 components: - type: Transform pos: -25.5,-68.5 parent: 2 - - uid: 29721 + - uid: 29520 components: - type: Transform pos: -40.5,-12.5 parent: 2 - - uid: 29722 + - uid: 29521 components: - type: Transform pos: -22.5,18.5 parent: 2 - - uid: 29723 + - uid: 29522 components: - type: Transform pos: 9.5,-36.5 parent: 2 - - uid: 29724 + - uid: 29523 components: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 29725 + - uid: 29524 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 29726 + - uid: 29525 components: - type: Transform pos: -46.5,-4.5 parent: 2 - - uid: 29727 + - uid: 29526 components: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 29728 + - uid: 29527 components: - type: Transform pos: 8.5,88.5 parent: 2 - - uid: 29729 + - uid: 29528 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -224424,7 +224502,7 @@ entities: parent: 2 - proto: SignSomethingOld entities: - - uid: 29730 + - uid: 29529 components: - type: MetaData desc: Гражданин, вступай в силы морской пехоты Правительства Земли! Защити Землю, идем в будущие вместе с EarthGov. @@ -224434,96 +224512,96 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 29731 + - uid: 29530 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,75.5 parent: 2 - - uid: 29732 + - uid: 29531 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,87.5 parent: 2 - - uid: 29733 + - uid: 29532 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,80.5 parent: 2 - - uid: 29734 + - uid: 29533 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,87.5 parent: 2 - - uid: 29735 + - uid: 29534 components: - type: Transform pos: 9.5,91.5 parent: 2 - - uid: 29736 + - uid: 29535 components: - type: Transform pos: -39.5,-56.5 parent: 2 - - uid: 29737 + - uid: 29536 components: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 29738 + - uid: 29537 components: - type: Transform pos: -59.5,-17.5 parent: 2 - - uid: 29739 + - uid: 29538 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,86.5 parent: 2 - - uid: 29740 + - uid: 29539 components: - type: Transform pos: 36.5,-72.5 parent: 2 - - uid: 29741 + - uid: 29540 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - uid: 29742 + - uid: 29541 components: - type: Transform pos: -60.5,-15.5 parent: 2 - - uid: 29743 + - uid: 29542 components: - type: Transform pos: -78.5,16.5 parent: 2 - - uid: 29744 + - uid: 29543 components: - type: Transform pos: -11.5,-82.5 parent: 2 - - uid: 29745 + - uid: 29544 components: - type: Transform pos: 4.5,91.5 parent: 2 - proto: SignToxins entities: - - uid: 29746 + - uid: 29545 components: - type: Transform pos: -26.5,-42.5 parent: 2 - proto: SignVirology entities: - - uid: 29747 + - uid: 29546 components: - type: Transform rot: 3.141592653589793 rad @@ -224531,194 +224609,194 @@ entities: parent: 2 - proto: SignXenobio2 entities: - - uid: 29748 + - uid: 29547 components: - type: Transform pos: -43.5,-29.5 parent: 2 - - uid: 29749 + - uid: 29548 components: - type: Transform pos: -30.5,-32.5 parent: 2 - - uid: 29750 + - uid: 29549 components: - type: Transform pos: -43.5,-25.5 parent: 2 - proto: Sink entities: - - uid: 29751 + - uid: 29550 components: - type: Transform rot: -1.5707953085339508 rad pos: 79.50001,4.5 parent: 2 - - uid: 29752 + - uid: 29551 components: - type: Transform pos: -17.5,-32.5 parent: 2 - - uid: 29753 + - uid: 29552 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,37.5 parent: 2 - - uid: 29754 + - uid: 29553 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 29755 + - uid: 29554 components: - type: Transform pos: 3.5,54.5 parent: 2 - - uid: 29756 + - uid: 29555 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 - - uid: 29757 + - uid: 29556 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-16.5 parent: 2 - - uid: 29758 + - uid: 29557 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,40.5 parent: 2 - - uid: 29759 + - uid: 29558 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-46.5 parent: 2 - - uid: 29760 + - uid: 29559 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-25.5 parent: 2 - - uid: 29761 + - uid: 29560 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 2 - - uid: 29762 + - uid: 29561 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 - - uid: 29763 + - uid: 29562 components: - type: Transform pos: -19.5,-32.5 parent: 2 - - uid: 39687 + - uid: 39514 components: - type: Transform pos: 3.5,-7.5 - parent: 38584 + parent: 38411 - proto: SinkStemlessWater entities: - - uid: 29764 + - uid: 29563 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.139833,62.402996 parent: 2 - - uid: 29765 + - uid: 29564 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.118998,63.413414 parent: 2 - - uid: 29766 + - uid: 29565 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.119,64.319664 parent: 2 - - uid: 29767 + - uid: 29566 components: - type: Transform pos: 28.5,-28.5 parent: 2 - - uid: 39688 + - uid: 39515 components: - type: Transform pos: -8.5,10.5 - parent: 38584 - - uid: 39689 + parent: 38411 + - uid: 39516 components: - type: Transform pos: -6.5,10.5 - parent: 38584 - - uid: 39690 + parent: 38411 + - uid: 39517 components: - type: Transform pos: -7.5,10.5 - parent: 38584 - - uid: 39691 + parent: 38411 + - uid: 39518 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,27.5 - parent: 38584 + parent: 38411 - proto: SinkWide entities: - - uid: 29768 + - uid: 29567 components: - type: Transform rot: 1.5707973450558423 rad pos: 91.50001,6.5000005 parent: 2 - - uid: 29769 + - uid: 29568 components: - type: Transform pos: 30.5,-37.5 parent: 2 - - uid: 29770 + - uid: 29569 components: - type: Transform pos: -32.5,38.5 parent: 2 - - uid: 29771 + - uid: 29570 components: - type: Transform pos: 23.5,67.5 parent: 2 - - uid: 29772 + - uid: 29571 components: - type: Transform pos: -27.5,55.5 parent: 2 - - uid: 29773 + - uid: 29572 components: - type: Transform pos: 13.5,5.5 parent: 2 - - uid: 29774 + - uid: 29573 components: - type: Transform pos: -28.5,55.5 parent: 2 - - uid: 29775 + - uid: 29574 components: - type: Transform rot: 1.5707973450558423 rad pos: 91.5,-2.5 parent: 2 - - uid: 29776 + - uid: 29575 components: - type: Transform rot: 3.141592653589793 rad @@ -224726,135 +224804,135 @@ entities: parent: 2 - proto: SmartFridge entities: - - uid: 29777 + - uid: 29576 components: - type: Transform pos: 9.5,-34.5 parent: 2 - - uid: 29778 + - uid: 29577 components: - type: Transform pos: 2.5,-48.5 parent: 2 - - uid: 29779 + - uid: 29578 components: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 29780 + - uid: 29579 components: - type: Transform pos: -29.5,44.5 parent: 2 - proto: SMESBasic entities: - - uid: 29781 + - uid: 29580 components: - type: Transform pos: -17.5,-29.5 parent: 2 - - uid: 29782 + - uid: 29581 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 29783 + - uid: 29582 components: - type: MetaData name: солнечные панели СЗ 2 - type: Transform pos: -57.5,61.5 parent: 2 - - uid: 29784 + - uid: 29583 components: - type: MetaData name: инженерный 3 - type: Transform pos: -44.5,1.5 parent: 2 - - uid: 29785 + - uid: 29584 components: - type: MetaData name: солнечные панели СЗ 1 - type: Transform pos: -59.5,60.5 parent: 2 - - uid: 29786 + - uid: 29585 components: - type: MetaData name: инженерный 2 - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 29787 + - uid: 29586 components: - type: MetaData name: служба безопасности - type: Transform pos: 73.5,-2.5 parent: 2 - - uid: 29788 + - uid: 29587 components: - type: MetaData name: РИТЭГ - type: Transform pos: -60.5,-9.5 parent: 2 - - uid: 29789 + - uid: 29588 components: - type: MetaData name: солнечные панели ЮЗ - type: Transform pos: -42.5,-73.5 parent: 2 - - uid: 29790 + - uid: 29589 components: - type: MetaData name: медицинский - type: Transform pos: 6.5,-40.5 parent: 2 - - uid: 29791 + - uid: 29590 components: - type: MetaData name: инженерный 4 - type: Transform pos: -44.5,2.5 parent: 2 - - uid: 29792 + - uid: 29591 components: - type: MetaData name: инженерный 1 - type: Transform pos: -44.5,-0.5 parent: 2 - - uid: 29793 + - uid: 29592 components: - type: MetaData name: УЧ - type: Transform pos: -80.5,-11.5 parent: 2 - - uid: 29794 + - uid: 29593 components: - type: Transform pos: -73.5,12.5 parent: 2 - - uid: 29795 + - uid: 29594 components: - type: MetaData name: солнечные панели СВ - type: Transform pos: 14.5,88.5 parent: 2 - - uid: 29796 + - uid: 29595 components: - type: MetaData name: солнечные панели ЮВ - type: Transform pos: 79.5,-44.5 parent: 2 - - uid: 29797 + - uid: 29596 components: - type: MetaData name: ИИ @@ -224864,36 +224942,36 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 8000000 autoRecharge: True - - uid: 29798 + - uid: 29597 components: - type: Transform pos: 77.5,-2.5 parent: 2 - - uid: 39692 + - uid: 39519 components: - type: Transform pos: 8.5,5.5 - parent: 38584 - - uid: 39693 + parent: 38411 + - uid: 39520 components: - type: Transform pos: 9.5,5.5 - parent: 38584 + parent: 38411 - proto: SMESMachineCircuitboard entities: - - uid: 29799 + - uid: 29598 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 29800 + - uid: 29599 components: - type: Transform pos: -38.5,11.5 parent: 2 - proto: Soap entities: - - uid: 29801 + - uid: 29600 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -224901,7 +224979,7 @@ entities: parent: 2 - proto: SoapHomemade entities: - - uid: 29802 + - uid: 29601 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -224909,26 +224987,26 @@ entities: parent: 2 - proto: SoapNT entities: - - uid: 29803 + - uid: 29602 components: - type: Transform pos: 20.509054,-13.490537 parent: 2 - proto: SodaDispenser entities: - - uid: 29804 + - uid: 29603 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-4.5 parent: 2 - - uid: 29805 + - uid: 29604 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-47.5 parent: 2 - - uid: 29806 + - uid: 29605 components: - type: Transform rot: -1.5707963267948966 rad @@ -224952,26 +225030,26 @@ entities: showEnts: False occludes: True ents: [] - - uid: 29807 + - uid: 29606 components: - type: Transform pos: 65.5,30.5 parent: 2 - proto: SodiumLightTube entities: - - uid: 26981 + - uid: 26825 components: - type: Transform - parent: 26980 + parent: 26824 - type: LightBulb lightRadius: 8 lightEnergy: 1 - type: Physics canCollide: False - - uid: 26983 + - uid: 26827 components: - type: Transform - parent: 26982 + parent: 26826 - type: LightBulb lightRadius: 4 lightEnergy: 2 @@ -224979,1281 +225057,1281 @@ entities: canCollide: False - proto: SolarPanel entities: - - uid: 29808 + - uid: 29607 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,82.5 parent: 2 - - uid: 29809 + - uid: 29608 components: - type: Transform pos: -48.5,-84.5 parent: 2 - - uid: 29810 + - uid: 29609 components: - type: Transform pos: -57.5,-84.5 parent: 2 - - uid: 29811 + - uid: 29610 components: - type: Transform pos: -44.5,-86.5 parent: 2 - - uid: 29812 + - uid: 29611 components: - type: Transform pos: -56.5,-84.5 parent: 2 - - uid: 29813 + - uid: 29612 components: - type: Transform pos: -47.5,-86.5 parent: 2 - - uid: 29814 + - uid: 29613 components: - type: Transform pos: -46.5,-86.5 parent: 2 - - uid: 29815 + - uid: 29614 components: - type: Transform pos: -47.5,-80.5 parent: 2 - - uid: 29816 + - uid: 29615 components: - type: Transform pos: -46.5,-80.5 parent: 2 - - uid: 29817 + - uid: 29616 components: - type: Transform pos: -54.5,-90.5 parent: 2 - - uid: 29818 + - uid: 29617 components: - type: Transform pos: -53.5,-88.5 parent: 2 - - uid: 29819 + - uid: 29618 components: - type: Transform pos: -56.5,-90.5 parent: 2 - - uid: 29820 + - uid: 29619 components: - type: Transform pos: 23.5,90.5 parent: 2 - - uid: 29821 + - uid: 29620 components: - type: Transform pos: -81.5,74.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29822 + - uid: 29621 components: - type: Transform pos: -79.5,74.5 parent: 2 - - uid: 29823 + - uid: 29622 components: - type: Transform pos: -73.5,70.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29824 + - uid: 29623 components: - type: Transform pos: -71.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29825 + - uid: 29624 components: - type: Transform pos: -71.5,74.5 parent: 2 - - uid: 29826 + - uid: 29625 components: - type: Transform pos: -72.5,74.5 parent: 2 - - uid: 29827 + - uid: 29626 components: - type: Transform pos: 24.5,98.5 parent: 2 - - uid: 29828 + - uid: 29627 components: - type: Transform pos: -69.5,70.5 parent: 2 - - uid: 29829 + - uid: 29628 components: - type: Transform pos: -80.5,76.5 parent: 2 - - uid: 29830 + - uid: 29629 components: - type: Transform pos: -81.5,78.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29831 + - uid: 29630 components: - type: Transform pos: -81.5,76.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29832 + - uid: 29631 components: - type: Transform pos: -77.5,78.5 parent: 2 - - uid: 29833 + - uid: 29632 components: - type: Transform pos: -72.5,78.5 parent: 2 - - uid: 29834 + - uid: 29633 components: - type: Transform pos: -70.5,78.5 parent: 2 - - uid: 29835 + - uid: 29634 components: - type: Transform pos: -72.5,76.5 parent: 2 - - uid: 29836 + - uid: 29635 components: - type: Transform pos: -73.5,78.5 parent: 2 - - uid: 29837 + - uid: 29636 components: - type: Transform pos: -69.5,78.5 parent: 2 - - uid: 29838 + - uid: 29637 components: - type: Transform pos: -78.5,74.5 parent: 2 - - uid: 29839 + - uid: 29638 components: - type: Transform pos: -79.5,76.5 parent: 2 - - uid: 29840 + - uid: 29639 components: - type: Transform pos: -70.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29841 + - uid: 29640 components: - type: Transform pos: -80.5,78.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29842 + - uid: 29641 components: - type: Transform pos: -68.5,72.5 parent: 2 - - uid: 29843 + - uid: 29642 components: - type: Transform pos: -69.5,72.5 parent: 2 - - uid: 29844 + - uid: 29643 components: - type: Transform pos: -72.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29845 + - uid: 29644 components: - type: Transform pos: -79.5,78.5 parent: 2 - - uid: 29846 + - uid: 29645 components: - type: Transform pos: -70.5,70.5 parent: 2 - - uid: 29847 + - uid: 29646 components: - type: Transform pos: -71.5,72.5 parent: 2 - - uid: 29848 + - uid: 29647 components: - type: Transform pos: -73.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29849 + - uid: 29648 components: - type: Transform pos: -78.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29850 + - uid: 29649 components: - type: Transform pos: -72.5,70.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29851 + - uid: 29650 components: - type: Transform pos: -77.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29852 + - uid: 29651 components: - type: Transform pos: -78.5,76.5 parent: 2 - - uid: 29853 + - uid: 29652 components: - type: Transform pos: 22.5,100.5 parent: 2 - - uid: 29854 + - uid: 29653 components: - type: Transform pos: -56.5,-82.5 parent: 2 - - uid: 29855 + - uid: 29654 components: - type: Transform pos: -57.5,-82.5 parent: 2 - - uid: 29856 + - uid: 29655 components: - type: Transform pos: -48.5,-80.5 parent: 2 - - uid: 29857 + - uid: 29656 components: - type: Transform pos: -49.5,-80.5 parent: 2 - - uid: 29858 + - uid: 29657 components: - type: Transform pos: 22.5,94.5 parent: 2 - - uid: 29859 + - uid: 29658 components: - type: Transform pos: 23.5,96.5 parent: 2 - - uid: 29860 + - uid: 29659 components: - type: Transform pos: 24.5,96.5 parent: 2 - - uid: 29861 + - uid: 29660 components: - type: Transform pos: -54.5,-80.5 parent: 2 - - uid: 29862 + - uid: 29661 components: - type: Transform pos: -55.5,-80.5 parent: 2 - - uid: 29863 + - uid: 29662 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 29864 + - uid: 29663 components: - type: Transform pos: -57.5,-80.5 parent: 2 - - uid: 29865 + - uid: 29664 components: - type: Transform pos: -53.5,-80.5 parent: 2 - - uid: 29866 + - uid: 29665 components: - type: Transform pos: -55.5,-88.5 parent: 2 - - uid: 29867 + - uid: 29666 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-44.5 parent: 2 - - uid: 29868 + - uid: 29667 components: - type: Transform pos: 30.5,98.5 parent: 2 - - uid: 29869 + - uid: 29668 components: - type: Transform pos: -46.5,-88.5 parent: 2 - - uid: 29870 + - uid: 29669 components: - type: Transform pos: 23.5,94.5 parent: 2 - - uid: 29871 + - uid: 29670 components: - type: Transform pos: 30.5,90.5 parent: 2 - - uid: 29872 + - uid: 29671 components: - type: Transform pos: -53.5,-90.5 parent: 2 - - uid: 29873 + - uid: 29672 components: - type: Transform pos: 23.5,100.5 parent: 2 - - uid: 29874 + - uid: 29673 components: - type: Transform pos: 30.5,92.5 parent: 2 - - uid: 29875 + - uid: 29674 components: - type: Transform pos: -48.5,-90.5 parent: 2 - - uid: 29876 + - uid: 29675 components: - type: Transform pos: -47.5,-90.5 parent: 2 - - uid: 29877 + - uid: 29676 components: - type: Transform pos: -81.5,70.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29878 + - uid: 29677 components: - type: Transform pos: -80.5,70.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29879 + - uid: 29678 components: - type: Transform pos: -78.5,70.5 parent: 2 - - uid: 29880 + - uid: 29679 components: - type: Transform pos: -79.5,70.5 parent: 2 - - uid: 29881 + - uid: 29680 components: - type: Transform pos: -80.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29882 + - uid: 29681 components: - type: Transform pos: -71.5,76.5 parent: 2 - - uid: 29883 + - uid: 29682 components: - type: Transform pos: -77.5,76.5 parent: 2 - - uid: 29884 + - uid: 29683 components: - type: Transform pos: -45.5,-84.5 parent: 2 - - uid: 29885 + - uid: 29684 components: - type: Transform pos: -45.5,-88.5 parent: 2 - - uid: 29886 + - uid: 29685 components: - type: Transform pos: -55.5,-82.5 parent: 2 - - uid: 29887 + - uid: 29686 components: - type: Transform pos: -54.5,-84.5 parent: 2 - - uid: 29888 + - uid: 29687 components: - type: Transform pos: -53.5,-82.5 parent: 2 - - uid: 29889 + - uid: 29688 components: - type: Transform pos: -47.5,-84.5 parent: 2 - - uid: 29890 + - uid: 29689 components: - type: Transform pos: -56.5,-86.5 parent: 2 - - uid: 29891 + - uid: 29690 components: - type: Transform pos: -57.5,-86.5 parent: 2 - - uid: 29892 + - uid: 29691 components: - type: Transform pos: -54.5,-86.5 parent: 2 - - uid: 29893 + - uid: 29692 components: - type: Transform pos: -55.5,-86.5 parent: 2 - - uid: 29894 + - uid: 29693 components: - type: Transform pos: -58.5,-86.5 parent: 2 - - uid: 29895 + - uid: 29694 components: - type: Transform pos: -54.5,-82.5 parent: 2 - - uid: 29896 + - uid: 29695 components: - type: Transform pos: -48.5,-88.5 parent: 2 - - uid: 29897 + - uid: 29696 components: - type: Transform pos: -49.5,-88.5 parent: 2 - - uid: 29898 + - uid: 29697 components: - type: Transform pos: -44.5,-84.5 parent: 2 - - uid: 29899 + - uid: 29698 components: - type: Transform pos: -47.5,-82.5 parent: 2 - - uid: 29900 + - uid: 29699 components: - type: Transform pos: -81.5,72.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29901 + - uid: 29700 components: - type: Transform pos: -79.5,72.5 parent: 2 - - uid: 29902 + - uid: 29701 components: - type: Transform pos: -80.5,72.5 parent: 2 - type: PowerSupplier supplyRate: 1125 - - uid: 29903 + - uid: 29702 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,80.5 parent: 2 - - uid: 29904 + - uid: 29703 components: - type: Transform pos: -45.5,-80.5 parent: 2 - - uid: 29905 + - uid: 29704 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,80.5 parent: 2 - - uid: 29906 + - uid: 29705 components: - type: Transform pos: -77.5,70.5 parent: 2 - - uid: 29907 + - uid: 29706 components: - type: Transform pos: 26.5,98.5 parent: 2 - - uid: 29908 + - uid: 29707 components: - type: Transform pos: -73.5,76.5 parent: 2 - - uid: 29909 + - uid: 29708 components: - type: Transform pos: -81.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29910 + - uid: 29709 components: - type: Transform pos: -56.5,-88.5 parent: 2 - - uid: 29911 + - uid: 29710 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,82.5 parent: 2 - - uid: 29912 + - uid: 29711 components: - type: Transform pos: 34.5,92.5 parent: 2 - - uid: 29913 + - uid: 29712 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,80.5 parent: 2 - - uid: 29914 + - uid: 29713 components: - type: Transform pos: -68.5,74.5 parent: 2 - - uid: 29915 + - uid: 29714 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,80.5 parent: 2 - - uid: 29916 + - uid: 29715 components: - type: Transform pos: 25.5,100.5 parent: 2 - - uid: 29917 + - uid: 29716 components: - type: Transform pos: 34.5,90.5 parent: 2 - - uid: 29918 + - uid: 29717 components: - type: Transform pos: -69.5,76.5 parent: 2 - - uid: 29919 + - uid: 29718 components: - type: Transform pos: -56.5,-80.5 parent: 2 - - uid: 29920 + - uid: 29719 components: - type: Transform pos: -57.5,-90.5 parent: 2 - - uid: 29921 + - uid: 29720 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,80.5 parent: 2 - - uid: 29922 + - uid: 29721 components: - type: Transform pos: -78.5,72.5 parent: 2 - - uid: 29923 + - uid: 29722 components: - type: Transform pos: -71.5,70.5 parent: 2 - - uid: 29924 + - uid: 29723 components: - type: Transform pos: -70.5,74.5 parent: 2 - - uid: 29925 + - uid: 29724 components: - type: Transform pos: 26.5,92.5 parent: 2 - - uid: 29926 + - uid: 29725 components: - type: Transform pos: 31.5,90.5 parent: 2 - - uid: 29927 + - uid: 29726 components: - type: Transform pos: 33.5,92.5 parent: 2 - - uid: 29928 + - uid: 29727 components: - type: Transform pos: 33.5,90.5 parent: 2 - - uid: 29929 + - uid: 29728 components: - type: Transform pos: -78.5,78.5 parent: 2 - - uid: 29930 + - uid: 29729 components: - type: Transform pos: -70.5,72.5 parent: 2 - - uid: 29931 + - uid: 29730 components: - type: Transform pos: -46.5,-82.5 parent: 2 - - uid: 29932 + - uid: 29731 components: - type: Transform pos: -48.5,-82.5 parent: 2 - - uid: 29933 + - uid: 29732 components: - type: Transform pos: -82.5,74.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29934 + - uid: 29733 components: - type: Transform pos: -79.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29935 + - uid: 29734 components: - type: Transform pos: -45.5,-90.5 parent: 2 - - uid: 29936 + - uid: 29735 components: - type: Transform pos: 26.5,100.5 parent: 2 - - uid: 29937 + - uid: 29736 components: - type: Transform pos: 22.5,90.5 parent: 2 - - uid: 29938 + - uid: 29737 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 29939 + - uid: 29738 components: - type: Transform pos: -46.5,-84.5 parent: 2 - - uid: 29940 + - uid: 29739 components: - type: Transform pos: -48.5,-86.5 parent: 2 - - uid: 29941 + - uid: 29740 components: - type: Transform pos: 26.5,90.5 parent: 2 - - uid: 29942 + - uid: 29741 components: - type: Transform pos: 32.5,92.5 parent: 2 - - uid: 29943 + - uid: 29742 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-50.5 parent: 2 - - uid: 29944 + - uid: 29743 components: - type: Transform pos: 30.5,100.5 parent: 2 - - uid: 29945 + - uid: 29744 components: - type: Transform pos: 31.5,96.5 parent: 2 - - uid: 29946 + - uid: 29745 components: - type: Transform pos: 25.5,96.5 parent: 2 - - uid: 29947 + - uid: 29746 components: - type: Transform pos: 32.5,96.5 parent: 2 - - uid: 29948 + - uid: 29747 components: - type: Transform pos: -69.5,68.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29949 + - uid: 29748 components: - type: Transform pos: -80.5,74.5 parent: 2 - - uid: 29950 + - uid: 29749 components: - type: Transform pos: -58.5,-84.5 parent: 2 - - uid: 29951 + - uid: 29750 components: - type: Transform pos: 22.5,98.5 parent: 2 - - uid: 29952 + - uid: 29751 components: - type: Transform pos: 21.5,96.5 parent: 2 - - uid: 29953 + - uid: 29752 components: - type: Transform pos: 31.5,98.5 parent: 2 - - uid: 29954 + - uid: 29753 components: - type: Transform pos: 34.5,100.5 parent: 2 - - uid: 29955 + - uid: 29754 components: - type: Transform pos: 31.5,92.5 parent: 2 - - uid: 29956 + - uid: 29755 components: - type: Transform pos: 32.5,100.5 parent: 2 - - uid: 29957 + - uid: 29756 components: - type: Transform pos: 21.5,94.5 parent: 2 - - uid: 29958 + - uid: 29757 components: - type: Transform pos: 22.5,92.5 parent: 2 - - uid: 29959 + - uid: 29758 components: - type: Transform pos: 35.5,96.5 parent: 2 - - uid: 29960 + - uid: 29759 components: - type: Transform pos: 32.5,98.5 parent: 2 - - uid: 29961 + - uid: 29760 components: - type: Transform pos: 23.5,98.5 parent: 2 - - uid: 29962 + - uid: 29761 components: - type: Transform pos: 25.5,92.5 parent: 2 - - uid: 29963 + - uid: 29762 components: - type: Transform pos: -72.5,72.5 parent: 2 - type: PowerSupplier supplyRate: 1126 - - uid: 29964 + - uid: 29763 components: - type: Transform pos: 34.5,96.5 parent: 2 - - uid: 29965 + - uid: 29764 components: - type: Transform pos: 34.5,98.5 parent: 2 - - uid: 29966 + - uid: 29765 components: - type: Transform pos: 34.5,94.5 parent: 2 - - uid: 29967 + - uid: 29766 components: - type: Transform pos: 24.5,92.5 parent: 2 - - uid: 29968 + - uid: 29767 components: - type: Transform pos: -45.5,-86.5 parent: 2 - - uid: 29969 + - uid: 29768 components: - type: Transform pos: -82.5,72.5 parent: 2 - type: PowerSupplier supplyRate: 1129 - - uid: 29970 + - uid: 29769 components: - type: Transform pos: -47.5,-88.5 parent: 2 - - uid: 29971 + - uid: 29770 components: - type: Transform pos: 33.5,100.5 parent: 2 - - uid: 29972 + - uid: 29771 components: - type: Transform pos: -45.5,-82.5 parent: 2 - - uid: 29973 + - uid: 29772 components: - type: Transform pos: -57.5,-88.5 parent: 2 - - uid: 29974 + - uid: 29773 components: - type: Transform pos: 33.5,94.5 parent: 2 - - uid: 29975 + - uid: 29774 components: - type: Transform pos: 31.5,94.5 parent: 2 - - uid: 29976 + - uid: 29775 components: - type: Transform pos: -49.5,-82.5 parent: 2 - - uid: 29977 + - uid: 29776 components: - type: Transform pos: 25.5,98.5 parent: 2 - - uid: 29978 + - uid: 29777 components: - type: Transform pos: -55.5,-90.5 parent: 2 - - uid: 29979 + - uid: 29778 components: - type: Transform pos: -71.5,78.5 parent: 2 - - uid: 29980 + - uid: 29779 components: - type: Transform pos: -49.5,-90.5 parent: 2 - - uid: 29981 + - uid: 29780 components: - type: Transform pos: -46.5,-90.5 parent: 2 - - uid: 29982 + - uid: 29781 components: - type: Transform pos: -69.5,74.5 parent: 2 - - uid: 29983 + - uid: 29782 components: - type: Transform pos: -70.5,76.5 parent: 2 - - uid: 29984 + - uid: 29783 components: - type: Transform pos: 25.5,90.5 parent: 2 - - uid: 29985 + - uid: 29784 components: - type: Transform pos: 23.5,92.5 parent: 2 - - uid: 29986 + - uid: 29785 components: - type: Transform pos: -54.5,-88.5 parent: 2 - - uid: 29987 + - uid: 29786 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,82.5 parent: 2 - - uid: 29988 + - uid: 29787 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,82.5 parent: 2 - - uid: 29989 + - uid: 29788 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,82.5 parent: 2 - - uid: 29990 + - uid: 29789 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,80.5 parent: 2 - - uid: 29991 + - uid: 29790 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,80.5 parent: 2 - - uid: 29992 + - uid: 29791 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,80.5 parent: 2 - - uid: 29993 + - uid: 29792 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,80.5 parent: 2 - - uid: 29994 + - uid: 29793 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,80.5 parent: 2 - - uid: 29995 + - uid: 29794 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,82.5 parent: 2 - - uid: 29996 + - uid: 29795 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,82.5 parent: 2 - - uid: 29997 + - uid: 29796 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,82.5 parent: 2 - - uid: 29998 + - uid: 29797 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,82.5 parent: 2 - - uid: 29999 + - uid: 29798 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,82.5 parent: 2 - - uid: 30000 + - uid: 29799 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-38.5 parent: 2 - - uid: 30001 + - uid: 29800 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-37.5 parent: 2 - - uid: 30002 + - uid: 29801 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-38.5 parent: 2 - - uid: 30003 + - uid: 29802 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-44.5 parent: 2 - - uid: 30004 + - uid: 29803 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-44.5 parent: 2 - - uid: 30005 + - uid: 29804 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-37.5 parent: 2 - - uid: 30006 + - uid: 29805 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-42.5 parent: 2 - - uid: 30007 + - uid: 29806 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-42.5 parent: 2 - - uid: 30008 + - uid: 29807 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-51.5 parent: 2 - - uid: 30009 + - uid: 29808 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-38.5 parent: 2 - - uid: 30010 + - uid: 29809 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-49.5 parent: 2 - - uid: 30011 + - uid: 29810 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-48.5 parent: 2 - - uid: 30012 + - uid: 29811 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-49.5 parent: 2 - - uid: 30013 + - uid: 29812 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-46.5 parent: 2 - - uid: 30014 + - uid: 29813 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-46.5 parent: 2 - - uid: 30015 + - uid: 29814 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-46.5 parent: 2 - - uid: 30016 + - uid: 29815 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-44.5 parent: 2 - - uid: 30017 + - uid: 29816 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-46.5 parent: 2 - - uid: 30018 + - uid: 29817 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-46.5 parent: 2 - - uid: 30019 + - uid: 29818 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-51.5 parent: 2 - - uid: 30020 + - uid: 29819 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-48.5 parent: 2 - - uid: 30021 + - uid: 29820 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-49.5 parent: 2 - - uid: 30022 + - uid: 29821 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-52.5 parent: 2 - - uid: 30023 + - uid: 29822 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-42.5 parent: 2 - - uid: 30024 + - uid: 29823 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-36.5 parent: 2 - - uid: 30025 + - uid: 29824 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-52.5 parent: 2 - - uid: 30026 + - uid: 29825 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-39.5 parent: 2 - - uid: 30027 + - uid: 29826 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-40.5 parent: 2 - - uid: 30028 + - uid: 29827 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-42.5 parent: 2 - - uid: 30029 + - uid: 29828 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-42.5 parent: 2 - - uid: 30030 + - uid: 29829 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-39.5 parent: 2 - - uid: 30031 + - uid: 29830 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-36.5 parent: 2 - - uid: 30032 + - uid: 29831 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-48.5 parent: 2 - - uid: 30033 + - uid: 29832 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-37.5 parent: 2 - - uid: 30034 + - uid: 29833 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-40.5 parent: 2 - - uid: 30035 + - uid: 29834 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-50.5 parent: 2 - - uid: 30036 + - uid: 29835 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-40.5 parent: 2 - - uid: 30037 + - uid: 29836 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-52.5 parent: 2 - - uid: 30038 + - uid: 29837 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-39.5 parent: 2 - - uid: 30039 + - uid: 29838 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-51.5 parent: 2 - - uid: 30040 + - uid: 29839 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-50.5 parent: 2 - - uid: 30041 + - uid: 29840 components: - type: Transform rot: 1.5707963267948966 rad @@ -226261,59 +226339,59 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 30042 + - uid: 29841 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-8.5 parent: 2 - - uid: 30043 + - uid: 29842 components: - type: Transform pos: 35.5,94.5 parent: 2 - - uid: 30044 + - uid: 29843 components: - type: Transform pos: 31.5,100.5 parent: 2 - - uid: 30045 + - uid: 29844 components: - type: Transform pos: 24.5,90.5 parent: 2 - - uid: 30046 + - uid: 29845 components: - type: Transform pos: 33.5,96.5 parent: 2 - - uid: 30047 + - uid: 29846 components: - type: Transform pos: 24.5,94.5 parent: 2 - - uid: 30048 + - uid: 29847 components: - type: Transform pos: 25.5,94.5 parent: 2 - - uid: 30049 + - uid: 29848 components: - type: Transform pos: 22.5,96.5 parent: 2 - - uid: 30050 + - uid: 29849 components: - type: Transform pos: 24.5,100.5 parent: 2 - - uid: 30051 + - uid: 29850 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-38.5 parent: 2 - - uid: 30052 + - uid: 29851 components: - type: Transform rot: -1.5707963267948966 rad @@ -226321,157 +226399,157 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 30053 + - uid: 29852 components: - type: Transform pos: -51.5,-93.5 parent: 2 - - uid: 30054 + - uid: 29853 components: - type: Transform pos: 28.5,103.5 parent: 2 - - uid: 30055 + - uid: 29854 components: - type: Transform pos: 88.5,-44.5 parent: 2 - - uid: 30056 + - uid: 29855 components: - type: Transform pos: -75.5,84.5 parent: 2 - proto: SolidSecretDoor entities: - - uid: 30057 + - uid: 29856 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-2.5 parent: 2 - - uid: 30058 + - uid: 29857 components: - type: Transform pos: 42.5,-3.5 parent: 2 - - uid: 30059 + - uid: 29858 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-60.5 parent: 2 - - uid: 30060 + - uid: 29859 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-69.5 parent: 2 - - uid: 30061 + - uid: 29860 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-36.5 parent: 2 - - uid: 30062 + - uid: 29861 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-3.5 parent: 2 - - uid: 30063 + - uid: 29862 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-77.5 parent: 2 - - uid: 30064 + - uid: 29863 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-81.5 parent: 2 - - uid: 30065 + - uid: 29864 components: - type: Transform pos: -52.5,-38.5 parent: 2 - - uid: 30066 + - uid: 29865 components: - type: Transform pos: -112.5,30.5 parent: 2 - - uid: 30067 + - uid: 29866 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,45.5 parent: 2 - - uid: 30068 + - uid: 29867 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-34.5 parent: 2 - - uid: 30069 + - uid: 29868 components: - type: Transform pos: 10.5,71.5 parent: 2 - proto: SpaceCash entities: - - uid: 30070 + - uid: 29869 components: - type: Transform pos: 59.386833,-30.475864 parent: 2 - - uid: 30071 + - uid: 29870 components: - type: Transform pos: 59.65246,-30.288364 parent: 2 - proto: SpaceCash10 entities: - - uid: 30072 + - uid: 29871 components: - type: Transform pos: -39.591003,-10.269159 parent: 2 - - uid: 30073 + - uid: 29872 components: - type: Transform pos: -39.856525,-9.26621 parent: 2 - - uid: 30074 + - uid: 29873 components: - type: Transform pos: -39.60576,-9.384204 parent: 2 - proto: SpaceCash500 entities: - - uid: 14519 + - uid: 14461 components: - type: Transform - parent: 14514 + parent: 14456 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15620 + - uid: 15603 components: - type: Transform - parent: 15618 + parent: 15601 - type: Physics canCollide: False - type: InsideEntityStorage - proto: SpaceHeaterAnchored entities: - - uid: 30075 + - uid: 29874 components: - type: Transform pos: -67.5,60.5 parent: 2 - proto: SpaceHeaterEnabled entities: - - uid: 30076 + - uid: 29875 components: - type: Transform pos: -69.5,54.5 @@ -226484,89 +226562,89 @@ entities: heatCapacity: 3500 - proto: Spaceshroom entities: - - uid: 30077 + - uid: 29876 components: - type: Transform pos: -26.5,-73.5 parent: 2 - - uid: 30078 + - uid: 29877 components: - type: Transform pos: -24.5,-61.5 parent: 2 - - uid: 30079 + - uid: 29878 components: - type: Transform pos: -27.5,-69.5 parent: 2 - - uid: 30080 + - uid: 29879 components: - type: Transform pos: 22.5,-55.5 parent: 2 - - uid: 30081 + - uid: 29880 components: - type: Transform pos: -15.5,-62.5 parent: 2 - - uid: 30082 + - uid: 29881 components: - type: Transform pos: -17.5,-62.5 parent: 2 - - uid: 30083 + - uid: 29882 components: - type: Transform pos: -26.5,-56.5 parent: 2 - - uid: 30084 + - uid: 29883 components: - type: Transform pos: -29.5,-56.5 parent: 2 - - uid: 30085 + - uid: 29884 components: - type: Transform pos: -52.5,-28.5 parent: 2 - - uid: 30086 + - uid: 29885 components: - type: Transform pos: -50.5,-25.5 parent: 2 - - uid: 30087 + - uid: 29886 components: - type: Transform pos: -52.5,-25.5 parent: 2 - - uid: 30088 + - uid: 29887 components: - type: Transform pos: -52.5,-24.5 parent: 2 - - uid: 30089 + - uid: 29888 components: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 30090 + - uid: 29889 components: - type: Transform pos: -53.5,-22.5 parent: 2 - - uid: 30091 + - uid: 29890 components: - type: Transform pos: -36.5,-21.5 parent: 2 - - uid: 30092 + - uid: 29891 components: - type: Transform pos: -34.5,-17.5 parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 30093 + - uid: 29892 components: - type: Transform rot: 1.5707963267948966 rad @@ -226574,279 +226652,279 @@ entities: parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 30094 + - uid: 29893 components: - type: Transform pos: 13.5,62.5 parent: 2 - type: SpamEmitSound enabled: False - - uid: 30095 + - uid: 29894 components: - type: Transform pos: 14.5,62.5 parent: 2 - type: SpamEmitSound enabled: False - - uid: 30096 + - uid: 29895 components: - type: Transform pos: 15.5,62.5 parent: 2 - type: SpamEmitSound enabled: False - - uid: 30097 + - uid: 29896 components: - type: Transform pos: 81.5,-51.5 parent: 2 - proto: SpawnMobAlexander entities: - - uid: 30098 + - uid: 29897 components: - type: Transform pos: -33.5,41.5 parent: 2 - proto: SpawnMobBandito entities: - - uid: 30099 + - uid: 29898 components: - type: Transform pos: -33.5,46.5 parent: 2 - proto: SpawnMobBear entities: - - uid: 30100 + - uid: 29899 components: - type: Transform pos: -44.5,-63.5 parent: 2 - - uid: 39694 + - uid: 39521 components: - type: Transform pos: -19.5,17.5 - parent: 38584 + parent: 38411 - proto: SpawnMobButterfly entities: - - uid: 30101 + - uid: 29900 components: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 30102 + - uid: 29901 components: - type: Transform pos: 1.5,-1.5 parent: 2 - proto: SpawnMobCarp entities: - - uid: 39695 + - uid: 39522 components: - type: Transform pos: 5.5,9.5 - parent: 38584 - - uid: 39696 + parent: 38411 + - uid: 39523 components: - type: Transform pos: -23.5,21.5 - parent: 38584 - - uid: 39697 + parent: 38411 + - uid: 39524 components: - type: Transform pos: -27.5,30.5 - parent: 38584 - - uid: 39698 + parent: 38411 + - uid: 39525 components: - type: Transform pos: -22.5,38.5 - parent: 38584 - - uid: 39699 + parent: 38411 + - uid: 39526 components: - type: Transform pos: 11.5,19.5 - parent: 38584 - - uid: 39700 + parent: 38411 + - uid: 39527 components: - type: Transform pos: 3.5,23.5 - parent: 38584 - - uid: 39701 + parent: 38411 + - uid: 39528 components: - type: Transform pos: -16.5,12.5 - parent: 38584 + parent: 38411 - proto: SpawnMobCatBingus entities: - - uid: 30103 + - uid: 29902 components: - type: Transform pos: 1.5,50.5 parent: 2 - - uid: 30104 + - uid: 29903 components: - type: Transform pos: 20.5,-45.5 parent: 2 - proto: SpawnMobCatKitten entities: - - uid: 30105 + - uid: 29904 components: - type: Transform pos: -1.5,-14.5 parent: 2 - - uid: 30106 + - uid: 29905 components: - type: Transform pos: 0.5,-15.5 parent: 2 - proto: SpawnMobCatSpace entities: - - uid: 30107 + - uid: 29906 components: - type: Transform pos: -11.5,19.5 parent: 2 - proto: SpawnMobCockroach entities: - - uid: 30108 + - uid: 29907 components: - type: Transform pos: 73.5,-4.5 parent: 2 - - uid: 30109 + - uid: 29908 components: - type: Transform pos: 69.5,19.5 parent: 2 - proto: SpawnMobCorgi entities: - - uid: 30110 + - uid: 29909 components: - type: Transform pos: -13.5,0.5 parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 30111 + - uid: 29910 components: - type: Transform pos: -52.5,33.5 parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 30112 + - uid: 29911 components: - type: Transform pos: 11.5,5.5 parent: 2 - proto: SpawnMobGorillaLargo entities: - - uid: 30113 + - uid: 29912 components: - type: Transform pos: 27.5,41.5 parent: 2 - - uid: 30122 + - uid: 29913 components: - type: Transform pos: -26.5,52.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 30114 + - uid: 29914 components: - type: Transform pos: 52.5,9.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 30115 + - uid: 29915 components: - type: Transform pos: -7.5,42.5 parent: 2 - proto: SpawnMobMouse entities: - - uid: 30116 + - uid: 29916 components: - type: Transform pos: 36.5,-49.5 parent: 2 - - uid: 30117 + - uid: 29917 components: - type: Transform pos: -28.5,58.5 parent: 2 - - uid: 30118 + - uid: 29918 components: - type: Transform pos: -60.5,-20.5 parent: 2 - - uid: 30119 + - uid: 29919 components: - type: Transform pos: 28.5,56.5 parent: 2 - - uid: 30120 + - uid: 29920 components: - type: Transform pos: 15.5,72.5 parent: 2 - proto: SpawnMobPossumMorty entities: - - uid: 30121 + - uid: 29921 components: - type: Transform pos: -37.5,50.5 parent: 2 - proto: SpawnMobShiva entities: - - uid: 30123 + - uid: 29922 components: - type: Transform pos: 40.5,22.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: - - uid: 30124 + - uid: 29923 components: - type: Transform pos: -21.5,-5.5 parent: 2 - proto: SpawnMobSmile entities: - - uid: 30125 + - uid: 29924 components: - type: Transform pos: -20.5,-39.5 parent: 2 - proto: SpawnMobSpaceSpider entities: - - uid: 30126 + - uid: 29925 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-34.5 parent: 2 - - uid: 30127 + - uid: 29926 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-37.5 parent: 2 - - uid: 41046 + - uid: 29927 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 - - uid: 41047 + - uid: 29928 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-25.5 parent: 2 - - uid: 41048 + - uid: 29929 components: - type: Transform rot: -1.5707963267948966 rad @@ -226854,1258 +226932,1258 @@ entities: parent: 2 - proto: SpawnMobWalter entities: - - uid: 30128 + - uid: 29930 components: - type: Transform pos: 7.5,-29.5 parent: 2 - proto: SpawnPointAtmos entities: - - uid: 30129 + - uid: 29931 components: - type: Transform pos: -53.5,33.5 parent: 2 - - uid: 30130 + - uid: 29932 components: - type: Transform pos: -53.5,34.5 parent: 2 - - uid: 30131 + - uid: 29933 components: - type: Transform pos: -53.5,32.5 parent: 2 - proto: SpawnPointBartender entities: - - uid: 30132 + - uid: 29934 components: - type: Transform pos: -1.5,42.5 parent: 2 - - uid: 30133 + - uid: 29935 components: - type: Transform pos: -7.5,41.5 parent: 2 - proto: SpawnPointBorg entities: - - uid: 30134 + - uid: 29936 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 30135 + - uid: 29937 components: - type: Transform pos: -7.5,-38.5 parent: 2 - proto: SpawnPointBotanist entities: - - uid: 30136 + - uid: 29938 components: - type: Transform pos: -24.5,50.5 parent: 2 - - uid: 30137 + - uid: 29939 components: - type: Transform pos: -27.5,46.5 parent: 2 - - uid: 30138 + - uid: 29940 components: - type: Transform pos: -32.5,51.5 parent: 2 - - uid: 30139 + - uid: 29941 components: - type: Transform pos: -37.5,48.5 parent: 2 - proto: SpawnPointBoxer entities: - - uid: 30140 + - uid: 29942 components: - type: Transform pos: 59.5,-18.5 parent: 2 - - uid: 30141 + - uid: 29943 components: - type: Transform pos: 59.5,-20.5 parent: 2 - proto: SpawnPointCaptain entities: - - uid: 30142 + - uid: 29944 components: - type: Transform pos: 8.5,6.5 parent: 2 - proto: SpawnPointCargoTechnician entities: - - uid: 30143 + - uid: 29945 components: - type: Transform pos: 9.5,33.5 parent: 2 - - uid: 30144 + - uid: 29946 components: - type: Transform pos: 15.5,26.5 parent: 2 - - uid: 30145 + - uid: 29947 components: - type: Transform pos: 15.5,37.5 parent: 2 - - uid: 30146 + - uid: 29948 components: - type: Transform pos: 19.5,38.5 parent: 2 - proto: SpawnPointChaplain entities: - - uid: 30147 + - uid: 29949 components: - type: Transform pos: -16.5,-74.5 parent: 2 - proto: SpawnPointChef entities: - - uid: 30148 + - uid: 29950 components: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 30149 + - uid: 29951 components: - type: Transform pos: -30.5,35.5 parent: 2 - proto: SpawnPointChemist entities: - - uid: 30150 + - uid: 29952 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 30151 + - uid: 29953 components: - type: Transform pos: 5.5,-29.5 parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 30152 + - uid: 29954 components: - type: Transform pos: -63.5,8.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 30153 + - uid: 29955 components: - type: Transform pos: 23.5,-47.5 parent: 2 - proto: SpawnPointClown entities: - - uid: 30154 + - uid: 29956 components: - type: Transform pos: -12.5,52.5 parent: 2 - proto: SpawnPointDetective entities: - - uid: 30155 + - uid: 29957 components: - type: Transform pos: 32.5,9.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 30156 + - uid: 29958 components: - type: Transform pos: -13.5,4.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 30157 + - uid: 29959 components: - type: Transform pos: 40.5,20.5 parent: 2 - proto: SpawnPointJanitor entities: - - uid: 30158 + - uid: 29960 components: - type: Transform pos: 1.5,52.5 parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 30159 + - uid: 29961 components: - type: Transform pos: -27.5,89.5 parent: 2 - - uid: 30160 + - uid: 29962 components: - type: Transform pos: -27.5,91.5 parent: 2 - - uid: 30161 + - uid: 29963 components: - type: Transform pos: -31.5,91.5 parent: 2 - - uid: 30162 + - uid: 29964 components: - type: Transform pos: -31.5,89.5 parent: 2 - - uid: 30163 + - uid: 29965 components: - type: Transform pos: -9.5,89.5 parent: 2 - - uid: 30164 + - uid: 29966 components: - type: Transform pos: -13.5,91.5 parent: 2 - - uid: 30165 + - uid: 29967 components: - type: Transform pos: -13.5,89.5 parent: 2 - - uid: 30166 + - uid: 29968 components: - type: Transform pos: -9.5,91.5 parent: 2 - proto: SpawnPointLawyer entities: - - uid: 30167 + - uid: 29969 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 30168 + - uid: 29970 components: - type: Transform pos: 33.5,-0.5 parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 30169 + - uid: 29971 components: - type: Transform pos: -21.5,-10.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 30170 + - uid: 29972 components: - type: Transform pos: 30.5,-43.5 parent: 2 - - uid: 30171 + - uid: 29973 components: - type: Transform pos: 30.5,-25.5 parent: 2 - - uid: 30172 + - uid: 29974 components: - type: Transform pos: 5.5,-49.5 parent: 2 - - uid: 30173 + - uid: 29975 components: - type: Transform pos: 22.5,-39.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 30174 + - uid: 29976 components: - type: Transform pos: 22.5,-26.5 parent: 2 - proto: SpawnPointMime entities: - - uid: 30175 + - uid: 29977 components: - type: Transform pos: -1.5,44.5 parent: 2 - proto: SpawnPointMusician entities: - - uid: 30176 + - uid: 29978 components: - type: Transform pos: 44.5,-24.5 parent: 2 - - uid: 30177 + - uid: 29979 components: - type: Transform pos: -2.5,54.5 parent: 2 - proto: SpawnPointObserver entities: - - uid: 30178 + - uid: 29980 components: - type: Transform pos: -0.5,23.5 parent: 2 - proto: SpawnPointParamedic entities: - - uid: 30179 + - uid: 29981 components: - type: Transform pos: 13.5,-43.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 30180 + - uid: 29982 components: - type: Transform pos: -26.5,13.5 parent: 2 - - uid: 30181 + - uid: 29983 components: - type: Transform pos: 6.5,-22.5 parent: 2 - - uid: 30182 + - uid: 29984 components: - type: Transform pos: -23.5,10.5 parent: 2 - - uid: 30183 + - uid: 29985 components: - type: Transform pos: -26.5,10.5 parent: 2 - - uid: 30184 + - uid: 29986 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 30185 + - uid: 29987 components: - type: Transform pos: -23.5,13.5 parent: 2 - - uid: 30186 + - uid: 29988 components: - type: Transform pos: -23.5,59.5 parent: 2 - proto: SpawnPointPilot entities: - - uid: 30187 + - uid: 29989 components: - type: Transform pos: 98.5,12.5 parent: 2 - proto: SpawnPointPsychologist entities: - - uid: 30188 + - uid: 29990 components: - type: Transform pos: 15.5,-50.5 parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 30189 + - uid: 29991 components: - type: Transform pos: 28.5,36.5 parent: 2 - proto: SpawnPointReporter entities: - - uid: 30190 + - uid: 29992 components: - type: Transform pos: -23.5,22.5 parent: 2 - - uid: 30191 + - uid: 29993 components: - type: Transform pos: -26.5,20.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 30192 + - uid: 29994 components: - type: Transform pos: -30.5,-34.5 parent: 2 - - uid: 30193 + - uid: 29995 components: - type: Transform pos: -17.5,-57.5 parent: 2 - - uid: 30194 + - uid: 29996 components: - type: Transform pos: -24.5,-51.5 parent: 2 - - uid: 30195 + - uid: 29997 components: - type: Transform pos: -23.5,-23.5 parent: 2 - - uid: 30196 + - uid: 29998 components: - type: Transform pos: -9.5,-46.5 parent: 2 - - uid: 30197 + - uid: 29999 components: - type: Transform pos: -29.5,-46.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 30198 + - uid: 30000 components: - type: Transform pos: -16.5,-46.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 30199 + - uid: 30001 components: - type: Transform pos: 24.5,31.5 parent: 2 - - uid: 30200 + - uid: 30002 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 30201 + - uid: 30003 components: - type: Transform pos: 22.5,31.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 30202 + - uid: 30004 components: - type: Transform pos: -32.5,-41.5 parent: 2 - - uid: 30203 + - uid: 30005 components: - type: Transform pos: -25.5,-44.5 parent: 2 - - uid: 30204 + - uid: 30006 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 30205 + - uid: 30007 components: - type: Transform pos: -4.5,-30.5 parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 30206 + - uid: 30008 components: - type: Transform pos: 69.5,24.5 parent: 2 - - uid: 30207 + - uid: 30009 components: - type: Transform pos: 64.5,24.5 parent: 2 - - uid: 30208 + - uid: 30010 components: - type: Transform pos: 56.5,18.5 parent: 2 - - uid: 30209 + - uid: 30011 components: - type: Transform pos: 46.5,20.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 30210 + - uid: 30012 components: - type: Transform pos: 67.5,24.5 parent: 2 - - uid: 30211 + - uid: 30013 components: - type: Transform pos: 57.5,12.5 parent: 2 - - uid: 30212 + - uid: 30014 components: - type: Transform pos: 73.5,14.5 parent: 2 - - uid: 30213 + - uid: 30015 components: - type: Transform pos: 46.5,21.5 parent: 2 - - uid: 30214 + - uid: 30016 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 30215 + - uid: 30017 components: - type: Transform pos: 62.5,24.5 parent: 2 - - uid: 30216 + - uid: 30018 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 30217 + - uid: 30019 components: - type: Transform pos: -18.5,-25.5 parent: 2 - - uid: 30218 + - uid: 30020 components: - type: Transform pos: 3.5,-59.5 parent: 2 - - uid: 30219 + - uid: 30021 components: - type: Transform pos: 2.5,62.5 parent: 2 - - uid: 30220 + - uid: 30022 components: - type: Transform pos: 57.5,15.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 30221 + - uid: 30023 components: - type: Transform pos: -30.5,41.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 30222 + - uid: 30024 components: - type: Transform pos: -46.5,-13.5 parent: 2 - - uid: 30223 + - uid: 30025 components: - type: Transform pos: -48.5,-13.5 parent: 2 - - uid: 30224 + - uid: 30026 components: - type: Transform pos: -45.5,0.5 parent: 2 - - uid: 30225 + - uid: 30027 components: - type: Transform pos: -56.5,-15.5 parent: 2 - - uid: 30226 + - uid: 30028 components: - type: Transform pos: -78.5,-0.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 30227 + - uid: 30029 components: - type: Transform pos: -58.5,-7.5 parent: 2 - - uid: 30228 + - uid: 30030 components: - type: Transform pos: -71.5,14.5 parent: 2 - proto: SpawnPointWarden entities: - - uid: 30229 + - uid: 30031 components: - type: Transform pos: 50.5,8.5 parent: 2 - proto: SpawnPointZookeeper entities: - - uid: 30230 + - uid: 30032 components: - type: Transform pos: 3.5,-15.5 parent: 2 - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 30231 + - uid: 30033 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30232 + - uid: 30034 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30233 + - uid: 30035 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30234 + - uid: 30036 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30235 + - uid: 30037 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30236 + - uid: 30038 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30237 + - uid: 30039 components: - type: Transform pos: 24.5,40.5 parent: 2 - - uid: 30238 + - uid: 30040 components: - type: Transform pos: 24.5,40.5 parent: 2 - proto: SpeedLoaderMagnum entities: - - uid: 30239 + - uid: 30041 components: - type: Transform pos: 36.701893,18.372128 parent: 2 - proto: SpiderWeb entities: - - uid: 30240 + - uid: 30042 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-33.5 parent: 2 - - uid: 30241 + - uid: 30043 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-33.5 parent: 2 - - uid: 30242 + - uid: 30044 components: - type: Transform pos: -71.5,-34.5 parent: 2 - - uid: 30243 + - uid: 30045 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-37.5 parent: 2 - - uid: 30244 + - uid: 30046 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-37.5 parent: 2 - - uid: 30245 + - uid: 30047 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-37.5 parent: 2 - - uid: 30246 + - uid: 30048 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-37.5 parent: 2 - - uid: 30247 + - uid: 30049 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-35.5 parent: 2 - - uid: 30248 + - uid: 30050 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-34.5 parent: 2 - - uid: 30249 + - uid: 30051 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-35.5 parent: 2 - - uid: 30250 + - uid: 30052 components: - type: Transform pos: -70.5,-36.5 parent: 2 - - uid: 30251 + - uid: 30053 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-36.5 parent: 2 - - uid: 30252 + - uid: 30054 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-36.5 parent: 2 - - uid: 30253 + - uid: 30055 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-34.5 parent: 2 - - uid: 30254 + - uid: 30056 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-35.5 parent: 2 - - uid: 30255 + - uid: 30057 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-36.5 parent: 2 - - uid: 30256 + - uid: 30058 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 - - uid: 30257 + - uid: 30059 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-35.5 parent: 2 - - uid: 30258 + - uid: 30060 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-35.5 parent: 2 - - uid: 30259 + - uid: 30061 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-34.5 parent: 2 - - uid: 30260 + - uid: 30062 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-36.5 parent: 2 - - uid: 30261 + - uid: 30063 components: - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 30262 + - uid: 30064 components: - type: Transform pos: -40.5,-17.5 parent: 2 - - uid: 30263 + - uid: 30065 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-15.5 parent: 2 - - uid: 30264 + - uid: 30066 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 - - uid: 30265 + - uid: 30067 components: - type: Transform pos: -68.5,-35.5 parent: 2 - - uid: 30266 + - uid: 30068 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-35.5 parent: 2 - - uid: 30267 + - uid: 30069 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-36.5 parent: 2 - - uid: 30268 + - uid: 30070 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-35.5 parent: 2 - - uid: 30269 + - uid: 30071 components: - type: Transform pos: -66.5,-36.5 parent: 2 - - uid: 30270 + - uid: 30072 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-33.5 parent: 2 - - uid: 30271 + - uid: 30073 components: - type: Transform pos: -61.5,-35.5 parent: 2 - - uid: 30272 + - uid: 30074 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-37.5 parent: 2 - - uid: 30273 + - uid: 30075 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-37.5 parent: 2 - - uid: 30274 + - uid: 30076 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-35.5 parent: 2 - - uid: 30275 + - uid: 30077 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-37.5 parent: 2 - - uid: 30276 + - uid: 30078 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-36.5 parent: 2 - - uid: 30277 + - uid: 30079 components: - type: Transform pos: -61.5,-37.5 parent: 2 - - uid: 30278 + - uid: 30080 components: - type: Transform pos: -61.5,-36.5 parent: 2 - - uid: 30279 + - uid: 30081 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-33.5 parent: 2 - - uid: 30280 + - uid: 30082 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-33.5 parent: 2 - - uid: 30281 + - uid: 30083 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-33.5 parent: 2 - - uid: 30282 + - uid: 30084 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-36.5 parent: 2 - - uid: 30283 + - uid: 30085 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-37.5 parent: 2 - - uid: 30284 + - uid: 30086 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-37.5 parent: 2 - - uid: 30285 + - uid: 30087 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-33.5 parent: 2 - - uid: 30286 + - uid: 30088 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-33.5 parent: 2 - - uid: 30287 + - uid: 30089 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-37.5 parent: 2 - - uid: 30288 + - uid: 30090 components: - type: Transform pos: -62.5,-37.5 parent: 2 - - uid: 40938 + - uid: 30091 components: - type: Transform pos: -71.5,-32.5 parent: 2 - - uid: 40939 + - uid: 30092 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-30.5 parent: 2 - - uid: 40940 + - uid: 30093 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-29.5 parent: 2 - - uid: 40941 + - uid: 30094 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-29.5 parent: 2 - - uid: 40942 + - uid: 30095 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-31.5 parent: 2 - - uid: 40943 + - uid: 30096 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-30.5 parent: 2 - - uid: 40944 + - uid: 30097 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-31.5 parent: 2 - - uid: 40945 + - uid: 30098 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-31.5 parent: 2 - - uid: 40946 + - uid: 30099 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-31.5 parent: 2 - - uid: 40947 + - uid: 30100 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-30.5 parent: 2 - - uid: 40948 + - uid: 30101 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-32.5 parent: 2 - - uid: 40949 + - uid: 30102 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-31.5 parent: 2 - - uid: 40950 + - uid: 30103 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-31.5 parent: 2 - - uid: 40951 + - uid: 30104 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-30.5 parent: 2 - - uid: 40952 + - uid: 30105 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-30.5 parent: 2 - - uid: 40953 + - uid: 30106 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-30.5 parent: 2 - - uid: 40954 + - uid: 30107 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-29.5 parent: 2 - - uid: 40955 + - uid: 30108 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-22.5 parent: 2 - - uid: 40956 + - uid: 30109 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-23.5 parent: 2 - - uid: 40957 + - uid: 30110 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-24.5 parent: 2 - - uid: 40958 + - uid: 30111 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-22.5 parent: 2 - - uid: 40959 + - uid: 30112 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-23.5 parent: 2 - - uid: 40960 + - uid: 30113 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-24.5 parent: 2 - - uid: 40961 + - uid: 30114 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-25.5 parent: 2 - - uid: 40962 + - uid: 30115 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-26.5 parent: 2 - - uid: 40963 + - uid: 30116 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-27.5 parent: 2 - - uid: 40964 + - uid: 30117 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-30.5 parent: 2 - - uid: 40965 + - uid: 30118 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-29.5 parent: 2 - - uid: 40966 + - uid: 30119 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-30.5 parent: 2 - - uid: 40967 + - uid: 30120 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-28.5 parent: 2 - - uid: 40968 + - uid: 30121 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-28.5 parent: 2 - - uid: 40969 + - uid: 30122 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-28.5 parent: 2 - - uid: 40970 + - uid: 30123 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-27.5 parent: 2 - - uid: 40971 + - uid: 30124 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-26.5 parent: 2 - - uid: 40972 + - uid: 30125 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-27.5 parent: 2 - - uid: 40973 + - uid: 30126 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-25.5 parent: 2 - - uid: 40974 + - uid: 30127 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-24.5 parent: 2 - - uid: 40975 + - uid: 30128 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 - - uid: 40976 + - uid: 30129 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-22.5 parent: 2 - - uid: 40977 + - uid: 30130 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-23.5 parent: 2 - - uid: 40978 + - uid: 30131 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-22.5 parent: 2 - - uid: 40979 + - uid: 30132 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-23.5 parent: 2 - - uid: 40980 + - uid: 30133 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-24.5 parent: 2 - - uid: 40981 + - uid: 30134 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-23.5 parent: 2 - - uid: 40982 + - uid: 30135 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-31.5 parent: 2 - - uid: 41016 + - uid: 30136 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-25.5 parent: 2 - - uid: 41017 + - uid: 30137 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-26.5 parent: 2 - - uid: 41018 + - uid: 30138 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-27.5 parent: 2 - - uid: 41019 + - uid: 30139 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-26.5 parent: 2 - - uid: 41020 + - uid: 30140 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-26.5 parent: 2 - - uid: 41021 + - uid: 30141 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-25.5 parent: 2 - - uid: 41022 + - uid: 30142 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-24.5 parent: 2 - - uid: 41023 + - uid: 30143 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-25.5 parent: 2 - - uid: 41024 + - uid: 30144 components: - type: Transform rot: 3.141592653589793 rad @@ -228113,38 +228191,38 @@ entities: parent: 2 - proto: Spoon entities: - - uid: 30289 + - uid: 30145 components: - type: Transform rot: -1.5707953085339508 rad pos: -74.282104,-34.276745 parent: 2 - - uid: 30290 + - uid: 30146 components: - type: Transform pos: -31.475065,36.564438 parent: 2 - proto: SpoonPlastic entities: - - uid: 30291 + - uid: 30147 components: - type: Transform rot: 3.141592653589793 rad pos: 64.98825,27.640116 parent: 2 - - uid: 30292 + - uid: 30148 components: - type: Transform rot: 3.141592653589793 rad pos: 64.86325,27.640116 parent: 2 - - uid: 30293 + - uid: 30149 components: - type: Transform rot: 3.141592653589793 rad pos: 65.082,27.640116 parent: 2 - - uid: 30294 + - uid: 30150 components: - type: Transform rot: 3.141592653589793 rad @@ -228152,71 +228230,71 @@ entities: parent: 2 - proto: SprayBottle entities: - - uid: 30295 + - uid: 30151 components: - type: Transform pos: 26.487522,-68.49196 parent: 2 - type: Physics canCollide: False - - uid: 30296 + - uid: 30152 components: - type: Transform pos: 28.736155,-26.569202 parent: 2 - proto: SprayBottleSpaceCleaner entities: - - uid: 30297 + - uid: 30153 components: - type: Transform pos: 93.58091,7.554364 parent: 2 - - uid: 30298 + - uid: 30154 components: - type: Transform pos: -39.305145,-61.47805 parent: 2 - - uid: 30299 + - uid: 30155 components: - type: Transform pos: 3.2526941,-48.487885 parent: 2 - - uid: 30300 + - uid: 30156 components: - type: Transform pos: 34.471386,-30.622177 parent: 2 - type: Physics canCollide: False - - uid: 30301 + - uid: 30157 components: - type: Transform pos: 3.4554992,-45.05886 parent: 2 - - uid: 30302 + - uid: 30158 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 93.36849,7.433058 parent: 2 - - uid: 39702 + - uid: 39529 components: - type: Transform pos: -11.299875,13.5789795 - parent: 38584 - - uid: 39703 + parent: 38411 + - uid: 39530 components: - type: Transform pos: -11.72175,13.2977295 - parent: 38584 + parent: 38411 - proto: SprayPainter entities: - - uid: 30303 + - uid: 30159 components: - type: Transform pos: -28.478903,10.493882 parent: 2 - - uid: 30304 + - uid: 30160 components: - type: Transform pos: -54.48809,-5.204091 @@ -228225,140 +228303,140 @@ entities: canCollide: False - proto: Stairs entities: - - uid: 30305 + - uid: 30161 components: - type: Transform pos: -52.5,16.5 parent: 2 - - uid: 30306 + - uid: 30162 components: - type: Transform pos: -51.5,16.5 parent: 2 - - uid: 30307 + - uid: 30163 components: - type: Transform pos: -53.5,16.5 parent: 2 - - uid: 30308 + - uid: 30164 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,0.5 parent: 2 - - uid: 30309 + - uid: 30165 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,1.5 parent: 2 - - uid: 30310 + - uid: 30166 components: - type: Transform pos: 84.5,3.5 parent: 2 - - uid: 30311 + - uid: 30167 components: - type: Transform pos: 86.5,3.5 parent: 2 - - uid: 30312 + - uid: 30168 components: - type: Transform pos: 31.5,-3.5 parent: 2 - - uid: 30313 + - uid: 30169 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,0.5 parent: 2 - - uid: 30314 + - uid: 30170 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,2.5 parent: 2 - - uid: 30315 + - uid: 30171 components: - type: Transform pos: 85.5,3.5 parent: 2 - - uid: 30316 + - uid: 30172 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-70.5 parent: 2 - - uid: 30317 + - uid: 30173 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-69.5 parent: 2 - - uid: 30318 + - uid: 30174 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-68.5 parent: 2 - - uid: 30319 + - uid: 30175 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-70.5 parent: 2 - - uid: 30320 + - uid: 30176 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-69.5 parent: 2 - - uid: 30321 + - uid: 30177 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-68.5 parent: 2 - - uid: 30322 + - uid: 30178 components: - type: Transform pos: -4.5,-73.5 parent: 2 - - uid: 30323 + - uid: 30179 components: - type: Transform pos: -3.5,-73.5 parent: 2 - - uid: 30324 + - uid: 30180 components: - type: Transform pos: -54.5,16.5 parent: 2 - - uid: 39704 + - uid: 39531 components: - type: Transform pos: -13.5,-0.5 - parent: 38584 - - uid: 39705 + parent: 38411 + - uid: 39532 components: - type: Transform pos: -11.5,-0.5 - parent: 38584 - - uid: 39706 + parent: 38411 + - uid: 39533 components: - type: Transform pos: -12.5,-0.5 - parent: 38584 + parent: 38411 - proto: StairStageDark entities: - - uid: 30325 + - uid: 30181 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-78.5 parent: 2 - - uid: 30326 + - uid: 30182 components: - type: Transform rot: -1.5707963267948966 rad @@ -228366,21 +228444,21 @@ entities: parent: 2 - proto: StairStageWhite entities: - - uid: 39707 + - uid: 39534 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-4.5 - parent: 38584 + parent: 38411 - proto: StairStageWood entities: - - uid: 30327 + - uid: 30183 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 2 - - uid: 30328 + - uid: 30184 components: - type: Transform rot: 3.141592653589793 rad @@ -228388,54 +228466,54 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 30329 + - uid: 30185 components: - type: Transform pos: 32.5,-30.5 parent: 2 - - uid: 30330 + - uid: 30186 components: - type: Transform pos: 26.5,-25.5 parent: 2 - - uid: 30331 + - uid: 30187 components: - type: Transform pos: 63.5,-5.5 parent: 2 - - uid: 30332 + - uid: 30188 components: - type: Transform pos: 40.5,-65.5 parent: 2 - - uid: 30333 + - uid: 30189 components: - type: Transform pos: 24.5,-25.5 parent: 2 - - uid: 30334 + - uid: 30190 components: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 39708 + - uid: 39535 components: - type: Transform pos: -5.5,-5.5 - parent: 38584 - - uid: 39709 + parent: 38411 + - uid: 39536 components: - type: Transform pos: -4.5,-5.5 - parent: 38584 + parent: 38411 - proto: StationGoalPaper entities: - - uid: 1647 + - uid: 1651 components: - type: MetaData name: разрешение на ношение оружия - type: Transform - parent: 1645 + parent: 1649 - type: Paper content: >- [color=#1b487e]███░███░░░░██░░░░[/color] @@ -228473,61 +228551,61 @@ entities: - type: InsideEntityStorage - proto: StationMap entities: - - uid: 30335 + - uid: 30191 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-12.5 parent: 2 - - uid: 30336 + - uid: 30192 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,66.5 parent: 2 - - uid: 30337 + - uid: 30193 components: - type: Transform pos: -21.5,53.5 parent: 2 - - uid: 30338 + - uid: 30194 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-1.5 parent: 2 - - uid: 30339 + - uid: 30195 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-52.5 parent: 2 - - uid: 30340 + - uid: 30196 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-78.5 parent: 2 - - uid: 30341 + - uid: 30197 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 - - uid: 30342 + - uid: 30198 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,6.5 parent: 2 - - uid: 30343 + - uid: 30199 components: - type: Transform pos: 50.5,20.5 parent: 2 - proto: StationMapAssembly entities: - - uid: 30344 + - uid: 30200 components: - type: Transform rot: 1.5707963267948966 rad @@ -228535,33 +228613,33 @@ entities: parent: 2 - proto: StationMapBroken entities: - - uid: 30345 + - uid: 30201 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-61.5 parent: 2 - - uid: 30346 + - uid: 30202 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-40.5 parent: 2 - - uid: 30347 + - uid: 30203 components: - type: Transform pos: -63.5,-34.5 parent: 2 - proto: StatueVenusBlue entities: - - uid: 30348 + - uid: 30204 components: - type: Transform pos: -11.5,62.5 parent: 2 - proto: StatueVenusRed entities: - - uid: 30349 + - uid: 30205 components: - type: Transform rot: 3.141592653589793 rad @@ -228569,7 +228647,7 @@ entities: parent: 2 - proto: StealthBox entities: - - uid: 30350 + - uid: 30206 components: - type: Transform pos: 55.50523,-7.4137764 @@ -228578,25 +228656,25 @@ entities: lastVisibility: 1.5 - proto: SteelBench entities: - - uid: 30351 + - uid: 30207 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,26.5 parent: 2 - - uid: 30352 + - uid: 30208 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,25.5 parent: 2 - - uid: 30353 + - uid: 30209 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-36.5 parent: 2 - - uid: 30354 + - uid: 30210 components: - type: Transform rot: 1.5707963267948966 rad @@ -228604,7 +228682,7 @@ entities: parent: 2 - proto: SteelOre1 entities: - - uid: 30355 + - uid: 30211 components: - type: Transform rot: 3.141593671850739 rad @@ -228612,188 +228690,188 @@ entities: parent: 2 - proto: Stool entities: - - uid: 30356 + - uid: 30212 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.54447,14.7 parent: 2 - - uid: 30357 + - uid: 30213 components: - type: Transform rot: 3.141592653589793 rad pos: -31.521593,-65.5285 parent: 2 - - uid: 30358 + - uid: 30214 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,72.5 parent: 2 - - uid: 30359 + - uid: 30215 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-10.5 parent: 2 - - uid: 30360 + - uid: 30216 components: - type: Transform pos: 0.47216275,51.47862 parent: 2 - - uid: 30361 + - uid: 30217 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,61.5 parent: 2 - - uid: 30362 + - uid: 30218 components: - type: Transform pos: 36.5,-8.5 parent: 2 - - uid: 30363 + - uid: 30219 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-30.5 parent: 2 - - uid: 30364 + - uid: 30220 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-31.5 parent: 2 - - uid: 30365 + - uid: 30221 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,28.5 parent: 2 - - uid: 30366 + - uid: 30222 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,27.5 parent: 2 - - uid: 30367 + - uid: 30223 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,27.5 parent: 2 - - uid: 30368 + - uid: 30224 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,26.5 parent: 2 - - uid: 30369 + - uid: 30225 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,33.5 parent: 2 - - uid: 30370 + - uid: 30226 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,32.5 parent: 2 - - uid: 30371 + - uid: 30227 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,34.5 parent: 2 - - uid: 30372 + - uid: 30228 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,33.5 parent: 2 - - uid: 30373 + - uid: 30229 components: - type: Transform pos: -5.5659666,27.617414 parent: 2 - - uid: 30374 + - uid: 30230 components: - type: Transform pos: 38.5,-8.5 parent: 2 - - uid: 30375 + - uid: 30231 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,26.5 parent: 2 - - uid: 30376 + - uid: 30232 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,72.5 parent: 2 - - uid: 30377 + - uid: 30233 components: - type: Transform pos: -5.5,33.5 parent: 2 - - uid: 30378 + - uid: 30234 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-13.5 parent: 2 - - uid: 30379 + - uid: 30235 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,31.5 parent: 2 - - uid: 30380 + - uid: 30236 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-9.5 parent: 2 - - uid: 30381 + - uid: 30237 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-14.5 parent: 2 - - uid: 30382 + - uid: 30238 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,34.5 parent: 2 - - uid: 30383 + - uid: 30239 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,29.5 parent: 2 - - uid: 30384 + - uid: 30240 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-14.5 parent: 2 - - uid: 30385 + - uid: 30241 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-13.5 parent: 2 - - uid: 30386 + - uid: 30242 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-34.5 parent: 2 - - uid: 30387 + - uid: 30243 components: - type: Transform rot: -1.5707963267948966 rad @@ -228801,336 +228879,336 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 30388 + - uid: 30244 components: - type: Transform pos: 93.5,-0.5 parent: 2 - - uid: 30389 + - uid: 30245 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,37.5 parent: 2 - - uid: 30390 + - uid: 30246 components: - type: Transform pos: 13.5,59.5 parent: 2 - - uid: 30391 + - uid: 30247 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,17.5 parent: 2 - - uid: 30392 + - uid: 30248 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-55.5 parent: 2 - - uid: 30393 + - uid: 30249 components: - type: Transform pos: 18.5,69.5 parent: 2 - - uid: 30394 + - uid: 30250 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,36.5 parent: 2 - - uid: 30395 + - uid: 30251 components: - type: Transform pos: 20.5,69.5 parent: 2 - - uid: 30396 + - uid: 30252 components: - type: Transform pos: 15.5,59.5 parent: 2 - - uid: 30397 + - uid: 30253 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,33.5 parent: 2 - - uid: 30398 + - uid: 30254 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,35.5 parent: 2 - - uid: 30399 + - uid: 30255 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,34.5 parent: 2 - - uid: 30400 + - uid: 30256 components: - type: Transform pos: 22.5,69.5 parent: 2 - - uid: 30401 + - uid: 30257 components: - type: Transform pos: 14.5,59.5 parent: 2 - - uid: 30402 + - uid: 30258 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,61.5 parent: 2 - - uid: 30403 + - uid: 30259 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,17.5 parent: 2 - - uid: 30404 + - uid: 30260 components: - type: Transform pos: -62.5,-43.5 parent: 2 - - uid: 30405 + - uid: 30261 components: - type: Transform pos: -63.5,-43.5 parent: 2 - - uid: 30406 + - uid: 30262 components: - type: Transform pos: -64.5,-43.5 parent: 2 - - uid: 30407 + - uid: 30263 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,61.5 parent: 2 - - uid: 30408 + - uid: 30264 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,61.5 parent: 2 - - uid: 30409 + - uid: 30265 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,59.5 parent: 2 - - uid: 30410 + - uid: 30266 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,58.5 parent: 2 - - uid: 30411 + - uid: 30267 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,39.5 parent: 2 - - uid: 30412 + - uid: 30268 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,40.5 parent: 2 - - uid: 30413 + - uid: 30269 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,41.5 parent: 2 - - uid: 30414 + - uid: 30270 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,42.5 parent: 2 - - uid: 30415 + - uid: 30271 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,43.5 parent: 2 - - uid: 30416 + - uid: 30272 components: - type: Transform pos: 94.5,-0.5 parent: 2 - - uid: 30417 + - uid: 30273 components: - type: Transform pos: 91.5,-0.5 parent: 2 - - uid: 30418 + - uid: 30274 components: - type: Transform pos: 92.5,-0.5 parent: 2 - proto: StorageCanister entities: - - uid: 30419 + - uid: 30275 components: - type: Transform pos: -51.5,24.5 parent: 2 - - uid: 30420 + - uid: 30276 components: - type: Transform pos: -58.5,34.5 parent: 2 - - uid: 30421 + - uid: 30277 components: - type: Transform pos: -26.5,-50.5 parent: 2 - - uid: 30422 + - uid: 30278 components: - type: Transform pos: -26.5,-49.5 parent: 2 - - uid: 30423 + - uid: 30279 components: - type: Transform pos: 20.5,-30.5 parent: 2 - - uid: 30424 + - uid: 30280 components: - type: Transform pos: -58.5,33.5 parent: 2 - - uid: 30425 + - uid: 30281 components: - type: Transform pos: -58.5,32.5 parent: 2 - proto: Stunbaton entities: - - uid: 30426 + - uid: 30282 components: - type: Transform pos: 71.60599,-2.5342655 parent: 2 - - uid: 30427 + - uid: 30283 components: - type: Transform pos: 71.39333,-2.4280078 parent: 2 - - uid: 30428 + - uid: 30284 components: - type: Transform pos: 71.37561,-2.569685 parent: 2 - - uid: 30429 + - uid: 30285 components: - type: Transform pos: 11.549865,-31.462252 parent: 2 - proto: SubstationBasic entities: - - uid: 30430 + - uid: 30286 components: - type: MetaData name: хранилище - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 30431 + - uid: 30287 components: - type: Transform pos: 72.5,25.5 parent: 2 - - uid: 30432 + - uid: 30288 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 30433 + - uid: 30289 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 30434 + - uid: 30290 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 30435 + - uid: 30291 components: - type: Transform pos: -48.5,6.5 parent: 2 - - uid: 30436 + - uid: 30292 components: - type: MetaData name: утилизаторная В - type: Transform pos: 27.5,26.5 parent: 2 - - uid: 30437 + - uid: 30293 components: - type: MetaData name: атмосферная С 2 - type: Transform pos: -49.5,42.5 parent: 2 - - uid: 30438 + - uid: 30294 components: - type: MetaData name: атмосферная Ю - type: Transform pos: -46.5,34.5 parent: 2 - - uid: 30439 + - uid: 30295 components: - type: MetaData name: тех. тоннели ЮЗ - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 30440 + - uid: 30296 components: - type: MetaData name: суд, офисы АВД и детектива - type: Transform pos: 53.5,-6.5 parent: 2 - - uid: 30441 + - uid: 30297 components: - type: MetaData name: коридор и утилизаторная З - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 30442 + - uid: 30298 components: - type: MetaData name: служба безопасности - type: Transform pos: 74.5,-2.5 parent: 2 - - uid: 30443 + - uid: 30299 components: - type: MetaData name: солнечные панели ЮЗ - type: Transform pos: -41.5,-73.5 parent: 2 - - uid: 30444 + - uid: 30300 components: - type: MetaData name: отбытие и церковь - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 30445 + - uid: 30301 components: - type: MetaData name: мостик @@ -229141,14 +229219,14 @@ entities: loadingNetworkDemand: 124.980965 currentSupply: 124.980965 supplyRampPosition: 124.980965 - - uid: 30446 + - uid: 30302 components: - type: MetaData name: генератор гравитации - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 30447 + - uid: 30303 components: - type: MetaData name: сервисный З @@ -229157,14 +229235,14 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 - - uid: 30448 + - uid: 30304 components: - type: MetaData name: тех. тоннели СЗ нижняя часть - type: Transform pos: -40.5,40.5 parent: 2 - - uid: 30449 + - uid: 30305 components: - type: MetaData name: медицинский В @@ -229175,28 +229253,28 @@ entities: loadingNetworkDemand: 205.02036 currentSupply: 205.02036 supplyRampPosition: 205.02036 - - uid: 30450 + - uid: 30306 components: - type: MetaData name: тех помещения СВ - type: Transform pos: 7.5,60.5 parent: 2 - - uid: 30451 + - uid: 30307 components: - type: MetaData name: библиотека - type: Transform pos: -39.5,-6.5 parent: 2 - - uid: 30452 + - uid: 30308 components: - type: MetaData name: дормитории - type: Transform pos: 55.5,-42.5 parent: 2 - - uid: 30453 + - uid: 30309 components: - type: MetaData name: атмосферная С 1 @@ -229207,7 +229285,7 @@ entities: loadingNetworkDemand: 15.000059 currentReceiving: 15.000059 currentSupply: 15.000059 - - uid: 30454 + - uid: 30310 components: - type: MetaData name: тех. тоннели СЗ верхняя часть @@ -229216,92 +229294,92 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 - - uid: 30455 + - uid: 30311 components: - type: MetaData name: снабжение - type: Transform pos: 9.5,40.5 parent: 2 - - uid: 30456 + - uid: 30312 components: - type: Transform pos: -43.5,46.5 parent: 2 - - uid: 30457 + - uid: 30313 components: - type: MetaData name: сервисный В - type: Transform pos: -1.5,34.5 parent: 2 - - uid: 30458 + - uid: 30314 components: - type: MetaData name: инженерный С - type: Transform pos: -44.5,6.5 parent: 2 - - uid: 30459 + - uid: 30315 components: - type: MetaData name: токсины - type: Transform pos: -31.5,-55.5 parent: 2 - - uid: 30460 + - uid: 30316 components: - type: MetaData name: РИТЭГ и УЧ - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 30461 + - uid: 30317 components: - type: MetaData name: солнечные панели СВ - type: Transform pos: 13.5,88.5 parent: 2 - - uid: 30462 + - uid: 30318 components: - type: Transform pos: -43.5,47.5 parent: 2 - - uid: 30463 + - uid: 30319 components: - type: MetaData name: генератор теслы - type: Transform pos: -80.5,-3.5 parent: 2 - - uid: 30464 + - uid: 30320 components: - type: MetaData name: пристройка - type: Transform pos: 79.5,-42.5 parent: 2 - - uid: 30465 + - uid: 30321 components: - type: MetaData name: ИИ - type: Transform pos: -123.5,24.5 parent: 2 - - uid: 39710 + - uid: 39537 components: - type: Transform pos: 8.5,4.5 - parent: 38584 + parent: 38411 - proto: SubstationMachineCircuitboard entities: - - uid: 30466 + - uid: 30322 components: - type: Transform pos: -46.5,4.5 parent: 2 - - uid: 30467 + - uid: 30323 components: - type: Transform rot: 3.141592653589793 rad @@ -229309,22 +229387,22 @@ entities: parent: 2 - proto: SubstationWallBasic entities: - - uid: 38551 + - uid: 38378 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 - parent: 38484 + parent: 38311 - proto: SugarcaneSeeds entities: - - uid: 30468 + - uid: 30324 components: - type: Transform pos: -70.72353,-20.442097 parent: 2 - proto: SuitStorageAtmos entities: - - uid: 30469 + - uid: 30325 components: - type: Transform pos: -52.5,36.5 @@ -229347,145 +229425,145 @@ entities: - 0 - 0 - 0 - - uid: 30470 + - uid: 30326 components: - type: Transform pos: -52.5,37.5 parent: 2 - - uid: 30471 + - uid: 30327 components: - type: Transform pos: -52.5,38.5 parent: 2 - proto: SuitStorageCaptain entities: - - uid: 30472 + - uid: 30328 components: - type: Transform pos: 7.5,3.5 parent: 2 - proto: SuitStorageCMO entities: - - uid: 30473 + - uid: 30329 components: - type: Transform pos: 20.5,-52.5 parent: 2 - proto: SuitStorageEngi entities: - - uid: 30474 + - uid: 30330 components: - type: Transform pos: -78.5,5.5 parent: 2 - - uid: 30475 + - uid: 30331 components: - type: Transform pos: -78.5,7.5 parent: 2 - - uid: 30476 + - uid: 30332 components: - type: Transform pos: -78.5,3.5 parent: 2 - - uid: 30477 + - uid: 30333 components: - type: Transform pos: -78.5,4.5 parent: 2 - - uid: 30478 + - uid: 30334 components: - type: Transform pos: -80.5,15.5 parent: 2 - - uid: 30479 + - uid: 30335 components: - type: Transform pos: -48.5,-11.5 parent: 2 - - uid: 30480 + - uid: 30336 components: - type: Transform pos: -47.5,-11.5 parent: 2 - - uid: 30481 + - uid: 30337 components: - type: Transform pos: -46.5,-11.5 parent: 2 - - uid: 30482 + - uid: 30338 components: - type: Transform pos: -75.5,7.5 parent: 2 - - uid: 30483 + - uid: 30339 components: - type: Transform pos: -75.5,4.5 parent: 2 - - uid: 30484 + - uid: 30340 components: - type: Transform pos: -75.5,5.5 parent: 2 - - uid: 30485 + - uid: 30341 components: - type: Transform pos: -75.5,6.5 parent: 2 - - uid: 30486 + - uid: 30342 components: - type: Transform pos: -75.5,3.5 parent: 2 - - uid: 30487 + - uid: 30343 components: - type: Transform pos: -78.5,6.5 parent: 2 - - uid: 30488 + - uid: 30344 components: - type: Transform pos: 15.5,79.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 30489 + - uid: 30345 components: - type: Transform pos: -13.5,-14.5 parent: 2 - - uid: 30490 + - uid: 30346 components: - type: Transform pos: -13.5,-13.5 parent: 2 - - uid: 30491 + - uid: 30347 components: - type: Transform pos: -13.5,-15.5 parent: 2 - - uid: 30492 + - uid: 30348 components: - type: Transform pos: -13.5,-12.5 parent: 2 - - uid: 30493 + - uid: 30349 components: - type: Transform pos: -60.5,64.5 parent: 2 - - uid: 30494 + - uid: 30350 components: - type: Transform pos: -77.5,-27.5 parent: 2 - - uid: 30495 + - uid: 30351 components: - type: Transform pos: -11.5,-12.5 parent: 2 - - uid: 30496 + - uid: 30352 components: - type: Transform pos: -11.5,-13.5 @@ -229508,7 +229586,7 @@ entities: - 0 - 0 - 0 - - uid: 30497 + - uid: 30353 components: - type: Transform pos: -11.5,-14.5 @@ -229531,99 +229609,99 @@ entities: - 0 - 0 - 0 - - uid: 30498 + - uid: 30354 components: - type: Transform pos: -11.5,-15.5 parent: 2 - proto: SuitStorageEVAEmergency entities: - - uid: 30499 + - uid: 30355 components: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 30500 + - uid: 30356 components: - type: Transform pos: -9.5,-14.5 parent: 2 - - uid: 30501 + - uid: 30357 components: - type: Transform pos: -9.5,-13.5 parent: 2 - - uid: 30502 + - uid: 30358 components: - type: Transform pos: -9.5,-12.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 30503 + - uid: 30359 components: - type: Transform pos: 91.5,9.5 parent: 2 - - uid: 30504 + - uid: 30360 components: - type: Transform pos: 90.5,9.5 parent: 2 - - uid: 30505 + - uid: 30361 components: - type: Transform pos: 89.5,9.5 parent: 2 - - uid: 39711 + - uid: 39538 components: - type: Transform pos: -2.5,8.5 - parent: 38584 - - uid: 39712 + parent: 38411 + - uid: 39539 components: - type: Transform pos: -2.5,7.5 - parent: 38584 - - uid: 39713 + parent: 38411 + - uid: 39540 components: - type: Transform pos: -2.5,6.5 - parent: 38584 + parent: 38411 - proto: SuitStorageHOS entities: - - uid: 30506 + - uid: 30362 components: - type: Transform pos: 34.5,19.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 30507 + - uid: 30363 components: - type: Transform pos: -20.5,-47.5 parent: 2 - proto: SuitStorageSalv entities: - - uid: 30508 + - uid: 30364 components: - type: Transform pos: 29.5,28.5 parent: 2 - - uid: 30509 + - uid: 30365 components: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 30510 + - uid: 30366 components: - type: Transform pos: 29.5,26.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 30511 + - uid: 30367 components: - type: Transform pos: 66.5,13.5 @@ -229646,7 +229724,7 @@ entities: - 0 - 0 - 0 - - uid: 30512 + - uid: 30368 components: - type: Transform pos: 65.5,13.5 @@ -229669,7 +229747,7 @@ entities: - 0 - 0 - 0 - - uid: 30513 + - uid: 30369 components: - type: Transform pos: 66.5,11.5 @@ -229692,7 +229770,7 @@ entities: - 0 - 0 - 0 - - uid: 30514 + - uid: 30370 components: - type: Transform pos: 64.5,13.5 @@ -229715,7 +229793,7 @@ entities: - 0 - 0 - 0 - - uid: 30515 + - uid: 30371 components: - type: Transform pos: 64.5,11.5 @@ -229738,7 +229816,7 @@ entities: - 0 - 0 - 0 - - uid: 30516 + - uid: 30372 components: - type: Transform pos: 65.5,11.5 @@ -229761,51 +229839,51 @@ entities: - 0 - 0 - 0 - - uid: 30517 + - uid: 30373 components: - type: Transform pos: 78.5,10.5 parent: 2 - - uid: 30518 + - uid: 30374 components: - type: Transform pos: 76.5,10.5 parent: 2 - - uid: 30519 + - uid: 30375 components: - type: Transform pos: 77.5,10.5 parent: 2 - - uid: 39714 + - uid: 39541 components: - type: Transform pos: 9.5,-2.5 - parent: 38584 - - uid: 39715 + parent: 38411 + - uid: 39542 components: - type: Transform pos: 9.5,-3.5 - parent: 38584 - - uid: 39716 + parent: 38411 + - uid: 39543 components: - type: Transform pos: 9.5,-5.5 - parent: 38584 - - uid: 39717 + parent: 38411 + - uid: 39544 components: - type: Transform pos: 9.5,-6.5 - parent: 38584 + parent: 38411 - proto: SuitStorageWarden entities: - - uid: 30520 + - uid: 30376 components: - type: Transform pos: 55.5,9.5 parent: 2 - proto: SurveillanceCameraCommand entities: - - uid: 30521 + - uid: 30377 components: - type: Transform rot: -1.5707963267948966 rad @@ -229813,7 +229891,7 @@ entities: parent: 2 - type: SurveillanceCamera id: хранилище - - uid: 30522 + - uid: 30378 components: - type: Transform pos: 9.5,-9.5 @@ -229823,7 +229901,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Капитанская Мастерская - - uid: 30523 + - uid: 30379 components: - type: Transform pos: -11.5,7.5 @@ -229833,7 +229911,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Комната совещаний - - uid: 30524 + - uid: 30380 components: - type: Transform rot: -1.5707963267948966 rad @@ -229844,7 +229922,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Питание мостика - - uid: 30525 + - uid: 30381 components: - type: Transform pos: -8.5,13.5 @@ -229854,7 +229932,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Левое крыло мостика - - uid: 30526 + - uid: 30382 components: - type: Transform pos: 7.5,13.5 @@ -229864,7 +229942,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Правое крыло мостика - - uid: 30527 + - uid: 30383 components: - type: Transform pos: 9.5,-5.5 @@ -229874,7 +229952,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мастерская - - uid: 30528 + - uid: 30384 components: - type: Transform rot: 1.5707963267948966 rad @@ -229885,7 +229963,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Офис Главы Персонала - - uid: 30529 + - uid: 30385 components: - type: Transform rot: 1.5707963267948966 rad @@ -229896,7 +229974,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Кабинет АВД - - uid: 30530 + - uid: 30386 components: - type: Transform pos: -1.5,12.5 @@ -229906,7 +229984,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мостик - - uid: 30531 + - uid: 30387 components: - type: Transform pos: -14.5,-16.5 @@ -229916,7 +229994,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Хранилище EVA - - uid: 30532 + - uid: 30388 components: - type: Transform rot: -1.5707963267948966 rad @@ -229927,7 +230005,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Генератор гравитации - - uid: 30533 + - uid: 30389 components: - type: Transform pos: -10.5,-9.5 @@ -229939,7 +230017,7 @@ entities: id: EVA, Кабинет Главы Персонала - proto: SurveillanceCameraEngineering entities: - - uid: 30534 + - uid: 30390 components: - type: Transform rot: 3.141592653589793 rad @@ -229950,7 +230028,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Зал инженерии - - uid: 30535 + - uid: 30391 components: - type: Transform rot: -1.5707963267948966 rad @@ -229961,7 +230039,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Вход в Атмос - - uid: 30536 + - uid: 30392 components: - type: Transform rot: 3.141592653589793 rad @@ -229972,7 +230050,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Коридор генератора гравитации - - uid: 30537 + - uid: 30393 components: - type: Transform rot: 3.141592653589793 rad @@ -229983,7 +230061,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Северо-восточные панели - - uid: 30538 + - uid: 30394 components: - type: Transform pos: -58.5,-9.5 @@ -229993,7 +230071,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Ускоритель частиц - - uid: 30539 + - uid: 30395 components: - type: Transform pos: -46.5,-9.5 @@ -230003,7 +230081,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Склад инженерии - - uid: 30540 + - uid: 30396 components: - type: Transform pos: -45.5,4.5 @@ -230013,7 +230091,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Подстанции инженерии - - uid: 30541 + - uid: 30397 components: - type: Transform rot: -1.5707963267948966 rad @@ -230024,7 +230102,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Склад прибытия - - uid: 30542 + - uid: 30398 components: - type: Transform rot: 3.141592653589793 rad @@ -230035,7 +230113,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Наблюдательные комнаты - - uid: 30543 + - uid: 30399 components: - type: Transform rot: -1.5707963267948966 rad @@ -230046,7 +230124,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Вид сбоку суперматерии - - uid: 30544 + - uid: 30400 components: - type: Transform pos: -50.5,44.5 @@ -230056,7 +230134,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Суперматерия - - uid: 30545 + - uid: 30401 components: - type: Transform rot: 3.141592653589793 rad @@ -230067,7 +230145,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Атмос - - uid: 30546 + - uid: 30402 components: - type: Transform rot: -1.5707963267948966 rad @@ -230078,7 +230156,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Склад электроники - - uid: 30547 + - uid: 30403 components: - type: Transform rot: 1.5707963267948966 rad @@ -230089,7 +230167,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Фильтры Атмоса - - uid: 30548 + - uid: 30404 components: - type: Transform pos: -53.5,4.5 @@ -230099,7 +230177,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Вход в комнату совещаний - - uid: 30549 + - uid: 30405 components: - type: Transform rot: -1.5707963267948966 rad @@ -230110,7 +230188,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Офис Старшего Инженера - - uid: 30550 + - uid: 30406 components: - type: Transform rot: 3.141592653589793 rad @@ -230121,7 +230199,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Комната совещаний инженеров - - uid: 30551 + - uid: 30407 components: - type: Transform rot: -1.5707963267948966 rad @@ -230134,7 +230212,7 @@ entities: id: Комната питания суперматерии - proto: SurveillanceCameraGeneral entities: - - uid: 30552 + - uid: 30408 components: - type: Transform rot: 1.5707963267948966 rad @@ -230145,7 +230223,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (запад, инженерный) - - uid: 30553 + - uid: 30409 components: - type: Transform rot: 1.5707963267948966 rad @@ -230156,7 +230234,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Суд - - uid: 30554 + - uid: 30410 components: - type: Transform rot: 3.141592653589793 rad @@ -230167,7 +230245,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: север библиотеки - - uid: 30555 + - uid: 30411 components: - type: Transform pos: -2.5,-81.5 @@ -230177,7 +230255,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Шлюзы стыковки (отбытие) - - uid: 30556 + - uid: 30412 components: - type: Transform rot: 3.141592653589793 rad @@ -230188,7 +230266,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (восток, жилой отсек) - - uid: 30557 + - uid: 30413 components: - type: Transform rot: 1.5707963267948966 rad @@ -230199,7 +230277,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (запад, глава персонала) - - uid: 30558 + - uid: 30414 components: - type: Transform pos: -24.5,-17.5 @@ -230209,7 +230287,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: барахолка - - uid: 30559 + - uid: 30415 components: - type: Transform rot: 3.141592653589793 rad @@ -230220,7 +230298,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Дормиторий 2 - - uid: 30560 + - uid: 30416 components: - type: Transform rot: -1.5707963267948966 rad @@ -230231,13 +230309,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (запад) - - uid: 30561 + - uid: 30417 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,24.5 parent: 2 - - uid: 30562 + - uid: 30418 components: - type: Transform rot: 3.141592653589793 rad @@ -230248,7 +230326,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Север эвакуации - - uid: 30563 + - uid: 30419 components: - type: Transform rot: 3.141592653589793 rad @@ -230259,7 +230337,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (бриг) - - uid: 30564 + - uid: 30420 components: - type: Transform rot: -1.5707963267948966 rad @@ -230270,7 +230348,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (восток) - - uid: 30565 + - uid: 30421 components: - type: Transform rot: 1.5707963267948966 rad @@ -230281,7 +230359,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (юго-восток) - - uid: 30566 + - uid: 30422 components: - type: Transform pos: -22.5,67.5 @@ -230291,7 +230369,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - - uid: 30567 + - uid: 30423 components: - type: Transform rot: -1.5707963267948966 rad @@ -230302,7 +230380,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: северный сервис - - uid: 30568 + - uid: 30424 components: - type: Transform pos: 37.5,-15.5 @@ -230312,12 +230390,12 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Раздевалка дормитория 2 - - uid: 30569 + - uid: 30425 components: - type: Transform pos: 1.5,22.5 parent: 2 - - uid: 30570 + - uid: 30426 components: - type: Transform rot: 3.141592653589793 rad @@ -230328,7 +230406,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (юг, EVA) - - uid: 30571 + - uid: 30427 components: - type: Transform rot: 3.141592653589793 rad @@ -230339,7 +230417,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Спортзал - - uid: 30572 + - uid: 30428 components: - type: Transform rot: -1.5707963267948966 rad @@ -230349,7 +230427,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraGeneral id: Стыковочные шлюз (восток, прибытие) - - uid: 30573 + - uid: 30429 components: - type: Transform rot: -1.5707963267948966 rad @@ -230360,7 +230438,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: южный сервис - - uid: 30574 + - uid: 30430 components: - type: Transform rot: 3.141592653589793 rad @@ -230371,7 +230449,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (север, карго) - - uid: 30575 + - uid: 30431 components: - type: Transform pos: -28.5,-15.5 @@ -230381,13 +230459,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Комната библиотеки - - uid: 30576 + - uid: 30432 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,16.5 parent: 2 - - uid: 30577 + - uid: 30433 components: - type: Transform pos: 0.5,67.5 @@ -230397,7 +230475,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: КПП прибытие - - uid: 30578 + - uid: 30434 components: - type: Transform rot: 3.141592653589793 rad @@ -230408,18 +230486,18 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Раздевалка дормитория 1 - - uid: 30579 + - uid: 30435 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,87.5 parent: 2 - - uid: 30580 + - uid: 30436 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 30581 + - uid: 30437 components: - type: Transform rot: 1.5707963267948966 rad @@ -230430,7 +230508,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (РНД, мед отсек, юг) - - uid: 30582 + - uid: 30438 components: - type: Transform rot: 1.5707963267948966 rad @@ -230441,7 +230519,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: медицинский КПП прибытия - - uid: 30583 + - uid: 30439 components: - type: Transform pos: 46.5,-20.5 @@ -230451,13 +230529,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Дормиторий 1 - - uid: 30584 + - uid: 30440 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,2.5 parent: 2 - - uid: 30585 + - uid: 30441 components: - type: Transform rot: 3.141592653589793 rad @@ -230468,7 +230546,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - Коридор - - uid: 30586 + - uid: 30442 components: - type: Transform rot: 1.5707963267948966 rad @@ -230479,7 +230557,7 @@ entities: - SurveillanceCameraGeneral id: Коридор (восток, суд) - type: ActiveUserInterface - - uid: 30587 + - uid: 30443 components: - type: Transform rot: -1.5707963267948966 rad @@ -230490,7 +230568,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Медицинский КПП эвакуации - - uid: 30588 + - uid: 30444 components: - type: Transform rot: 3.141592653589793 rad @@ -230501,7 +230579,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Голографическая зона - - uid: 30589 + - uid: 30445 components: - type: Transform rot: 3.141592653589793 rad @@ -230512,7 +230590,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Библиотека - - uid: 30590 + - uid: 30446 components: - type: Transform rot: -1.5707963267948966 rad @@ -230523,7 +230601,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: КПП отбытия - - uid: 30591 + - uid: 30447 components: - type: Transform pos: -2.5,-20.5 @@ -230533,7 +230611,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Камера (юг, Т) - - uid: 30592 + - uid: 30448 components: - type: Transform rot: -1.5707963267948966 rad @@ -230544,7 +230622,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Склад инструментов - - uid: 30593 + - uid: 30449 components: - type: Transform rot: -1.5707963267948966 rad @@ -230555,7 +230633,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - Коридор - - uid: 30594 + - uid: 30450 components: - type: Transform rot: -1.5707963267948966 rad @@ -230566,13 +230644,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор (запад) - - uid: 30595 + - uid: 30451 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-18.5 parent: 2 - - uid: 30597 + - uid: 30452 components: - type: Transform rot: -1.5707963267948966 rad @@ -230585,7 +230663,7 @@ entities: id: Коридор (восток) - proto: SurveillanceCameraMedical entities: - - uid: 30598 + - uid: 30453 components: - type: Transform rot: 1.5707963267948966 rad @@ -230596,7 +230674,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Зона пациентов вирусологии - - uid: 30599 + - uid: 30454 components: - type: Transform pos: 24.5,-40.5 @@ -230606,7 +230684,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Кислородные канистры медбея - - uid: 30600 + - uid: 30455 components: - type: Transform rot: 1.5707963267948966 rad @@ -230617,7 +230695,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Химия - - uid: 30601 + - uid: 30456 components: - type: Transform rot: 3.141592653589793 rad @@ -230628,7 +230706,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Лаборатория вирусологии - - uid: 30602 + - uid: 30457 components: - type: Transform rot: 1.5707963267948966 rad @@ -230639,7 +230717,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Вирусология - - uid: 30603 + - uid: 30458 components: - type: Transform rot: -1.5707963267948966 rad @@ -230650,7 +230728,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Нижнее крыло медбея - - uid: 30604 + - uid: 30459 components: - type: Transform rot: 1.5707963267948966 rad @@ -230661,7 +230739,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Офис вирусологии - - uid: 30605 + - uid: 30460 components: - type: Transform pos: 9.5,-27.5 @@ -230671,7 +230749,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Лобби медбея - - uid: 30606 + - uid: 30461 components: - type: Transform rot: 1.5707963267948966 rad @@ -230682,7 +230760,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Операционная - - uid: 30607 + - uid: 30462 components: - type: Transform rot: -1.5707963267948966 rad @@ -230693,7 +230771,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Генетики - - uid: 30608 + - uid: 30463 components: - type: Transform rot: 3.141592653589793 rad @@ -230704,7 +230782,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Приёмная генетиков - - uid: 30609 + - uid: 30464 components: - type: Transform rot: 1.5707963267948966 rad @@ -230715,7 +230793,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Кабинет психолога - - uid: 30610 + - uid: 30465 components: - type: Transform rot: 1.5707963267948966 rad @@ -230726,7 +230804,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Вход в вирусологию - - uid: 30611 + - uid: 30466 components: - type: Transform rot: 1.5707963267948966 rad @@ -230737,7 +230815,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Медициниские палаты - - uid: 30612 + - uid: 30467 components: - type: Transform rot: 3.141592653589793 rad @@ -230748,7 +230826,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Смотровая - - uid: 30613 + - uid: 30468 components: - type: Transform rot: 3.141592653589793 rad @@ -230759,7 +230837,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Офис главного врача - - uid: 30614 + - uid: 30469 components: - type: Transform rot: -1.5707963267948966 rad @@ -230774,75 +230852,75 @@ entities: defaultTarget: start - proto: SurveillanceCameraRouterCommand entities: - - uid: 30615 + - uid: 30470 components: - type: Transform pos: -122.5,40.5 parent: 2 - proto: SurveillanceCameraRouterConstructed entities: - - uid: 30616 + - uid: 30471 components: - type: Transform pos: -122.5,39.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 30617 + - uid: 30472 components: - type: Transform pos: -122.5,42.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 30618 + - uid: 30473 components: - type: Transform pos: -122.5,41.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 30619 + - uid: 30474 components: - type: Transform pos: -124.5,38.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 30620 + - uid: 30475 components: - type: Transform pos: -124.5,37.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 30621 + - uid: 30476 components: - type: Transform pos: 42.5,17.5 parent: 2 - - uid: 30622 + - uid: 30477 components: - type: Transform pos: -124.5,40.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 30623 + - uid: 30478 components: - type: Transform pos: -124.5,39.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 30624 + - uid: 30479 components: - type: Transform pos: -124.5,41.5 parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 30625 + - uid: 30480 components: - type: Transform rot: 1.5707963267948966 rad @@ -230853,7 +230931,7 @@ entities: - SurveillanceCameraScience nameSet: True id: камера огнеопасных токсинов - - uid: 30626 + - uid: 30481 components: - type: Transform rot: 1.5707963267948966 rad @@ -230864,7 +230942,7 @@ entities: - SurveillanceCameraScience nameSet: True id: РнД - - uid: 30627 + - uid: 30482 components: - type: Transform rot: 1.5707963267948966 rad @@ -230875,7 +230953,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Приёмная научного - - uid: 30628 + - uid: 30483 components: - type: Transform rot: 1.5707963267948966 rad @@ -230886,7 +230964,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Офис Научного Руководителя - - uid: 30629 + - uid: 30484 components: - type: Transform rot: 3.141592653589793 rad @@ -230897,7 +230975,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Коридор - - uid: 30630 + - uid: 30485 components: - type: Transform rot: 1.5707963267948966 rad @@ -230908,7 +230986,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Вход в научный - - uid: 30631 + - uid: 30486 components: - type: Transform rot: 3.141592653589793 rad @@ -230919,7 +230997,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Западный коридор - - uid: 30632 + - uid: 30487 components: - type: Transform rot: 1.5707963267948966 rad @@ -230930,13 +231008,13 @@ entities: - SurveillanceCameraScience nameSet: True id: Северный коридор - - uid: 30633 + - uid: 30488 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-39.5 parent: 2 - - uid: 30634 + - uid: 30489 components: - type: Transform pos: -24.5,-53.5 @@ -230946,7 +231024,7 @@ entities: - SurveillanceCameraScience nameSet: True id: хранилище газов - - uid: 30635 + - uid: 30490 components: - type: Transform pos: -7.5,-43.5 @@ -230956,7 +231034,7 @@ entities: - SurveillanceCameraScience nameSet: True id: робототехника - - uid: 30636 + - uid: 30491 components: - type: Transform pos: -7.5,-52.5 @@ -230966,7 +231044,7 @@ entities: - SurveillanceCameraScience nameSet: True id: химия - - uid: 30637 + - uid: 30492 components: - type: Transform rot: 1.5707963267948966 rad @@ -230977,7 +231055,7 @@ entities: - SurveillanceCameraScience nameSet: True id: южный коридор - - uid: 30638 + - uid: 30493 components: - type: Transform rot: 3.141592653589793 rad @@ -230990,7 +231068,7 @@ entities: id: генератор аномалий - proto: SurveillanceCameraSecurity entities: - - uid: 30639 + - uid: 30494 components: - type: Transform rot: 1.5707963267948966 rad @@ -231001,7 +231079,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП прибытие - - uid: 30640 + - uid: 30495 components: - type: Transform rot: -1.5707963267948966 rad @@ -231012,7 +231090,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Офис охраны - - uid: 30641 + - uid: 30496 components: - type: Transform rot: 1.5707963267948966 rad @@ -231023,7 +231101,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Дополнительная комната детектива - - uid: 30642 + - uid: 30497 components: - type: Transform rot: -1.5707963267948966 rad @@ -231034,7 +231112,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор Брига - - uid: 30643 + - uid: 30498 components: - type: Transform pos: 50.5,11.5 @@ -231044,7 +231122,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Гардероб охраны - - uid: 30644 + - uid: 30499 components: - type: Transform rot: -1.5707963267948966 rad @@ -231055,7 +231133,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Кабинет детектива - - uid: 30645 + - uid: 30500 components: - type: Transform pos: 43.5,17.5 @@ -231065,7 +231143,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Офис Главы Службы Безопасности - - uid: 30646 + - uid: 30501 components: - type: Transform rot: -1.5707963267948966 rad @@ -231076,7 +231154,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Офис Смотрителя - - uid: 30647 + - uid: 30502 components: - type: Transform rot: 3.141592653589793 rad @@ -231087,7 +231165,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Тюремный лазарет - - uid: 30648 + - uid: 30503 components: - type: Transform rot: -1.5707963267948966 rad @@ -231098,7 +231176,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПЗ отбытия - - uid: 30649 + - uid: 30504 components: - type: Transform rot: 1.5707963267948966 rad @@ -231109,7 +231187,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Загрузочный док охраны - - uid: 30650 + - uid: 30505 components: - type: Transform rot: -1.5707963267948966 rad @@ -231120,7 +231198,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Аварийный запас оружейной - - uid: 30651 + - uid: 30506 components: - type: Transform rot: -1.5707963267948966 rad @@ -231131,7 +231209,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор ожидания охраны - - uid: 30652 + - uid: 30507 components: - type: Transform rot: -1.5707963267948966 rad @@ -231142,7 +231220,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Верхний коридор тюремного крыла - - uid: 30653 + - uid: 30508 components: - type: Transform pos: 40.5,-0.5 @@ -231152,7 +231230,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Приёмная охраны - - uid: 30654 + - uid: 30509 components: - type: Transform rot: -1.5707963267948966 rad @@ -231163,7 +231241,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП комната ожидания - - uid: 30655 + - uid: 30510 components: - type: Transform rot: 3.141592653589793 rad @@ -231174,7 +231252,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП отбытие - - uid: 30656 + - uid: 30511 components: - type: Transform rot: -1.5707963267948966 rad @@ -231185,7 +231263,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор тюремного крыла - - uid: 30657 + - uid: 30512 components: - type: Transform rot: -1.5707963267948966 rad @@ -231196,7 +231274,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: портовая - - uid: 30658 + - uid: 30513 components: - type: Transform rot: 1.5707963267948966 rad @@ -231207,7 +231285,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Комната отдыха - - uid: 30659 + - uid: 30514 components: - type: Transform rot: 3.141592653589793 rad @@ -231220,7 +231298,7 @@ entities: id: Стрельбище - proto: SurveillanceCameraService entities: - - uid: 30660 + - uid: 30515 components: - type: Transform rot: -1.5707963267948966 rad @@ -231231,7 +231309,7 @@ entities: - SurveillanceCameraService nameSet: True id: Кухня - - uid: 30661 + - uid: 30516 components: - type: Transform rot: 3.141592653589793 rad @@ -231242,7 +231320,7 @@ entities: - SurveillanceCameraService nameSet: True id: Столовая - - uid: 30662 + - uid: 30517 components: - type: Transform rot: 3.141592653589793 rad @@ -231255,7 +231333,7 @@ entities: id: Офис репортёра - type: Construction defaultTarget: start - - uid: 30663 + - uid: 30518 components: - type: Transform rot: 1.5707963267948966 rad @@ -231266,7 +231344,7 @@ entities: - SurveillanceCameraService nameSet: True id: Морг церкви - - uid: 30664 + - uid: 30519 components: - type: Transform pos: -12.5,-81.5 @@ -231276,7 +231354,7 @@ entities: - SurveillanceCameraService nameSet: True id: Офис священника - - uid: 30665 + - uid: 30520 components: - type: Transform rot: 1.5707963267948966 rad @@ -231287,7 +231365,7 @@ entities: - SurveillanceCameraService nameSet: True id: Крематорий церкви - - uid: 30666 + - uid: 30521 components: - type: Transform rot: -1.5707963267948966 rad @@ -231298,7 +231376,7 @@ entities: - SurveillanceCameraService nameSet: True id: Церковь - - uid: 30667 + - uid: 30522 components: - type: Transform rot: 1.5707963267948966 rad @@ -231309,7 +231387,7 @@ entities: - SurveillanceCameraService nameSet: True id: Мини склад инструментов - - uid: 30668 + - uid: 30523 components: - type: Transform rot: 1.5707963267948966 rad @@ -231320,7 +231398,7 @@ entities: - SurveillanceCameraService nameSet: True id: Гидропоника - - uid: 30669 + - uid: 30524 components: - type: Transform rot: 1.5707963267948966 rad @@ -231331,12 +231409,12 @@ entities: - SurveillanceCameraService nameSet: True id: Театр - - uid: 30670 + - uid: 30525 components: - type: Transform pos: -10.5,36.5 parent: 2 - - uid: 30671 + - uid: 30526 components: - type: Transform pos: 2.5,-16.5 @@ -231348,7 +231426,7 @@ entities: id: Кабинет Зоотехника - proto: SurveillanceCameraSupply entities: - - uid: 30672 + - uid: 30527 components: - type: Transform pos: 23.5,27.5 @@ -231358,7 +231436,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Комната утилизаторов - - uid: 30673 + - uid: 30528 components: - type: Transform rot: 3.141592653589793 rad @@ -231369,7 +231447,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Склад Карго - - uid: 30674 + - uid: 30529 components: - type: Transform pos: 26.5,34.5 @@ -231379,7 +231457,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Офис Квартирмейстера - - uid: 30675 + - uid: 30530 components: - type: MetaData name: Лобби снабжения @@ -231392,7 +231470,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Лобби Снабжения - - uid: 30676 + - uid: 30531 components: - type: Transform rot: 3.141592653589793 rad @@ -231403,7 +231481,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Приёмная снабжения - - uid: 30677 + - uid: 30532 components: - type: Transform rot: -1.5707963267948966 rad @@ -231414,7 +231492,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Вспомогательный офис доставок - - uid: 30678 + - uid: 30533 components: - type: Transform rot: 1.5707963267948966 rad @@ -231425,7 +231503,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Служебное помещение Снабжения - - uid: 30679 + - uid: 30534 components: - type: Transform rot: -1.5707963267948966 rad @@ -231436,7 +231514,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Склад отдела снабжения - - uid: 30680 + - uid: 30535 components: - type: Transform rot: -1.5707963267948966 rad @@ -231449,38 +231527,38 @@ entities: id: Отдел снабжения - proto: SurveillanceCameraWirelessRouterConstructed entities: - - uid: 30681 + - uid: 30536 components: - type: Transform pos: -122.5,36.5 parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 30682 + - uid: 30537 components: - type: Transform pos: -124.5,42.5 parent: 2 - - uid: 30683 + - uid: 30538 components: - type: Transform pos: -122.5,37.5 parent: 2 - - uid: 30684 + - uid: 30539 components: - type: Transform pos: -122.5,38.5 parent: 2 - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 30685 + - uid: 30540 components: - type: Transform pos: -28.5,21.5 parent: 2 - proto: SurveillanceWirelessCameraMovableCircuitboard entities: - - uid: 30686 + - uid: 30541 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -231488,89 +231566,89 @@ entities: parent: 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 30687 + - uid: 30542 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,22.5 parent: 2 - - uid: 30688 + - uid: 30543 components: - type: Transform pos: -11.5,34.5 parent: 2 - - uid: 30689 + - uid: 30544 components: - type: Transform pos: -25.5,23.5 parent: 2 - proto: SyndicatePersonalAI entities: - - uid: 14895 + - uid: 14835 components: - type: Transform - parent: 14891 + parent: 14832 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 30690 + - uid: 30545 components: - type: Transform pos: -50.465153,-35.402077 parent: 2 - proto: Syringe entities: - - uid: 14825 + - uid: 14765 components: - type: Transform - parent: 14810 + parent: 14750 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 30691 + - uid: 30546 components: - type: Transform pos: -73.80836,-34.700375 parent: 2 - - uid: 30692 + - uid: 30547 components: - type: Transform pos: -9.800658,-52.379917 parent: 2 - - uid: 30693 + - uid: 30548 components: - type: Transform rot: 3.141592653589793 rad pos: 0.41809002,-13.439805 parent: 2 - - uid: 30694 + - uid: 30549 components: - type: Transform pos: 31.376213,-41.392838 parent: 2 - - uid: 30695 + - uid: 30550 components: - type: Transform pos: 7.5551,-22.431599 parent: 2 - type: Physics canCollide: False - - uid: 30696 + - uid: 30551 components: - type: Transform pos: -39.525764,53.757282 parent: 2 - - uid: 30697 + - uid: 30552 components: - type: Transform pos: 20.315166,-24.35081 parent: 2 - - uid: 30698 + - uid: 30553 components: - type: Transform pos: -39.525764,53.550793 parent: 2 - - uid: 30699 + - uid: 30554 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -231578,26 +231656,26 @@ entities: parent: 2 - proto: SyringeInaprovaline entities: - - uid: 30700 + - uid: 30555 components: - type: Transform pos: 26.57574,-27.461426 parent: 2 - type: Physics canCollide: False - - uid: 30701 + - uid: 30556 components: - type: Transform pos: 25.5,-31.5 parent: 2 - proto: SyringeTranexamicAcid entities: - - uid: 30702 + - uid: 30557 components: - type: Transform pos: 31.5,-31.5 parent: 2 - - uid: 30703 + - uid: 30558 components: - type: Transform rot: 1.5707963267948966 rad @@ -231605,1491 +231683,1481 @@ entities: parent: 2 - proto: Table entities: - - uid: 30704 + - uid: 30559 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,21.5 parent: 2 - - uid: 30705 + - uid: 30560 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,22.5 parent: 2 - - uid: 30706 + - uid: 30561 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,24.5 parent: 2 - - uid: 30707 + - uid: 30562 components: - type: Transform pos: 67.5,30.5 parent: 2 - - uid: 30708 + - uid: 30563 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,23.5 parent: 2 - - uid: 30709 + - uid: 30564 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,24.5 parent: 2 - - uid: 30710 + - uid: 30565 components: - type: Transform pos: 68.5,30.5 parent: 2 - - uid: 30711 + - uid: 30566 components: - type: Transform pos: 66.5,27.5 parent: 2 - - uid: 30712 + - uid: 30567 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,23.5 parent: 2 - - uid: 30713 + - uid: 30568 components: - type: Transform pos: 66.5,30.5 parent: 2 - - uid: 30714 + - uid: 30569 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,30.5 parent: 2 - - uid: 30715 + - uid: 30570 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,22.5 parent: 2 - - uid: 30716 + - uid: 30571 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,30.5 parent: 2 - - uid: 30717 + - uid: 30572 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 30718 + - uid: 30573 components: - type: Transform pos: 65.5,27.5 parent: 2 - - uid: 30719 + - uid: 30574 components: - type: Transform pos: 65.5,30.5 parent: 2 - - uid: 30720 + - uid: 30575 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,37.5 parent: 2 - - uid: 30721 + - uid: 30576 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,21.5 parent: 2 - - uid: 30722 + - uid: 30577 components: - type: Transform pos: 17.5,28.5 parent: 2 - - uid: 30723 + - uid: 30578 components: - type: Transform pos: 10.5,-13.5 parent: 2 - - uid: 30724 + - uid: 30579 components: - type: Transform pos: -34.5,47.5 parent: 2 - - uid: 30725 - components: - - type: Transform - pos: -34.5,48.5 - parent: 2 - - uid: 30726 + - uid: 30581 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-54.5 parent: 2 - - uid: 30727 + - uid: 30582 components: - type: Transform pos: 10.5,-3.5 parent: 2 - - uid: 30728 + - uid: 30583 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-4.5 parent: 2 - - uid: 30729 + - uid: 30584 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-4.5 parent: 2 - - uid: 30730 + - uid: 30585 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-3.5 parent: 2 - - uid: 30731 + - uid: 30586 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-4.5 parent: 2 - - uid: 30732 + - uid: 30587 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-4.5 parent: 2 - - uid: 30733 + - uid: 30588 components: - type: Transform pos: -46.5,11.5 parent: 2 - - uid: 30734 + - uid: 30589 components: - type: Transform pos: -46.5,-32.5 parent: 2 - - uid: 30735 + - uid: 30590 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-10.5 parent: 2 - - uid: 30736 + - uid: 30591 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-10.5 parent: 2 - - uid: 30737 + - uid: 30592 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-61.5 parent: 2 - - uid: 30738 + - uid: 30593 components: - type: Transform pos: -48.5,11.5 parent: 2 - - uid: 30739 + - uid: 30594 components: - type: Transform pos: -45.5,-32.5 parent: 2 - - uid: 30740 + - uid: 30595 components: - type: Transform pos: -47.5,11.5 parent: 2 - - uid: 30741 + - uid: 30596 components: - type: Transform pos: 55.5,-24.5 parent: 2 - - uid: 30742 + - uid: 30597 components: - type: Transform pos: 63.5,-24.5 parent: 2 - - uid: 30743 + - uid: 30598 components: - type: Transform pos: 55.5,-16.5 parent: 2 - - uid: 30744 + - uid: 30599 components: - type: Transform pos: -34.5,52.5 parent: 2 - - uid: 30745 + - uid: 30600 components: - type: Transform pos: -22.5,-14.5 parent: 2 - - uid: 30746 + - uid: 30601 components: - type: Transform pos: -25.5,-17.5 parent: 2 - - uid: 30747 + - uid: 30602 components: - type: Transform pos: -21.5,-16.5 parent: 2 - - uid: 30748 + - uid: 30603 components: - type: Transform pos: 55.5,-23.5 parent: 2 - - uid: 30749 + - uid: 30604 components: - type: Transform pos: -23.5,-14.5 parent: 2 - - uid: 30750 + - uid: 30605 components: - type: Transform pos: -24.5,-14.5 parent: 2 - - uid: 30751 + - uid: 30606 components: - type: Transform pos: 55.5,-15.5 parent: 2 - - uid: 30752 + - uid: 30607 components: - type: Transform pos: 55.5,-22.5 parent: 2 - - uid: 30753 + - uid: 30608 components: - type: Transform pos: -21.5,-15.5 parent: 2 - - uid: 30754 + - uid: 30609 components: - type: Transform pos: 55.5,-14.5 parent: 2 - - uid: 30755 + - uid: 30610 components: - type: Transform pos: 63.5,-26.5 parent: 2 - - uid: 30756 + - uid: 30611 components: - type: Transform pos: -24.5,-17.5 parent: 2 - - uid: 30757 + - uid: 30612 components: - type: Transform pos: 63.5,-13.5 parent: 2 - - uid: 30758 + - uid: 30613 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 30759 + - uid: 30614 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 30760 + - uid: 30615 components: - type: Transform pos: 63.5,-25.5 parent: 2 - - uid: 30761 + - uid: 30616 components: - type: Transform pos: 14.5,-58.5 parent: 2 - - uid: 30762 + - uid: 30617 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,38.5 parent: 2 - - uid: 30763 + - uid: 30618 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,29.5 parent: 2 - - uid: 30764 + - uid: 30619 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-71.5 parent: 2 - - uid: 30765 + - uid: 30620 components: - type: Transform pos: -39.5,52.5 parent: 2 - - uid: 30766 + - uid: 30621 components: - type: Transform pos: -39.5,53.5 parent: 2 - - uid: 30767 + - uid: 30622 components: - type: Transform pos: -7.5,-39.5 parent: 2 - - uid: 30768 + - uid: 30623 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 30769 + - uid: 30624 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,60.5 parent: 2 - - uid: 30770 + - uid: 30625 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 2 - - uid: 30771 + - uid: 30626 components: - type: Transform pos: 14.5,-57.5 parent: 2 - - uid: 30772 + - uid: 30627 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 30773 + - uid: 30628 components: - type: Transform pos: -62.5,0.5 parent: 2 - - uid: 30775 + - uid: 30629 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 30776 + - uid: 30630 components: - type: Transform pos: -30.5,-30.5 parent: 2 - - uid: 30777 + - uid: 30631 components: - type: Transform pos: 43.5,-37.5 parent: 2 - - uid: 30778 + - uid: 30632 components: - type: Transform pos: -40.5,3.5 parent: 2 - - uid: 30779 + - uid: 30633 components: - type: Transform pos: 4.5,43.5 parent: 2 - - uid: 30780 + - uid: 30634 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 30781 + - uid: 30635 components: - type: Transform pos: 54.5,-42.5 parent: 2 - - uid: 30782 + - uid: 30636 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,38.5 parent: 2 - - uid: 30783 + - uid: 30637 components: - type: Transform pos: 18.5,-45.5 parent: 2 - - uid: 30784 + - uid: 30638 components: - type: Transform pos: 4.5,-52.5 parent: 2 - - uid: 30785 + - uid: 30639 components: - type: Transform pos: 2.5,-22.5 parent: 2 - - uid: 30786 + - uid: 30640 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 - - uid: 30787 + - uid: 30641 components: - type: Transform pos: 36.5,-18.5 parent: 2 - - uid: 30788 + - uid: 30642 components: - type: Transform pos: 35.5,-18.5 parent: 2 - - uid: 30789 + - uid: 30643 components: - type: Transform pos: 36.5,-19.5 parent: 2 - - uid: 30790 + - uid: 30644 components: - type: Transform pos: 37.5,-12.5 parent: 2 - - uid: 30791 + - uid: 30645 components: - type: Transform pos: 37.5,-13.5 parent: 2 - - uid: 30792 + - uid: 30646 components: - type: Transform pos: 3.5,37.5 parent: 2 - - uid: 30793 + - uid: 30647 components: - type: Transform pos: 49.5,-43.5 parent: 2 - - uid: 30794 + - uid: 30648 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,59.5 parent: 2 - - uid: 30795 + - uid: 30649 components: - type: Transform pos: 8.5,37.5 parent: 2 - - uid: 30796 + - uid: 30650 components: - type: Transform pos: -0.5,50.5 parent: 2 - - uid: 30797 + - uid: 30651 components: - type: Transform pos: -24.5,31.5 parent: 2 - - uid: 30798 + - uid: 30652 components: - type: Transform pos: 12.5,-51.5 parent: 2 - - uid: 30799 + - uid: 30653 components: - type: Transform pos: 7.5,-49.5 parent: 2 - - uid: 30800 + - uid: 30654 components: - type: Transform pos: 0.5,50.5 parent: 2 - - uid: 30801 + - uid: 30655 components: - type: Transform pos: 38.5,-9.5 parent: 2 - - uid: 30802 + - uid: 30656 components: - type: Transform pos: 2.5,31.5 parent: 2 - - uid: 30803 + - uid: 30657 components: - type: Transform pos: 3.5,31.5 parent: 2 - - uid: 30804 + - uid: 30658 components: - type: Transform pos: 37.5,-9.5 parent: 2 - - uid: 30805 + - uid: 30659 components: - type: Transform pos: 36.5,-71.5 parent: 2 - - uid: 30806 + - uid: 30660 components: - type: Transform pos: 40.5,-63.5 parent: 2 - - uid: 30807 + - uid: 30661 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 30808 + - uid: 30662 components: - type: Transform pos: -39.5,-50.5 parent: 2 - - uid: 30809 + - uid: 30663 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,62.5 parent: 2 - - uid: 30810 + - uid: 30664 components: - type: Transform pos: -3.5,-27.5 parent: 2 - - uid: 30811 + - uid: 30665 components: - type: Transform pos: -77.5,-30.5 parent: 2 - - uid: 30812 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 2 - - uid: 30813 + - uid: 30667 components: - type: Transform pos: 6.5,-38.5 parent: 2 - - uid: 30814 + - uid: 30668 components: - type: Transform pos: 2.5,-27.5 parent: 2 - - uid: 30815 + - uid: 30669 components: - type: Transform pos: 36.5,-9.5 parent: 2 - - uid: 30816 + - uid: 30670 components: - type: Transform pos: -44.5,-24.5 parent: 2 - - uid: 30817 + - uid: 30671 components: - type: Transform pos: -20.5,-60.5 parent: 2 - - uid: 30818 + - uid: 30672 components: - type: Transform pos: 7.5,48.5 parent: 2 - - uid: 30819 + - uid: 30673 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 30820 + - uid: 30674 components: - type: Transform pos: -30.5,-31.5 parent: 2 - - uid: 30821 + - uid: 30675 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,42.5 parent: 2 - - uid: 30822 + - uid: 30676 components: - type: Transform pos: 7.5,-48.5 parent: 2 - - uid: 30823 + - uid: 30677 components: - type: Transform pos: -31.5,36.5 parent: 2 - - uid: 30824 + - uid: 30678 components: - type: Transform pos: 7.5,-16.5 parent: 2 - - uid: 30825 + - uid: 30679 components: - type: Transform pos: 12.5,75.5 parent: 2 - - uid: 30826 + - uid: 30680 components: - type: Transform pos: 38.5,-63.5 parent: 2 - - uid: 30827 + - uid: 30681 components: - type: Transform pos: 24.5,38.5 parent: 2 - - uid: 30828 + - uid: 30682 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,0.5 parent: 2 - - uid: 30829 + - uid: 30683 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-3.5 parent: 2 - - uid: 30830 + - uid: 30684 components: - type: Transform pos: -24.5,35.5 parent: 2 - - uid: 30831 + - uid: 30685 components: - type: Transform pos: -24.5,37.5 parent: 2 - - uid: 30832 + - uid: 30686 components: - type: Transform pos: -38.5,40.5 parent: 2 - - uid: 30833 + - uid: 30687 components: - type: Transform pos: 9.5,-3.5 parent: 2 - - uid: 30834 + - uid: 30688 components: - type: Transform pos: 43.5,-44.5 parent: 2 - - uid: 30835 + - uid: 30689 components: - type: Transform pos: 79.5,-20.5 parent: 2 - - uid: 30836 + - uid: 30690 components: - type: Transform pos: 81.5,-20.5 parent: 2 - - uid: 30837 + - uid: 30691 components: - type: Transform pos: 24.5,34.5 parent: 2 - - uid: 30838 + - uid: 30692 components: - type: Transform pos: 11.5,40.5 parent: 2 - - uid: 30839 + - uid: 30693 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,28.5 parent: 2 - - uid: 30840 + - uid: 30694 components: - type: Transform pos: 23.5,65.5 parent: 2 - - uid: 30841 + - uid: 30695 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-42.5 parent: 2 - - uid: 30842 + - uid: 30696 components: - type: Transform pos: 20.5,0.5 parent: 2 - - uid: 30843 + - uid: 30697 components: - type: Transform pos: 9.5,85.5 parent: 2 - - uid: 30844 + - uid: 30698 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,13.5 parent: 2 - - uid: 30845 + - uid: 30699 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-55.5 parent: 2 - - uid: 30846 + - uid: 30700 components: - type: Transform pos: -10.5,-22.5 parent: 2 - - uid: 30847 + - uid: 30701 components: - type: Transform pos: -33.5,34.5 parent: 2 - - uid: 30848 + - uid: 30702 components: - type: Transform pos: -15.5,-22.5 parent: 2 - - uid: 30849 + - uid: 30703 components: - type: Transform pos: -10.5,-27.5 parent: 2 - - uid: 30850 + - uid: 30704 components: - type: Transform pos: 49.5,-44.5 parent: 2 - - uid: 30851 + - uid: 30705 components: - type: Transform pos: 22.5,65.5 parent: 2 - - uid: 30852 + - uid: 30706 components: - type: Transform pos: -41.5,40.5 parent: 2 - - uid: 30853 + - uid: 30707 components: - type: Transform pos: -24.5,34.5 parent: 2 - - uid: 30854 + - uid: 30708 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,32.5 parent: 2 - - uid: 30855 + - uid: 30709 components: - type: Transform pos: -8.5,-27.5 parent: 2 - - uid: 30856 + - uid: 30710 components: - type: Transform pos: -24.5,32.5 parent: 2 - - uid: 30857 + - uid: 30711 components: - type: Transform pos: -33.5,37.5 parent: 2 - - uid: 30858 + - uid: 30712 components: - type: Transform pos: 6.5,-48.5 parent: 2 - - uid: 30859 + - uid: 30713 components: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 30860 + - uid: 30714 components: - type: Transform pos: 11.5,-52.5 parent: 2 - - uid: 30861 + - uid: 30715 components: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 30862 + - uid: 30716 components: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 30863 + - uid: 30717 components: - type: Transform pos: 3.5,-52.5 parent: 2 - - uid: 30864 + - uid: 30718 components: - type: Transform pos: 3.5,-52.5 parent: 2 - - uid: 30865 + - uid: 30719 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 - - uid: 30866 + - uid: 30720 components: - type: Transform pos: 36.5,-10.5 parent: 2 - - uid: 30867 + - uid: 30721 components: - type: Transform pos: 26.5,0.5 parent: 2 - - uid: 30868 + - uid: 30722 components: - type: Transform pos: -29.5,34.5 parent: 2 - - uid: 30869 + - uid: 30723 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-43.5 parent: 2 - - uid: 30870 + - uid: 30724 components: - type: Transform pos: 6.5,33.5 parent: 2 - - uid: 30871 + - uid: 30725 components: - type: Transform pos: -24.5,52.5 parent: 2 - - uid: 30872 + - uid: 30726 components: - type: Transform pos: -25.5,54.5 parent: 2 - - uid: 30873 + - uid: 30727 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,32.5 parent: 2 - - uid: 30874 + - uid: 30728 components: - type: Transform pos: 19.5,26.5 parent: 2 - - uid: 30875 + - uid: 30729 components: - type: Transform pos: 27.5,67.5 parent: 2 - - uid: 30876 + - uid: 30730 components: - type: Transform pos: -24.5,38.5 parent: 2 - - uid: 30877 + - uid: 30731 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-13.5 parent: 2 - - uid: 30878 + - uid: 30732 components: - type: Transform pos: -24.5,-68.5 parent: 2 - - uid: 30879 + - uid: 30733 components: - type: Transform pos: -30.5,34.5 parent: 2 - - uid: 30880 + - uid: 30734 components: - type: Transform pos: 24.5,8.5 parent: 2 - - uid: 30881 + - uid: 30735 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-44.5 parent: 2 - - uid: 30882 + - uid: 30736 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-49.5 parent: 2 - - uid: 30883 + - uid: 30737 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-43.5 parent: 2 - - uid: 30884 + - uid: 30738 components: - type: Transform pos: 49.5,-37.5 parent: 2 - - uid: 30885 + - uid: 30739 components: - type: Transform pos: -24.5,-66.5 parent: 2 - - uid: 30886 + - uid: 30740 components: - type: Transform pos: 49.5,-42.5 parent: 2 - - uid: 30887 + - uid: 30741 components: - type: Transform pos: 41.5,-63.5 parent: 2 - - uid: 30888 + - uid: 30742 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 30889 + - uid: 30743 components: - type: Transform pos: 10.5,33.5 parent: 2 - - uid: 30890 + - uid: 30744 components: - type: Transform pos: -33.5,35.5 parent: 2 - - uid: 30891 + - uid: 30745 components: - type: Transform pos: -15.5,-27.5 parent: 2 - - uid: 30892 + - uid: 30746 components: - type: Transform pos: 6.5,-16.5 parent: 2 - - uid: 30893 + - uid: 30747 components: - type: Transform pos: 20.5,1.5 parent: 2 - - uid: 30894 + - uid: 30748 components: - type: Transform pos: 17.5,65.5 parent: 2 - - uid: 30895 + - uid: 30749 components: - type: Transform pos: -27.5,45.5 parent: 2 - - uid: 30896 + - uid: 30750 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-41.5 parent: 2 - - uid: 30897 + - uid: 30751 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-47.5 parent: 2 - - uid: 30898 + - uid: 30752 components: - type: Transform pos: -23.5,-74.5 parent: 2 - - uid: 30899 + - uid: 30753 components: - type: Transform pos: 7.5,37.5 parent: 2 - - uid: 30900 + - uid: 30754 components: - type: Transform pos: -33.5,36.5 parent: 2 - - uid: 30901 + - uid: 30755 components: - type: Transform pos: 14.5,-22.5 parent: 2 - - uid: 30902 + - uid: 30756 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 parent: 2 - - uid: 30903 + - uid: 30757 components: - type: Transform pos: -26.5,45.5 parent: 2 - - uid: 30904 + - uid: 30758 components: - type: Transform pos: -77.5,-18.5 parent: 2 - - uid: 30905 + - uid: 30759 components: - type: Transform pos: 36.5,-12.5 parent: 2 - - uid: 30906 + - uid: 30760 components: - type: Transform pos: 36.5,-13.5 parent: 2 - - uid: 30907 + - uid: 30761 components: - type: Transform pos: -33.5,33.5 parent: 2 - - uid: 30908 + - uid: 30762 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 - - uid: 30909 + - uid: 30763 components: - type: Transform pos: 38.5,-13.5 parent: 2 - - uid: 30910 + - uid: 30764 components: - type: Transform pos: -24.5,-64.5 parent: 2 - - uid: 30911 + - uid: 30765 components: - type: Transform pos: 5.5,-48.5 parent: 2 - - uid: 30912 + - uid: 30766 components: - type: Transform pos: 12.5,76.5 parent: 2 - - uid: 30913 + - uid: 30767 components: - type: Transform pos: 20.5,-5.5 parent: 2 - - uid: 30914 + - uid: 30768 components: - type: Transform pos: -34.5,51.5 parent: 2 - - uid: 30915 + - uid: 30769 components: - type: Transform pos: 12.5,81.5 parent: 2 - - uid: 30916 + - uid: 30770 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 - - uid: 30917 + - uid: 30771 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-16.5 parent: 2 - - uid: 30918 + - uid: 30772 components: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 30919 + - uid: 30773 components: - type: Transform pos: 23.5,8.5 parent: 2 - - uid: 30920 + - uid: 30774 components: - type: Transform pos: 41.5,11.5 parent: 2 - - uid: 30921 + - uid: 30775 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 30922 + - uid: 30776 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-51.5 parent: 2 - - uid: 30923 + - uid: 30777 components: - type: Transform pos: -30.5,36.5 parent: 2 - - uid: 30924 + - uid: 30778 components: - type: Transform pos: 12.5,82.5 parent: 2 - - uid: 30925 + - uid: 30779 components: - type: Transform pos: 3.5,-27.5 parent: 2 - - uid: 30926 + - uid: 30780 components: - type: Transform pos: 20.5,-6.5 parent: 2 - - uid: 30927 + - uid: 30781 components: - type: Transform pos: -33.5,38.5 parent: 2 - - uid: 30928 + - uid: 30782 components: - type: Transform pos: 4.5,37.5 parent: 2 - - uid: 30929 + - uid: 30783 components: - type: Transform pos: 4.5,39.5 parent: 2 - - uid: 30930 + - uid: 30784 components: - type: Transform pos: 6.5,39.5 parent: 2 - - uid: 30931 + - uid: 30785 components: - type: Transform pos: 7.5,39.5 parent: 2 - - uid: 30932 + - uid: 30786 components: - type: Transform pos: 38.5,-19.5 parent: 2 - - uid: 30933 + - uid: 30787 components: - type: Transform pos: -31.5,34.5 parent: 2 - - uid: 30934 + - uid: 30788 components: - type: Transform pos: 27.5,65.5 parent: 2 - - uid: 30935 + - uid: 30789 components: - type: Transform pos: 14.5,-27.5 parent: 2 - - uid: 30936 + - uid: 30790 components: - type: Transform pos: -44.5,-30.5 parent: 2 - - uid: 30937 + - uid: 30791 components: - type: Transform pos: -8.5,-22.5 parent: 2 - - uid: 30938 + - uid: 30792 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,9.5 parent: 2 - - uid: 30939 + - uid: 30793 components: - type: Transform pos: -3.5,-22.5 parent: 2 - - uid: 30940 + - uid: 30794 components: - type: Transform pos: 38.5,-12.5 parent: 2 - - uid: 30941 + - uid: 30795 components: - type: Transform pos: -33.5,32.5 parent: 2 - - uid: 30942 + - uid: 30796 components: - type: Transform pos: 12.5,-52.5 parent: 2 - - uid: 30943 + - uid: 30797 components: - type: Transform pos: 74.5,-39.5 parent: 2 - - uid: 30944 + - uid: 30798 components: - type: Transform pos: 44.5,1.5 parent: 2 - - uid: 30945 + - uid: 30799 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,63.5 parent: 2 - - uid: 30946 + - uid: 30800 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,63.5 parent: 2 - - uid: 30947 + - uid: 30801 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-45.5 parent: 2 - - uid: 30948 + - uid: 30802 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-50.5 parent: 2 - - uid: 30949 + - uid: 30803 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-45.5 parent: 2 - - uid: 30950 + - uid: 30804 components: - type: Transform pos: 10.5,-12.5 parent: 2 - - uid: 30951 + - uid: 30805 components: - type: Transform pos: -29.5,36.5 parent: 2 - - uid: 30952 + - uid: 30806 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 30953 + - uid: 30807 components: - type: Transform pos: -28.5,45.5 parent: 2 - - uid: 30954 + - uid: 30808 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,47.5 parent: 2 - - uid: 30955 + - uid: 30809 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,47.5 parent: 2 - - uid: 30956 + - uid: 30810 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,47.5 parent: 2 - - uid: 30957 + - uid: 30811 components: - type: Transform pos: -18.5,-32.5 parent: 2 - - uid: 30958 + - uid: 30812 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 30959 + - uid: 30813 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-4.5 parent: 2 - - uid: 30960 + - uid: 30814 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-1.5 parent: 2 - - uid: 30961 + - uid: 30815 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-1.5 parent: 2 - - uid: 30962 + - uid: 30816 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-1.5 parent: 2 - - uid: 30963 + - uid: 30817 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-1.5 parent: 2 - - uid: 30964 + - uid: 30818 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-1.5 parent: 2 - - uid: 30965 + - uid: 30819 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-1.5 parent: 2 - - uid: 30966 + - uid: 30820 components: - type: Transform pos: 100.5,-1.5 parent: 2 - - uid: 30967 + - uid: 30821 components: - type: Transform pos: 100.5,-2.5 parent: 2 - - uid: 30968 + - uid: 30822 components: - type: Transform pos: 100.5,-3.5 parent: 2 - - uid: 30969 + - uid: 30823 components: - type: Transform pos: 17.5,27.5 parent: 2 - - uid: 30970 + - uid: 30824 components: - type: Transform pos: 67.5,27.5 parent: 2 - - uid: 30971 + - uid: 30825 components: - type: Transform pos: 64.5,27.5 parent: 2 - - uid: 30972 + - uid: 30826 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-8.5 parent: 2 - - uid: 30973 + - uid: 30827 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-8.5 parent: 2 - - uid: 39718 + - uid: 39545 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-1.5 - parent: 38584 - - uid: 39719 + parent: 38411 + - uid: 39546 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-2.5 - parent: 38584 - - uid: 39720 + parent: 38411 + - uid: 39547 components: - type: Transform pos: 11.5,-4.5 - parent: 38584 - - uid: 39721 + parent: 38411 + - uid: 39548 components: - type: Transform pos: 11.5,-2.5 - parent: 38584 - - uid: 39722 + parent: 38411 + - uid: 39549 components: - type: Transform pos: 11.5,-3.5 - parent: 38584 - - uid: 39723 + parent: 38411 + - uid: 39550 components: - type: Transform pos: 3.5,0.5 - parent: 38584 - - uid: 39724 + parent: 38411 + - uid: 39551 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,30.5 - parent: 38584 - - uid: 39725 + parent: 38411 + - uid: 39552 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,30.5 - parent: 38584 - - uid: 39726 + parent: 38411 + - uid: 39553 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-3.5 - parent: 38584 - - uid: 39727 + parent: 38411 + - uid: 39554 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-1.5 - parent: 38584 + parent: 38411 - proto: TableBrass entities: - - uid: 30974 + - uid: 30828 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,62.5 parent: 2 - - uid: 30975 + - uid: 30829 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,62.5 parent: 2 - - uid: 30976 + - uid: 30830 components: - type: Transform rot: 3.141592653589793 rad @@ -233097,64 +233165,64 @@ entities: parent: 2 - proto: TableCarpet entities: - - uid: 30977 + - uid: 30831 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,7.5 parent: 2 - - uid: 30978 + - uid: 30832 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,5.5 parent: 2 - - uid: 30979 + - uid: 30833 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,28.5 parent: 2 - - uid: 30980 + - uid: 30834 components: - type: Transform pos: -39.5,-9.5 parent: 2 - - uid: 30981 + - uid: 30835 components: - type: Transform pos: -40.5,-9.5 parent: 2 - - uid: 30982 + - uid: 30836 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-0.5 parent: 2 - - uid: 30983 + - uid: 30837 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-2.5 parent: 2 - - uid: 30984 + - uid: 30838 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 - - uid: 30985 + - uid: 30839 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,1.5 parent: 2 - - uid: 30986 + - uid: 30840 components: - type: Transform pos: -39.5,-10.5 parent: 2 - - uid: 30987 + - uid: 30841 components: - type: Transform rot: -1.5707963267948966 rad @@ -233162,571 +233230,571 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 30988 + - uid: 30842 components: - type: Transform pos: 11.5,68.5 parent: 2 - - uid: 30989 + - uid: 30843 components: - type: Transform pos: 11.5,67.5 parent: 2 - - uid: 30990 + - uid: 30844 components: - type: Transform pos: 10.5,67.5 parent: 2 - - uid: 30991 + - uid: 30845 components: - type: Transform pos: 78.5,8.5 parent: 2 - - uid: 30992 + - uid: 30846 components: - type: Transform pos: 76.5,8.5 parent: 2 - proto: TableCounterWood entities: - - uid: 30993 + - uid: 30847 components: - type: Transform pos: 93.5,-1.5 parent: 2 - - uid: 30994 + - uid: 30848 components: - type: Transform pos: 94.5,-1.5 parent: 2 - - uid: 30995 + - uid: 30849 components: - type: Transform pos: 92.5,-1.5 parent: 2 - - uid: 30996 + - uid: 30850 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,60.5 parent: 2 - - uid: 30997 + - uid: 30851 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,59.5 parent: 2 - - uid: 30998 + - uid: 30852 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,58.5 parent: 2 - - uid: 30999 + - uid: 30853 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,61.5 parent: 2 - - uid: 31000 + - uid: 30854 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,62.5 parent: 2 - - uid: 31001 + - uid: 30855 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-44.5 parent: 2 - - uid: 31002 + - uid: 30856 components: - type: Transform pos: -55.5,-44.5 parent: 2 - - uid: 31003 + - uid: 30857 components: - type: Transform pos: -55.5,-45.5 parent: 2 - - uid: 31004 + - uid: 30858 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 31005 + - uid: 30859 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-44.5 parent: 2 - - uid: 31006 + - uid: 30860 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-44.5 parent: 2 - - uid: 31007 + - uid: 30861 components: - type: Transform pos: -49.5,-48.5 parent: 2 - - uid: 31008 + - uid: 30862 components: - type: Transform pos: -50.5,-48.5 parent: 2 - - uid: 31009 + - uid: 30863 components: - type: Transform pos: 91.5,-1.5 parent: 2 - proto: TableFancyPink entities: - - uid: 31010 + - uid: 30864 components: - type: Transform pos: -66.5,-40.5 parent: 2 - - uid: 31011 + - uid: 30865 components: - type: Transform pos: -62.5,-40.5 parent: 2 - - uid: 31012 + - uid: 30866 components: - type: Transform pos: -70.5,-40.5 parent: 2 - - uid: 31013 + - uid: 30867 components: - type: Transform pos: -68.5,-43.5 parent: 2 - proto: TableFancyRed entities: - - uid: 31014 + - uid: 30868 components: - type: Transform pos: -11.5,44.5 parent: 2 - - uid: 31015 + - uid: 30869 components: - type: Transform pos: -11.5,46.5 parent: 2 - - uid: 31016 + - uid: 30870 components: - type: Transform pos: -11.5,36.5 parent: 2 - - uid: 31017 + - uid: 30871 components: - type: Transform pos: -11.5,38.5 parent: 2 - proto: TableFrame entities: - - uid: 1356 + - uid: 30872 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-25.5 parent: 2 - - uid: 31018 + - uid: 30873 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-36.5 parent: 2 - - uid: 31019 + - uid: 30874 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-34.5 parent: 2 - - uid: 31020 + - uid: 30875 components: - type: Transform pos: -39.5,-71.5 parent: 2 - - uid: 31021 + - uid: 30876 components: - type: Transform pos: -39.5,-72.5 parent: 2 - - uid: 31022 + - uid: 30877 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-71.5 parent: 2 - - uid: 31023 + - uid: 30878 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-74.5 parent: 2 - - uid: 31024 + - uid: 30879 components: - type: Transform pos: 27.5,-65.5 parent: 2 - proto: TableGlass entities: - - uid: 1053 + - uid: 30880 components: - type: Transform pos: -61.5,-25.5 parent: 2 - - uid: 31025 + - uid: 30881 components: - type: Transform pos: -26.5,43.5 parent: 2 - - uid: 31026 + - uid: 30882 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,68.5 parent: 2 - - uid: 31027 + - uid: 30883 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,84.5 parent: 2 - - uid: 31028 + - uid: 30884 components: - type: Transform pos: -27.5,43.5 parent: 2 - - uid: 31029 + - uid: 30885 components: - type: Transform pos: 7.5,90.5 parent: 2 - - uid: 31030 + - uid: 30886 components: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 31031 + - uid: 30887 components: - type: Transform pos: 21.5,-52.5 parent: 2 - - uid: 31032 + - uid: 30888 components: - type: Transform pos: 46.5,-30.5 parent: 2 - - uid: 31033 + - uid: 30889 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,77.5 parent: 2 - - uid: 31034 + - uid: 30890 components: - type: Transform pos: 43.5,-60.5 parent: 2 - - uid: 31035 + - uid: 30891 components: - type: Transform pos: 32.5,-24.5 parent: 2 - - uid: 31036 + - uid: 30892 components: - type: Transform pos: 32.5,-25.5 parent: 2 - - uid: 31037 + - uid: 30893 components: - type: Transform pos: 45.5,-60.5 parent: 2 - - uid: 31038 + - uid: 30894 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 31039 + - uid: 30895 components: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 31040 + - uid: 30896 components: - type: Transform pos: 3.5,-29.5 parent: 2 - - uid: 31041 + - uid: 30897 components: - type: Transform pos: 13.5,-37.5 parent: 2 - - uid: 31042 + - uid: 30898 components: - type: Transform pos: 14.5,-37.5 parent: 2 - - uid: 31043 + - uid: 30899 components: - type: Transform pos: 24.5,-46.5 parent: 2 - - uid: 31044 + - uid: 30900 components: - type: Transform pos: 20.5,-47.5 parent: 2 - - uid: 31045 + - uid: 30901 components: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 31046 + - uid: 30902 components: - type: Transform pos: 21.5,-42.5 parent: 2 - - uid: 31047 + - uid: 30903 components: - type: Transform pos: 39.5,-74.5 parent: 2 - - uid: 31048 + - uid: 30904 components: - type: Transform pos: 41.5,-74.5 parent: 2 - - uid: 31049 + - uid: 30905 components: - type: Transform pos: 6.5,-43.5 parent: 2 - - uid: 31050 + - uid: 30906 components: - type: Transform pos: 31.5,-26.5 parent: 2 - - uid: 31051 + - uid: 30907 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 31052 + - uid: 30908 components: - type: Transform pos: 27.5,-69.5 parent: 2 - - uid: 31053 + - uid: 30909 components: - type: Transform pos: 38.5,-74.5 parent: 2 - - uid: 31054 + - uid: 30910 components: - type: Transform pos: 26.5,-68.5 parent: 2 - - uid: 31055 + - uid: 30911 components: - type: Transform pos: -7.5,36.5 parent: 2 - - uid: 31056 + - uid: 30912 components: - type: Transform pos: 26.5,-27.5 parent: 2 - - uid: 31057 + - uid: 30913 components: - type: Transform pos: 30.5,-26.5 parent: 2 - - uid: 31058 + - uid: 30914 components: - type: Transform pos: 42.5,-70.5 parent: 2 - - uid: 31059 + - uid: 30915 components: - type: Transform pos: -5.5,41.5 parent: 2 - - uid: 31060 + - uid: 30916 components: - type: Transform pos: 26.5,-65.5 parent: 2 - - uid: 31061 + - uid: 30917 components: - type: Transform pos: -5.5,42.5 parent: 2 - - uid: 31062 + - uid: 30918 components: - type: Transform pos: -5.5,40.5 parent: 2 - - uid: 31063 + - uid: 30919 components: - type: Transform pos: -5.5,43.5 parent: 2 - - uid: 31064 + - uid: 30920 components: - type: Transform pos: 38.5,-60.5 parent: 2 - - uid: 31065 + - uid: 30921 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 31066 + - uid: 30922 components: - type: Transform pos: 24.5,-42.5 parent: 2 - - uid: 31067 + - uid: 30923 components: - type: Transform pos: 3.5,-44.5 parent: 2 - - uid: 31068 + - uid: 30924 components: - type: Transform pos: 20.5,-40.5 parent: 2 - - uid: 31069 + - uid: 30925 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 31070 + - uid: 30926 components: - type: Transform pos: 42.5,-69.5 parent: 2 - - uid: 31071 + - uid: 30927 components: - type: Transform pos: 6.5,-42.5 parent: 2 - - uid: 31072 + - uid: 30928 components: - type: Transform pos: 22.5,-46.5 parent: 2 - - uid: 31073 + - uid: 30929 components: - type: Transform pos: 23.5,-46.5 parent: 2 - - uid: 31074 + - uid: 30930 components: - type: Transform pos: 28.5,-25.5 parent: 2 - - uid: 31075 + - uid: 30931 components: - type: Transform pos: 28.5,-24.5 parent: 2 - - uid: 31076 + - uid: 30932 components: - type: Transform pos: 28.5,-26.5 parent: 2 - - uid: 31077 + - uid: 30933 components: - type: Transform pos: 38.5,-59.5 parent: 2 - - uid: 31078 + - uid: 30934 components: - type: Transform pos: 39.5,-59.5 parent: 2 - - uid: 31079 + - uid: 30935 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-30.5 parent: 2 - - uid: 31080 + - uid: 30936 components: - type: Transform pos: 30.5,-46.5 parent: 2 - - uid: 31081 + - uid: 30937 components: - type: Transform pos: 22.5,-42.5 parent: 2 - - uid: 31082 + - uid: 30938 components: - type: Transform pos: 26.5,-69.5 parent: 2 - - uid: 31083 + - uid: 30939 components: - type: Transform pos: 23.5,-42.5 parent: 2 - - uid: 31084 + - uid: 30940 components: - type: Transform pos: 3.5,-45.5 parent: 2 - - uid: 31085 + - uid: 30941 components: - type: Transform pos: -3.5,-63.5 parent: 2 - - uid: 31086 + - uid: 30942 components: - type: Transform pos: -4.5,-63.5 parent: 2 - - uid: 31087 + - uid: 30943 components: - type: Transform pos: -1.5,-77.5 parent: 2 - - uid: 31088 + - uid: 30944 components: - type: Transform pos: -6.5,-77.5 parent: 2 - - uid: 31089 + - uid: 30945 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 31090 + - uid: 30946 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 31091 + - uid: 30947 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,77.5 parent: 2 - - uid: 31092 + - uid: 30948 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-66.5 parent: 2 - - uid: 31093 + - uid: 30949 components: - type: Transform rot: 3.141592653589793 rad @@ -233734,2456 +233802,2456 @@ entities: parent: 2 - proto: TablePlasmaGlass entities: - - uid: 31094 + - uid: 30950 components: - type: Transform pos: -17.5,-55.5 parent: 2 - - uid: 31095 + - uid: 30951 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-56.5 parent: 2 - - uid: 31096 + - uid: 30952 components: - type: Transform pos: -18.5,-55.5 parent: 2 - - uid: 31097 + - uid: 30953 components: - type: Transform pos: -19.5,-55.5 parent: 2 - - uid: 31098 + - uid: 30954 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-47.5 parent: 2 - - uid: 31099 + - uid: 30955 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-47.5 parent: 2 - - uid: 39728 + - uid: 39555 components: - type: Transform pos: -20.5,33.5 - parent: 38584 - - uid: 39729 + parent: 38411 + - uid: 39556 components: - type: Transform pos: -20.5,34.5 - parent: 38584 + parent: 38411 - proto: TableReinforced entities: - - uid: 31100 + - uid: 30956 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-4.5 parent: 2 - - uid: 31101 + - uid: 30957 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-2.5 parent: 2 - - uid: 31102 + - uid: 30958 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-2.5 parent: 2 - - uid: 31103 + - uid: 30959 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-3.5 parent: 2 - - uid: 31104 + - uid: 30960 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-4.5 parent: 2 - - uid: 31105 + - uid: 30961 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-3.5 parent: 2 - - uid: 31106 + - uid: 30962 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-3.5 parent: 2 - - uid: 31107 + - uid: 30963 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-3.5 parent: 2 - - uid: 31108 + - uid: 30964 components: - type: Transform pos: 46.5,11.5 parent: 2 - - uid: 31109 + - uid: 30965 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,27.5 parent: 2 - - uid: 31110 + - uid: 30966 components: - type: Transform pos: 56.5,23.5 parent: 2 - - uid: 31111 + - uid: 30967 components: - type: Transform pos: 55.5,25.5 parent: 2 - - uid: 31112 + - uid: 30968 components: - type: Transform pos: 53.5,25.5 parent: 2 - - uid: 31113 + - uid: 30969 components: - type: Transform pos: 56.5,25.5 parent: 2 - - uid: 31114 + - uid: 30970 components: - type: Transform pos: 52.5,25.5 parent: 2 - - uid: 31115 + - uid: 30971 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,29.5 parent: 2 - - uid: 31116 + - uid: 30972 components: - type: Transform pos: 53.5,23.5 parent: 2 - - uid: 31117 + - uid: 30973 components: - type: Transform pos: 55.5,23.5 parent: 2 - - uid: 31118 + - uid: 30974 components: - type: Transform pos: 52.5,23.5 parent: 2 - - uid: 31119 + - uid: 30975 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,31.5 parent: 2 - - uid: 31120 + - uid: 30976 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,30.5 parent: 2 - - uid: 31121 + - uid: 30977 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,29.5 parent: 2 - - uid: 31122 + - uid: 30978 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,31.5 parent: 2 - - uid: 31123 + - uid: 30979 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,27.5 parent: 2 - - uid: 31124 + - uid: 30980 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,30.5 parent: 2 - - uid: 31125 + - uid: 30981 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,30.5 parent: 2 - - uid: 31126 + - uid: 30982 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,29.5 parent: 2 - - uid: 31127 + - uid: 30983 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,29.5 parent: 2 - - uid: 31128 + - uid: 30984 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-0.5 parent: 2 - - uid: 31129 + - uid: 30985 components: - type: Transform pos: -53.5,12.5 parent: 2 - - uid: 31130 + - uid: 30986 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-31.5 parent: 2 - - uid: 31131 + - uid: 30987 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-30.5 parent: 2 - - uid: 31132 + - uid: 30988 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,14.5 parent: 2 - - uid: 31133 + - uid: 30989 components: - type: Transform pos: -57.5,56.5 parent: 2 - - uid: 31134 + - uid: 30990 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,31.5 parent: 2 - - uid: 31135 + - uid: 30991 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,29.5 parent: 2 - - uid: 31136 + - uid: 30992 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,32.5 parent: 2 - - uid: 31137 + - uid: 30993 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,31.5 parent: 2 - - uid: 31138 + - uid: 30994 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,29.5 parent: 2 - - uid: 31139 + - uid: 30995 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,32.5 parent: 2 - - uid: 31140 + - uid: 30996 components: - type: Transform pos: 9.5,-33.5 parent: 2 - - uid: 31141 + - uid: 30997 components: - type: Transform pos: -20.5,-38.5 parent: 2 - - uid: 31142 + - uid: 30998 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-28.5 parent: 2 - - uid: 31143 + - uid: 30999 components: - type: Transform pos: 9.5,32.5 parent: 2 - - uid: 31144 + - uid: 31000 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-34.5 parent: 2 - - uid: 31145 + - uid: 31001 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 31146 + - uid: 31002 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,43.5 parent: 2 - - uid: 31147 + - uid: 31003 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-47.5 parent: 2 - - uid: 31148 + - uid: 31004 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-33.5 parent: 2 - - uid: 31149 + - uid: 31005 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 31150 + - uid: 31006 components: - type: Transform pos: 2.5,-59.5 parent: 2 - - uid: 31151 + - uid: 31007 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,11.5 parent: 2 - - uid: 31152 + - uid: 31008 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,14.5 parent: 2 - - uid: 31153 + - uid: 31009 components: - type: Transform pos: -60.5,22.5 parent: 2 - - uid: 31154 + - uid: 31010 components: - type: Transform pos: -60.5,23.5 parent: 2 - - uid: 31155 + - uid: 31011 components: - type: Transform pos: -14.5,4.5 parent: 2 - - uid: 31156 + - uid: 31012 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,14.5 parent: 2 - - uid: 31157 + - uid: 31013 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,28.5 parent: 2 - - uid: 31158 + - uid: 31014 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,28.5 parent: 2 - - uid: 31159 + - uid: 31015 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,62.5 parent: 2 - - uid: 31160 + - uid: 31016 components: - type: Transform pos: -22.5,3.5 parent: 2 - - uid: 31161 + - uid: 31017 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 31162 + - uid: 31018 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,8.5 parent: 2 - - uid: 31163 + - uid: 31019 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 31164 + - uid: 31020 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-28.5 parent: 2 - - uid: 31165 + - uid: 31021 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-59.5 parent: 2 - - uid: 31166 + - uid: 31022 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,18.5 parent: 2 - - uid: 31167 + - uid: 31023 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-15.5 parent: 2 - - uid: 31168 + - uid: 31024 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-15.5 parent: 2 - - uid: 31169 + - uid: 31025 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,51.5 parent: 2 - - uid: 31170 + - uid: 31026 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 - - uid: 31171 + - uid: 31027 components: - type: Transform pos: 72.5,23.5 parent: 2 - - uid: 31172 + - uid: 31028 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 31173 + - uid: 31029 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,61.5 parent: 2 - - uid: 31174 + - uid: 31030 components: - type: Transform pos: 72.5,22.5 parent: 2 - - uid: 31175 + - uid: 31031 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-4.5 parent: 2 - - uid: 31176 + - uid: 31032 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 31177 + - uid: 31033 components: - type: Transform pos: 72.5,21.5 parent: 2 - - uid: 31178 + - uid: 31034 components: - type: Transform pos: -22.5,0.5 parent: 2 - - uid: 31179 + - uid: 31035 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,0.5 parent: 2 - - uid: 31180 + - uid: 31036 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 31181 + - uid: 31037 components: - type: Transform pos: 50.5,7.5 parent: 2 - - uid: 31182 + - uid: 31038 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-4.5 parent: 2 - - uid: 31183 + - uid: 31039 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,30.5 parent: 2 - - uid: 31184 + - uid: 31040 components: - type: Transform pos: -10.5,-52.5 parent: 2 - - uid: 31185 + - uid: 31041 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,17.5 parent: 2 - - uid: 31186 + - uid: 31042 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-52.5 parent: 2 - - uid: 31187 + - uid: 31043 components: - type: Transform pos: 51.5,11.5 parent: 2 - - uid: 31188 + - uid: 31044 components: - type: Transform pos: -9.5,-52.5 parent: 2 - - uid: 31189 + - uid: 31045 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,21.5 parent: 2 - - uid: 31190 + - uid: 31046 components: - type: Transform pos: 27.5,28.5 parent: 2 - - uid: 31191 + - uid: 31047 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,15.5 parent: 2 - - uid: 31192 + - uid: 31048 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,16.5 parent: 2 - - uid: 31193 + - uid: 31049 components: - type: Transform pos: -24.5,-43.5 parent: 2 - - uid: 31194 + - uid: 31050 components: - type: Transform pos: 8.5,-60.5 parent: 2 - - uid: 31195 + - uid: 31051 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,19.5 parent: 2 - - uid: 31196 + - uid: 31052 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,15.5 parent: 2 - - uid: 31197 + - uid: 31053 components: - type: Transform pos: 58.5,13.5 parent: 2 - - uid: 31198 + - uid: 31054 components: - type: Transform pos: 50.5,6.5 parent: 2 - - uid: 31199 + - uid: 31055 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,16.5 parent: 2 - - uid: 31200 + - uid: 31056 components: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 31201 + - uid: 31057 components: - type: Transform pos: -8.5,-52.5 parent: 2 - - uid: 31202 + - uid: 31058 components: - type: Transform pos: 70.5,12.5 parent: 2 - - uid: 31203 + - uid: 31059 components: - type: Transform pos: -10.5,-51.5 parent: 2 - - uid: 31204 + - uid: 31060 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,21.5 parent: 2 - - uid: 31205 + - uid: 31061 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-42.5 parent: 2 - - uid: 31206 + - uid: 31062 components: - type: Transform pos: 53.5,3.5 parent: 2 - - uid: 31207 + - uid: 31063 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 31208 + - uid: 31064 components: - type: Transform rot: 3.141592653589793 rad pos: -121.5,21.5 parent: 2 - - uid: 31209 + - uid: 31065 components: - type: Transform pos: 54.5,3.5 parent: 2 - - uid: 31210 + - uid: 31066 components: - type: Transform pos: 56.5,15.5 parent: 2 - - uid: 31211 + - uid: 31067 components: - type: Transform pos: -35.5,-35.5 parent: 2 - - uid: 31212 + - uid: 31068 components: - type: Transform pos: 69.5,12.5 parent: 2 - - uid: 31213 + - uid: 31069 components: - type: Transform pos: 19.5,39.5 parent: 2 - - uid: 31214 + - uid: 31070 components: - type: Transform pos: 56.5,13.5 parent: 2 - - uid: 31215 + - uid: 31071 components: - type: Transform pos: 73.5,23.5 parent: 2 - - uid: 31216 + - uid: 31072 components: - type: Transform pos: 3.5,-58.5 parent: 2 - - uid: 31217 + - uid: 31073 components: - type: Transform pos: 46.5,2.5 parent: 2 - - uid: 31218 + - uid: 31074 components: - type: Transform pos: -15.5,5.5 parent: 2 - - uid: 31219 + - uid: 31075 components: - type: Transform pos: 4.5,18.5 parent: 2 - - uid: 31220 + - uid: 31076 components: - type: Transform pos: -16.5,-41.5 parent: 2 - - uid: 31221 + - uid: 31077 components: - type: Transform pos: -25.5,-27.5 parent: 2 - - uid: 31222 + - uid: 31078 components: - type: Transform pos: -5.5,18.5 parent: 2 - - uid: 31223 + - uid: 31079 components: - type: Transform pos: 20.5,38.5 parent: 2 - - uid: 31224 + - uid: 31080 components: - type: Transform pos: -7.5,-61.5 parent: 2 - - uid: 31225 + - uid: 31081 components: - type: Transform pos: -45.5,17.5 parent: 2 - - uid: 31226 + - uid: 31082 components: - type: Transform pos: -45.5,-16.5 parent: 2 - - uid: 31227 + - uid: 31083 components: - type: Transform pos: 27.5,37.5 parent: 2 - - uid: 31228 + - uid: 31084 components: - type: Transform pos: -44.5,5.5 parent: 2 - - uid: 31229 + - uid: 31085 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 31230 + - uid: 31086 components: - type: Transform pos: 3.5,-60.5 parent: 2 - - uid: 31231 + - uid: 31087 components: - type: Transform pos: -41.5,-13.5 parent: 2 - - uid: 31232 + - uid: 31088 components: - type: Transform pos: -40.5,-13.5 parent: 2 - - uid: 31233 + - uid: 31089 components: - type: Transform pos: -4.5,-60.5 parent: 2 - - uid: 31234 + - uid: 31090 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,34.5 parent: 2 - - uid: 31235 + - uid: 31091 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 31236 + - uid: 31092 components: - type: Transform pos: -65.5,17.5 parent: 2 - - uid: 31237 + - uid: 31093 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,12.5 parent: 2 - - uid: 31238 + - uid: 31094 components: - type: Transform pos: -16.5,-40.5 parent: 2 - - uid: 31239 + - uid: 31095 components: - type: Transform pos: 1.5,18.5 parent: 2 - - uid: 31240 + - uid: 31096 components: - type: Transform pos: 10.5,46.5 parent: 2 - - uid: 31241 + - uid: 31097 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,16.5 parent: 2 - - uid: 31242 + - uid: 31098 components: - type: Transform pos: 8.5,-42.5 parent: 2 - - uid: 31243 + - uid: 31099 components: - type: Transform pos: -62.5,11.5 parent: 2 - - uid: 31244 + - uid: 31100 components: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 31245 + - uid: 31101 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-44.5 parent: 2 - - uid: 31246 + - uid: 31102 components: - type: Transform pos: -57.5,-13.5 parent: 2 - - uid: 31247 + - uid: 31103 components: - type: Transform rot: 3.141592653589793 rad pos: -123.5,21.5 parent: 2 - - uid: 31248 + - uid: 31104 components: - type: Transform pos: 20.5,39.5 parent: 2 - - uid: 31249 + - uid: 31105 components: - type: Transform pos: -69.5,12.5 parent: 2 - - uid: 31250 + - uid: 31106 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,32.5 parent: 2 - - uid: 31251 + - uid: 31107 components: - type: Transform pos: -18.5,-41.5 parent: 2 - - uid: 31252 + - uid: 31108 components: - type: Transform pos: -3.5,-29.5 parent: 2 - - uid: 31253 + - uid: 31109 components: - type: Transform pos: -20.5,-42.5 parent: 2 - - uid: 31254 + - uid: 31110 components: - type: Transform pos: -20.5,-43.5 parent: 2 - - uid: 31255 + - uid: 31111 components: - type: Transform pos: -55.5,-13.5 parent: 2 - - uid: 31256 + - uid: 31112 components: - type: Transform pos: -5.5,12.5 parent: 2 - - uid: 31257 + - uid: 31113 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,62.5 parent: 2 - - uid: 31258 + - uid: 31114 components: - type: Transform pos: 3.5,12.5 parent: 2 - - uid: 31259 + - uid: 31115 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-13.5 parent: 2 - - uid: 31260 + - uid: 31116 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-31.5 parent: 2 - - uid: 31261 + - uid: 31117 components: - type: Transform pos: -65.5,18.5 parent: 2 - - uid: 31262 + - uid: 31118 components: - type: Transform pos: -62.5,17.5 parent: 2 - - uid: 31263 + - uid: 31119 components: - type: Transform pos: -63.5,18.5 parent: 2 - - uid: 31264 + - uid: 31120 components: - type: Transform pos: -62.5,18.5 parent: 2 - - uid: 31265 + - uid: 31121 components: - type: Transform pos: 5.5,16.5 parent: 2 - - uid: 31266 + - uid: 31122 components: - type: Transform pos: -16.5,-37.5 parent: 2 - - uid: 31267 + - uid: 31123 components: - type: Transform pos: -5.5,17.5 parent: 2 - - uid: 31268 + - uid: 31124 components: - type: Transform pos: -56.5,-1.5 parent: 2 - - uid: 31269 + - uid: 31125 components: - type: Transform pos: -26.5,-44.5 parent: 2 - - uid: 31270 + - uid: 31126 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 - - uid: 31271 + - uid: 31127 components: - type: Transform pos: -45.5,-13.5 parent: 2 - - uid: 31272 + - uid: 31128 components: - type: Transform pos: -53.5,35.5 parent: 2 - - uid: 31273 + - uid: 31129 components: - type: Transform pos: -52.5,35.5 parent: 2 - - uid: 31274 + - uid: 31130 components: - type: Transform pos: -47.5,-25.5 parent: 2 - - uid: 31275 + - uid: 31131 components: - type: Transform pos: -59.5,42.5 parent: 2 - - uid: 31276 + - uid: 31132 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-45.5 parent: 2 - - uid: 31277 + - uid: 31133 components: - type: Transform pos: -37.5,16.5 parent: 2 - - uid: 31278 + - uid: 31134 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 - - uid: 31279 + - uid: 31135 components: - type: Transform pos: 31.5,32.5 parent: 2 - - uid: 31280 + - uid: 31136 components: - type: Transform pos: 33.5,32.5 parent: 2 - - uid: 31281 + - uid: 31137 components: - type: Transform pos: 7.5,65.5 parent: 2 - - uid: 31282 + - uid: 31138 components: - type: Transform pos: 21.5,68.5 parent: 2 - - uid: 31283 + - uid: 31139 components: - type: Transform pos: 19.5,68.5 parent: 2 - - uid: 31284 + - uid: 31140 components: - type: Transform pos: -62.5,9.5 parent: 2 - - uid: 31285 + - uid: 31141 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-40.5 parent: 2 - - uid: 31286 + - uid: 31142 components: - type: Transform pos: -40.5,-29.5 parent: 2 - - uid: 31287 + - uid: 31143 components: - type: Transform pos: 22.5,35.5 parent: 2 - - uid: 31288 + - uid: 31144 components: - type: Transform pos: -63.5,6.5 parent: 2 - - uid: 31289 + - uid: 31145 components: - type: Transform pos: 22.5,68.5 parent: 2 - - uid: 31290 + - uid: 31146 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 31291 + - uid: 31147 components: - type: Transform pos: -22.5,8.5 parent: 2 - - uid: 31292 + - uid: 31148 components: - type: Transform pos: -57.5,-1.5 parent: 2 - - uid: 31293 + - uid: 31149 components: - type: Transform pos: -45.5,-15.5 parent: 2 - - uid: 31294 + - uid: 31150 components: - type: Transform pos: -28.5,8.5 parent: 2 - - uid: 31295 + - uid: 31151 components: - type: Transform pos: -47.5,-29.5 parent: 2 - - uid: 31296 + - uid: 31152 components: - type: Transform pos: -50.5,-5.5 parent: 2 - - uid: 31297 + - uid: 31153 components: - type: Transform pos: -45.5,-17.5 parent: 2 - - uid: 31298 + - uid: 31154 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-5.5 parent: 2 - - uid: 31299 + - uid: 31155 components: - type: Transform pos: -62.5,8.5 parent: 2 - - uid: 31300 + - uid: 31156 components: - type: Transform pos: -25.5,-31.5 parent: 2 - - uid: 31301 + - uid: 31157 components: - type: Transform pos: -41.5,-17.5 parent: 2 - - uid: 31302 + - uid: 31158 components: - type: Transform pos: -42.5,-25.5 parent: 2 - - uid: 31303 + - uid: 31159 components: - type: Transform pos: -38.5,-25.5 parent: 2 - - uid: 31304 + - uid: 31160 components: - type: Transform pos: -34.5,-25.5 parent: 2 - - uid: 31305 + - uid: 31161 components: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 31306 + - uid: 31162 components: - type: Transform pos: -24.5,12.5 parent: 2 - - uid: 31307 + - uid: 31163 components: - type: Transform pos: -38.5,13.5 parent: 2 - - uid: 31308 + - uid: 31164 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-5.5 parent: 2 - - uid: 31309 + - uid: 31165 components: - type: Transform pos: -9.5,-35.5 parent: 2 - - uid: 31310 + - uid: 31166 components: - type: Transform pos: -50.5,-9.5 parent: 2 - - uid: 31311 + - uid: 31167 components: - type: Transform pos: -31.5,-37.5 parent: 2 - - uid: 31312 + - uid: 31168 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,12.5 parent: 2 - - uid: 31313 + - uid: 31169 components: - type: Transform pos: -54.5,-4.5 parent: 2 - - uid: 31314 + - uid: 31170 components: - type: Transform pos: -45.5,-12.5 parent: 2 - - uid: 31315 + - uid: 31171 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,12.5 parent: 2 - - uid: 31316 + - uid: 31172 components: - type: Transform pos: -9.5,-32.5 parent: 2 - - uid: 31317 + - uid: 31173 components: - type: Transform pos: -33.5,8.5 parent: 2 - - uid: 31318 + - uid: 31174 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-24.5 parent: 2 - - uid: 31319 + - uid: 31175 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-24.5 parent: 2 - - uid: 31320 + - uid: 31176 components: - type: Transform pos: -49.5,20.5 parent: 2 - - uid: 31321 + - uid: 31177 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-22.5 parent: 2 - - uid: 31322 + - uid: 31178 components: - type: Transform pos: -38.5,9.5 parent: 2 - - uid: 31323 + - uid: 31179 components: - type: Transform pos: -54.5,-5.5 parent: 2 - - uid: 31324 + - uid: 31180 components: - type: Transform pos: -57.5,-17.5 parent: 2 - - uid: 31325 + - uid: 31181 components: - type: Transform pos: -38.5,8.5 parent: 2 - - uid: 31326 + - uid: 31182 components: - type: Transform pos: -7.5,-35.5 parent: 2 - - uid: 31327 + - uid: 31183 components: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 31328 + - uid: 31184 components: - type: Transform pos: -31.5,-42.5 parent: 2 - - uid: 31329 + - uid: 31185 components: - type: Transform pos: -6.5,-47.5 parent: 2 - - uid: 31330 + - uid: 31186 components: - type: Transform pos: 68.5,12.5 parent: 2 - - uid: 31331 + - uid: 31187 components: - type: Transform pos: -54.5,9.5 parent: 2 - - uid: 31332 + - uid: 31188 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-13.5 parent: 2 - - uid: 31333 + - uid: 31189 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 - - uid: 31334 + - uid: 31190 components: - type: Transform pos: -6.5,-46.5 parent: 2 - - uid: 31335 + - uid: 31191 components: - type: Transform pos: -20.5,-37.5 parent: 2 - - uid: 31336 + - uid: 31192 components: - type: Transform pos: -32.5,9.5 parent: 2 - - uid: 31337 + - uid: 31193 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 31338 + - uid: 31194 components: - type: Transform pos: -59.5,52.5 parent: 2 - - uid: 31339 + - uid: 31195 components: - type: Transform pos: 27.5,35.5 parent: 2 - - uid: 31340 + - uid: 31196 components: - type: Transform pos: 29.5,-3.5 parent: 2 - - uid: 31341 + - uid: 31197 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,35.5 parent: 2 - - uid: 31342 + - uid: 31198 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,37.5 parent: 2 - - uid: 31343 + - uid: 31199 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,33.5 parent: 2 - - uid: 31344 + - uid: 31200 components: - type: Transform pos: -36.5,-35.5 parent: 2 - - uid: 31345 + - uid: 31201 components: - type: Transform pos: -63.5,9.5 parent: 2 - - uid: 31346 + - uid: 31202 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 31347 + - uid: 31203 components: - type: Transform pos: 18.5,68.5 parent: 2 - - uid: 31348 + - uid: 31204 components: - type: Transform pos: 14.5,38.5 parent: 2 - - uid: 31349 + - uid: 31205 components: - type: Transform pos: 15.5,39.5 parent: 2 - - uid: 31350 + - uid: 31206 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 31351 + - uid: 31207 components: - type: Transform pos: 2.5,65.5 parent: 2 - - uid: 31352 + - uid: 31208 components: - type: Transform pos: 29.5,44.5 parent: 2 - - uid: 31353 + - uid: 31209 components: - type: Transform pos: -21.5,9.5 parent: 2 - - uid: 31354 + - uid: 31210 components: - type: Transform pos: -6.5,-45.5 parent: 2 - - uid: 31355 + - uid: 31211 components: - type: Transform pos: -21.5,15.5 parent: 2 - - uid: 31356 + - uid: 31212 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 31357 + - uid: 31213 components: - type: Transform pos: -58.5,3.5 parent: 2 - - uid: 31358 + - uid: 31214 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,36.5 parent: 2 - - uid: 31359 + - uid: 31215 components: - type: Transform pos: -59.5,54.5 parent: 2 - - uid: 31360 + - uid: 31216 components: - type: Transform pos: -59.5,53.5 parent: 2 - - uid: 31361 + - uid: 31217 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,38.5 parent: 2 - - uid: 31362 + - uid: 31218 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 31363 + - uid: 31219 components: - type: Transform pos: -46.5,17.5 parent: 2 - - uid: 31364 + - uid: 31220 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,32.5 parent: 2 - - uid: 31365 + - uid: 31221 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 31366 + - uid: 31222 components: - type: Transform pos: 29.5,-0.5 parent: 2 - - uid: 31368 + - uid: 31223 components: - type: Transform pos: -62.5,6.5 parent: 2 - - uid: 31370 + - uid: 31224 components: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 31371 + - uid: 31225 components: - type: Transform pos: 29.5,0.5 parent: 2 - - uid: 31372 + - uid: 31226 components: - type: Transform pos: -36.5,-29.5 parent: 2 - - uid: 31373 + - uid: 31227 components: - type: Transform pos: -54.5,-10.5 parent: 2 - - uid: 31375 + - uid: 31228 components: - type: Transform pos: 14.5,39.5 parent: 2 - - uid: 31376 + - uid: 31229 components: - type: Transform pos: 8.5,-43.5 parent: 2 - - uid: 31377 + - uid: 31230 components: - type: Transform pos: 47.5,-35.5 parent: 2 - - uid: 31378 + - uid: 31231 components: - type: Transform pos: -63.5,11.5 parent: 2 - - uid: 31379 + - uid: 31232 components: - type: Transform pos: 4.5,17.5 parent: 2 - - uid: 31380 + - uid: 31233 components: - type: Transform pos: -64.5,18.5 parent: 2 - - uid: 31381 + - uid: 31234 components: - type: Transform pos: -55.5,9.5 parent: 2 - - uid: 31382 + - uid: 31235 components: - type: Transform pos: 72.5,0.5 parent: 2 - - uid: 31383 + - uid: 31236 components: - type: Transform pos: -21.5,14.5 parent: 2 - - uid: 31384 + - uid: 31237 components: - type: Transform pos: -32.5,15.5 parent: 2 - - uid: 31385 + - uid: 31238 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 31386 + - uid: 31239 components: - type: Transform pos: 45.5,-35.5 parent: 2 - - uid: 31387 + - uid: 31240 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,38.5 parent: 2 - - uid: 31388 + - uid: 31241 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-47.5 parent: 2 - - uid: 31389 + - uid: 31242 components: - type: Transform pos: -60.5,13.5 parent: 2 - - uid: 31390 + - uid: 31243 components: - type: Transform pos: -38.5,15.5 parent: 2 - - uid: 31391 + - uid: 31244 components: - type: Transform pos: -45.5,-11.5 parent: 2 - - uid: 31392 + - uid: 31245 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 31393 + - uid: 31246 components: - type: Transform pos: -55.5,-1.5 parent: 2 - - uid: 31394 + - uid: 31247 components: - type: Transform pos: -44.5,18.5 parent: 2 - - uid: 31395 + - uid: 31248 components: - type: Transform pos: 4.5,12.5 parent: 2 - - uid: 31396 + - uid: 31249 components: - type: Transform pos: -15.5,-16.5 parent: 2 - - uid: 31397 + - uid: 31250 components: - type: Transform pos: -38.5,11.5 parent: 2 - - uid: 31398 + - uid: 31251 components: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 31399 + - uid: 31252 components: - type: Transform pos: -26.5,-28.5 parent: 2 - - uid: 31400 + - uid: 31253 components: - type: Transform pos: -6.5,-61.5 parent: 2 - - uid: 31401 + - uid: 31254 components: - type: Transform pos: -37.5,8.5 parent: 2 - - uid: 31402 + - uid: 31255 components: - type: Transform pos: -31.5,-41.5 parent: 2 - - uid: 31403 + - uid: 31256 components: - type: Transform pos: -40.5,-17.5 parent: 2 - - uid: 31404 + - uid: 31257 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-31.5 parent: 2 - - uid: 31405 + - uid: 31258 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,12.5 parent: 2 - - uid: 31406 + - uid: 31259 components: - type: Transform pos: -26.5,-43.5 parent: 2 - - uid: 31407 + - uid: 31260 components: - type: Transform pos: -25.5,-43.5 parent: 2 - - uid: 31408 + - uid: 31261 components: - type: Transform pos: -2.5,18.5 parent: 2 - - uid: 31409 + - uid: 31262 components: - type: Transform pos: -27.5,-43.5 parent: 2 - - uid: 31410 + - uid: 31263 components: - type: Transform pos: -32.5,8.5 parent: 2 - - uid: 31411 + - uid: 31264 components: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 31412 + - uid: 31265 components: - type: Transform pos: -28.5,14.5 parent: 2 - - uid: 31413 + - uid: 31266 components: - type: Transform pos: 15.5,54.5 parent: 2 - - uid: 31414 + - uid: 31267 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 31415 + - uid: 31268 components: - type: Transform pos: 16.5,54.5 parent: 2 - - uid: 31416 + - uid: 31269 components: - type: Transform pos: -32.5,13.5 parent: 2 - - uid: 31417 + - uid: 31270 components: - type: Transform pos: -65.5,4.5 parent: 2 - - uid: 31418 + - uid: 31271 components: - type: Transform pos: -28.5,15.5 parent: 2 - - uid: 31419 + - uid: 31272 components: - type: Transform pos: -25.5,-25.5 parent: 2 - - uid: 31420 + - uid: 31273 components: - type: Transform pos: -21.5,8.5 parent: 2 - - uid: 31421 + - uid: 31274 components: - type: Transform pos: -38.5,16.5 parent: 2 - - uid: 31422 + - uid: 31275 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,48.5 parent: 2 - - uid: 31423 + - uid: 31276 components: - type: Transform pos: 48.5,-35.5 parent: 2 - - uid: 31424 + - uid: 31277 components: - type: Transform pos: -47.5,-26.5 parent: 2 - - uid: 31425 + - uid: 31278 components: - type: Transform pos: -17.5,-41.5 parent: 2 - - uid: 31426 + - uid: 31279 components: - type: Transform pos: -2.5,-33.5 parent: 2 - - uid: 31427 + - uid: 31280 components: - type: Transform pos: -4.5,-58.5 parent: 2 - - uid: 31428 + - uid: 31281 components: - type: Transform pos: -46.5,4.5 parent: 2 - - uid: 31429 + - uid: 31282 components: - type: Transform pos: -4.5,12.5 parent: 2 - - uid: 31430 + - uid: 31283 components: - type: Transform pos: -8.5,-35.5 parent: 2 - - uid: 31431 + - uid: 31284 components: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 31432 + - uid: 31285 components: - type: Transform pos: -25.5,12.5 parent: 2 - - uid: 31433 + - uid: 31286 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 31434 + - uid: 31287 components: - type: Transform pos: -32.5,11.5 parent: 2 - - uid: 31435 + - uid: 31288 components: - type: Transform pos: 29.5,38.5 parent: 2 - - uid: 31436 + - uid: 31289 components: - type: Transform pos: -54.5,-9.5 parent: 2 - - uid: 31437 + - uid: 31290 components: - type: Transform pos: -62.5,7.5 parent: 2 - - uid: 31438 + - uid: 31291 components: - type: Transform pos: -22.5,15.5 parent: 2 - - uid: 31439 + - uid: 31292 components: - type: Transform pos: -24.5,11.5 parent: 2 - - uid: 31440 + - uid: 31293 components: - type: Transform pos: -32.5,16.5 parent: 2 - - uid: 31441 + - uid: 31294 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,16.5 parent: 2 - - uid: 31442 + - uid: 31295 components: - type: Transform pos: -25.5,-28.5 parent: 2 - - uid: 31443 + - uid: 31296 components: - type: Transform pos: -25.5,-30.5 parent: 2 - - uid: 31444 + - uid: 31297 components: - type: Transform pos: 46.5,-0.5 parent: 2 - - uid: 31445 + - uid: 31298 components: - type: Transform pos: -46.5,37.5 parent: 2 - - uid: 31446 + - uid: 31299 components: - type: Transform pos: -46.5,38.5 parent: 2 - - uid: 31447 + - uid: 31300 components: - type: Transform pos: -46.5,39.5 parent: 2 - - uid: 31448 + - uid: 31301 components: - type: Transform pos: 8.5,-59.5 parent: 2 - - uid: 31449 + - uid: 31302 components: - type: Transform pos: 37.5,9.5 parent: 2 - - uid: 31450 + - uid: 31303 components: - type: Transform pos: 10.5,-77.5 parent: 2 - - uid: 31451 + - uid: 31304 components: - type: Transform pos: 10.5,-73.5 parent: 2 - - uid: 31452 + - uid: 31305 components: - type: Transform pos: -74.5,-35.5 parent: 2 - - uid: 31453 + - uid: 31306 components: - type: Transform pos: 68.5,-2.5 parent: 2 - - uid: 31454 + - uid: 31307 components: - type: Transform pos: 68.5,-3.5 parent: 2 - - uid: 31455 + - uid: 31308 components: - type: Transform pos: 68.5,-4.5 parent: 2 - - uid: 31456 + - uid: 31309 components: - type: Transform pos: -73.5,-35.5 parent: 2 - - uid: 31457 + - uid: 31310 components: - type: Transform pos: -74.5,-8.5 parent: 2 - - uid: 31458 + - uid: 31311 components: - type: Transform pos: 59.5,3.5 parent: 2 - - uid: 31459 + - uid: 31312 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,16.5 parent: 2 - - uid: 31460 + - uid: 31313 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 - - uid: 31461 + - uid: 31314 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,8.5 parent: 2 - - uid: 31462 + - uid: 31315 components: - type: Transform pos: 51.5,7.5 parent: 2 - - uid: 31463 + - uid: 31316 components: - type: Transform pos: 67.5,3.5 parent: 2 - - uid: 31464 + - uid: 31317 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-27.5 parent: 2 - - uid: 31465 + - uid: 31318 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-26.5 parent: 2 - - uid: 31466 + - uid: 31319 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,21.5 parent: 2 - - uid: 31467 + - uid: 31320 components: - type: Transform rot: 3.141592653589793 rad pos: -113.5,21.5 parent: 2 - - uid: 31468 + - uid: 31321 components: - type: Transform pos: 63.5,3.5 parent: 2 - - uid: 31469 + - uid: 31322 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,16.5 parent: 2 - - uid: 31470 + - uid: 31323 components: - type: Transform pos: -75.5,10.5 parent: 2 - - uid: 31471 + - uid: 31324 components: - type: Transform pos: -75.5,9.5 parent: 2 - - uid: 31472 + - uid: 31325 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,27.5 parent: 2 - - uid: 31473 + - uid: 31326 components: - type: Transform pos: 8.5,-80.5 parent: 2 - - uid: 31474 + - uid: 31327 components: - type: Transform pos: 8.5,-79.5 parent: 2 - - uid: 31475 + - uid: 31328 components: - type: Transform pos: 8.5,-81.5 parent: 2 - - uid: 31476 + - uid: 31329 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,63.5 parent: 2 - - uid: 31477 + - uid: 31330 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,61.5 parent: 2 - - uid: 31478 + - uid: 31331 components: - type: Transform pos: -52.5,12.5 parent: 2 - - uid: 31479 + - uid: 31332 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,10.5 parent: 2 - - uid: 31480 + - uid: 31333 components: - type: Transform pos: -15.5,-11.5 parent: 2 - - uid: 31481 + - uid: 31334 components: - type: Transform pos: 59.5,27.5 parent: 2 - - uid: 31482 + - uid: 31335 components: - type: Transform pos: 59.5,28.5 parent: 2 - - uid: 31483 + - uid: 31336 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,23.5 parent: 2 - - uid: 31484 + - uid: 31337 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,22.5 parent: 2 - - uid: 31485 + - uid: 31338 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,27.5 parent: 2 - - uid: 31486 + - uid: 31339 components: - type: Transform pos: -58.5,31.5 parent: 2 - - uid: 31487 + - uid: 31340 components: - type: Transform pos: 46.5,7.5 parent: 2 - - uid: 31488 + - uid: 31341 components: - type: Transform pos: 58.5,-3.5 parent: 2 - - uid: 31489 + - uid: 31342 components: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 31490 + - uid: 31343 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,21.5 parent: 2 - - uid: 31491 + - uid: 31344 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,21.5 parent: 2 - - uid: 31492 + - uid: 31345 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,21.5 parent: 2 - - uid: 31493 + - uid: 31346 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,21.5 parent: 2 - - uid: 31494 + - uid: 31347 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,21.5 parent: 2 - - uid: 31495 + - uid: 31348 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,21.5 parent: 2 - - uid: 31496 + - uid: 31349 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,21.5 parent: 2 - - uid: 39730 + - uid: 39557 components: - type: Transform pos: 2.5,1.5 - parent: 38584 - - uid: 39731 + parent: 38411 + - uid: 39558 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,0.5 - parent: 38584 - - uid: 39732 + parent: 38411 + - uid: 39559 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,0.5 - parent: 38584 - - uid: 39733 + parent: 38411 + - uid: 39560 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,4.5 - parent: 38584 - - uid: 39734 + parent: 38411 + - uid: 39561 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,4.5 - parent: 38584 - - uid: 39735 + parent: 38411 + - uid: 39562 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,3.5 - parent: 38584 - - uid: 39736 + parent: 38411 + - uid: 39563 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,1.5 - parent: 38584 - - uid: 39737 + parent: 38411 + - uid: 39564 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-3.5 - parent: 38584 - - uid: 39738 + parent: 38411 + - uid: 39565 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-2.5 - parent: 38584 - - uid: 39739 + parent: 38411 + - uid: 39566 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-3.5 - parent: 38584 - - uid: 39740 + parent: 38411 + - uid: 39567 components: - type: Transform pos: 1.5,6.5 - parent: 38584 - - uid: 39741 + parent: 38411 + - uid: 39568 components: - type: Transform pos: 1.5,7.5 - parent: 38584 - - uid: 39742 + parent: 38411 + - uid: 39569 components: - type: Transform pos: 1.5,8.5 - parent: 38584 - - uid: 39743 + parent: 38411 + - uid: 39570 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-3.5 - parent: 38584 - - uid: 39744 + parent: 38411 + - uid: 39571 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 - parent: 38584 - - uid: 39745 + parent: 38411 + - uid: 39572 components: - type: Transform pos: 1.5,-1.5 - parent: 38584 - - uid: 39746 + parent: 38411 + - uid: 39573 components: - type: Transform pos: -11.5,4.5 - parent: 38584 - - uid: 39747 + parent: 38411 + - uid: 39574 components: - type: Transform pos: -11.5,5.5 - parent: 38584 - - uid: 39748 + parent: 38411 + - uid: 39575 components: - type: Transform pos: -11.5,6.5 - parent: 38584 + parent: 38411 - proto: TableReinforcedGlass entities: - - uid: 31497 + - uid: 31350 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 2 - - uid: 31498 + - uid: 31351 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,17.5 parent: 2 - - uid: 31499 + - uid: 31352 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 2 - - uid: 31500 + - uid: 31353 components: - type: Transform pos: 23.5,12.5 parent: 2 - - uid: 31501 + - uid: 31354 components: - type: Transform pos: 22.5,12.5 parent: 2 - - uid: 31502 + - uid: 31355 components: - type: Transform pos: 13.5,-44.5 parent: 2 - - uid: 31503 + - uid: 31356 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,19.5 parent: 2 - - uid: 31504 + - uid: 31357 components: - type: Transform pos: 29.5,-1.5 parent: 2 - - uid: 31505 + - uid: 31358 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-24.5 parent: 2 - - uid: 31506 + - uid: 31359 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-24.5 parent: 2 - - uid: 31507 + - uid: 31360 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 - - uid: 31508 + - uid: 31361 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-37.5 parent: 2 - - uid: 31509 + - uid: 31362 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 - - uid: 31510 + - uid: 31363 components: - type: Transform pos: -79.5,13.5 parent: 2 - - uid: 31511 + - uid: 31364 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 - - uid: 31512 + - uid: 31365 components: - type: Transform pos: 23.5,17.5 parent: 2 - - uid: 31513 + - uid: 31366 components: - type: Transform pos: 71.5,-2.5 parent: 2 - - uid: 31514 + - uid: 31367 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 - - uid: 31515 + - uid: 31368 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-43.5 parent: 2 - - uid: 31516 + - uid: 31369 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-31.5 parent: 2 - - uid: 31517 + - uid: 31370 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-31.5 parent: 2 - - uid: 31518 + - uid: 31371 components: - type: Transform pos: 32.5,-52.5 parent: 2 - - uid: 31519 + - uid: 31372 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-28.5 parent: 2 - - uid: 31520 + - uid: 31373 components: - type: Transform pos: 34.5,-52.5 parent: 2 - - uid: 31521 + - uid: 31374 components: - type: Transform pos: 32.5,-46.5 parent: 2 - - uid: 31522 + - uid: 31375 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-27.5 parent: 2 - - uid: 31523 + - uid: 31376 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-24.5 parent: 2 - - uid: 31524 + - uid: 31377 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-26.5 parent: 2 - - uid: 31525 + - uid: 31378 components: - type: Transform pos: 32.5,32.5 parent: 2 - - uid: 31526 + - uid: 31379 components: - type: Transform pos: 35.5,-41.5 parent: 2 - - uid: 31527 + - uid: 31380 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-41.5 parent: 2 - - uid: 31528 + - uid: 31381 components: - type: Transform pos: 36.5,-37.5 parent: 2 - - uid: 31529 + - uid: 31382 components: - type: Transform pos: 33.5,-52.5 parent: 2 - - uid: 31530 + - uid: 31383 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-41.5 parent: 2 - - uid: 31531 + - uid: 31384 components: - type: Transform pos: 33.5,-46.5 parent: 2 - - uid: 31532 + - uid: 31385 components: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 31533 + - uid: 31386 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,18.5 parent: 2 - - uid: 31534 + - uid: 31387 components: - type: Transform rot: 3.141592653589793 rad @@ -236191,1331 +236259,1331 @@ entities: parent: 2 - proto: TableStone entities: - - uid: 31535 + - uid: 31388 components: - type: Transform pos: -27.5,62.5 parent: 2 - - uid: 31536 + - uid: 31389 components: - type: Transform pos: -27.5,63.5 parent: 2 - - uid: 31537 + - uid: 31390 components: - type: Transform pos: -27.5,64.5 parent: 2 - - uid: 31538 + - uid: 31391 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-1.5 parent: 2 - - uid: 31539 + - uid: 31392 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 31540 + - uid: 31393 components: - type: Transform pos: 78.5,6.5 parent: 2 - proto: TableWood entities: - - uid: 284 + - uid: 31394 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-25.5 parent: 2 - - uid: 14187 + - uid: 31395 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 25028 + - uid: 31396 components: - type: Transform pos: -60.5,-23.5 parent: 2 - - uid: 31541 + - uid: 31397 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-35.5 parent: 2 - - uid: 31542 + - uid: 31398 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-35.5 parent: 2 - - uid: 31543 + - uid: 31399 components: - type: Transform pos: -58.5,-43.5 parent: 2 - - uid: 31544 + - uid: 31400 components: - type: Transform pos: -57.5,-43.5 parent: 2 - - uid: 31545 + - uid: 31401 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,5.5 parent: 2 - - uid: 31546 + - uid: 31402 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,5.5 parent: 2 - - uid: 31547 + - uid: 31403 components: - type: Transform pos: 95.5,2.5 parent: 2 - - uid: 31548 + - uid: 31404 components: - type: Transform pos: 94.5,2.5 parent: 2 - - uid: 31549 + - uid: 31405 components: - type: Transform pos: 89.5,6.5 parent: 2 - - uid: 31550 + - uid: 31406 components: - type: Transform pos: 89.5,4.5 parent: 2 - - uid: 31551 + - uid: 31407 components: - type: Transform pos: 89.5,7.5 parent: 2 - - uid: 31552 + - uid: 31408 components: - type: Transform pos: -33.5,-66.5 parent: 2 - - uid: 31553 + - uid: 31409 components: - type: Transform pos: -33.5,-67.5 parent: 2 - - uid: 31554 + - uid: 31410 components: - type: Transform pos: -33.5,-79.5 parent: 2 - - uid: 31555 + - uid: 31411 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,58.5 parent: 2 - - uid: 31556 + - uid: 31412 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,59.5 parent: 2 - - uid: 31557 + - uid: 31413 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-72.5 parent: 2 - - uid: 31558 + - uid: 31414 components: - type: Transform pos: -34.5,-79.5 parent: 2 - - uid: 31559 + - uid: 31415 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-30.5 parent: 2 - - uid: 31560 + - uid: 31416 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-9.5 parent: 2 - - uid: 31561 + - uid: 31417 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,29.5 parent: 2 - - uid: 31562 + - uid: 31418 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,26.5 parent: 2 - - uid: 31563 + - uid: 31419 components: - type: Transform pos: -3.5,38.5 parent: 2 - - uid: 31564 + - uid: 31420 components: - type: Transform pos: -30.5,-7.5 parent: 2 - - uid: 31565 + - uid: 31421 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 31566 + - uid: 31422 components: - type: Transform pos: -26.5,-8.5 parent: 2 - - uid: 31567 + - uid: 31423 components: - type: Transform pos: -12.5,-1.5 parent: 2 - - uid: 31568 + - uid: 31424 components: - type: Transform pos: -8.5,-3.5 parent: 2 - - uid: 31569 + - uid: 31425 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-4.5 parent: 2 - - uid: 31570 + - uid: 31426 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,28.5 parent: 2 - - uid: 31571 + - uid: 31427 components: - type: Transform pos: -13.5,1.5 parent: 2 - - uid: 31572 + - uid: 31428 components: - type: Transform pos: -11.5,-1.5 parent: 2 - - uid: 31573 + - uid: 31429 components: - type: Transform pos: -10.5,-1.5 parent: 2 - - uid: 31574 + - uid: 31430 components: - type: Transform pos: -27.5,0.5 parent: 2 - - uid: 31575 + - uid: 31431 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 31576 + - uid: 31432 components: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 31577 + - uid: 31433 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 31578 + - uid: 31434 components: - type: Transform pos: 40.5,23.5 parent: 2 - - uid: 31579 + - uid: 31435 components: - type: Transform pos: -30.5,-8.5 parent: 2 - - uid: 31580 + - uid: 31436 components: - type: Transform pos: 15.5,-51.5 parent: 2 - - uid: 31581 + - uid: 31437 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-39.5 parent: 2 - - uid: 31582 + - uid: 31438 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-8.5 parent: 2 - - uid: 31583 + - uid: 31439 components: - type: Transform pos: -25.5,-41.5 parent: 2 - - uid: 31584 + - uid: 31440 components: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 31585 + - uid: 31441 components: - type: Transform pos: -26.5,-7.5 parent: 2 - - uid: 31586 + - uid: 31442 components: - type: Transform pos: -11.5,54.5 parent: 2 - - uid: 31587 + - uid: 31443 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-39.5 parent: 2 - - uid: 31588 + - uid: 31444 components: - type: Transform pos: -8.5,32.5 parent: 2 - - uid: 31589 + - uid: 31445 components: - type: Transform pos: 18.5,-50.5 parent: 2 - - uid: 31590 + - uid: 31446 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-7.5 parent: 2 - - uid: 31591 + - uid: 31447 components: - type: Transform pos: 24.5,-52.5 parent: 2 - - uid: 31592 + - uid: 31448 components: - type: Transform pos: 14.5,7.5 parent: 2 - - uid: 31593 + - uid: 31449 components: - type: Transform pos: 13.5,7.5 parent: 2 - - uid: 31594 + - uid: 31450 components: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 31595 + - uid: 31451 components: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 31596 + - uid: 31452 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 31597 + - uid: 31453 components: - type: Transform pos: 8.5,7.5 parent: 2 - - uid: 31598 + - uid: 31454 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 31599 + - uid: 31455 components: - type: Transform pos: 6.5,11.5 parent: 2 - - uid: 31600 + - uid: 31456 components: - type: Transform pos: -7.5,11.5 parent: 2 - - uid: 31601 + - uid: 31457 components: - type: Transform pos: -15.5,8.5 parent: 2 - - uid: 31602 + - uid: 31458 components: - type: Transform pos: -15.5,7.5 parent: 2 - - uid: 31603 + - uid: 31459 components: - type: Transform pos: -15.5,10.5 parent: 2 - - uid: 31604 + - uid: 31460 components: - type: Transform pos: -15.5,11.5 parent: 2 - - uid: 31605 + - uid: 31461 components: - type: Transform pos: -15.5,-5.5 parent: 2 - - uid: 31606 + - uid: 31462 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 31607 + - uid: 31463 components: - type: Transform pos: 12.5,10.5 parent: 2 - - uid: 31608 + - uid: 31464 components: - type: Transform pos: -12.5,5.5 parent: 2 - - uid: 31609 + - uid: 31465 components: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 31610 + - uid: 31466 components: - type: Transform pos: -8.5,-0.5 parent: 2 - - uid: 31611 + - uid: 31467 components: - type: Transform pos: -8.5,0.5 parent: 2 - - uid: 31612 + - uid: 31468 components: - type: Transform pos: -8.5,5.5 parent: 2 - - uid: 31613 + - uid: 31469 components: - type: Transform pos: -9.5,8.5 parent: 2 - - uid: 31614 + - uid: 31470 components: - type: Transform pos: -9.5,10.5 parent: 2 - - uid: 31615 + - uid: 31471 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 31616 + - uid: 31472 components: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 31617 + - uid: 31473 components: - type: Transform pos: -23.5,-12.5 parent: 2 - - uid: 31618 + - uid: 31474 components: - type: Transform pos: 46.5,-55.5 parent: 2 - - uid: 31619 + - uid: 31475 components: - type: Transform pos: 33.5,2.5 parent: 2 - - uid: 31620 + - uid: 31476 components: - type: Transform pos: 47.5,-51.5 parent: 2 - - uid: 31621 + - uid: 31477 components: - type: Transform pos: 47.5,-54.5 parent: 2 - - uid: 31622 + - uid: 31478 components: - type: Transform pos: -10.5,54.5 parent: 2 - - uid: 31623 + - uid: 31479 components: - type: Transform pos: 30.5,12.5 parent: 2 - - uid: 31624 + - uid: 31480 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,40.5 parent: 2 - - uid: 31625 + - uid: 31481 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,41.5 parent: 2 - - uid: 31626 + - uid: 31482 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,9.5 parent: 2 - - uid: 31627 + - uid: 31483 components: - type: Transform pos: -3.5,41.5 parent: 2 - - uid: 31628 + - uid: 31484 components: - type: Transform pos: -24.5,-12.5 parent: 2 - - uid: 31629 + - uid: 31485 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,0.5 parent: 2 - - uid: 31630 + - uid: 31486 components: - type: Transform pos: -15.5,-73.5 parent: 2 - - uid: 31631 + - uid: 31487 components: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 31632 + - uid: 31488 components: - type: Transform pos: -17.5,-73.5 parent: 2 - - uid: 31633 + - uid: 31489 components: - type: Transform pos: 47.5,-49.5 parent: 2 - - uid: 31634 + - uid: 31490 components: - type: Transform pos: 43.5,-25.5 parent: 2 - - uid: 31635 + - uid: 31491 components: - type: Transform pos: -8.5,31.5 parent: 2 - - uid: 31636 + - uid: 31492 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,48.5 parent: 2 - - uid: 31637 + - uid: 31493 components: - type: Transform pos: -12.5,-79.5 parent: 2 - - uid: 31638 + - uid: 31494 components: - type: Transform pos: -57.5,7.5 parent: 2 - - uid: 31639 + - uid: 31495 components: - type: Transform pos: -14.5,-80.5 parent: 2 - - uid: 31640 + - uid: 31496 components: - type: Transform pos: -12.5,-80.5 parent: 2 - - uid: 31641 + - uid: 31497 components: - type: Transform pos: -2.5,14.5 parent: 2 - - uid: 31642 + - uid: 31498 components: - type: Transform pos: -2.5,12.5 parent: 2 - - uid: 31643 + - uid: 31499 components: - type: Transform pos: 1.5,12.5 parent: 2 - - uid: 31644 + - uid: 31500 components: - type: Transform pos: 0.5,14.5 parent: 2 - - uid: 31645 + - uid: 31501 components: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 31646 + - uid: 31502 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,53.5 parent: 2 - - uid: 31647 + - uid: 31503 components: - type: Transform pos: -6.5,32.5 parent: 2 - - uid: 31648 + - uid: 31504 components: - type: Transform pos: -25.5,-40.5 parent: 2 - - uid: 31649 + - uid: 31505 components: - type: Transform pos: -24.5,-4.5 parent: 2 - - uid: 31650 + - uid: 31506 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,54.5 parent: 2 - - uid: 31651 + - uid: 31507 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 31652 + - uid: 31508 components: - type: Transform pos: 8.5,0.5 parent: 2 - - uid: 31653 + - uid: 31509 components: - type: Transform pos: 1.5,13.5 parent: 2 - - uid: 31654 + - uid: 31510 components: - type: Transform pos: 32.5,8.5 parent: 2 - - uid: 31655 + - uid: 31511 components: - type: Transform pos: 33.5,-1.5 parent: 2 - - uid: 31656 + - uid: 31512 components: - type: Transform pos: 34.5,-31.5 parent: 2 - - uid: 31657 + - uid: 31513 components: - type: Transform pos: 34.5,-30.5 parent: 2 - - uid: 31658 + - uid: 31514 components: - type: Transform pos: 34.5,-27.5 parent: 2 - - uid: 31659 + - uid: 31515 components: - type: Transform pos: -20.5,-81.5 parent: 2 - - uid: 31660 + - uid: 31516 components: - type: Transform pos: -21.5,-81.5 parent: 2 - - uid: 31661 + - uid: 31517 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,52.5 parent: 2 - - uid: 31662 + - uid: 31518 components: - type: Transform pos: 51.5,-16.5 parent: 2 - - uid: 31663 + - uid: 31519 components: - type: Transform pos: 51.5,-15.5 parent: 2 - - uid: 31664 + - uid: 31520 components: - type: Transform pos: 53.5,-22.5 parent: 2 - - uid: 31665 + - uid: 31521 components: - type: Transform pos: 51.5,-53.5 parent: 2 - - uid: 31666 + - uid: 31522 components: - type: Transform pos: 53.5,-53.5 parent: 2 - - uid: 31667 + - uid: 31523 components: - type: Transform pos: 39.5,-49.5 parent: 2 - - uid: 31668 + - uid: 31524 components: - type: Transform pos: 49.5,-53.5 parent: 2 - - uid: 31669 + - uid: 31525 components: - type: Transform pos: -23.5,23.5 parent: 2 - - uid: 31670 + - uid: 31526 components: - type: Transform pos: -3.5,39.5 parent: 2 - - uid: 31671 + - uid: 31527 components: - type: Transform pos: -34.5,2.5 parent: 2 - - uid: 31672 + - uid: 31528 components: - type: Transform pos: 38.5,18.5 parent: 2 - - uid: 31673 + - uid: 31529 components: - type: Transform pos: -33.5,2.5 parent: 2 - - uid: 31674 + - uid: 31530 components: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 31675 + - uid: 31531 components: - type: Transform pos: -14.5,-64.5 parent: 2 - - uid: 31676 + - uid: 31532 components: - type: Transform pos: -12.5,-64.5 parent: 2 - - uid: 31677 + - uid: 31533 components: - type: Transform pos: -18.5,-64.5 parent: 2 - - uid: 31678 + - uid: 31534 components: - type: Transform pos: -22.5,-4.5 parent: 2 - - uid: 31679 + - uid: 31535 components: - type: Transform pos: -21.5,-4.5 parent: 2 - - uid: 31680 + - uid: 31536 components: - type: Transform pos: -4.5,46.5 parent: 2 - - uid: 31681 + - uid: 31537 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 31682 + - uid: 31538 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,42.5 parent: 2 - - uid: 31683 + - uid: 31539 components: - type: Transform pos: -19.5,-79.5 parent: 2 - - uid: 31684 + - uid: 31540 components: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 31685 + - uid: 31541 components: - type: Transform pos: 15.5,-49.5 parent: 2 - - uid: 31686 + - uid: 31542 components: - type: Transform pos: 34.5,22.5 parent: 2 - - uid: 31687 + - uid: 31543 components: - type: Transform pos: 23.5,69.5 parent: 2 - - uid: 31688 + - uid: 31544 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,53.5 parent: 2 - - uid: 31689 + - uid: 31545 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,10.5 parent: 2 - - uid: 31690 + - uid: 31546 components: - type: Transform pos: 42.5,23.5 parent: 2 - - uid: 31691 + - uid: 31547 components: - type: Transform pos: 53.5,-25.5 parent: 2 - - uid: 31692 + - uid: 31548 components: - type: Transform pos: 53.5,-49.5 parent: 2 - - uid: 31693 + - uid: 31549 components: - type: Transform pos: 38.5,22.5 parent: 2 - - uid: 31694 + - uid: 31550 components: - type: Transform pos: 43.5,-54.5 parent: 2 - - uid: 31695 + - uid: 31551 components: - type: Transform pos: 34.5,-0.5 parent: 2 - - uid: 31696 + - uid: 31552 components: - type: Transform pos: -21.5,19.5 parent: 2 - - uid: 31697 + - uid: 31553 components: - type: Transform pos: -14.5,-74.5 parent: 2 - - uid: 31698 + - uid: 31554 components: - type: Transform pos: -27.5,19.5 parent: 2 - - uid: 31699 + - uid: 31555 components: - type: Transform pos: -5.5,32.5 parent: 2 - - uid: 31700 + - uid: 31556 components: - type: Transform pos: -22.5,23.5 parent: 2 - - uid: 31701 + - uid: 31557 components: - type: Transform pos: -24.5,23.5 parent: 2 - - uid: 31702 + - uid: 31558 components: - type: Transform pos: -23.5,-4.5 parent: 2 - - uid: 31703 + - uid: 31559 components: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 31704 + - uid: 31560 components: - type: Transform pos: 15.5,-48.5 parent: 2 - - uid: 31705 + - uid: 31561 components: - type: Transform pos: 12.5,0.5 parent: 2 - - uid: 31706 + - uid: 31562 components: - type: Transform pos: 47.5,-24.5 parent: 2 - - uid: 31707 + - uid: 31563 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 31708 + - uid: 31564 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 31709 + - uid: 31565 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,43.5 parent: 2 - - uid: 31710 + - uid: 31566 components: - type: Transform pos: 21.5,72.5 parent: 2 - - uid: 31711 + - uid: 31567 components: - type: Transform pos: 51.5,-22.5 parent: 2 - - uid: 31712 + - uid: 31568 components: - type: Transform pos: -22.5,-81.5 parent: 2 - - uid: 31713 + - uid: 31569 components: - type: Transform pos: -12.5,-81.5 parent: 2 - - uid: 31714 + - uid: 31570 components: - type: Transform pos: -13.5,-79.5 parent: 2 - - uid: 31715 + - uid: 31571 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,39.5 parent: 2 - - uid: 31716 + - uid: 31572 components: - type: Transform pos: 14.5,-48.5 parent: 2 - - uid: 31717 + - uid: 31573 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-6.5 parent: 2 - - uid: 31718 + - uid: 31574 components: - type: Transform pos: -33.5,0.5 parent: 2 - - uid: 31719 + - uid: 31575 components: - type: Transform pos: 34.5,2.5 parent: 2 - - uid: 31720 + - uid: 31576 components: - type: Transform pos: 51.5,-14.5 parent: 2 - - uid: 31721 + - uid: 31577 components: - type: Transform pos: -33.5,-1.5 parent: 2 - - uid: 31722 + - uid: 31578 components: - type: Transform pos: -20.5,-64.5 parent: 2 - - uid: 31723 + - uid: 31579 components: - type: Transform pos: -4.5,45.5 parent: 2 - - uid: 31724 + - uid: 31580 components: - type: Transform pos: -16.5,-47.5 parent: 2 - - uid: 31725 + - uid: 31581 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,54.5 parent: 2 - - uid: 31726 + - uid: 31582 components: - type: Transform pos: -24.5,22.5 parent: 2 - - uid: 31727 + - uid: 31583 components: - type: Transform pos: -14.5,-73.5 parent: 2 - - uid: 31728 + - uid: 31584 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 31729 + - uid: 31585 components: - type: Transform pos: 43.5,-50.5 parent: 2 - - uid: 31730 + - uid: 31586 components: - type: Transform pos: -14.5,-79.5 parent: 2 - - uid: 31731 + - uid: 31587 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 31732 + - uid: 31588 components: - type: Transform pos: -122.5,32.5 parent: 2 - - uid: 31733 + - uid: 31589 components: - type: Transform pos: -31.5,-12.5 parent: 2 - - uid: 31734 + - uid: 31590 components: - type: Transform pos: -31.5,-13.5 parent: 2 - - uid: 31735 + - uid: 31591 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-1.5 parent: 2 - - uid: 31736 + - uid: 31592 components: - type: Transform pos: -18.5,-73.5 parent: 2 - - uid: 31737 + - uid: 31593 components: - type: Transform pos: -38.5,1.5 parent: 2 - - uid: 31738 + - uid: 31594 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 31739 + - uid: 31595 components: - type: Transform pos: 43.5,-24.5 parent: 2 - - uid: 31740 + - uid: 31596 components: - type: Transform pos: -18.5,-74.5 parent: 2 - - uid: 31741 + - uid: 31597 components: - type: Transform pos: 7.5,1.5 parent: 2 - - uid: 31742 + - uid: 31598 components: - type: Transform pos: -22.5,-12.5 parent: 2 - - uid: 31743 + - uid: 31599 components: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 31744 + - uid: 31600 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,8.5 parent: 2 - - uid: 31745 + - uid: 31601 components: - type: Transform pos: 47.5,-50.5 parent: 2 - - uid: 31746 + - uid: 31602 components: - type: Transform pos: 47.5,-53.5 parent: 2 - - uid: 31747 + - uid: 31603 components: - type: Transform pos: -23.5,-79.5 parent: 2 - - uid: 31748 + - uid: 31604 components: - type: Transform pos: -33.5,-10.5 parent: 2 - - uid: 31749 + - uid: 31605 components: - type: Transform pos: -34.5,-10.5 parent: 2 - - uid: 31750 + - uid: 31606 components: - type: Transform pos: -34.5,-15.5 parent: 2 - - uid: 31751 + - uid: 31607 components: - type: Transform pos: -34.5,-14.5 parent: 2 - - uid: 31752 + - uid: 31608 components: - type: Transform pos: -33.5,-15.5 parent: 2 - - uid: 31753 + - uid: 31609 components: - type: Transform pos: -27.5,-10.5 parent: 2 - - uid: 31754 + - uid: 31610 components: - type: Transform pos: -27.5,-11.5 parent: 2 - - uid: 31755 + - uid: 31611 components: - type: Transform pos: -32.5,-13.5 parent: 2 - - uid: 31756 + - uid: 31612 components: - type: Transform pos: 51.5,-54.5 parent: 2 - - uid: 31757 + - uid: 31613 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 31758 + - uid: 31614 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - uid: 31759 + - uid: 31615 components: - type: Transform pos: 50.5,-53.5 parent: 2 - - uid: 31760 + - uid: 31616 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 31761 + - uid: 31617 components: - type: Transform pos: 47.5,-25.5 parent: 2 - - uid: 31762 + - uid: 31618 components: - type: Transform pos: 48.5,-25.5 parent: 2 - - uid: 31763 + - uid: 31619 components: - type: Transform pos: -28.5,-10.5 parent: 2 - - uid: 31764 + - uid: 31620 components: - type: Transform pos: -34.5,-11.5 parent: 2 - - uid: 31765 + - uid: 31621 components: - type: Transform pos: -24.5,21.5 parent: 2 - - uid: 31766 + - uid: 31622 components: - type: Transform pos: -32.5,-12.5 parent: 2 - - uid: 31767 + - uid: 31623 components: - type: Transform pos: 38.5,-31.5 parent: 2 - - uid: 31768 + - uid: 31624 components: - type: Transform pos: -39.5,28.5 parent: 2 - - uid: 31769 + - uid: 31625 components: - type: Transform pos: -39.5,27.5 parent: 2 - - uid: 31770 + - uid: 31626 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 31771 + - uid: 31627 components: - type: Transform pos: -4.5,34.5 parent: 2 - - uid: 31772 + - uid: 31628 components: - type: Transform pos: -77.5,-0.5 parent: 2 - - uid: 31773 + - uid: 31629 components: - type: Transform pos: -76.5,-0.5 parent: 2 - - uid: 31774 + - uid: 31630 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 31775 + - uid: 31631 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 31776 + - uid: 31632 components: - type: Transform pos: 95.5,12.5 parent: 2 - - uid: 31777 + - uid: 31633 components: - type: Transform pos: 95.5,12.5 parent: 2 - - uid: 31778 + - uid: 31634 components: - type: Transform pos: 96.5,12.5 parent: 2 - - uid: 31779 + - uid: 31635 components: - type: Transform pos: 96.5,12.5 parent: 2 - - uid: 39749 + - uid: 39576 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-5.5 - parent: 38584 - - uid: 39750 + parent: 38411 + - uid: 39577 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-5.5 - parent: 38584 - - uid: 39751 + parent: 38411 + - uid: 39578 components: - type: Transform pos: 3.5,-3.5 - parent: 38584 - - uid: 39752 + parent: 38411 + - uid: 39579 components: - type: Transform pos: 3.5,-4.5 - parent: 38584 + parent: 38411 - proto: TargetClown entities: - - uid: 31780 + - uid: 31636 components: - type: Transform pos: 66.5,19.5 parent: 2 - - uid: 31781 + - uid: 31637 components: - type: Transform pos: 61.5,16.5 parent: 2 - - uid: 31782 + - uid: 31638 components: - type: Transform pos: 64.5,15.5 parent: 2 - proto: TargetHuman entities: - - uid: 31783 + - uid: 31639 components: - type: Transform pos: 60.5,18.5 parent: 2 - - uid: 31784 + - uid: 31640 components: - type: Transform rot: 3.141592653589793 rad @@ -237523,33 +237591,33 @@ entities: parent: 2 - proto: TargetStrange entities: - - uid: 31785 + - uid: 31641 components: - type: Transform pos: 66.5,17.5 parent: 2 - proto: TargetSyndicate entities: - - uid: 31786 + - uid: 31642 components: - type: Transform pos: 63.5,19.5 parent: 2 - - uid: 31787 + - uid: 31643 components: - type: Transform pos: 66.5,15.5 parent: 2 - proto: TegCenter entities: - - uid: 31788 + - uid: 31644 components: - type: Transform pos: -50.5,51.5 parent: 2 - proto: TegCirculator entities: - - uid: 31789 + - uid: 31645 components: - type: Transform rot: -1.5707963267948966 rad @@ -237557,7 +237625,7 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 31790 + - uid: 31646 components: - type: Transform rot: 1.5707963267948966 rad @@ -237567,7 +237635,7 @@ entities: color: '#FF3300FF' - proto: TelecomServer entities: - - uid: 17757 + - uid: 17741 components: - type: Transform pos: -112.5,40.5 @@ -237578,7 +237646,7 @@ entities: showEnts: False occludes: True ents: - - 17758 + - 17742 machine_board: !type:Container showEnts: False occludes: True @@ -237587,7 +237655,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17759 + - uid: 17743 components: - type: Transform pos: -112.5,42.5 @@ -237598,7 +237666,7 @@ entities: showEnts: False occludes: True ents: - - 17760 + - 17744 machine_board: !type:Container showEnts: False occludes: True @@ -237607,7 +237675,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17761 + - uid: 17745 components: - type: Transform pos: -114.5,40.5 @@ -237618,7 +237686,7 @@ entities: showEnts: False occludes: True ents: - - 17762 + - 17746 machine_board: !type:Container showEnts: False occludes: True @@ -237627,7 +237695,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17763 + - uid: 17747 components: - type: Transform pos: -114.5,38.5 @@ -237638,7 +237706,7 @@ entities: showEnts: False occludes: True ents: - - 17764 + - 17748 machine_board: !type:Container showEnts: False occludes: True @@ -237647,7 +237715,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17765 + - uid: 17749 components: - type: Transform pos: -112.5,38.5 @@ -237658,7 +237726,7 @@ entities: showEnts: False occludes: True ents: - - 17766 + - 17750 machine_board: !type:Container showEnts: False occludes: True @@ -237667,7 +237735,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17767 + - uid: 17751 components: - type: Transform pos: -114.5,42.5 @@ -237678,7 +237746,7 @@ entities: showEnts: False occludes: True ents: - - 17768 + - 17752 machine_board: !type:Container showEnts: False occludes: True @@ -237687,7 +237755,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17769 + - uid: 17753 components: - type: Transform pos: -114.5,36.5 @@ -237698,7 +237766,7 @@ entities: showEnts: False occludes: True ents: - - 17770 + - 17754 machine_board: !type:Container showEnts: False occludes: True @@ -237707,7 +237775,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 17771 + - uid: 17755 components: - type: Transform pos: -112.5,36.5 @@ -237718,7 +237786,7 @@ entities: showEnts: False occludes: True ents: - - 17772 + - 17756 machine_board: !type:Container showEnts: False occludes: True @@ -237729,10 +237797,10 @@ entities: ents: [] - proto: Telecrystal1 entities: - - uid: 14899 + - uid: 14841 components: - type: Transform - parent: 14891 + parent: 14832 - type: Stack count: 3 - type: Physics @@ -237740,7 +237808,7 @@ entities: - type: InsideEntityStorage - proto: TeslaGenerator entities: - - uid: 31791 + - uid: 31647 components: - type: Transform rot: -1.5707963267948966 rad @@ -237748,29 +237816,29 @@ entities: parent: 2 - proto: TeslaGroundingRod entities: - - uid: 31792 + - uid: 31648 components: - type: Transform pos: -72.5,-11.5 parent: 2 - - uid: 31793 + - uid: 31649 components: - type: Transform pos: -71.5,-12.5 parent: 2 - - uid: 31794 + - uid: 31650 components: - type: Transform pos: -70.5,-11.5 parent: 2 - - uid: 31795 + - uid: 31651 components: - type: Transform pos: -70.5,-12.5 parent: 2 - proto: ThievingGloves entities: - - uid: 31796 + - uid: 31652 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -237778,69 +237846,69 @@ entities: parent: 2 - proto: ThrowingStar entities: - - uid: 31797 + - uid: 31653 components: - type: Transform pos: -55.80172,-48.262436 parent: 2 - - uid: 31798 + - uid: 31654 components: - type: Transform pos: -55.447693,-48.173943 parent: 2 - proto: Thruster entities: - - uid: 38552 + - uid: 38379 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 - parent: 38484 + parent: 38311 - type: Thruster enabled: False - - uid: 38553 + - uid: 38380 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 - parent: 38484 - - uid: 38554 + parent: 38311 + - uid: 38381 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 - parent: 38484 - - uid: 38555 + parent: 38311 + - uid: 38382 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 - parent: 38484 - - uid: 38556 + parent: 38311 + - uid: 38383 components: - type: Transform pos: -0.5,3.5 - parent: 38484 - - uid: 38557 + parent: 38311 + - uid: 38384 components: - type: Transform pos: 3.5,3.5 - parent: 38484 - - uid: 39753 + parent: 38311 + - uid: 39580 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,22.5 - parent: 38584 + parent: 38411 - proto: ThrusterUnanchored entities: - - uid: 31799 + - uid: 31655 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,79.5 parent: 2 - - uid: 31800 + - uid: 31656 components: - type: Transform rot: 3.141592653589793 rad @@ -237848,234 +237916,234 @@ entities: parent: 2 - proto: TimerTrigger entities: - - uid: 31801 + - uid: 31657 components: - type: Transform pos: -6.651689,-45.493202 parent: 2 - - uid: 31802 + - uid: 31658 components: - type: Transform pos: -8.329771,-22.38098 parent: 2 - type: Physics canCollide: False - - uid: 31803 + - uid: 31659 components: - type: Transform pos: -8.329771,-22.38098 parent: 2 - type: Physics canCollide: False - - uid: 31804 + - uid: 31660 components: - type: Transform pos: 4.6103425,17.634863 parent: 2 - type: Physics canCollide: False - - uid: 31805 + - uid: 31661 components: - type: Transform pos: 2.3259196,-30.766005 parent: 2 - - uid: 31806 + - uid: 31662 components: - type: Transform pos: 2.3259196,-30.766005 parent: 2 - - uid: 31807 + - uid: 31663 components: - type: Transform pos: 2.3259196,-30.766005 parent: 2 - - uid: 31808 + - uid: 31664 components: - type: Transform pos: -6.5579386,-45.305702 parent: 2 - - uid: 31809 + - uid: 31665 components: - type: Transform pos: -28.420214,-47.4508 parent: 2 - - uid: 31810 + - uid: 31666 components: - type: Transform pos: -26.49764,-44.19028 parent: 2 - proto: TintedWindow entities: - - uid: 31811 + - uid: 31667 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,5.5 parent: 2 - - uid: 31812 + - uid: 31668 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-71.5 parent: 2 - - uid: 31813 + - uid: 31669 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-71.5 parent: 2 - - uid: 31814 + - uid: 31670 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-71.5 parent: 2 - - uid: 31815 + - uid: 31671 components: - type: Transform pos: 64.5,7.5 parent: 2 - - uid: 31816 + - uid: 31672 components: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 31817 + - uid: 31673 components: - type: Transform pos: 23.5,3.5 parent: 2 - - uid: 31818 + - uid: 31674 components: - type: Transform pos: 23.5,-8.5 parent: 2 - - uid: 31819 + - uid: 31675 components: - type: Transform pos: -11.5,-64.5 parent: 2 - - uid: 31820 + - uid: 31676 components: - type: Transform pos: -11.5,-69.5 parent: 2 - - uid: 31821 + - uid: 31677 components: - type: Transform pos: -11.5,-67.5 parent: 2 - - uid: 31822 + - uid: 31678 components: - type: Transform pos: 64.5,6.5 parent: 2 - - uid: 31823 + - uid: 31679 components: - type: Transform pos: -19.5,-77.5 parent: 2 - - uid: 31824 + - uid: 31680 components: - type: Transform pos: 32.5,-10.5 parent: 2 - - uid: 31825 + - uid: 31681 components: - type: Transform pos: -11.5,-72.5 parent: 2 - - uid: 31826 + - uid: 31682 components: - type: Transform pos: 8.5,90.5 parent: 2 - - uid: 31827 + - uid: 31683 components: - type: Transform pos: 27.5,39.5 parent: 2 - - uid: 31831 + - uid: 31684 components: - type: Transform pos: 42.5,-19.5 parent: 2 - - uid: 31832 + - uid: 31685 components: - type: Transform pos: -59.5,5.5 parent: 2 - - uid: 31833 + - uid: 31686 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - uid: 31834 + - uid: 31687 components: - type: Transform pos: 60.5,6.5 parent: 2 - - uid: 31835 + - uid: 31688 components: - type: Transform pos: 60.5,3.5 parent: 2 - - uid: 31836 + - uid: 31689 components: - type: Transform pos: 19.5,-1.5 parent: 2 - - uid: 31837 + - uid: 31690 components: - type: Transform pos: 21.5,-8.5 parent: 2 - - uid: 31838 + - uid: 31691 components: - type: Transform pos: 60.5,9.5 parent: 2 - - uid: 31839 + - uid: 31692 components: - type: Transform pos: 60.5,8.5 parent: 2 - - uid: 31840 + - uid: 31693 components: - type: Transform pos: 60.5,7.5 parent: 2 - - uid: 31841 + - uid: 31694 components: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 31842 + - uid: 31695 components: - type: Transform pos: 54.5,-19.5 parent: 2 - - uid: 31843 + - uid: 31696 components: - type: Transform pos: -59.5,7.5 parent: 2 - - uid: 31844 + - uid: 31697 components: - type: Transform pos: 64.5,3.5 parent: 2 - - uid: 31845 + - uid: 31698 components: - type: Transform pos: 64.5,9.5 parent: 2 - - uid: 31846 + - uid: 31699 components: - type: Transform pos: 64.5,8.5 parent: 2 - - uid: 31847 + - uid: 31700 components: - type: Transform rot: 3.141592653589793 rad @@ -238083,145 +238151,145 @@ entities: parent: 2 - proto: ToiletDirtyWater entities: - - uid: 31848 + - uid: 31701 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 31849 + - uid: 31702 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-20.5 parent: 2 - - uid: 31850 + - uid: 31703 components: - type: Transform pos: 69.5,-48.5 parent: 2 - - uid: 39754 + - uid: 39581 components: - type: Transform pos: -24.5,29.5 - parent: 38584 + parent: 38411 - proto: ToiletEmpty entities: - - uid: 9971 + - uid: 31704 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-28.5 parent: 2 - - uid: 31851 + - uid: 31705 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-0.5 parent: 2 - - uid: 31852 + - uid: 31706 components: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 31853 + - uid: 31707 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-46.5 parent: 2 - - uid: 31854 + - uid: 31708 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,4.5 parent: 2 - - uid: 31855 + - uid: 31709 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-17.5 parent: 2 - - uid: 31856 + - uid: 31710 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-25.5 parent: 2 - - uid: 31857 + - uid: 31711 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,59.5 parent: 2 - - uid: 31858 + - uid: 31712 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-17.5 parent: 2 - - uid: 31859 + - uid: 31713 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-17.5 parent: 2 - - uid: 31860 + - uid: 31714 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,61.5 parent: 2 - - uid: 31861 + - uid: 31715 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,63.5 parent: 2 - - uid: 31862 + - uid: 31716 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,7.5 parent: 2 - - uid: 31863 + - uid: 31717 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,11.5 parent: 2 - - uid: 31864 + - uid: 31718 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-0.5 parent: 2 - - uid: 39755 + - uid: 39582 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,6.5 - parent: 38584 - - uid: 39756 + parent: 38411 + - uid: 39583 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,6.5 - parent: 38584 - - uid: 39757 + parent: 38411 + - uid: 39584 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 - parent: 38584 - - uid: 39758 + parent: 38411 + - uid: 39585 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-9.5 - parent: 38584 + parent: 38411 - proto: ToolboxArtistic entities: - - uid: 25472 + - uid: 25325 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238229,7 +238297,7 @@ entities: parent: 2 - type: Storage storedItems: - 25473: + 25326: position: 0,0 _rotation: South - type: ContainerContainer @@ -238238,153 +238306,153 @@ entities: showEnts: False occludes: True ents: - - 25473 + - 25326 - proto: ToolboxArtisticFilled entities: - - uid: 31865 + - uid: 31719 components: - type: Transform pos: 11.538271,66.851814 parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 31866 + - uid: 31720 components: - type: Transform pos: -30.593908,-69.36092 parent: 2 - - uid: 31868 + - uid: 31721 components: - type: Transform pos: 50.406548,5.7091293 parent: 2 - type: Physics canCollide: False - - uid: 31869 + - uid: 31722 components: - type: Transform pos: -75.49426,10.685502 parent: 2 - - uid: 31870 + - uid: 31723 components: - type: Transform pos: -54.558506,-10.404935 parent: 2 - - uid: 31871 + - uid: 31724 components: - type: Transform pos: 43.61331,-43.55242 parent: 2 - - uid: 31872 + - uid: 31725 components: - type: Transform pos: -26.465704,-47.24205 parent: 2 - - uid: 31873 + - uid: 31726 components: - type: Transform pos: -38.55521,9.470851 parent: 2 - - uid: 31874 + - uid: 31727 components: - type: Transform pos: -21.482216,9.539601 parent: 2 - - uid: 31875 + - uid: 31728 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -15.563776,-11.260524 parent: 2 - - uid: 39759 + - uid: 39586 components: - type: Transform pos: 10.466481,0.44229126 - parent: 38584 + parent: 38411 - proto: ToolboxEmergencyFilled entities: - - uid: 31876 + - uid: 31729 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 10.517169,-11.592889 parent: 2 - - uid: 31877 + - uid: 31730 components: - type: Transform pos: -80.41574,13.495791 parent: 2 - - uid: 31878 + - uid: 31731 components: - type: Transform pos: -22.489403,54.56775 parent: 2 - type: Physics canCollide: False - - uid: 31879 + - uid: 31732 components: - type: Transform pos: 2.4599905,13.561341 parent: 2 - type: Physics canCollide: False - - uid: 31880 + - uid: 31733 components: - type: Transform pos: 8.4538,-59.464375 parent: 2 - - uid: 31881 + - uid: 31734 components: - type: Transform pos: 20.5,26.5 parent: 2 - - uid: 31882 + - uid: 31735 components: - type: Transform pos: 9.453719,84.54114 parent: 2 - - uid: 31883 + - uid: 31736 components: - type: Transform pos: -40.5,48.5 parent: 2 - - uid: 31884 + - uid: 31737 components: - type: Transform pos: 20.503912,8.6244135 parent: 2 - type: Physics canCollide: False - - uid: 31885 + - uid: 31738 components: - type: Transform pos: 46.4966,-0.37165457 parent: 2 - - uid: 31886 + - uid: 31739 components: - type: Transform pos: -59.538986,54.299515 parent: 2 - - uid: 31887 + - uid: 31740 components: - type: Transform pos: 6.4913983,-71.35235 parent: 2 - - uid: 31888 + - uid: 31741 components: - type: Transform pos: 43.45706,-43.349297 parent: 2 - proto: ToolboxGolden entities: - - uid: 15740 + - uid: 15723 components: - type: Transform pos: -0.53291434,9.720282 parent: 2 - type: Storage storedItems: - 15742: + 15725: position: 2,1 _rotation: East - type: ContainerContainer @@ -238393,22 +238461,22 @@ entities: showEnts: False occludes: True ents: - - 15741 - - 15742 - - uid: 31889 + - 15724 + - 15725 + - uid: 31742 components: - type: Transform pos: 26.580854,17.05833 parent: 2 - proto: ToolboxMechanical entities: - - uid: 31890 + - uid: 31743 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -42.67167,-3.9190269 parent: 2 - - uid: 31891 + - uid: 31744 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238416,165 +238484,165 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 31892 + - uid: 31745 components: - type: Transform pos: -58.476357,31.612507 parent: 2 - - uid: 31893 + - uid: 31746 components: - type: Transform pos: -59.507816,53.99283 parent: 2 - - uid: 31894 + - uid: 31747 components: - type: Transform pos: -62.666298,-44.365036 parent: 2 - - uid: 31895 + - uid: 31748 components: - type: Transform pos: 50.562798,5.5216293 parent: 2 - type: Physics canCollide: False - - uid: 31897 + - uid: 31749 components: - type: Transform pos: -15.499809,-16.38254 parent: 2 - - uid: 31898 + - uid: 31750 components: - type: Transform pos: -28.478916,13.554777 parent: 2 - - uid: 31899 + - uid: 31751 components: - type: Transform pos: 14.527084,77.63588 parent: 2 - - uid: 31900 + - uid: 31752 components: - type: Transform pos: 32.489235,26.592016 parent: 2 - - uid: 31901 + - uid: 31753 components: - type: Transform pos: -24.563105,12.558601 parent: 2 - type: Physics canCollide: False - - uid: 31902 + - uid: 31754 components: - type: Transform pos: -36.384415,-35.374123 parent: 2 - - uid: 31903 + - uid: 31755 components: - type: Transform pos: -61.499516,11.58782 parent: 2 - type: Physics canCollide: False - - uid: 31904 + - uid: 31756 components: - type: Transform pos: 10.370622,74.69084 parent: 2 - type: Physics canCollide: False - - uid: 31905 + - uid: 31757 components: - type: Transform pos: -7.4405484,-35.500793 parent: 2 - - uid: 31906 + - uid: 31758 components: - type: Transform pos: -54.52714,-4.515595 parent: 2 - - uid: 31907 + - uid: 31759 components: - type: Transform pos: -26.465704,-47.570175 parent: 2 - - uid: 31908 + - uid: 31760 components: - type: Transform pos: -7.706174,-35.20392 parent: 2 - - uid: 31909 + - uid: 31761 components: - type: Transform pos: 43.404045,-37.16125 parent: 2 - - uid: 31910 + - uid: 31762 components: - type: Transform pos: 1.4968867,18.6292 parent: 2 - type: Physics canCollide: False - - uid: 31911 + - uid: 31763 components: - type: Transform pos: 12.456568,-14.593374 parent: 2 - - uid: 31912 + - uid: 31764 components: - type: Transform pos: -41.44116,-13.354926 parent: 2 - - uid: 31913 + - uid: 31765 components: - type: Transform pos: 15.397692,39.61709 parent: 2 - type: Physics canCollide: False - - uid: 31914 + - uid: 31766 components: - type: Transform pos: -32.484383,8.549018 parent: 2 - - uid: 31915 + - uid: 31767 components: - type: Transform pos: -21.560526,9.336472 parent: 2 - - uid: 31916 + - uid: 31768 components: - type: Transform pos: 78.40447,-43.407154 parent: 2 - - uid: 39760 + - uid: 39587 components: - type: Transform pos: 10.560231,0.72354126 - parent: 38584 + parent: 38411 - proto: ToolboxSyndicate entities: - - uid: 31917 + - uid: 31769 components: - type: Transform pos: -73.55307,-35.373505 parent: 2 - proto: Torch entities: - - uid: 31918 + - uid: 31770 components: - type: Transform pos: 43.700527,-24.265348 parent: 2 - proto: ToyAi entities: - - uid: 31919 + - uid: 31771 components: - type: Transform pos: 63.624302,-26.3102 parent: 2 - - uid: 31920 + - uid: 31772 components: - type: MetaData desc: Ядро искусственого интеллекта @@ -238587,62 +238655,62 @@ entities: color: '#6FA8DCFF' - proto: ToyFigurineBoxer entities: - - uid: 31921 + - uid: 31773 components: - type: Transform pos: 55.368248,-14.191161 parent: 2 - - uid: 31922 + - uid: 31774 components: - type: Transform pos: 55.649498,-14.425536 parent: 2 - proto: ToyFigurineClown entities: - - uid: 14838 + - uid: 14778 components: - type: Transform - parent: 14826 + parent: 14766 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 31923 + - uid: 31775 components: - type: Transform pos: -38.339348,1.7481683 parent: 2 - proto: ToyFigurineHoloClown entities: - - uid: 31924 + - uid: 31776 components: - type: Transform pos: -38.604866,1.9251596 parent: 2 - proto: ToyFigurineMime entities: - - uid: 14859 + - uid: 14800 components: - type: Transform - parent: 14840 + parent: 14780 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ToyFigurineMusician entities: - - uid: 31925 + - uid: 31777 components: - type: Transform pos: -2.522966,53.778133 parent: 2 - proto: ToyFigurineNukie entities: - - uid: 31926 + - uid: 31778 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -51.6071,-37.429165 parent: 2 - - uid: 31927 + - uid: 31779 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238650,7 +238718,7 @@ entities: parent: 2 - proto: ToyFigurineNukieCommander entities: - - uid: 31928 + - uid: 31780 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238658,21 +238726,21 @@ entities: parent: 2 - proto: ToyGygax entities: - - uid: 31930 + - uid: 31781 components: - type: Transform pos: 63.75272,-24.7508 parent: 2 - proto: ToyHammer entities: - - uid: 31931 + - uid: 31782 components: - type: Transform pos: 12.5,62.5 parent: 2 - proto: ToyIan entities: - - uid: 31932 + - uid: 31783 components: - type: MetaData name: игрушечный толян @@ -238680,47 +238748,47 @@ entities: rot: 1.0182609457842773E-06 rad pos: -34.543114,-81.48599 parent: 2 - - uid: 31933 + - uid: 31784 components: - type: Transform pos: -39.784107,-59.57446 parent: 2 - - uid: 31934 + - uid: 31785 components: - type: Transform pos: -39.26327,-59.584873 parent: 2 - - uid: 31935 + - uid: 31786 components: - type: Transform pos: -49.254475,-32.563488 parent: 2 - - uid: 31936 + - uid: 31787 components: - type: Transform pos: -49.7701,-32.594738 parent: 2 - - uid: 31937 + - uid: 31788 components: - type: Transform pos: -49.660725,-32.23536 parent: 2 - - uid: 31938 + - uid: 31789 components: - type: Transform pos: -30.515251,-64.45057 parent: 2 - - uid: 31939 + - uid: 31790 components: - type: Transform pos: -13.006457,0.4996575 parent: 2 - - uid: 31940 + - uid: 31791 components: - type: Transform pos: 63.385803,-24.640722 parent: 2 - - uid: 31941 + - uid: 31792 components: - type: MetaData desc: Какой пушистый негодяй. @@ -238730,44 +238798,44 @@ entities: parent: 2 - proto: ToyMarauder entities: - - uid: 31942 + - uid: 31793 components: - type: Transform pos: 63.31242,-26.108395 parent: 2 - - uid: 31943 + - uid: 31794 components: - type: Transform pos: -34.4959,1.8669009 parent: 2 - proto: ToyMouse entities: - - uid: 31944 + - uid: 31795 components: - type: Transform pos: -47.504475,-32.329113 parent: 2 - proto: ToyNuke entities: - - uid: 31945 + - uid: 31796 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: -50.997726,-37.679165 parent: 2 - - uid: 31946 + - uid: 31797 components: - type: Transform pos: -47.3951,-32.204113 parent: 2 - - uid: 31947 + - uid: 31798 components: - type: Transform pos: 14.269184,-27.278599 parent: 2 - proto: ToyOwlman entities: - - uid: 40932 + - uid: 31799 components: - type: MetaData name: Расмус @@ -238779,69 +238847,69 @@ entities: radius: 2 - proto: ToyRubberDuck entities: - - uid: 31948 + - uid: 31800 components: - type: Transform pos: -4.5347166,26.351791 parent: 2 - - uid: 31949 + - uid: 31801 components: - type: Transform pos: 14.571413,5.5797076 parent: 2 - - uid: 39761 + - uid: 39588 components: - type: Transform pos: 3.503645,-9.450317 - parent: 38584 + parent: 38411 - proto: ToySpawner entities: - - uid: 31950 + - uid: 31802 components: - type: Transform pos: -32.5,-69.5 parent: 2 - - uid: 31951 + - uid: 31803 components: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 31952 + - uid: 31804 components: - type: Transform pos: 18.5,-52.5 parent: 2 - - uid: 31953 + - uid: 31805 components: - type: Transform pos: -26.5,54.5 parent: 2 - proto: ToySword entities: - - uid: 31954 + - uid: 31806 components: - type: Transform pos: -49.973225,-32.125988 parent: 2 - - uid: 31955 + - uid: 31807 components: - type: Transform pos: -50.473225,-32.360363 parent: 2 - proto: TrackingImplanter entities: - - uid: 31956 + - uid: 31808 components: - type: Transform pos: 26.62773,16.042706 parent: 2 - - uid: 31957 + - uid: 31809 components: - type: Transform rot: 3.141592653589793 rad pos: 74.49902,-0.6281295 parent: 2 - - uid: 31958 + - uid: 31810 components: - type: Transform rot: 3.141592653589793 rad @@ -238849,38 +238917,38 @@ entities: parent: 2 - proto: TrainingBomb entities: - - uid: 31959 + - uid: 31811 components: - type: Transform pos: 79.5,-51.5 parent: 2 - proto: TrashBag entities: - - uid: 31960 + - uid: 31812 components: - type: Transform pos: -1.5508432,32.560196 parent: 2 - type: Physics canCollide: False - - uid: 31961 + - uid: 31813 components: - type: Transform pos: 0.8097693,54.4752 parent: 2 - - uid: 31962 + - uid: 31814 components: - type: Transform pos: 0.60796434,54.310085 parent: 2 - - uid: 31963 + - uid: 31815 components: - type: Transform pos: -1.4883432,31.528946 parent: 2 - type: Physics canCollide: False - - uid: 31964 + - uid: 31816 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -238888,54 +238956,54 @@ entities: parent: 2 - proto: TrashBananaPeel entities: - - uid: 31965 + - uid: 31817 components: - type: Transform pos: 40.50665,20.421618 parent: 2 - - uid: 31966 + - uid: 31818 components: - type: Transform pos: 50.5141,8.351975 parent: 2 - - uid: 31967 + - uid: 31819 components: - type: Transform pos: -37.424778,0.47973192 parent: 2 - - uid: 31968 + - uid: 31820 components: - type: Transform pos: -37.575375,2.4238644 parent: 2 - - uid: 31969 + - uid: 31821 components: - type: Transform pos: -36.613472,1.4679323 parent: 2 - - uid: 31970 + - uid: 31822 components: - type: Transform pos: -7.333141,33.313103 parent: 2 - - uid: 31971 + - uid: 31823 components: - type: Transform pos: -38.46857,-56.55106 parent: 2 - proto: trayScanner entities: - - uid: 31972 + - uid: 31824 components: - type: Transform pos: -46.617897,11.574662 parent: 2 - - uid: 31973 + - uid: 31825 components: - type: Transform pos: -46.992897,11.527788 parent: 2 - - uid: 31974 + - uid: 31826 components: - type: Transform rot: -1.5707963267948966 rad @@ -238943,498 +239011,498 @@ entities: parent: 2 - proto: Truncheon entities: - - uid: 15014 + - uid: 14955 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 31975 + - uid: 31827 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.62287,7.394455 parent: 2 - - uid: 31976 + - uid: 31828 components: - type: Transform pos: 57.30327,7.5272903 parent: 2 - - uid: 31977 + - uid: 31829 components: - type: Transform pos: 57.475143,7.4647903 parent: 2 - proto: TwoWayLever entities: - - uid: 31978 + - uid: 31830 components: - type: Transform pos: -51.5,-9.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1523: + 1528: - Left: Open - Right: Open - Middle: Close - 1522: + 1527: - Left: Open - Right: Open - Middle: Close - 1524: + 1529: - Left: Open - Right: Open - Middle: Close - - uid: 31979 + - uid: 31831 components: - type: Transform pos: 24.5,51.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15548: + 15531: - Left: Forward - Right: Reverse - Middle: Off - 15556: + 15539: - Left: Forward - Right: Reverse - Middle: Off - 15547: + 15530: - Left: Forward - Right: Reverse - Middle: Off - 15537: + 15520: - Left: Forward - Right: Reverse - Middle: Off - 15534: + 15517: - Left: Forward - Right: Reverse - Middle: Off - 15529: + 15512: - Left: Forward - Right: Reverse - Middle: Off - 15539: + 15522: - Left: Forward - Right: Reverse - Middle: Off - 15532: + 15515: - Left: Forward - Right: Reverse - Middle: Off - 15530: + 15513: - Left: Forward - Right: Reverse - Middle: Off - 15533: + 15516: - Left: Forward - Right: Reverse - Middle: Off - 15531: + 15514: - Left: Forward - Right: Reverse - Middle: Off - 15536: + 15519: - Left: Forward - Right: Reverse - Middle: Off - 15535: + 15518: - Left: Forward - Right: Reverse - Middle: Off - 15528: + 15511: - Left: Forward - Right: Reverse - Middle: Off - 15527: + 15510: - Left: Forward - Right: Reverse - Middle: Off - 15557: + 15540: - Left: Forward - Right: Reverse - Middle: Off - - uid: 31980 + - uid: 31832 components: - type: Transform pos: 24.5,49.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15543: + 15526: - Left: Forward - Right: Reverse - Middle: Off - 15526: + 15509: - Left: Forward - Right: Reverse - Middle: Off - 15523: + 15506: - Left: Forward - Right: Reverse - Middle: Off - 15525: + 15508: - Left: Forward - Right: Reverse - Middle: Off - 15520: + 15503: - Left: Forward - Right: Reverse - Middle: Off - 15521: + 15504: - Left: Forward - Right: Reverse - Middle: Off - 15524: + 15507: - Left: Forward - Right: Reverse - Middle: Off - 15519: + 15502: - Left: Forward - Right: Reverse - Middle: Off - 15518: + 15501: - Left: Forward - Right: Reverse - Middle: Off - 15517: + 15500: - Left: Forward - Right: Reverse - Middle: Off - 15516: + 15499: - Left: Forward - Right: Reverse - Middle: Off - 15561: + 15544: - Left: Forward - Right: Reverse - Middle: Off - 15563: + 15546: - Left: Forward - Right: Reverse - Middle: Off - 15560: + 15543: - Left: Forward - Right: Reverse - Middle: Off - 15562: + 15545: - Left: Forward - Right: Reverse - Middle: Off - 15546: + 15529: - Left: Forward - Right: Reverse - Middle: Off - 15549: + 15532: - Left: Forward - Right: Reverse - Middle: Off - 15538: + 15521: - Left: Forward - Right: Reverse - Middle: Off - 15551: + 15534: - Left: Forward - Right: Reverse - Middle: Off - 15552: + 15535: - Left: Forward - Right: Reverse - Middle: Off - 15559: + 15542: - Left: Forward - Right: Reverse - Middle: Off - 15555: + 15538: - Left: Forward - Right: Reverse - Middle: Off - - uid: 31981 + - uid: 31833 components: - type: Transform pos: -51.5,44.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29380: + 29178: - Left: Open - Right: Open - Middle: Close - 29378: + 29176: - Left: Open - Right: Open - Middle: Close - 29379: + 29177: - Left: Open - Right: Open - Middle: Close - 29386: + 29184: - Left: Open - Right: Open - Middle: Close - 29385: + 29183: - Left: Open - Right: Open - Middle: Close - 29384: + 29182: - Left: Open - Right: Open - Middle: Close - 29382: + 29180: - Left: Open - Right: Open - Middle: Close - 29376: + 29174: - Left: Open - Right: Open - Middle: Close - 29377: + 29175: - Left: Open - Right: Open - Middle: Close - - uid: 31982 + - uid: 31834 components: - type: Transform pos: 30.5,59.5 parent: 2 - - uid: 31983 + - uid: 31835 components: - type: Transform pos: 24.5,57.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 27924: + 27773: - Left: Forward - Right: Reverse - Middle: Off - 15564: + 15547: - Left: Forward - Right: Reverse - Middle: Off - 15522: + 15505: - Left: Forward - Right: Reverse - Middle: Off - 15566: + 15549: - Left: Forward - Right: Reverse - Middle: Off - 15565: + 15548: - Left: Forward - Right: Reverse - Middle: Off - 15545: + 15528: - Left: Forward - Right: Reverse - Middle: Off - 15550: + 15533: - Left: Forward - Right: Reverse - Middle: Off - 15568: + 15551: - Left: Forward - Right: Reverse - Middle: Off - 15544: + 15527: - Left: Forward - Right: Reverse - Middle: Off - 15553: + 15536: - Left: Forward - Right: Reverse - Middle: Off - 15571: + 15554: - Left: Forward - Right: Reverse - Middle: Off - 15540: + 15523: - Left: Forward - Right: Reverse - Middle: Off - 15554: + 15537: - Left: Forward - Right: Reverse - Middle: Off - 15558: + 15541: - Left: Forward - Right: Reverse - Middle: Off - 15567: + 15550: - Left: Forward - Right: Reverse - Middle: Off - 15570: + 15553: - Left: Forward - Right: Reverse - Middle: Off - 15541: + 15524: - Left: Forward - Right: Reverse - Middle: Off - 15542: + 15525: - Left: Forward - Right: Reverse - Middle: Off - 15569: + 15552: - Left: Forward - Right: Reverse - Middle: Off - 1508: + 1513: - Left: Open - Right: Open - Middle: Close - proto: UnfinishedMachineFrame entities: - - uid: 31984 + - uid: 31836 components: - type: Transform pos: 49.5,-30.5 parent: 2 - - uid: 31985 + - uid: 31837 components: - type: Transform pos: 0.5,44.5 parent: 2 - - uid: 31986 + - uid: 31838 components: - type: Transform pos: 0.5,45.5 parent: 2 - - uid: 31987 + - uid: 31839 components: - type: Transform pos: -37.5,-38.5 parent: 2 - - uid: 31988 + - uid: 31840 components: - type: Transform pos: -36.5,52.5 parent: 2 - - uid: 39762 + - uid: 39589 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,2.5 - parent: 38584 + parent: 38411 - proto: UniformPrinter entities: - - uid: 31989 + - uid: 31841 components: - type: Transform pos: -13.5,2.5 parent: 2 - proto: UniformShortsRed entities: - - uid: 15217 + - uid: 15161 components: - type: Transform - parent: 15214 + parent: 15158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15222 + - uid: 15166 components: - type: Transform - parent: 15219 + parent: 15163 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15227 + - uid: 15171 components: - type: Transform - parent: 15224 + parent: 15168 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 31990 + - uid: 31842 components: - type: Transform pos: 55.305378,-23.720034 parent: 2 - - uid: 31991 + - uid: 31843 components: - type: Transform pos: 55.649128,-23.673159 parent: 2 - - uid: 31992 + - uid: 31844 components: - type: Transform pos: 55.696003,-23.391909 parent: 2 - - uid: 31993 + - uid: 31845 components: - type: Transform pos: 55.336628,-23.391909 parent: 2 - proto: UniformShortsRedWithTop entities: - - uid: 15218 + - uid: 15162 components: - type: Transform - parent: 15214 + parent: 15158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15223 + - uid: 15167 components: - type: Transform - parent: 15219 + parent: 15163 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15228 + - uid: 15172 components: - type: Transform - parent: 15224 + parent: 15168 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 31994 + - uid: 31846 components: - type: Transform pos: 55.711628,-24.032534 parent: 2 - - uid: 31995 + - uid: 31847 components: - type: Transform pos: 55.305378,-24.438784 parent: 2 - - uid: 31996 + - uid: 31848 components: - type: Transform pos: 55.727253,-24.407534 parent: 2 - - uid: 31997 + - uid: 31849 components: - type: Transform pos: 55.242878,-24.079409 parent: 2 - proto: VaccinatorMachineCircuitboard entities: - - uid: 31998 + - uid: 31850 components: - type: Transform pos: 28.897463,-66.57021 parent: 2 - proto: VariantCubeBox entities: - - uid: 31999 + - uid: 31851 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 51.45035,-47.490284 parent: 2 - - uid: 32000 + - uid: 31852 components: - type: Transform pos: -27.332859,-27.821 parent: 2 - - uid: 32001 + - uid: 31853 components: - type: Transform pos: 40.340553,-65.455154 @@ -239443,751 +239511,751 @@ entities: canCollide: False - proto: VendingBarDrobe entities: - - uid: 32002 + - uid: 31854 components: - type: Transform pos: -3.5,36.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 32003 + - uid: 31855 components: - type: Transform pos: -56.5,38.5 parent: 2 - proto: VendingMachineBooze entities: - - uid: 32004 + - uid: 31856 components: - type: Transform pos: 5.5,10.5 parent: 2 - - uid: 32005 + - uid: 31857 components: - type: Transform pos: -5.5,39.5 parent: 2 - - uid: 32006 + - uid: 31858 components: - type: Transform pos: -62.5,-47.5 parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 32007 + - uid: 31859 components: - type: Transform pos: 22.5,38.5 parent: 2 - - uid: 32008 + - uid: 31860 components: - type: Transform pos: 22.5,37.5 parent: 2 - proto: VendingMachineCart entities: - - uid: 32009 + - uid: 31861 components: - type: Transform pos: -8.5,4.5 parent: 2 - proto: VendingMachineChapel entities: - - uid: 32010 + - uid: 31862 components: - type: Transform pos: -19.5,-81.5 parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 32011 + - uid: 31863 components: - type: Transform pos: -28.5,27.5 parent: 2 - proto: VendingMachineChefvend entities: - - uid: 32012 + - uid: 31864 components: - type: Transform pos: 97.5,-1.5 parent: 2 - - uid: 32013 + - uid: 31865 components: - type: Transform pos: -28.5,28.5 parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 32014 + - uid: 31866 components: - type: Transform pos: 7.5,-35.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 32015 + - uid: 31867 components: - type: Transform pos: 6.5,-35.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 32016 + - uid: 31868 components: - type: Transform pos: 12.5,-10.5 parent: 2 - - uid: 32017 + - uid: 31869 components: - type: Transform pos: -25.5,0.5 parent: 2 - - uid: 32018 + - uid: 31870 components: - type: Transform pos: -9.5,66.5 parent: 2 - - uid: 32019 + - uid: 31871 components: - type: Transform pos: -13.5,59.5 parent: 2 - - uid: 32020 + - uid: 31872 components: - type: Transform pos: -12.5,-5.5 parent: 2 - - uid: 32021 + - uid: 31873 components: - type: MetaData name: cigarette machine - type: Transform pos: -20.5,24.5 parent: 2 - - uid: 32022 + - uid: 31874 components: - type: MetaData name: cigarette machine - type: Transform pos: 5.5,9.5 parent: 2 - - uid: 32023 + - uid: 31875 components: - type: MetaData name: cigarette machine - type: Transform pos: -6.5,9.5 parent: 2 - - uid: 32024 + - uid: 31876 components: - type: MetaData name: cigarette machine - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 32025 + - uid: 31877 components: - type: MetaData name: cigarette machine - type: Transform pos: 10.5,16.5 parent: 2 - - uid: 32026 + - uid: 31878 components: - type: MetaData name: cigarette machine - type: Transform pos: -65.5,13.5 parent: 2 - - uid: 32027 + - uid: 31879 components: - type: MetaData name: cigarette machine - type: Transform pos: 43.5,-55.5 parent: 2 - - uid: 32028 + - uid: 31880 components: - type: MetaData name: cigarette machine - type: Transform pos: 55.5,-30.5 parent: 2 - - uid: 32029 + - uid: 31881 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 39763 + - uid: 39590 components: - type: Transform pos: 3.5,4.5 - parent: 38584 + parent: 38411 - proto: VendingMachineClothing entities: - - uid: 32030 + - uid: 31882 components: - type: Transform pos: -9.5,59.5 parent: 2 - - uid: 32031 + - uid: 31883 components: - type: Transform pos: -13.5,66.5 parent: 2 - - uid: 32032 + - uid: 31884 components: - type: Transform pos: -9.5,34.5 parent: 2 - - uid: 32033 + - uid: 31885 components: - type: Transform pos: 33.5,-16.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 32034 + - uid: 31886 components: - type: Transform pos: 14.5,46.5 parent: 2 - - uid: 32035 + - uid: 31887 components: - type: MetaData name: Hot drinks machine - type: Transform pos: -6.5,10.5 parent: 2 - - uid: 32036 + - uid: 31888 components: - type: MetaData name: Hot drinks machine - type: Transform pos: 38.5,-28.5 parent: 2 - - uid: 32037 + - uid: 31889 components: - type: Transform pos: 9.5,16.5 parent: 2 - - uid: 32038 + - uid: 31890 components: - type: Transform pos: -25.5,-38.5 parent: 2 - - uid: 32039 + - uid: 31891 components: - type: Transform pos: -57.5,-35.5 parent: 2 - proto: VendingMachineCola entities: - - uid: 32040 + - uid: 31892 components: - type: Transform pos: 18.5,72.5 parent: 2 - proto: VendingMachineCondiments entities: - - uid: 32041 + - uid: 31893 components: - type: Transform pos: -28.5,38.5 parent: 2 - proto: VendingMachineCuraDrobe entities: - - uid: 32042 + - uid: 31894 components: - type: Transform pos: -25.5,-10.5 parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 32043 + - uid: 31895 components: - type: Transform pos: 28.5,12.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 32044 + - uid: 31896 components: - type: Transform pos: -29.5,31.5 parent: 2 - proto: VendingMachineDiscount entities: - - uid: 32045 + - uid: 31897 components: - type: Transform pos: -57.5,-36.5 parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 32046 + - uid: 31898 components: - type: Transform pos: -50.5,-3.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 32047 + - uid: 31899 components: - type: Transform pos: -48.5,-0.5 parent: 2 - - uid: 39764 + - uid: 39591 components: - type: Transform pos: 7.5,0.5 - parent: 38584 + parent: 38411 - proto: VendingMachineGames entities: - - uid: 32048 + - uid: 31900 components: - type: Transform pos: 84.5,7.5 parent: 2 - - uid: 32049 + - uid: 31901 components: - type: Transform pos: 63.5,-23.5 parent: 2 - - uid: 32050 + - uid: 31902 components: - type: Transform pos: -29.5,-15.5 parent: 2 - - uid: 39765 + - uid: 39592 components: - type: Transform pos: -9.5,-6.5 - parent: 38584 + parent: 38411 - proto: VendingMachineGeneDrobe entities: - - uid: 32051 + - uid: 31903 components: - type: Transform pos: 7.5,-46.5 parent: 2 - proto: VendingMachineHappyHonk entities: - - uid: 32052 + - uid: 31904 components: - type: Transform pos: -8.5,54.5 parent: 2 - - uid: 32053 + - uid: 31905 components: - type: Transform pos: -22.5,28.5 parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 32054 + - uid: 31906 components: - type: Transform pos: -33.5,54.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 32055 + - uid: 31907 components: - type: Transform pos: 2.5,50.5 parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 32056 + - uid: 31908 components: - type: Transform pos: 37.5,2.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 32057 + - uid: 31909 components: - type: Transform pos: 28.5,-21.5 parent: 2 - - uid: 32058 + - uid: 31910 components: - type: Transform pos: 68.5,13.5 parent: 2 - - uid: 32059 + - uid: 31911 components: - type: Transform pos: 18.5,-46.5 parent: 2 - - uid: 32060 + - uid: 31912 components: - type: Transform pos: 38.5,-40.5 parent: 2 - - uid: 32061 + - uid: 31913 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 39766 + - uid: 39593 components: - type: Transform pos: -4.5,-3.5 - parent: 38584 + parent: 38411 - proto: VendingMachineMediDrobe entities: - - uid: 32062 + - uid: 31914 components: - type: Transform pos: 31.5,-21.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 32063 + - uid: 31915 components: - type: Transform pos: -31.5,55.5 parent: 2 - proto: VendingMachineRestockSecTech entities: - - uid: 15015 + - uid: 14956 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - proto: VendingMachineRoboDrobe entities: - - uid: 32064 + - uid: 31916 components: - type: Transform pos: -3.5,-37.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 32065 + - uid: 31917 components: - type: Transform pos: -3.5,-43.5 parent: 2 - proto: VendingMachineSalvage entities: - - uid: 32066 + - uid: 31918 components: - type: Transform pos: 13.5,46.5 parent: 2 - - uid: 32067 + - uid: 31919 components: - type: Transform pos: 33.5,28.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 32068 + - uid: 31920 components: - type: Transform pos: -24.5,-23.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 32069 + - uid: 31921 components: - type: Transform pos: 57.5,13.5 parent: 2 - - uid: 32070 + - uid: 31922 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 32071 + - uid: 31923 components: - type: Transform pos: 50.5,-6.5 parent: 2 - - uid: 39767 + - uid: 39594 components: - type: Transform pos: 9.5,-1.5 - parent: 38584 + parent: 38411 - proto: VendingMachineSecDrobe entities: - - uid: 32072 + - uid: 31924 components: - type: Transform pos: 0.5,65.5 parent: 2 - - uid: 32073 + - uid: 31925 components: - type: Transform pos: 54.5,13.5 parent: 2 - - uid: 39768 + - uid: 39595 components: - type: Transform pos: 9.5,-7.5 - parent: 38584 + parent: 38411 - proto: VendingMachineSeeds entities: - - uid: 32074 + - uid: 31926 components: - type: Transform pos: -32.5,55.5 parent: 2 - proto: VendingMachineSeedsUnlocked entities: - - uid: 32075 + - uid: 31927 components: - type: Transform pos: 95.5,5.5 parent: 2 - - uid: 39769 + - uid: 39596 components: - type: Transform pos: -21.5,-4.5 - parent: 38584 + parent: 38411 - proto: VendingMachineShamblersJuice entities: - - uid: 32076 + - uid: 31928 components: - type: Transform pos: -45.5,-44.5 parent: 2 - proto: VendingMachineSnack entities: - - uid: 32077 + - uid: 31929 components: - type: Transform pos: 17.5,72.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 32078 + - uid: 31930 components: - type: Transform pos: -68.5,-20.5 parent: 2 - - uid: 32079 + - uid: 31931 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 32080 + - uid: 31932 components: - type: Transform pos: -50.5,-19.5 parent: 2 - proto: VendingMachineSyndieDrobe entities: - - uid: 32081 + - uid: 31933 components: - type: Transform pos: -39.5,-78.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 32082 + - uid: 31934 components: - type: Transform pos: -48.5,-9.5 parent: 2 - - uid: 32083 + - uid: 31935 components: - type: Transform pos: -45.5,-14.5 parent: 2 - - uid: 32084 + - uid: 31936 components: - type: Transform pos: -71.5,-9.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 32085 + - uid: 31937 components: - type: Transform pos: 63.5,11.5 parent: 2 - - uid: 32086 + - uid: 31938 components: - type: Transform pos: 36.5,34.5 parent: 2 - - uid: 32087 + - uid: 31939 components: - type: Transform pos: 34.5,42.5 parent: 2 - - uid: 32088 + - uid: 31940 components: - type: Transform pos: 22.5,26.5 parent: 2 - - uid: 32089 + - uid: 31941 components: - type: Transform pos: 77.5,8.5 parent: 2 - - uid: 32090 + - uid: 31942 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 32091 + - uid: 31943 components: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 32092 + - uid: 31944 components: - type: Transform pos: 93.5,9.5 parent: 2 - - uid: 32093 + - uid: 31945 components: - type: Transform pos: -60.5,24.5 parent: 2 - - uid: 39770 + - uid: 39597 components: - type: Transform pos: -14.5,34.5 - parent: 38584 + parent: 38411 - proto: VendingMachineTheater entities: - - uid: 32094 + - uid: 31946 components: - type: Transform pos: 40.5,-49.5 parent: 2 - - uid: 32095 + - uid: 31947 components: - type: Transform pos: -8.5,34.5 parent: 2 - - uid: 32096 + - uid: 31948 components: - type: Transform pos: 12.5,70.5 parent: 2 - - uid: 32097 + - uid: 31949 components: - type: Transform pos: 36.5,-16.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 32098 + - uid: 31950 components: - type: Transform pos: -12.5,-55.5 parent: 2 - - uid: 32099 + - uid: 31951 components: - type: Transform pos: -9.5,-27.5 parent: 2 - - uid: 32100 + - uid: 31952 components: - type: Transform pos: -28.5,12.5 parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 32101 + - uid: 31953 components: - type: Transform pos: 45.5,-63.5 parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 32102 + - uid: 31954 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-3.5 parent: 2 - - uid: 32103 + - uid: 31955 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,14.5 parent: 2 - - uid: 32104 + - uid: 31956 components: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 32105 + - uid: 31957 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-64.5 parent: 2 - - uid: 32106 + - uid: 31958 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 32107 + - uid: 31959 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-33.5 parent: 2 - - uid: 32108 + - uid: 31960 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-13.5 parent: 2 - - uid: 32109 + - uid: 31961 components: - type: Transform pos: 32.5,-32.5 parent: 2 - proto: VendingMachineWinter entities: - - uid: 32110 + - uid: 31962 components: - type: Transform pos: 35.5,-16.5 parent: 2 - proto: VendingMachineYouTool entities: - - uid: 32111 + - uid: 31963 components: - type: Transform pos: 13.5,-3.5 parent: 2 - - uid: 32112 + - uid: 31964 components: - type: Transform pos: -56.5,20.5 parent: 2 - - uid: 32113 + - uid: 31965 components: - type: Transform pos: -28.5,11.5 parent: 2 - - uid: 32114 + - uid: 31966 components: - type: Transform pos: -48.5,-1.5 parent: 2 - - uid: 39771 + - uid: 39598 components: - type: Transform pos: 8.5,0.5 - parent: 38584 + parent: 38411 - proto: VibraphoneInstrument entities: - - uid: 32115 + - uid: 31967 components: - type: Transform rot: 3.141592653589793 rad @@ -240195,12 +240263,12 @@ entities: parent: 2 - proto: ViolinInstrument entities: - - uid: 32116 + - uid: 31968 components: - type: Transform pos: 47.444527,-50.30899 parent: 2 - - uid: 32117 + - uid: 31969 components: - type: Transform pos: 47.511616,-55.279068 @@ -240209,7 +240277,7 @@ entities: canCollide: False - proto: WallmountTelescreenFrame entities: - - uid: 32118 + - uid: 31970 components: - type: Transform rot: 3.141592653589793 rad @@ -240217,25572 +240285,25572 @@ entities: parent: 2 - proto: WallmountTelevision entities: - - uid: 32119 + - uid: 31971 components: - type: Transform pos: -13.5,25.5 parent: 2 - - uid: 32120 + - uid: 31972 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-74.5 parent: 2 - - uid: 32121 + - uid: 31973 components: - type: Transform pos: -37.5,7.5 parent: 2 - - uid: 32122 + - uid: 31974 components: - type: Transform pos: 28.5,-8.5 parent: 2 - - uid: 32123 + - uid: 31975 components: - type: Transform pos: 26.5,7.5 parent: 2 - - uid: 32124 + - uid: 31976 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 - - uid: 32125 + - uid: 31977 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,14.5 parent: 2 - - uid: 32126 + - uid: 31978 components: - type: Transform pos: 50.5,-17.5 parent: 2 - proto: WallmountTelevisionFrame entities: - - uid: 32128 + - uid: 31979 components: - type: Transform pos: -70.5,-38.5 parent: 2 - - uid: 32129 + - uid: 31980 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-80.5 parent: 2 - - uid: 32130 + - uid: 31981 components: - type: Transform pos: -26.5,40.5 parent: 2 - - uid: 32131 + - uid: 31982 components: - type: Transform pos: -26.5,70.5 parent: 2 - - uid: 32132 + - uid: 31983 components: - type: Transform pos: -11.5,47.5 parent: 2 - - uid: 32133 + - uid: 31984 components: - type: Transform pos: -26.5,44.5 parent: 2 - proto: WallPlasma entities: - - uid: 32134 + - uid: 31985 components: - type: Transform pos: -65.5,-44.5 parent: 2 - - uid: 32135 + - uid: 31986 components: - type: Transform pos: -66.5,-44.5 parent: 2 - - uid: 32136 + - uid: 31987 components: - type: Transform pos: -61.5,-44.5 parent: 2 - proto: WallPlastitanium entities: - - uid: 39772 + - uid: 39599 components: - type: Transform pos: -23.5,31.5 - parent: 38584 - - uid: 39773 + parent: 38411 + - uid: 39600 components: - type: Transform pos: -23.5,29.5 - parent: 38584 - - uid: 39774 + parent: 38411 + - uid: 39601 components: - type: Transform pos: -15.5,37.5 - parent: 38584 - - uid: 39775 + parent: 38411 + - uid: 39602 components: - type: Transform pos: -19.5,27.5 - parent: 38584 - - uid: 39776 + parent: 38411 + - uid: 39603 components: - type: Transform pos: -23.5,26.5 - parent: 38584 - - uid: 39777 + parent: 38411 + - uid: 39604 components: - type: Transform pos: -23.5,33.5 - parent: 38584 - - uid: 39778 + parent: 38411 + - uid: 39605 components: - type: Transform pos: -24.5,30.5 - parent: 38584 - - uid: 39779 + parent: 38411 + - uid: 39606 components: - type: Transform pos: -13.5,37.5 - parent: 38584 - - uid: 39780 + parent: 38411 + - uid: 39607 components: - type: Transform pos: -14.5,33.5 - parent: 38584 - - uid: 39781 + parent: 38411 + - uid: 39608 components: - type: Transform pos: -13.5,36.5 - parent: 38584 - - uid: 39782 + parent: 38411 + - uid: 39609 components: - type: Transform pos: -16.5,37.5 - parent: 38584 - - uid: 39783 + parent: 38411 + - uid: 39610 components: - type: Transform pos: -23.5,34.5 - parent: 38584 - - uid: 39784 + parent: 38411 + - uid: 39611 components: - type: Transform pos: -23.5,35.5 - parent: 38584 - - uid: 39785 + parent: 38411 + - uid: 39612 components: - type: Transform pos: -15.5,36.5 - parent: 38584 - - uid: 39786 + parent: 38411 + - uid: 39613 components: - type: Transform pos: -20.5,29.5 - parent: 38584 - - uid: 39787 + parent: 38411 + - uid: 39614 components: - type: Transform pos: -14.5,37.5 - parent: 38584 - - uid: 39788 + parent: 38411 + - uid: 39615 components: - type: Transform pos: -22.5,26.5 - parent: 38584 - - uid: 39789 + parent: 38411 + - uid: 39616 components: - type: Transform pos: -15.5,30.5 - parent: 38584 - - uid: 39790 + parent: 38411 + - uid: 39617 components: - type: Transform pos: -22.5,29.5 - parent: 38584 - - uid: 39791 + parent: 38411 + - uid: 39618 components: - type: Transform pos: -25.5,30.5 - parent: 38584 - - uid: 39792 + parent: 38411 + - uid: 39619 components: - type: Transform pos: -18.5,37.5 - parent: 38584 - - uid: 39793 + parent: 38411 + - uid: 39620 components: - type: Transform pos: -17.5,37.5 - parent: 38584 - - uid: 39794 + parent: 38411 + - uid: 39621 components: - type: Transform pos: -21.5,26.5 - parent: 38584 - - uid: 39795 + parent: 38411 + - uid: 39622 components: - type: Transform pos: -24.5,26.5 - parent: 38584 - - uid: 39796 + parent: 38411 + - uid: 39623 components: - type: Transform pos: -23.5,27.5 - parent: 38584 - - uid: 39797 + parent: 38411 + - uid: 39624 components: - type: Transform pos: 12.5,21.5 - parent: 38584 - - uid: 39798 + parent: 38411 + - uid: 39625 components: - type: Transform pos: 12.5,17.5 - parent: 38584 - - uid: 39799 + parent: 38411 + - uid: 39626 components: - type: Transform pos: -19.5,34.5 - parent: 38584 - - uid: 39800 + parent: 38411 + - uid: 39627 components: - type: Transform pos: -15.5,31.5 - parent: 38584 - - uid: 39801 + parent: 38411 + - uid: 39628 components: - type: Transform pos: -19.5,26.5 - parent: 38584 - - uid: 39802 + parent: 38411 + - uid: 39629 components: - type: Transform pos: 14.5,21.5 - parent: 38584 - - uid: 39803 + parent: 38411 + - uid: 39630 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,20.5 - parent: 38584 - - uid: 39804 + parent: 38411 + - uid: 39631 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,18.5 - parent: 38584 - - uid: 39805 + parent: 38411 + - uid: 39632 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,18.5 - parent: 38584 - - uid: 39806 + parent: 38411 + - uid: 39633 components: - type: Transform pos: 15.5,18.5 - parent: 38584 - - uid: 39807 + parent: 38411 + - uid: 39634 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,20.5 - parent: 38584 - - uid: 39808 + parent: 38411 + - uid: 39635 components: - type: Transform pos: 13.5,17.5 - parent: 38584 - - uid: 39809 + parent: 38411 + - uid: 39636 components: - type: Transform pos: 14.5,17.5 - parent: 38584 - - uid: 39810 + parent: 38411 + - uid: 39637 components: - type: Transform pos: 13.5,21.5 - parent: 38584 - - uid: 39811 + parent: 38411 + - uid: 39638 components: - type: Transform pos: 15.5,20.5 - parent: 38584 - - uid: 39812 + parent: 38411 + - uid: 39639 components: - type: Transform pos: 11.5,21.5 - parent: 38584 - - uid: 39813 + parent: 38411 + - uid: 39640 components: - type: Transform pos: -15.5,29.5 - parent: 38584 - - uid: 39814 + parent: 38411 + - uid: 39641 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,20.5 - parent: 38584 - - uid: 39815 + parent: 38411 + - uid: 39642 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,23.5 - parent: 38584 - - uid: 39816 + parent: 38411 + - uid: 39643 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,16.5 - parent: 38584 - - uid: 39817 + parent: 38411 + - uid: 39644 components: - type: Transform pos: -15.5,32.5 - parent: 38584 - - uid: 39818 + parent: 38411 + - uid: 39645 components: - type: Transform pos: 11.5,15.5 - parent: 38584 - - uid: 39819 + parent: 38411 + - uid: 39646 components: - type: Transform pos: 10.5,23.5 - parent: 38584 - - uid: 39820 + parent: 38411 + - uid: 39647 components: - type: Transform pos: 12.5,15.5 - parent: 38584 - - uid: 39821 + parent: 38411 + - uid: 39648 components: - type: Transform pos: -25.5,27.5 - parent: 38584 - - uid: 39822 + parent: 38411 + - uid: 39649 components: - type: Transform pos: -17.5,29.5 - parent: 38584 - - uid: 39823 + parent: 38411 + - uid: 39650 components: - type: Transform pos: -18.5,29.5 - parent: 38584 - - uid: 39824 + parent: 38411 + - uid: 39651 components: - type: Transform pos: 12.5,23.5 - parent: 38584 - - uid: 39825 + parent: 38411 + - uid: 39652 components: - type: Transform pos: -20.5,26.5 - parent: 38584 - - uid: 39826 + parent: 38411 + - uid: 39653 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,22.5 - parent: 38584 - - uid: 39827 + parent: 38411 + - uid: 39654 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,18.5 - parent: 38584 - - uid: 39828 + parent: 38411 + - uid: 39655 components: - type: Transform pos: -16.5,29.5 - parent: 38584 - - uid: 39829 + parent: 38411 + - uid: 39656 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,16.5 - parent: 38584 - - uid: 39830 + parent: 38411 + - uid: 39657 components: - type: Transform pos: -13.5,33.5 - parent: 38584 - - uid: 39831 + parent: 38411 + - uid: 39658 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,15.5 - parent: 38584 - - uid: 39832 + parent: 38411 + - uid: 39659 components: - type: Transform pos: 11.5,23.5 - parent: 38584 - - uid: 39833 + parent: 38411 + - uid: 39660 components: - type: Transform pos: 11.5,17.5 - parent: 38584 - - uid: 39834 + parent: 38411 + - uid: 39661 components: - type: Transform pos: 12.5,14.5 - parent: 38584 - - uid: 39835 + parent: 38411 + - uid: 39662 components: - type: Transform pos: -13.5,34.5 - parent: 38584 - - uid: 39836 + parent: 38411 + - uid: 39663 components: - type: Transform pos: -19.5,35.5 - parent: 38584 - - uid: 39837 + parent: 38411 + - uid: 39664 components: - type: Transform pos: -19.5,33.5 - parent: 38584 - - uid: 39838 + parent: 38411 + - uid: 39665 components: - type: Transform pos: -19.5,36.5 - parent: 38584 - - uid: 39839 + parent: 38411 + - uid: 39666 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,23.5 - parent: 38584 - - uid: 39840 + parent: 38411 + - uid: 39667 components: - type: Transform pos: -23.5,32.5 - parent: 38584 - - uid: 39841 + parent: 38411 + - uid: 39668 components: - type: Transform pos: -25.5,29.5 - parent: 38584 - - uid: 39842 + parent: 38411 + - uid: 39669 components: - type: Transform pos: -25.5,26.5 - parent: 38584 - - uid: 39843 + parent: 38411 + - uid: 39670 components: - type: Transform pos: -19.5,28.5 - parent: 38584 - - uid: 39844 + parent: 38411 + - uid: 39671 components: - type: Transform pos: -19.5,37.5 - parent: 38584 - - uid: 39845 + parent: 38411 + - uid: 39672 components: - type: Transform pos: -15.5,33.5 - parent: 38584 - - uid: 39846 + parent: 38411 + - uid: 39673 components: - type: Transform pos: -19.5,29.5 - parent: 38584 - - uid: 39847 + parent: 38411 + - uid: 39674 components: - type: Transform pos: -23.5,30.5 - parent: 38584 + parent: 38411 - proto: WallPlastitaniumDiagonal entities: - - uid: 39848 + - uid: 39675 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,24.5 - parent: 38584 - - uid: 39849 + parent: 38411 + - uid: 39676 components: - type: Transform pos: 14.5,18.5 - parent: 38584 - - uid: 39850 + parent: 38411 + - uid: 39677 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,18.5 - parent: 38584 - - uid: 39851 + parent: 38411 + - uid: 39678 components: - type: Transform pos: 8.5,20.5 - parent: 38584 - - uid: 39852 + parent: 38411 + - uid: 39679 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,20.5 - parent: 38584 - - uid: 39853 + parent: 38411 + - uid: 39680 components: - type: Transform pos: 10.5,21.5 - parent: 38584 - - uid: 39854 + parent: 38411 + - uid: 39681 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,17.5 - parent: 38584 - - uid: 39855 + parent: 38411 + - uid: 39682 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,21.5 - parent: 38584 - - uid: 39856 + parent: 38411 + - uid: 39683 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,23.5 - parent: 38584 - - uid: 39857 + parent: 38411 + - uid: 39684 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,15.5 - parent: 38584 - - uid: 39858 + parent: 38411 + - uid: 39685 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,14.5 - parent: 38584 - - uid: 39859 + parent: 38411 + - uid: 39686 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,14.5 - parent: 38584 - - uid: 39860 + parent: 38411 + - uid: 39687 components: - type: Transform pos: 11.5,24.5 - parent: 38584 - - uid: 39861 + parent: 38411 + - uid: 39688 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,18.5 - parent: 38584 - - uid: 39862 + parent: 38411 + - uid: 39689 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,17.5 - parent: 38584 - - uid: 39863 + parent: 38411 + - uid: 39690 components: - type: Transform pos: 9.5,23.5 - parent: 38584 - - uid: 39864 + parent: 38411 + - uid: 39691 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,15.5 - parent: 38584 - - uid: 39865 + parent: 38411 + - uid: 39692 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,20.5 - parent: 38584 + parent: 38411 - proto: WallReinforced entities: - - uid: 871 + - uid: 31988 components: - type: Transform pos: -59.5,-27.5 parent: 2 - - uid: 872 + - uid: 31989 components: - type: Transform pos: -62.5,-27.5 parent: 2 - - uid: 1355 + - uid: 31990 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-25.5 parent: 2 - - uid: 2802 + - uid: 31991 components: - type: Transform pos: 83.5,-24.5 parent: 2 - - uid: 2827 + - uid: 31992 components: - type: Transform pos: -40.5,-72.5 parent: 2 - - uid: 6733 + - uid: 31993 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-22.5 parent: 2 - - uid: 6739 + - uid: 31994 components: - type: Transform pos: -63.5,-27.5 parent: 2 - - uid: 6741 + - uid: 31995 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 - - uid: 6743 + - uid: 31996 components: - type: Transform pos: -60.5,-27.5 parent: 2 - - uid: 9966 + - uid: 31997 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-26.5 parent: 2 - - uid: 9972 + - uid: 31998 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-29.5 parent: 2 - - uid: 12050 + - uid: 31999 components: - type: Transform pos: -63.5,-21.5 parent: 2 - - uid: 13153 + - uid: 32000 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-22.5 parent: 2 - - uid: 13155 + - uid: 32001 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-22.5 parent: 2 - - uid: 14188 + - uid: 32002 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-21.5 parent: 2 - - uid: 15039 + - uid: 32003 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-24.5 parent: 2 - - uid: 17439 + - uid: 32004 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-23.5 parent: 2 - - uid: 17695 + - uid: 32005 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-22.5 parent: 2 - - uid: 17733 + - uid: 32006 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-27.5 parent: 2 - - uid: 17801 + - uid: 32007 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-28.5 parent: 2 - - uid: 18039 + - uid: 32008 components: - type: Transform pos: -64.5,-27.5 parent: 2 - - uid: 18839 + - uid: 32009 components: - type: Transform pos: -58.5,-27.5 parent: 2 - - uid: 23209 + - uid: 32010 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-24.5 parent: 2 - - uid: 23234 + - uid: 32011 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-26.5 parent: 2 - - uid: 31369 + - uid: 32012 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-23.5 parent: 2 - - uid: 31374 + - uid: 32013 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-27.5 parent: 2 - - uid: 32127 + - uid: 32014 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-26.5 parent: 2 - - uid: 32137 + - uid: 32015 components: - type: Transform pos: 27.5,14.5 parent: 2 - - uid: 32138 + - uid: 32016 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 32139 + - uid: 32017 components: - type: Transform pos: 20.5,11.5 parent: 2 - - uid: 32140 + - uid: 32018 components: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 32141 + - uid: 32019 components: - type: Transform pos: 24.5,18.5 parent: 2 - - uid: 32142 + - uid: 32020 components: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 32143 + - uid: 32021 components: - type: Transform pos: 21.5,18.5 parent: 2 - - uid: 32144 + - uid: 32022 components: - type: Transform pos: 21.5,12.5 parent: 2 - - uid: 32145 + - uid: 32023 components: - type: Transform pos: 22.5,11.5 parent: 2 - - uid: 32146 + - uid: 32024 components: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 32147 + - uid: 32025 components: - type: Transform pos: 25.5,18.5 parent: 2 - - uid: 32148 + - uid: 32026 components: - type: Transform pos: 23.5,18.5 parent: 2 - - uid: 32149 + - uid: 32027 components: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 32150 + - uid: 32028 components: - type: Transform pos: 26.5,18.5 parent: 2 - - uid: 32151 + - uid: 32029 components: - type: Transform pos: 19.5,19.5 parent: 2 - - uid: 32152 + - uid: 32030 components: - type: Transform pos: 20.5,18.5 parent: 2 - - uid: 32153 + - uid: 32031 components: - type: Transform pos: 21.5,11.5 parent: 2 - - uid: 32154 + - uid: 32032 components: - type: Transform pos: -15.5,20.5 parent: 2 - - uid: 32155 + - uid: 32033 components: - type: Transform pos: 27.5,11.5 parent: 2 - - uid: 32156 + - uid: 32034 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-1.5 parent: 2 - - uid: 32157 + - uid: 32035 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 32158 + - uid: 32036 components: - type: Transform pos: 14.5,19.5 parent: 2 - - uid: 32159 + - uid: 32037 components: - type: Transform pos: -15.5,19.5 parent: 2 - - uid: 32160 + - uid: 32038 components: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 32161 + - uid: 32039 components: - type: Transform pos: 14.5,20.5 parent: 2 - - uid: 32162 + - uid: 32040 components: - type: Transform pos: -15.5,18.5 parent: 2 - - uid: 32163 + - uid: 32041 components: - type: Transform pos: 19.5,12.5 parent: 2 - - uid: 32164 + - uid: 32042 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-5.5 parent: 2 - - uid: 32165 + - uid: 32043 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-4.5 parent: 2 - - uid: 32166 + - uid: 32044 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-6.5 parent: 2 - - uid: 32167 + - uid: 32045 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-9.5 parent: 2 - - uid: 32168 + - uid: 32046 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-1.5 parent: 2 - - uid: 32169 + - uid: 32047 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-1.5 parent: 2 - - uid: 32170 + - uid: 32048 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-1.5 parent: 2 - - uid: 32171 + - uid: 32049 components: - type: Transform pos: 71.5,25.5 parent: 2 - - uid: 32172 + - uid: 32050 components: - type: Transform pos: 71.5,27.5 parent: 2 - - uid: 32173 + - uid: 32051 components: - type: Transform pos: 64.5,31.5 parent: 2 - - uid: 32174 + - uid: 32052 components: - type: Transform pos: 65.5,31.5 parent: 2 - - uid: 32175 + - uid: 32053 components: - type: Transform pos: -2.5,70.5 parent: 2 - - uid: 32176 + - uid: 32054 components: - type: Transform pos: 2.5,70.5 parent: 2 - - uid: 32177 + - uid: 32055 components: - type: Transform pos: -20.5,70.5 parent: 2 - - uid: 32178 + - uid: 32056 components: - type: Transform pos: -25.5,70.5 parent: 2 - - uid: 32179 + - uid: 32057 components: - type: Transform pos: 37.5,38.5 parent: 2 - - uid: 32180 + - uid: 32058 components: - type: Transform pos: 36.5,40.5 parent: 2 - - uid: 32181 + - uid: 32059 components: - type: Transform pos: 37.5,40.5 parent: 2 - - uid: 32182 + - uid: 32060 components: - type: Transform pos: 59.5,32.5 parent: 2 - - uid: 32183 + - uid: 32061 components: - type: Transform pos: 49.5,32.5 parent: 2 - - uid: 32184 + - uid: 32062 components: - type: Transform pos: 50.5,33.5 parent: 2 - - uid: 32185 + - uid: 32063 components: - type: Transform pos: 58.5,33.5 parent: 2 - - uid: 32186 + - uid: 32064 components: - type: Transform pos: -16.5,-29.5 parent: 2 - - uid: 32187 + - uid: 32065 components: - type: Transform pos: 68.5,31.5 parent: 2 - - uid: 32188 + - uid: 32066 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,31.5 parent: 2 - - uid: 32189 + - uid: 32067 components: - type: Transform pos: 67.5,31.5 parent: 2 - - uid: 32190 + - uid: 32068 components: - type: Transform pos: 69.5,31.5 parent: 2 - - uid: 32191 + - uid: 32069 components: - type: Transform pos: -47.5,-3.5 parent: 2 - - uid: 32192 + - uid: 32070 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 32193 + - uid: 32071 components: - type: Transform pos: 61.5,31.5 parent: 2 - - uid: 32194 + - uid: 32072 components: - type: Transform pos: 69.5,28.5 parent: 2 - - uid: 32195 + - uid: 32073 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,32.5 parent: 2 - - uid: 32196 + - uid: 32074 components: - type: Transform pos: 69.5,29.5 parent: 2 - - uid: 32197 + - uid: 32075 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,33.5 parent: 2 - - uid: 32198 + - uid: 32076 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,33.5 parent: 2 - - uid: 32199 + - uid: 32077 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,32.5 parent: 2 - - uid: 32200 + - uid: 32078 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,31.5 parent: 2 - - uid: 32201 + - uid: 32079 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,33.5 parent: 2 - - uid: 32202 + - uid: 32080 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,33.5 parent: 2 - - uid: 32203 + - uid: 32081 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,33.5 parent: 2 - - uid: 32204 + - uid: 32082 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 32205 + - uid: 32083 components: - type: Transform pos: -14.5,-10.5 parent: 2 - - uid: 32206 + - uid: 32084 components: - type: Transform pos: 11.5,-11.5 parent: 2 - - uid: 32207 + - uid: 32085 components: - type: Transform pos: -10.5,-10.5 parent: 2 - - uid: 32208 + - uid: 32086 components: - type: Transform pos: -15.5,-10.5 parent: 2 - - uid: 32209 + - uid: 32087 components: - type: Transform pos: -7.5,-10.5 parent: 2 - - uid: 32210 + - uid: 32088 components: - type: Transform pos: 6.5,-10.5 parent: 2 - - uid: 32211 + - uid: 32089 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 32212 + - uid: 32090 components: - type: Transform pos: 10.5,-10.5 parent: 2 - - uid: 32213 + - uid: 32091 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 32214 + - uid: 32092 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-50.5 parent: 2 - - uid: 32215 + - uid: 32093 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-54.5 parent: 2 - - uid: 32216 + - uid: 32094 components: - type: Transform pos: -8.5,-10.5 parent: 2 - - uid: 32217 + - uid: 32095 components: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 32218 + - uid: 32096 components: - type: Transform pos: 14.5,-11.5 parent: 2 - - uid: 32219 + - uid: 32097 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 32220 + - uid: 32098 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 32221 + - uid: 32099 components: - type: Transform pos: 9.5,-10.5 parent: 2 - - uid: 32222 + - uid: 32100 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 32223 + - uid: 32101 components: - type: Transform pos: 12.5,-11.5 parent: 2 - - uid: 32224 + - uid: 32102 components: - type: Transform pos: 3.5,78.5 parent: 2 - - uid: 32225 + - uid: 32103 components: - type: Transform pos: 3.5,85.5 parent: 2 - - uid: 32226 + - uid: 32104 components: - type: Transform pos: 4.5,85.5 parent: 2 - - uid: 32227 + - uid: 32105 components: - type: Transform pos: 4.5,76.5 parent: 2 - - uid: 32228 + - uid: 32106 components: - type: Transform pos: 4.5,78.5 parent: 2 - - uid: 32229 + - uid: 32107 components: - type: Transform pos: 4.5,83.5 parent: 2 - - uid: 32230 + - uid: 32108 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-29.5 parent: 2 - - uid: 32231 + - uid: 32109 components: - type: Transform pos: 2.5,76.5 parent: 2 - - uid: 32232 + - uid: 32110 components: - type: Transform pos: 3.5,83.5 parent: 2 - - uid: 32233 + - uid: 32111 components: - type: Transform pos: 2.5,78.5 parent: 2 - - uid: 32234 + - uid: 32112 components: - type: Transform pos: 2.5,83.5 parent: 2 - - uid: 32235 + - uid: 32113 components: - type: Transform pos: 3.5,76.5 parent: 2 - - uid: 32236 + - uid: 32114 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,8.5 parent: 2 - - uid: 32237 + - uid: 32115 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-1.5 parent: 2 - - uid: 32238 + - uid: 32116 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,4.5 parent: 2 - - uid: 32239 + - uid: 32117 components: - type: Transform pos: 98.5,-0.5 parent: 2 - - uid: 32240 + - uid: 32118 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,37.5 parent: 2 - - uid: 32241 + - uid: 32119 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,38.5 parent: 2 - - uid: 32242 + - uid: 32120 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,39.5 parent: 2 - - uid: 32243 + - uid: 32121 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,36.5 parent: 2 - - uid: 32244 + - uid: 32122 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,25.5 parent: 2 - - uid: 32245 + - uid: 32123 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,25.5 parent: 2 - - uid: 32246 + - uid: 32124 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,39.5 parent: 2 - - uid: 32247 + - uid: 32125 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-0.5 parent: 2 - - uid: 32248 + - uid: 32126 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,26.5 parent: 2 - - uid: 32249 + - uid: 32127 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,39.5 parent: 2 - - uid: 32250 + - uid: 32128 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,26.5 parent: 2 - - uid: 32251 + - uid: 32129 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,25.5 parent: 2 - - uid: 32252 + - uid: 32130 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,25.5 parent: 2 - - uid: 32253 + - uid: 32131 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,50.5 parent: 2 - - uid: 32254 + - uid: 32132 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,27.5 parent: 2 - - uid: 32255 + - uid: 32133 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,29.5 parent: 2 - - uid: 32256 + - uid: 32134 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,31.5 parent: 2 - - uid: 32257 + - uid: 32135 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,19.5 parent: 2 - - uid: 32258 + - uid: 32136 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,27.5 parent: 2 - - uid: 32259 + - uid: 32137 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,19.5 parent: 2 - - uid: 32260 + - uid: 32138 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,19.5 parent: 2 - - uid: 32261 + - uid: 32139 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,19.5 parent: 2 - - uid: 32262 + - uid: 32140 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,30.5 parent: 2 - - uid: 32263 + - uid: 32141 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,8.5 parent: 2 - - uid: 32264 + - uid: 32142 components: - type: Transform pos: 92.5,-5.5 parent: 2 - - uid: 32265 + - uid: 32143 components: - type: Transform pos: 93.5,-5.5 parent: 2 - - uid: 32266 + - uid: 32144 components: - type: Transform pos: 94.5,-5.5 parent: 2 - - uid: 32267 + - uid: 32145 components: - type: Transform pos: 95.5,-5.5 parent: 2 - - uid: 32268 + - uid: 32146 components: - type: Transform pos: 96.5,-5.5 parent: 2 - - uid: 32269 + - uid: 32147 components: - type: Transform pos: 96.5,-4.5 parent: 2 - - uid: 32270 + - uid: 32148 components: - type: Transform pos: 97.5,-4.5 parent: 2 - - uid: 32271 + - uid: 32149 components: - type: Transform pos: 98.5,-4.5 parent: 2 - - uid: 32272 + - uid: 32150 components: - type: Transform rot: 1.5707963267948966 rad pos: 99.5,-4.5 parent: 2 - - uid: 32273 + - uid: 32151 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-3.5 parent: 2 - - uid: 32274 + - uid: 32152 components: - type: Transform rot: 1.5707963267948966 rad pos: 100.5,-0.5 parent: 2 - - uid: 32275 + - uid: 32153 components: - type: Transform rot: 1.5707963267948966 rad pos: 99.5,-0.5 parent: 2 - - uid: 32276 + - uid: 32154 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 32277 + - uid: 32155 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,5.5 parent: 2 - - uid: 32278 + - uid: 32156 components: - type: Transform pos: 94.5,8.5 parent: 2 - - uid: 32279 + - uid: 32157 components: - type: Transform pos: 95.5,8.5 parent: 2 - - uid: 32280 + - uid: 32158 components: - type: Transform pos: 91.5,-5.5 parent: 2 - - uid: 32281 + - uid: 32159 components: - type: Transform pos: 83.5,3.5 parent: 2 - - uid: 32282 + - uid: 32160 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,7.5 parent: 2 - - uid: 32283 + - uid: 32161 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 32284 + - uid: 32162 components: - type: Transform pos: 29.5,20.5 parent: 2 - - uid: 32285 + - uid: 32163 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,0.5 parent: 2 - - uid: 32286 + - uid: 32164 components: - type: Transform pos: 76.5,-4.5 parent: 2 - - uid: 32287 + - uid: 32165 components: - type: Transform pos: -77.5,19.5 parent: 2 - - uid: 32288 + - uid: 32166 components: - type: Transform pos: -77.5,20.5 parent: 2 - - uid: 32289 + - uid: 32167 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,43.5 parent: 2 - - uid: 32290 + - uid: 32168 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,47.5 parent: 2 - - uid: 32291 + - uid: 32169 components: - type: Transform pos: -77.5,22.5 parent: 2 - - uid: 32292 + - uid: 32170 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,35.5 parent: 2 - - uid: 32293 + - uid: 32171 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,32.5 parent: 2 - - uid: 32294 + - uid: 32172 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,40.5 parent: 2 - - uid: 32295 + - uid: 32173 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,27.5 parent: 2 - - uid: 32296 + - uid: 32174 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,33.5 parent: 2 - - uid: 32297 + - uid: 32175 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,35.5 parent: 2 - - uid: 32298 + - uid: 32176 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,42.5 parent: 2 - - uid: 32299 + - uid: 32177 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,35.5 parent: 2 - - uid: 32300 + - uid: 32178 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,35.5 parent: 2 - - uid: 32301 + - uid: 32179 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,41.5 parent: 2 - - uid: 32302 + - uid: 32180 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,34.5 parent: 2 - - uid: 32303 + - uid: 32181 components: - type: Transform pos: 78.5,-5.5 parent: 2 - - uid: 32304 + - uid: 32182 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,47.5 parent: 2 - - uid: 32305 + - uid: 32183 components: - type: Transform pos: 94.5,7.5 parent: 2 - - uid: 32306 + - uid: 32184 components: - type: Transform pos: -32.5,76.5 parent: 2 - - uid: 32307 + - uid: 32185 components: - type: Transform pos: -33.5,78.5 parent: 2 - - uid: 32308 + - uid: 32186 components: - type: Transform pos: -33.5,83.5 parent: 2 - - uid: 32309 + - uid: 32187 components: - type: Transform pos: -31.5,78.5 parent: 2 - - uid: 32310 + - uid: 32188 components: - type: Transform pos: -7.5,70.5 parent: 2 - - uid: 32311 + - uid: 32189 components: - type: Transform pos: -32.5,83.5 parent: 2 - - uid: 32312 + - uid: 32190 components: - type: Transform pos: 26.5,46.5 parent: 2 - - uid: 32313 + - uid: 32191 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,83.5 parent: 2 - - uid: 32314 + - uid: 32192 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,78.5 parent: 2 - - uid: 32315 + - uid: 32193 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,78.5 parent: 2 - - uid: 32316 + - uid: 32194 components: - type: Transform pos: -27.5,78.5 parent: 2 - - uid: 32317 + - uid: 32195 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-2.5 parent: 2 - - uid: 32318 + - uid: 32196 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,85.5 parent: 2 - - uid: 32319 + - uid: 32197 components: - type: Transform pos: 26.5,47.5 parent: 2 - - uid: 32320 + - uid: 32198 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,76.5 parent: 2 - - uid: 32321 + - uid: 32199 components: - type: Transform pos: -27.5,76.5 parent: 2 - - uid: 32322 + - uid: 32200 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,39.5 parent: 2 - - uid: 32323 + - uid: 32201 components: - type: Transform pos: -26.5,85.5 parent: 2 - - uid: 32324 + - uid: 32202 components: - type: Transform pos: -31.5,83.5 parent: 2 - - uid: 32325 + - uid: 32203 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,83.5 parent: 2 - - uid: 32326 + - uid: 32204 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,27.5 parent: 2 - - uid: 32327 + - uid: 32205 components: - type: Transform pos: -27.5,85.5 parent: 2 - - uid: 32328 + - uid: 32206 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,85.5 parent: 2 - - uid: 32329 + - uid: 32207 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,47.5 parent: 2 - - uid: 32330 + - uid: 32208 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,39.5 parent: 2 - - uid: 32331 + - uid: 32209 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,51.5 parent: 2 - - uid: 32332 + - uid: 32210 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,76.5 parent: 2 - - uid: 32333 + - uid: 32211 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,76.5 parent: 2 - - uid: 32334 + - uid: 32212 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,78.5 parent: 2 - - uid: 32335 + - uid: 32213 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,83.5 parent: 2 - - uid: 32336 + - uid: 32214 components: - type: Transform pos: 71.5,-14.5 parent: 2 - - uid: 32337 + - uid: 32215 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-4.5 parent: 2 - - uid: 32338 + - uid: 32216 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-0.5 parent: 2 - - uid: 32339 + - uid: 32217 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-1.5 parent: 2 - - uid: 32340 + - uid: 32218 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-0.5 parent: 2 - - uid: 32341 + - uid: 32219 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-4.5 parent: 2 - - uid: 32342 + - uid: 32220 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-3.5 parent: 2 - - uid: 32343 + - uid: 32221 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-3.5 parent: 2 - - uid: 32344 + - uid: 32222 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-2.5 parent: 2 - - uid: 32345 + - uid: 32223 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-2.5 parent: 2 - - uid: 32346 + - uid: 32224 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-1.5 parent: 2 - - uid: 32347 + - uid: 32225 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-4.5 parent: 2 - - uid: 32348 + - uid: 32226 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,6.5 parent: 2 - - uid: 32349 + - uid: 32227 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,7.5 parent: 2 - - uid: 32350 + - uid: 32228 components: - type: Transform pos: 77.5,-4.5 parent: 2 - - uid: 32351 + - uid: 32229 components: - type: Transform pos: 86.5,-5.5 parent: 2 - - uid: 32352 + - uid: 32230 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,3.5 parent: 2 - - uid: 32353 + - uid: 32231 components: - type: Transform rot: 1.5707963267948966 rad pos: 100.5,-4.5 parent: 2 - - uid: 32354 + - uid: 32232 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,5.5 parent: 2 - - uid: 32355 + - uid: 32233 components: - type: Transform pos: -33.5,76.5 parent: 2 - - uid: 32356 + - uid: 32234 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,43.5 parent: 2 - - uid: 32357 + - uid: 32235 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,31.5 parent: 2 - - uid: 32358 + - uid: 32236 components: - type: Transform pos: 29.5,23.5 parent: 2 - - uid: 32359 + - uid: 32237 components: - type: Transform pos: 28.5,23.5 parent: 2 - - uid: 32360 + - uid: 32238 components: - type: Transform pos: 29.5,22.5 parent: 2 - - uid: 32361 + - uid: 32239 components: - type: Transform pos: 29.5,21.5 parent: 2 - - uid: 32362 + - uid: 32240 components: - type: Transform pos: -72.5,-42.5 parent: 2 - - uid: 32363 + - uid: 32241 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,43.5 parent: 2 - - uid: 32364 + - uid: 32242 components: - type: Transform pos: 33.5,13.5 parent: 2 - - uid: 32365 + - uid: 32243 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,85.5 parent: 2 - - uid: 32366 + - uid: 32244 components: - type: Transform pos: -66.5,-48.5 parent: 2 - - uid: 32367 + - uid: 32245 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 32368 + - uid: 32246 components: - type: Transform pos: 27.5,23.5 parent: 2 - - uid: 32369 + - uid: 32247 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,8.5 parent: 2 - - uid: 32370 + - uid: 32248 components: - type: Transform pos: 27.5,47.5 parent: 2 - - uid: 32371 + - uid: 32249 components: - type: Transform pos: 87.5,3.5 parent: 2 - - uid: 32372 + - uid: 32250 components: - type: Transform pos: -27.5,83.5 parent: 2 - - uid: 32373 + - uid: 32251 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,49.5 parent: 2 - - uid: 32374 + - uid: 32252 components: - type: Transform pos: -26.5,76.5 parent: 2 - - uid: 32375 + - uid: 32253 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,78.5 parent: 2 - - uid: 32376 + - uid: 32254 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,31.5 parent: 2 - - uid: 32377 + - uid: 32255 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,47.5 parent: 2 - - uid: 32378 + - uid: 32256 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,76.5 parent: 2 - - uid: 32379 + - uid: 32257 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,78.5 parent: 2 - - uid: 32380 + - uid: 32258 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,51.5 parent: 2 - - uid: 32381 + - uid: 32259 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,27.5 parent: 2 - - uid: 32382 + - uid: 32260 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,83.5 parent: 2 - - uid: 32383 + - uid: 32261 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,76.5 parent: 2 - - uid: 32384 + - uid: 32262 components: - type: Transform pos: 27.5,53.5 parent: 2 - - uid: 32385 + - uid: 32263 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,20.5 parent: 2 - - uid: 32386 + - uid: 32264 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,43.5 parent: 2 - - uid: 32387 + - uid: 32265 components: - type: Transform pos: 26.5,53.5 parent: 2 - - uid: 32388 + - uid: 32266 components: - type: Transform pos: -15.5,70.5 parent: 2 - - uid: 32389 + - uid: 32267 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,27.5 parent: 2 - - uid: 32390 + - uid: 32268 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,85.5 parent: 2 - - uid: 32391 + - uid: 32269 components: - type: Transform pos: -25.5,83.5 parent: 2 - - uid: 32392 + - uid: 32270 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,85.5 parent: 2 - - uid: 32393 + - uid: 32271 components: - type: Transform pos: -31.5,76.5 parent: 2 - - uid: 32394 + - uid: 32272 components: - type: Transform pos: -25.5,85.5 parent: 2 - - uid: 32395 + - uid: 32273 components: - type: Transform pos: 26.5,54.5 parent: 2 - - uid: 32396 + - uid: 32274 components: - type: Transform pos: -32.5,85.5 parent: 2 - - uid: 32397 + - uid: 32275 components: - type: Transform pos: -31.5,85.5 parent: 2 - - uid: 32398 + - uid: 32276 components: - type: Transform pos: -33.5,85.5 parent: 2 - - uid: 32399 + - uid: 32277 components: - type: Transform pos: -26.5,83.5 parent: 2 - - uid: 32400 + - uid: 32278 components: - type: Transform pos: -25.5,78.5 parent: 2 - - uid: 32401 + - uid: 32279 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,78.5 parent: 2 - - uid: 32402 + - uid: 32280 components: - type: Transform pos: -25.5,76.5 parent: 2 - - uid: 32403 + - uid: 32281 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-4.5 parent: 2 - - uid: 32404 + - uid: 32282 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-3.5 parent: 2 - - uid: 32405 + - uid: 32283 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-2.5 parent: 2 - - uid: 32406 + - uid: 32284 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-1.5 parent: 2 - - uid: 32407 + - uid: 32285 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,47.5 parent: 2 - - uid: 32408 + - uid: 32286 components: - type: Transform pos: -43.5,-3.5 parent: 2 - - uid: 32409 + - uid: 32287 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-0.5 parent: 2 - - uid: 32410 + - uid: 32288 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,35.5 parent: 2 - - uid: 32411 + - uid: 32289 components: - type: Transform pos: -67.5,57.5 parent: 2 - - uid: 32412 + - uid: 32290 components: - type: Transform pos: -68.5,57.5 parent: 2 - - uid: 32413 + - uid: 32291 components: - type: Transform pos: -43.5,-2.5 parent: 2 - - uid: 32414 + - uid: 32292 components: - type: Transform pos: -63.5,60.5 parent: 2 - - uid: 32415 + - uid: 32293 components: - type: Transform pos: -63.5,-19.5 parent: 2 - - uid: 32416 + - uid: 32294 components: - type: Transform pos: -66.5,-19.5 parent: 2 - - uid: 32417 + - uid: 32295 components: - type: Transform pos: -71.5,53.5 parent: 2 - - uid: 32418 + - uid: 32296 components: - type: Transform pos: -72.5,53.5 parent: 2 - - uid: 32419 + - uid: 32297 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-34.5 parent: 2 - - uid: 32420 + - uid: 32298 components: - type: Transform pos: -70.5,59.5 parent: 2 - - uid: 32421 + - uid: 32299 components: - type: Transform pos: -69.5,59.5 parent: 2 - - uid: 32422 + - uid: 32300 components: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 32423 + - uid: 32301 components: - type: Transform pos: -72.5,57.5 parent: 2 - - uid: 32424 + - uid: 32302 components: - type: Transform pos: -72.5,59.5 parent: 2 - - uid: 32425 + - uid: 32303 components: - type: Transform pos: -72.5,54.5 parent: 2 - - uid: 32426 + - uid: 32304 components: - type: Transform pos: -69.5,53.5 parent: 2 - - uid: 32427 + - uid: 32305 components: - type: Transform pos: -72.5,55.5 parent: 2 - - uid: 32428 + - uid: 32306 components: - type: Transform pos: -71.5,59.5 parent: 2 - - uid: 32429 + - uid: 32307 components: - type: Transform pos: 96.5,8.5 parent: 2 - - uid: 32430 + - uid: 32308 components: - type: Transform pos: -72.5,56.5 parent: 2 - - uid: 32431 + - uid: 32309 components: - type: Transform pos: -72.5,58.5 parent: 2 - - uid: 32432 + - uid: 32310 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-3.5 parent: 2 - - uid: 32433 + - uid: 32311 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,56.5 parent: 2 - - uid: 32434 + - uid: 32312 components: - type: Transform pos: -70.5,53.5 parent: 2 - - uid: 32435 + - uid: 32313 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,15.5 parent: 2 - - uid: 32436 + - uid: 32314 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-23.5 parent: 2 - - uid: 32437 + - uid: 32315 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-60.5 parent: 2 - - uid: 32438 + - uid: 32316 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-32.5 parent: 2 - - uid: 32439 + - uid: 32317 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-33.5 parent: 2 - - uid: 32440 + - uid: 32318 components: - type: Transform pos: -62.5,63.5 parent: 2 - - uid: 32441 + - uid: 32319 components: - type: Transform pos: -63.5,58.5 parent: 2 - - uid: 32442 + - uid: 32320 components: - type: Transform pos: -66.5,63.5 parent: 2 - - uid: 32443 + - uid: 32321 components: - type: Transform pos: -63.5,62.5 parent: 2 - - uid: 32444 + - uid: 32322 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-38.5 parent: 2 - - uid: 32445 + - uid: 32323 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-39.5 parent: 2 - - uid: 32446 + - uid: 32324 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 - - uid: 32447 + - uid: 32325 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-39.5 parent: 2 - - uid: 32448 + - uid: 32326 components: - type: Transform pos: -65.5,63.5 parent: 2 - - uid: 32449 + - uid: 32327 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 32450 + - uid: 32328 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-39.5 parent: 2 - - uid: 32451 + - uid: 32329 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-80.5 parent: 2 - - uid: 32452 + - uid: 32330 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-33.5 parent: 2 - - uid: 32453 + - uid: 32331 components: - type: Transform pos: -64.5,57.5 parent: 2 - - uid: 32454 + - uid: 32332 components: - type: Transform pos: -63.5,57.5 parent: 2 - - uid: 32455 + - uid: 32333 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,11.5 parent: 2 - - uid: 32456 + - uid: 32334 components: - type: Transform pos: -63.5,63.5 parent: 2 - - uid: 32457 + - uid: 32335 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-80.5 parent: 2 - - uid: 32458 + - uid: 32336 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 - - uid: 32459 + - uid: 32337 components: - type: Transform pos: -68.5,60.5 parent: 2 - - uid: 32460 + - uid: 32338 components: - type: Transform pos: -64.5,63.5 parent: 2 - - uid: 32461 + - uid: 32339 components: - type: Transform pos: -65.5,-19.5 parent: 2 - - uid: 32462 + - uid: 32340 components: - type: Transform pos: -62.5,62.5 parent: 2 - - uid: 32463 + - uid: 32341 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-10.5 parent: 2 - - uid: 32464 + - uid: 32342 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,10.5 parent: 2 - - uid: 32465 + - uid: 32343 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 2 - - uid: 32466 + - uid: 32344 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,70.5 parent: 2 - - uid: 32467 + - uid: 32345 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,70.5 parent: 2 - - uid: 32468 + - uid: 32346 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-6.5 parent: 2 - - uid: 32469 + - uid: 32347 components: - type: Transform pos: -13.5,71.5 parent: 2 - - uid: 32470 + - uid: 32348 components: - type: Transform pos: 11.5,83.5 parent: 2 - - uid: 32471 + - uid: 32349 components: - type: Transform pos: 13.5,85.5 parent: 2 - - uid: 32472 + - uid: 32350 components: - type: Transform pos: -31.5,71.5 parent: 2 - - uid: 32473 + - uid: 32351 components: - type: Transform pos: -16.5,70.5 parent: 2 - - uid: 32474 + - uid: 32352 components: - type: Transform pos: 13.5,83.5 parent: 2 - - uid: 32475 + - uid: 32353 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-67.5 parent: 2 - - uid: 32476 + - uid: 32354 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-52.5 parent: 2 - - uid: 32477 + - uid: 32355 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,26.5 parent: 2 - - uid: 32478 + - uid: 32356 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,22.5 parent: 2 - - uid: 32479 + - uid: 32357 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,26.5 parent: 2 - - uid: 32480 + - uid: 32358 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,26.5 parent: 2 - - uid: 32481 + - uid: 32359 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,25.5 parent: 2 - - uid: 32482 + - uid: 32360 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-13.5 parent: 2 - - uid: 32483 + - uid: 32361 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-12.5 parent: 2 - - uid: 32484 + - uid: 32362 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-0.5 parent: 2 - - uid: 32485 + - uid: 32363 components: - type: Transform pos: 64.5,-16.5 parent: 2 - - uid: 32486 + - uid: 32364 components: - type: Transform pos: 64.5,-12.5 parent: 2 - - uid: 32487 + - uid: 32365 components: - type: Transform pos: 52.5,2.5 parent: 2 - - uid: 32488 + - uid: 32366 components: - type: Transform pos: -9.5,87.5 parent: 2 - - uid: 32489 + - uid: 32367 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,27.5 parent: 2 - - uid: 32490 + - uid: 32368 components: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 32491 + - uid: 32369 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,27.5 parent: 2 - - uid: 32492 + - uid: 32370 components: - type: Transform pos: -61.5,63.5 parent: 2 - - uid: 32493 + - uid: 32371 components: - type: Transform pos: -61.5,62.5 parent: 2 - - uid: 32494 + - uid: 32372 components: - type: Transform pos: 71.5,3.5 parent: 2 - - uid: 32495 + - uid: 32373 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,61.5 parent: 2 - - uid: 32496 + - uid: 32374 components: - type: Transform pos: 64.5,2.5 parent: 2 - - uid: 32497 + - uid: 32375 components: - type: Transform pos: -9.5,71.5 parent: 2 - - uid: 32498 + - uid: 32376 components: - type: Transform pos: 2.5,-6.5 parent: 2 - - uid: 32500 + - uid: 32377 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,62.5 parent: 2 - - uid: 32501 + - uid: 32378 components: - type: Transform pos: -13.5,99.5 parent: 2 - - uid: 32502 + - uid: 32379 components: - type: Transform pos: -67.5,-18.5 parent: 2 - - uid: 32503 + - uid: 32380 components: - type: Transform pos: 79.5,20.5 parent: 2 - - uid: 32504 + - uid: 32381 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,27.5 parent: 2 - - uid: 32505 + - uid: 32382 components: - type: Transform pos: 71.5,8.5 parent: 2 - - uid: 32506 + - uid: 32383 components: - type: Transform pos: -74.5,-4.5 parent: 2 - - uid: 32507 + - uid: 32384 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-9.5 parent: 2 - - uid: 32508 + - uid: 32385 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,6.5 parent: 2 - - uid: 32509 + - uid: 32386 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,15.5 parent: 2 - - uid: 32510 + - uid: 32387 components: - type: Transform pos: 88.5,9.5 parent: 2 - - uid: 32511 + - uid: 32388 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,3.5 parent: 2 - - uid: 32512 + - uid: 32389 components: - type: Transform pos: 71.5,-5.5 parent: 2 - - uid: 32513 + - uid: 32390 components: - type: Transform pos: 67.5,10.5 parent: 2 - - uid: 32514 + - uid: 32391 components: - type: Transform pos: 37.5,31.5 parent: 2 - - uid: 32515 + - uid: 32392 components: - type: Transform pos: -56.5,65.5 parent: 2 - - uid: 32516 + - uid: 32393 components: - type: Transform pos: -21.5,-52.5 parent: 2 - - uid: 32517 + - uid: 32394 components: - type: Transform pos: -57.5,65.5 parent: 2 - - uid: 32518 + - uid: 32395 components: - type: Transform pos: 12.5,84.5 parent: 2 - - uid: 32519 + - uid: 32396 components: - type: Transform pos: -103.5,-5.5 parent: 2 - - uid: 32520 + - uid: 32397 components: - type: Transform pos: -63.5,59.5 parent: 2 - - uid: 32521 + - uid: 32398 components: - type: Transform pos: -9.5,97.5 parent: 2 - - uid: 32522 + - uid: 32399 components: - type: Transform pos: 67.5,-3.5 parent: 2 - - uid: 32523 + - uid: 32400 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-68.5 parent: 2 - - uid: 32524 + - uid: 32401 components: - type: Transform pos: 49.5,6.5 parent: 2 - - uid: 32525 + - uid: 32402 components: - type: Transform pos: 87.5,9.5 parent: 2 - - uid: 32526 + - uid: 32403 components: - type: Transform pos: 56.5,9.5 parent: 2 - - uid: 32527 + - uid: 32404 components: - type: Transform pos: 61.5,11.5 parent: 2 - - uid: 32528 + - uid: 32405 components: - type: Transform pos: 44.5,25.5 parent: 2 - - uid: 32529 + - uid: 32406 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,45.5 parent: 2 - - uid: 32530 + - uid: 32407 components: - type: Transform pos: -45.5,3.5 parent: 2 - - uid: 32531 + - uid: 32408 components: - type: Transform pos: -75.5,-36.5 parent: 2 - - uid: 32532 + - uid: 32409 components: - type: Transform pos: -75.5,-34.5 parent: 2 - - uid: 32533 + - uid: 32410 components: - type: Transform pos: -27.5,99.5 parent: 2 - - uid: 32535 + - uid: 32411 components: - type: Transform pos: -75.5,-35.5 parent: 2 - - uid: 32536 + - uid: 32412 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,62.5 parent: 2 - - uid: 32537 + - uid: 32413 components: - type: Transform pos: -61.5,65.5 parent: 2 - - uid: 32538 + - uid: 32414 components: - type: Transform pos: 67.5,17.5 parent: 2 - - uid: 32539 + - uid: 32415 components: - type: Transform pos: -44.5,3.5 parent: 2 - - uid: 32540 + - uid: 32416 components: - type: Transform pos: 59.5,2.5 parent: 2 - - uid: 32541 + - uid: 32417 components: - type: Transform pos: -60.5,-49.5 parent: 2 - - uid: 32542 + - uid: 32418 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,62.5 parent: 2 - - uid: 32543 + - uid: 32419 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-78.5 parent: 2 - - uid: 32544 + - uid: 32420 components: - type: Transform pos: -73.5,-36.5 parent: 2 - - uid: 32545 + - uid: 32421 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-8.5 parent: 2 - - uid: 32546 + - uid: 32422 components: - type: Transform pos: 78.5,-0.5 parent: 2 - - uid: 32547 + - uid: 32423 components: - type: Transform pos: -9.5,98.5 parent: 2 - - uid: 32548 + - uid: 32424 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-41.5 parent: 2 - - uid: 32549 + - uid: 32425 components: - type: Transform pos: -59.5,21.5 parent: 2 - - uid: 32550 + - uid: 32426 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-79.5 parent: 2 - - uid: 32551 + - uid: 32427 components: - type: Transform pos: 60.5,10.5 parent: 2 - - uid: 32552 + - uid: 32428 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,15.5 parent: 2 - - uid: 32553 + - uid: 32429 components: - type: Transform pos: -19.5,-59.5 parent: 2 - - uid: 32554 + - uid: 32430 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,44.5 parent: 2 - - uid: 32555 + - uid: 32431 components: - type: Transform pos: 79.5,21.5 parent: 2 - - uid: 32556 + - uid: 32432 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,27.5 parent: 2 - - uid: 32557 + - uid: 32433 components: - type: Transform pos: 68.5,20.5 parent: 2 - - uid: 32558 + - uid: 32434 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-0.5 parent: 2 - - uid: 32559 + - uid: 32435 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-0.5 parent: 2 - - uid: 32560 + - uid: 32436 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-0.5 parent: 2 - - uid: 32561 + - uid: 32437 components: - type: Transform pos: -23.5,-59.5 parent: 2 - - uid: 32562 + - uid: 32438 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-53.5 parent: 2 - - uid: 32563 + - uid: 32439 components: - type: Transform pos: -66.5,-18.5 parent: 2 - - uid: 32564 + - uid: 32440 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-12.5 parent: 2 - - uid: 32565 + - uid: 32441 components: - type: Transform pos: -9.5,99.5 parent: 2 - - uid: 32566 + - uid: 32442 components: - type: Transform pos: 67.5,19.5 parent: 2 - - uid: 32567 + - uid: 32443 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,60.5 parent: 2 - - uid: 32568 + - uid: 32444 components: - type: Transform pos: -74.5,-36.5 parent: 2 - - uid: 32569 + - uid: 32445 components: - type: Transform pos: -75.5,-33.5 parent: 2 - - uid: 32570 + - uid: 32446 components: - type: Transform pos: 48.5,26.5 parent: 2 - - uid: 32571 + - uid: 32447 components: - type: Transform pos: -41.5,-66.5 parent: 2 - - uid: 32572 + - uid: 32448 components: - type: Transform pos: -41.5,-64.5 parent: 2 - - uid: 32573 + - uid: 32449 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,75.5 parent: 2 - - uid: 32574 + - uid: 32450 components: - type: Transform pos: 54.5,2.5 parent: 2 - - uid: 32575 + - uid: 32451 components: - type: Transform pos: 67.5,18.5 parent: 2 - - uid: 32576 + - uid: 32452 components: - type: Transform pos: 58.5,14.5 parent: 2 - - uid: 32577 + - uid: 32453 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,65.5 parent: 2 - - uid: 32578 + - uid: 32454 components: - type: Transform pos: 79.5,22.5 parent: 2 - - uid: 32579 + - uid: 32455 components: - type: Transform pos: 75.5,7.5 parent: 2 - - uid: 32580 + - uid: 32456 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,4.5 parent: 2 - - uid: 32581 + - uid: 32457 components: - type: Transform pos: -13.5,98.5 parent: 2 - - uid: 32582 + - uid: 32458 components: - type: Transform pos: 59.5,14.5 parent: 2 - - uid: 32583 + - uid: 32459 components: - type: Transform pos: 62.5,14.5 parent: 2 - - uid: 32584 + - uid: 32460 components: - type: Transform pos: 67.5,-5.5 parent: 2 - - uid: 32585 + - uid: 32461 components: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 32586 + - uid: 32462 components: - type: Transform pos: 61.5,14.5 parent: 2 - - uid: 32587 + - uid: 32463 components: - type: Transform pos: 78.5,-2.5 parent: 2 - - uid: 32588 + - uid: 32464 components: - type: Transform pos: 58.5,10.5 parent: 2 - - uid: 32589 + - uid: 32465 components: - type: Transform pos: 54.5,-48.5 parent: 2 - - uid: 32590 + - uid: 32466 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,29.5 parent: 2 - - uid: 32591 + - uid: 32467 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,66.5 parent: 2 - - uid: 32592 + - uid: 32468 components: - type: Transform pos: -31.5,99.5 parent: 2 - - uid: 32593 + - uid: 32469 components: - type: Transform pos: 30.5,13.5 parent: 2 - - uid: 32594 + - uid: 32470 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,21.5 parent: 2 - - uid: 32595 + - uid: 32471 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,3.5 parent: 2 - - uid: 32596 + - uid: 32472 components: - type: Transform pos: -80.5,-10.5 parent: 2 - - uid: 32597 + - uid: 32473 components: - type: Transform pos: 67.5,-1.5 parent: 2 - - uid: 32598 + - uid: 32474 components: - type: Transform pos: 71.5,9.5 parent: 2 - - uid: 32599 + - uid: 32475 components: - type: Transform pos: -82.5,16.5 parent: 2 - - uid: 32600 + - uid: 32476 components: - type: Transform pos: 73.5,-5.5 parent: 2 - - uid: 32601 + - uid: 32477 components: - type: Transform pos: 67.5,15.5 parent: 2 - - uid: 32602 + - uid: 32478 components: - type: Transform pos: -27.5,102.5 parent: 2 - - uid: 32603 + - uid: 32479 components: - type: Transform pos: 70.5,17.5 parent: 2 - - uid: 32604 + - uid: 32480 components: - type: Transform pos: 64.5,14.5 parent: 2 - - uid: 32605 + - uid: 32481 components: - type: Transform pos: -13.5,97.5 parent: 2 - - uid: 32606 + - uid: 32482 components: - type: Transform pos: 56.5,2.5 parent: 2 - - uid: 32607 + - uid: 32483 components: - type: Transform pos: -31.5,105.5 parent: 2 - - uid: 32608 + - uid: 32484 components: - type: Transform pos: 66.5,10.5 parent: 2 - - uid: 32609 + - uid: 32485 components: - type: Transform pos: -78.5,-14.5 parent: 2 - - uid: 32610 + - uid: 32486 components: - type: Transform pos: -27.5,100.5 parent: 2 - - uid: 32611 + - uid: 32487 components: - type: Transform pos: 71.5,10.5 parent: 2 - - uid: 32612 + - uid: 32488 components: - type: Transform pos: 75.5,19.5 parent: 2 - - uid: 32613 + - uid: 32489 components: - type: Transform pos: 71.5,2.5 parent: 2 - - uid: 32614 + - uid: 32490 components: - type: Transform pos: 15.5,-57.5 parent: 2 - - uid: 32615 + - uid: 32491 components: - type: Transform pos: -9.5,93.5 parent: 2 - - uid: 32616 + - uid: 32492 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-4.5 parent: 2 - - uid: 32617 + - uid: 32493 components: - type: Transform pos: 60.5,20.5 parent: 2 - - uid: 32618 + - uid: 32494 components: - type: Transform pos: 56.5,10.5 parent: 2 - - uid: 32619 + - uid: 32495 components: - type: Transform pos: 66.5,-5.5 parent: 2 - - uid: 32620 + - uid: 32496 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 32621 + - uid: 32497 components: - type: Transform pos: -13.5,100.5 parent: 2 - - uid: 32622 + - uid: 32498 components: - type: Transform pos: 70.5,-5.5 parent: 2 - - uid: 32623 + - uid: 32499 components: - type: Transform pos: 28.5,25.5 parent: 2 - - uid: 32624 + - uid: 32500 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-42.5 parent: 2 - - uid: 32625 + - uid: 32501 components: - type: Transform pos: 15.5,-58.5 parent: 2 - - uid: 32626 + - uid: 32502 components: - type: Transform pos: 67.5,13.5 parent: 2 - - uid: 32627 + - uid: 32503 components: - type: Transform pos: -82.5,12.5 parent: 2 - - uid: 32628 + - uid: 32504 components: - type: Transform pos: 55.5,-48.5 parent: 2 - - uid: 32629 + - uid: 32505 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 - - uid: 32630 + - uid: 32506 components: - type: Transform pos: 78.5,20.5 parent: 2 - - uid: 32631 + - uid: 32507 components: - type: Transform pos: 75.5,8.5 parent: 2 - - uid: 32632 + - uid: 32508 components: - type: Transform pos: 72.5,-5.5 parent: 2 - - uid: 32633 + - uid: 32509 components: - type: Transform pos: 70.5,2.5 parent: 2 - - uid: 32634 + - uid: 32510 components: - type: Transform pos: 64.5,-5.5 parent: 2 - - uid: 32635 + - uid: 32511 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,14.5 parent: 2 - - uid: 32636 + - uid: 32512 components: - type: Transform pos: -81.5,16.5 parent: 2 - - uid: 32637 + - uid: 32513 components: - type: Transform pos: -81.5,12.5 parent: 2 - - uid: 32638 + - uid: 32514 components: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 32639 + - uid: 32515 components: - type: Transform pos: 75.5,16.5 parent: 2 - - uid: 32640 + - uid: 32516 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 32641 + - uid: 32517 components: - type: Transform pos: 14.5,-62.5 parent: 2 - - uid: 32643 + - uid: 32518 components: - type: Transform pos: 69.5,2.5 parent: 2 - - uid: 32644 + - uid: 32519 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-79.5 parent: 2 - - uid: 32645 + - uid: 32520 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-79.5 parent: 2 - - uid: 32646 + - uid: 32521 components: - type: Transform pos: 75.5,12.5 parent: 2 - - uid: 32647 + - uid: 32522 components: - type: Transform pos: 61.5,20.5 parent: 2 - - uid: 32648 + - uid: 32523 components: - type: Transform pos: -72.5,-36.5 parent: 2 - - uid: 32649 + - uid: 32524 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,30.5 parent: 2 - - uid: 32650 + - uid: 32525 components: - type: Transform pos: -80.5,-14.5 parent: 2 - - uid: 32651 + - uid: 32526 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,27.5 parent: 2 - - uid: 32652 + - uid: 32527 components: - type: Transform pos: 48.5,27.5 parent: 2 - - uid: 32653 + - uid: 32528 components: - type: Transform pos: -9.5,96.5 parent: 2 - - uid: 32654 + - uid: 32529 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,31.5 parent: 2 - - uid: 32655 + - uid: 32530 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,70.5 parent: 2 - - uid: 32656 + - uid: 32531 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,27.5 parent: 2 - - uid: 32657 + - uid: 32532 components: - type: Transform pos: -79.5,-14.5 parent: 2 - - uid: 32658 + - uid: 32533 components: - type: Transform pos: 70.5,20.5 parent: 2 - - uid: 32659 + - uid: 32534 components: - type: Transform pos: 69.5,-5.5 parent: 2 - - uid: 32660 + - uid: 32535 components: - type: Transform pos: -25.5,-59.5 parent: 2 - - uid: 32661 + - uid: 32536 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,31.5 parent: 2 - - uid: 32662 + - uid: 32537 components: - type: Transform pos: -45.5,7.5 parent: 2 - - uid: 32663 + - uid: 32538 components: - type: Transform pos: -9.5,-53.5 parent: 2 - - uid: 32664 + - uid: 32539 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-36.5 parent: 2 - - uid: 32665 + - uid: 32540 components: - type: Transform pos: -75.5,-4.5 parent: 2 - - uid: 32666 + - uid: 32541 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-63.5 parent: 2 - - uid: 32667 + - uid: 32542 components: - type: Transform pos: 14.5,80.5 parent: 2 - - uid: 32668 + - uid: 32543 components: - type: Transform pos: -27.5,70.5 parent: 2 - - uid: 32669 + - uid: 32544 components: - type: Transform pos: 53.5,2.5 parent: 2 - - uid: 32670 + - uid: 32545 components: - type: Transform pos: 32.5,39.5 parent: 2 - - uid: 32671 + - uid: 32546 components: - type: Transform pos: 72.5,-1.5 parent: 2 - - uid: 32672 + - uid: 32547 components: - type: Transform pos: 66.5,-1.5 parent: 2 - - uid: 32673 + - uid: 32548 components: - type: Transform pos: 38.5,16.5 parent: 2 - - uid: 32674 + - uid: 32549 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-42.5 parent: 2 - - uid: 32675 + - uid: 32550 components: - type: Transform pos: 50.5,-5.5 parent: 2 - - uid: 32676 + - uid: 32551 components: - type: Transform pos: 61.5,2.5 parent: 2 - - uid: 32677 + - uid: 32552 components: - type: Transform pos: 63.5,10.5 parent: 2 - - uid: 32678 + - uid: 32553 components: - type: Transform pos: 62.5,20.5 parent: 2 - - uid: 32679 + - uid: 32554 components: - type: Transform pos: 63.5,20.5 parent: 2 - - uid: 32680 + - uid: 32555 components: - type: Transform pos: 63.5,2.5 parent: 2 - - uid: 32681 + - uid: 32556 components: - type: Transform pos: 64.5,20.5 parent: 2 - - uid: 32682 + - uid: 32557 components: - type: Transform pos: 65.5,20.5 parent: 2 - - uid: 32683 + - uid: 32558 components: - type: Transform pos: 66.5,20.5 parent: 2 - - uid: 32684 + - uid: 32559 components: - type: Transform pos: 67.5,20.5 parent: 2 - - uid: 32685 + - uid: 32560 components: - type: Transform pos: 69.5,20.5 parent: 2 - - uid: 32686 + - uid: 32561 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,2.5 parent: 2 - - uid: 32687 + - uid: 32562 components: - type: Transform pos: -36.5,-53.5 parent: 2 - - uid: 32688 + - uid: 32563 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-47.5 parent: 2 - - uid: 32689 + - uid: 32564 components: - type: Transform pos: 82.5,-24.5 parent: 2 - - uid: 32690 + - uid: 32565 components: - type: Transform pos: 56.5,6.5 parent: 2 - - uid: 32691 + - uid: 32566 components: - type: Transform pos: 71.5,4.5 parent: 2 - - uid: 32692 + - uid: 32567 components: - type: Transform pos: 56.5,-5.5 parent: 2 - - uid: 32693 + - uid: 32568 components: - type: Transform pos: -24.5,-59.5 parent: 2 - - uid: 32694 + - uid: 32569 components: - type: Transform pos: 61.5,13.5 parent: 2 - - uid: 32695 + - uid: 32570 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,2.5 parent: 2 - - uid: 32696 + - uid: 32571 components: - type: Transform pos: 75.5,13.5 parent: 2 - - uid: 32697 + - uid: 32572 components: - type: Transform pos: 75.5,11.5 parent: 2 - - uid: 32698 + - uid: 32573 components: - type: Transform pos: -76.5,-4.5 parent: 2 - - uid: 32699 + - uid: 32574 components: - type: Transform pos: -21.5,-59.5 parent: 2 - - uid: 32700 + - uid: 32575 components: - type: Transform pos: 68.5,17.5 parent: 2 - - uid: 32701 + - uid: 32576 components: - type: Transform pos: 76.5,20.5 parent: 2 - - uid: 32702 + - uid: 32577 components: - type: Transform pos: 75.5,20.5 parent: 2 - - uid: 32703 + - uid: 32578 components: - type: Transform pos: -40.5,-7.5 parent: 2 - - uid: 32704 + - uid: 32579 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,0.5 parent: 2 - - uid: 32705 + - uid: 32580 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 - - uid: 32706 + - uid: 32581 components: - type: Transform pos: -13.5,96.5 parent: 2 - - uid: 32707 + - uid: 32582 components: - type: Transform pos: -46.5,3.5 parent: 2 - - uid: 32708 + - uid: 32583 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,2.5 parent: 2 - - uid: 32709 + - uid: 32584 components: - type: Transform pos: -13.5,103.5 parent: 2 - - uid: 32710 + - uid: 32585 components: - type: Transform pos: -39.5,-7.5 parent: 2 - - uid: 32711 + - uid: 32586 components: - type: Transform pos: 15.5,76.5 parent: 2 - - uid: 32712 + - uid: 32587 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-41.5 parent: 2 - - uid: 32713 + - uid: 32588 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-42.5 parent: 2 - - uid: 32714 + - uid: 32589 components: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 32715 + - uid: 32590 components: - type: Transform pos: 71.5,7.5 parent: 2 - - uid: 32716 + - uid: 32591 components: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 32717 + - uid: 32592 components: - type: Transform pos: 14.5,76.5 parent: 2 - - uid: 32718 + - uid: 32593 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,31.5 parent: 2 - - uid: 32719 + - uid: 32594 components: - type: Transform pos: -27.5,104.5 parent: 2 - - uid: 32720 + - uid: 32595 components: - type: Transform pos: -20.5,-59.5 parent: 2 - - uid: 32721 + - uid: 32596 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-8.5 parent: 2 - - uid: 32722 + - uid: 32597 components: - type: Transform pos: -38.5,-47.5 parent: 2 - - uid: 32723 + - uid: 32598 components: - type: Transform pos: -37.5,-47.5 parent: 2 - - uid: 32724 + - uid: 32599 components: - type: Transform pos: -36.5,-47.5 parent: 2 - - uid: 32725 + - uid: 32600 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,6.5 parent: 2 - - uid: 32726 + - uid: 32601 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-46.5 parent: 2 - - uid: 32727 + - uid: 32602 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-46.5 parent: 2 - - uid: 32728 + - uid: 32603 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-46.5 parent: 2 - - uid: 32729 + - uid: 32604 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,1.5 parent: 2 - - uid: 32730 + - uid: 32605 components: - type: Transform pos: -24.5,-42.5 parent: 2 - - uid: 32731 + - uid: 32606 components: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 32732 + - uid: 32607 components: - type: Transform pos: 60.5,2.5 parent: 2 - - uid: 32733 + - uid: 32608 components: - type: Transform pos: 67.5,11.5 parent: 2 - - uid: 32734 + - uid: 32609 components: - type: Transform pos: 68.5,-1.5 parent: 2 - - uid: 32735 + - uid: 32610 components: - type: Transform pos: -26.5,-42.5 parent: 2 - - uid: 32736 + - uid: 32611 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-46.5 parent: 2 - - uid: 32737 + - uid: 32612 components: - type: Transform pos: -9.5,70.5 parent: 2 - - uid: 32738 + - uid: 32613 components: - type: Transform pos: 59.5,10.5 parent: 2 - - uid: 32739 + - uid: 32614 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,30.5 parent: 2 - - uid: 32740 + - uid: 32615 components: - type: Transform pos: 64.5,10.5 parent: 2 - - uid: 32741 + - uid: 32616 components: - type: Transform pos: 49.5,-1.5 parent: 2 - - uid: 32742 + - uid: 32617 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-71.5 parent: 2 - - uid: 32743 + - uid: 32618 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-4.5 parent: 2 - - uid: 32744 + - uid: 32619 components: - type: Transform pos: -31.5,87.5 parent: 2 - - uid: 32745 + - uid: 32620 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,28.5 parent: 2 - - uid: 32746 + - uid: 32621 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,29.5 parent: 2 - - uid: 32747 + - uid: 32622 components: - type: Transform pos: -26.5,-41.5 parent: 2 - - uid: 32748 + - uid: 32623 components: - type: Transform pos: 51.5,2.5 parent: 2 - - uid: 32749 + - uid: 32624 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,4.5 parent: 2 - - uid: 32750 + - uid: 32625 components: - type: Transform pos: 49.5,2.5 parent: 2 - - uid: 32751 + - uid: 32626 components: - type: Transform pos: 73.5,-1.5 parent: 2 - - uid: 32752 + - uid: 32627 components: - type: Transform pos: 50.5,2.5 parent: 2 - - uid: 32753 + - uid: 32628 components: - type: Transform pos: 71.5,5.5 parent: 2 - - uid: 32754 + - uid: 32629 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-42.5 parent: 2 - - uid: 32755 + - uid: 32630 components: - type: Transform pos: 9.5,-60.5 parent: 2 - - uid: 32756 + - uid: 32631 components: - type: Transform pos: 40.5,14.5 parent: 2 - - uid: 32757 + - uid: 32632 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-3.5 parent: 2 - - uid: 32758 + - uid: 32633 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-45.5 parent: 2 - - uid: 32759 + - uid: 32634 components: - type: Transform pos: -114.5,34.5 parent: 2 - - uid: 32760 + - uid: 32635 components: - type: Transform pos: -22.5,-42.5 parent: 2 - - uid: 32761 + - uid: 32636 components: - type: Transform pos: 67.5,-4.5 parent: 2 - - uid: 32762 + - uid: 32637 components: - type: Transform pos: -9.5,101.5 parent: 2 - - uid: 32763 + - uid: 32638 components: - type: Transform pos: -125.5,34.5 parent: 2 - - uid: 32764 + - uid: 32639 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 - - uid: 32765 + - uid: 32640 components: - type: Transform pos: 56.5,3.5 parent: 2 - - uid: 32766 + - uid: 32641 components: - type: Transform pos: 30.5,44.5 parent: 2 - - uid: 32767 + - uid: 32642 components: - type: Transform pos: -78.5,-19.5 parent: 2 - - uid: 32768 + - uid: 32643 components: - type: Transform pos: 56.5,8.5 parent: 2 - - uid: 32769 + - uid: 32644 components: - type: Transform pos: 32.5,35.5 parent: 2 - - uid: 32770 + - uid: 32645 components: - type: Transform pos: 32.5,34.5 parent: 2 - - uid: 32771 + - uid: 32646 components: - type: Transform pos: -58.5,21.5 parent: 2 - - uid: 32772 + - uid: 32647 components: - type: Transform pos: 32.5,33.5 parent: 2 - - uid: 32773 + - uid: 32648 components: - type: Transform pos: 71.5,11.5 parent: 2 - - uid: 32774 + - uid: 32649 components: - type: Transform pos: -8.5,70.5 parent: 2 - - uid: 32775 + - uid: 32650 components: - type: Transform pos: 75.5,-2.5 parent: 2 - - uid: 32776 + - uid: 32651 components: - type: Transform pos: 57.5,10.5 parent: 2 - - uid: 32777 + - uid: 32652 components: - type: Transform pos: 56.5,14.5 parent: 2 - - uid: 32778 + - uid: 32653 components: - type: Transform pos: 49.5,10.5 parent: 2 - - uid: 32779 + - uid: 32654 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,27.5 parent: 2 - - uid: 32780 + - uid: 32655 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,40.5 parent: 2 - - uid: 32781 + - uid: 32656 components: - type: Transform pos: 39.5,14.5 parent: 2 - - uid: 32782 + - uid: 32657 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 32783 + - uid: 32658 components: - type: Transform pos: 65.5,10.5 parent: 2 - - uid: 32784 + - uid: 32659 components: - type: Transform pos: 63.5,14.5 parent: 2 - - uid: 32785 + - uid: 32660 components: - type: Transform pos: 60.5,14.5 parent: 2 - - uid: 32786 + - uid: 32661 components: - type: Transform pos: -34.5,-35.5 parent: 2 - - uid: 32787 + - uid: 32662 components: - type: Transform pos: 67.5,-2.5 parent: 2 - - uid: 32788 + - uid: 32663 components: - type: Transform pos: -27.5,105.5 parent: 2 - - uid: 32789 + - uid: 32664 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,55.5 parent: 2 - - uid: 32790 + - uid: 32665 components: - type: Transform pos: 84.5,15.5 parent: 2 - - uid: 32791 + - uid: 32666 components: - type: Transform pos: 54.5,14.5 parent: 2 - - uid: 32792 + - uid: 32667 components: - type: Transform rot: 3.141592653589793 rad pos: -110.5,46.5 parent: 2 - - uid: 32793 + - uid: 32668 components: - type: Transform pos: 33.5,18.5 parent: 2 - - uid: 32794 + - uid: 32669 components: - type: Transform pos: -75.5,2.5 parent: 2 - - uid: 32795 + - uid: 32670 components: - type: Transform pos: -26.5,-40.5 parent: 2 - - uid: 32796 + - uid: 32671 components: - type: Transform pos: 67.5,12.5 parent: 2 - - uid: 32797 + - uid: 32672 components: - type: Transform pos: 80.5,12.5 parent: 2 - - uid: 32798 + - uid: 32673 components: - type: Transform pos: 53.5,14.5 parent: 2 - - uid: 32799 + - uid: 32674 components: - type: Transform pos: 37.5,-68.5 parent: 2 - - uid: 32800 + - uid: 32675 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-37.5 parent: 2 - - uid: 32801 + - uid: 32676 components: - type: Transform pos: 56.5,7.5 parent: 2 - - uid: 32802 + - uid: 32677 components: - type: Transform pos: 37.5,-65.5 parent: 2 - - uid: 32803 + - uid: 32678 components: - type: Transform pos: 71.5,20.5 parent: 2 - - uid: 32804 + - uid: 32679 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 32805 + - uid: 32680 components: - type: Transform pos: 67.5,16.5 parent: 2 - - uid: 32806 + - uid: 32681 components: - type: Transform pos: 67.5,14.5 parent: 2 - - uid: 32807 + - uid: 32682 components: - type: Transform pos: 71.5,19.5 parent: 2 - - uid: 32808 + - uid: 32683 components: - type: Transform pos: 71.5,17.5 parent: 2 - - uid: 32809 + - uid: 32684 components: - type: Transform pos: 70.5,-1.5 parent: 2 - - uid: 32810 + - uid: 32685 components: - type: Transform pos: 65.5,2.5 parent: 2 - - uid: 32811 + - uid: 32686 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,54.5 parent: 2 - - uid: 32812 + - uid: 32687 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,6.5 parent: 2 - - uid: 32813 + - uid: 32688 components: - type: Transform pos: 55.5,2.5 parent: 2 - - uid: 32814 + - uid: 32689 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,74.5 parent: 2 - - uid: 32815 + - uid: 32690 components: - type: Transform pos: 13.5,-62.5 parent: 2 - - uid: 32816 + - uid: 32691 components: - type: Transform pos: 81.5,15.5 parent: 2 - - uid: 32817 + - uid: 32692 components: - type: Transform pos: 80.5,15.5 parent: 2 - - uid: 32818 + - uid: 32693 components: - type: Transform pos: -31.5,101.5 parent: 2 - - uid: 32819 + - uid: 32694 components: - type: Transform pos: -31.5,104.5 parent: 2 - - uid: 32820 + - uid: 32695 components: - type: Transform pos: 42.5,-68.5 parent: 2 - - uid: 32821 + - uid: 32696 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,11.5 parent: 2 - - uid: 32822 + - uid: 32697 components: - type: Transform pos: 41.5,-64.5 parent: 2 - - uid: 32823 + - uid: 32698 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,87.5 parent: 2 - - uid: 32824 + - uid: 32699 components: - type: Transform pos: -31.5,100.5 parent: 2 - - uid: 32825 + - uid: 32700 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-8.5 parent: 2 - - uid: 32826 + - uid: 32701 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 32827 + - uid: 32702 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 - - uid: 32828 + - uid: 32703 components: - type: Transform pos: 40.5,-64.5 parent: 2 - - uid: 32829 + - uid: 32704 components: - type: Transform pos: 38.5,-64.5 parent: 2 - - uid: 32830 + - uid: 32705 components: - type: Transform pos: 39.5,-64.5 parent: 2 - - uid: 32831 + - uid: 32706 components: - type: Transform pos: 37.5,-64.5 parent: 2 - - uid: 32832 + - uid: 32707 components: - type: Transform pos: 42.5,-64.5 parent: 2 - - uid: 32833 + - uid: 32708 components: - type: Transform pos: -74.5,-2.5 parent: 2 - - uid: 32834 + - uid: 32709 components: - type: Transform pos: 7.5,4.5 parent: 2 - - uid: 32835 + - uid: 32710 components: - type: Transform pos: 9.5,4.5 parent: 2 - - uid: 32836 + - uid: 32711 components: - type: Transform pos: 10.5,4.5 parent: 2 - - uid: 32837 + - uid: 32712 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 32838 + - uid: 32713 components: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 32839 + - uid: 32714 components: - type: Transform pos: 12.5,5.5 parent: 2 - - uid: 32840 + - uid: 32715 components: - type: Transform pos: 9.5,12.5 parent: 2 - - uid: 32841 + - uid: 32716 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 32842 + - uid: 32717 components: - type: Transform pos: 11.5,12.5 parent: 2 - - uid: 32843 + - uid: 32718 components: - type: Transform pos: 12.5,12.5 parent: 2 - - uid: 32844 + - uid: 32719 components: - type: Transform pos: 13.5,12.5 parent: 2 - - uid: 32845 + - uid: 32720 components: - type: Transform pos: 14.5,12.5 parent: 2 - - uid: 32846 + - uid: 32721 components: - type: Transform pos: 15.5,12.5 parent: 2 - - uid: 32847 + - uid: 32722 components: - type: Transform pos: 77.5,29.5 parent: 2 - - uid: 32848 + - uid: 32723 components: - type: Transform pos: 78.5,24.5 parent: 2 - - uid: 32849 + - uid: 32724 components: - type: Transform pos: 79.5,24.5 parent: 2 - - uid: 32850 + - uid: 32725 components: - type: Transform pos: 79.5,23.5 parent: 2 - - uid: 32851 + - uid: 32726 components: - type: Transform pos: 72.5,20.5 parent: 2 - - uid: 32852 + - uid: 32727 components: - type: Transform pos: 15.5,11.5 parent: 2 - - uid: 32853 + - uid: 32728 components: - type: Transform pos: 15.5,10.5 parent: 2 - - uid: 32854 + - uid: 32729 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 32855 + - uid: 32730 components: - type: Transform pos: 15.5,8.5 parent: 2 - - uid: 32856 + - uid: 32731 components: - type: Transform pos: 15.5,7.5 parent: 2 - - uid: 32857 + - uid: 32732 components: - type: Transform pos: 15.5,6.5 parent: 2 - - uid: 32858 + - uid: 32733 components: - type: Transform pos: 14.5,6.5 parent: 2 - - uid: 32859 + - uid: 32734 components: - type: Transform pos: 13.5,6.5 parent: 2 - - uid: 32860 + - uid: 32735 components: - type: Transform pos: 12.5,6.5 parent: 2 - - uid: 32861 + - uid: 32736 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 32862 + - uid: 32737 components: - type: Transform pos: 7.5,12.5 parent: 2 - - uid: 32863 + - uid: 32738 components: - type: Transform pos: 6.5,12.5 parent: 2 - - uid: 32864 + - uid: 32739 components: - type: Transform pos: 5.5,12.5 parent: 2 - - uid: 32865 + - uid: 32740 components: - type: Transform pos: 5.5,11.5 parent: 2 - - uid: 32866 + - uid: 32741 components: - type: Transform pos: -12.5,6.5 parent: 2 - - uid: 32867 + - uid: 32742 components: - type: Transform pos: -8.5,-6.5 parent: 2 - - uid: 32868 + - uid: 32743 components: - type: Transform pos: -10.5,-6.5 parent: 2 - - uid: 32869 + - uid: 32744 components: - type: Transform pos: -12.5,-6.5 parent: 2 - - uid: 32870 + - uid: 32745 components: - type: Transform pos: -13.5,-6.5 parent: 2 - - uid: 32871 + - uid: 32746 components: - type: Transform pos: -14.5,-6.5 parent: 2 - - uid: 32872 + - uid: 32747 components: - type: Transform pos: -15.5,-6.5 parent: 2 - - uid: 32873 + - uid: 32748 components: - type: Transform pos: -16.5,-6.5 parent: 2 - - uid: 32874 + - uid: 32749 components: - type: Transform pos: -16.5,-5.5 parent: 2 - - uid: 32875 + - uid: 32750 components: - type: Transform pos: -16.5,-4.5 parent: 2 - - uid: 32876 + - uid: 32751 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 32877 + - uid: 32752 components: - type: Transform pos: -16.5,-2.5 parent: 2 - - uid: 32878 + - uid: 32753 components: - type: Transform pos: -15.5,-2.5 parent: 2 - - uid: 32879 + - uid: 32754 components: - type: Transform pos: -14.5,-2.5 parent: 2 - - uid: 32880 + - uid: 32755 components: - type: Transform pos: -14.5,-1.5 parent: 2 - - uid: 32881 + - uid: 32756 components: - type: Transform pos: -14.5,0.5 parent: 2 - - uid: 32882 + - uid: 32757 components: - type: Transform pos: -14.5,2.5 parent: 2 - - uid: 32883 + - uid: 32758 components: - type: Transform pos: -14.5,5.5 parent: 2 - - uid: 32884 + - uid: 32759 components: - type: Transform pos: -11.5,6.5 parent: 2 - - uid: 32885 + - uid: 32760 components: - type: Transform pos: -8.5,6.5 parent: 2 - - uid: 32886 + - uid: 32761 components: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 32887 + - uid: 32762 components: - type: Transform pos: -14.5,6.5 parent: 2 - - uid: 32888 + - uid: 32763 components: - type: Transform pos: -15.5,6.5 parent: 2 - - uid: 32889 + - uid: 32764 components: - type: Transform pos: -16.5,6.5 parent: 2 - - uid: 32890 + - uid: 32765 components: - type: Transform pos: -16.5,7.5 parent: 2 - - uid: 32891 + - uid: 32766 components: - type: Transform pos: -16.5,11.5 parent: 2 - - uid: 32892 + - uid: 32767 components: - type: Transform pos: -16.5,12.5 parent: 2 - - uid: 32893 + - uid: 32768 components: - type: Transform pos: -15.5,12.5 parent: 2 - - uid: 32894 + - uid: 32769 components: - type: Transform pos: -14.5,12.5 parent: 2 - - uid: 32895 + - uid: 32770 components: - type: Transform pos: -13.5,12.5 parent: 2 - - uid: 32896 + - uid: 32771 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,7.5 parent: 2 - - uid: 32897 + - uid: 32772 components: - type: Transform pos: 13.5,79.5 parent: 2 - - uid: 32898 + - uid: 32773 components: - type: Transform pos: 13.5,77.5 parent: 2 - - uid: 32899 + - uid: 32774 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,5.5 parent: 2 - - uid: 32900 + - uid: 32775 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,5.5 parent: 2 - - uid: 32901 + - uid: 32776 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,5.5 parent: 2 - - uid: 32902 + - uid: 32777 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-20.5 parent: 2 - - uid: 32903 + - uid: 32778 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,-20.5 parent: 2 - - uid: 32904 + - uid: 32779 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,-20.5 parent: 2 - - uid: 32905 + - uid: 32780 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-20.5 parent: 2 - - uid: 32906 + - uid: 32781 components: - type: Transform pos: -6.5,-82.5 parent: 2 - - uid: 32907 + - uid: 32782 components: - type: Transform pos: 49.5,-5.5 parent: 2 - - uid: 32908 + - uid: 32783 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,80.5 parent: 2 - - uid: 32909 + - uid: 32784 components: - type: Transform pos: 75.5,-4.5 parent: 2 - - uid: 32910 + - uid: 32785 components: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 32911 + - uid: 32786 components: - type: Transform pos: -5.5,11.5 parent: 2 - - uid: 32912 + - uid: 32787 components: - type: Transform pos: -4.5,11.5 parent: 2 - - uid: 32913 + - uid: 32788 components: - type: Transform pos: -2.5,11.5 parent: 2 - - uid: 32914 + - uid: 32789 components: - type: Transform pos: -1.5,11.5 parent: 2 - - uid: 32915 + - uid: 32790 components: - type: Transform pos: -0.5,11.5 parent: 2 - - uid: 32916 + - uid: 32791 components: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 32917 + - uid: 32792 components: - type: Transform pos: 1.5,11.5 parent: 2 - - uid: 32918 + - uid: 32793 components: - type: Transform pos: 6.5,-1.5 parent: 2 - - uid: 32919 + - uid: 32794 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 32920 + - uid: 32795 components: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 32921 + - uid: 32796 components: - type: Transform pos: -7.5,-1.5 parent: 2 - - uid: 32922 + - uid: 32797 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 32923 + - uid: 32798 components: - type: Transform pos: -7.5,-0.5 parent: 2 - - uid: 32924 + - uid: 32799 components: - type: Transform pos: -7.5,2.5 parent: 2 - - uid: 32925 + - uid: 32800 components: - type: Transform pos: -7.5,1.5 parent: 2 - - uid: 32926 + - uid: 32801 components: - type: Transform pos: -7.5,0.5 parent: 2 - - uid: 32927 + - uid: 32802 components: - type: Transform pos: -7.5,3.5 parent: 2 - - uid: 32928 + - uid: 32803 components: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 32929 + - uid: 32804 components: - type: Transform pos: -7.5,5.5 parent: 2 - - uid: 32930 + - uid: 32805 components: - type: Transform pos: -7.5,6.5 parent: 2 - - uid: 32931 + - uid: 32806 components: - type: Transform pos: -7.5,7.5 parent: 2 - - uid: 32932 + - uid: 32807 components: - type: Transform pos: -6.5,7.5 parent: 2 - - uid: 32933 + - uid: 32808 components: - type: Transform pos: -5.5,7.5 parent: 2 - - uid: 32934 + - uid: 32809 components: - type: Transform pos: -5.5,8.5 parent: 2 - - uid: 32935 + - uid: 32810 components: - type: Transform pos: -5.5,9.5 parent: 2 - - uid: 32936 + - uid: 32811 components: - type: Transform pos: -5.5,10.5 parent: 2 - - uid: 32937 + - uid: 32812 components: - type: Transform pos: 6.5,5.5 parent: 2 - - uid: 32938 + - uid: 32813 components: - type: Transform pos: -13.5,93.5 parent: 2 - - uid: 32939 + - uid: 32814 components: - type: Transform pos: -9.5,102.5 parent: 2 - - uid: 32940 + - uid: 32815 components: - type: Transform pos: 6.5,4.5 parent: 2 - - uid: 32941 + - uid: 32816 components: - type: Transform pos: 73.5,24.5 parent: 2 - - uid: 32942 + - uid: 32817 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 32943 + - uid: 32818 components: - type: Transform pos: -37.5,-80.5 parent: 2 - - uid: 32944 + - uid: 32819 components: - type: Transform pos: -9.5,103.5 parent: 2 - - uid: 32945 + - uid: 32820 components: - type: Transform pos: -37.5,-79.5 parent: 2 - - uid: 32946 + - uid: 32821 components: - type: Transform pos: 6.5,-6.5 parent: 2 - - uid: 32947 + - uid: 32822 components: - type: Transform pos: -7.5,-5.5 parent: 2 - - uid: 32948 + - uid: 32823 components: - type: Transform pos: 3.5,11.5 parent: 2 - - uid: 32949 + - uid: 32824 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 32950 + - uid: 32825 components: - type: Transform pos: 6.5,3.5 parent: 2 - - uid: 32951 + - uid: 32826 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 32952 + - uid: 32827 components: - type: Transform pos: 1.5,-82.5 parent: 2 - - uid: 32953 + - uid: 32828 components: - type: Transform pos: -3.5,11.5 parent: 2 - - uid: 32954 + - uid: 32829 components: - type: Transform pos: 5.5,7.5 parent: 2 - - uid: 32955 + - uid: 32830 components: - type: Transform pos: 6.5,7.5 parent: 2 - - uid: 32956 + - uid: 32831 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 32957 + - uid: 32832 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 32958 + - uid: 32833 components: - type: Transform pos: 4.5,8.5 parent: 2 - - uid: 32959 + - uid: 32834 components: - type: Transform pos: 68.5,2.5 parent: 2 - - uid: 32960 + - uid: 32835 components: - type: Transform pos: 4.5,10.5 parent: 2 - - uid: 32961 + - uid: 32836 components: - type: Transform pos: 2.5,11.5 parent: 2 - - uid: 32962 + - uid: 32837 components: - type: Transform pos: 6.5,6.5 parent: 2 - - uid: 32963 + - uid: 32838 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-66.5 parent: 2 - - uid: 32964 + - uid: 32839 components: - type: Transform pos: -7.5,-6.5 parent: 2 - - uid: 32965 + - uid: 32840 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 32966 + - uid: 32841 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 32967 + - uid: 32842 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 32968 + - uid: 32843 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 32969 + - uid: 32844 components: - type: Transform pos: 3.5,11.5 parent: 2 - - uid: 32970 + - uid: 32845 components: - type: Transform pos: 15.5,-59.5 parent: 2 - - uid: 32971 + - uid: 32846 components: - type: Transform pos: 4.5,9.5 parent: 2 - - uid: 32972 + - uid: 32847 components: - type: Transform pos: -7.5,-3.5 parent: 2 - - uid: 32973 + - uid: 32848 components: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 32974 + - uid: 32849 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,23.5 parent: 2 - - uid: 32975 + - uid: 32850 components: - type: Transform pos: 73.5,26.5 parent: 2 - - uid: 32976 + - uid: 32851 components: - type: Transform pos: 80.5,14.5 parent: 2 - - uid: 32977 + - uid: 32852 components: - type: Transform pos: 15.5,-60.5 parent: 2 - - uid: 32978 + - uid: 32853 components: - type: Transform pos: 4.5,7.5 parent: 2 - - uid: 32979 + - uid: 32854 components: - type: Transform pos: 71.5,21.5 parent: 2 - - uid: 32980 + - uid: 32855 components: - type: Transform pos: 71.5,22.5 parent: 2 - - uid: 32981 + - uid: 32856 components: - type: Transform pos: 71.5,23.5 parent: 2 - - uid: 32982 + - uid: 32857 components: - type: Transform pos: 71.5,24.5 parent: 2 - - uid: 32983 + - uid: 32858 components: - type: Transform pos: 72.5,24.5 parent: 2 - - uid: 32984 + - uid: 32859 components: - type: Transform pos: 73.5,25.5 parent: 2 - - uid: 32985 + - uid: 32860 components: - type: Transform pos: 49.5,14.5 parent: 2 - - uid: 32986 + - uid: 32861 components: - type: Transform pos: -55.5,21.5 parent: 2 - - uid: 32987 + - uid: 32862 components: - type: Transform pos: 13.5,76.5 parent: 2 - - uid: 32988 + - uid: 32863 components: - type: Transform pos: 44.5,24.5 parent: 2 - - uid: 32989 + - uid: 32864 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,42.5 parent: 2 - - uid: 32990 + - uid: 32865 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-8.5 parent: 2 - - uid: 32991 + - uid: 32866 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-48.5 parent: 2 - - uid: 32992 + - uid: 32867 components: - type: Transform pos: 8.5,85.5 parent: 2 - - uid: 32993 + - uid: 32868 components: - type: Transform pos: -81.5,-10.5 parent: 2 - - uid: 32994 + - uid: 32869 components: - type: Transform pos: -16.5,-27.5 parent: 2 - - uid: 32995 + - uid: 32870 components: - type: Transform pos: -15.5,-46.5 parent: 2 - - uid: 32996 + - uid: 32871 components: - type: Transform pos: 36.5,13.5 parent: 2 - - uid: 32997 + - uid: 32872 components: - type: Transform pos: 35.5,13.5 parent: 2 - - uid: 32998 + - uid: 32873 components: - type: Transform pos: 38.5,13.5 parent: 2 - - uid: 32999 + - uid: 32874 components: - type: Transform pos: 38.5,-1.5 parent: 2 - - uid: 33000 + - uid: 32875 components: - type: Transform pos: -77.5,21.5 parent: 2 - - uid: 33001 + - uid: 32876 components: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 33002 + - uid: 32877 components: - type: Transform pos: -2.5,-36.5 parent: 2 - - uid: 33003 + - uid: 32878 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,33.5 parent: 2 - - uid: 33004 + - uid: 32879 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,1.5 parent: 2 - - uid: 33005 + - uid: 32880 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,41.5 parent: 2 - - uid: 33006 + - uid: 32881 components: - type: Transform pos: 4.5,93.5 parent: 2 - - uid: 33007 + - uid: 32882 components: - type: Transform pos: -64.5,2.5 parent: 2 - - uid: 33008 + - uid: 32883 components: - type: Transform pos: 26.5,24.5 parent: 2 - - uid: 33009 + - uid: 32884 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,34.5 parent: 2 - - uid: 33010 + - uid: 32885 components: - type: Transform pos: 26.5,39.5 parent: 2 - - uid: 33011 + - uid: 32886 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,43.5 parent: 2 - - uid: 33012 + - uid: 32887 components: - type: Transform pos: 34.5,13.5 parent: 2 - - uid: 33013 + - uid: 32888 components: - type: Transform pos: 37.5,13.5 parent: 2 - - uid: 33014 + - uid: 32889 components: - type: Transform pos: 52.5,-6.5 parent: 2 - - uid: 33015 + - uid: 32890 components: - type: Transform pos: -103.5,-9.5 parent: 2 - - uid: 33016 + - uid: 32891 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-39.5 parent: 2 - - uid: 33017 + - uid: 32892 components: - type: Transform pos: 75.5,-40.5 parent: 2 - - uid: 33018 + - uid: 32893 components: - type: Transform pos: -102.5,-20.5 parent: 2 - - uid: 33019 + - uid: 32894 components: - type: Transform pos: 71.5,-52.5 parent: 2 - - uid: 33020 + - uid: 32895 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,23.5 parent: 2 - - uid: 33021 + - uid: 32896 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,43.5 parent: 2 - - uid: 33022 + - uid: 32897 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 33023 + - uid: 32898 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-40.5 parent: 2 - - uid: 33024 + - uid: 32899 components: - type: Transform pos: 42.5,-1.5 parent: 2 - - uid: 33025 + - uid: 32900 components: - type: Transform pos: 51.5,10.5 parent: 2 - - uid: 33026 + - uid: 32901 components: - type: Transform pos: 10.5,-72.5 parent: 2 - - uid: 33027 + - uid: 32902 components: - type: Transform pos: 11.5,-72.5 parent: 2 - - uid: 33028 + - uid: 32903 components: - type: Transform pos: 41.5,-1.5 parent: 2 - - uid: 33029 + - uid: 32904 components: - type: Transform pos: 34.5,7.5 parent: 2 - - uid: 33030 + - uid: 32905 components: - type: Transform pos: -24.5,-31.5 parent: 2 - - uid: 33031 + - uid: 32906 components: - type: Transform pos: 38.5,-65.5 parent: 2 - - uid: 33032 + - uid: 32907 components: - type: Transform pos: 42.5,-65.5 parent: 2 - - uid: 33033 + - uid: 32908 components: - type: Transform pos: 53.5,-33.5 parent: 2 - - uid: 33034 + - uid: 32909 components: - type: Transform pos: 11.5,-73.5 parent: 2 - - uid: 33035 + - uid: 32910 components: - type: Transform pos: -41.5,-63.5 parent: 2 - - uid: 33036 + - uid: 32911 components: - type: Transform pos: -49.5,6.5 parent: 2 - - uid: 33037 + - uid: 32912 components: - type: Transform pos: 11.5,-74.5 parent: 2 - - uid: 33038 + - uid: 32913 components: - type: Transform pos: 25.5,68.5 parent: 2 - - uid: 33039 + - uid: 32914 components: - type: Transform pos: -22.5,-59.5 parent: 2 - - uid: 33040 + - uid: 32915 components: - type: Transform pos: -2.5,-82.5 parent: 2 - - uid: 33041 + - uid: 32916 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-66.5 parent: 2 - - uid: 33042 + - uid: 32917 components: - type: Transform pos: 19.5,20.5 parent: 2 - - uid: 33043 + - uid: 32918 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,74.5 parent: 2 - - uid: 33044 + - uid: 32919 components: - type: Transform pos: -32.5,80.5 parent: 2 - - uid: 33045 + - uid: 32920 components: - type: Transform pos: 7.5,-71.5 parent: 2 - - uid: 33046 + - uid: 32921 components: - type: Transform pos: 8.5,88.5 parent: 2 - - uid: 33047 + - uid: 32922 components: - type: Transform pos: 19.5,-53.5 parent: 2 - - uid: 33048 + - uid: 32923 components: - type: Transform pos: 19.5,-51.5 parent: 2 - - uid: 33049 + - uid: 32924 components: - type: Transform pos: 37.5,29.5 parent: 2 - - uid: 33050 + - uid: 32925 components: - type: Transform pos: 11.5,-77.5 parent: 2 - - uid: 33051 + - uid: 32926 components: - type: Transform pos: 19.5,-47.5 parent: 2 - - uid: 33052 + - uid: 32927 components: - type: Transform pos: -35.5,-32.5 parent: 2 - - uid: 33053 + - uid: 32928 components: - type: Transform pos: -37.5,17.5 parent: 2 - - uid: 33054 + - uid: 32929 components: - type: Transform pos: -65.5,53.5 parent: 2 - - uid: 33055 + - uid: 32930 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,5.5 parent: 2 - - uid: 33056 + - uid: 32931 components: - type: Transform pos: -64.5,53.5 parent: 2 - - uid: 33057 + - uid: 32932 components: - type: Transform pos: -68.5,53.5 parent: 2 - - uid: 33058 + - uid: 32933 components: - type: Transform pos: -60.5,52.5 parent: 2 - - uid: 33059 + - uid: 32934 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,23.5 parent: 2 - - uid: 33060 + - uid: 32935 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,5.5 parent: 2 - - uid: 33061 + - uid: 32936 components: - type: Transform pos: -49.5,-5.5 parent: 2 - - uid: 33062 + - uid: 32937 components: - type: Transform pos: -24.5,-32.5 parent: 2 - - uid: 33063 + - uid: 32938 components: - type: Transform pos: -21.5,-22.5 parent: 2 - - uid: 33064 + - uid: 32939 components: - type: Transform pos: -24.5,-74.5 parent: 2 - - uid: 33065 + - uid: 32940 components: - type: Transform pos: -33.5,20.5 parent: 2 - - uid: 33066 + - uid: 32941 components: - type: Transform pos: -37.5,-20.5 parent: 2 - - uid: 33067 + - uid: 32942 components: - type: Transform pos: -42.5,41.5 parent: 2 - - uid: 33068 + - uid: 32943 components: - type: Transform pos: -44.5,20.5 parent: 2 - - uid: 33069 + - uid: 32944 components: - type: Transform pos: -72.5,-21.5 parent: 2 - - uid: 33070 + - uid: 32945 components: - type: Transform pos: -72.5,-22.5 parent: 2 - - uid: 33071 + - uid: 32946 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 33072 + - uid: 32947 components: - type: Transform pos: -71.5,-21.5 parent: 2 - - uid: 33073 + - uid: 32948 components: - type: Transform pos: -46.5,-4.5 parent: 2 - - uid: 33074 + - uid: 32949 components: - type: Transform pos: -44.5,-31.5 parent: 2 - - uid: 33075 + - uid: 32950 components: - type: Transform pos: -44.5,-49.5 parent: 2 - - uid: 33076 + - uid: 32951 components: - type: Transform pos: 72.5,-2.5 parent: 2 - - uid: 33077 + - uid: 32952 components: - type: Transform pos: 7.5,-39.5 parent: 2 - - uid: 33078 + - uid: 32953 components: - type: Transform pos: 29.5,-61.5 parent: 2 - - uid: 33079 + - uid: 32954 components: - type: Transform pos: -44.5,21.5 parent: 2 - - uid: 33080 + - uid: 32955 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-9.5 parent: 2 - - uid: 33081 + - uid: 32956 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-18.5 parent: 2 - - uid: 33082 + - uid: 32957 components: - type: Transform pos: 24.5,-53.5 parent: 2 - - uid: 33083 + - uid: 32958 components: - type: Transform pos: -50.5,-23.5 parent: 2 - - uid: 33084 + - uid: 32959 components: - type: Transform pos: -2.5,-49.5 parent: 2 - - uid: 33085 + - uid: 32960 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,6.5 parent: 2 - - uid: 33086 + - uid: 32961 components: - type: Transform pos: -49.5,-23.5 parent: 2 - - uid: 33087 + - uid: 32962 components: - type: Transform pos: 25.5,-53.5 parent: 2 - - uid: 33088 + - uid: 32963 components: - type: Transform pos: -45.5,-49.5 parent: 2 - - uid: 33089 + - uid: 32964 components: - type: Transform pos: -48.5,-49.5 parent: 2 - - uid: 33090 + - uid: 32965 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-46.5 parent: 2 - - uid: 33091 + - uid: 32966 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-41.5 parent: 2 - - uid: 33092 + - uid: 32967 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-13.5 parent: 2 - - uid: 33093 + - uid: 32968 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-8.5 parent: 2 - - uid: 33094 + - uid: 32969 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-15.5 parent: 2 - - uid: 33095 + - uid: 32970 components: - type: Transform pos: -81.5,-14.5 parent: 2 - - uid: 33096 + - uid: 32971 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-18.5 parent: 2 - - uid: 33097 + - uid: 32972 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-16.5 parent: 2 - - uid: 33098 + - uid: 32973 components: - type: Transform pos: -47.5,-4.5 parent: 2 - - uid: 33099 + - uid: 32974 components: - type: Transform pos: -70.5,-42.5 parent: 2 - - uid: 33100 + - uid: 32975 components: - type: Transform pos: -74.5,6.5 parent: 2 - - uid: 33101 + - uid: 32976 components: - type: Transform pos: -74.5,7.5 parent: 2 - - uid: 33102 + - uid: 32977 components: - type: Transform pos: -74.5,8.5 parent: 2 - - uid: 33103 + - uid: 32978 components: - type: Transform pos: -48.5,-10.5 parent: 2 - - uid: 33104 + - uid: 32979 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,19.5 parent: 2 - - uid: 33105 + - uid: 32980 components: - type: Transform pos: -51.5,-23.5 parent: 2 - - uid: 33106 + - uid: 32981 components: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 33107 + - uid: 32982 components: - type: Transform pos: -74.5,4.5 parent: 2 - - uid: 33108 + - uid: 32983 components: - type: Transform pos: -53.5,-24.5 parent: 2 - - uid: 33109 + - uid: 32984 components: - type: Transform pos: -22.5,-48.5 parent: 2 - - uid: 33110 + - uid: 32985 components: - type: Transform pos: 15.5,-6.5 parent: 2 - - uid: 33111 + - uid: 32986 components: - type: Transform pos: 15.5,-5.5 parent: 2 - - uid: 33112 + - uid: 32987 components: - type: Transform pos: -10.5,17.5 parent: 2 - - uid: 33113 + - uid: 32988 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 33114 + - uid: 32989 components: - type: Transform pos: 21.5,-23.5 parent: 2 - - uid: 33115 + - uid: 32990 components: - type: Transform pos: 23.5,-23.5 parent: 2 - - uid: 33116 + - uid: 32991 components: - type: Transform pos: 46.5,-59.5 parent: 2 - - uid: 33117 + - uid: 32992 components: - type: Transform pos: -72.5,17.5 parent: 2 - - uid: 33118 + - uid: 32993 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 - - uid: 33119 + - uid: 32994 components: - type: Transform pos: 30.5,-64.5 parent: 2 - - uid: 33120 + - uid: 32995 components: - type: Transform pos: -15.5,-48.5 parent: 2 - - uid: 33121 + - uid: 32996 components: - type: Transform pos: -18.5,-48.5 parent: 2 - - uid: 33122 + - uid: 32997 components: - type: Transform pos: -76.5,-32.5 parent: 2 - - uid: 33123 + - uid: 32998 components: - type: Transform pos: -48.5,10.5 parent: 2 - - uid: 33124 + - uid: 32999 components: - type: Transform pos: 54.5,-31.5 parent: 2 - - uid: 33125 + - uid: 33000 components: - type: Transform pos: 55.5,-31.5 parent: 2 - - uid: 33126 + - uid: 33001 components: - type: Transform pos: 29.5,25.5 parent: 2 - - uid: 33127 + - uid: 33002 components: - type: Transform pos: 30.5,34.5 parent: 2 - - uid: 33128 + - uid: 33003 components: - type: Transform pos: -13.5,104.5 parent: 2 - - uid: 33129 + - uid: 33004 components: - type: Transform pos: -18.5,-82.5 parent: 2 - - uid: 33130 + - uid: 33005 components: - type: Transform pos: -19.5,-82.5 parent: 2 - - uid: 33131 + - uid: 33006 components: - type: Transform pos: -23.5,-82.5 parent: 2 - - uid: 33132 + - uid: 33007 components: - type: Transform pos: -27.5,-78.5 parent: 2 - - uid: 33133 + - uid: 33008 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,19.5 parent: 2 - - uid: 33134 + - uid: 33009 components: - type: Transform pos: 4.5,70.5 parent: 2 - - uid: 33135 + - uid: 33010 components: - type: Transform pos: 29.5,13.5 parent: 2 - - uid: 33136 + - uid: 33011 components: - type: Transform pos: -34.5,64.5 parent: 2 - - uid: 33137 + - uid: 33012 components: - type: Transform pos: -42.5,58.5 parent: 2 - - uid: 33138 + - uid: 33013 components: - type: Transform pos: -13.5,101.5 parent: 2 - - uid: 33139 + - uid: 33014 components: - type: Transform pos: 6.5,93.5 parent: 2 - - uid: 33140 + - uid: 33015 components: - type: Transform pos: -26.5,-32.5 parent: 2 - - uid: 33141 + - uid: 33016 components: - type: Transform pos: -39.5,-25.5 parent: 2 - - uid: 33142 + - uid: 33017 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-45.5 parent: 2 - - uid: 33143 + - uid: 33018 components: - type: Transform pos: -43.5,25.5 parent: 2 - - uid: 33144 + - uid: 33019 components: - type: Transform pos: -39.5,-30.5 parent: 2 - - uid: 33145 + - uid: 33020 components: - type: Transform pos: -39.5,-29.5 parent: 2 - - uid: 33146 + - uid: 33021 components: - type: Transform pos: -42.5,59.5 parent: 2 - - uid: 33147 + - uid: 33022 components: - type: Transform pos: -38.5,-20.5 parent: 2 - - uid: 33148 + - uid: 33023 components: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 33149 + - uid: 33024 components: - type: Transform pos: 27.5,15.5 parent: 2 - - uid: 33150 + - uid: 33025 components: - type: Transform pos: 72.5,-4.5 parent: 2 - - uid: 33151 + - uid: 33026 components: - type: Transform pos: 15.5,-17.5 parent: 2 - - uid: 33152 + - uid: 33027 components: - type: Transform pos: 5.5,-13.5 parent: 2 - - uid: 33153 + - uid: 33028 components: - type: Transform pos: 11.5,-17.5 parent: 2 - - uid: 33154 + - uid: 33029 components: - type: Transform pos: -47.5,-49.5 parent: 2 - - uid: 33155 + - uid: 33030 components: - type: Transform pos: 11.5,-76.5 parent: 2 - - uid: 33156 + - uid: 33031 components: - type: Transform pos: -67.5,53.5 parent: 2 - - uid: 33157 + - uid: 33032 components: - type: Transform pos: -43.5,-4.5 parent: 2 - - uid: 33158 + - uid: 33033 components: - type: Transform pos: -45.5,-10.5 parent: 2 - - uid: 33159 + - uid: 33034 components: - type: Transform pos: -42.5,-49.5 parent: 2 - - uid: 33160 + - uid: 33035 components: - type: Transform pos: -53.5,-23.5 parent: 2 - - uid: 33161 + - uid: 33036 components: - type: Transform pos: 9.5,-0.5 parent: 2 - - uid: 33162 + - uid: 33037 components: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 33163 + - uid: 33038 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-27.5 parent: 2 - - uid: 33164 + - uid: 33039 components: - type: Transform pos: -42.5,49.5 parent: 2 - - uid: 33165 + - uid: 33040 components: - type: Transform pos: -39.5,-33.5 parent: 2 - - uid: 33166 + - uid: 33041 components: - type: Transform pos: -26.5,-77.5 parent: 2 - - uid: 33167 + - uid: 33042 components: - type: Transform pos: -10.5,-53.5 parent: 2 - - uid: 33168 + - uid: 33043 components: - type: Transform pos: 28.5,67.5 parent: 2 - - uid: 33169 + - uid: 33044 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-47.5 parent: 2 - - uid: 33170 + - uid: 33045 components: - type: Transform pos: 19.5,73.5 parent: 2 - - uid: 33171 + - uid: 33046 components: - type: Transform pos: -27.5,101.5 parent: 2 - - uid: 33172 + - uid: 33047 components: - type: Transform pos: -39.5,-31.5 parent: 2 - - uid: 33173 + - uid: 33048 components: - type: Transform pos: 15.5,-56.5 parent: 2 - - uid: 33174 + - uid: 33049 components: - type: Transform pos: 75.5,-27.5 parent: 2 - - uid: 33175 + - uid: 33050 components: - type: Transform pos: -61.5,12.5 parent: 2 - - uid: 33176 + - uid: 33051 components: - type: Transform pos: 56.5,-8.5 parent: 2 - - uid: 33177 + - uid: 33052 components: - type: Transform pos: 26.5,25.5 parent: 2 - - uid: 33178 + - uid: 33053 components: - type: Transform pos: -66.5,6.5 parent: 2 - - uid: 33179 + - uid: 33054 components: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 33180 + - uid: 33055 components: - type: Transform pos: -42.5,-76.5 parent: 2 - - uid: 33181 + - uid: 33056 components: - type: Transform pos: -31.5,13.5 parent: 2 - - uid: 33182 + - uid: 33057 components: - type: Transform pos: -31.5,14.5 parent: 2 - - uid: 33183 + - uid: 33058 components: - type: Transform pos: -40.5,-20.5 parent: 2 - - uid: 33184 + - uid: 33059 components: - type: Transform pos: -111.5,34.5 parent: 2 - - uid: 33185 + - uid: 33060 components: - type: Transform pos: 33.5,-21.5 parent: 2 - - uid: 33186 + - uid: 33061 components: - type: Transform pos: -61.5,-10.5 parent: 2 - - uid: 33187 + - uid: 33062 components: - type: Transform pos: 91.5,11.5 parent: 2 - - uid: 33188 + - uid: 33063 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,93.5 parent: 2 - - uid: 33189 + - uid: 33064 components: - type: Transform pos: -63.5,-0.5 parent: 2 - - uid: 33190 + - uid: 33065 components: - type: Transform pos: 34.5,-72.5 parent: 2 - - uid: 33191 + - uid: 33066 components: - type: Transform pos: -7.5,-53.5 parent: 2 - - uid: 33192 + - uid: 33067 components: - type: Transform pos: -64.5,-0.5 parent: 2 - - uid: 33193 + - uid: 33068 components: - type: Transform pos: 29.5,-59.5 parent: 2 - - uid: 33194 + - uid: 33069 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,6.5 parent: 2 - - uid: 33195 + - uid: 33070 components: - type: Transform pos: -78.5,-21.5 parent: 2 - - uid: 33196 + - uid: 33071 components: - type: Transform pos: -65.5,-4.5 parent: 2 - - uid: 33197 + - uid: 33072 components: - type: Transform pos: -104.5,-7.5 parent: 2 - - uid: 33198 + - uid: 33073 components: - type: Transform pos: 36.5,-72.5 parent: 2 - - uid: 33199 + - uid: 33074 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-37.5 parent: 2 - - uid: 33200 + - uid: 33075 components: - type: Transform pos: 33.5,-25.5 parent: 2 - - uid: 33201 + - uid: 33076 components: - type: Transform pos: 25.5,-50.5 parent: 2 - - uid: 33202 + - uid: 33077 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-37.5 parent: 2 - - uid: 33203 + - uid: 33078 components: - type: Transform pos: 30.5,-70.5 parent: 2 - - uid: 33204 + - uid: 33079 components: - type: Transform pos: -37.5,-34.5 parent: 2 - - uid: 33205 + - uid: 33080 components: - type: Transform pos: 33.5,-72.5 parent: 2 - - uid: 33206 + - uid: 33081 components: - type: Transform pos: -30.5,-55.5 parent: 2 - - uid: 33207 + - uid: 33082 components: - type: Transform pos: -48.5,-23.5 parent: 2 - - uid: 33208 + - uid: 33083 components: - type: Transform pos: -77.5,-24.5 parent: 2 - - uid: 33209 + - uid: 33084 components: - type: Transform pos: -6.5,17.5 parent: 2 - - uid: 33210 + - uid: 33085 components: - type: Transform pos: -77.5,-21.5 parent: 2 - - uid: 33211 + - uid: 33086 components: - type: Transform pos: 25.5,-47.5 parent: 2 - - uid: 33212 + - uid: 33087 components: - type: Transform pos: 25.5,-48.5 parent: 2 - - uid: 33213 + - uid: 33088 components: - type: Transform pos: -9.5,100.5 parent: 2 - - uid: 33214 + - uid: 33089 components: - type: Transform pos: 15.5,73.5 parent: 2 - - uid: 33215 + - uid: 33090 components: - type: Transform pos: -58.5,8.5 parent: 2 - - uid: 33216 + - uid: 33091 components: - type: Transform pos: -36.5,38.5 parent: 2 - - uid: 33217 + - uid: 33092 components: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 33218 + - uid: 33093 components: - type: Transform pos: -44.5,43.5 parent: 2 - - uid: 33219 + - uid: 33094 components: - type: Transform pos: -57.5,59.5 parent: 2 - - uid: 33220 + - uid: 33095 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,2.5 parent: 2 - - uid: 33221 + - uid: 33096 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 33222 + - uid: 33097 components: - type: Transform pos: -121.5,33.5 parent: 2 - - uid: 33223 + - uid: 33098 components: - type: Transform pos: 23.5,73.5 parent: 2 - - uid: 33224 + - uid: 33099 components: - type: Transform pos: 21.5,73.5 parent: 2 - - uid: 33225 + - uid: 33100 components: - type: Transform pos: 9.5,-59.5 parent: 2 - - uid: 33226 + - uid: 33101 components: - type: Transform pos: -16.5,17.5 parent: 2 - - uid: 33227 + - uid: 33102 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 33228 + - uid: 33103 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 33229 + - uid: 33104 components: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 33230 + - uid: 33105 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 33231 + - uid: 33106 components: - type: Transform pos: -1.5,33.5 parent: 2 - - uid: 33233 + - uid: 33107 components: - type: Transform pos: 15.5,-32.5 parent: 2 - - uid: 33234 + - uid: 33108 components: - type: Transform pos: 9.5,-17.5 parent: 2 - - uid: 33235 + - uid: 33109 components: - type: Transform pos: -35.5,-56.5 parent: 2 - - uid: 33236 + - uid: 33110 components: - type: Transform pos: -2.5,-37.5 parent: 2 - - uid: 33237 + - uid: 33111 components: - type: Transform pos: -2.5,-38.5 parent: 2 - - uid: 33238 + - uid: 33112 components: - type: Transform pos: -43.5,-20.5 parent: 2 - - uid: 33239 + - uid: 33113 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 33240 + - uid: 33114 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 33241 + - uid: 33115 components: - type: Transform pos: -47.5,-23.5 parent: 2 - - uid: 33242 + - uid: 33116 components: - type: Transform pos: 20.5,-23.5 parent: 2 - - uid: 33243 + - uid: 33117 components: - type: Transform pos: -31.5,-51.5 parent: 2 - - uid: 33244 + - uid: 33118 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 33245 + - uid: 33119 components: - type: Transform pos: 87.5,11.5 parent: 2 - - uid: 33246 + - uid: 33120 components: - type: Transform pos: -44.5,-20.5 parent: 2 - - uid: 33247 + - uid: 33121 components: - type: Transform pos: -33.5,-47.5 parent: 2 - - uid: 33248 + - uid: 33122 components: - type: Transform pos: -6.5,-15.5 parent: 2 - - uid: 33249 + - uid: 33123 components: - type: Transform pos: -31.5,-49.5 parent: 2 - - uid: 33250 + - uid: 33124 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 33251 + - uid: 33125 components: - type: Transform pos: 19.5,-45.5 parent: 2 - - uid: 33252 + - uid: 33126 components: - type: Transform pos: 15.5,-28.5 parent: 2 - - uid: 33253 + - uid: 33127 components: - type: Transform pos: -47.5,3.5 parent: 2 - - uid: 33254 + - uid: 33128 components: - type: Transform pos: -45.5,36.5 parent: 2 - - uid: 33255 + - uid: 33129 components: - type: Transform pos: 66.5,-23.5 parent: 2 - - uid: 33256 + - uid: 33130 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-31.5 parent: 2 - - uid: 33257 + - uid: 33131 components: - type: Transform pos: -21.5,-38.5 parent: 2 - - uid: 33258 + - uid: 33132 components: - type: Transform pos: -68.5,-18.5 parent: 2 - - uid: 33259 + - uid: 33133 components: - type: Transform pos: -73.5,3.5 parent: 2 - - uid: 33260 + - uid: 33134 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-45.5 parent: 2 - - uid: 33261 + - uid: 33135 components: - type: Transform pos: -31.5,-50.5 parent: 2 - - uid: 33262 + - uid: 33136 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - uid: 33263 + - uid: 33137 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-42.5 parent: 2 - - uid: 33264 + - uid: 33138 components: - type: Transform pos: -18.5,-22.5 parent: 2 - - uid: 33265 + - uid: 33139 components: - type: Transform pos: -31.5,-48.5 parent: 2 - - uid: 33266 + - uid: 33140 components: - type: Transform pos: -15.5,-28.5 parent: 2 - - uid: 33267 + - uid: 33141 components: - type: Transform pos: 7.5,-28.5 parent: 2 - - uid: 33269 + - uid: 33142 components: - type: Transform pos: -31.5,-30.5 parent: 2 - - uid: 33270 + - uid: 33143 components: - type: Transform pos: -60.5,60.5 parent: 2 - - uid: 33271 + - uid: 33144 components: - type: Transform pos: -60.5,61.5 parent: 2 - - uid: 33272 + - uid: 33145 components: - type: Transform pos: -60.5,59.5 parent: 2 - - uid: 33273 + - uid: 33146 components: - type: Transform pos: -68.5,59.5 parent: 2 - - uid: 33274 + - uid: 33147 components: - type: Transform pos: -68.5,56.5 parent: 2 - - uid: 33275 + - uid: 33148 components: - type: Transform pos: 9.5,-61.5 parent: 2 - - uid: 33276 + - uid: 33149 components: - type: Transform pos: -43.5,-10.5 parent: 2 - - uid: 33277 + - uid: 33150 components: - type: Transform pos: 32.5,-20.5 parent: 2 - - uid: 33278 + - uid: 33151 components: - type: Transform pos: 9.5,-29.5 parent: 2 - - uid: 33279 + - uid: 33152 components: - type: Transform pos: 20.5,-41.5 parent: 2 - - uid: 33280 + - uid: 33153 components: - type: Transform pos: -49.5,-29.5 parent: 2 - - uid: 33281 + - uid: 33154 components: - type: Transform pos: -122.5,34.5 parent: 2 - - uid: 33282 + - uid: 33155 components: - type: Transform pos: 33.5,-20.5 parent: 2 - - uid: 33283 + - uid: 33156 components: - type: Transform pos: -52.5,-49.5 parent: 2 - - uid: 33284 + - uid: 33157 components: - type: Transform pos: -69.5,-18.5 parent: 2 - - uid: 33285 + - uid: 33158 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,5.5 parent: 2 - - uid: 33286 + - uid: 33159 components: - type: Transform pos: -74.5,-3.5 parent: 2 - - uid: 33287 + - uid: 33160 components: - type: Transform pos: -55.5,-5.5 parent: 2 - - uid: 33288 + - uid: 33161 components: - type: Transform pos: -50.5,-18.5 parent: 2 - - uid: 33289 + - uid: 33162 components: - type: Transform pos: -72.5,-23.5 parent: 2 - - uid: 33290 + - uid: 33163 components: - type: Transform pos: 25.5,-56.5 parent: 2 - - uid: 33291 + - uid: 33164 components: - type: Transform pos: -58.5,-21.5 parent: 2 - - uid: 33292 + - uid: 33165 components: - type: Transform pos: 25.5,-57.5 parent: 2 - - uid: 33293 + - uid: 33166 components: - type: Transform pos: -24.5,-26.5 parent: 2 - - uid: 33294 + - uid: 33167 components: - type: Transform pos: -68.5,58.5 parent: 2 - - uid: 33295 + - uid: 33168 components: - type: Transform pos: -61.5,20.5 parent: 2 - - uid: 33296 + - uid: 33169 components: - type: Transform pos: -63.5,3.5 parent: 2 - - uid: 33297 + - uid: 33170 components: - type: Transform pos: -64.5,-1.5 parent: 2 - - uid: 33298 + - uid: 33171 components: - type: Transform pos: -64.5,-2.5 parent: 2 - - uid: 33299 + - uid: 33172 components: - type: Transform pos: 43.5,-72.5 parent: 2 - - uid: 33300 + - uid: 33173 components: - type: Transform pos: -64.5,19.5 parent: 2 - - uid: 33301 + - uid: 33174 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-5.5 parent: 2 - - uid: 33302 + - uid: 33175 components: - type: Transform pos: 22.5,-53.5 parent: 2 - - uid: 33303 + - uid: 33176 components: - type: Transform pos: 23.5,-53.5 parent: 2 - - uid: 33304 + - uid: 33177 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 33305 + - uid: 33178 components: - type: Transform pos: 43.5,-75.5 parent: 2 - - uid: 33306 + - uid: 33179 components: - type: Transform pos: -15.5,17.5 parent: 2 - - uid: 33307 + - uid: 33180 components: - type: Transform pos: -19.5,-22.5 parent: 2 - - uid: 33308 + - uid: 33181 components: - type: Transform pos: -13.5,-28.5 parent: 2 - - uid: 33309 + - uid: 33182 components: - type: Transform pos: 43.5,-68.5 parent: 2 - - uid: 33310 + - uid: 33183 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,11.5 parent: 2 - - uid: 33311 + - uid: 33184 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.5 parent: 2 - - uid: 33312 + - uid: 33185 components: - type: Transform pos: -63.5,19.5 parent: 2 - - uid: 33313 + - uid: 33186 components: - type: Transform pos: 43.5,-66.5 parent: 2 - - uid: 33314 + - uid: 33187 components: - type: Transform pos: -52.5,-18.5 parent: 2 - - uid: 33315 + - uid: 33188 components: - type: Transform pos: -48.5,-18.5 parent: 2 - - uid: 33316 + - uid: 33189 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,5.5 parent: 2 - - uid: 33317 + - uid: 33190 components: - type: Transform pos: 75.5,-5.5 parent: 2 - - uid: 33318 + - uid: 33191 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-17.5 parent: 2 - - uid: 33319 + - uid: 33192 components: - type: Transform pos: -49.5,35.5 parent: 2 - - uid: 33320 + - uid: 33193 components: - type: Transform pos: -66.5,19.5 parent: 2 - - uid: 33321 + - uid: 33194 components: - type: Transform pos: -68.5,9.5 parent: 2 - - uid: 33322 + - uid: 33195 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,4.5 parent: 2 - - uid: 33323 + - uid: 33196 components: - type: Transform pos: -24.5,-25.5 parent: 2 - - uid: 33324 + - uid: 33197 components: - type: Transform pos: -39.5,18.5 parent: 2 - - uid: 33325 + - uid: 33198 components: - type: Transform pos: -56.5,56.5 parent: 2 - - uid: 33326 + - uid: 33199 components: - type: Transform pos: -45.5,38.5 parent: 2 - - uid: 33327 + - uid: 33200 components: - type: Transform pos: -56.5,55.5 parent: 2 - - uid: 33328 + - uid: 33201 components: - type: Transform pos: -45.5,37.5 parent: 2 - - uid: 33329 + - uid: 33202 components: - type: Transform pos: -69.5,-46.5 parent: 2 - - uid: 33330 + - uid: 33203 components: - type: Transform pos: -67.5,-46.5 parent: 2 - - uid: 33331 + - uid: 33204 components: - type: Transform pos: 74.5,-5.5 parent: 2 - - uid: 33332 + - uid: 33205 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,5.5 parent: 2 - - uid: 33333 + - uid: 33206 components: - type: Transform pos: 29.5,-56.5 parent: 2 - - uid: 33334 + - uid: 33207 components: - type: Transform pos: 33.5,-64.5 parent: 2 - - uid: 33335 + - uid: 33208 components: - type: Transform pos: -59.5,3.5 parent: 2 - - uid: 33336 + - uid: 33209 components: - type: Transform pos: -61.5,-0.5 parent: 2 - - uid: 33337 + - uid: 33210 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-39.5 parent: 2 - - uid: 33338 + - uid: 33211 components: - type: Transform pos: 25.5,-60.5 parent: 2 - - uid: 33339 + - uid: 33212 components: - type: Transform pos: -21.5,-54.5 parent: 2 - - uid: 33340 + - uid: 33213 components: - type: Transform pos: -32.5,-34.5 parent: 2 - - uid: 33341 + - uid: 33214 components: - type: Transform pos: -20.5,-22.5 parent: 2 - - uid: 33342 + - uid: 33215 components: - type: Transform pos: 15.5,-14.5 parent: 2 - - uid: 33343 + - uid: 33216 components: - type: Transform pos: 12.5,-6.5 parent: 2 - - uid: 33344 + - uid: 33217 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 33345 + - uid: 33218 components: - type: Transform pos: -34.5,-47.5 parent: 2 - - uid: 33346 + - uid: 33219 components: - type: Transform pos: -33.5,-34.5 parent: 2 - - uid: 33347 + - uid: 33220 components: - type: Transform pos: 15.5,-1.5 parent: 2 - - uid: 33348 + - uid: 33221 components: - type: Transform pos: 9.5,-6.5 parent: 2 - - uid: 33349 + - uid: 33222 components: - type: Transform pos: -9.5,-17.5 parent: 2 - - uid: 33350 + - uid: 33223 components: - type: Transform pos: -25.5,-54.5 parent: 2 - - uid: 33351 + - uid: 33224 components: - type: Transform pos: -41.5,-43.5 parent: 2 - - uid: 33352 + - uid: 33225 components: - type: Transform pos: -14.5,-17.5 parent: 2 - - uid: 33353 + - uid: 33226 components: - type: Transform pos: 13.5,-0.5 parent: 2 - - uid: 33354 + - uid: 33227 components: - type: Transform pos: -25.5,-58.5 parent: 2 - - uid: 33355 + - uid: 33228 components: - type: Transform pos: -41.5,-44.5 parent: 2 - - uid: 33356 + - uid: 33229 components: - type: Transform pos: -16.5,-10.5 parent: 2 - - uid: 33357 + - uid: 33230 components: - type: Transform pos: -21.5,-37.5 parent: 2 - - uid: 33358 + - uid: 33231 components: - type: Transform pos: -21.5,-36.5 parent: 2 - - uid: 33359 + - uid: 33232 components: - type: Transform pos: 12.5,-0.5 parent: 2 - - uid: 33360 + - uid: 33233 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-44.5 parent: 2 - - uid: 33361 + - uid: 33234 components: - type: Transform pos: -35.5,-53.5 parent: 2 - - uid: 33362 + - uid: 33235 components: - type: Transform pos: -116.5,20.5 parent: 2 - - uid: 33363 + - uid: 33236 components: - type: Transform pos: 25.5,-49.5 parent: 2 - - uid: 33364 + - uid: 33237 components: - type: Transform pos: -30.5,-32.5 parent: 2 - - uid: 33365 + - uid: 33238 components: - type: Transform pos: -16.5,-60.5 parent: 2 - - uid: 33366 + - uid: 33239 components: - type: Transform pos: 76.5,-16.5 parent: 2 - - uid: 33367 + - uid: 33240 components: - type: Transform pos: 6.5,-41.5 parent: 2 - - uid: 33368 + - uid: 33241 components: - type: Transform pos: -17.5,-22.5 parent: 2 - - uid: 33369 + - uid: 33242 components: - type: Transform pos: 15.5,17.5 parent: 2 - - uid: 33370 + - uid: 33243 components: - type: Transform pos: 28.5,-58.5 parent: 2 - - uid: 33371 + - uid: 33244 components: - type: Transform pos: -43.5,49.5 parent: 2 - - uid: 33372 + - uid: 33245 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 33373 + - uid: 33246 components: - type: Transform pos: -56.5,62.5 parent: 2 - - uid: 33374 + - uid: 33247 components: - type: Transform pos: -57.5,43.5 parent: 2 - - uid: 33375 + - uid: 33248 components: - type: Transform pos: -79.5,8.5 parent: 2 - - uid: 33376 + - uid: 33249 components: - type: Transform pos: -79.5,12.5 parent: 2 - - uid: 33377 + - uid: 33250 components: - type: Transform pos: -59.5,-4.5 parent: 2 - - uid: 33378 + - uid: 33251 components: - type: Transform pos: -43.5,-9.5 parent: 2 - - uid: 33379 + - uid: 33252 components: - type: Transform pos: -49.5,-18.5 parent: 2 - - uid: 33380 + - uid: 33253 components: - type: Transform pos: -50.5,-11.5 parent: 2 - - uid: 33381 + - uid: 33254 components: - type: Transform pos: -78.5,16.5 parent: 2 - - uid: 33382 + - uid: 33255 components: - type: Transform pos: -45.5,39.5 parent: 2 - - uid: 33383 + - uid: 33256 components: - type: Transform pos: -115.5,33.5 parent: 2 - - uid: 33384 + - uid: 33257 components: - type: Transform pos: -42.5,40.5 parent: 2 - - uid: 33385 + - uid: 33258 components: - type: Transform pos: 15.5,80.5 parent: 2 - - uid: 33386 + - uid: 33259 components: - type: Transform pos: 26.5,-62.5 parent: 2 - - uid: 33387 + - uid: 33260 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-38.5 parent: 2 - - uid: 33388 + - uid: 33261 components: - type: Transform pos: 25.5,-62.5 parent: 2 - - uid: 33389 + - uid: 33262 components: - type: Transform pos: 27.5,-62.5 parent: 2 - - uid: 33390 + - uid: 33263 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,5.5 parent: 2 - - uid: 33391 + - uid: 33264 components: - type: Transform pos: -60.5,-21.5 parent: 2 - - uid: 33392 + - uid: 33265 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-20.5 parent: 2 - - uid: 33393 + - uid: 33266 components: - type: Transform pos: -61.5,0.5 parent: 2 - - uid: 33394 + - uid: 33267 components: - type: Transform pos: -60.5,3.5 parent: 2 - - uid: 33395 + - uid: 33268 components: - type: Transform pos: -78.5,-27.5 parent: 2 - - uid: 33396 + - uid: 33269 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-48.5 parent: 2 - - uid: 33397 + - uid: 33270 components: - type: Transform pos: 29.5,-58.5 parent: 2 - - uid: 33398 + - uid: 33271 components: - type: Transform pos: 25.5,-45.5 parent: 2 - - uid: 33399 + - uid: 33272 components: - type: Transform pos: -51.5,-49.5 parent: 2 - - uid: 33400 + - uid: 33273 components: - type: Transform pos: -79.5,3.5 parent: 2 - - uid: 33401 + - uid: 33274 components: - type: Transform pos: 8.5,-41.5 parent: 2 - - uid: 33402 + - uid: 33275 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,3.5 parent: 2 - - uid: 33403 + - uid: 33276 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,2.5 parent: 2 - - uid: 33404 + - uid: 33277 components: - type: Transform pos: -60.5,21.5 parent: 2 - - uid: 33405 + - uid: 33278 components: - type: Transform pos: 64.5,-1.5 parent: 2 - - uid: 33406 + - uid: 33279 components: - type: Transform pos: 42.5,-59.5 parent: 2 - - uid: 33407 + - uid: 33280 components: - type: Transform pos: -32.5,-47.5 parent: 2 - - uid: 33408 + - uid: 33281 components: - type: Transform pos: -49.5,-9.5 parent: 2 - - uid: 33409 + - uid: 33282 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-42.5 parent: 2 - - uid: 33410 + - uid: 33283 components: - type: Transform pos: -36.5,-56.5 parent: 2 - - uid: 33411 + - uid: 33284 components: - type: Transform pos: -39.5,41.5 parent: 2 - - uid: 33412 + - uid: 33285 components: - type: Transform pos: -45.5,40.5 parent: 2 - - uid: 33413 + - uid: 33286 components: - type: Transform pos: -40.5,41.5 parent: 2 - - uid: 33414 + - uid: 33287 components: - type: Transform pos: -42.5,38.5 parent: 2 - - uid: 33415 + - uid: 33288 components: - type: Transform pos: -41.5,-56.5 parent: 2 - - uid: 33416 + - uid: 33289 components: - type: Transform pos: -35.5,-55.5 parent: 2 - - uid: 33417 + - uid: 33290 components: - type: Transform pos: 90.5,19.5 parent: 2 - - uid: 33418 + - uid: 33291 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 33419 + - uid: 33292 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 33420 + - uid: 33293 components: - type: Transform pos: -76.5,-17.5 parent: 2 - - uid: 33421 + - uid: 33294 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,0.5 parent: 2 - - uid: 33422 + - uid: 33295 components: - type: Transform pos: -25.5,-56.5 parent: 2 - - uid: 33423 + - uid: 33296 components: - type: Transform pos: -41.5,-42.5 parent: 2 - - uid: 33424 + - uid: 33297 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 33425 + - uid: 33298 components: - type: Transform pos: 15.5,-0.5 parent: 2 - - uid: 33426 + - uid: 33299 components: - type: Transform pos: 15.5,5.5 parent: 2 - - uid: 33427 + - uid: 33300 components: - type: Transform pos: -49.5,-31.5 parent: 2 - - uid: 33428 + - uid: 33301 components: - type: Transform pos: -20.5,-54.5 parent: 2 - - uid: 33429 + - uid: 33302 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-43.5 parent: 2 - - uid: 33430 + - uid: 33303 components: - type: Transform pos: -29.5,-55.5 parent: 2 - - uid: 33431 + - uid: 33304 components: - type: Transform pos: 45.5,-64.5 parent: 2 - - uid: 33432 + - uid: 33305 components: - type: Transform pos: -23.5,-54.5 parent: 2 - - uid: 33433 + - uid: 33306 components: - type: Transform pos: 15.5,4.5 parent: 2 - - uid: 33434 + - uid: 33307 components: - type: Transform pos: -41.5,41.5 parent: 2 - - uid: 33435 + - uid: 33308 components: - type: Transform pos: -41.5,-45.5 parent: 2 - - uid: 33436 + - uid: 33309 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,5.5 parent: 2 - - uid: 33437 + - uid: 33310 components: - type: Transform pos: 43.5,-74.5 parent: 2 - - uid: 33438 + - uid: 33311 components: - type: Transform pos: 29.5,-62.5 parent: 2 - - uid: 33439 + - uid: 33312 components: - type: Transform pos: 43.5,-67.5 parent: 2 - - uid: 33440 + - uid: 33313 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 33441 + - uid: 33314 components: - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 33442 + - uid: 33315 components: - type: Transform pos: -39.5,-56.5 parent: 2 - - uid: 33443 + - uid: 33316 components: - type: Transform pos: -72.5,-27.5 parent: 2 - - uid: 33445 + - uid: 33317 components: - type: Transform pos: -77.5,-28.5 parent: 2 - - uid: 33446 + - uid: 33318 components: - type: Transform pos: -78.5,-29.5 parent: 2 - - uid: 33447 + - uid: 33319 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-20.5 parent: 2 - - uid: 33448 + - uid: 33320 components: - type: Transform pos: -50.5,35.5 parent: 2 - - uid: 33450 + - uid: 33321 components: - type: Transform pos: 15.5,-11.5 parent: 2 - - uid: 33451 + - uid: 33322 components: - type: Transform pos: -46.5,-20.5 parent: 2 - - uid: 33452 + - uid: 33323 components: - type: Transform pos: 10.5,-41.5 parent: 2 - - uid: 33453 + - uid: 33324 components: - type: Transform pos: -124.5,34.5 parent: 2 - - uid: 33454 + - uid: 33325 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-13.5 parent: 2 - - uid: 33455 + - uid: 33326 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-51.5 parent: 2 - - uid: 33456 + - uid: 33327 components: - type: Transform pos: 43.5,-64.5 parent: 2 - - uid: 33457 + - uid: 33328 components: - type: Transform pos: -77.5,12.5 parent: 2 - - uid: 33458 + - uid: 33329 components: - type: Transform pos: -47.5,16.5 parent: 2 - - uid: 33459 + - uid: 33330 components: - type: Transform pos: -78.5,12.5 parent: 2 - - uid: 33460 + - uid: 33331 components: - type: Transform pos: -66.5,-4.5 parent: 2 - - uid: 33461 + - uid: 33332 components: - type: Transform pos: 38.5,1.5 parent: 2 - - uid: 33462 + - uid: 33333 components: - type: Transform pos: 38.5,-0.5 parent: 2 - - uid: 33463 + - uid: 33334 components: - type: Transform pos: 47.5,-56.5 parent: 2 - - uid: 33464 + - uid: 33335 components: - type: Transform pos: 48.5,-56.5 parent: 2 - - uid: 33465 + - uid: 33336 components: - type: Transform pos: -54.5,6.5 parent: 2 - - uid: 33466 + - uid: 33337 components: - type: Transform pos: 52.5,-5.5 parent: 2 - - uid: 33467 + - uid: 33338 components: - type: Transform pos: 53.5,-5.5 parent: 2 - - uid: 33468 + - uid: 33339 components: - type: Transform pos: 80.5,-47.5 parent: 2 - - uid: 33469 + - uid: 33340 components: - type: Transform pos: -37.5,-5.5 parent: 2 - - uid: 33470 + - uid: 33341 components: - type: Transform pos: 54.5,-6.5 parent: 2 - - uid: 33471 + - uid: 33342 components: - type: Transform pos: 73.5,-14.5 parent: 2 - - uid: 33472 + - uid: 33343 components: - type: Transform pos: -66.5,10.5 parent: 2 - - uid: 33473 + - uid: 33344 components: - type: Transform pos: -65.5,12.5 parent: 2 - - uid: 33474 + - uid: 33345 components: - type: Transform pos: 24.5,59.5 parent: 2 - - uid: 33475 + - uid: 33346 components: - type: Transform pos: 24.5,58.5 parent: 2 - - uid: 33476 + - uid: 33347 components: - type: Transform pos: -43.5,7.5 parent: 2 - - uid: 33477 + - uid: 33348 components: - type: Transform pos: -60.5,12.5 parent: 2 - - uid: 33478 + - uid: 33349 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,41.5 parent: 2 - - uid: 33479 + - uid: 33350 components: - type: Transform pos: -54.5,8.5 parent: 2 - - uid: 33480 + - uid: 33351 components: - type: Transform pos: 33.5,23.5 parent: 2 - - uid: 33481 + - uid: 33352 components: - type: Transform pos: 63.5,-6.5 parent: 2 - - uid: 33482 + - uid: 33353 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-44.5 parent: 2 - - uid: 33483 + - uid: 33354 components: - type: Transform pos: -27.5,103.5 parent: 2 - - uid: 33484 + - uid: 33355 components: - type: Transform pos: 60.5,-6.5 parent: 2 - - uid: 33485 + - uid: 33356 components: - type: Transform pos: 3.5,-82.5 parent: 2 - - uid: 33486 + - uid: 33357 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,45.5 parent: 2 - - uid: 33487 + - uid: 33358 components: - type: Transform pos: -32.5,64.5 parent: 2 - - uid: 33488 + - uid: 33359 components: - type: Transform pos: 8.5,87.5 parent: 2 - - uid: 33489 + - uid: 33360 components: - type: Transform pos: -42.5,64.5 parent: 2 - - uid: 33490 + - uid: 33361 components: - type: Transform pos: -44.5,50.5 parent: 2 - - uid: 33491 + - uid: 33362 components: - type: Transform pos: -38.5,-2.5 parent: 2 - - uid: 33492 + - uid: 33363 components: - type: Transform pos: -13.5,105.5 parent: 2 - - uid: 33493 + - uid: 33364 components: - type: Transform pos: -41.5,-47.5 parent: 2 - - uid: 33494 + - uid: 33365 components: - type: Transform pos: -39.5,38.5 parent: 2 - - uid: 33495 + - uid: 33366 components: - type: Transform pos: -41.5,-46.5 parent: 2 - - uid: 33496 + - uid: 33367 components: - type: Transform pos: -30.5,-24.5 parent: 2 - - uid: 33497 + - uid: 33368 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,90.5 parent: 2 - - uid: 33498 + - uid: 33369 components: - type: Transform pos: 15.5,85.5 parent: 2 - - uid: 33499 + - uid: 33370 components: - type: Transform pos: 8.5,86.5 parent: 2 - - uid: 33500 + - uid: 33371 components: - type: Transform pos: -13.5,87.5 parent: 2 - - uid: 33501 + - uid: 33372 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-44.5 parent: 2 - - uid: 33502 + - uid: 33373 components: - type: Transform pos: -35.5,-47.5 parent: 2 - - uid: 33503 + - uid: 33374 components: - type: Transform pos: 90.5,16.5 parent: 2 - - uid: 33504 + - uid: 33375 components: - type: Transform pos: -39.5,-54.5 parent: 2 - - uid: 33505 + - uid: 33376 components: - type: Transform pos: 24.5,-56.5 parent: 2 - - uid: 33506 + - uid: 33377 components: - type: Transform pos: -31.5,103.5 parent: 2 - - uid: 33507 + - uid: 33378 components: - type: Transform pos: 16.5,80.5 parent: 2 - - uid: 33508 + - uid: 33379 components: - type: Transform pos: 25.5,64.5 parent: 2 - - uid: 33509 + - uid: 33380 components: - type: Transform pos: -40.5,-47.5 parent: 2 - - uid: 33510 + - uid: 33381 components: - type: Transform pos: -54.5,7.5 parent: 2 - - uid: 33511 + - uid: 33382 components: - type: Transform pos: -55.5,8.5 parent: 2 - - uid: 33512 + - uid: 33383 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,43.5 parent: 2 - - uid: 33513 + - uid: 33384 components: - type: Transform pos: -66.5,12.5 parent: 2 - - uid: 33514 + - uid: 33385 components: - type: Transform pos: 53.5,-39.5 parent: 2 - - uid: 33515 + - uid: 33386 components: - type: Transform pos: 53.5,-47.5 parent: 2 - - uid: 33516 + - uid: 33387 components: - type: Transform pos: 53.5,-41.5 parent: 2 - - uid: 33517 + - uid: 33388 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,40.5 parent: 2 - - uid: 33518 + - uid: 33389 components: - type: Transform pos: -39.5,-23.5 parent: 2 - - uid: 33519 + - uid: 33390 components: - type: Transform pos: -11.5,-82.5 parent: 2 - - uid: 33520 + - uid: 33391 components: - type: Transform pos: -39.5,-24.5 parent: 2 - - uid: 33521 + - uid: 33392 components: - type: Transform pos: 12.5,83.5 parent: 2 - - uid: 33522 + - uid: 33393 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,87.5 parent: 2 - - uid: 33523 + - uid: 33394 components: - type: Transform pos: 12.5,85.5 parent: 2 - - uid: 33524 + - uid: 33395 components: - type: Transform pos: -46.5,56.5 parent: 2 - - uid: 33525 + - uid: 33396 components: - type: Transform pos: 4.5,91.5 parent: 2 - - uid: 33526 + - uid: 33397 components: - type: Transform pos: -56.5,63.5 parent: 2 - - uid: 33527 + - uid: 33398 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 33528 + - uid: 33399 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,43.5 parent: 2 - - uid: 33529 + - uid: 33400 components: - type: Transform pos: -39.5,22.5 parent: 2 - - uid: 33530 + - uid: 33401 components: - type: Transform pos: -32.5,-80.5 parent: 2 - - uid: 33531 + - uid: 33402 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 33532 + - uid: 33403 components: - type: Transform pos: -37.5,-4.5 parent: 2 - - uid: 33533 + - uid: 33404 components: - type: Transform pos: -39.5,-22.5 parent: 2 - - uid: 33534 + - uid: 33405 components: - type: Transform pos: -37.5,-6.5 parent: 2 - - uid: 33535 + - uid: 33406 components: - type: Transform pos: -42.5,44.5 parent: 2 - - uid: 33536 + - uid: 33407 components: - type: Transform pos: 9.5,-32.5 parent: 2 - - uid: 33537 + - uid: 33408 components: - type: Transform pos: -43.5,36.5 parent: 2 - - uid: 33538 + - uid: 33409 components: - type: Transform pos: -43.5,3.5 parent: 2 - - uid: 33539 + - uid: 33410 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-8.5 parent: 2 - - uid: 33540 + - uid: 33411 components: - type: Transform pos: -46.5,-18.5 parent: 2 - - uid: 33541 + - uid: 33412 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-17.5 parent: 2 - - uid: 33542 + - uid: 33413 components: - type: Transform pos: -47.5,-18.5 parent: 2 - - uid: 33543 + - uid: 33414 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-8.5 parent: 2 - - uid: 33544 + - uid: 33415 components: - type: Transform pos: -43.5,2.5 parent: 2 - - uid: 33545 + - uid: 33416 components: - type: Transform pos: 22.5,-23.5 parent: 2 - - uid: 33546 + - uid: 33417 components: - type: Transform pos: -31.5,-33.5 parent: 2 - - uid: 33547 + - uid: 33418 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-17.5 parent: 2 - - uid: 33548 + - uid: 33419 components: - type: Transform pos: -78.5,-25.5 parent: 2 - - uid: 33549 + - uid: 33420 components: - type: Transform pos: -35.5,-29.5 parent: 2 - - uid: 33550 + - uid: 33421 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-13.5 parent: 2 - - uid: 33551 + - uid: 33422 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,5.5 parent: 2 - - uid: 33552 + - uid: 33423 components: - type: Transform pos: -77.5,-32.5 parent: 2 - - uid: 33553 + - uid: 33424 components: - type: Transform pos: -40.5,-34.5 parent: 2 - - uid: 33554 + - uid: 33425 components: - type: Transform pos: -12.5,17.5 parent: 2 - - uid: 33555 + - uid: 33426 components: - type: Transform pos: -123.5,34.5 parent: 2 - - uid: 33556 + - uid: 33427 components: - type: Transform pos: -39.5,-47.5 parent: 2 - - uid: 33557 + - uid: 33428 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-47.5 parent: 2 - - uid: 33558 + - uid: 33429 components: - type: Transform pos: -78.5,8.5 parent: 2 - - uid: 33559 + - uid: 33430 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-11.5 parent: 2 - - uid: 33560 + - uid: 33431 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 - - uid: 33561 + - uid: 33432 components: - type: Transform pos: 90.5,22.5 parent: 2 - - uid: 33562 + - uid: 33433 components: - type: Transform pos: 77.5,27.5 parent: 2 - - uid: 33563 + - uid: 33434 components: - type: Transform pos: -49.5,-10.5 parent: 2 - - uid: 33564 + - uid: 33435 components: - type: Transform pos: -59.5,-17.5 parent: 2 - - uid: 33565 + - uid: 33436 components: - type: Transform pos: -42.5,-20.5 parent: 2 - - uid: 33566 + - uid: 33437 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-41.5 parent: 2 - - uid: 33567 + - uid: 33438 components: - type: Transform pos: -31.5,-32.5 parent: 2 - - uid: 33568 + - uid: 33439 components: - type: Transform pos: -41.5,-39.5 parent: 2 - - uid: 33569 + - uid: 33440 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-40.5 parent: 2 - - uid: 33570 + - uid: 33441 components: - type: Transform pos: -33.5,17.5 parent: 2 - - uid: 33571 + - uid: 33442 components: - type: Transform pos: -31.5,12.5 parent: 2 - - uid: 33572 + - uid: 33443 components: - type: Transform pos: -31.5,10.5 parent: 2 - - uid: 33573 + - uid: 33444 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-8.5 parent: 2 - - uid: 33574 + - uid: 33445 components: - type: Transform pos: -31.5,-20.5 parent: 2 - - uid: 33575 + - uid: 33446 components: - type: Transform pos: -24.5,-78.5 parent: 2 - - uid: 33576 + - uid: 33447 components: - type: Transform pos: -39.5,-55.5 parent: 2 - - uid: 33577 + - uid: 33448 components: - type: Transform pos: -40.5,-70.5 parent: 2 - - uid: 33578 + - uid: 33449 components: - type: Transform pos: -31.5,-29.5 parent: 2 - - uid: 33579 + - uid: 33450 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-66.5 parent: 2 - - uid: 33580 + - uid: 33451 components: - type: Transform pos: 41.5,14.5 parent: 2 - - uid: 33581 + - uid: 33452 components: - type: Transform pos: -31.5,102.5 parent: 2 - - uid: 33582 + - uid: 33453 components: - type: Transform pos: -40.5,64.5 parent: 2 - - uid: 33583 + - uid: 33454 components: - type: Transform pos: -17.5,-82.5 parent: 2 - - uid: 33584 + - uid: 33455 components: - type: Transform pos: -40.5,-3.5 parent: 2 - - uid: 33585 + - uid: 33456 components: - type: Transform pos: -32.5,-20.5 parent: 2 - - uid: 33586 + - uid: 33457 components: - type: Transform pos: 24.5,64.5 parent: 2 - - uid: 33587 + - uid: 33458 components: - type: Transform pos: 94.5,11.5 parent: 2 - - uid: 33588 + - uid: 33459 components: - type: Transform pos: 77.5,28.5 parent: 2 - - uid: 33589 + - uid: 33460 components: - type: Transform pos: -38.5,-3.5 parent: 2 - - uid: 33590 + - uid: 33461 components: - type: Transform pos: 24.5,68.5 parent: 2 - - uid: 33591 + - uid: 33462 components: - type: Transform pos: -66.5,11.5 parent: 2 - - uid: 33592 + - uid: 33463 components: - type: Transform pos: 26.5,64.5 parent: 2 - - uid: 33593 + - uid: 33464 components: - type: Transform pos: -32.5,81.5 parent: 2 - - uid: 33594 + - uid: 33465 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,81.5 parent: 2 - - uid: 33595 + - uid: 33466 components: - type: Transform pos: 35.5,23.5 parent: 2 - - uid: 33596 + - uid: 33467 components: - type: Transform pos: 17.5,-56.5 parent: 2 - - uid: 33597 + - uid: 33468 components: - type: Transform pos: -13.5,102.5 parent: 2 - - uid: 33598 + - uid: 33469 components: - type: Transform pos: 15.5,89.5 parent: 2 - - uid: 33599 + - uid: 33470 components: - type: Transform pos: 20.5,-56.5 parent: 2 - - uid: 33600 + - uid: 33471 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 33601 + - uid: 33472 components: - type: Transform pos: -41.5,-59.5 parent: 2 - - uid: 33602 + - uid: 33473 components: - type: Transform pos: -41.5,-58.5 parent: 2 - - uid: 33603 + - uid: 33474 components: - type: Transform pos: 42.5,-56.5 parent: 2 - - uid: 33604 + - uid: 33475 components: - type: Transform pos: 54.5,-5.5 parent: 2 - - uid: 33605 + - uid: 33476 components: - type: Transform pos: 78.5,-15.5 parent: 2 - - uid: 33606 + - uid: 33477 components: - type: Transform pos: 9.5,-78.5 parent: 2 - - uid: 33607 + - uid: 33478 components: - type: Transform pos: -44.5,-14.5 parent: 2 - - uid: 33608 + - uid: 33479 components: - type: Transform pos: 74.5,4.5 parent: 2 - - uid: 33609 + - uid: 33480 components: - type: Transform pos: -55.5,-7.5 parent: 2 - - uid: 33610 + - uid: 33481 components: - type: Transform pos: -49.5,16.5 parent: 2 - - uid: 33611 + - uid: 33482 components: - type: Transform pos: -78.5,-31.5 parent: 2 - - uid: 33612 + - uid: 33483 components: - type: Transform pos: -66.5,17.5 parent: 2 - - uid: 33613 + - uid: 33484 components: - type: Transform pos: -80.5,16.5 parent: 2 - - uid: 33614 + - uid: 33485 components: - type: Transform pos: -57.5,-18.5 parent: 2 - - uid: 33615 + - uid: 33486 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 33616 + - uid: 33487 components: - type: Transform pos: -49.5,-4.5 parent: 2 - - uid: 33617 + - uid: 33488 components: - type: Transform pos: -74.5,2.5 parent: 2 - - uid: 33618 + - uid: 33489 components: - type: Transform pos: -50.5,16.5 parent: 2 - - uid: 33619 + - uid: 33490 components: - type: Transform pos: -79.5,16.5 parent: 2 - - uid: 33620 + - uid: 33491 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-13.5 parent: 2 - - uid: 33621 + - uid: 33492 components: - type: Transform pos: -47.5,35.5 parent: 2 - - uid: 33622 + - uid: 33493 components: - type: Transform pos: 36.5,29.5 parent: 2 - - uid: 33623 + - uid: 33494 components: - type: Transform pos: -37.5,38.5 parent: 2 - - uid: 33624 + - uid: 33495 components: - type: Transform pos: 72.5,4.5 parent: 2 - - uid: 33625 + - uid: 33496 components: - type: Transform pos: -68.5,54.5 parent: 2 - - uid: 33626 + - uid: 33497 components: - type: Transform pos: -14.5,70.5 parent: 2 - - uid: 33627 + - uid: 33498 components: - type: Transform pos: 8.5,-78.5 parent: 2 - - uid: 33628 + - uid: 33499 components: - type: Transform pos: 37.5,27.5 parent: 2 - - uid: 33629 + - uid: 33500 components: - type: Transform pos: 37.5,26.5 parent: 2 - - uid: 33630 + - uid: 33501 components: - type: Transform pos: -9.5,105.5 parent: 2 - - uid: 33631 + - uid: 33502 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,42.5 parent: 2 - - uid: 33632 + - uid: 33503 components: - type: Transform pos: -33.5,-80.5 parent: 2 - - uid: 33633 + - uid: 33504 components: - type: Transform pos: -27.5,26.5 parent: 2 - - uid: 33634 + - uid: 33505 components: - type: Transform pos: -44.5,49.5 parent: 2 - - uid: 33635 + - uid: 33506 components: - type: Transform pos: -24.5,-28.5 parent: 2 - - uid: 33636 + - uid: 33507 components: - type: Transform pos: -39.5,39.5 parent: 2 - - uid: 33637 + - uid: 33508 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-3.5 parent: 2 - - uid: 33638 + - uid: 33509 components: - type: Transform pos: -62.5,-4.5 parent: 2 - - uid: 33639 + - uid: 33510 components: - type: Transform pos: -42.5,52.5 parent: 2 - - uid: 33640 + - uid: 33511 components: - type: Transform pos: -44.5,53.5 parent: 2 - - uid: 33641 + - uid: 33512 components: - type: Transform pos: -68.5,11.5 parent: 2 - - uid: 33642 + - uid: 33513 components: - type: Transform pos: 38.5,5.5 parent: 2 - - uid: 33643 + - uid: 33514 components: - type: Transform pos: 7.5,-78.5 parent: 2 - - uid: 33644 + - uid: 33515 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-48.5 parent: 2 - - uid: 33645 + - uid: 33516 components: - type: Transform pos: -27.5,98.5 parent: 2 - - uid: 33646 + - uid: 33517 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-47.5 parent: 2 - - uid: 33647 + - uid: 33518 components: - type: Transform pos: -73.5,-18.5 parent: 2 - - uid: 33648 + - uid: 33519 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,51.5 parent: 2 - - uid: 33649 + - uid: 33520 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-49.5 parent: 2 - - uid: 33650 + - uid: 33521 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 33651 + - uid: 33522 components: - type: Transform pos: -66.5,8.5 parent: 2 - - uid: 33652 + - uid: 33523 components: - type: Transform pos: -45.5,26.5 parent: 2 - - uid: 33653 + - uid: 33524 components: - type: Transform pos: -53.5,-30.5 parent: 2 - - uid: 33654 + - uid: 33525 components: - type: Transform pos: 46.5,-62.5 parent: 2 - - uid: 33655 + - uid: 33526 components: - type: Transform pos: -72.5,-25.5 parent: 2 - - uid: 33656 + - uid: 33527 components: - type: Transform pos: -60.5,-15.5 parent: 2 - - uid: 33657 + - uid: 33528 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,58.5 parent: 2 - - uid: 33658 + - uid: 33529 components: - type: Transform pos: -64.5,-3.5 parent: 2 - - uid: 33659 + - uid: 33530 components: - type: Transform pos: -78.5,-22.5 parent: 2 - - uid: 33660 + - uid: 33531 components: - type: Transform pos: 30.5,-61.5 parent: 2 - - uid: 33661 + - uid: 33532 components: - type: Transform pos: -54.5,19.5 parent: 2 - - uid: 33662 + - uid: 33533 components: - type: Transform pos: -66.5,13.5 parent: 2 - - uid: 33663 + - uid: 33534 components: - type: Transform pos: -46.5,-23.5 parent: 2 - - uid: 33664 + - uid: 33535 components: - type: Transform pos: -44.5,-23.5 parent: 2 - - uid: 33665 + - uid: 33536 components: - type: Transform pos: 33.5,-61.5 parent: 2 - - uid: 33666 + - uid: 33537 components: - type: Transform pos: -2.5,-41.5 parent: 2 - - uid: 33667 + - uid: 33538 components: - type: Transform pos: 46.5,-61.5 parent: 2 - - uid: 33668 + - uid: 33539 components: - type: Transform pos: -59.5,-15.5 parent: 2 - - uid: 33669 + - uid: 33540 components: - type: Transform pos: -73.5,-4.5 parent: 2 - - uid: 33670 + - uid: 33541 components: - type: Transform pos: -75.5,-20.5 parent: 2 - - uid: 33671 + - uid: 33542 components: - type: Transform pos: -51.5,19.5 parent: 2 - - uid: 33672 + - uid: 33543 components: - type: Transform pos: -52.5,-31.5 parent: 2 - - uid: 33673 + - uid: 33544 components: - type: Transform pos: 46.5,-60.5 parent: 2 - - uid: 33674 + - uid: 33545 components: - type: Transform pos: 33.5,-59.5 parent: 2 - - uid: 33675 + - uid: 33546 components: - type: Transform pos: -19.5,-54.5 parent: 2 - - uid: 33676 + - uid: 33547 components: - type: Transform pos: -61.5,3.5 parent: 2 - - uid: 33677 + - uid: 33548 components: - type: Transform pos: -27.5,-80.5 parent: 2 - - uid: 33678 + - uid: 33549 components: - type: Transform pos: 2.5,-62.5 parent: 2 - - uid: 33679 + - uid: 33550 components: - type: Transform pos: -26.5,70.5 parent: 2 - - uid: 33680 + - uid: 33551 components: - type: Transform pos: 3.5,-73.5 parent: 2 - - uid: 33682 + - uid: 33552 components: - type: Transform pos: 90.5,20.5 parent: 2 - - uid: 33683 + - uid: 33553 components: - type: Transform pos: -31.5,7.5 parent: 2 - - uid: 33684 + - uid: 33554 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-23.5 parent: 2 - - uid: 33685 + - uid: 33555 components: - type: Transform pos: -51.5,35.5 parent: 2 - - uid: 33686 + - uid: 33556 components: - type: Transform pos: -50.5,17.5 parent: 2 - - uid: 33687 + - uid: 33557 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-20.5 parent: 2 - - uid: 33688 + - uid: 33558 components: - type: Transform pos: -78.5,-28.5 parent: 2 - - uid: 33689 + - uid: 33559 components: - type: Transform pos: 53.5,-32.5 parent: 2 - - uid: 33690 + - uid: 33560 components: - type: Transform pos: -64.5,-4.5 parent: 2 - - uid: 33691 + - uid: 33561 components: - type: Transform pos: -60.5,-10.5 parent: 2 - - uid: 33692 + - uid: 33562 components: - type: Transform pos: -58.5,43.5 parent: 2 - - uid: 33693 + - uid: 33563 components: - type: Transform pos: -38.5,41.5 parent: 2 - - uid: 33694 + - uid: 33564 components: - type: Transform pos: -66.5,14.5 parent: 2 - - uid: 33695 + - uid: 33565 components: - type: Transform pos: -22.5,-54.5 parent: 2 - - uid: 33696 + - uid: 33566 components: - type: Transform pos: -46.5,35.5 parent: 2 - - uid: 33697 + - uid: 33567 components: - type: Transform pos: -114.5,20.5 parent: 2 - - uid: 33698 + - uid: 33568 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-48.5 parent: 2 - - uid: 33699 + - uid: 33569 components: - type: Transform pos: -70.5,-18.5 parent: 2 - - uid: 33700 + - uid: 33570 components: - type: Transform pos: -80.5,12.5 parent: 2 - - uid: 33701 + - uid: 33571 components: - type: Transform pos: -58.5,-10.5 parent: 2 - - uid: 33702 + - uid: 33572 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,5.5 parent: 2 - - uid: 33703 + - uid: 33573 components: - type: Transform pos: 8.5,-36.5 parent: 2 - - uid: 33704 + - uid: 33574 components: - type: Transform pos: -59.5,-10.5 parent: 2 - - uid: 33705 + - uid: 33575 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,5.5 parent: 2 - - uid: 33706 + - uid: 33576 components: - type: Transform pos: 9.5,-36.5 parent: 2 - - uid: 33707 + - uid: 33577 components: - type: Transform pos: -24.5,-54.5 parent: 2 - - uid: 33708 + - uid: 33578 components: - type: Transform pos: 11.5,-10.5 parent: 2 - - uid: 33709 + - uid: 33579 components: - type: Transform pos: 6.5,21.5 parent: 2 - - uid: 33710 + - uid: 33580 components: - type: Transform pos: 5.5,-15.5 parent: 2 - - uid: 33711 + - uid: 33581 components: - type: Transform pos: -31.5,-53.5 parent: 2 - - uid: 33713 + - uid: 33582 components: - type: Transform pos: -53.5,-29.5 parent: 2 - - uid: 33714 + - uid: 33583 components: - type: Transform pos: -31.5,-54.5 parent: 2 - - uid: 33715 + - uid: 33584 components: - type: Transform pos: -72.5,-37.5 parent: 2 - - uid: 33716 + - uid: 33585 components: - type: Transform pos: -21.5,-49.5 parent: 2 - - uid: 33717 + - uid: 33586 components: - type: Transform pos: -21.5,-42.5 parent: 2 - - uid: 33718 + - uid: 33587 components: - type: Transform pos: -15.5,-43.5 parent: 2 - - uid: 33719 + - uid: 33588 components: - type: Transform pos: -15.5,-41.5 parent: 2 - - uid: 33720 + - uid: 33589 components: - type: Transform pos: -15.5,-44.5 parent: 2 - - uid: 33721 + - uid: 33590 components: - type: Transform pos: -21.5,-44.5 parent: 2 - - uid: 33722 + - uid: 33591 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 33723 + - uid: 33592 components: - type: Transform pos: 9.5,17.5 parent: 2 - - uid: 33724 + - uid: 33593 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-46.5 parent: 2 - - uid: 33725 + - uid: 33594 components: - type: Transform pos: -60.5,54.5 parent: 2 - - uid: 33726 + - uid: 33595 components: - type: Transform pos: -43.5,30.5 parent: 2 - - uid: 33727 + - uid: 33596 components: - type: Transform pos: -43.5,-5.5 parent: 2 - - uid: 33728 + - uid: 33597 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,11.5 parent: 2 - - uid: 33729 + - uid: 33598 components: - type: Transform pos: -21.5,-43.5 parent: 2 - - uid: 33730 + - uid: 33599 components: - type: Transform pos: 75.5,3.5 parent: 2 - - uid: 33731 + - uid: 33600 components: - type: Transform pos: -53.5,-28.5 parent: 2 - - uid: 33732 + - uid: 33601 components: - type: Transform pos: -30.5,-54.5 parent: 2 - - uid: 33733 + - uid: 33602 components: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 33734 + - uid: 33603 components: - type: Transform pos: 15.5,-13.5 parent: 2 - - uid: 33735 + - uid: 33604 components: - type: Transform pos: -7.5,-17.5 parent: 2 - - uid: 33736 + - uid: 33605 components: - type: Transform pos: 5.5,-16.5 parent: 2 - - uid: 33737 + - uid: 33606 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 33738 + - uid: 33607 components: - type: Transform pos: -67.5,17.5 parent: 2 - - uid: 33739 + - uid: 33608 components: - type: Transform pos: -61.5,-14.5 parent: 2 - - uid: 33740 + - uid: 33609 components: - type: Transform pos: -44.5,-13.5 parent: 2 - - uid: 33741 + - uid: 33610 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 33742 + - uid: 33611 components: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 33743 + - uid: 33612 components: - type: Transform pos: 5.5,17.5 parent: 2 - - uid: 33744 + - uid: 33613 components: - type: Transform pos: 15.5,-15.5 parent: 2 - - uid: 33745 + - uid: 33614 components: - type: Transform pos: -21.5,-48.5 parent: 2 - - uid: 33746 + - uid: 33615 components: - type: Transform pos: -21.5,-46.5 parent: 2 - - uid: 33747 + - uid: 33616 components: - type: Transform pos: -21.5,-47.5 parent: 2 - - uid: 33748 + - uid: 33617 components: - type: Transform pos: -115.5,20.5 parent: 2 - - uid: 33749 + - uid: 33618 components: - type: Transform pos: 3.5,-41.5 parent: 2 - - uid: 33750 + - uid: 33619 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-48.5 parent: 2 - - uid: 33751 + - uid: 33620 components: - type: Transform pos: 1.5,-41.5 parent: 2 - - uid: 33752 + - uid: 33621 components: - type: Transform pos: -120.5,21.5 parent: 2 - - uid: 33753 + - uid: 33622 components: - type: Transform pos: 2.5,-41.5 parent: 2 - - uid: 33754 + - uid: 33623 components: - type: Transform pos: 42.5,-58.5 parent: 2 - - uid: 33755 + - uid: 33624 components: - type: Transform pos: -40.5,-56.5 parent: 2 - - uid: 33756 + - uid: 33625 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 33757 + - uid: 33626 components: - type: Transform pos: 27.5,-21.5 parent: 2 - - uid: 33758 + - uid: 33627 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 33759 + - uid: 33628 components: - type: Transform pos: -54.5,-48.5 parent: 2 - - uid: 33760 + - uid: 33629 components: - type: Transform pos: -26.5,-36.5 parent: 2 - - uid: 33761 + - uid: 33630 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 33763 + - uid: 33631 components: - type: Transform pos: -75.5,-17.5 parent: 2 - - uid: 33764 + - uid: 33632 components: - type: Transform pos: 41.5,-58.5 parent: 2 - - uid: 33765 + - uid: 33633 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,26.5 parent: 2 - - uid: 33766 + - uid: 33634 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,6.5 parent: 2 - - uid: 33767 + - uid: 33635 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 33768 + - uid: 33636 components: - type: Transform pos: -11.5,21.5 parent: 2 - - uid: 33769 + - uid: 33637 components: - type: Transform pos: 15.5,-10.5 parent: 2 - - uid: 33770 + - uid: 33638 components: - type: Transform pos: -2.5,21.5 parent: 2 - - uid: 33771 + - uid: 33639 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 33772 + - uid: 33640 components: - type: Transform pos: -7.5,21.5 parent: 2 - - uid: 33773 + - uid: 33641 components: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 33774 + - uid: 33642 components: - type: Transform pos: 77.5,11.5 parent: 2 - - uid: 33775 + - uid: 33643 components: - type: Transform pos: -20.5,-48.5 parent: 2 - - uid: 33776 + - uid: 33644 components: - type: Transform pos: 10.5,21.5 parent: 2 - - uid: 33777 + - uid: 33645 components: - type: Transform pos: 27.5,-20.5 parent: 2 - - uid: 33778 + - uid: 33646 components: - type: Transform pos: -11.5,-53.5 parent: 2 - - uid: 33779 + - uid: 33647 components: - type: Transform pos: 10.5,17.5 parent: 2 - - uid: 33780 + - uid: 33648 components: - type: Transform pos: 78.5,11.5 parent: 2 - - uid: 33781 + - uid: 33649 components: - type: Transform pos: 79.5,8.5 parent: 2 - - uid: 33782 + - uid: 33650 components: - type: Transform pos: -49.5,4.5 parent: 2 - - uid: 33783 + - uid: 33651 components: - type: Transform pos: 6.5,-72.5 parent: 2 - - uid: 33784 + - uid: 33652 components: - type: Transform pos: 77.5,-47.5 parent: 2 - - uid: 33785 + - uid: 33653 components: - type: Transform pos: -49.5,7.5 parent: 2 - - uid: 33787 + - uid: 33654 components: - type: Transform pos: 3.5,70.5 parent: 2 - - uid: 33788 + - uid: 33655 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,90.5 parent: 2 - - uid: 33789 + - uid: 33656 components: - type: Transform pos: 9.5,-58.5 parent: 2 - - uid: 33790 + - uid: 33657 components: - type: Transform pos: -79.5,-1.5 parent: 2 - - uid: 33791 + - uid: 33658 components: - type: Transform pos: 44.5,23.5 parent: 2 - - uid: 33792 + - uid: 33659 components: - type: Transform pos: 46.5,25.5 parent: 2 - - uid: 33793 + - uid: 33660 components: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 33794 + - uid: 33661 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-45.5 parent: 2 - - uid: 33795 + - uid: 33662 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,11.5 parent: 2 - - uid: 33796 + - uid: 33663 components: - type: Transform pos: 80.5,-41.5 parent: 2 - - uid: 33797 + - uid: 33664 components: - type: Transform pos: -78.5,-1.5 parent: 2 - - uid: 33798 + - uid: 33665 components: - type: Transform pos: 53.5,-48.5 parent: 2 - - uid: 33799 + - uid: 33666 components: - type: Transform pos: 7.5,-79.5 parent: 2 - - uid: 33800 + - uid: 33667 components: - type: Transform pos: 31.5,25.5 parent: 2 - - uid: 33801 + - uid: 33668 components: - type: Transform pos: 9.5,-57.5 parent: 2 - - uid: 33802 + - uid: 33669 components: - type: Transform pos: -40.5,-77.5 parent: 2 - - uid: 33803 + - uid: 33670 components: - type: Transform pos: -27.5,74.5 parent: 2 - - uid: 33804 + - uid: 33671 components: - type: Transform pos: 30.5,25.5 parent: 2 - - uid: 33805 + - uid: 33672 components: - type: Transform pos: -64.5,12.5 parent: 2 - - uid: 33806 + - uid: 33673 components: - type: Transform pos: -44.5,10.5 parent: 2 - - uid: 33807 + - uid: 33674 components: - type: Transform pos: -44.5,7.5 parent: 2 - - uid: 33808 + - uid: 33675 components: - type: Transform pos: 71.5,-37.5 parent: 2 - - uid: 33809 + - uid: 33676 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,74.5 parent: 2 - - uid: 33810 + - uid: 33677 components: - type: Transform pos: 8.5,-72.5 parent: 2 - - uid: 33811 + - uid: 33678 components: - type: Transform pos: 71.5,-36.5 parent: 2 - - uid: 33812 + - uid: 33679 components: - type: Transform pos: 71.5,-51.5 parent: 2 - - uid: 33813 + - uid: 33680 components: - type: Transform pos: 38.5,24.5 parent: 2 - - uid: 33814 + - uid: 33681 components: - type: Transform pos: 5.5,-82.5 parent: 2 - - uid: 33815 + - uid: 33682 components: - type: Transform pos: 7.5,-72.5 parent: 2 - - uid: 33816 + - uid: 33683 components: - type: Transform pos: 4.5,-72.5 parent: 2 - - uid: 33817 + - uid: 33684 components: - type: Transform pos: 33.5,25.5 parent: 2 - - uid: 33818 + - uid: 33685 components: - type: Transform pos: 50.5,10.5 parent: 2 - - uid: 33819 + - uid: 33686 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,75.5 parent: 2 - - uid: 33820 + - uid: 33687 components: - type: Transform pos: 56.5,-44.5 parent: 2 - - uid: 33822 + - uid: 33688 components: - type: Transform pos: 57.5,-37.5 parent: 2 - - uid: 33823 + - uid: 33689 components: - type: Transform pos: 54.5,-41.5 parent: 2 - - uid: 33824 + - uid: 33690 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,0.5 parent: 2 - - uid: 33825 + - uid: 33691 components: - type: Transform pos: 57.5,-36.5 parent: 2 - - uid: 33826 + - uid: 33692 components: - type: Transform pos: 54.5,-52.5 parent: 2 - - uid: 33827 + - uid: 33693 components: - type: Transform pos: 27.5,12.5 parent: 2 - - uid: 33828 + - uid: 33694 components: - type: Transform pos: 27.5,10.5 parent: 2 - - uid: 33829 + - uid: 33695 components: - type: Transform pos: 18.5,-56.5 parent: 2 - - uid: 33830 + - uid: 33696 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-44.5 parent: 2 - - uid: 33831 + - uid: 33697 components: - type: Transform pos: -58.5,4.5 parent: 2 - - uid: 33832 + - uid: 33698 components: - type: Transform pos: 9.5,-72.5 parent: 2 - - uid: 33833 + - uid: 33699 components: - type: Transform pos: 23.5,23.5 parent: 2 - - uid: 33834 + - uid: 33700 components: - type: Transform pos: 12.5,88.5 parent: 2 - - uid: 33835 + - uid: 33701 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 33836 + - uid: 33702 components: - type: Transform pos: 27.5,18.5 parent: 2 - - uid: 33837 + - uid: 33703 components: - type: Transform pos: 22.5,62.5 parent: 2 - - uid: 33838 + - uid: 33704 components: - type: Transform pos: -120.5,22.5 parent: 2 - - uid: 33839 + - uid: 33705 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,28.5 parent: 2 - - uid: 33840 + - uid: 33706 components: - type: Transform pos: 13.5,89.5 parent: 2 - - uid: 33841 + - uid: 33707 components: - type: Transform pos: -80.5,-1.5 parent: 2 - - uid: 33842 + - uid: 33708 components: - type: Transform pos: -75.5,-10.5 parent: 2 - - uid: 33843 + - uid: 33709 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,2.5 parent: 2 - - uid: 33844 + - uid: 33710 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,27.5 parent: 2 - - uid: 33845 + - uid: 33711 components: - type: Transform pos: 56.5,-48.5 parent: 2 - - uid: 33846 + - uid: 33712 components: - type: Transform pos: 76.5,-47.5 parent: 2 - - uid: 33847 + - uid: 33713 components: - type: Transform pos: 7.5,-80.5 parent: 2 - - uid: 33848 + - uid: 33714 components: - type: Transform pos: -41.5,-72.5 parent: 2 - - uid: 33849 + - uid: 33715 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,27.5 parent: 2 - - uid: 33850 + - uid: 33716 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 33851 + - uid: 33717 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-41.5 parent: 2 - - uid: 33852 + - uid: 33718 components: - type: Transform pos: 24.5,73.5 parent: 2 - - uid: 33853 + - uid: 33719 components: - type: Transform pos: 28.5,68.5 parent: 2 - - uid: 33854 + - uid: 33720 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,27.5 parent: 2 - - uid: 33855 + - uid: 33721 components: - type: Transform pos: 28.5,20.5 parent: 2 - - uid: 33856 + - uid: 33722 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,27.5 parent: 2 - - uid: 33857 + - uid: 33723 components: - type: Transform pos: 54.5,-33.5 parent: 2 - - uid: 33858 + - uid: 33724 components: - type: Transform pos: 57.5,-35.5 parent: 2 - - uid: 33859 + - uid: 33725 components: - type: Transform pos: 38.5,-56.5 parent: 2 - - uid: 33860 + - uid: 33726 components: - type: Transform pos: 34.5,26.5 parent: 2 - - uid: 33861 + - uid: 33727 components: - type: Transform pos: 44.5,-1.5 parent: 2 - - uid: 33862 + - uid: 33728 components: - type: Transform pos: 30.5,-56.5 parent: 2 - - uid: 33863 + - uid: 33729 components: - type: Transform pos: 54.5,-53.5 parent: 2 - - uid: 33864 + - uid: 33730 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,45.5 parent: 2 - - uid: 33865 + - uid: 33731 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,42.5 parent: 2 - - uid: 33866 + - uid: 33732 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,45.5 parent: 2 - - uid: 33867 + - uid: 33733 components: - type: Transform pos: 49.5,-56.5 parent: 2 - - uid: 33868 + - uid: 33734 components: - type: Transform pos: 53.5,-56.5 parent: 2 - - uid: 33869 + - uid: 33735 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,45.5 parent: 2 - - uid: 33870 + - uid: 33736 components: - type: Transform pos: 22.5,58.5 parent: 2 - - uid: 33871 + - uid: 33737 components: - type: Transform pos: 22.5,64.5 parent: 2 - - uid: 33872 + - uid: 33738 components: - type: Transform pos: -59.5,4.5 parent: 2 - - uid: 33873 + - uid: 33739 components: - type: Transform pos: 24.5,69.5 parent: 2 - - uid: 33874 + - uid: 33740 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,43.5 parent: 2 - - uid: 33875 + - uid: 33741 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,44.5 parent: 2 - - uid: 33876 + - uid: 33742 components: - type: Transform pos: -40.5,-71.5 parent: 2 - - uid: 33877 + - uid: 33743 components: - type: Transform pos: 8.5,89.5 parent: 2 - - uid: 33878 + - uid: 33744 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,45.5 parent: 2 - - uid: 33879 + - uid: 33745 components: - type: Transform pos: -43.5,-24.5 parent: 2 - - uid: 33880 + - uid: 33746 components: - type: Transform pos: -31.5,93.5 parent: 2 - - uid: 33881 + - uid: 33747 components: - type: Transform pos: 22.5,63.5 parent: 2 - - uid: 33882 + - uid: 33748 components: - type: Transform pos: -56.5,-49.5 parent: 2 - - uid: 33883 + - uid: 33749 components: - type: Transform pos: -60.5,-51.5 parent: 2 - - uid: 33884 + - uid: 33750 components: - type: Transform pos: -25.5,-23.5 parent: 2 - - uid: 33885 + - uid: 33751 components: - type: Transform pos: 33.5,5.5 parent: 2 - - uid: 33886 + - uid: 33752 components: - type: Transform pos: -70.5,-46.5 parent: 2 - - uid: 33887 + - uid: 33753 components: - type: Transform pos: 37.5,3.5 parent: 2 - - uid: 33888 + - uid: 33754 components: - type: Transform pos: -34.5,-20.5 parent: 2 - - uid: 33889 + - uid: 33755 components: - type: Transform pos: -25.5,-24.5 parent: 2 - - uid: 33890 + - uid: 33756 components: - type: Transform pos: 25.5,-61.5 parent: 2 - - uid: 33891 + - uid: 33757 components: - type: Transform pos: -24.5,70.5 parent: 2 - - uid: 33892 + - uid: 33758 components: - type: Transform pos: 8.5,83.5 parent: 2 - - uid: 33893 + - uid: 33759 components: - type: Transform pos: 77.5,7.5 parent: 2 - - uid: 33894 + - uid: 33760 components: - type: Transform pos: 9.5,83.5 parent: 2 - - uid: 33895 + - uid: 33761 components: - type: Transform pos: -56.5,-50.5 parent: 2 - - uid: 33896 + - uid: 33762 components: - type: Transform pos: -60.5,-50.5 parent: 2 - - uid: 33897 + - uid: 33763 components: - type: Transform pos: -72.5,-38.5 parent: 2 - - uid: 33898 + - uid: 33764 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,18.5 parent: 2 - - uid: 33899 + - uid: 33765 components: - type: Transform pos: -25.5,-22.5 parent: 2 - - uid: 33900 + - uid: 33766 components: - type: Transform pos: 75.5,-50.5 parent: 2 - - uid: 33901 + - uid: 33767 components: - type: Transform pos: -56.5,-51.5 parent: 2 - - uid: 33902 + - uid: 33768 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,40.5 parent: 2 - - uid: 33903 + - uid: 33769 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,19.5 parent: 2 - - uid: 33904 + - uid: 33770 components: - type: Transform pos: 32.5,25.5 parent: 2 - - uid: 33905 + - uid: 33771 components: - type: Transform pos: 37.5,32.5 parent: 2 - - uid: 33906 + - uid: 33772 components: - type: Transform pos: -60.5,-48.5 parent: 2 - - uid: 33907 + - uid: 33773 components: - type: Transform pos: -24.5,-75.5 parent: 2 - - uid: 33908 + - uid: 33774 components: - type: Transform pos: 19.5,21.5 parent: 2 - - uid: 33909 + - uid: 33775 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 33910 + - uid: 33776 components: - type: Transform pos: -35.5,-30.5 parent: 2 - - uid: 33911 + - uid: 33777 components: - type: Transform pos: -31.5,16.5 parent: 2 - - uid: 33912 + - uid: 33778 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,48.5 parent: 2 - - uid: 33913 + - uid: 33779 components: - type: Transform pos: -24.5,-22.5 parent: 2 - - uid: 33914 + - uid: 33780 components: - type: Transform pos: -43.5,-72.5 parent: 2 - - uid: 33915 + - uid: 33781 components: - type: Transform pos: 8.5,-56.5 parent: 2 - - uid: 33916 + - uid: 33782 components: - type: Transform pos: -35.5,-20.5 parent: 2 - - uid: 33917 + - uid: 33783 components: - type: Transform pos: -31.5,-31.5 parent: 2 - - uid: 33918 + - uid: 33784 components: - type: Transform pos: 19.5,-50.5 parent: 2 - - uid: 33919 + - uid: 33785 components: - type: Transform pos: -35.5,-21.5 parent: 2 - - uid: 33920 + - uid: 33786 components: - type: Transform pos: 19.5,-48.5 parent: 2 - - uid: 33921 + - uid: 33787 components: - type: Transform pos: -26.5,-20.5 parent: 2 - - uid: 33922 + - uid: 33788 components: - type: Transform pos: -50.5,43.5 parent: 2 - - uid: 33923 + - uid: 33789 components: - type: Transform pos: -32.5,22.5 parent: 2 - - uid: 33924 + - uid: 33790 components: - type: Transform pos: -37.5,22.5 parent: 2 - - uid: 33925 + - uid: 33791 components: - type: Transform pos: -33.5,22.5 parent: 2 - - uid: 33926 + - uid: 33792 components: - type: Transform pos: -41.5,38.5 parent: 2 - - uid: 33927 + - uid: 33793 components: - type: Transform pos: -73.5,13.5 parent: 2 - - uid: 33928 + - uid: 33794 components: - type: Transform pos: -45.5,35.5 parent: 2 - - uid: 33929 + - uid: 33795 components: - type: Transform pos: -74.5,10.5 parent: 2 - - uid: 33930 + - uid: 33796 components: - type: Transform pos: -74.5,12.5 parent: 2 - - uid: 33931 + - uid: 33797 components: - type: Transform pos: -68.5,13.5 parent: 2 - - uid: 33932 + - uid: 33798 components: - type: Transform pos: -59.5,-18.5 parent: 2 - - uid: 33933 + - uid: 33799 components: - type: Transform pos: -72.5,-26.5 parent: 2 - - uid: 33934 + - uid: 33800 components: - type: Transform pos: -74.5,11.5 parent: 2 - - uid: 33935 + - uid: 33801 components: - type: Transform pos: -74.5,13.5 parent: 2 - - uid: 33936 + - uid: 33802 components: - type: Transform pos: -68.5,12.5 parent: 2 - - uid: 33937 + - uid: 33803 components: - type: Transform pos: -26.5,28.5 parent: 2 - - uid: 33938 + - uid: 33804 components: - type: Transform pos: -69.5,13.5 parent: 2 - - uid: 33939 + - uid: 33805 components: - type: Transform pos: -46.5,7.5 parent: 2 - - uid: 33940 + - uid: 33806 components: - type: Transform pos: -72.5,13.5 parent: 2 - - uid: 33941 + - uid: 33807 components: - type: Transform pos: -74.5,9.5 parent: 2 - - uid: 33942 + - uid: 33808 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,5.5 parent: 2 - - uid: 33943 + - uid: 33809 components: - type: Transform pos: -61.5,-18.5 parent: 2 - - uid: 33944 + - uid: 33810 components: - type: Transform pos: -64.5,3.5 parent: 2 - - uid: 33945 + - uid: 33811 components: - type: Transform pos: -58.5,-18.5 parent: 2 - - uid: 33946 + - uid: 33812 components: - type: Transform pos: -55.5,-10.5 parent: 2 - - uid: 33947 + - uid: 33813 components: - type: Transform pos: -43.5,-1.5 parent: 2 - - uid: 33948 + - uid: 33814 components: - type: Transform pos: -63.5,-18.5 parent: 2 - - uid: 33949 + - uid: 33815 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 33950 + - uid: 33816 components: - type: Transform pos: -43.5,-34.5 parent: 2 - - uid: 33951 + - uid: 33817 components: - type: Transform pos: -78.5,13.5 parent: 2 - - uid: 33952 + - uid: 33818 components: - type: Transform pos: -79.5,2.5 parent: 2 - - uid: 33953 + - uid: 33819 components: - type: Transform pos: -77.5,2.5 parent: 2 - - uid: 33954 + - uid: 33820 components: - type: Transform pos: -42.5,-34.5 parent: 2 - - uid: 33955 + - uid: 33821 components: - type: Transform pos: 32.5,36.5 parent: 2 - - uid: 33956 + - uid: 33822 components: - type: Transform pos: 32.5,37.5 parent: 2 - - uid: 33957 + - uid: 33823 components: - type: Transform pos: 32.5,38.5 parent: 2 - - uid: 33958 + - uid: 33824 components: - type: Transform pos: -45.5,31.5 parent: 2 - - uid: 33959 + - uid: 33825 components: - type: Transform pos: -48.5,35.5 parent: 2 - - uid: 33960 + - uid: 33826 components: - type: Transform pos: -56.5,-10.5 parent: 2 - - uid: 33961 + - uid: 33827 components: - type: Transform pos: -27.5,-20.5 parent: 2 - - uid: 33962 + - uid: 33828 components: - type: Transform pos: -44.5,54.5 parent: 2 - - uid: 33963 + - uid: 33829 components: - type: Transform pos: -37.5,41.5 parent: 2 - - uid: 33964 + - uid: 33830 components: - type: Transform pos: -44.5,55.5 parent: 2 - - uid: 33965 + - uid: 33831 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,87.5 parent: 2 - - uid: 33966 + - uid: 33832 components: - type: Transform pos: 54.5,-8.5 parent: 2 - - uid: 33967 + - uid: 33833 components: - type: Transform pos: -121.5,20.5 parent: 2 - - uid: 33968 + - uid: 33834 components: - type: Transform pos: -56.5,52.5 parent: 2 - - uid: 33969 + - uid: 33835 components: - type: Transform pos: -78.5,-3.5 parent: 2 - - uid: 33970 + - uid: 33836 components: - type: Transform pos: 43.5,24.5 parent: 2 - - uid: 33971 + - uid: 33837 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-41.5 parent: 2 - - uid: 33972 + - uid: 33838 components: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 33973 + - uid: 33839 components: - type: Transform pos: 66.5,-31.5 parent: 2 - - uid: 33974 + - uid: 33840 components: - type: Transform pos: -43.5,4.5 parent: 2 - - uid: 33975 + - uid: 33841 components: - type: Transform pos: 75.5,-39.5 parent: 2 - - uid: 33976 + - uid: 33842 components: - type: Transform pos: 34.5,27.5 parent: 2 - - uid: 33977 + - uid: 33843 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,5.5 parent: 2 - - uid: 33978 + - uid: 33844 components: - type: Transform pos: -102.5,5.5 parent: 2 - - uid: 33979 + - uid: 33845 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,3.5 parent: 2 - - uid: 33980 + - uid: 33846 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-17.5 parent: 2 - - uid: 33981 + - uid: 33847 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-1.5 parent: 2 - - uid: 33982 + - uid: 33848 components: - type: Transform pos: 89.5,11.5 parent: 2 - - uid: 33983 + - uid: 33849 components: - type: Transform pos: 71.5,-1.5 parent: 2 - - uid: 33984 + - uid: 33850 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,8.5 parent: 2 - - uid: 33985 + - uid: 33851 components: - type: Transform pos: 71.5,-35.5 parent: 2 - - uid: 33986 + - uid: 33852 components: - type: Transform pos: -64.5,-48.5 parent: 2 - - uid: 33987 + - uid: 33853 components: - type: Transform pos: -62.5,-48.5 parent: 2 - - uid: 33988 + - uid: 33854 components: - type: Transform pos: -31.5,8.5 parent: 2 - - uid: 33989 + - uid: 33855 components: - type: Transform pos: -51.5,36.5 parent: 2 - - uid: 33990 + - uid: 33856 components: - type: Transform pos: -51.5,39.5 parent: 2 - - uid: 33991 + - uid: 33857 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,31.5 parent: 2 - - uid: 33992 + - uid: 33858 components: - type: Transform pos: -48.5,16.5 parent: 2 - - uid: 33993 + - uid: 33859 components: - type: Transform pos: -51.5,37.5 parent: 2 - - uid: 33994 + - uid: 33860 components: - type: Transform pos: -16.5,-12.5 parent: 2 - - uid: 33995 + - uid: 33861 components: - type: Transform pos: -68.5,4.5 parent: 2 - - uid: 33996 + - uid: 33862 components: - type: Transform pos: -3.5,-28.5 parent: 2 - - uid: 33997 + - uid: 33863 components: - type: Transform pos: -31.5,9.5 parent: 2 - - uid: 33998 + - uid: 33864 components: - type: Transform pos: 90.5,11.5 parent: 2 - - uid: 33999 + - uid: 33865 components: - type: Transform pos: -57.5,21.5 parent: 2 - - uid: 34000 + - uid: 33866 components: - type: Transform pos: -60.5,46.5 parent: 2 - - uid: 34001 + - uid: 33867 components: - type: Transform pos: 16.5,76.5 parent: 2 - - uid: 34002 + - uid: 33868 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,2.5 parent: 2 - - uid: 34003 + - uid: 33869 components: - type: Transform pos: 37.5,28.5 parent: 2 - - uid: 34004 + - uid: 33870 components: - type: Transform pos: 75.5,-37.5 parent: 2 - - uid: 34005 + - uid: 33871 components: - type: Transform pos: -43.5,-33.5 parent: 2 - - uid: 34006 + - uid: 33872 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 34007 + - uid: 33873 components: - type: Transform pos: -43.5,-31.5 parent: 2 - - uid: 34008 + - uid: 33874 components: - type: Transform pos: -59.5,59.5 parent: 2 - - uid: 34009 + - uid: 33875 components: - type: Transform pos: -79.5,-17.5 parent: 2 - - uid: 34011 + - uid: 33876 components: - type: Transform pos: -66.5,-29.5 parent: 2 - - uid: 34012 + - uid: 33877 components: - type: Transform pos: -63.5,-4.5 parent: 2 - - uid: 34013 + - uid: 33878 components: - type: Transform pos: -51.5,-31.5 parent: 2 - - uid: 34014 + - uid: 33879 components: - type: Transform pos: 25.5,-41.5 parent: 2 - - uid: 34015 + - uid: 33880 components: - type: Transform pos: -32.5,-56.5 parent: 2 - - uid: 34016 + - uid: 33881 components: - type: Transform pos: 43.5,-59.5 parent: 2 - - uid: 34017 + - uid: 33882 components: - type: Transform pos: 90.5,23.5 parent: 2 - - uid: 34018 + - uid: 33883 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 34019 + - uid: 33884 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,11.5 parent: 2 - - uid: 34020 + - uid: 33885 components: - type: Transform pos: -41.5,-41.5 parent: 2 - - uid: 34021 + - uid: 33886 components: - type: Transform pos: -21.5,-51.5 parent: 2 - - uid: 34022 + - uid: 33887 components: - type: Transform pos: -50.5,-49.5 parent: 2 - - uid: 34023 + - uid: 33888 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,7.5 parent: 2 - - uid: 34024 + - uid: 33889 components: - type: Transform pos: -16.5,-14.5 parent: 2 - - uid: 34025 + - uid: 33890 components: - type: Transform pos: -16.5,-13.5 parent: 2 - - uid: 34026 + - uid: 33891 components: - type: Transform pos: -2.5,19.5 parent: 2 - - uid: 34027 + - uid: 33892 components: - type: Transform pos: -78.5,2.5 parent: 2 - - uid: 34028 + - uid: 33893 components: - type: Transform pos: 45.5,-59.5 parent: 2 - - uid: 34029 + - uid: 33894 components: - type: Transform pos: -32.5,-55.5 parent: 2 - - uid: 34030 + - uid: 33895 components: - type: Transform pos: -40.5,-46.5 parent: 2 - - uid: 34031 + - uid: 33896 components: - type: Transform pos: 24.5,-41.5 parent: 2 - - uid: 34032 + - uid: 33897 components: - type: Transform pos: 59.5,-6.5 parent: 2 - - uid: 34033 + - uid: 33898 components: - type: Transform pos: -42.5,-56.5 parent: 2 - - uid: 34034 + - uid: 33899 components: - type: Transform pos: -50.5,-31.5 parent: 2 - - uid: 34035 + - uid: 33900 components: - type: Transform pos: -24.5,-48.5 parent: 2 - - uid: 34036 + - uid: 33901 components: - type: Transform pos: -16.5,-24.5 parent: 2 - - uid: 34037 + - uid: 33902 components: - type: Transform pos: -8.5,-53.5 parent: 2 - - uid: 34038 + - uid: 33903 components: - type: Transform pos: -16.5,-30.5 parent: 2 - - uid: 34039 + - uid: 33904 components: - type: Transform pos: -62.5,-21.5 parent: 2 - - uid: 34041 + - uid: 33905 components: - type: Transform pos: -68.5,-29.5 parent: 2 - - uid: 34042 + - uid: 33906 components: - type: Transform pos: 19.5,-41.5 parent: 2 - - uid: 34043 + - uid: 33907 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-13.5 parent: 2 - - uid: 34044 + - uid: 33908 components: - type: Transform pos: -2.5,-51.5 parent: 2 - - uid: 34045 + - uid: 33909 components: - type: Transform pos: -16.5,-16.5 parent: 2 - - uid: 34046 + - uid: 33910 components: - type: Transform pos: -16.5,-15.5 parent: 2 - - uid: 34047 + - uid: 33911 components: - type: Transform pos: 15.5,-12.5 parent: 2 - - uid: 34048 + - uid: 33912 components: - type: Transform pos: 36.5,-56.5 parent: 2 - - uid: 34049 + - uid: 33913 components: - type: Transform pos: -45.5,42.5 parent: 2 - - uid: 34050 + - uid: 33914 components: - type: Transform pos: 3.5,9.5 parent: 2 - - uid: 34051 + - uid: 33915 components: - type: Transform pos: 3.5,8.5 parent: 2 - - uid: 34052 + - uid: 33916 components: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 34053 + - uid: 33917 components: - type: Transform pos: 3.5,6.5 parent: 2 - - uid: 34054 + - uid: 33918 components: - type: Transform pos: 4.5,6.5 parent: 2 - - uid: 34055 + - uid: 33919 components: - type: Transform pos: 5.5,6.5 parent: 2 - - uid: 34056 + - uid: 33920 components: - type: Transform pos: 5.5,5.5 parent: 2 - - uid: 34057 + - uid: 33921 components: - type: Transform pos: 5.5,4.5 parent: 2 - - uid: 34058 + - uid: 33922 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 34059 + - uid: 33923 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 34060 + - uid: 33924 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 34061 + - uid: 33925 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 34062 + - uid: 33926 components: - type: Transform pos: 5.5,-0.5 parent: 2 - - uid: 34063 + - uid: 33927 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 34064 + - uid: 33928 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 34065 + - uid: 33929 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 34066 + - uid: 33930 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 34067 + - uid: 33931 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 34068 + - uid: 33932 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 34069 + - uid: 33933 components: - type: Transform pos: -6.5,-4.5 parent: 2 - - uid: 34070 + - uid: 33934 components: - type: Transform pos: -6.5,-3.5 parent: 2 - - uid: 34071 + - uid: 33935 components: - type: Transform pos: -6.5,-2.5 parent: 2 - - uid: 34072 + - uid: 33936 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 34073 + - uid: 33937 components: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 34074 + - uid: 33938 components: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 34075 + - uid: 33939 components: - type: Transform pos: -6.5,1.5 parent: 2 - - uid: 34076 + - uid: 33940 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 34077 + - uid: 33941 components: - type: Transform pos: -6.5,3.5 parent: 2 - - uid: 34078 + - uid: 33942 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 34079 + - uid: 33943 components: - type: Transform pos: -6.5,5.5 parent: 2 - - uid: 34080 + - uid: 33944 components: - type: Transform pos: -6.5,6.5 parent: 2 - - uid: 34081 + - uid: 33945 components: - type: Transform pos: -5.5,6.5 parent: 2 - - uid: 34082 + - uid: 33946 components: - type: Transform pos: -4.5,6.5 parent: 2 - - uid: 34083 + - uid: 33947 components: - type: Transform pos: -4.5,7.5 parent: 2 - - uid: 34084 + - uid: 33948 components: - type: Transform pos: -4.5,8.5 parent: 2 - - uid: 34085 + - uid: 33949 components: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 34086 + - uid: 33950 components: - type: Transform pos: 3.5,10.5 parent: 2 - - uid: 34087 + - uid: 33951 components: - type: Transform pos: 2.5,10.5 parent: 2 - - uid: 34088 + - uid: 33952 components: - type: Transform pos: 1.5,10.5 parent: 2 - - uid: 34089 + - uid: 33953 components: - type: Transform pos: 0.5,10.5 parent: 2 - - uid: 34090 + - uid: 33954 components: - type: Transform pos: -1.5,10.5 parent: 2 - - uid: 34091 + - uid: 33955 components: - type: Transform pos: -2.5,10.5 parent: 2 - - uid: 34092 + - uid: 33956 components: - type: Transform pos: -3.5,10.5 parent: 2 - - uid: 34093 + - uid: 33957 components: - type: Transform pos: -4.5,10.5 parent: 2 - - uid: 34094 + - uid: 33958 components: - type: Transform pos: 54.5,-9.5 parent: 2 - - uid: 34095 + - uid: 33959 components: - type: Transform pos: 75.5,-35.5 parent: 2 - - uid: 34096 + - uid: 33960 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-19.5 parent: 2 - - uid: 34097 + - uid: 33961 components: - type: Transform pos: -39.5,17.5 parent: 2 - - uid: 34098 + - uid: 33962 components: - type: Transform pos: -31.5,-21.5 parent: 2 - - uid: 34099 + - uid: 33963 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-48.5 parent: 2 - - uid: 34100 + - uid: 33964 components: - type: Transform pos: -8.5,-17.5 parent: 2 - - uid: 34101 + - uid: 33965 components: - type: Transform pos: -40.5,-2.5 parent: 2 - - uid: 34102 + - uid: 33966 components: - type: Transform pos: -32.5,17.5 parent: 2 - - uid: 34103 + - uid: 33967 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,15.5 parent: 2 - - uid: 34104 + - uid: 33968 components: - type: Transform pos: -68.5,8.5 parent: 2 - - uid: 34105 + - uid: 33969 components: - type: Transform pos: -75.5,-32.5 parent: 2 - - uid: 34106 + - uid: 33970 components: - type: Transform pos: -13.5,17.5 parent: 2 - - uid: 34107 + - uid: 33971 components: - type: Transform pos: -41.5,-40.5 parent: 2 - - uid: 34108 + - uid: 33972 components: - type: Transform pos: -53.5,-31.5 parent: 2 - - uid: 34109 + - uid: 33973 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 34110 + - uid: 33974 components: - type: Transform pos: -62.5,-0.5 parent: 2 - - uid: 34111 + - uid: 33975 components: - type: Transform pos: -17.5,-54.5 parent: 2 - - uid: 34112 + - uid: 33976 components: - type: Transform pos: -31.5,-35.5 parent: 2 - - uid: 34113 + - uid: 33977 components: - type: Transform pos: 5.5,-14.5 parent: 2 - - uid: 34114 + - uid: 33978 components: - type: Transform pos: 10.5,-17.5 parent: 2 - - uid: 34115 + - uid: 33979 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,51.5 parent: 2 - - uid: 34116 + - uid: 33980 components: - type: Transform pos: -39.5,-32.5 parent: 2 - - uid: 34117 + - uid: 33981 components: - type: Transform pos: -38.5,22.5 parent: 2 - - uid: 34118 + - uid: 33982 components: - type: Transform pos: 34.5,25.5 parent: 2 - - uid: 34119 + - uid: 33983 components: - type: Transform pos: -50.5,42.5 parent: 2 - - uid: 34120 + - uid: 33984 components: - type: Transform pos: -31.5,-25.5 parent: 2 - - uid: 34121 + - uid: 33985 components: - type: Transform pos: 37.5,-56.5 parent: 2 - - uid: 34122 + - uid: 33986 components: - type: Transform pos: 32.5,-56.5 parent: 2 - - uid: 34123 + - uid: 33987 components: - type: Transform pos: 78.5,-1.5 parent: 2 - - uid: 34124 + - uid: 33988 components: - type: Transform pos: 47.5,25.5 parent: 2 - - uid: 34125 + - uid: 33989 components: - type: Transform pos: -27.5,97.5 parent: 2 - - uid: 34126 + - uid: 33990 components: - type: Transform pos: 75.5,-51.5 parent: 2 - - uid: 34127 + - uid: 33991 components: - type: Transform pos: 33.5,22.5 parent: 2 - - uid: 34128 + - uid: 33992 components: - type: Transform pos: 57.5,-43.5 parent: 2 - - uid: 34129 + - uid: 33993 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,43.5 parent: 2 - - uid: 34130 + - uid: 33994 components: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 34131 + - uid: 33995 components: - type: Transform pos: -50.5,25.5 parent: 2 - - uid: 34132 + - uid: 33996 components: - type: Transform pos: -49.5,-30.5 parent: 2 - - uid: 34133 + - uid: 33997 components: - type: Transform pos: 34.5,28.5 parent: 2 - - uid: 34134 + - uid: 33998 components: - type: Transform pos: 25.5,-51.5 parent: 2 - - uid: 34135 + - uid: 33999 components: - type: Transform pos: 14.5,-0.5 parent: 2 - - uid: 34136 + - uid: 34000 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 34137 + - uid: 34001 components: - type: Transform pos: -34.5,-34.5 parent: 2 - - uid: 34138 + - uid: 34002 components: - type: Transform pos: 15.5,1.5 parent: 2 - - uid: 34139 + - uid: 34003 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 34140 + - uid: 34004 components: - type: Transform pos: 15.5,0.5 parent: 2 - - uid: 34141 + - uid: 34005 components: - type: Transform pos: -13.5,-17.5 parent: 2 - - uid: 34142 + - uid: 34006 components: - type: Transform pos: -68.5,10.5 parent: 2 - - uid: 34143 + - uid: 34007 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 34144 + - uid: 34008 components: - type: Transform pos: 12.5,-62.5 parent: 2 - - uid: 34145 + - uid: 34009 components: - type: Transform pos: -78.5,-24.5 parent: 2 - - uid: 34146 + - uid: 34010 components: - type: Transform pos: 46.5,-63.5 parent: 2 - - uid: 34147 + - uid: 34011 components: - type: Transform pos: -44.5,16.5 parent: 2 - - uid: 34148 + - uid: 34012 components: - type: Transform pos: -75.5,12.5 parent: 2 - - uid: 34149 + - uid: 34013 components: - type: Transform pos: 43.5,-65.5 parent: 2 - - uid: 34150 + - uid: 34014 components: - type: Transform pos: -24.5,-29.5 parent: 2 - - uid: 34151 + - uid: 34015 components: - type: Transform pos: 19.5,13.5 parent: 2 - - uid: 34152 + - uid: 34016 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-50.5 parent: 2 - - uid: 34153 + - uid: 34017 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-50.5 parent: 2 - - uid: 34154 + - uid: 34018 components: - type: Transform pos: -48.5,8.5 parent: 2 - - uid: 34155 + - uid: 34019 components: - type: Transform pos: -80.5,-4.5 parent: 2 - - uid: 34156 + - uid: 34020 components: - type: Transform pos: -77.5,-10.5 parent: 2 - - uid: 34157 + - uid: 34021 components: - type: Transform pos: -76.5,-10.5 parent: 2 - - uid: 34158 + - uid: 34022 components: - type: Transform pos: 66.5,-16.5 parent: 2 - - uid: 34159 + - uid: 34023 components: - type: Transform pos: 45.5,-1.5 parent: 2 - - uid: 34160 + - uid: 34024 components: - type: Transform pos: 39.5,24.5 parent: 2 - - uid: 34161 + - uid: 34025 components: - type: Transform pos: 36.5,17.5 parent: 2 - - uid: 34162 + - uid: 34026 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-39.5 parent: 2 - - uid: 34163 + - uid: 34027 components: - type: Transform pos: 25.5,23.5 parent: 2 - - uid: 34164 + - uid: 34028 components: - type: Transform pos: -31.5,-80.5 parent: 2 - - uid: 34165 + - uid: 34029 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 34166 + - uid: 34030 components: - type: Transform pos: -78.5,-17.5 parent: 2 - - uid: 34167 + - uid: 34031 components: - type: Transform pos: -77.5,-17.5 parent: 2 - - uid: 34168 + - uid: 34032 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,2.5 parent: 2 - - uid: 34169 + - uid: 34033 components: - type: Transform pos: 43.5,-70.5 parent: 2 - - uid: 34170 + - uid: 34034 components: - type: Transform pos: 42.5,-75.5 parent: 2 - - uid: 34171 + - uid: 34035 components: - type: Transform pos: -56.5,-18.5 parent: 2 - - uid: 34172 + - uid: 34036 components: - type: Transform pos: -70.5,3.5 parent: 2 - - uid: 34173 + - uid: 34037 components: - type: Transform pos: -50.5,-10.5 parent: 2 - - uid: 34174 + - uid: 34038 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 34175 + - uid: 34039 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 34176 + - uid: 34040 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,46.5 parent: 2 - - uid: 34177 + - uid: 34041 components: - type: Transform pos: -43.5,53.5 parent: 2 - - uid: 34178 + - uid: 34042 components: - type: Transform pos: -43.5,-25.5 parent: 2 - - uid: 34179 + - uid: 34043 components: - type: Transform pos: -39.5,-21.5 parent: 2 - - uid: 34180 + - uid: 34044 components: - type: Transform pos: -24.5,-72.5 parent: 2 - - uid: 34181 + - uid: 34045 components: - type: Transform pos: -31.5,21.5 parent: 2 - - uid: 34182 + - uid: 34046 components: - type: Transform pos: -43.5,0.5 parent: 2 - - uid: 34183 + - uid: 34047 components: - type: Transform pos: -46.5,-10.5 parent: 2 - - uid: 34184 + - uid: 34048 components: - type: Transform pos: -43.5,1.5 parent: 2 - - uid: 34185 + - uid: 34049 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,90.5 parent: 2 - - uid: 34186 + - uid: 34050 components: - type: Transform pos: -60.5,56.5 parent: 2 - - uid: 34187 + - uid: 34051 components: - type: Transform pos: -43.5,31.5 parent: 2 - - uid: 34188 + - uid: 34052 components: - type: Transform pos: -43.5,35.5 parent: 2 - - uid: 34189 + - uid: 34053 components: - type: Transform pos: -31.5,22.5 parent: 2 - - uid: 34190 + - uid: 34054 components: - type: Transform pos: -24.5,-81.5 parent: 2 - - uid: 34191 + - uid: 34055 components: - type: Transform pos: 28.5,55.5 parent: 2 - - uid: 34192 + - uid: 34056 components: - type: Transform pos: 21.5,-56.5 parent: 2 - - uid: 34193 + - uid: 34057 components: - type: Transform pos: 28.5,66.5 parent: 2 - - uid: 34194 + - uid: 34058 components: - type: Transform pos: 28.5,64.5 parent: 2 - - uid: 34195 + - uid: 34059 components: - type: Transform pos: 28.5,65.5 parent: 2 - - uid: 34196 + - uid: 34060 components: - type: Transform pos: 29.5,-20.5 parent: 2 - - uid: 34197 + - uid: 34061 components: - type: Transform pos: 32.5,-64.5 parent: 2 - - uid: 34198 + - uid: 34062 components: - type: Transform pos: 37.5,23.5 parent: 2 - - uid: 34199 + - uid: 34063 components: - type: Transform pos: -36.5,41.5 parent: 2 - - uid: 34200 + - uid: 34064 components: - type: Transform pos: -41.5,-37.5 parent: 2 - - uid: 34201 + - uid: 34065 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-41.5 parent: 2 - - uid: 34202 + - uid: 34066 components: - type: Transform pos: 48.5,25.5 parent: 2 - - uid: 34203 + - uid: 34067 components: - type: Transform pos: 80.5,-17.5 parent: 2 - - uid: 34204 + - uid: 34068 components: - type: Transform pos: 33.5,-56.5 parent: 2 - - uid: 34205 + - uid: 34069 components: - type: Transform pos: 75.5,-36.5 parent: 2 - - uid: 34206 + - uid: 34070 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-50.5 parent: 2 - - uid: 34207 + - uid: 34071 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,26.5 parent: 2 - - uid: 34208 + - uid: 34072 components: - type: Transform pos: -25.5,26.5 parent: 2 - - uid: 34209 + - uid: 34073 components: - type: Transform pos: 35.5,17.5 parent: 2 - - uid: 34210 + - uid: 34074 components: - type: Transform pos: -3.5,-32.5 parent: 2 - - uid: 34211 + - uid: 34075 components: - type: Transform pos: -61.5,-15.5 parent: 2 - - uid: 34212 + - uid: 34076 components: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 34213 + - uid: 34077 components: - type: Transform pos: 26.5,-58.5 parent: 2 - - uid: 34214 + - uid: 34078 components: - type: Transform rot: -1.5707963267948966 rad pos: -100.5,-17.5 parent: 2 - - uid: 34215 + - uid: 34079 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,5.5 parent: 2 - - uid: 34216 + - uid: 34080 components: - type: Transform pos: -25.5,28.5 parent: 2 - - uid: 34217 + - uid: 34081 components: - type: Transform pos: -43.5,43.5 parent: 2 - - uid: 34218 + - uid: 34082 components: - type: Transform pos: 14.5,85.5 parent: 2 - - uid: 34219 + - uid: 34083 components: - type: Transform pos: -60.5,45.5 parent: 2 - - uid: 34220 + - uid: 34084 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 34221 + - uid: 34085 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,51.5 parent: 2 - - uid: 34222 + - uid: 34086 components: - type: Transform pos: 30.5,40.5 parent: 2 - - uid: 34223 + - uid: 34087 components: - type: Transform pos: 69.5,-27.5 parent: 2 - - uid: 34224 + - uid: 34088 components: - type: Transform pos: -60.5,43.5 parent: 2 - - uid: 34225 + - uid: 34089 components: - type: Transform pos: -44.5,56.5 parent: 2 - - uid: 34226 + - uid: 34090 components: - type: Transform pos: -43.5,-22.5 parent: 2 - - uid: 34227 + - uid: 34091 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-42.5 parent: 2 - - uid: 34228 + - uid: 34092 components: - type: Transform pos: -59.5,-21.5 parent: 2 - - uid: 34229 + - uid: 34093 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,-20.5 parent: 2 - - uid: 34230 + - uid: 34094 components: - type: Transform pos: -61.5,2.5 parent: 2 - - uid: 34231 + - uid: 34095 components: - type: Transform pos: 46.5,-64.5 parent: 2 - - uid: 34232 + - uid: 34096 components: - type: Transform pos: -2.5,-42.5 parent: 2 - - uid: 34233 + - uid: 34097 components: - type: Transform pos: -118.5,20.5 parent: 2 - - uid: 34234 + - uid: 34098 components: - type: Transform pos: -71.5,3.5 parent: 2 - - uid: 34235 + - uid: 34099 components: - type: Transform pos: 19.5,22.5 parent: 2 - - uid: 34236 + - uid: 34100 components: - type: Transform pos: 27.5,68.5 parent: 2 - - uid: 34237 + - uid: 34101 components: - type: Transform pos: -45.5,10.5 parent: 2 - - uid: 34238 + - uid: 34102 components: - type: Transform pos: 24.5,20.5 parent: 2 - - uid: 34239 + - uid: 34103 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-0.5 parent: 2 - - uid: 34240 + - uid: 34104 components: - type: Transform pos: 54.5,-51.5 parent: 2 - - uid: 34241 + - uid: 34105 components: - type: Transform pos: 37.5,17.5 parent: 2 - - uid: 34242 + - uid: 34106 components: - type: Transform pos: -59.5,12.5 parent: 2 - - uid: 34243 + - uid: 34107 components: - type: Transform pos: 76.5,-23.5 parent: 2 - - uid: 34244 + - uid: 34108 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,87.5 parent: 2 - - uid: 34245 + - uid: 34109 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,31.5 parent: 2 - - uid: 34246 + - uid: 34110 components: - type: Transform pos: 17.5,80.5 parent: 2 - - uid: 34247 + - uid: 34111 components: - type: Transform pos: 75.5,-48.5 parent: 2 - - uid: 34248 + - uid: 34112 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,31.5 parent: 2 - - uid: 34249 + - uid: 34113 components: - type: Transform pos: 18.5,73.5 parent: 2 - - uid: 34250 + - uid: 34114 components: - type: Transform pos: -11.5,-60.5 parent: 2 - - uid: 34251 + - uid: 34115 components: - type: Transform pos: -12.5,-60.5 parent: 2 - - uid: 34252 + - uid: 34116 components: - type: Transform pos: -39.5,-20.5 parent: 2 - - uid: 34253 + - uid: 34117 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,90.5 parent: 2 - - uid: 34254 + - uid: 34118 components: - type: Transform pos: -14.5,-60.5 parent: 2 - - uid: 34255 + - uid: 34119 components: - type: Transform pos: -78.5,-20.5 parent: 2 - - uid: 34256 + - uid: 34120 components: - type: Transform pos: 33.5,-71.5 parent: 2 - - uid: 34257 + - uid: 34121 components: - type: Transform pos: -15.5,-45.5 parent: 2 - - uid: 34258 + - uid: 34122 components: - type: Transform pos: -120.5,20.5 parent: 2 - - uid: 34259 + - uid: 34123 components: - type: Transform pos: 12.5,91.5 parent: 2 - - uid: 34260 + - uid: 34124 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,93.5 parent: 2 - - uid: 34261 + - uid: 34125 components: - type: Transform pos: -13.5,-60.5 parent: 2 - - uid: 34262 + - uid: 34126 components: - type: Transform pos: -43.5,26.5 parent: 2 - - uid: 34263 + - uid: 34127 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,93.5 parent: 2 - - uid: 34264 + - uid: 34128 components: - type: Transform pos: -11.5,-55.5 parent: 2 - - uid: 34265 + - uid: 34129 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 34266 + - uid: 34130 components: - type: Transform pos: 27.5,-64.5 parent: 2 - - uid: 34268 + - uid: 34131 components: - type: Transform pos: -11.5,-56.5 parent: 2 - - uid: 34269 + - uid: 34132 components: - type: Transform pos: -27.5,-79.5 parent: 2 - - uid: 34270 + - uid: 34133 components: - type: Transform pos: -15.5,-40.5 parent: 2 - - uid: 34271 + - uid: 34134 components: - type: Transform pos: -36.5,-20.5 parent: 2 - - uid: 34272 + - uid: 34135 components: - type: Transform pos: -44.5,36.5 parent: 2 - - uid: 34273 + - uid: 34136 components: - type: Transform pos: -24.5,-24.5 parent: 2 - - uid: 34274 + - uid: 34137 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,28.5 parent: 2 - - uid: 34275 + - uid: 34138 components: - type: Transform pos: 4.5,87.5 parent: 2 - - uid: 34276 + - uid: 34139 components: - type: Transform pos: -29.5,-20.5 parent: 2 - - uid: 34277 + - uid: 34140 components: - type: Transform pos: -44.5,58.5 parent: 2 - - uid: 34278 + - uid: 34141 components: - type: Transform pos: -37.5,20.5 parent: 2 - - uid: 34279 + - uid: 34142 components: - type: Transform pos: -24.5,-30.5 parent: 2 - - uid: 34280 + - uid: 34143 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 34281 + - uid: 34144 components: - type: Transform pos: -17.5,-60.5 parent: 2 - - uid: 34282 + - uid: 34145 components: - type: Transform pos: -19.5,-60.5 parent: 2 - - uid: 34283 + - uid: 34146 components: - type: Transform pos: -23.5,-22.5 parent: 2 - - uid: 34284 + - uid: 34147 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-46.5 parent: 2 - - uid: 34285 + - uid: 34148 components: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 34286 + - uid: 34149 components: - type: Transform pos: -21.5,-53.5 parent: 2 - - uid: 34287 + - uid: 34150 components: - type: Transform pos: -60.5,55.5 parent: 2 - - uid: 34288 + - uid: 34151 components: - type: Transform pos: -11.5,-57.5 parent: 2 - - uid: 34289 + - uid: 34152 components: - type: Transform pos: -31.5,20.5 parent: 2 - - uid: 34290 + - uid: 34153 components: - type: Transform pos: -11.5,-59.5 parent: 2 - - uid: 34291 + - uid: 34154 components: - type: Transform pos: -18.5,-54.5 parent: 2 - - uid: 34292 + - uid: 34155 components: - type: Transform pos: 74.5,-1.5 parent: 2 - - uid: 34293 + - uid: 34156 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-44.5 parent: 2 - - uid: 34294 + - uid: 34157 components: - type: Transform pos: -26.5,-37.5 parent: 2 - - uid: 34295 + - uid: 34158 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-36.5 parent: 2 - - uid: 34296 + - uid: 34159 components: - type: Transform pos: -43.5,-6.5 parent: 2 - - uid: 34297 + - uid: 34160 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-13.5 parent: 2 - - uid: 34298 + - uid: 34161 components: - type: Transform pos: -54.5,-18.5 parent: 2 - - uid: 34299 + - uid: 34162 components: - type: Transform pos: -18.5,-60.5 parent: 2 - - uid: 34300 + - uid: 34163 components: - type: Transform pos: 21.5,-53.5 parent: 2 - - uid: 34301 + - uid: 34164 components: - type: Transform pos: -49.5,-24.5 parent: 2 - - uid: 34302 + - uid: 34165 components: - type: Transform pos: -54.5,-49.5 parent: 2 - - uid: 34303 + - uid: 34166 components: - type: Transform pos: -43.5,-0.5 parent: 2 - - uid: 34304 + - uid: 34167 components: - type: Transform pos: -66.5,16.5 parent: 2 - - uid: 34305 + - uid: 34168 components: - type: Transform pos: -78.5,-2.5 parent: 2 - - uid: 34306 + - uid: 34169 components: - type: Transform pos: -78.5,-4.5 parent: 2 - - uid: 34307 + - uid: 34170 components: - type: Transform pos: -9.5,17.5 parent: 2 - - uid: 34308 + - uid: 34171 components: - type: Transform pos: -2.5,-32.5 parent: 2 - - uid: 34309 + - uid: 34172 components: - type: Transform pos: 93.5,11.5 parent: 2 - - uid: 34310 + - uid: 34173 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-42.5 parent: 2 - - uid: 34311 + - uid: 34174 components: - type: Transform pos: 6.5,-17.5 parent: 2 - - uid: 34312 + - uid: 34175 components: - type: Transform pos: 11.5,-0.5 parent: 2 - - uid: 34313 + - uid: 34176 components: - type: Transform pos: -41.5,-34.5 parent: 2 - - uid: 34314 + - uid: 34177 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,5.5 parent: 2 - - uid: 34315 + - uid: 34178 components: - type: Transform pos: -60.5,-18.5 parent: 2 - - uid: 34316 + - uid: 34179 components: - type: Transform pos: 1.5,19.5 parent: 2 - - uid: 34318 + - uid: 34180 components: - type: Transform pos: -74.5,5.5 parent: 2 - - uid: 34319 + - uid: 34181 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-41.5 parent: 2 - - uid: 34320 + - uid: 34182 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-13.5 parent: 2 - - uid: 34321 + - uid: 34183 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-6.5 parent: 2 - - uid: 34322 + - uid: 34184 components: - type: Transform pos: -69.5,3.5 parent: 2 - - uid: 34323 + - uid: 34185 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,5.5 parent: 2 - - uid: 34324 + - uid: 34186 components: - type: Transform pos: -71.5,-18.5 parent: 2 - - uid: 34325 + - uid: 34187 components: - type: Transform pos: -55.5,-4.5 parent: 2 - - uid: 34326 + - uid: 34188 components: - type: Transform pos: 30.5,-20.5 parent: 2 - - uid: 34327 + - uid: 34189 components: - type: Transform pos: -57.5,-21.5 parent: 2 - - uid: 34328 + - uid: 34190 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 34329 + - uid: 34191 components: - type: Transform pos: -53.5,-49.5 parent: 2 - - uid: 34330 + - uid: 34192 components: - type: Transform pos: -49.5,-25.5 parent: 2 - - uid: 34331 + - uid: 34193 components: - type: Transform pos: 20.5,-53.5 parent: 2 - - uid: 34332 + - uid: 34194 components: - type: Transform pos: -57.5,55.5 parent: 2 - - uid: 34333 + - uid: 34195 components: - type: Transform pos: -47.5,-21.5 parent: 2 - - uid: 34334 + - uid: 34196 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 34335 + - uid: 34197 components: - type: Transform pos: 9.5,89.5 parent: 2 - - uid: 34336 + - uid: 34198 components: - type: Transform pos: -49.5,3.5 parent: 2 - - uid: 34337 + - uid: 34199 components: - type: Transform pos: -24.5,-73.5 parent: 2 - - uid: 34338 + - uid: 34200 components: - type: Transform pos: 22.5,59.5 parent: 2 - - uid: 34339 + - uid: 34201 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,12.5 parent: 2 - - uid: 34340 + - uid: 34202 components: - type: Transform pos: 16.5,73.5 parent: 2 - - uid: 34341 + - uid: 34203 components: - type: Transform pos: -35.5,-31.5 parent: 2 - - uid: 34342 + - uid: 34204 components: - type: Transform pos: -31.5,15.5 parent: 2 - - uid: 34343 + - uid: 34205 components: - type: Transform pos: -24.5,-76.5 parent: 2 - - uid: 34344 + - uid: 34206 components: - type: Transform pos: -55.5,-9.5 parent: 2 - - uid: 34345 + - uid: 34207 components: - type: Transform pos: -77.5,-4.5 parent: 2 - - uid: 34346 + - uid: 34208 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,4.5 parent: 2 - - uid: 34347 + - uid: 34209 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,25.5 parent: 2 - - uid: 34348 + - uid: 34210 components: - type: Transform pos: 64.5,-6.5 parent: 2 - - uid: 34349 + - uid: 34211 components: - type: Transform pos: -42.5,53.5 parent: 2 - - uid: 34350 + - uid: 34212 components: - type: Transform pos: -42.5,63.5 parent: 2 - - uid: 34351 + - uid: 34213 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,9.5 parent: 2 - - uid: 34352 + - uid: 34214 components: - type: Transform pos: 27.5,64.5 parent: 2 - - uid: 34353 + - uid: 34215 components: - type: Transform pos: 53.5,-45.5 parent: 2 - - uid: 34354 + - uid: 34216 components: - type: Transform pos: 77.5,25.5 parent: 2 - - uid: 34355 + - uid: 34217 components: - type: Transform pos: 17.5,76.5 parent: 2 - - uid: 34356 + - uid: 34218 components: - type: Transform pos: 39.5,-56.5 parent: 2 - - uid: 34357 + - uid: 34219 components: - type: Transform pos: 75.5,-52.5 parent: 2 - - uid: 34358 + - uid: 34220 components: - type: Transform pos: -30.5,-20.5 parent: 2 - - uid: 34359 + - uid: 34221 components: - type: Transform pos: 77.5,30.5 parent: 2 - - uid: 34360 + - uid: 34222 components: - type: Transform pos: -50.5,18.5 parent: 2 - - uid: 34361 + - uid: 34223 components: - type: Transform pos: -27.5,71.5 parent: 2 - - uid: 34362 + - uid: 34224 components: - type: Transform pos: 2.5,-61.5 parent: 2 - - uid: 34363 + - uid: 34225 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-80.5 parent: 2 - - uid: 34364 + - uid: 34226 components: - type: Transform pos: -27.5,28.5 parent: 2 - - uid: 34365 + - uid: 34227 components: - type: Transform pos: -42.5,55.5 parent: 2 - - uid: 34366 + - uid: 34228 components: - type: Transform pos: -31.5,-23.5 parent: 2 - - uid: 34367 + - uid: 34229 components: - type: Transform pos: -31.5,-22.5 parent: 2 - - uid: 34368 + - uid: 34230 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 2 - - uid: 34369 + - uid: 34231 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 2 - - uid: 34370 + - uid: 34232 components: - type: Transform pos: -38.5,64.5 parent: 2 - - uid: 34371 + - uid: 34233 components: - type: Transform pos: -50.5,40.5 parent: 2 - - uid: 34372 + - uid: 34234 components: - type: Transform pos: -56.5,59.5 parent: 2 - - uid: 34373 + - uid: 34235 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-44.5 parent: 2 - - uid: 34374 + - uid: 34236 components: - type: Transform pos: -78.5,-23.5 parent: 2 - - uid: 34375 + - uid: 34237 components: - type: Transform pos: -25.5,-55.5 parent: 2 - - uid: 34376 + - uid: 34238 components: - type: Transform pos: -28.5,-20.5 parent: 2 - - uid: 34377 + - uid: 34239 components: - type: Transform pos: 34.5,17.5 parent: 2 - - uid: 34378 + - uid: 34240 components: - type: Transform pos: 69.5,30.5 parent: 2 - - uid: 34379 + - uid: 34241 components: - type: Transform pos: 54.5,-39.5 parent: 2 - - uid: 34380 + - uid: 34242 components: - type: Transform pos: -41.5,-62.5 parent: 2 - - uid: 34381 + - uid: 34243 components: - type: Transform pos: 4.5,74.5 parent: 2 - - uid: 34382 + - uid: 34244 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-51.5 parent: 2 - - uid: 34383 + - uid: 34245 components: - type: Transform pos: 73.5,-25.5 parent: 2 - - uid: 34384 + - uid: 34246 components: - type: Transform pos: 71.5,-38.5 parent: 2 - - uid: 34385 + - uid: 34247 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-49.5 parent: 2 - - uid: 34386 + - uid: 34248 components: - type: Transform pos: 15.5,-4.5 parent: 2 - - uid: 34387 + - uid: 34249 components: - type: Transform pos: 83.5,-44.5 parent: 2 - - uid: 34388 + - uid: 34250 components: - type: Transform pos: 75.5,-49.5 parent: 2 - - uid: 34389 + - uid: 34251 components: - type: Transform pos: 26.5,68.5 parent: 2 - - uid: 34390 + - uid: 34252 components: - type: Transform pos: 54.5,-49.5 parent: 2 - - uid: 34391 + - uid: 34253 components: - type: Transform pos: 19.5,23.5 parent: 2 - - uid: 34392 + - uid: 34254 components: - type: Transform pos: 22.5,23.5 parent: 2 - - uid: 34393 + - uid: 34255 components: - type: Transform pos: -26.5,81.5 parent: 2 - - uid: 34394 + - uid: 34256 components: - type: Transform pos: -42.5,-72.5 parent: 2 - - uid: 34395 + - uid: 34257 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-49.5 parent: 2 - - uid: 34396 + - uid: 34258 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-49.5 parent: 2 - - uid: 34397 + - uid: 34259 components: - type: Transform pos: -23.5,-78.5 parent: 2 - - uid: 34398 + - uid: 34260 components: - type: Transform pos: -24.5,-71.5 parent: 2 - - uid: 34399 + - uid: 34261 components: - type: Transform pos: -45.5,30.5 parent: 2 - - uid: 34400 + - uid: 34262 components: - type: Transform pos: 43.5,-1.5 parent: 2 - - uid: 34401 + - uid: 34263 components: - type: Transform pos: -54.5,4.5 parent: 2 - - uid: 34402 + - uid: 34264 components: - type: Transform pos: 34.5,-56.5 parent: 2 - - uid: 34403 + - uid: 34265 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 34404 + - uid: 34266 components: - type: Transform pos: -41.5,-76.5 parent: 2 - - uid: 34405 + - uid: 34267 components: - type: Transform pos: 17.5,73.5 parent: 2 - - uid: 34406 + - uid: 34268 components: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 34407 + - uid: 34269 components: - type: Transform pos: 6.5,91.5 parent: 2 - - uid: 34408 + - uid: 34270 components: - type: Transform pos: -38.5,38.5 parent: 2 - - uid: 34409 + - uid: 34271 components: - type: Transform pos: -25.5,-20.5 parent: 2 - - uid: 34410 + - uid: 34272 components: - type: Transform pos: -56.5,-4.5 parent: 2 - - uid: 34411 + - uid: 34273 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,19.5 parent: 2 - - uid: 34412 + - uid: 34274 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,19.5 parent: 2 - - uid: 34413 + - uid: 34275 components: - type: Transform pos: -26.5,-38.5 parent: 2 - - uid: 34414 + - uid: 34276 components: - type: Transform pos: -26.5,-39.5 parent: 2 - - uid: 34415 + - uid: 34277 components: - type: Transform pos: -38.5,17.5 parent: 2 - - uid: 34416 + - uid: 34278 components: - type: Transform pos: 17.5,79.5 parent: 2 - - uid: 34417 + - uid: 34279 components: - type: Transform pos: -8.5,81.5 parent: 2 - - uid: 34418 + - uid: 34280 components: - type: Transform pos: -60.5,53.5 parent: 2 - - uid: 34419 + - uid: 34281 components: - type: Transform pos: 9.5,-28.5 parent: 2 - - uid: 34420 + - uid: 34282 components: - type: Transform pos: -78.5,-32.5 parent: 2 - - uid: 34421 + - uid: 34283 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-20.5 parent: 2 - - uid: 34422 + - uid: 34284 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-10.5 parent: 2 - - uid: 34423 + - uid: 34285 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - uid: 34424 + - uid: 34286 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-8.5 parent: 2 - - uid: 34425 + - uid: 34287 components: - type: Transform pos: -44.5,-10.5 parent: 2 - - uid: 34426 + - uid: 34288 components: - type: Transform pos: 9.5,-30.5 parent: 2 - - uid: 34427 + - uid: 34289 components: - type: Transform pos: -61.5,19.5 parent: 2 - - uid: 34428 + - uid: 34290 components: - type: Transform pos: -45.5,-4.5 parent: 2 - - uid: 34429 + - uid: 34291 components: - type: Transform pos: -60.5,-4.5 parent: 2 - - uid: 34430 + - uid: 34292 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,15.5 parent: 2 - - uid: 34431 + - uid: 34293 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 34432 + - uid: 34294 components: - type: Transform pos: -49.5,-49.5 parent: 2 - - uid: 34433 + - uid: 34295 components: - type: Transform pos: 17.5,77.5 parent: 2 - - uid: 34434 + - uid: 34296 components: - type: Transform pos: 10.5,-78.5 parent: 2 - - uid: 34435 + - uid: 34297 components: - type: Transform pos: -78.5,17.5 parent: 2 - - uid: 34436 + - uid: 34298 components: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 34437 + - uid: 34299 components: - type: Transform pos: -61.5,-17.5 parent: 2 - - uid: 34438 + - uid: 34300 components: - type: Transform pos: 28.5,-20.5 parent: 2 - - uid: 34439 + - uid: 34301 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,23.5 parent: 2 - - uid: 34440 + - uid: 34302 components: - type: Transform pos: 14.5,-6.5 parent: 2 - - uid: 34441 + - uid: 34303 components: - type: Transform pos: -12.5,-10.5 parent: 2 - - uid: 34442 + - uid: 34304 components: - type: Transform pos: -2.5,-50.5 parent: 2 - - uid: 34443 + - uid: 34305 components: - type: Transform pos: 75.5,4.5 parent: 2 - - uid: 34444 + - uid: 34306 components: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 34445 + - uid: 34307 components: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 34446 + - uid: 34308 components: - type: Transform pos: 27.5,-22.5 parent: 2 - - uid: 34447 + - uid: 34309 components: - type: Transform pos: -45.5,-20.5 parent: 2 - - uid: 34448 + - uid: 34310 components: - type: Transform pos: 1.5,21.5 parent: 2 - - uid: 34449 + - uid: 34311 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 34450 + - uid: 34312 components: - type: Transform pos: -37.5,-7.5 parent: 2 - - uid: 34451 + - uid: 34313 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-46.5 parent: 2 - - uid: 34452 + - uid: 34314 components: - type: Transform pos: 2.5,-28.5 parent: 2 - - uid: 34453 + - uid: 34315 components: - type: Transform pos: -11.5,17.5 parent: 2 - - uid: 34454 + - uid: 34316 components: - type: Transform pos: -38.5,-7.5 parent: 2 - - uid: 34455 + - uid: 34317 components: - type: Transform pos: -56.5,-23.5 parent: 2 - - uid: 34456 + - uid: 34318 components: - type: Transform pos: -44.5,-18.5 parent: 2 - - uid: 34457 + - uid: 34319 components: - type: Transform pos: -72.5,-24.5 parent: 2 - - uid: 34458 + - uid: 34320 components: - type: Transform pos: -56.5,-29.5 parent: 2 - - uid: 34459 + - uid: 34321 components: - type: Transform pos: 31.5,-20.5 parent: 2 - - uid: 34460 + - uid: 34322 components: - type: Transform pos: 25.5,-52.5 parent: 2 - - uid: 34461 + - uid: 34323 components: - type: Transform pos: -11.5,-54.5 parent: 2 - - uid: 34462 + - uid: 34324 components: - type: Transform pos: -3.5,-53.5 parent: 2 - - uid: 34463 + - uid: 34325 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-4.5 parent: 2 - - uid: 34464 + - uid: 34326 components: - type: Transform pos: 40.5,-75.5 parent: 2 - - uid: 34465 + - uid: 34327 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,5.5 parent: 2 - - uid: 34466 + - uid: 34328 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-8.5 parent: 2 - - uid: 34467 + - uid: 34329 components: - type: Transform pos: 43.5,-71.5 parent: 2 - - uid: 34468 + - uid: 34330 components: - type: Transform pos: 13.5,80.5 parent: 2 - - uid: 34469 + - uid: 34331 components: - type: Transform pos: -21.5,-40.5 parent: 2 - - uid: 34470 + - uid: 34332 components: - type: Transform pos: -31.5,17.5 parent: 2 - - uid: 34471 + - uid: 34333 components: - type: Transform pos: -51.5,43.5 parent: 2 - - uid: 34472 + - uid: 34334 components: - type: Transform pos: -33.5,-20.5 parent: 2 - - uid: 34473 + - uid: 34335 components: - type: Transform pos: -41.5,-38.5 parent: 2 - - uid: 34474 + - uid: 34336 components: - type: Transform pos: -24.5,-79.5 parent: 2 - - uid: 34475 + - uid: 34337 components: - type: Transform pos: -16.5,-17.5 parent: 2 - - uid: 34476 + - uid: 34338 components: - type: Transform pos: -30.5,-56.5 parent: 2 - - uid: 34477 + - uid: 34339 components: - type: Transform pos: 33.5,-70.5 parent: 2 - - uid: 34478 + - uid: 34340 components: - type: Transform pos: 27.5,-70.5 parent: 2 - - uid: 34479 + - uid: 34341 components: - type: Transform pos: -38.5,-34.5 parent: 2 - - uid: 34480 + - uid: 34342 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 34481 + - uid: 34343 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,7.5 parent: 2 - - uid: 34482 + - uid: 34344 components: - type: Transform pos: -43.5,-29.5 parent: 2 - - uid: 34483 + - uid: 34345 components: - type: Transform pos: -35.5,-22.5 parent: 2 - - uid: 34484 + - uid: 34346 components: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 34485 + - uid: 34347 components: - type: Transform pos: -74.5,3.5 parent: 2 - - uid: 34486 + - uid: 34348 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,-21.5 parent: 2 - - uid: 34487 + - uid: 34349 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,5.5 parent: 2 - - uid: 34488 + - uid: 34350 components: - type: Transform pos: -2.5,-53.5 parent: 2 - - uid: 34489 + - uid: 34351 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-1.5 parent: 2 - - uid: 34490 + - uid: 34352 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,6.5 parent: 2 - - uid: 34491 + - uid: 34353 components: - type: Transform pos: -81.5,-4.5 parent: 2 - - uid: 34492 + - uid: 34354 components: - type: Transform pos: -52.5,-23.5 parent: 2 - - uid: 34493 + - uid: 34355 components: - type: Transform pos: 1.5,-39.5 parent: 2 - - uid: 34494 + - uid: 34356 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 34495 + - uid: 34357 components: - type: Transform pos: 27.5,13.5 parent: 2 - - uid: 34496 + - uid: 34358 components: - type: Transform pos: -50.5,26.5 parent: 2 - - uid: 34497 + - uid: 34359 components: - type: Transform pos: -8.5,80.5 parent: 2 - - uid: 34498 + - uid: 34360 components: - type: Transform pos: -25.5,-57.5 parent: 2 - - uid: 34499 + - uid: 34361 components: - type: Transform pos: 3.5,-72.5 parent: 2 - - uid: 34500 + - uid: 34362 components: - type: Transform pos: 3.5,-67.5 parent: 2 - - uid: 34501 + - uid: 34363 components: - type: Transform pos: -31.5,98.5 parent: 2 - - uid: 34502 + - uid: 34364 components: - type: Transform pos: -62.5,3.5 parent: 2 - - uid: 34503 + - uid: 34365 components: - type: Transform pos: -30.5,-36.5 parent: 2 - - uid: 34504 + - uid: 34366 components: - type: Transform pos: -53.5,-25.5 parent: 2 - - uid: 34505 + - uid: 34367 components: - type: Transform pos: -31.5,-36.5 parent: 2 - - uid: 34506 + - uid: 34368 components: - type: Transform pos: -70.5,13.5 parent: 2 - - uid: 34507 + - uid: 34369 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 34508 + - uid: 34370 components: - type: Transform pos: -66.5,3.5 parent: 2 - - uid: 34509 + - uid: 34371 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-28.5 parent: 2 - - uid: 34510 + - uid: 34372 components: - type: Transform pos: 7.5,-37.5 parent: 2 - - uid: 34511 + - uid: 34373 components: - type: Transform pos: -74.5,-18.5 parent: 2 - - uid: 34512 + - uid: 34374 components: - type: Transform pos: 33.5,-58.5 parent: 2 - - uid: 34513 + - uid: 34375 components: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 34514 + - uid: 34376 components: - type: Transform pos: 36.5,-58.5 parent: 2 - - uid: 34515 + - uid: 34377 components: - type: Transform pos: 34.5,-58.5 parent: 2 - - uid: 34516 + - uid: 34378 components: - type: Transform pos: 9.5,-31.5 parent: 2 - - uid: 34517 + - uid: 34379 components: - type: Transform pos: -31.5,97.5 parent: 2 - - uid: 34518 + - uid: 34380 components: - type: Transform pos: 38.5,-58.5 parent: 2 - - uid: 34519 + - uid: 34381 components: - type: Transform pos: 37.5,-58.5 parent: 2 - - uid: 34521 + - uid: 34382 components: - type: Transform pos: -78.5,-18.5 parent: 2 - - uid: 34522 + - uid: 34383 components: - type: Transform pos: -72.5,-29.5 parent: 2 - - uid: 34523 + - uid: 34384 components: - type: Transform pos: -75.5,-18.5 parent: 2 - - uid: 34524 + - uid: 34385 components: - type: Transform pos: -115.5,34.5 parent: 2 - - uid: 34525 + - uid: 34386 components: - type: Transform pos: -53.5,-26.5 parent: 2 - - uid: 34526 + - uid: 34387 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-5.5 parent: 2 - - uid: 34527 + - uid: 34388 components: - type: Transform pos: 43.5,16.5 parent: 2 - - uid: 34528 + - uid: 34389 components: - type: Transform pos: -57.5,-29.5 parent: 2 - - uid: 34529 + - uid: 34390 components: - type: Transform pos: -33.5,18.5 parent: 2 - - uid: 34530 + - uid: 34391 components: - type: Transform rot: -1.5707963267948966 rad pos: -102.5,-17.5 parent: 2 - - uid: 34531 + - uid: 34392 components: - type: Transform pos: -39.5,-34.5 parent: 2 - - uid: 34532 + - uid: 34393 components: - type: Transform pos: 13.5,17.5 parent: 2 - - uid: 34533 + - uid: 34394 components: - type: Transform pos: -6.5,-16.5 parent: 2 - - uid: 34534 + - uid: 34395 components: - type: Transform pos: 8.5,-0.5 parent: 2 - - uid: 34535 + - uid: 34396 components: - type: Transform pos: -66.5,18.5 parent: 2 - - uid: 34536 + - uid: 34397 components: - type: Transform pos: 12.5,-63.5 parent: 2 - - uid: 34537 + - uid: 34398 components: - type: Transform pos: 66.5,14.5 parent: 2 - - uid: 34538 + - uid: 34399 components: - type: Transform pos: -31.5,96.5 parent: 2 - - uid: 34539 + - uid: 34400 components: - type: Transform pos: 44.5,-56.5 parent: 2 - - uid: 34540 + - uid: 34401 components: - type: Transform pos: 75.5,-38.5 parent: 2 - - uid: 34541 + - uid: 34402 components: - type: Transform pos: 43.5,-56.5 parent: 2 - - uid: 34542 + - uid: 34403 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 - - uid: 34543 + - uid: 34404 components: - type: Transform pos: -21.5,-45.5 parent: 2 - - uid: 34544 + - uid: 34405 components: - type: Transform pos: -56.5,-21.5 parent: 2 - - uid: 34545 + - uid: 34406 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-12.5 parent: 2 - - uid: 34546 + - uid: 34407 components: - type: Transform pos: -44.5,-4.5 parent: 2 - - uid: 34547 + - uid: 34408 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-10.5 parent: 2 - - uid: 34548 + - uid: 34409 components: - type: Transform pos: -46.5,-49.5 parent: 2 - - uid: 34549 + - uid: 34410 components: - type: Transform pos: 15.5,-16.5 parent: 2 - - uid: 34550 + - uid: 34411 components: - type: Transform pos: 10.5,-32.5 parent: 2 - - uid: 34551 + - uid: 34412 components: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 34552 + - uid: 34413 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-47.5 parent: 2 - - uid: 34553 + - uid: 34414 components: - type: Transform pos: -25.5,-21.5 parent: 2 - - uid: 34554 + - uid: 34415 components: - type: Transform pos: -41.5,-67.5 parent: 2 - - uid: 34555 + - uid: 34416 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-68.5 parent: 2 - - uid: 34556 + - uid: 34417 components: - type: Transform pos: 8.5,84.5 parent: 2 - - uid: 34557 + - uid: 34418 components: - type: Transform pos: -41.5,-69.5 parent: 2 - - uid: 34558 + - uid: 34419 components: - type: Transform pos: 3.5,-77.5 parent: 2 - - uid: 34559 + - uid: 34420 components: - type: Transform pos: -59.5,43.5 parent: 2 - - uid: 34560 + - uid: 34421 components: - type: Transform pos: -44.5,52.5 parent: 2 - - uid: 34561 + - uid: 34422 components: - type: Transform pos: 3.5,-78.5 parent: 2 - - uid: 34562 + - uid: 34423 components: - type: Transform pos: 12.5,89.5 parent: 2 - - uid: 34563 + - uid: 34424 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 34564 + - uid: 34425 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-9.5 parent: 2 - - uid: 34565 + - uid: 34426 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,10.5 parent: 2 - - uid: 34566 + - uid: 34427 components: - type: Transform pos: 11.5,91.5 parent: 2 - - uid: 34567 + - uid: 34428 components: - type: Transform pos: -42.5,46.5 parent: 2 - - uid: 34568 + - uid: 34429 components: - type: Transform pos: -47.5,-20.5 parent: 2 - - uid: 34569 + - uid: 34430 components: - type: Transform pos: -35.5,-33.5 parent: 2 - - uid: 34570 + - uid: 34431 components: - type: Transform pos: -42.5,48.5 parent: 2 - - uid: 34571 + - uid: 34432 components: - type: Transform pos: -11.5,-28.5 parent: 2 - - uid: 34572 + - uid: 34433 components: - type: Transform pos: 79.5,11.5 parent: 2 - - uid: 34573 + - uid: 34434 components: - type: Transform pos: -16.5,-28.5 parent: 2 - - uid: 34574 + - uid: 34435 components: - type: Transform pos: 66.5,-8.5 parent: 2 - - uid: 34575 + - uid: 34436 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 34576 + - uid: 34437 components: - type: Transform pos: 10.5,-66.5 parent: 2 - - uid: 34577 + - uid: 34438 components: - type: Transform pos: 3.5,-79.5 parent: 2 - - uid: 34578 + - uid: 34439 components: - type: Transform pos: 76.5,-41.5 parent: 2 - - uid: 34579 + - uid: 34440 components: - type: Transform pos: 83.5,-47.5 parent: 2 - - uid: 34580 + - uid: 34441 components: - type: Transform pos: 44.5,17.5 parent: 2 - - uid: 34581 + - uid: 34442 components: - type: Transform pos: 59.5,-5.5 parent: 2 - - uid: 34582 + - uid: 34443 components: - type: Transform pos: 80.5,-22.5 parent: 2 - - uid: 34583 + - uid: 34444 components: - type: Transform pos: 54.5,-55.5 parent: 2 - - uid: 34584 + - uid: 34445 components: - type: Transform pos: -14.5,81.5 parent: 2 - - uid: 34585 + - uid: 34446 components: - type: Transform pos: 25.5,-21.5 parent: 2 - - uid: 34586 + - uid: 34447 components: - type: Transform pos: 69.5,-14.5 parent: 2 - - uid: 34587 + - uid: 34448 components: - type: Transform pos: -66.5,4.5 parent: 2 - - uid: 34588 + - uid: 34449 components: - type: Transform pos: 21.5,17.5 parent: 2 - - uid: 34589 + - uid: 34450 components: - type: Transform pos: 32.5,56.5 parent: 2 - - uid: 34590 + - uid: 34451 components: - type: Transform pos: 31.5,62.5 parent: 2 - - uid: 34591 + - uid: 34452 components: - type: Transform pos: 32.5,60.5 parent: 2 - - uid: 34592 + - uid: 34453 components: - type: Transform pos: 30.5,33.5 parent: 2 - - uid: 34593 + - uid: 34454 components: - type: Transform pos: -43.5,-49.5 parent: 2 - - uid: 34594 + - uid: 34455 components: - type: Transform pos: 23.5,-56.5 parent: 2 - - uid: 34595 + - uid: 34456 components: - type: Transform pos: -46.5,10.5 parent: 2 - - uid: 34596 + - uid: 34457 components: - type: Transform pos: 27.5,55.5 parent: 2 - - uid: 34597 + - uid: 34458 components: - type: Transform pos: 26.5,55.5 parent: 2 - - uid: 34598 + - uid: 34459 components: - type: Transform pos: -54.5,-47.5 parent: 2 - - uid: 34599 + - uid: 34460 components: - type: Transform pos: 30.5,62.5 parent: 2 - - uid: 34600 + - uid: 34461 components: - type: Transform pos: 75.5,-47.5 parent: 2 - - uid: 34601 + - uid: 34462 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 34602 + - uid: 34463 components: - type: Transform pos: -81.5,-1.5 parent: 2 - - uid: 34603 + - uid: 34464 components: - type: Transform pos: 3.5,-80.5 parent: 2 - - uid: 34604 + - uid: 34465 components: - type: Transform pos: 3.5,-81.5 parent: 2 - - uid: 34605 + - uid: 34466 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-65.5 parent: 2 - - uid: 34606 + - uid: 34467 components: - type: Transform pos: -59.5,8.5 parent: 2 - - uid: 34607 + - uid: 34468 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-49.5 parent: 2 - - uid: 34608 + - uid: 34469 components: - type: Transform pos: -14.5,80.5 parent: 2 - - uid: 34609 + - uid: 34470 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 34610 + - uid: 34471 components: - type: Transform pos: -9.5,104.5 parent: 2 - - uid: 34611 + - uid: 34472 components: - type: Transform pos: 3.5,-76.5 parent: 2 - - uid: 34612 + - uid: 34473 components: - type: Transform pos: 30.5,38.5 parent: 2 - - uid: 34613 + - uid: 34474 components: - type: Transform pos: 3.5,-64.5 parent: 2 - - uid: 34614 + - uid: 34475 components: - type: Transform pos: 3.5,-62.5 parent: 2 - - uid: 34615 + - uid: 34476 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 34616 + - uid: 34477 components: - type: Transform pos: -7.5,-28.5 parent: 2 - - uid: 34617 + - uid: 34478 components: - type: Transform pos: 11.5,-64.5 parent: 2 - - uid: 34618 + - uid: 34479 components: - type: Transform pos: -9.5,-82.5 parent: 2 - - uid: 34619 + - uid: 34480 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 34620 + - uid: 34481 components: - type: Transform pos: 84.5,8.5 parent: 2 - - uid: 34621 + - uid: 34482 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 34622 + - uid: 34483 components: - type: Transform pos: 15.5,-62.5 parent: 2 - - uid: 34623 + - uid: 34484 components: - type: Transform pos: 15.5,-61.5 parent: 2 - - uid: 34624 + - uid: 34485 components: - type: Transform pos: 12.5,-64.5 parent: 2 - - uid: 34625 + - uid: 34486 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,93.5 parent: 2 - - uid: 34626 + - uid: 34487 components: - type: Transform pos: 83.5,-41.5 parent: 2 - - uid: 34627 + - uid: 34488 components: - type: Transform pos: 51.5,-9.5 parent: 2 - - uid: 34628 + - uid: 34489 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-50.5 parent: 2 - - uid: 34629 + - uid: 34490 components: - type: Transform pos: 8.5,-83.5 parent: 2 - - uid: 34630 + - uid: 34491 components: - type: Transform pos: 11.5,-78.5 parent: 2 - - uid: 34631 + - uid: 34492 components: - type: Transform pos: -42.5,43.5 parent: 2 - - uid: 34632 + - uid: 34493 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-41.5 parent: 2 - - uid: 34633 + - uid: 34494 components: - type: Transform pos: -42.5,47.5 parent: 2 - - uid: 34634 + - uid: 34495 components: - type: Transform pos: -27.5,96.5 parent: 2 - - uid: 34635 + - uid: 34496 components: - type: Transform pos: 75.5,-12.5 parent: 2 - - uid: 34636 + - uid: 34497 components: - type: Transform pos: 58.5,-5.5 parent: 2 - - uid: 34637 + - uid: 34498 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-37.5 parent: 2 - - uid: 34638 + - uid: 34499 components: - type: Transform pos: 31.5,55.5 parent: 2 - - uid: 34639 + - uid: 34500 components: - type: Transform pos: 8.5,-75.5 parent: 2 - - uid: 34640 + - uid: 34501 components: - type: Transform pos: 9.5,-75.5 parent: 2 - - uid: 34641 + - uid: 34502 components: - type: Transform pos: 26.5,-21.5 parent: 2 - - uid: 34642 + - uid: 34503 components: - type: Transform pos: -27.5,93.5 parent: 2 - - uid: 34643 + - uid: 34504 components: - type: Transform pos: 10.5,-75.5 parent: 2 - - uid: 34644 + - uid: 34505 components: - type: Transform pos: -42.5,45.5 parent: 2 - - uid: 34645 + - uid: 34506 components: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 34646 + - uid: 34507 components: - type: Transform pos: -43.5,-30.5 parent: 2 - - uid: 34647 + - uid: 34508 components: - type: Transform pos: -40.5,-4.5 parent: 2 - - uid: 34648 + - uid: 34509 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-80.5 parent: 2 - - uid: 34649 + - uid: 34510 components: - type: Transform pos: 55.5,-5.5 parent: 2 - - uid: 34650 + - uid: 34511 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,10.5 parent: 2 - - uid: 34651 + - uid: 34512 components: - type: Transform pos: 38.5,3.5 parent: 2 - - uid: 34652 + - uid: 34513 components: - type: Transform pos: 78.5,-24.5 parent: 2 - - uid: 34653 + - uid: 34514 components: - type: Transform pos: 8.5,91.5 parent: 2 - - uid: 34654 + - uid: 34515 components: - type: Transform pos: -39.5,20.5 parent: 2 - - uid: 34655 + - uid: 34516 components: - type: Transform pos: -82.5,-10.5 parent: 2 - - uid: 34656 + - uid: 34517 components: - type: Transform pos: 76.5,-40.5 parent: 2 - - uid: 34657 + - uid: 34518 components: - type: Transform pos: -27.5,87.5 parent: 2 - - uid: 34658 + - uid: 34519 components: - type: Transform pos: -12.5,-82.5 parent: 2 - - uid: 34659 + - uid: 34520 components: - type: Transform pos: -26.5,80.5 parent: 2 - - uid: 34660 + - uid: 34521 components: - type: Transform pos: -101.5,-21.5 parent: 2 - - uid: 34661 + - uid: 34522 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,5.5 parent: 2 - - uid: 34662 + - uid: 34523 components: - type: Transform pos: 43.5,-73.5 parent: 2 - - uid: 34663 + - uid: 34524 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,7.5 parent: 2 - - uid: 34664 + - uid: 34525 components: - type: Transform pos: 21.5,16.5 parent: 2 - - uid: 34665 + - uid: 34526 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-38.5 parent: 2 - - uid: 34666 + - uid: 34527 components: - type: Transform pos: -48.5,-4.5 parent: 2 - - uid: 34667 + - uid: 34528 components: - type: Transform pos: -59.5,55.5 parent: 2 - - uid: 34668 + - uid: 34529 components: - type: Transform pos: 53.5,-44.5 parent: 2 - - uid: 34669 + - uid: 34530 components: - type: Transform pos: -44.5,-15.5 parent: 2 - - uid: 34670 + - uid: 34531 components: - type: Transform pos: -45.5,-18.5 parent: 2 - - uid: 34671 + - uid: 34532 components: - type: Transform pos: 39.5,16.5 parent: 2 - - uid: 34672 + - uid: 34533 components: - type: Transform pos: 14.5,73.5 parent: 2 - - uid: 34673 + - uid: 34534 components: - type: Transform pos: -31.5,18.5 parent: 2 - - uid: 34674 + - uid: 34535 components: - type: Transform pos: -68.5,6.5 parent: 2 - - uid: 34675 + - uid: 34536 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-13.5 parent: 2 - - uid: 34676 + - uid: 34537 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,-19.5 parent: 2 - - uid: 34677 + - uid: 34538 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,15.5 parent: 2 - - uid: 34678 + - uid: 34539 components: - type: Transform pos: -35.5,-34.5 parent: 2 - - uid: 34679 + - uid: 34540 components: - type: Transform pos: -14.5,17.5 parent: 2 - - uid: 34680 + - uid: 34541 components: - type: Transform pos: -50.5,-17.5 parent: 2 - - uid: 34681 + - uid: 34542 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 34682 + - uid: 34543 components: - type: Transform pos: 5.5,-41.5 parent: 2 - - uid: 34683 + - uid: 34544 components: - type: Transform pos: 28.5,33.5 parent: 2 - - uid: 34684 + - uid: 34545 components: - type: Transform pos: -44.5,-17.5 parent: 2 - - uid: 34685 + - uid: 34546 components: - type: Transform pos: -50.5,19.5 parent: 2 - - uid: 34686 + - uid: 34547 components: - type: Transform pos: 4.5,-36.5 parent: 2 - - uid: 34687 + - uid: 34548 components: - type: Transform pos: -43.5,-23.5 parent: 2 - - uid: 34688 + - uid: 34549 components: - type: Transform pos: -72.5,-28.5 parent: 2 - - uid: 34689 + - uid: 34550 components: - type: Transform pos: -65.5,-29.5 parent: 2 - - uid: 34690 + - uid: 34551 components: - type: Transform pos: 29.5,33.5 parent: 2 - - uid: 34691 + - uid: 34552 components: - type: Transform pos: -78.5,15.5 parent: 2 - - uid: 34692 + - uid: 34553 components: - type: Transform pos: -44.5,-11.5 parent: 2 - - uid: 34693 + - uid: 34554 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-19.5 parent: 2 - - uid: 34694 + - uid: 34555 components: - type: Transform pos: -58.5,-4.5 parent: 2 - - uid: 34695 + - uid: 34556 components: - type: Transform pos: 29.5,-57.5 parent: 2 - - uid: 34696 + - uid: 34557 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 34697 + - uid: 34558 components: - type: Transform pos: 25.5,-59.5 parent: 2 - - uid: 34698 + - uid: 34559 components: - type: Transform pos: -37.5,-56.5 parent: 2 - - uid: 34699 + - uid: 34560 components: - type: Transform pos: -35.5,-54.5 parent: 2 - - uid: 34700 + - uid: 34561 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 34701 + - uid: 34562 components: - type: Transform pos: -31.5,-24.5 parent: 2 - - uid: 34702 + - uid: 34563 components: - type: Transform pos: -36.5,-37.5 parent: 2 - - uid: 34703 + - uid: 34564 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-41.5 parent: 2 - - uid: 34704 + - uid: 34565 components: - type: Transform pos: -39.5,40.5 parent: 2 - - uid: 34705 + - uid: 34566 components: - type: Transform pos: -20.5,-36.5 parent: 2 - - uid: 34706 + - uid: 34567 components: - type: Transform pos: 75.5,-1.5 parent: 2 - - uid: 34707 + - uid: 34568 components: - type: Transform pos: 55.5,-44.5 parent: 2 - - uid: 34708 + - uid: 34569 components: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 34709 + - uid: 34570 components: - type: Transform pos: 69.5,-12.5 parent: 2 - - uid: 34710 + - uid: 34571 components: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 34711 + - uid: 34572 components: - type: Transform pos: -55.5,19.5 parent: 2 - - uid: 34712 + - uid: 34573 components: - type: Transform pos: -55.5,20.5 parent: 2 - - uid: 34713 + - uid: 34574 components: - type: Transform pos: -56.5,53.5 parent: 2 - - uid: 34714 + - uid: 34575 components: - type: Transform pos: 38.5,14.5 parent: 2 - - uid: 34715 + - uid: 34576 components: - type: Transform pos: 71.5,-50.5 parent: 2 - - uid: 34716 + - uid: 34577 components: - type: Transform pos: 39.5,-1.5 parent: 2 - - uid: 34717 + - uid: 34578 components: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 34718 + - uid: 34579 components: - type: Transform pos: 19.5,-52.5 parent: 2 - - uid: 34719 + - uid: 34580 components: - type: Transform pos: -60.5,44.5 parent: 2 - - uid: 34720 + - uid: 34581 components: - type: Transform pos: -53.5,56.5 parent: 2 - - uid: 34721 + - uid: 34582 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-13.5 parent: 2 - - uid: 34722 + - uid: 34583 components: - type: Transform pos: -4.5,-53.5 parent: 2 - - uid: 34723 + - uid: 34584 components: - type: Transform pos: -45.5,-31.5 parent: 2 - - uid: 34724 + - uid: 34585 components: - type: Transform pos: -46.5,-31.5 parent: 2 - - uid: 34725 + - uid: 34586 components: - type: Transform pos: -47.5,-31.5 parent: 2 - - uid: 34726 + - uid: 34587 components: - type: Transform pos: -48.5,-31.5 parent: 2 - - uid: 34727 + - uid: 34588 components: - type: Transform pos: -30.5,-43.5 parent: 2 - - uid: 34728 + - uid: 34589 components: - type: Transform pos: -43.5,5.5 parent: 2 - - uid: 34729 + - uid: 34590 components: - type: Transform pos: -15.5,-47.5 parent: 2 - - uid: 34730 + - uid: 34591 components: - type: Transform pos: 30.5,39.5 parent: 2 - - uid: 34731 + - uid: 34592 components: - type: Transform pos: 53.5,-31.5 parent: 2 - - uid: 34732 + - uid: 34593 components: - type: Transform pos: -43.5,-76.5 parent: 2 - - uid: 34733 + - uid: 34594 components: - type: Transform pos: -24.5,-82.5 parent: 2 - - uid: 34734 + - uid: 34595 components: - type: Transform pos: -27.5,-77.5 parent: 2 - - uid: 34735 + - uid: 34596 components: - type: Transform pos: 77.5,26.5 parent: 2 - - uid: 34736 + - uid: 34597 components: - type: Transform pos: -74.5,1.5 parent: 2 - - uid: 34737 + - uid: 34598 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 - - uid: 34738 + - uid: 34599 components: - type: Transform rot: -1.5707963267948966 rad pos: -98.5,4.5 parent: 2 - - uid: 34739 + - uid: 34600 components: - type: Transform pos: -6.5,70.5 parent: 2 - - uid: 34740 + - uid: 34601 components: - type: Transform pos: -35.5,-23.5 parent: 2 - - uid: 34741 + - uid: 34602 components: - type: Transform pos: 88.5,11.5 parent: 2 - - uid: 34742 + - uid: 34603 components: - type: Transform pos: -72.5,-4.5 parent: 2 - - uid: 34743 + - uid: 34604 components: - type: Transform pos: 24.5,72.5 parent: 2 - - uid: 34744 + - uid: 34605 components: - type: Transform pos: 54.5,-44.5 parent: 2 - - uid: 34745 + - uid: 34606 components: - type: Transform pos: 79.5,7.5 parent: 2 - - uid: 34746 + - uid: 34607 components: - type: Transform pos: -36.5,40.5 parent: 2 - - uid: 34747 + - uid: 34608 components: - type: Transform pos: 33.5,-24.5 parent: 2 - - uid: 34748 + - uid: 34609 components: - type: Transform pos: 32.5,-70.5 parent: 2 - - uid: 34749 + - uid: 34610 components: - type: Transform pos: -36.5,-34.5 parent: 2 - - uid: 34750 + - uid: 34611 components: - type: Transform pos: 22.5,73.5 parent: 2 - - uid: 34751 + - uid: 34612 components: - type: Transform pos: 20.5,73.5 parent: 2 - - uid: 34752 + - uid: 34613 components: - type: Transform pos: 15.5,2.5 parent: 2 - - uid: 34754 + - uid: 34614 components: - type: Transform pos: -16.5,-22.5 parent: 2 - - uid: 34755 + - uid: 34615 components: - type: Transform pos: -68.5,62.5 parent: 2 - - uid: 34756 + - uid: 34616 components: - type: Transform pos: -68.5,63.5 parent: 2 - - uid: 34757 + - uid: 34617 components: - type: Transform pos: -67.5,63.5 parent: 2 - - uid: 34758 + - uid: 34618 components: - type: Transform pos: -68.5,61.5 parent: 2 - - uid: 34759 + - uid: 34619 components: - type: Transform pos: -63.5,61.5 parent: 2 - - uid: 34760 + - uid: 34620 components: - type: Transform pos: -68.5,3.5 parent: 2 - - uid: 34761 + - uid: 34621 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 34762 + - uid: 34622 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,52.5 parent: 2 - - uid: 34763 + - uid: 34623 components: - type: Transform pos: -65.5,19.5 parent: 2 - - uid: 34764 + - uid: 34624 components: - type: Transform pos: -56.5,62.5 parent: 2 - - uid: 34765 + - uid: 34625 components: - type: Transform pos: -74.5,-10.5 parent: 2 - - uid: 34766 + - uid: 34626 components: - type: Transform pos: -43.5,-32.5 parent: 2 - - uid: 34767 + - uid: 34627 components: - type: Transform pos: 14.5,21.5 parent: 2 - - uid: 34768 + - uid: 34628 components: - type: Transform pos: -101.5,6.5 parent: 2 - - uid: 34769 + - uid: 34629 components: - type: Transform pos: 75.5,6.5 parent: 2 - - uid: 34770 + - uid: 34630 components: - type: Transform pos: -81.5,-3.5 parent: 2 - - uid: 34771 + - uid: 34631 components: - type: Transform pos: 38.5,2.5 parent: 2 - - uid: 34772 + - uid: 34632 components: - type: Transform pos: 34.5,23.5 parent: 2 - - uid: 34773 + - uid: 34633 components: - type: Transform pos: 38.5,0.5 parent: 2 - - uid: 34774 + - uid: 34634 components: - type: Transform pos: 27.5,62.5 parent: 2 - - uid: 34775 + - uid: 34635 components: - type: Transform pos: -41.5,-20.5 parent: 2 - - uid: 34776 + - uid: 34636 components: - type: Transform pos: -82.5,-4.5 parent: 2 - - uid: 34777 + - uid: 34637 components: - type: Transform pos: -0.5,33.5 parent: 2 - - uid: 34778 + - uid: 34638 components: - type: Transform pos: -54.5,5.5 parent: 2 - - uid: 34779 + - uid: 34639 components: - type: Transform pos: 12.5,86.5 parent: 2 - - uid: 34780 + - uid: 34640 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-2.5 parent: 2 - - uid: 34781 + - uid: 34641 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 34782 + - uid: 34642 components: - type: Transform pos: -40.5,-5.5 parent: 2 - - uid: 34783 + - uid: 34643 components: - type: Transform pos: 36.5,23.5 parent: 2 - - uid: 34784 + - uid: 34644 components: - type: Transform pos: 57.5,-5.5 parent: 2 - - uid: 34785 + - uid: 34645 components: - type: Transform pos: -41.5,-60.5 parent: 2 - - uid: 34786 + - uid: 34646 components: - type: Transform pos: -42.5,-58.5 parent: 2 - - uid: 34787 + - uid: 34647 components: - type: Transform pos: -40.5,-58.5 parent: 2 - - uid: 34788 + - uid: 34648 components: - type: Transform pos: -41.5,-61.5 parent: 2 - - uid: 34789 + - uid: 34649 components: - type: Transform pos: -41.5,64.5 parent: 2 - - uid: 34790 + - uid: 34650 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 34791 + - uid: 34651 components: - type: Transform pos: -42.5,50.5 parent: 2 - - uid: 34792 + - uid: 34652 components: - type: Transform pos: -50.5,24.5 parent: 2 - - uid: 34793 + - uid: 34653 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,12.5 parent: 2 - - uid: 34794 + - uid: 34654 components: - type: Transform pos: -44.5,22.5 parent: 2 - - uid: 34795 + - uid: 34655 components: - type: Transform pos: -43.5,22.5 parent: 2 - - uid: 34796 + - uid: 34656 components: - type: Transform pos: -43.5,24.5 parent: 2 - - uid: 34797 + - uid: 34657 components: - type: Transform pos: -44.5,24.5 parent: 2 - - uid: 34798 + - uid: 34658 components: - type: Transform pos: -45.5,24.5 parent: 2 - - uid: 34799 + - uid: 34659 components: - type: Transform pos: -45.5,25.5 parent: 2 - - uid: 34800 + - uid: 34660 components: - type: Transform pos: 33.5,-62.5 parent: 2 - - uid: 34801 + - uid: 34661 components: - type: Transform pos: 30.5,-59.5 parent: 2 - - uid: 34802 + - uid: 34662 components: - type: Transform pos: -47.5,-1.5 parent: 2 - - uid: 34803 + - uid: 34663 components: - type: Transform pos: -67.5,19.5 parent: 2 - - uid: 34804 + - uid: 34664 components: - type: Transform pos: -56.5,-48.5 parent: 2 - - uid: 34805 + - uid: 34665 components: - type: Transform pos: -53.5,-27.5 parent: 2 - - uid: 34806 + - uid: 34666 components: - type: Transform pos: -43.5,-8.5 parent: 2 - - uid: 34807 + - uid: 34667 components: - type: Transform pos: -61.5,-4.5 parent: 2 - - uid: 34808 + - uid: 34668 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-0.5 parent: 2 - - uid: 34809 + - uid: 34669 components: - type: Transform pos: 45.5,14.5 parent: 2 - - uid: 34810 + - uid: 34670 components: - type: Transform pos: 44.5,14.5 parent: 2 - - uid: 34811 + - uid: 34671 components: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 34812 + - uid: 34672 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,14.5 parent: 2 - - uid: 34813 + - uid: 34673 components: - type: Transform pos: 44.5,15.5 parent: 2 - - uid: 34814 + - uid: 34674 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-47.5 parent: 2 - - uid: 34815 + - uid: 34675 components: - type: Transform pos: -56.5,-47.5 parent: 2 - - uid: 34816 + - uid: 34676 components: - type: Transform pos: -49.5,5.5 parent: 2 - - uid: 34817 + - uid: 34677 components: - type: Transform pos: -63.5,12.5 parent: 2 - - uid: 34818 + - uid: 34678 components: - type: Transform pos: 54.5,-56.5 parent: 2 - - uid: 34819 + - uid: 34679 components: - type: Transform pos: 23.5,64.5 parent: 2 - - uid: 34820 + - uid: 34680 components: - type: Transform pos: -55.5,-49.5 parent: 2 - - uid: 34821 + - uid: 34681 components: - type: Transform pos: 19.5,-49.5 parent: 2 - - uid: 34822 + - uid: 34682 components: - type: Transform pos: -40.5,38.5 parent: 2 - - uid: 34823 + - uid: 34683 components: - type: Transform pos: -27.5,27.5 parent: 2 - - uid: 34824 + - uid: 34684 components: - type: Transform pos: -81.5,-11.5 parent: 2 - - uid: 34825 + - uid: 34685 components: - type: Transform pos: -62.5,-18.5 parent: 2 - - uid: 34826 + - uid: 34686 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 34827 + - uid: 34687 components: - type: Transform pos: 11.5,-75.5 parent: 2 - - uid: 34828 + - uid: 34688 components: - type: Transform pos: -25.5,27.5 parent: 2 - - uid: 34830 + - uid: 34689 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-25.5 parent: 2 - - uid: 34834 + - uid: 34690 components: - type: Transform pos: -68.5,-21.5 parent: 2 - - uid: 34835 + - uid: 34691 components: - type: Transform pos: -67.5,-21.5 parent: 2 - - uid: 34836 + - uid: 34692 components: - type: Transform pos: -66.5,-21.5 parent: 2 - - uid: 34837 + - uid: 34693 components: - type: Transform pos: -65.5,-21.5 parent: 2 - - uid: 34838 + - uid: 34694 components: - type: Transform pos: -64.5,-21.5 parent: 2 - - uid: 34840 + - uid: 34695 components: - type: Transform pos: -45.5,43.5 parent: 2 - - uid: 34841 + - uid: 34696 components: - type: Transform pos: -64.5,0.5 parent: 2 - - uid: 34842 + - uid: 34697 components: - type: Transform pos: 28.5,-62.5 parent: 2 - - uid: 34843 + - uid: 34698 components: - type: Transform pos: 81.5,8.5 parent: 2 - - uid: 34844 + - uid: 34699 components: - type: Transform pos: -45.5,16.5 parent: 2 - - uid: 34845 + - uid: 34700 components: - type: Transform pos: 38.5,-75.5 parent: 2 - - uid: 34846 + - uid: 34701 components: - type: Transform pos: 37.5,-75.5 parent: 2 - - uid: 34847 + - uid: 34702 components: - type: Transform pos: 37.5,-74.5 parent: 2 - - uid: 34848 + - uid: 34703 components: - type: Transform pos: 37.5,-73.5 parent: 2 - - uid: 34849 + - uid: 34704 components: - type: Transform pos: 37.5,-72.5 parent: 2 - - uid: 34850 + - uid: 34705 components: - type: Transform pos: 28.5,13.5 parent: 2 - - uid: 34851 + - uid: 34706 components: - type: Transform pos: -65.5,3.5 parent: 2 - - uid: 34852 + - uid: 34707 components: - type: Transform pos: -72.5,-18.5 parent: 2 - - uid: 34854 + - uid: 34708 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,56.5 parent: 2 - - uid: 34855 + - uid: 34709 components: - type: Transform pos: -37.5,18.5 parent: 2 - - uid: 34856 + - uid: 34710 components: - type: Transform pos: -24.5,-77.5 parent: 2 - - uid: 34857 + - uid: 34711 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-20.5 parent: 2 - - uid: 34858 + - uid: 34712 components: - type: Transform pos: -48.5,7.5 parent: 2 - - uid: 34859 + - uid: 34713 components: - type: Transform pos: -41.5,-70.5 parent: 2 - - uid: 34860 + - uid: 34714 components: - type: Transform pos: 11.5,89.5 parent: 2 - - uid: 34861 + - uid: 34715 components: - type: Transform pos: 32.5,55.5 parent: 2 - - uid: 34862 + - uid: 34716 components: - type: Transform pos: 32.5,62.5 parent: 2 - - uid: 34863 + - uid: 34717 components: - type: Transform pos: 6.5,-56.5 parent: 2 - - uid: 34864 + - uid: 34718 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 34865 + - uid: 34719 components: - type: Transform pos: 4.5,-56.5 parent: 2 - - uid: 34866 + - uid: 34720 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 34867 + - uid: 34721 components: - type: Transform pos: -55.5,4.5 parent: 2 - - uid: 34868 + - uid: 34722 components: - type: Transform pos: -43.5,6.5 parent: 2 - - uid: 34869 + - uid: 34723 components: - type: Transform pos: 76.5,11.5 parent: 2 - - uid: 34870 + - uid: 34724 components: - type: Transform pos: 20.5,20.5 parent: 2 - - uid: 34871 + - uid: 34725 components: - type: Transform pos: 9.5,91.5 parent: 2 - - uid: 34872 + - uid: 34726 components: - type: Transform pos: -39.5,21.5 parent: 2 - - uid: 34873 + - uid: 34727 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-20.5 parent: 2 - - uid: 34874 + - uid: 34728 components: - type: Transform pos: -44.5,-16.5 parent: 2 - - uid: 34875 + - uid: 34729 components: - type: Transform pos: -79.5,4.5 parent: 2 - - uid: 34876 + - uid: 34730 components: - type: Transform pos: -51.5,38.5 parent: 2 - - uid: 34877 + - uid: 34731 components: - type: Transform pos: -16.5,-11.5 parent: 2 - - uid: 34878 + - uid: 34732 components: - type: Transform pos: -24.5,-27.5 parent: 2 - - uid: 34879 + - uid: 34733 components: - type: Transform pos: -10.5,-28.5 parent: 2 - - uid: 34880 + - uid: 34734 components: - type: Transform pos: 33.5,-63.5 parent: 2 - - uid: 34881 + - uid: 34735 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,-20.5 parent: 2 - - uid: 34882 + - uid: 34736 components: - type: Transform pos: 69.5,-25.5 parent: 2 - - uid: 34883 + - uid: 34737 components: - type: Transform pos: -43.5,-7.5 parent: 2 - - uid: 34884 + - uid: 34738 components: - type: Transform pos: 11.5,-62.5 parent: 2 - - uid: 34885 + - uid: 34739 components: - type: Transform pos: 3.5,-85.5 parent: 2 - - uid: 34886 + - uid: 34740 components: - type: Transform pos: 3.5,-84.5 parent: 2 - - uid: 34887 + - uid: 34741 components: - type: Transform pos: 3.5,-83.5 parent: 2 - - uid: 34888 + - uid: 34742 components: - type: Transform pos: 3.5,-86.5 parent: 2 - - uid: 34889 + - uid: 34743 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 34890 + - uid: 34744 components: - type: Transform pos: 5.5,-86.5 parent: 2 - - uid: 34891 + - uid: 34745 components: - type: Transform pos: -2.5,-86.5 parent: 2 - - uid: 34892 + - uid: 34746 components: - type: Transform pos: -4.5,-86.5 parent: 2 - - uid: 34893 + - uid: 34747 components: - type: Transform pos: -6.5,-86.5 parent: 2 - - uid: 34894 + - uid: 34748 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-62.5 parent: 2 - - uid: 34895 + - uid: 34749 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-62.5 parent: 2 - - uid: 34896 + - uid: 34750 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-62.5 parent: 2 - - uid: 34897 + - uid: 34751 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,70.5 parent: 2 - - uid: 34898 + - uid: 34752 components: - type: Transform pos: 80.5,8.5 parent: 2 - - uid: 34899 + - uid: 34753 components: - type: Transform pos: 76.5,7.5 parent: 2 - - uid: 34900 + - uid: 34754 components: - type: Transform pos: 83.5,8.5 parent: 2 - - uid: 34901 + - uid: 34755 components: - type: Transform pos: 74.5,20.5 parent: 2 - - uid: 34902 + - uid: 34756 components: - type: Transform pos: 77.5,24.5 parent: 2 - - uid: 34903 + - uid: 34757 components: - type: Transform pos: 9.5,-56.5 parent: 2 - - uid: 34904 + - uid: 34758 components: - type: Transform pos: 11.5,-80.5 parent: 2 - - uid: 34905 + - uid: 34759 components: - type: Transform pos: 8.5,-82.5 parent: 2 - - uid: 34906 + - uid: 34760 components: - type: Transform pos: -19.5,-31.5 parent: 2 - - uid: 34907 + - uid: 34761 components: - type: Transform pos: -120.5,24.5 parent: 2 - - uid: 34908 + - uid: 34762 components: - type: Transform pos: -26.5,-48.5 parent: 2 - - uid: 34909 + - uid: 34763 components: - type: Transform pos: -25.5,-48.5 parent: 2 - - uid: 34910 + - uid: 34764 components: - type: Transform pos: -19.5,-28.5 parent: 2 - - uid: 34911 + - uid: 34765 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-20.5 parent: 2 - - uid: 34912 + - uid: 34766 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-65.5 parent: 2 - - uid: 34913 + - uid: 34767 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-64.5 parent: 2 - - uid: 34914 + - uid: 34768 components: - type: Transform pos: -26.5,-55.5 parent: 2 - - uid: 34915 + - uid: 34769 components: - type: Transform pos: -27.5,-55.5 parent: 2 - - uid: 34916 + - uid: 34770 components: - type: Transform pos: -28.5,-55.5 parent: 2 - - uid: 34917 + - uid: 34771 components: - type: Transform pos: -18.5,-28.5 parent: 2 - - uid: 34918 + - uid: 34772 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,-20.5 parent: 2 - - uid: 34919 + - uid: 34773 components: - type: Transform pos: 75.5,10.5 parent: 2 - - uid: 34920 + - uid: 34774 components: - type: Transform pos: -115.5,31.5 parent: 2 - - uid: 34921 + - uid: 34775 components: - type: Transform pos: 79.5,10.5 parent: 2 - - uid: 34922 + - uid: 34776 components: - type: Transform pos: -17.5,-31.5 parent: 2 - - uid: 34923 + - uid: 34777 components: - type: Transform pos: 75.5,5.5 parent: 2 - - uid: 34924 + - uid: 34778 components: - type: Transform pos: -17.5,-28.5 parent: 2 - - uid: 34925 + - uid: 34779 components: - type: Transform pos: -18.5,-31.5 parent: 2 - - uid: 34926 + - uid: 34780 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,-20.5 parent: 2 - - uid: 34927 + - uid: 34781 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-38.5 parent: 2 - - uid: 34928 + - uid: 34782 components: - type: Transform pos: 68.5,-5.5 parent: 2 - - uid: 34929 + - uid: 34783 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,-20.5 parent: 2 - - uid: 34930 + - uid: 34784 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-20.5 parent: 2 - - uid: 34931 + - uid: 34785 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,-20.5 parent: 2 - - uid: 34932 + - uid: 34786 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,-21.5 parent: 2 - - uid: 34933 + - uid: 34787 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,-21.5 parent: 2 - - uid: 34934 + - uid: 34788 components: - type: Transform rot: -1.5707963267948966 rad pos: -86.5,-19.5 parent: 2 - - uid: 34935 + - uid: 34789 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-19.5 parent: 2 - - uid: 34936 + - uid: 34790 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-21.5 parent: 2 - - uid: 34937 + - uid: 34791 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,-21.5 parent: 2 - - uid: 34938 + - uid: 34792 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,-1.5 parent: 2 - - uid: 34939 + - uid: 34793 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-9.5 parent: 2 - - uid: 34940 + - uid: 34794 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-9.5 parent: 2 - - uid: 34941 + - uid: 34795 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-8.5 parent: 2 - - uid: 34942 + - uid: 34796 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,-13.5 parent: 2 - - uid: 34943 + - uid: 34797 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-14.5 parent: 2 - - uid: 34944 + - uid: 34798 components: - type: Transform rot: 1.5707963267948966 rad pos: -104.5,-10.5 parent: 2 - - uid: 34945 + - uid: 34799 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,-16.5 parent: 2 - - uid: 34946 + - uid: 34800 components: - type: Transform pos: -86.5,4.5 parent: 2 - - uid: 34947 + - uid: 34801 components: - type: Transform pos: -83.5,-4.5 parent: 2 - - uid: 34948 + - uid: 34802 components: - type: Transform pos: -83.5,-10.5 parent: 2 - - uid: 34949 + - uid: 34803 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-42.5 parent: 2 - - uid: 34950 + - uid: 34804 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-45.5 parent: 2 - - uid: 34951 + - uid: 34805 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-42.5 parent: 2 - - uid: 34952 + - uid: 34806 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-48.5 parent: 2 - - uid: 34953 + - uid: 34807 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 - - uid: 34954 + - uid: 34808 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-39.5 parent: 2 - - uid: 34955 + - uid: 34809 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-39.5 parent: 2 - - uid: 34956 + - uid: 34810 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-39.5 parent: 2 - - uid: 34957 + - uid: 34811 components: - type: Transform pos: -113.5,34.5 parent: 2 - - uid: 34958 + - uid: 34812 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-41.5 parent: 2 - - uid: 34959 + - uid: 34813 components: - type: Transform pos: -20.5,-31.5 parent: 2 - - uid: 34960 + - uid: 34814 components: - type: Transform pos: -124.5,21.5 parent: 2 - - uid: 34961 + - uid: 34815 components: - type: Transform pos: -110.5,22.5 parent: 2 - - uid: 34962 + - uid: 34816 components: - type: Transform pos: -126.5,43.5 parent: 2 - - uid: 34963 + - uid: 34817 components: - type: Transform pos: -111.5,22.5 parent: 2 - - uid: 34964 + - uid: 34818 components: - type: Transform pos: -110.5,24.5 parent: 2 - - uid: 34965 + - uid: 34819 components: - type: Transform pos: -111.5,24.5 parent: 2 - - uid: 34966 + - uid: 34820 components: - type: Transform pos: -124.5,20.5 parent: 2 - - uid: 34967 + - uid: 34821 components: - type: Transform pos: -124.5,22.5 parent: 2 - - uid: 34968 + - uid: 34822 components: - type: Transform pos: -124.5,23.5 parent: 2 - - uid: 34969 + - uid: 34823 components: - type: Transform pos: -124.5,24.5 parent: 2 - - uid: 34970 + - uid: 34824 components: - type: Transform pos: -124.5,25.5 parent: 2 - - uid: 34971 + - uid: 34825 components: - type: Transform pos: -124.5,26.5 parent: 2 - - uid: 34972 + - uid: 34826 components: - type: Transform pos: -123.5,27.5 parent: 2 - - uid: 34973 + - uid: 34827 components: - type: Transform pos: -120.5,26.5 parent: 2 - - uid: 34974 + - uid: 34828 components: - type: Transform pos: -113.5,27.5 parent: 2 - - uid: 34975 + - uid: 34829 components: - type: Transform pos: -112.5,26.5 parent: 2 - - uid: 34976 + - uid: 34830 components: - type: Transform pos: -112.5,25.5 parent: 2 - - uid: 34977 + - uid: 34831 components: - type: Transform pos: -112.5,24.5 parent: 2 - - uid: 34978 + - uid: 34832 components: - type: Transform pos: -112.5,21.5 parent: 2 - - uid: 34979 + - uid: 34833 components: - type: Transform pos: -112.5,22.5 parent: 2 - - uid: 34980 + - uid: 34834 components: - type: Transform pos: -112.5,27.5 parent: 2 - - uid: 34981 + - uid: 34835 components: - type: Transform pos: -109.5,24.5 parent: 2 - - uid: 34982 + - uid: 34836 components: - type: Transform pos: -109.5,22.5 parent: 2 - - uid: 34983 + - uid: 34837 components: - type: Transform pos: -122.5,20.5 parent: 2 - - uid: 34984 + - uid: 34838 components: - type: Transform pos: -123.5,44.5 parent: 2 - - uid: 34985 + - uid: 34839 components: - type: Transform pos: -110.5,34.5 parent: 2 - - uid: 34986 + - uid: 34840 components: - type: Transform pos: -110.5,35.5 parent: 2 - - uid: 34987 + - uid: 34841 components: - type: Transform pos: -110.5,36.5 parent: 2 - - uid: 34988 + - uid: 34842 components: - type: Transform pos: -110.5,37.5 parent: 2 - - uid: 34989 + - uid: 34843 components: - type: Transform pos: -110.5,38.5 parent: 2 - - uid: 34990 + - uid: 34844 components: - type: Transform pos: -110.5,39.5 parent: 2 - - uid: 34991 + - uid: 34845 components: - type: Transform pos: -110.5,40.5 parent: 2 - - uid: 34992 + - uid: 34846 components: - type: Transform pos: -110.5,41.5 parent: 2 - - uid: 34993 + - uid: 34847 components: - type: Transform pos: -110.5,42.5 parent: 2 - - uid: 34994 + - uid: 34848 components: - type: Transform pos: -110.5,43.5 parent: 2 - - uid: 34995 + - uid: 34849 components: - type: Transform pos: -110.5,44.5 parent: 2 - - uid: 34996 + - uid: 34850 components: - type: Transform pos: -112.5,45.5 parent: 2 - - uid: 34997 + - uid: 34851 components: - type: Transform pos: -113.5,45.5 parent: 2 - - uid: 34998 + - uid: 34852 components: - type: Transform pos: -113.5,46.5 parent: 2 - - uid: 34999 + - uid: 34853 components: - type: Transform pos: -113.5,47.5 parent: 2 - - uid: 35000 + - uid: 34854 components: - type: Transform pos: -113.5,48.5 parent: 2 - - uid: 35001 + - uid: 34855 components: - type: Transform pos: -112.5,51.5 parent: 2 - - uid: 35002 + - uid: 34856 components: - type: Transform pos: -113.5,49.5 parent: 2 - - uid: 35003 + - uid: 34857 components: - type: Transform pos: -114.5,51.5 parent: 2 - - uid: 35004 + - uid: 34858 components: - type: Transform pos: -113.5,52.5 parent: 2 - - uid: 35005 + - uid: 34859 components: - type: Transform pos: -113.5,51.5 parent: 2 - - uid: 35006 + - uid: 34860 components: - type: Transform pos: -112.5,52.5 parent: 2 - - uid: 35007 + - uid: 34861 components: - type: Transform pos: -123.5,45.5 parent: 2 - - uid: 35008 + - uid: 34862 components: - type: Transform pos: -123.5,46.5 parent: 2 - - uid: 35009 + - uid: 34863 components: - type: Transform pos: -123.5,47.5 parent: 2 - - uid: 35010 + - uid: 34864 components: - type: Transform pos: -123.5,48.5 parent: 2 - - uid: 35011 + - uid: 34865 components: - type: Transform pos: -120.5,43.5 parent: 2 - - uid: 35012 + - uid: 34866 components: - type: Transform pos: -112.5,47.5 parent: 2 - - uid: 35013 + - uid: 34867 components: - type: Transform pos: -112.5,46.5 parent: 2 - - uid: 35014 + - uid: 34868 components: - type: Transform pos: -116.5,41.5 parent: 2 - - uid: 35015 + - uid: 34869 components: - type: Transform pos: -116.5,42.5 parent: 2 - - uid: 35016 + - uid: 34870 components: - type: Transform pos: -116.5,43.5 parent: 2 - - uid: 35017 + - uid: 34871 components: - type: Transform pos: -116.5,44.5 parent: 2 - - uid: 35018 + - uid: 34872 components: - type: Transform pos: -115.5,44.5 parent: 2 - - uid: 35019 + - uid: 34873 components: - type: Transform pos: -114.5,44.5 parent: 2 - - uid: 35020 + - uid: 34874 components: - type: Transform pos: -122.5,44.5 parent: 2 - - uid: 35021 + - uid: 34875 components: - type: Transform pos: -121.5,44.5 parent: 2 - - uid: 35022 + - uid: 34876 components: - type: Transform pos: -120.5,44.5 parent: 2 - - uid: 35023 + - uid: 34877 components: - type: Transform pos: -120.5,42.5 parent: 2 - - uid: 35024 + - uid: 34878 components: - type: Transform pos: -120.5,41.5 parent: 2 - - uid: 35025 + - uid: 34879 components: - type: Transform pos: -112.5,48.5 parent: 2 - - uid: 35026 + - uid: 34880 components: - type: Transform pos: -120.5,27.5 parent: 2 - - uid: 35027 + - uid: 34881 components: - type: Transform pos: -113.5,44.5 parent: 2 - - uid: 35028 + - uid: 34882 components: - type: Transform pos: -112.5,44.5 parent: 2 - - uid: 35029 + - uid: 34883 components: - type: Transform pos: -111.5,44.5 parent: 2 - - uid: 35030 + - uid: 34884 components: - type: Transform pos: -124.5,45.5 parent: 2 - - uid: 35031 + - uid: 34885 components: - type: Transform pos: -124.5,44.5 parent: 2 - - uid: 35032 + - uid: 34886 components: - type: Transform pos: -125.5,45.5 parent: 2 - - uid: 35033 + - uid: 34887 components: - type: Transform pos: -125.5,44.5 parent: 2 - - uid: 35034 + - uid: 34888 components: - type: Transform pos: -126.5,45.5 parent: 2 - - uid: 35035 + - uid: 34889 components: - type: Transform pos: -126.5,44.5 parent: 2 - - uid: 35036 + - uid: 34890 components: - type: Transform pos: -126.5,42.5 parent: 2 - - uid: 35037 + - uid: 34891 components: - type: Transform pos: -126.5,41.5 parent: 2 - - uid: 35038 + - uid: 34892 components: - type: Transform pos: -126.5,40.5 parent: 2 - - uid: 35039 + - uid: 34893 components: - type: Transform pos: -126.5,39.5 parent: 2 - - uid: 35040 + - uid: 34894 components: - type: Transform pos: -126.5,38.5 parent: 2 - - uid: 35041 + - uid: 34895 components: - type: Transform pos: -126.5,37.5 parent: 2 - - uid: 35042 + - uid: 34896 components: - type: Transform pos: -126.5,36.5 parent: 2 - - uid: 35043 + - uid: 34897 components: - type: Transform rot: -1.5707963267948966 rad pos: -126.5,34.5 parent: 2 - - uid: 35044 + - uid: 34898 components: - type: Transform pos: -120.5,38.5 parent: 2 - - uid: 35045 + - uid: 34899 components: - type: Transform pos: -115.5,32.5 parent: 2 - - uid: 35046 + - uid: 34900 components: - type: Transform pos: -120.5,35.5 parent: 2 - - uid: 35047 + - uid: 34901 components: - type: Transform pos: -120.5,34.5 parent: 2 - - uid: 35048 + - uid: 34902 components: - type: Transform pos: -120.5,33.5 parent: 2 - - uid: 35049 + - uid: 34903 components: - type: Transform pos: -120.5,32.5 parent: 2 - - uid: 35050 + - uid: 34904 components: - type: Transform pos: -120.5,31.5 parent: 2 - - uid: 35051 + - uid: 34905 components: - type: Transform pos: -121.5,29.5 parent: 2 - - uid: 35052 + - uid: 34906 components: - type: Transform pos: -120.5,30.5 parent: 2 - - uid: 35053 + - uid: 34907 components: - type: Transform pos: -120.5,29.5 parent: 2 - - uid: 35054 + - uid: 34908 components: - type: Transform pos: -121.5,30.5 parent: 2 - - uid: 35055 + - uid: 34909 components: - type: Transform pos: -115.5,30.5 parent: 2 - - uid: 35056 + - uid: 34910 components: - type: Transform pos: -115.5,29.5 parent: 2 - - uid: 35057 + - uid: 34911 components: - type: Transform pos: -120.5,25.5 parent: 2 - - uid: 35058 + - uid: 34912 components: - type: Transform pos: -118.5,51.5 parent: 2 - - uid: 35059 + - uid: 34913 components: - type: Transform pos: -113.5,50.5 parent: 2 - - uid: 35060 + - uid: 34914 components: - type: Transform pos: -120.5,37.5 parent: 2 - - uid: 35061 + - uid: 34915 components: - type: Transform pos: -120.5,36.5 parent: 2 - - uid: 35062 + - uid: 34916 components: - type: Transform pos: -121.5,32.5 parent: 2 - - uid: 35063 + - uid: 34917 components: - type: Transform pos: -112.5,34.5 parent: 2 - - uid: 35064 + - uid: 34918 components: - type: Transform pos: -124.5,48.5 parent: 2 - - uid: 35065 + - uid: 34919 components: - type: Transform pos: -124.5,47.5 parent: 2 - - uid: 35066 + - uid: 34920 components: - type: Transform pos: -124.5,46.5 parent: 2 - - uid: 35067 + - uid: 34921 components: - type: Transform pos: -124.5,27.5 parent: 2 - - uid: 35068 + - uid: 34922 components: - type: Transform pos: -112.5,20.5 parent: 2 - - uid: 35069 + - uid: 34923 components: - type: Transform pos: -114.5,16.5 parent: 2 - - uid: 35070 + - uid: 34924 components: - type: Transform pos: -113.5,20.5 parent: 2 - - uid: 35071 + - uid: 34925 components: - type: Transform pos: -113.5,19.5 parent: 2 - - uid: 35072 + - uid: 34926 components: - type: Transform pos: -113.5,18.5 parent: 2 - - uid: 35073 + - uid: 34927 components: - type: Transform pos: -113.5,17.5 parent: 2 - - uid: 35074 + - uid: 34928 components: - type: Transform pos: -113.5,16.5 parent: 2 - - uid: 35075 + - uid: 34929 components: - type: Transform pos: -115.5,16.5 parent: 2 - - uid: 35076 + - uid: 34930 components: - type: Transform pos: -116.5,16.5 parent: 2 - - uid: 35077 + - uid: 34931 components: - type: Transform pos: -117.5,16.5 parent: 2 - - uid: 35078 + - uid: 34932 components: - type: Transform pos: -118.5,16.5 parent: 2 - - uid: 35079 + - uid: 34933 components: - type: Transform pos: -119.5,16.5 parent: 2 - - uid: 35080 + - uid: 34934 components: - type: Transform pos: -120.5,16.5 parent: 2 - - uid: 35081 + - uid: 34935 components: - type: Transform pos: -121.5,16.5 parent: 2 - - uid: 35082 + - uid: 34936 components: - type: Transform pos: -122.5,16.5 parent: 2 - - uid: 35083 + - uid: 34937 components: - type: Transform pos: -123.5,16.5 parent: 2 - - uid: 35084 + - uid: 34938 components: - type: Transform pos: -123.5,17.5 parent: 2 - - uid: 35085 + - uid: 34939 components: - type: Transform pos: -123.5,18.5 parent: 2 - - uid: 35086 + - uid: 34940 components: - type: Transform pos: -123.5,19.5 parent: 2 - - uid: 35087 + - uid: 34941 components: - type: Transform pos: -123.5,20.5 parent: 2 - - uid: 35088 + - uid: 34942 components: - type: Transform pos: -118.5,52.5 parent: 2 - - uid: 35089 + - uid: 34943 components: - type: Transform pos: -117.5,51.5 parent: 2 - - uid: 35090 + - uid: 34944 components: - type: Transform pos: -112.5,49.5 parent: 2 - - uid: 35091 + - uid: 34945 components: - type: Transform pos: -114.5,52.5 parent: 2 - - uid: 35092 + - uid: 34946 components: - type: Transform pos: -117.5,52.5 parent: 2 - - uid: 35093 + - uid: 34947 components: - type: Transform pos: -112.5,50.5 parent: 2 - - uid: 35094 + - uid: 34948 components: - type: Transform pos: -115.5,52.5 parent: 2 - - uid: 35095 + - uid: 34949 components: - type: Transform pos: -115.5,51.5 parent: 2 - - uid: 35096 + - uid: 34950 components: - type: Transform pos: -116.5,52.5 parent: 2 - - uid: 35097 + - uid: 34951 components: - type: Transform pos: -116.5,51.5 parent: 2 - - uid: 35098 + - uid: 34952 components: - type: Transform pos: -116.5,38.5 parent: 2 - - uid: 35099 + - uid: 34953 components: - type: Transform pos: -122.5,27.5 parent: 2 - - uid: 35100 + - uid: 34954 components: - type: Transform pos: -121.5,27.5 parent: 2 - - uid: 35101 + - uid: 34955 components: - type: Transform pos: -114.5,27.5 parent: 2 - - uid: 35102 + - uid: 34956 components: - type: Transform pos: -116.5,27.5 parent: 2 - - uid: 35103 + - uid: 34957 components: - type: Transform pos: -115.5,27.5 parent: 2 - - uid: 35104 + - uid: 34958 components: - type: Transform pos: -116.5,25.5 parent: 2 - - uid: 35105 + - uid: 34959 components: - type: Transform pos: -116.5,21.5 parent: 2 - - uid: 35106 + - uid: 34960 components: - type: Transform pos: -116.5,22.5 parent: 2 - - uid: 35107 + - uid: 34961 components: - type: Transform pos: -121.5,31.5 parent: 2 - - uid: 35108 + - uid: 34962 components: - type: Transform pos: -114.5,29.5 parent: 2 - - uid: 35109 + - uid: 34963 components: - type: Transform pos: -114.5,30.5 parent: 2 - - uid: 35110 + - uid: 34964 components: - type: Transform pos: -126.5,35.5 parent: 2 - - uid: 35111 + - uid: 34965 components: - type: Transform pos: -116.5,26.5 parent: 2 - - uid: 35112 + - uid: 34966 components: - type: Transform pos: -116.5,34.5 parent: 2 - - uid: 35113 + - uid: 34967 components: - type: Transform pos: -115.5,28.5 parent: 2 - - uid: 35114 + - uid: 34968 components: - type: Transform pos: -114.5,28.5 parent: 2 - - uid: 35115 + - uid: 34969 components: - type: Transform pos: -120.5,28.5 parent: 2 - - uid: 35116 + - uid: 34970 components: - type: Transform pos: -121.5,34.5 parent: 2 - - uid: 35117 + - uid: 34971 components: - type: Transform pos: -123.5,28.5 parent: 2 - - uid: 35118 + - uid: 34972 components: - type: Transform pos: -122.5,28.5 parent: 2 - - uid: 35119 + - uid: 34973 components: - type: Transform pos: -121.5,28.5 parent: 2 - - uid: 35120 + - uid: 34974 components: - type: Transform pos: -116.5,32.5 parent: 2 - - uid: 35121 + - uid: 34975 components: - type: Transform pos: -116.5,33.5 parent: 2 - - uid: 35122 + - uid: 34976 components: - type: Transform pos: -116.5,35.5 parent: 2 - - uid: 35123 + - uid: 34977 components: - type: Transform pos: -113.5,28.5 parent: 2 - - uid: 35124 + - uid: 34978 components: - type: Transform pos: -116.5,31.5 parent: 2 - - uid: 35125 + - uid: 34979 components: - type: Transform pos: -116.5,36.5 parent: 2 - - uid: 35126 + - uid: 34980 components: - type: Transform pos: -116.5,37.5 parent: 2 - - uid: 35127 + - uid: 34981 components: - type: Transform pos: -122.5,29.5 parent: 2 - - uid: 35128 + - uid: 34982 components: - type: Transform pos: -116.5,24.5 parent: 2 - - uid: 35129 + - uid: 34983 components: - type: Transform pos: -116.5,29.5 parent: 2 - - uid: 35130 + - uid: 34984 components: - type: Transform pos: -116.5,30.5 parent: 2 - - uid: 35131 + - uid: 34985 components: - type: Transform pos: -116.5,28.5 parent: 2 - - uid: 35132 + - uid: 34986 components: - type: Transform pos: -119.5,51.5 parent: 2 - - uid: 35133 + - uid: 34987 components: - type: Transform pos: 80.5,11.5 parent: 2 - - uid: 35134 + - uid: 34988 components: - type: Transform pos: -121.5,52.5 parent: 2 - - uid: 35135 + - uid: 34989 components: - type: Transform pos: -121.5,51.5 parent: 2 - - uid: 35136 + - uid: 34990 components: - type: Transform pos: -122.5,52.5 parent: 2 - - uid: 35137 + - uid: 34991 components: - type: Transform pos: -122.5,51.5 parent: 2 - - uid: 35138 + - uid: 34992 components: - type: Transform pos: -120.5,52.5 parent: 2 - - uid: 35139 + - uid: 34993 components: - type: Transform pos: -123.5,51.5 parent: 2 - - uid: 35140 + - uid: 34994 components: - type: Transform pos: -123.5,52.5 parent: 2 - - uid: 35141 + - uid: 34995 components: - type: Transform pos: -120.5,51.5 parent: 2 - - uid: 35142 + - uid: 34996 components: - type: Transform pos: -119.5,52.5 parent: 2 - - uid: 35143 + - uid: 34997 components: - type: Transform pos: -124.5,50.5 parent: 2 - - uid: 35144 + - uid: 34998 components: - type: Transform pos: -124.5,51.5 parent: 2 - - uid: 35145 + - uid: 34999 components: - type: Transform pos: -124.5,52.5 parent: 2 - - uid: 35146 + - uid: 35000 components: - type: Transform pos: -123.5,49.5 parent: 2 - - uid: 35147 + - uid: 35001 components: - type: Transform pos: -123.5,50.5 parent: 2 - - uid: 35148 + - uid: 35002 components: - type: Transform pos: -124.5,49.5 parent: 2 - - uid: 35159 + - uid: 35003 components: - type: Transform pos: -74.5,-1.5 parent: 2 - - uid: 35160 + - uid: 35004 components: - type: Transform pos: -74.5,-0.5 parent: 2 - - uid: 35161 + - uid: 35005 components: - type: Transform pos: 77.5,20.5 parent: 2 - - uid: 35162 + - uid: 35006 components: - type: Transform pos: 87.5,15.5 parent: 2 - - uid: 35163 + - uid: 35007 components: - type: Transform pos: 88.5,15.5 parent: 2 - - uid: 35164 + - uid: 35008 components: - type: Transform pos: 89.5,15.5 parent: 2 - - uid: 35165 + - uid: 35009 components: - type: Transform pos: 90.5,15.5 parent: 2 - - uid: 35166 + - uid: 35010 components: - type: Transform pos: 94.5,12.5 parent: 2 - - uid: 35167 + - uid: 35011 components: - type: Transform pos: 94.5,14.5 parent: 2 - - uid: 35168 + - uid: 35012 components: - type: Transform pos: 94.5,15.5 parent: 2 - - uid: 35169 + - uid: 35013 components: - type: Transform pos: 90.5,24.5 parent: 2 - - uid: 35170 + - uid: 35014 components: - type: Transform pos: 91.5,24.5 parent: 2 - - uid: 35171 + - uid: 35015 components: - type: Transform pos: 94.5,25.5 parent: 2 - - uid: 35172 + - uid: 35016 components: - type: Transform pos: 93.5,24.5 parent: 2 - - uid: 35173 + - uid: 35017 components: - type: Transform pos: 94.5,24.5 parent: 2 - - uid: 35174 + - uid: 35018 components: - type: Transform pos: 94.5,23.5 parent: 2 - - uid: 35175 + - uid: 35019 components: - type: Transform pos: 94.5,22.5 parent: 2 - - uid: 35176 + - uid: 35020 components: - type: Transform pos: 94.5,20.5 parent: 2 - - uid: 35177 + - uid: 35021 components: - type: Transform pos: 94.5,19.5 parent: 2 - - uid: 35178 + - uid: 35022 components: - type: Transform pos: 94.5,16.5 parent: 2 - - uid: 35179 + - uid: 35023 components: - type: Transform pos: 94.5,26.5 parent: 2 - - uid: 35180 + - uid: 35024 components: - type: Transform pos: 94.5,27.5 parent: 2 - - uid: 35181 + - uid: 35025 components: - type: Transform pos: 93.5,27.5 parent: 2 - - uid: 35182 + - uid: 35026 components: - type: Transform pos: 91.5,27.5 parent: 2 - - uid: 35183 + - uid: 35027 components: - type: Transform pos: 90.5,27.5 parent: 2 - - uid: 35184 + - uid: 35028 components: - type: Transform pos: 90.5,26.5 parent: 2 - - uid: 35185 + - uid: 35029 components: - type: Transform pos: 90.5,25.5 parent: 2 - - uid: 35186 + - uid: 35030 components: - type: Transform pos: -20.5,-28.5 parent: 2 - - uid: 35187 + - uid: 35031 components: - type: Transform pos: -16.5,-31.5 parent: 2 - - uid: 35188 + - uid: 35032 components: - type: Transform pos: -77.5,-14.5 parent: 2 - - uid: 35189 + - uid: 35033 components: - type: Transform pos: -77.5,-13.5 parent: 2 - - uid: 35190 + - uid: 35034 components: - type: Transform pos: -77.5,-12.5 parent: 2 - - uid: 35191 + - uid: 35035 components: - type: Transform pos: -77.5,-11.5 parent: 2 - - uid: 35192 + - uid: 35036 components: - type: Transform pos: -39.5,-53.5 parent: 2 - - uid: 35193 + - uid: 35037 components: - type: Transform pos: -38.5,-53.5 parent: 2 - - uid: 35194 + - uid: 35038 components: - type: Transform pos: -37.5,-53.5 parent: 2 - - uid: 35195 + - uid: 35039 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-83.5 parent: 2 - - uid: 35196 + - uid: 35040 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-65.5 parent: 2 - - uid: 35197 + - uid: 35041 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-33.5 parent: 2 - - uid: 35198 + - uid: 35042 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,8.5 parent: 2 - - uid: 35199 + - uid: 35043 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,83.5 parent: 2 - - uid: 35200 + - uid: 35044 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,85.5 parent: 2 - - uid: 35201 + - uid: 35045 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,83.5 parent: 2 - - uid: 35202 + - uid: 35046 components: - type: Transform pos: 98.5,7.5 parent: 2 - - uid: 35203 + - uid: 35047 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-0.5 parent: 2 - - uid: 35204 + - uid: 35048 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,51.5 parent: 2 - - uid: 35205 + - uid: 35049 components: - type: Transform pos: 82.5,-5.5 parent: 2 - - uid: 35206 + - uid: 35050 components: - type: Transform pos: -77.5,23.5 parent: 2 - - uid: 35207 + - uid: 35051 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,39.5 parent: 2 - - uid: 35208 + - uid: 35052 components: - type: Transform pos: -63.5,39.5 parent: 2 - - uid: 35209 + - uid: 35053 components: - type: Transform pos: -62.5,39.5 parent: 2 - - uid: 35210 + - uid: 35054 components: - type: Transform pos: -26.5,78.5 parent: 2 - - uid: 35211 + - uid: 35055 components: - type: Transform pos: -32.5,78.5 parent: 2 - - uid: 35212 + - uid: 35056 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,76.5 parent: 2 - - uid: 35213 + - uid: 35057 components: - type: Transform pos: -9.5,6.5 parent: 2 - - uid: 35214 + - uid: 35058 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,31.5 parent: 2 - - uid: 35215 + - uid: 35059 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,35.5 parent: 2 - - uid: 35216 + - uid: 35060 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,43.5 parent: 2 - - uid: 35217 + - uid: 35061 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,47.5 parent: 2 - - uid: 35218 + - uid: 35062 components: - type: Transform pos: -38.5,-4.5 parent: 2 - - uid: 35219 + - uid: 35063 components: - type: Transform pos: -77.5,24.5 parent: 2 - - uid: 35220 + - uid: 35064 components: - type: Transform pos: -77.5,25.5 parent: 2 - - uid: 35221 + - uid: 35065 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,10.5 parent: 2 - - uid: 35222 + - uid: 35066 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,3.5 parent: 2 - - uid: 35223 + - uid: 35067 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,8.5 parent: 2 - - uid: 35224 + - uid: 35068 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,4.5 parent: 2 - - uid: 35225 + - uid: 35069 components: - type: Transform pos: 98.5,6.5 parent: 2 - - uid: 35226 + - uid: 35070 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,3.5 parent: 2 - - uid: 35227 + - uid: 35071 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-0.5 parent: 2 - - uid: 35228 + - uid: 35072 components: - type: Transform pos: 98.5,5.5 parent: 2 - - uid: 35229 + - uid: 35073 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-0.5 parent: 2 - - uid: 35230 + - uid: 35074 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-0.5 parent: 2 - - uid: 35231 + - uid: 35075 components: - type: Transform pos: 98.5,8.5 parent: 2 - - uid: 35232 + - uid: 35076 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-0.5 parent: 2 - - uid: 35233 + - uid: 35077 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,3.5 parent: 2 - - uid: 35234 + - uid: 35078 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,8.5 parent: 2 - - uid: 35235 + - uid: 35079 components: - type: Transform pos: 97.5,8.5 parent: 2 - - uid: 35236 + - uid: 35080 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-1.5 parent: 2 - - uid: 35237 + - uid: 35081 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,10.5 parent: 2 - - uid: 35238 + - uid: 35082 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 35239 + - uid: 35083 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,11.5 parent: 2 - - uid: 35240 + - uid: 35084 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,11.5 parent: 2 - - uid: 35241 + - uid: 35085 components: - type: Transform rot: -1.5707963267948966 rad pos: 97.5,11.5 parent: 2 - - uid: 35242 + - uid: 35086 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,11.5 parent: 2 - - uid: 35243 + - uid: 35087 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,11.5 parent: 2 - - uid: 35244 + - uid: 35088 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,14.5 parent: 2 - - uid: 35245 + - uid: 35089 components: - type: Transform pos: 29.5,19.5 parent: 2 - - uid: 35246 + - uid: 35090 components: - type: Transform pos: 29.5,18.5 parent: 2 - - uid: 35247 + - uid: 35091 components: - type: Transform pos: 29.5,17.5 parent: 2 - - uid: 35248 + - uid: 35092 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 35249 + - uid: 35093 components: - type: Transform pos: 29.5,15.5 parent: 2 - - uid: 35250 + - uid: 35094 components: - type: Transform pos: 29.5,14.5 parent: 2 - - uid: 35251 + - uid: 35095 components: - type: Transform pos: 2.5,85.5 parent: 2 - - uid: 35252 + - uid: 35096 components: - type: Transform pos: -110.5,30.5 parent: 2 - - uid: 35253 + - uid: 35097 components: - type: Transform pos: 59.5,20.5 parent: 2 - - uid: 35254 + - uid: 35098 components: - type: Transform pos: 55.5,20.5 parent: 2 - - uid: 35255 + - uid: 35099 components: - type: Transform pos: 56.5,20.5 parent: 2 - - uid: 35256 + - uid: 35100 components: - type: Transform pos: 55.5,19.5 parent: 2 - - uid: 35257 + - uid: 35101 components: - type: Transform pos: 55.5,15.5 parent: 2 - - uid: 35258 + - uid: 35102 components: - type: Transform pos: 58.5,20.5 parent: 2 - - uid: 35259 + - uid: 35103 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-5.5 parent: 2 - - uid: 35260 + - uid: 35104 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,27.5 parent: 2 - - uid: 35261 + - uid: 35105 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,27.5 parent: 2 - - uid: 35262 + - uid: 35106 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,27.5 parent: 2 - - uid: 35263 + - uid: 35107 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,22.5 parent: 2 - - uid: 35264 + - uid: 35108 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,23.5 parent: 2 - - uid: 35265 + - uid: 35109 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,21.5 parent: 2 - - uid: 35266 + - uid: 35110 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-2.5 parent: 2 - - uid: 35267 + - uid: 35111 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-3.5 parent: 2 - - uid: 35268 + - uid: 35112 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,30.5 parent: 2 - - uid: 35269 + - uid: 35113 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,20.5 parent: 2 - - uid: 35270 + - uid: 35114 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-1.5 parent: 2 - - uid: 35271 + - uid: 35115 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,24.5 parent: 2 - - uid: 35272 + - uid: 35116 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-1.5 parent: 2 - - uid: 35273 + - uid: 35117 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,26.5 parent: 2 - - uid: 35274 + - uid: 35118 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-3.5 parent: 2 - - uid: 35275 + - uid: 35119 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 2 - - uid: 35276 + - uid: 35120 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,20.5 parent: 2 - - uid: 35277 + - uid: 35121 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-2.5 parent: 2 - - uid: 35278 + - uid: 35122 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,2.5 parent: 2 - - uid: 35279 + - uid: 35123 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,3.5 parent: 2 - - uid: 35280 + - uid: 35124 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-1.5 parent: 2 - - uid: 35281 + - uid: 35125 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-1.5 parent: 2 - - uid: 35282 + - uid: 35126 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,9.5 parent: 2 - - uid: 35283 + - uid: 35127 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,10.5 parent: 2 - - uid: 35284 + - uid: 35128 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,2.5 parent: 2 - - uid: 35285 + - uid: 35129 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,10.5 parent: 2 - - uid: 35286 + - uid: 35130 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-8.5 parent: 2 - - uid: 35287 + - uid: 35131 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-9.5 parent: 2 - - uid: 35288 + - uid: 35132 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-9.5 parent: 2 - - uid: 35289 + - uid: 35133 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,10.5 parent: 2 - - uid: 35290 + - uid: 35134 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,13.5 parent: 2 - - uid: 35291 + - uid: 35135 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,6.5 parent: 2 - - uid: 35292 + - uid: 35136 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,2.5 parent: 2 - - uid: 35293 + - uid: 35137 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,6.5 parent: 2 - - uid: 35294 + - uid: 35138 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,12.5 parent: 2 - - uid: 35295 + - uid: 35139 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,0.5 parent: 2 - - uid: 35296 + - uid: 35140 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,11.5 parent: 2 - - uid: 35297 + - uid: 35141 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 - - uid: 35298 + - uid: 35142 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,8.5 parent: 2 - - uid: 35299 + - uid: 35143 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2 - - uid: 35300 + - uid: 35144 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,11.5 parent: 2 - - uid: 35301 + - uid: 35145 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,2.5 parent: 2 - - uid: 35302 + - uid: 35146 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-5.5 parent: 2 - - uid: 35303 + - uid: 35147 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,10.5 parent: 2 - - uid: 35304 + - uid: 35148 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-1.5 parent: 2 - - uid: 35305 + - uid: 35149 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,6.5 parent: 2 - - uid: 35306 + - uid: 35150 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,10.5 parent: 2 - - uid: 35307 + - uid: 35151 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-1.5 parent: 2 - - uid: 35308 + - uid: 35152 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,2.5 parent: 2 - - uid: 35309 + - uid: 35153 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-9.5 parent: 2 - - uid: 35310 + - uid: 35154 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,6.5 parent: 2 - - uid: 35311 + - uid: 35155 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-9.5 parent: 2 - - uid: 35312 + - uid: 35156 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-9.5 parent: 2 - - uid: 35313 + - uid: 35157 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-4.5 parent: 2 - - uid: 35314 + - uid: 35158 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,1.5 parent: 2 - - uid: 35315 + - uid: 35159 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,28.5 parent: 2 - - uid: 35316 + - uid: 35160 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,29.5 parent: 2 - - uid: 35317 + - uid: 35161 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,27.5 parent: 2 - - uid: 35318 + - uid: 35162 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,20.5 parent: 2 - - uid: 35319 + - uid: 35163 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,20.5 parent: 2 - - uid: 35320 + - uid: 35164 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-1.5 parent: 2 - - uid: 35321 + - uid: 35165 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-5.5 parent: 2 - - uid: 35322 + - uid: 35166 components: - type: Transform pos: 47.5,-5.5 parent: 2 - - uid: 35323 + - uid: 35167 components: - type: Transform pos: -8.5,-1.5 parent: 2 - - uid: 35324 + - uid: 35168 components: - type: Transform pos: -13.5,-1.5 parent: 2 - - uid: 35325 + - uid: 35169 components: - type: Transform pos: -8.5,2.5 parent: 2 - - uid: 35326 + - uid: 35170 components: - type: Transform pos: -13.5,-5.5 parent: 2 - - uid: 35327 + - uid: 35171 components: - type: Transform pos: -13.5,-3.5 parent: 2 - - uid: 35328 + - uid: 35172 components: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 35329 + - uid: 35173 components: - type: Transform pos: -8.5,1.5 parent: 2 - - uid: 35330 + - uid: 35174 components: - type: Transform pos: -12.5,12.5 parent: 2 - - uid: 35331 + - uid: 35175 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 35332 + - uid: 35176 components: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 35333 + - uid: 35177 components: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 35334 + - uid: 35178 components: - type: Transform pos: -6.5,12.5 parent: 2 - - uid: 35335 + - uid: 35179 components: - type: Transform pos: -6.5,11.5 parent: 2 - - uid: 35336 + - uid: 35180 components: - type: Transform pos: 23.5,11.5 parent: 2 - - uid: 35337 + - uid: 35181 components: - type: Transform pos: 11.5,-2.5 parent: 2 - - uid: 35338 + - uid: 35182 components: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 35339 + - uid: 35183 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 35340 + - uid: 35184 components: - type: Transform pos: -9.5,16.5 parent: 2 - - uid: 35341 + - uid: 35185 components: - type: Transform pos: -7.5,12.5 parent: 2 - - uid: 35342 + - uid: 35186 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,7.5 parent: 2 - - uid: 35343 + - uid: 35187 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,7.5 parent: 2 - - uid: 35344 + - uid: 35188 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,7.5 parent: 2 - - uid: 35345 + - uid: 35189 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,10.5 parent: 2 - - uid: 35346 + - uid: 35190 components: - type: Transform pos: 19.5,11.5 parent: 2 - - uid: 35347 + - uid: 35191 components: - type: Transform pos: 9.5,-1.5 parent: 2 - - uid: 35348 + - uid: 35192 components: - type: Transform pos: -3.5,12.5 parent: 2 - - uid: 35349 + - uid: 35193 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,9.5 parent: 2 - - uid: 35350 + - uid: 35194 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,8.5 parent: 2 - - uid: 35351 + - uid: 35195 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,10.5 parent: 2 - - uid: 35352 + - uid: 35196 components: - type: Transform pos: 25.5,11.5 parent: 2 - - uid: 35353 + - uid: 35197 components: - type: Transform pos: 24.5,11.5 parent: 2 - - uid: 35354 + - uid: 35198 components: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 35355 + - uid: 35199 components: - type: Transform pos: 10.5,-2.5 parent: 2 - - uid: 39866 + - uid: 39693 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 - parent: 38584 - - uid: 39867 + parent: 38411 + - uid: 39694 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 - parent: 38584 - - uid: 39868 + parent: 38411 + - uid: 39695 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-1.5 - parent: 38584 - - uid: 39869 + parent: 38411 + - uid: 39696 components: - type: Transform pos: 9.5,8.5 - parent: 38584 - - uid: 39870 + parent: 38411 + - uid: 39697 components: - type: Transform pos: 2.5,-0.5 - parent: 38584 - - uid: 39871 + parent: 38411 + - uid: 39698 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-6.5 - parent: 38584 - - uid: 39872 + parent: 38411 + - uid: 39699 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-6.5 - parent: 38584 - - uid: 39873 + parent: 38411 + - uid: 39700 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-5.5 - parent: 38584 - - uid: 39874 + parent: 38411 + - uid: 39701 components: - type: Transform pos: 5.5,-0.5 - parent: 38584 - - uid: 39875 + parent: 38411 + - uid: 39702 components: - type: Transform pos: 15.5,3.5 - parent: 38584 - - uid: 39876 + parent: 38411 + - uid: 39703 components: - type: Transform pos: 8.5,-1.5 - parent: 38584 - - uid: 39877 + parent: 38411 + - uid: 39704 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-6.5 - parent: 38584 - - uid: 39878 + parent: 38411 + - uid: 39705 components: - type: Transform pos: 11.5,-8.5 - parent: 38584 - - uid: 39879 + parent: 38411 + - uid: 39706 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-6.5 - parent: 38584 - - uid: 39880 + parent: 38411 + - uid: 39707 components: - type: Transform pos: 8.5,-0.5 - parent: 38584 - - uid: 39881 + parent: 38411 + - uid: 39708 components: - type: Transform pos: 6.5,5.5 - parent: 38584 - - uid: 39882 + parent: 38411 + - uid: 39709 components: - type: Transform pos: 13.5,-1.5 - parent: 38584 - - uid: 39883 + parent: 38411 + - uid: 39710 components: - type: Transform pos: 13.5,-3.5 - parent: 38584 - - uid: 39884 + parent: 38411 + - uid: 39711 components: - type: Transform pos: 9.5,-8.5 - parent: 38584 - - uid: 39885 + parent: 38411 + - uid: 39712 components: - type: Transform pos: 2.5,-4.5 - parent: 38584 - - uid: 39886 + parent: 38411 + - uid: 39713 components: - type: Transform pos: 2.5,-5.5 - parent: 38584 - - uid: 39887 + parent: 38411 + - uid: 39714 components: - type: Transform pos: 12.5,-9.5 - parent: 38584 - - uid: 39888 + parent: 38411 + - uid: 39715 components: - type: Transform pos: 7.5,-9.5 - parent: 38584 - - uid: 39889 + parent: 38411 + - uid: 39716 components: - type: Transform pos: 13.5,-8.5 - parent: 38584 - - uid: 39890 + parent: 38411 + - uid: 39717 components: - type: Transform pos: 13.5,-7.5 - parent: 38584 - - uid: 39891 + parent: 38411 + - uid: 39718 components: - type: Transform pos: 7.5,-8.5 - parent: 38584 - - uid: 39892 + parent: 38411 + - uid: 39719 components: - type: Transform pos: 12.5,-0.5 - parent: 38584 - - uid: 39893 + parent: 38411 + - uid: 39720 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,8.5 - parent: 38584 - - uid: 39894 + parent: 38411 + - uid: 39721 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,11.5 - parent: 38584 - - uid: 39895 + parent: 38411 + - uid: 39722 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,10.5 - parent: 38584 - - uid: 39896 + parent: 38411 + - uid: 39723 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,7.5 - parent: 38584 - - uid: 39897 + parent: 38411 + - uid: 39724 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,11.5 - parent: 38584 - - uid: 39898 + parent: 38411 + - uid: 39725 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,11.5 - parent: 38584 - - uid: 39899 + parent: 38411 + - uid: 39726 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,6.5 - parent: 38584 - - uid: 39900 + parent: 38411 + - uid: 39727 components: - type: Transform pos: -3.5,6.5 - parent: 38584 - - uid: 39901 + parent: 38411 + - uid: 39728 components: - type: Transform pos: -3.5,8.5 - parent: 38584 - - uid: 39902 + parent: 38411 + - uid: 39729 components: - type: Transform pos: 1.5,9.5 - parent: 38584 - - uid: 39903 + parent: 38411 + - uid: 39730 components: - type: Transform pos: -0.5,5.5 - parent: 38584 - - uid: 39904 + parent: 38411 + - uid: 39731 components: - type: Transform pos: -2.5,5.5 - parent: 38584 - - uid: 39905 + parent: 38411 + - uid: 39732 components: - type: Transform pos: 2.5,8.5 - parent: 38584 - - uid: 39906 + parent: 38411 + - uid: 39733 components: - type: Transform pos: 4.5,5.5 - parent: 38584 - - uid: 39907 + parent: 38411 + - uid: 39734 components: - type: Transform pos: 13.5,-0.5 - parent: 38584 - - uid: 39908 + parent: 38411 + - uid: 39735 components: - type: Transform pos: 13.5,-2.5 - parent: 38584 - - uid: 39909 + parent: 38411 + - uid: 39736 components: - type: Transform pos: 13.5,-9.5 - parent: 38584 - - uid: 39910 + parent: 38411 + - uid: 39737 components: - type: Transform pos: 10.5,-9.5 - parent: 38584 - - uid: 39911 + parent: 38411 + - uid: 39738 components: - type: Transform pos: -3.5,9.5 - parent: 38584 - - uid: 39912 + parent: 38411 + - uid: 39739 components: - type: Transform pos: 2.5,9.5 - parent: 38584 - - uid: 39913 + parent: 38411 + - uid: 39740 components: - type: Transform pos: 15.5,5.5 - parent: 38584 - - uid: 39914 + parent: 38411 + - uid: 39741 components: - type: Transform pos: 14.5,5.5 - parent: 38584 - - uid: 39915 + parent: 38411 + - uid: 39742 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-0.5 - parent: 38584 - - uid: 39916 + parent: 38411 + - uid: 39743 components: - type: Transform pos: 11.5,8.5 - parent: 38584 - - uid: 39917 + parent: 38411 + - uid: 39744 components: - type: Transform pos: 14.5,6.5 - parent: 38584 - - uid: 39918 + parent: 38411 + - uid: 39745 components: - type: Transform pos: 14.5,7.5 - parent: 38584 - - uid: 39919 + parent: 38411 + - uid: 39746 components: - type: Transform pos: 13.5,7.5 - parent: 38584 - - uid: 39920 + parent: 38411 + - uid: 39747 components: - type: Transform pos: 12.5,7.5 - parent: 38584 - - uid: 39921 + parent: 38411 + - uid: 39748 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 - parent: 38584 - - uid: 39922 + parent: 38411 + - uid: 39749 components: - type: Transform pos: 18.5,4.5 - parent: 38584 - - uid: 39923 + parent: 38411 + - uid: 39750 components: - type: Transform pos: 18.5,5.5 - parent: 38584 - - uid: 39924 + parent: 38411 + - uid: 39751 components: - type: Transform pos: 12.5,-3.5 - parent: 38584 - - uid: 39925 + parent: 38411 + - uid: 39752 components: - type: Transform pos: 10.5,8.5 - parent: 38584 - - uid: 39926 + parent: 38411 + - uid: 39753 components: - type: Transform pos: 5.5,-6.5 - parent: 38584 - - uid: 39927 + parent: 38411 + - uid: 39754 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,5.5 - parent: 38584 - - uid: 39928 + parent: 38411 + - uid: 39755 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-2.5 - parent: 38584 - - uid: 39929 + parent: 38411 + - uid: 39756 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,0.5 - parent: 38584 - - uid: 39930 + parent: 38411 + - uid: 39757 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,11.5 - parent: 38584 - - uid: 39931 + parent: 38411 + - uid: 39758 components: - type: Transform pos: 9.5,-0.5 - parent: 38584 - - uid: 39932 + parent: 38411 + - uid: 39759 components: - type: Transform pos: 12.5,0.5 - parent: 38584 - - uid: 39933 + parent: 38411 + - uid: 39760 components: - type: Transform pos: 2.5,-3.5 - parent: 38584 - - uid: 39934 + parent: 38411 + - uid: 39761 components: - type: Transform pos: 2.5,-1.5 - parent: 38584 - - uid: 39935 + parent: 38411 + - uid: 39762 components: - type: Transform pos: 17.5,5.5 - parent: 38584 - - uid: 39936 + parent: 38411 + - uid: 39763 components: - type: Transform pos: 16.5,5.5 - parent: 38584 - - uid: 39937 + parent: 38411 + - uid: 39764 components: - type: Transform pos: 1.5,5.5 - parent: 38584 - - uid: 39938 + parent: 38411 + - uid: 39765 components: - type: Transform pos: -0.5,9.5 - parent: 38584 - - uid: 39939 + parent: 38411 + - uid: 39766 components: - type: Transform pos: 13.5,-4.5 - parent: 38584 - - uid: 39940 + parent: 38411 + - uid: 39767 components: - type: Transform pos: 3.5,5.5 - parent: 38584 - - uid: 39941 + parent: 38411 + - uid: 39768 components: - type: Transform pos: 9.5,-9.5 - parent: 38584 - - uid: 39942 + parent: 38411 + - uid: 39769 components: - type: Transform pos: 7.5,7.5 - parent: 38584 - - uid: 39943 + parent: 38411 + - uid: 39770 components: - type: Transform pos: 8.5,-9.5 - parent: 38584 - - uid: 39944 + parent: 38411 + - uid: 39771 components: - type: Transform pos: 13.5,-6.5 - parent: 38584 - - uid: 39945 + parent: 38411 + - uid: 39772 components: - type: Transform pos: 5.5,5.5 - parent: 38584 - - uid: 39946 + parent: 38411 + - uid: 39773 components: - type: Transform pos: 11.5,-9.5 - parent: 38584 - - uid: 39947 + parent: 38411 + - uid: 39774 components: - type: Transform pos: 7.5,6.5 - parent: 38584 - - uid: 39948 + parent: 38411 + - uid: 39775 components: - type: Transform pos: 13.5,-5.5 - parent: 38584 - - uid: 39949 + parent: 38411 + - uid: 39776 components: - type: Transform pos: -2.5,9.5 - parent: 38584 - - uid: 39950 + parent: 38411 + - uid: 39777 components: - type: Transform pos: -3.5,7.5 - parent: 38584 - - uid: 39951 + parent: 38411 + - uid: 39778 components: - type: Transform pos: 10.5,-0.5 - parent: 38584 - - uid: 39952 + parent: 38411 + - uid: 39779 components: - type: Transform pos: 11.5,-0.5 - parent: 38584 - - uid: 39953 + parent: 38411 + - uid: 39780 components: - type: Transform pos: 12.5,-8.5 - parent: 38584 - - uid: 39954 + parent: 38411 + - uid: 39781 components: - type: Transform pos: 12.5,-7.5 - parent: 38584 - - uid: 39955 + parent: 38411 + - uid: 39782 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-6.5 - parent: 38584 - - uid: 39956 + parent: 38411 + - uid: 39783 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-7.5 - parent: 38584 - - uid: 39957 + parent: 38411 + - uid: 39784 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-7.5 - parent: 38584 - - uid: 39958 + parent: 38411 + - uid: 39785 components: - type: Transform pos: -3.5,5.5 - parent: 38584 - - uid: 39959 + parent: 38411 + - uid: 39786 components: - type: Transform pos: 6.5,-0.5 - parent: 38584 - - uid: 39960 + parent: 38411 + - uid: 39787 components: - type: Transform pos: 3.5,-0.5 - parent: 38584 - - uid: 39961 + parent: 38411 + - uid: 39788 components: - type: Transform pos: 6.5,0.5 - parent: 38584 - - uid: 39962 + parent: 38411 + - uid: 39789 components: - type: Transform pos: 7.5,8.5 - parent: 38584 - - uid: 39963 + parent: 38411 + - uid: 39790 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-4.5 - parent: 38584 - - uid: 39964 + parent: 38411 + - uid: 39791 components: - type: Transform pos: -3.5,-5.5 - parent: 38584 - - uid: 39965 + parent: 38411 + - uid: 39792 components: - type: Transform pos: 6.5,-6.5 - parent: 38584 - - uid: 39966 + parent: 38411 + - uid: 39793 components: - type: Transform pos: 10.5,-8.5 - parent: 38584 - - uid: 39967 + parent: 38411 + - uid: 39794 components: - type: Transform pos: 2.5,5.5 - parent: 38584 - - uid: 39968 + parent: 38411 + - uid: 39795 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-0.5 - parent: 38584 - - uid: 39969 + parent: 38411 + - uid: 39796 components: - type: Transform pos: 6.5,-7.5 - parent: 38584 - - uid: 39970 + parent: 38411 + - uid: 39797 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 - parent: 38584 - - uid: 39971 + parent: 38411 + - uid: 39798 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-0.5 - parent: 38584 - - uid: 39972 + parent: 38411 + - uid: 39799 components: - type: Transform pos: 7.5,-7.5 - parent: 38584 - - uid: 39973 + parent: 38411 + - uid: 39800 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,3.5 - parent: 38584 - - uid: 39974 + parent: 38411 + - uid: 39801 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,4.5 - parent: 38584 - - uid: 39975 + parent: 38411 + - uid: 39802 components: - type: Transform pos: 12.5,8.5 - parent: 38584 - - uid: 39976 + parent: 38411 + - uid: 39803 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,5.5 - parent: 38584 - - uid: 39977 + parent: 38411 + - uid: 39804 components: - type: Transform pos: 12.5,-2.5 - parent: 38584 - - uid: 39978 + parent: 38411 + - uid: 39805 components: - type: Transform pos: 8.5,-6.5 - parent: 38584 - - uid: 39979 + parent: 38411 + - uid: 39806 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,1.5 - parent: 38584 - - uid: 39980 + parent: 38411 + - uid: 39807 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 38584 - - uid: 39981 + parent: 38411 + - uid: 39808 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,5.5 - parent: 38584 - - uid: 39982 + parent: 38411 + - uid: 39809 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-0.5 - parent: 38584 - - uid: 39983 + parent: 38411 + - uid: 39810 components: - type: Transform pos: 8.5,8.5 - parent: 38584 - - uid: 39984 + parent: 38411 + - uid: 39811 components: - type: Transform pos: 7.5,-0.5 - parent: 38584 - - uid: 39985 + parent: 38411 + - uid: 39812 components: - type: Transform pos: 12.5,-1.5 - parent: 38584 - - uid: 39986 + parent: 38411 + - uid: 39813 components: - type: Transform pos: 13.5,0.5 - parent: 38584 - - uid: 39987 + parent: 38411 + - uid: 39814 components: - type: Transform pos: 14.5,1.5 - parent: 38584 - - uid: 39988 + parent: 38411 + - uid: 39815 components: - type: Transform pos: 12.5,-6.5 - parent: 38584 - - uid: 39989 + parent: 38411 + - uid: 39816 components: - type: Transform pos: 14.5,0.5 - parent: 38584 - - uid: 39990 + parent: 38411 + - uid: 39817 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,9.5 - parent: 38584 - - uid: 39991 + parent: 38411 + - uid: 39818 components: - type: Transform pos: 7.5,-6.5 - parent: 38584 - - uid: 39992 + parent: 38411 + - uid: 39819 components: - type: Transform pos: 8.5,-7.5 - parent: 38584 - - uid: 39993 + parent: 38411 + - uid: 39820 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,5.5 - parent: 38584 - - uid: 39994 + parent: 38411 + - uid: 39821 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,5.5 - parent: 38584 - - uid: 39995 + parent: 38411 + - uid: 39822 components: - type: Transform pos: 18.5,3.5 - parent: 38584 - - uid: 39996 + parent: 38411 + - uid: 39823 components: - type: Transform pos: 14.5,3.5 - parent: 38584 - - uid: 39997 + parent: 38411 + - uid: 39824 components: - type: Transform pos: 7.5,-2.5 - parent: 38584 - - uid: 39998 + parent: 38411 + - uid: 39825 components: - type: Transform pos: 6.5,-1.5 - parent: 38584 - - uid: 39999 + parent: 38411 + - uid: 39826 components: - type: Transform pos: 17.5,3.5 - parent: 38584 - - uid: 40000 + parent: 38411 + - uid: 39827 components: - type: Transform pos: 16.5,3.5 - parent: 38584 - - uid: 40001 + parent: 38411 + - uid: 39828 components: - type: Transform pos: -3.5,-1.5 - parent: 38584 - - uid: 40002 + parent: 38411 + - uid: 39829 components: - type: Transform pos: 2.5,7.5 - parent: 38584 - - uid: 40003 + parent: 38411 + - uid: 39830 components: - type: Transform pos: 12.5,-5.5 - parent: 38584 - - uid: 40004 + parent: 38411 + - uid: 39831 components: - type: Transform pos: 12.5,-4.5 - parent: 38584 - - uid: 40005 + parent: 38411 + - uid: 39832 components: - type: Transform pos: 8.5,-3.5 - parent: 38584 - - uid: 40006 + parent: 38411 + - uid: 39833 components: - type: Transform pos: 1.5,-0.5 - parent: 38584 - - uid: 40007 + parent: 38411 + - uid: 39834 components: - type: Transform pos: -2.5,-0.5 - parent: 38584 - - uid: 40008 + parent: 38411 + - uid: 39835 components: - type: Transform pos: -0.5,-0.5 - parent: 38584 - - uid: 40009 + parent: 38411 + - uid: 39836 components: - type: Transform pos: 6.5,-2.5 - parent: 38584 - - uid: 40010 + parent: 38411 + - uid: 39837 components: - type: Transform pos: 8.5,-2.5 - parent: 38584 - - uid: 40011 + parent: 38411 + - uid: 39838 components: - type: Transform pos: -3.5,-0.5 - parent: 38584 - - uid: 40012 + parent: 38411 + - uid: 39839 components: - type: Transform pos: 2.5,6.5 - parent: 38584 - - uid: 40013 + parent: 38411 + - uid: 39840 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-11.5 - parent: 38584 - - uid: 40014 + parent: 38411 + - uid: 39841 components: - type: Transform pos: -3.5,-2.5 - parent: 38584 - - uid: 40015 + parent: 38411 + - uid: 39842 components: - type: Transform pos: 5.5,-9.5 - parent: 38584 - - uid: 40016 + parent: 38411 + - uid: 39843 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 - parent: 38584 - - uid: 40017 + parent: 38411 + - uid: 39844 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-11.5 - parent: 38584 - - uid: 40018 + parent: 38411 + - uid: 39845 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-9.5 - parent: 38584 - - uid: 40019 + parent: 38411 + - uid: 39846 components: - type: Transform pos: 3.5,-10.5 - parent: 38584 - - uid: 40020 + parent: 38411 + - uid: 39847 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-9.5 - parent: 38584 - - uid: 40021 + parent: 38411 + - uid: 39848 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-8.5 - parent: 38584 - - uid: 40022 + parent: 38411 + - uid: 39849 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-11.5 - parent: 38584 - - uid: 40023 + parent: 38411 + - uid: 39850 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 - parent: 38584 - - uid: 40024 + parent: 38411 + - uid: 39851 components: - type: Transform pos: 5.5,-7.5 - parent: 38584 - - uid: 40025 + parent: 38411 + - uid: 39852 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-7.5 - parent: 38584 - - uid: 40026 + parent: 38411 + - uid: 39853 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-10.5 - parent: 38584 - - uid: 40027 + parent: 38411 + - uid: 39854 components: - type: Transform pos: 4.5,-10.5 - parent: 38584 - - uid: 40028 + parent: 38411 + - uid: 39855 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-7.5 - parent: 38584 - - uid: 40029 + parent: 38411 + - uid: 39856 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-6.5 - parent: 38584 - - uid: 40030 + parent: 38411 + - uid: 39857 components: - type: Transform pos: 5.5,-10.5 - parent: 38584 - - uid: 40031 + parent: 38411 + - uid: 39858 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-6.5 - parent: 38584 - - uid: 40032 + parent: 38411 + - uid: 39859 components: - type: Transform pos: 5.5,-8.5 - parent: 38584 - - uid: 40033 + parent: 38411 + - uid: 39860 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-10.5 - parent: 38584 - - uid: 40034 + parent: 38411 + - uid: 39861 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 - parent: 38584 - - uid: 40035 + parent: 38411 + - uid: 39862 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,14.5 - parent: 38584 - - uid: 40036 + parent: 38411 + - uid: 39863 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,14.5 - parent: 38584 - - uid: 40037 + parent: 38411 + - uid: 39864 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,11.5 - parent: 38584 - - uid: 40038 + parent: 38411 + - uid: 39865 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,11.5 - parent: 38584 - - uid: 40039 + parent: 38411 + - uid: 39866 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,11.5 - parent: 38584 - - uid: 40040 + parent: 38411 + - uid: 39867 components: - type: Transform pos: -22.5,-0.5 - parent: 38584 - - uid: 40041 + parent: 38411 + - uid: 39868 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,13.5 - parent: 38584 - - uid: 40042 + parent: 38411 + - uid: 39869 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,11.5 - parent: 38584 - - uid: 40043 + parent: 38411 + - uid: 39870 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,11.5 - parent: 38584 - - uid: 40044 + parent: 38411 + - uid: 39871 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,14.5 - parent: 38584 - - uid: 40045 + parent: 38411 + - uid: 39872 components: - type: Transform pos: 6.5,2.5 - parent: 38584 - - uid: 40046 + parent: 38411 + - uid: 39873 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,13.5 - parent: 38584 - - uid: 40047 + parent: 38411 + - uid: 39874 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,11.5 - parent: 38584 - - uid: 40048 + parent: 38411 + - uid: 39875 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,12.5 - parent: 38584 - - uid: 40049 + parent: 38411 + - uid: 39876 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,11.5 - parent: 38584 - - uid: 40050 + parent: 38411 + - uid: 39877 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,14.5 - parent: 38584 - - uid: 40051 + parent: 38411 + - uid: 39878 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,9.5 - parent: 38584 - - uid: 40052 + parent: 38411 + - uid: 39879 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,8.5 - parent: 38584 - - uid: 40053 + parent: 38411 + - uid: 39880 components: - type: Transform pos: -22.5,-3.5 - parent: 38584 - - uid: 40054 + parent: 38411 + - uid: 39881 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,3.5 - parent: 38584 - - uid: 40055 + parent: 38411 + - uid: 39882 components: - type: Transform pos: -11.5,-8.5 - parent: 38584 - - uid: 40056 + parent: 38411 + - uid: 39883 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,0.5 - parent: 38584 - - uid: 40057 + parent: 38411 + - uid: 39884 components: - type: Transform pos: -18.5,-8.5 - parent: 38584 - - uid: 40058 + parent: 38411 + - uid: 39885 components: - type: Transform pos: -21.5,-5.5 - parent: 38584 - - uid: 40059 + parent: 38411 + - uid: 39886 components: - type: Transform pos: -22.5,-5.5 - parent: 38584 - - uid: 40060 + parent: 38411 + - uid: 39887 components: - type: Transform pos: -19.5,-6.5 - parent: 38584 - - uid: 40061 + parent: 38411 + - uid: 39888 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,4.5 - parent: 38584 - - uid: 40062 + parent: 38411 + - uid: 39889 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,5.5 - parent: 38584 - - uid: 40063 + parent: 38411 + - uid: 39890 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,1.5 - parent: 38584 - - uid: 40064 + parent: 38411 + - uid: 39891 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,6.5 - parent: 38584 - - uid: 40065 + parent: 38411 + - uid: 39892 components: - type: Transform pos: -19.5,-7.5 - parent: 38584 - - uid: 40066 + parent: 38411 + - uid: 39893 components: - type: Transform pos: 6.5,4.5 - parent: 38584 - - uid: 40067 + parent: 38411 + - uid: 39894 components: - type: Transform pos: 6.5,3.5 - parent: 38584 - - uid: 40068 + parent: 38411 + - uid: 39895 components: - type: Transform pos: 7.5,5.5 - parent: 38584 - - uid: 40069 + parent: 38411 + - uid: 39896 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,11.5 - parent: 38584 - - uid: 40070 + parent: 38411 + - uid: 39897 components: - type: Transform pos: -17.5,-8.5 - parent: 38584 - - uid: 40071 + parent: 38411 + - uid: 39898 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-6.5 - parent: 38584 - - uid: 40072 + parent: 38411 + - uid: 39899 components: - type: Transform pos: -22.5,-4.5 - parent: 38584 - - uid: 40073 + parent: 38411 + - uid: 39900 components: - type: Transform pos: -19.5,-5.5 - parent: 38584 - - uid: 40074 + parent: 38411 + - uid: 39901 components: - type: Transform pos: -18.5,-7.5 - parent: 38584 - - uid: 40075 + parent: 38411 + - uid: 39902 components: - type: Transform pos: -22.5,-2.5 - parent: 38584 - - uid: 40076 + parent: 38411 + - uid: 39903 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,2.5 - parent: 38584 - - uid: 40077 + parent: 38411 + - uid: 39904 components: - type: Transform pos: -16.5,-8.5 - parent: 38584 - - uid: 40078 + parent: 38411 + - uid: 39905 components: - type: Transform pos: -22.5,-1.5 - parent: 38584 - - uid: 40079 + parent: 38411 + - uid: 39906 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,11.5 - parent: 38584 - - uid: 40080 + parent: 38411 + - uid: 39907 components: - type: Transform pos: -20.5,-5.5 - parent: 38584 - - uid: 40081 + parent: 38411 + - uid: 39908 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-8.5 - parent: 38584 - - uid: 40082 + parent: 38411 + - uid: 39909 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,11.5 - parent: 38584 - - uid: 40083 + parent: 38411 + - uid: 39910 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,12.5 - parent: 38584 - - uid: 40084 + parent: 38411 + - uid: 39911 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,11.5 - parent: 38584 - - uid: 40085 + parent: 38411 + - uid: 39912 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-11.5 - parent: 38584 - - uid: 40086 + parent: 38411 + - uid: 39913 components: - type: Transform pos: 3.5,-6.5 - parent: 38584 - - uid: 40087 + parent: 38411 + - uid: 39914 components: - type: Transform pos: -9.5,-8.5 - parent: 38584 - - uid: 40088 + parent: 38411 + - uid: 39915 components: - type: Transform pos: -10.5,-8.5 - parent: 38584 - - uid: 40089 + parent: 38411 + - uid: 39916 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-0.5 - parent: 38584 - - uid: 40090 + parent: 38411 + - uid: 39917 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,7.5 - parent: 38584 - - uid: 40091 + parent: 38411 + - uid: 39918 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,14.5 - parent: 38584 - - uid: 40092 + parent: 38411 + - uid: 39919 components: - type: Transform pos: 15.5,1.5 - parent: 38584 - - uid: 40093 + parent: 38411 + - uid: 39920 components: - type: Transform pos: 17.5,1.5 - parent: 38584 - - uid: 40094 + parent: 38411 + - uid: 39921 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,11.5 - parent: 38584 - - uid: 40095 + parent: 38411 + - uid: 39922 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,10.5 - parent: 38584 - - uid: 40096 + parent: 38411 + - uid: 39923 components: - type: Transform pos: 16.5,1.5 - parent: 38584 - - uid: 40097 + parent: 38411 + - uid: 39924 components: - type: Transform pos: -3.5,-3.5 - parent: 38584 - - uid: 40098 + parent: 38411 + - uid: 39925 components: - type: Transform pos: 18.5,2.5 - parent: 38584 - - uid: 40099 + parent: 38411 + - uid: 39926 components: - type: Transform pos: 11.5,0.5 - parent: 38584 - - uid: 40100 + parent: 38411 + - uid: 39927 components: - type: Transform pos: 8.5,-5.5 - parent: 38584 - - uid: 40101 + parent: 38411 + - uid: 39928 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-4.5 - parent: 38584 - - uid: 40102 + parent: 38411 + - uid: 39929 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,11.5 - parent: 38584 - - uid: 40103 + parent: 38411 + - uid: 39930 components: - type: Transform pos: 18.5,1.5 - parent: 38584 - - uid: 40104 + parent: 38411 + - uid: 39931 components: - type: Transform pos: 8.5,-8.5 - parent: 38584 + parent: 38411 - proto: WallReinforcedRust entities: - - uid: 40105 + - uid: 39932 components: - type: Transform pos: -22.5,35.5 - parent: 38584 - - uid: 40106 + parent: 38411 + - uid: 39933 components: - type: Transform pos: -21.5,35.5 - parent: 38584 - - uid: 40107 + parent: 38411 + - uid: 39934 components: - type: Transform pos: -25.5,28.5 - parent: 38584 - - uid: 40108 + parent: 38411 + - uid: 39935 components: - type: Transform pos: -20.5,35.5 - parent: 38584 - - uid: 40109 + parent: 38411 + - uid: 39936 components: - type: Transform pos: -24.5,25.5 - parent: 38584 - - uid: 40110 + parent: 38411 + - uid: 39937 components: - type: Transform pos: -24.5,31.5 - parent: 38584 - - uid: 40111 + parent: 38411 + - uid: 39938 components: - type: Transform pos: -26.5,27.5 - parent: 38584 - - uid: 40112 + parent: 38411 + - uid: 39939 components: - type: Transform pos: -14.5,32.5 - parent: 38584 - - uid: 40113 + parent: 38411 + - uid: 39940 components: - type: Transform pos: -14.5,31.5 - parent: 38584 - - uid: 40114 + parent: 38411 + - uid: 39941 components: - type: Transform pos: -21.5,36.5 - parent: 38584 - - uid: 40115 + parent: 38411 + - uid: 39942 components: - type: Transform pos: -17.5,28.5 - parent: 38584 - - uid: 40116 + parent: 38411 + - uid: 39943 components: - type: Transform pos: -18.5,28.5 - parent: 38584 - - uid: 40117 + parent: 38411 + - uid: 39944 components: - type: Transform pos: -4.5,15.5 - parent: 38584 - - uid: 40118 + parent: 38411 + - uid: 39945 components: - type: Transform pos: -16.5,38.5 - parent: 38584 - - uid: 40119 + parent: 38411 + - uid: 39946 components: - type: Transform pos: -17.5,38.5 - parent: 38584 - - uid: 40120 + parent: 38411 + - uid: 39947 components: - type: Transform pos: -1.5,26.5 - parent: 38584 - - uid: 40121 + parent: 38411 + - uid: 39948 components: - type: Transform pos: -15.5,38.5 - parent: 38584 + parent: 38411 - proto: WallRock entities: - - uid: 35356 + - uid: 35200 components: - type: Transform pos: -84.5,-22.5 parent: 2 - - uid: 35357 + - uid: 35201 components: - type: Transform pos: -69.5,-14.5 parent: 2 - - uid: 35358 + - uid: 35202 components: - type: Transform pos: -80.5,-22.5 parent: 2 - - uid: 35359 + - uid: 35203 components: - type: Transform pos: -82.5,-22.5 parent: 2 - - uid: 35360 + - uid: 35204 components: - type: Transform pos: -79.5,-22.5 parent: 2 - - uid: 35361 + - uid: 35205 components: - type: Transform pos: -81.5,-23.5 parent: 2 - - uid: 35362 + - uid: 35206 components: - type: Transform pos: -107.5,44.5 parent: 2 - - uid: 35363 + - uid: 35207 components: - type: Transform pos: -109.5,44.5 parent: 2 - - uid: 35364 + - uid: 35208 components: - type: Transform pos: -109.5,47.5 parent: 2 - - uid: 35365 + - uid: 35209 components: - type: Transform pos: -107.5,43.5 parent: 2 - - uid: 35366 + - uid: 35210 components: - type: Transform pos: -79.5,-23.5 parent: 2 - - uid: 35367 + - uid: 35211 components: - type: Transform pos: -80.5,-20.5 parent: 2 - - uid: 35368 + - uid: 35212 components: - type: Transform pos: -80.5,-18.5 parent: 2 - - uid: 35369 + - uid: 35213 components: - type: Transform pos: -80.5,-23.5 parent: 2 - - uid: 35370 + - uid: 35214 components: - type: Transform pos: -80.5,-24.5 parent: 2 - - uid: 35371 + - uid: 35215 components: - type: Transform pos: -80.5,-19.5 parent: 2 - - uid: 35372 + - uid: 35216 components: - type: Transform pos: -81.5,-18.5 parent: 2 - - uid: 35373 + - uid: 35217 components: - type: Transform pos: -109.5,39.5 parent: 2 - - uid: 35374 + - uid: 35218 components: - type: Transform pos: -109.5,40.5 parent: 2 - - uid: 35375 + - uid: 35219 components: - type: Transform pos: -108.5,44.5 parent: 2 - - uid: 35376 + - uid: 35220 components: - type: Transform pos: -109.5,38.5 parent: 2 - - uid: 35377 + - uid: 35221 components: - type: Transform pos: -109.5,36.5 parent: 2 - - uid: 35378 + - uid: 35222 components: - type: Transform pos: -108.5,45.5 parent: 2 - - uid: 35379 + - uid: 35223 components: - type: Transform pos: -108.5,46.5 parent: 2 - - uid: 35380 + - uid: 35224 components: - type: Transform pos: -107.5,46.5 parent: 2 - - uid: 35381 + - uid: 35225 components: - type: Transform pos: -107.5,45.5 parent: 2 - - uid: 35382 + - uid: 35226 components: - type: Transform pos: -108.5,41.5 parent: 2 - - uid: 35383 + - uid: 35227 components: - type: Transform pos: -108.5,42.5 parent: 2 - - uid: 35384 + - uid: 35228 components: - type: Transform pos: -81.5,-22.5 parent: 2 - - uid: 35385 + - uid: 35229 components: - type: Transform pos: -109.5,43.5 parent: 2 - - uid: 35386 + - uid: 35230 components: - type: Transform pos: -109.5,42.5 parent: 2 - - uid: 35387 + - uid: 35231 components: - type: Transform pos: -108.5,47.5 parent: 2 - - uid: 35388 + - uid: 35232 components: - type: Transform pos: -108.5,40.5 parent: 2 - - uid: 35389 + - uid: 35233 components: - type: Transform pos: -108.5,43.5 parent: 2 - - uid: 35390 + - uid: 35234 components: - type: Transform pos: -106.5,44.5 parent: 2 - - uid: 35391 + - uid: 35235 components: - type: Transform pos: -106.5,45.5 parent: 2 - - uid: 35392 + - uid: 35236 components: - type: Transform pos: -79.5,-20.5 parent: 2 - - uid: 35393 + - uid: 35237 components: - type: Transform pos: -79.5,-18.5 parent: 2 - - uid: 35394 + - uid: 35238 components: - type: Transform pos: -126.5,33.5 parent: 2 - - uid: 35395 + - uid: 35239 components: - type: Transform pos: -38.5,-80.5 parent: 2 - - uid: 35396 + - uid: 35240 components: - type: Transform pos: -39.5,-80.5 parent: 2 - - uid: 35397 + - uid: 35241 components: - type: Transform pos: -40.5,-80.5 parent: 2 - - uid: 35398 + - uid: 35242 components: - type: Transform pos: -41.5,-80.5 parent: 2 - - uid: 35399 + - uid: 35243 components: - type: Transform pos: -41.5,-79.5 parent: 2 - - uid: 35400 + - uid: 35244 components: - type: Transform pos: -41.5,-81.5 parent: 2 - - uid: 35401 + - uid: 35245 components: - type: Transform pos: -42.5,-80.5 parent: 2 - - uid: 35402 + - uid: 35246 components: - type: Transform pos: -33.5,-84.5 parent: 2 - - uid: 35403 + - uid: 35247 components: - type: Transform pos: -32.5,-84.5 parent: 2 - - uid: 35404 + - uid: 35248 components: - type: Transform pos: -32.5,-83.5 parent: 2 - - uid: 35405 + - uid: 35249 components: - type: Transform pos: -31.5,-84.5 parent: 2 - - uid: 35406 + - uid: 35250 components: - type: Transform pos: -31.5,-83.5 parent: 2 - - uid: 35407 + - uid: 35251 components: - type: Transform pos: -30.5,-83.5 parent: 2 - - uid: 35408 + - uid: 35252 components: - type: Transform pos: -29.5,-83.5 parent: 2 - - uid: 35409 + - uid: 35253 components: - type: Transform pos: -30.5,-82.5 parent: 2 - - uid: 35410 + - uid: 35254 components: - type: Transform pos: -126.5,27.5 parent: 2 - - uid: 35411 + - uid: 35255 components: - type: Transform pos: -125.5,25.5 parent: 2 - - uid: 35412 + - uid: 35256 components: - type: Transform pos: -127.5,30.5 parent: 2 - - uid: 35413 + - uid: 35257 components: - type: Transform pos: -128.5,33.5 parent: 2 - - uid: 35414 + - uid: 35258 components: - type: Transform pos: -127.5,35.5 parent: 2 - - uid: 35415 + - uid: 35259 components: - type: Transform pos: -45.5,-58.5 parent: 2 - - uid: 35416 + - uid: 35260 components: - type: Transform pos: -127.5,32.5 parent: 2 - - uid: 35417 + - uid: 35261 components: - type: Transform pos: -127.5,31.5 parent: 2 - - uid: 35418 + - uid: 35262 components: - type: Transform pos: -54.5,-50.5 parent: 2 - - uid: 35419 + - uid: 35263 components: - type: Transform pos: -30.5,-81.5 parent: 2 - - uid: 35420 + - uid: 35264 components: - type: Transform pos: 9.5,-71.5 parent: 2 - - uid: 35421 + - uid: 35265 components: - type: Transform pos: 10.5,-71.5 parent: 2 - - uid: 35422 + - uid: 35266 components: - type: Transform pos: 13.5,-71.5 parent: 2 - - uid: 35423 + - uid: 35267 components: - type: Transform pos: 12.5,-71.5 parent: 2 - - uid: 35424 + - uid: 35268 components: - type: Transform pos: -30.5,-84.5 parent: 2 - - uid: 35425 + - uid: 35269 components: - type: Transform pos: -31.5,-82.5 parent: 2 - - uid: 35426 + - uid: 35270 components: - type: Transform pos: 11.5,-70.5 parent: 2 - - uid: 35427 + - uid: 35271 components: - type: Transform pos: 55.5,-55.5 parent: 2 - - uid: 35428 + - uid: 35272 components: - type: Transform pos: 57.5,-51.5 parent: 2 - - uid: 35429 + - uid: 35273 components: - type: Transform pos: 56.5,-49.5 parent: 2 - - uid: 35430 + - uid: 35274 components: - type: Transform pos: 56.5,-53.5 parent: 2 - - uid: 35431 + - uid: 35275 components: - type: Transform pos: 55.5,-56.5 parent: 2 - - uid: 35432 + - uid: 35276 components: - type: Transform pos: 58.5,-50.5 parent: 2 - - uid: 35433 + - uid: 35277 components: - type: Transform pos: 57.5,-49.5 parent: 2 - - uid: 35434 + - uid: 35278 components: - type: Transform pos: 57.5,-50.5 parent: 2 - - uid: 35435 + - uid: 35279 components: - type: Transform pos: -51.5,-51.5 parent: 2 - - uid: 35436 + - uid: 35280 components: - type: Transform pos: -34.5,-82.5 parent: 2 - - uid: 35437 + - uid: 35281 components: - type: Transform pos: -28.5,-81.5 parent: 2 - - uid: 35438 + - uid: 35282 components: - type: Transform pos: 44.5,-75.5 parent: 2 - - uid: 35439 + - uid: 35283 components: - type: Transform pos: 45.5,-75.5 parent: 2 - - uid: 35440 + - uid: 35284 components: - type: Transform pos: -43.5,-77.5 parent: 2 - - uid: 35441 + - uid: 35285 components: - type: Transform pos: -126.5,29.5 parent: 2 - - uid: 35442 + - uid: 35286 components: - type: Transform pos: -51.5,-50.5 parent: 2 - - uid: 35443 + - uid: 35287 components: - type: Transform pos: -126.5,30.5 parent: 2 - - uid: 35444 + - uid: 35288 components: - type: Transform pos: 44.5,-69.5 parent: 2 - - uid: 35445 + - uid: 35289 components: - type: Transform pos: -51.5,-53.5 parent: 2 - - uid: 35446 + - uid: 35290 components: - type: Transform pos: 47.5,-64.5 parent: 2 - - uid: 35447 + - uid: 35291 components: - type: Transform pos: 56.5,-50.5 parent: 2 - - uid: 35448 + - uid: 35292 components: - type: Transform pos: -44.5,-58.5 parent: 2 - - uid: 35449 + - uid: 35293 components: - type: Transform pos: -28.5,-82.5 parent: 2 - - uid: 35450 + - uid: 35294 components: - type: Transform pos: -41.5,-77.5 parent: 2 - - uid: 35451 + - uid: 35295 components: - type: Transform pos: -126.5,32.5 parent: 2 - - uid: 35452 + - uid: 35296 components: - type: Transform pos: 60.5,-38.5 parent: 2 - - uid: 35453 + - uid: 35297 components: - type: Transform pos: 47.5,-65.5 parent: 2 - - uid: 35454 + - uid: 35298 components: - type: Transform pos: 45.5,-76.5 parent: 2 - - uid: 35455 + - uid: 35299 components: - type: Transform pos: 47.5,-61.5 parent: 2 - - uid: 35456 + - uid: 35300 components: - type: Transform pos: -127.5,33.5 parent: 2 - - uid: 35457 + - uid: 35301 components: - type: Transform pos: -42.5,-78.5 parent: 2 - - uid: 35458 + - uid: 35302 components: - type: Transform pos: 47.5,-66.5 parent: 2 - - uid: 35459 + - uid: 35303 components: - type: Transform pos: 47.5,-72.5 parent: 2 - - uid: 35460 + - uid: 35304 components: - type: Transform pos: -45.5,-60.5 parent: 2 - - uid: 35461 + - uid: 35305 components: - type: Transform pos: -49.5,-54.5 parent: 2 - - uid: 35462 + - uid: 35306 components: - type: Transform pos: -125.5,30.5 parent: 2 - - uid: 35463 + - uid: 35307 components: - type: Transform pos: -127.5,28.5 parent: 2 - - uid: 35464 + - uid: 35308 components: - type: Transform pos: -127.5,27.5 parent: 2 - - uid: 35465 + - uid: 35309 components: - type: Transform pos: -37.5,-81.5 parent: 2 - - uid: 35466 + - uid: 35310 components: - type: Transform pos: 44.5,-70.5 parent: 2 - - uid: 35467 + - uid: 35311 components: - type: Transform pos: -50.5,-54.5 parent: 2 - - uid: 35468 + - uid: 35312 components: - type: Transform pos: 47.5,-70.5 parent: 2 - - uid: 35469 + - uid: 35313 components: - type: Transform pos: 45.5,-68.5 parent: 2 - - uid: 35470 + - uid: 35314 components: - type: Transform pos: 55.5,-51.5 parent: 2 - - uid: 35471 + - uid: 35315 components: - type: Transform pos: 47.5,-62.5 parent: 2 - - uid: 35472 + - uid: 35316 components: - type: Transform pos: 48.5,-61.5 parent: 2 - - uid: 35473 + - uid: 35317 components: - type: Transform pos: -50.5,-53.5 parent: 2 - - uid: 35474 + - uid: 35318 components: - type: Transform pos: -126.5,31.5 parent: 2 - - uid: 35475 + - uid: 35319 components: - type: Transform pos: 47.5,-71.5 parent: 2 - - uid: 35476 + - uid: 35320 components: - type: Transform pos: 56.5,-52.5 parent: 2 - - uid: 35477 + - uid: 35321 components: - type: Transform pos: -42.5,-77.5 parent: 2 - - uid: 35478 + - uid: 35322 components: - type: Transform pos: 47.5,-73.5 parent: 2 - - uid: 35479 + - uid: 35323 components: - type: Transform pos: 46.5,-67.5 parent: 2 - - uid: 35480 + - uid: 35324 components: - type: Transform pos: 47.5,-60.5 parent: 2 - - uid: 35481 + - uid: 35325 components: - type: Transform pos: 55.5,-50.5 parent: 2 - - uid: 35482 + - uid: 35326 components: - type: Transform pos: 47.5,-74.5 parent: 2 - - uid: 35483 + - uid: 35327 components: - type: Transform pos: -35.5,-82.5 parent: 2 - - uid: 35484 + - uid: 35328 components: - type: Transform pos: -125.5,26.5 parent: 2 - - uid: 35485 + - uid: 35329 components: - type: Transform pos: 43.5,-76.5 parent: 2 - - uid: 35486 + - uid: 35330 components: - type: Transform pos: 47.5,-63.5 parent: 2 - - uid: 35487 + - uid: 35331 components: - type: Transform pos: 44.5,-76.5 parent: 2 - - uid: 35488 + - uid: 35332 components: - type: Transform pos: 47.5,-75.5 parent: 2 - - uid: 35489 + - uid: 35333 components: - type: Transform pos: -43.5,-58.5 parent: 2 - - uid: 35490 + - uid: 35334 components: - type: Transform pos: -125.5,29.5 parent: 2 - - uid: 35491 + - uid: 35335 components: - type: Transform pos: -45.5,-59.5 parent: 2 - - uid: 35492 + - uid: 35336 components: - type: Transform pos: 46.5,-75.5 parent: 2 - - uid: 35493 + - uid: 35337 components: - type: Transform pos: -125.5,27.5 parent: 2 - - uid: 35494 + - uid: 35338 components: - type: Transform pos: -29.5,-81.5 parent: 2 - - uid: 35495 + - uid: 35339 components: - type: Transform pos: -42.5,-79.5 parent: 2 - - uid: 35496 + - uid: 35340 components: - type: Transform pos: -36.5,-81.5 parent: 2 - - uid: 35497 + - uid: 35341 components: - type: Transform pos: -32.5,-81.5 parent: 2 - - uid: 35498 + - uid: 35342 components: - type: Transform pos: -38.5,-81.5 parent: 2 - - uid: 35499 + - uid: 35343 components: - type: Transform pos: -35.5,-81.5 parent: 2 - - uid: 35500 + - uid: 35344 components: - type: Transform pos: -33.5,-83.5 parent: 2 - - uid: 35501 + - uid: 35345 components: - type: Transform pos: -126.5,28.5 parent: 2 - - uid: 35502 + - uid: 35346 components: - type: Transform pos: -40.5,-81.5 parent: 2 - - uid: 35503 + - uid: 35347 components: - type: Transform pos: -51.5,-52.5 parent: 2 - - uid: 35504 + - uid: 35348 components: - type: Transform pos: 44.5,-74.5 parent: 2 - - uid: 35505 + - uid: 35349 components: - type: Transform pos: 45.5,-69.5 parent: 2 - - uid: 35506 + - uid: 35350 components: - type: Transform pos: -45.5,-63.5 parent: 2 - - uid: 35507 + - uid: 35351 components: - type: Transform pos: -33.5,-81.5 parent: 2 - - uid: 35508 + - uid: 35352 components: - type: Transform pos: -45.5,-64.5 parent: 2 - - uid: 35509 + - uid: 35353 components: - type: Transform pos: -45.5,-65.5 parent: 2 - - uid: 35510 + - uid: 35354 components: - type: Transform pos: 12.5,-70.5 parent: 2 - - uid: 35511 + - uid: 35355 components: - type: Transform pos: 12.5,-72.5 parent: 2 - - uid: 35512 + - uid: 35356 components: - type: Transform pos: -34.5,-83.5 parent: 2 - - uid: 35513 + - uid: 35357 components: - type: Transform pos: -33.5,-82.5 parent: 2 - - uid: 35514 + - uid: 35358 components: - type: Transform pos: -35.5,-83.5 parent: 2 - - uid: 35515 + - uid: 35359 components: - type: Transform pos: 58.5,-39.5 parent: 2 - - uid: 35516 + - uid: 35360 components: - type: Transform pos: 58.5,-38.5 parent: 2 - - uid: 35517 + - uid: 35361 components: - type: Transform pos: 59.5,-38.5 parent: 2 - - uid: 35518 + - uid: 35362 components: - type: Transform pos: 61.5,-38.5 parent: 2 - - uid: 35519 + - uid: 35363 components: - type: Transform pos: -124.5,32.5 parent: 2 - - uid: 35520 + - uid: 35364 components: - type: Transform pos: -124.5,33.5 parent: 2 - - uid: 35521 + - uid: 35365 components: - type: Transform pos: -124.5,31.5 parent: 2 - - uid: 35522 + - uid: 35366 components: - type: Transform pos: -124.5,29.5 parent: 2 - - uid: 35523 + - uid: 35367 components: - type: Transform pos: -124.5,28.5 parent: 2 - - uid: 35524 + - uid: 35368 components: - type: Transform pos: -122.5,30.5 parent: 2 - - uid: 35525 + - uid: 35369 components: - type: Transform pos: 58.5,-48.5 parent: 2 - - uid: 35526 + - uid: 35370 components: - type: Transform pos: -123.5,29.5 parent: 2 - - uid: 35527 + - uid: 35371 components: - type: Transform pos: -124.5,30.5 parent: 2 - - uid: 35528 + - uid: 35372 components: - type: Transform pos: -125.5,32.5 parent: 2 - - uid: 35529 + - uid: 35373 components: - type: Transform pos: -125.5,33.5 parent: 2 - - uid: 35530 + - uid: 35374 components: - type: Transform pos: 14.5,83.5 parent: 2 - - uid: 35531 + - uid: 35375 components: - type: Transform pos: 44.5,-73.5 parent: 2 - - uid: 35532 + - uid: 35376 components: - type: Transform pos: 55.5,-53.5 parent: 2 - - uid: 35533 + - uid: 35377 components: - type: Transform pos: 44.5,-68.5 parent: 2 - - uid: 35534 + - uid: 35378 components: - type: Transform pos: 62.5,-38.5 parent: 2 - - uid: 35535 + - uid: 35379 components: - type: Transform pos: 44.5,-71.5 parent: 2 - - uid: 35536 + - uid: 35380 components: - type: Transform pos: 45.5,-74.5 parent: 2 - - uid: 35537 + - uid: 35381 components: - type: Transform pos: 44.5,-67.5 parent: 2 - - uid: 35538 + - uid: 35382 components: - type: Transform pos: 45.5,-73.5 parent: 2 - - uid: 35539 + - uid: 35383 components: - type: Transform pos: 16.5,83.5 parent: 2 - - uid: 35540 + - uid: 35384 components: - type: Transform pos: 15.5,84.5 parent: 2 - - uid: 35541 + - uid: 35385 components: - type: Transform pos: 13.5,84.5 parent: 2 - - uid: 35542 + - uid: 35386 components: - type: Transform pos: 16.5,84.5 parent: 2 - - uid: 35543 + - uid: 35387 components: - type: Transform pos: 17.5,83.5 parent: 2 - - uid: 35544 + - uid: 35388 components: - type: Transform pos: 17.5,84.5 parent: 2 - - uid: 35545 + - uid: 35389 components: - type: Transform pos: 17.5,85.5 parent: 2 - - uid: 35546 + - uid: 35390 components: - type: Transform pos: 18.5,85.5 parent: 2 - - uid: 35547 + - uid: 35391 components: - type: Transform pos: 16.5,74.5 parent: 2 - - uid: 35548 + - uid: 35392 components: - type: Transform pos: 18.5,74.5 parent: 2 - - uid: 35549 + - uid: 35393 components: - type: Transform pos: 19.5,74.5 parent: 2 - - uid: 35550 + - uid: 35394 components: - type: Transform pos: 20.5,74.5 parent: 2 - - uid: 35551 + - uid: 35395 components: - type: Transform pos: 21.5,74.5 parent: 2 - - uid: 35552 + - uid: 35396 components: - type: Transform pos: 58.5,-33.5 parent: 2 - - uid: 35553 + - uid: 35397 components: - type: Transform pos: 21.5,75.5 parent: 2 - - uid: 35554 + - uid: 35398 components: - type: Transform pos: 20.5,75.5 parent: 2 - - uid: 35555 + - uid: 35399 components: - type: Transform pos: 19.5,75.5 parent: 2 - - uid: 35556 + - uid: 35400 components: - type: Transform pos: 18.5,75.5 parent: 2 - - uid: 35557 + - uid: 35401 components: - type: Transform pos: 32.5,17.5 parent: 2 - - uid: 35558 + - uid: 35402 components: - type: Transform pos: 33.5,16.5 parent: 2 - - uid: 35559 + - uid: 35403 components: - type: Transform pos: 34.5,16.5 parent: 2 - - uid: 35560 + - uid: 35404 components: - type: Transform pos: 36.5,16.5 parent: 2 - - uid: 35561 + - uid: 35405 components: - type: Transform pos: 37.5,16.5 parent: 2 - - uid: 35562 + - uid: 35406 components: - type: Transform pos: 37.5,14.5 parent: 2 - - uid: 35563 + - uid: 35407 components: - type: Transform pos: 36.5,14.5 parent: 2 - - uid: 35564 + - uid: 35408 components: - type: Transform pos: 36.5,15.5 parent: 2 - - uid: 35565 + - uid: 35409 components: - type: Transform pos: 35.5,14.5 parent: 2 - - uid: 35566 + - uid: 35410 components: - type: Transform pos: 35.5,15.5 parent: 2 - - uid: 35567 + - uid: 35411 components: - type: Transform pos: 34.5,14.5 parent: 2 - - uid: 35568 + - uid: 35412 components: - type: Transform pos: 34.5,15.5 parent: 2 - - uid: 35569 + - uid: 35413 components: - type: Transform pos: 33.5,15.5 parent: 2 - - uid: 35570 + - uid: 35414 components: - type: Transform pos: 38.5,15.5 parent: 2 - - uid: 35571 + - uid: 35415 components: - type: Transform pos: 58.5,-35.5 parent: 2 - - uid: 35572 + - uid: 35416 components: - type: Transform pos: 58.5,-36.5 parent: 2 - - uid: 35573 + - uid: 35417 components: - type: Transform pos: 58.5,-37.5 parent: 2 - - uid: 35574 + - uid: 35418 components: - type: Transform pos: 59.5,-37.5 parent: 2 - - uid: 35575 + - uid: 35419 components: - type: Transform pos: 59.5,-35.5 parent: 2 - - uid: 35576 + - uid: 35420 components: - type: Transform pos: 59.5,-34.5 parent: 2 - - uid: 35577 + - uid: 35421 components: - type: Transform pos: 60.5,-35.5 parent: 2 - - uid: 35578 + - uid: 35422 components: - type: Transform pos: 60.5,-36.5 parent: 2 - - uid: 35579 + - uid: 35423 components: - type: Transform pos: 60.5,-37.5 parent: 2 - - uid: 35580 + - uid: 35424 components: - type: Transform pos: 61.5,-36.5 parent: 2 - - uid: 35581 + - uid: 35425 components: - type: Transform pos: 61.5,-37.5 parent: 2 - - uid: 35582 + - uid: 35426 components: - type: Transform pos: 62.5,-36.5 parent: 2 - - uid: 35583 + - uid: 35427 components: - type: Transform pos: 62.5,-37.5 parent: 2 - - uid: 35584 + - uid: 35428 components: - type: Transform pos: 63.5,-36.5 parent: 2 - - uid: 35585 + - uid: 35429 components: - type: Transform pos: 64.5,-37.5 parent: 2 - - uid: 35586 + - uid: 35430 components: - type: Transform pos: 55.5,-52.5 parent: 2 - - uid: 35587 + - uid: 35431 components: - type: Transform pos: 61.5,-39.5 parent: 2 - - uid: 35588 + - uid: 35432 components: - type: Transform pos: 45.5,-72.5 parent: 2 - - uid: 35589 + - uid: 35433 components: - type: Transform pos: 45.5,-71.5 parent: 2 - - uid: 35590 + - uid: 35434 components: - type: Transform pos: 45.5,-70.5 parent: 2 - - uid: 35591 + - uid: 35435 components: - type: Transform pos: 47.5,-68.5 parent: 2 - - uid: 35592 + - uid: 35436 components: - type: Transform pos: 46.5,-69.5 parent: 2 - - uid: 35593 + - uid: 35437 components: - type: Transform pos: 47.5,-69.5 parent: 2 - - uid: 35594 + - uid: 35438 components: - type: Transform pos: 45.5,-66.5 parent: 2 - - uid: 35595 + - uid: 35439 components: - type: Transform pos: 45.5,-65.5 parent: 2 - - uid: 35596 + - uid: 35440 components: - type: Transform pos: 46.5,-73.5 parent: 2 - - uid: 35597 + - uid: 35441 components: - type: Transform pos: 46.5,-72.5 parent: 2 - - uid: 35598 + - uid: 35442 components: - type: Transform pos: 46.5,-71.5 parent: 2 - - uid: 35599 + - uid: 35443 components: - type: Transform pos: 46.5,-70.5 parent: 2 - - uid: 35600 + - uid: 35444 components: - type: Transform pos: 46.5,-68.5 parent: 2 - - uid: 35601 + - uid: 35445 components: - type: Transform pos: 45.5,-67.5 parent: 2 - - uid: 35602 + - uid: 35446 components: - type: Transform pos: 47.5,-67.5 parent: 2 - - uid: 35603 + - uid: 35447 components: - type: Transform pos: 46.5,-66.5 parent: 2 - - uid: 35604 + - uid: 35448 components: - type: Transform pos: 48.5,-62.5 parent: 2 - - uid: 35605 + - uid: 35449 components: - type: Transform pos: 48.5,-64.5 parent: 2 - - uid: 35606 + - uid: 35450 components: - type: Transform pos: 48.5,-65.5 parent: 2 - - uid: 35607 + - uid: 35451 components: - type: Transform pos: 48.5,-66.5 parent: 2 - - uid: 35608 + - uid: 35452 components: - type: Transform pos: 48.5,-67.5 parent: 2 - - uid: 35609 + - uid: 35453 components: - type: Transform pos: 48.5,-68.5 parent: 2 - - uid: 35610 + - uid: 35454 components: - type: Transform pos: 48.5,-69.5 parent: 2 - - uid: 35611 + - uid: 35455 components: - type: Transform pos: 48.5,-70.5 parent: 2 - - uid: 35612 + - uid: 35456 components: - type: Transform pos: 48.5,-72.5 parent: 2 - - uid: 35613 + - uid: 35457 components: - type: Transform pos: 48.5,-73.5 parent: 2 - - uid: 35614 + - uid: 35458 components: - type: Transform pos: 48.5,-74.5 parent: 2 - - uid: 35615 + - uid: 35459 components: - type: Transform pos: 67.5,-37.5 parent: 2 - - uid: 35616 + - uid: 35460 components: - type: Transform pos: 49.5,-72.5 parent: 2 - - uid: 35617 + - uid: 35461 components: - type: Transform pos: 49.5,-71.5 parent: 2 - - uid: 35618 + - uid: 35462 components: - type: Transform pos: 49.5,-70.5 parent: 2 - - uid: 35619 + - uid: 35463 components: - type: Transform pos: 66.5,-37.5 parent: 2 - - uid: 35620 + - uid: 35464 components: - type: Transform pos: 49.5,-68.5 parent: 2 - - uid: 35621 + - uid: 35465 components: - type: Transform pos: 49.5,-67.5 parent: 2 - - uid: 35622 + - uid: 35466 components: - type: Transform pos: 50.5,-68.5 parent: 2 - - uid: 35623 + - uid: 35467 components: - type: Transform pos: 50.5,-69.5 parent: 2 - - uid: 35624 + - uid: 35468 components: - type: Transform pos: 50.5,-70.5 parent: 2 - - uid: 35625 + - uid: 35469 components: - type: Transform pos: 49.5,-65.5 parent: 2 - - uid: 35626 + - uid: 35470 components: - type: Transform pos: 49.5,-64.5 parent: 2 - - uid: 35627 + - uid: 35471 components: - type: Transform pos: 49.5,-63.5 parent: 2 - - uid: 35628 + - uid: 35472 components: - type: Transform pos: 68.5,-37.5 parent: 2 - - uid: 35629 + - uid: 35473 components: - type: Transform pos: 69.5,-37.5 parent: 2 - - uid: 35630 + - uid: 35474 components: - type: Transform pos: 69.5,-38.5 parent: 2 - - uid: 35631 + - uid: 35475 components: - type: Transform pos: 70.5,-38.5 parent: 2 - - uid: 35632 + - uid: 35476 components: - type: Transform pos: 69.5,-36.5 parent: 2 - - uid: 35633 + - uid: 35477 components: - type: Transform pos: 70.5,-36.5 parent: 2 - - uid: 35634 + - uid: 35478 components: - type: Transform pos: 70.5,-35.5 parent: 2 - - uid: 35635 + - uid: 35479 components: - type: Transform pos: 12.5,-73.5 parent: 2 - - uid: 35636 + - uid: 35480 components: - type: Transform pos: 12.5,-74.5 parent: 2 - - uid: 35637 + - uid: 35481 components: - type: Transform pos: 12.5,-75.5 parent: 2 - - uid: 35638 + - uid: 35482 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 35639 + - uid: 35483 components: - type: Transform pos: 12.5,-77.5 parent: 2 - - uid: 35640 + - uid: 35484 components: - type: Transform pos: 13.5,-77.5 parent: 2 - - uid: 35641 + - uid: 35485 components: - type: Transform pos: 13.5,-76.5 parent: 2 - - uid: 35642 + - uid: 35486 components: - type: Transform pos: 13.5,-74.5 parent: 2 - - uid: 35643 + - uid: 35487 components: - type: Transform pos: 13.5,-72.5 parent: 2 - - uid: 35644 + - uid: 35488 components: - type: Transform pos: -45.5,-69.5 parent: 2 - - uid: 35645 + - uid: 35489 components: - type: Transform pos: -45.5,-70.5 parent: 2 - - uid: 35646 + - uid: 35490 components: - type: Transform pos: -45.5,-71.5 parent: 2 - - uid: 35647 + - uid: 35491 components: - type: Transform pos: -44.5,-59.5 parent: 2 - - uid: 35648 + - uid: 35492 components: - type: Transform pos: -44.5,-60.5 parent: 2 - - uid: 35649 + - uid: 35493 components: - type: Transform pos: -44.5,-61.5 parent: 2 - - uid: 35650 + - uid: 35494 components: - type: Transform pos: -44.5,-64.5 parent: 2 - - uid: 35651 + - uid: 35495 components: - type: Transform pos: -44.5,-66.5 parent: 2 - - uid: 35652 + - uid: 35496 components: - type: Transform pos: -44.5,-68.5 parent: 2 - - uid: 35653 + - uid: 35497 components: - type: Transform pos: -44.5,-70.5 parent: 2 - - uid: 35654 + - uid: 35498 components: - type: Transform pos: -44.5,-71.5 parent: 2 - - uid: 35655 + - uid: 35499 components: - type: Transform pos: -43.5,-59.5 parent: 2 - - uid: 35656 + - uid: 35500 components: - type: Transform pos: -43.5,-60.5 parent: 2 - - uid: 35657 + - uid: 35501 components: - type: Transform pos: -43.5,-62.5 parent: 2 - - uid: 35658 + - uid: 35502 components: - type: Transform pos: -43.5,-66.5 parent: 2 - - uid: 35659 + - uid: 35503 components: - type: Transform pos: -43.5,-67.5 parent: 2 - - uid: 35660 + - uid: 35504 components: - type: Transform pos: -43.5,-68.5 parent: 2 - - uid: 35661 + - uid: 35505 components: - type: Transform pos: -43.5,-69.5 parent: 2 - - uid: 35662 + - uid: 35506 components: - type: Transform pos: -43.5,-70.5 parent: 2 - - uid: 35663 + - uid: 35507 components: - type: Transform pos: -43.5,-71.5 parent: 2 - - uid: 35664 + - uid: 35508 components: - type: Transform pos: -42.5,-59.5 parent: 2 - - uid: 35665 + - uid: 35509 components: - type: Transform pos: -42.5,-60.5 parent: 2 - - uid: 35666 + - uid: 35510 components: - type: Transform pos: -42.5,-61.5 parent: 2 - - uid: 35667 + - uid: 35511 components: - type: Transform pos: -42.5,-62.5 parent: 2 - - uid: 35668 + - uid: 35512 components: - type: Transform pos: -42.5,-63.5 parent: 2 - - uid: 35669 + - uid: 35513 components: - type: Transform pos: -42.5,-65.5 parent: 2 - - uid: 35670 + - uid: 35514 components: - type: Transform pos: -42.5,-66.5 parent: 2 - - uid: 35671 + - uid: 35515 components: - type: Transform pos: -42.5,-68.5 parent: 2 - - uid: 35672 + - uid: 35516 components: - type: Transform pos: -42.5,-69.5 parent: 2 - - uid: 35673 + - uid: 35517 components: - type: Transform pos: -42.5,-70.5 parent: 2 - - uid: 35674 + - uid: 35518 components: - type: Transform pos: -42.5,-71.5 parent: 2 - - uid: 35675 + - uid: 35519 components: - type: Transform pos: -46.5,-70.5 parent: 2 - - uid: 35676 + - uid: 35520 components: - type: Transform pos: -46.5,-69.5 parent: 2 - - uid: 35677 + - uid: 35521 components: - type: Transform pos: -46.5,-68.5 parent: 2 - - uid: 35678 + - uid: 35522 components: - type: Transform pos: -46.5,-66.5 parent: 2 - - uid: 35679 + - uid: 35523 components: - type: Transform pos: -46.5,-65.5 parent: 2 - - uid: 35680 + - uid: 35524 components: - type: Transform pos: -46.5,-64.5 parent: 2 - - uid: 35681 + - uid: 35525 components: - type: Transform pos: -46.5,-62.5 parent: 2 - - uid: 35682 + - uid: 35526 components: - type: Transform pos: -46.5,-61.5 parent: 2 - - uid: 35683 + - uid: 35527 components: - type: Transform pos: -46.5,-60.5 parent: 2 - - uid: 35684 + - uid: 35528 components: - type: Transform pos: -48.5,-63.5 parent: 2 - - uid: 35685 + - uid: 35529 components: - type: Transform pos: -48.5,-64.5 parent: 2 - - uid: 35686 + - uid: 35530 components: - type: Transform pos: -48.5,-65.5 parent: 2 - - uid: 35687 + - uid: 35531 components: - type: Transform pos: -47.5,-63.5 parent: 2 - - uid: 35688 + - uid: 35532 components: - type: Transform pos: -47.5,-65.5 parent: 2 - - uid: 35689 + - uid: 35533 components: - type: Transform pos: -47.5,-62.5 parent: 2 - - uid: 35690 + - uid: 35534 components: - type: Transform pos: -47.5,-66.5 parent: 2 - - uid: 35691 + - uid: 35535 components: - type: Transform pos: -47.5,-67.5 parent: 2 - - uid: 35692 + - uid: 35536 components: - type: Transform pos: -47.5,-68.5 parent: 2 - - uid: 35693 + - uid: 35537 components: - type: Transform pos: -50.5,-51.5 parent: 2 - - uid: 35694 + - uid: 35538 components: - type: Transform pos: -50.5,-50.5 parent: 2 - - uid: 35695 + - uid: 35539 components: - type: Transform pos: -49.5,-53.5 parent: 2 - - uid: 35696 + - uid: 35540 components: - type: Transform pos: -49.5,-52.5 parent: 2 - - uid: 35697 + - uid: 35541 components: - type: Transform pos: -49.5,-51.5 parent: 2 - - uid: 35698 + - uid: 35542 components: - type: Transform pos: -49.5,-50.5 parent: 2 - - uid: 35699 + - uid: 35543 components: - type: Transform pos: -48.5,-53.5 parent: 2 - - uid: 35700 + - uid: 35544 components: - type: Transform pos: -48.5,-52.5 parent: 2 - - uid: 35701 + - uid: 35545 components: - type: Transform pos: -48.5,-51.5 parent: 2 - - uid: 35702 + - uid: 35546 components: - type: Transform pos: -48.5,-50.5 parent: 2 - - uid: 35703 + - uid: 35547 components: - type: Transform pos: -47.5,-53.5 parent: 2 - - uid: 35704 + - uid: 35548 components: - type: Transform pos: -47.5,-52.5 parent: 2 - - uid: 35705 + - uid: 35549 components: - type: Transform pos: -47.5,-51.5 parent: 2 - - uid: 35706 + - uid: 35550 components: - type: Transform pos: -46.5,-53.5 parent: 2 - - uid: 35707 + - uid: 35551 components: - type: Transform pos: -46.5,-51.5 parent: 2 - - uid: 35708 + - uid: 35552 components: - type: Transform pos: -46.5,-50.5 parent: 2 - - uid: 35709 + - uid: 35553 components: - type: Transform pos: -45.5,-53.5 parent: 2 - - uid: 35710 + - uid: 35554 components: - type: Transform pos: -45.5,-52.5 parent: 2 - - uid: 35711 + - uid: 35555 components: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 35712 + - uid: 35556 components: - type: Transform pos: -44.5,-50.5 parent: 2 - - uid: 35713 + - uid: 35557 components: - type: Transform pos: -44.5,-51.5 parent: 2 - - uid: 35714 + - uid: 35558 components: - type: Transform pos: -44.5,-52.5 parent: 2 - - uid: 35715 + - uid: 35559 components: - type: Transform pos: -43.5,-50.5 parent: 2 - - uid: 35716 + - uid: 35560 components: - type: Transform pos: -52.5,-50.5 parent: 2 - - uid: 35717 + - uid: 35561 components: - type: Transform pos: -52.5,-51.5 parent: 2 - - uid: 35718 + - uid: 35562 components: - type: Transform pos: -53.5,-51.5 parent: 2 - - uid: 35719 + - uid: 35563 components: - type: Transform pos: -48.5,-54.5 parent: 2 - - uid: 35720 + - uid: 35564 components: - type: Transform pos: -128.5,31.5 parent: 2 - - uid: 35721 + - uid: 35565 components: - type: Transform pos: -123.5,33.5 parent: 2 - - uid: 35722 + - uid: 35566 components: - type: Transform pos: -78.5,-33.5 parent: 2 - - uid: 35723 + - uid: 35567 components: - type: Transform pos: -78.5,-34.5 parent: 2 - - uid: 35724 + - uid: 35568 components: - type: Transform pos: -79.5,-34.5 parent: 2 - - uid: 35725 + - uid: 35569 components: - type: Transform pos: -77.5,-33.5 parent: 2 - - uid: 35726 + - uid: 35570 components: - type: Transform pos: -79.5,-32.5 parent: 2 - - uid: 35727 + - uid: 35571 components: - type: Transform pos: -77.5,-34.5 parent: 2 - - uid: 35728 + - uid: 35572 components: - type: Transform pos: -77.5,-35.5 parent: 2 - - uid: 35729 + - uid: 35573 components: - type: Transform pos: -77.5,-36.5 parent: 2 - - uid: 35730 + - uid: 35574 components: - type: Transform pos: -76.5,-34.5 parent: 2 - - uid: 35731 + - uid: 35575 components: - type: Transform pos: -76.5,-35.5 parent: 2 - - uid: 35732 + - uid: 35576 components: - type: Transform pos: -76.5,-36.5 parent: 2 - - uid: 35733 + - uid: 35577 components: - type: Transform pos: -78.5,-35.5 parent: 2 - - uid: 35734 + - uid: 35578 components: - type: Transform pos: -76.5,-38.5 parent: 2 - - uid: 35735 + - uid: 35579 components: - type: Transform pos: -75.5,-37.5 parent: 2 - - uid: 35736 + - uid: 35580 components: - type: Transform pos: -75.5,-38.5 parent: 2 - - uid: 35737 + - uid: 35581 components: - type: Transform pos: -74.5,-37.5 parent: 2 - - uid: 35738 + - uid: 35582 components: - type: Transform pos: -74.5,-38.5 parent: 2 - - uid: 35739 + - uid: 35583 components: - type: Transform pos: -73.5,-37.5 parent: 2 - - uid: 35740 + - uid: 35584 components: - type: Transform pos: -73.5,57.5 parent: 2 - - uid: 35741 + - uid: 35585 components: - type: Transform pos: -73.5,58.5 parent: 2 - - uid: 35742 + - uid: 35586 components: - type: Transform pos: -73.5,59.5 parent: 2 - - uid: 35743 + - uid: 35587 components: - type: Transform pos: -73.5,60.5 parent: 2 - - uid: 35744 + - uid: 35588 components: - type: Transform pos: -73.5,61.5 parent: 2 - - uid: 35745 + - uid: 35589 components: - type: Transform pos: -73.5,62.5 parent: 2 - - uid: 35746 + - uid: 35590 components: - type: Transform pos: -73.5,63.5 parent: 2 - - uid: 35747 + - uid: 35591 components: - type: Transform pos: -74.5,62.5 parent: 2 - - uid: 35748 + - uid: 35592 components: - type: Transform pos: -74.5,61.5 parent: 2 - - uid: 35749 + - uid: 35593 components: - type: Transform pos: -74.5,60.5 parent: 2 - - uid: 35750 + - uid: 35594 components: - type: Transform pos: -72.5,63.5 parent: 2 - - uid: 35751 + - uid: 35595 components: - type: Transform pos: -72.5,61.5 parent: 2 - - uid: 35752 + - uid: 35596 components: - type: Transform pos: -72.5,60.5 parent: 2 - - uid: 35753 + - uid: 35597 components: - type: Transform pos: -71.5,63.5 parent: 2 - - uid: 35754 + - uid: 35598 components: - type: Transform pos: -71.5,62.5 parent: 2 - - uid: 35755 + - uid: 35599 components: - type: Transform pos: -71.5,61.5 parent: 2 - - uid: 35756 + - uid: 35600 components: - type: Transform pos: -71.5,60.5 parent: 2 - - uid: 35757 + - uid: 35601 components: - type: Transform pos: -70.5,63.5 parent: 2 - - uid: 35758 + - uid: 35602 components: - type: Transform pos: -70.5,62.5 parent: 2 - - uid: 35759 + - uid: 35603 components: - type: Transform pos: -70.5,61.5 parent: 2 - - uid: 35760 + - uid: 35604 components: - type: Transform pos: -70.5,60.5 parent: 2 - - uid: 35761 + - uid: 35605 components: - type: Transform pos: -69.5,63.5 parent: 2 - - uid: 35762 + - uid: 35606 components: - type: Transform pos: -69.5,62.5 parent: 2 - - uid: 35763 + - uid: 35607 components: - type: Transform pos: -69.5,61.5 parent: 2 - - uid: 35764 + - uid: 35608 components: - type: Transform pos: -71.5,64.5 parent: 2 - - uid: 35765 + - uid: 35609 components: - type: Transform pos: -70.5,64.5 parent: 2 - - uid: 35766 + - uid: 35610 components: - type: Transform pos: -69.5,64.5 parent: 2 - - uid: 35767 + - uid: 35611 components: - type: Transform pos: -67.5,64.5 parent: 2 - - uid: 35768 + - uid: 35612 components: - type: Transform pos: -68.5,65.5 parent: 2 - - uid: 35769 + - uid: 35613 components: - type: Transform pos: -69.5,65.5 parent: 2 - - uid: 35770 + - uid: 35614 components: - type: Transform pos: -70.5,65.5 parent: 2 - - uid: 35771 + - uid: 35615 components: - type: Transform pos: -109.5,35.5 parent: 2 - - uid: 35772 + - uid: 35616 components: - type: Transform pos: -109.5,34.5 parent: 2 - - uid: 35773 + - uid: 35617 components: - type: Transform pos: -109.5,33.5 parent: 2 - - uid: 35774 + - uid: 35618 components: - type: Transform pos: -109.5,32.5 parent: 2 - - uid: 35775 + - uid: 35619 components: - type: Transform pos: -109.5,31.5 parent: 2 - - uid: 35776 + - uid: 35620 components: - type: Transform pos: -109.5,30.5 parent: 2 - - uid: 35777 + - uid: 35621 components: - type: Transform pos: -109.5,29.5 parent: 2 - - uid: 35778 + - uid: 35622 components: - type: Transform pos: -108.5,30.5 parent: 2 - - uid: 35779 + - uid: 35623 components: - type: Transform pos: -108.5,31.5 parent: 2 - - uid: 35780 + - uid: 35624 components: - type: Transform pos: -108.5,32.5 parent: 2 - - uid: 35781 + - uid: 35625 components: - type: Transform pos: -108.5,34.5 parent: 2 - - uid: 35782 + - uid: 35626 components: - type: Transform pos: -108.5,35.5 parent: 2 - - uid: 35783 + - uid: 35627 components: - type: Transform pos: -108.5,36.5 parent: 2 - - uid: 35784 + - uid: 35628 components: - type: Transform pos: -107.5,34.5 parent: 2 - - uid: 35785 + - uid: 35629 components: - type: Transform pos: -107.5,33.5 parent: 2 - - uid: 35786 + - uid: 35630 components: - type: Transform pos: -107.5,32.5 parent: 2 - - uid: 35787 + - uid: 35631 components: - type: Transform pos: -107.5,31.5 parent: 2 - - uid: 35788 + - uid: 35632 components: - type: Transform pos: -111.5,29.5 parent: 2 - - uid: 35789 + - uid: 35633 components: - type: Transform pos: -110.5,29.5 parent: 2 - - uid: 35790 + - uid: 35634 components: - type: Transform pos: -112.5,28.5 parent: 2 - - uid: 35791 + - uid: 35635 components: - type: Transform pos: -110.5,28.5 parent: 2 - - uid: 35792 + - uid: 35636 components: - type: Transform pos: -111.5,25.5 parent: 2 - - uid: 35793 + - uid: 35637 components: - type: Transform pos: -109.5,26.5 parent: 2 - - uid: 35794 + - uid: 35638 components: - type: Transform pos: -109.5,25.5 parent: 2 - - uid: 35795 + - uid: 35639 components: - type: Transform pos: -110.5,25.5 parent: 2 - - uid: 35796 + - uid: 35640 components: - type: Transform pos: -110.5,27.5 parent: 2 - - uid: 35797 + - uid: 35641 components: - type: Transform pos: -111.5,27.5 parent: 2 - - uid: 35798 + - uid: 35642 components: - type: Transform pos: -111.5,26.5 parent: 2 - - uid: 35799 + - uid: 35643 components: - type: Transform pos: -110.5,47.5 parent: 2 - - uid: 35800 + - uid: 35644 components: - type: Transform pos: -110.5,48.5 parent: 2 - - uid: 35801 + - uid: 35645 components: - type: Transform pos: -110.5,49.5 parent: 2 - - uid: 35802 + - uid: 35646 components: - type: Transform pos: -110.5,50.5 parent: 2 - - uid: 35803 + - uid: 35647 components: - type: Transform pos: -110.5,51.5 parent: 2 - - uid: 35804 + - uid: 35648 components: - type: Transform pos: -110.5,52.5 parent: 2 - - uid: 35805 + - uid: 35649 components: - type: Transform pos: -110.5,53.5 parent: 2 - - uid: 35806 + - uid: 35650 components: - type: Transform pos: -110.5,54.5 parent: 2 - - uid: 35807 + - uid: 35651 components: - type: Transform pos: -110.5,55.5 parent: 2 - - uid: 35808 + - uid: 35652 components: - type: Transform pos: -111.5,47.5 parent: 2 - - uid: 35809 + - uid: 35653 components: - type: Transform pos: -111.5,48.5 parent: 2 - - uid: 35810 + - uid: 35654 components: - type: Transform pos: -111.5,49.5 parent: 2 - - uid: 35811 + - uid: 35655 components: - type: Transform pos: -111.5,50.5 parent: 2 - - uid: 35812 + - uid: 35656 components: - type: Transform pos: -111.5,51.5 parent: 2 - - uid: 35813 + - uid: 35657 components: - type: Transform pos: -111.5,52.5 parent: 2 - - uid: 35814 + - uid: 35658 components: - type: Transform pos: -111.5,54.5 parent: 2 - - uid: 35815 + - uid: 35659 components: - type: Transform pos: -111.5,55.5 parent: 2 - - uid: 35816 + - uid: 35660 components: - type: Transform pos: -106.5,46.5 parent: 2 - - uid: 35817 + - uid: 35661 components: - type: Transform pos: -106.5,47.5 parent: 2 - - uid: 35818 + - uid: 35662 components: - type: Transform pos: -106.5,48.5 parent: 2 - - uid: 35819 + - uid: 35663 components: - type: Transform pos: -106.5,49.5 parent: 2 - - uid: 35820 + - uid: 35664 components: - type: Transform pos: -106.5,50.5 parent: 2 - - uid: 35821 + - uid: 35665 components: - type: Transform pos: -106.5,51.5 parent: 2 - - uid: 35822 + - uid: 35666 components: - type: Transform pos: -106.5,52.5 parent: 2 - - uid: 35823 + - uid: 35667 components: - type: Transform pos: -106.5,53.5 parent: 2 - - uid: 35824 + - uid: 35668 components: - type: Transform pos: -107.5,47.5 parent: 2 - - uid: 35825 + - uid: 35669 components: - type: Transform pos: -107.5,48.5 parent: 2 - - uid: 35826 + - uid: 35670 components: - type: Transform pos: -107.5,50.5 parent: 2 - - uid: 35827 + - uid: 35671 components: - type: Transform pos: -107.5,51.5 parent: 2 - - uid: 35828 + - uid: 35672 components: - type: Transform pos: -107.5,52.5 parent: 2 - - uid: 35829 + - uid: 35673 components: - type: Transform pos: -107.5,53.5 parent: 2 - - uid: 35830 + - uid: 35674 components: - type: Transform pos: -107.5,54.5 parent: 2 - - uid: 35831 + - uid: 35675 components: - type: Transform pos: -108.5,48.5 parent: 2 - - uid: 35832 + - uid: 35676 components: - type: Transform pos: -108.5,49.5 parent: 2 - - uid: 35833 + - uid: 35677 components: - type: Transform pos: -108.5,50.5 parent: 2 - - uid: 35834 + - uid: 35678 components: - type: Transform pos: -108.5,51.5 parent: 2 - - uid: 35835 + - uid: 35679 components: - type: Transform pos: -108.5,52.5 parent: 2 - - uid: 35836 + - uid: 35680 components: - type: Transform pos: -108.5,54.5 parent: 2 - - uid: 35837 + - uid: 35681 components: - type: Transform pos: -108.5,55.5 parent: 2 - - uid: 35838 + - uid: 35682 components: - type: Transform pos: -109.5,48.5 parent: 2 - - uid: 35839 + - uid: 35683 components: - type: Transform pos: -109.5,49.5 parent: 2 - - uid: 35840 + - uid: 35684 components: - type: Transform pos: -109.5,51.5 parent: 2 - - uid: 35841 + - uid: 35685 components: - type: Transform pos: -109.5,52.5 parent: 2 - - uid: 35842 + - uid: 35686 components: - type: Transform pos: -109.5,53.5 parent: 2 - - uid: 35843 + - uid: 35687 components: - type: Transform pos: -109.5,54.5 parent: 2 - - uid: 35844 + - uid: 35688 components: - type: Transform pos: -109.5,55.5 parent: 2 - - uid: 35845 + - uid: 35689 components: - type: Transform pos: -109.5,56.5 parent: 2 - - uid: 35846 + - uid: 35690 components: - type: Transform pos: -105.5,50.5 parent: 2 - - uid: 35847 + - uid: 35691 components: - type: Transform pos: -105.5,49.5 parent: 2 - - uid: 35848 + - uid: 35692 components: - type: Transform pos: -105.5,48.5 parent: 2 - - uid: 35849 + - uid: 35693 components: - type: Transform pos: -105.5,47.5 parent: 2 - - uid: 35850 + - uid: 35694 components: - type: Transform pos: -112.5,54.5 parent: 2 - - uid: 35851 + - uid: 35695 components: - type: Transform pos: -112.5,53.5 parent: 2 - - uid: 35852 + - uid: 35696 components: - type: Transform pos: -113.5,54.5 parent: 2 - - uid: 35853 + - uid: 35697 components: - type: Transform pos: -113.5,53.5 parent: 2 - - uid: 35854 + - uid: 35698 components: - type: Transform pos: -114.5,54.5 parent: 2 - - uid: 35855 + - uid: 35699 components: - type: Transform pos: -114.5,53.5 parent: 2 - - uid: 35856 + - uid: 35700 components: - type: Transform pos: -115.5,54.5 parent: 2 - - uid: 35857 + - uid: 35701 components: - type: Transform pos: -115.5,53.5 parent: 2 - - uid: 35858 + - uid: 35702 components: - type: Transform pos: -116.5,53.5 parent: 2 - - uid: 35859 + - uid: 35703 components: - type: Transform pos: -117.5,54.5 parent: 2 - - uid: 35860 + - uid: 35704 components: - type: Transform pos: -117.5,53.5 parent: 2 - - uid: 35861 + - uid: 35705 components: - type: Transform pos: -118.5,54.5 parent: 2 - - uid: 35862 + - uid: 35706 components: - type: Transform pos: -118.5,53.5 parent: 2 - - uid: 35863 + - uid: 35707 components: - type: Transform pos: -116.5,55.5 parent: 2 - - uid: 35864 + - uid: 35708 components: - type: Transform pos: -115.5,55.5 parent: 2 - - uid: 35865 + - uid: 35709 components: - type: Transform pos: -114.5,55.5 parent: 2 - - uid: 35866 + - uid: 35710 components: - type: Transform pos: -113.5,55.5 parent: 2 - - uid: 35867 + - uid: 35711 components: - type: Transform pos: -81.5,-19.5 parent: 2 - - uid: 35868 + - uid: 35712 components: - type: Transform pos: -81.5,-20.5 parent: 2 - - uid: 35869 + - uid: 35713 components: - type: Transform pos: -79.5,-21.5 parent: 2 - - uid: 35870 + - uid: 35714 components: - type: Transform pos: -82.5,-19.5 parent: 2 - - uid: 35871 + - uid: 35715 components: - type: Transform pos: -83.5,-18.5 parent: 2 - - uid: 35872 + - uid: 35716 components: - type: Transform pos: -81.5,-17.5 parent: 2 - - uid: 35873 + - uid: 35717 components: - type: Transform pos: -80.5,-17.5 parent: 2 - - uid: 35874 + - uid: 35718 components: - type: Transform pos: -80.5,-21.5 parent: 2 - - uid: 35875 + - uid: 35719 components: - type: Transform pos: -78.5,-15.5 parent: 2 - - uid: 35876 + - uid: 35720 components: - type: Transform pos: -77.5,-15.5 parent: 2 - - uid: 35877 + - uid: 35721 components: - type: Transform pos: -75.5,-15.5 parent: 2 - - uid: 35878 + - uid: 35722 components: - type: Transform pos: -76.5,-14.5 parent: 2 - - uid: 35879 + - uid: 35723 components: - type: Transform pos: -76.5,-13.5 parent: 2 - - uid: 35880 + - uid: 35724 components: - type: Transform pos: -76.5,-12.5 parent: 2 - - uid: 35881 + - uid: 35725 components: - type: Transform pos: -76.5,-11.5 parent: 2 - - uid: 35882 + - uid: 35726 components: - type: Transform pos: -75.5,-12.5 parent: 2 - - uid: 35883 + - uid: 35727 components: - type: Transform pos: -75.5,-14.5 parent: 2 - - uid: 35884 + - uid: 35728 components: - type: Transform pos: -74.5,-13.5 parent: 2 - - uid: 35885 + - uid: 35729 components: - type: Transform pos: -74.5,-14.5 parent: 2 - - uid: 35886 + - uid: 35730 components: - type: Transform pos: -73.5,-14.5 parent: 2 - - uid: 35887 + - uid: 35731 components: - type: Transform pos: -68.5,-14.5 parent: 2 - - uid: 35888 + - uid: 35732 components: - type: Transform pos: -67.5,-14.5 parent: 2 - - uid: 35889 + - uid: 35733 components: - type: Transform pos: -66.5,-14.5 parent: 2 - - uid: 35890 + - uid: 35734 components: - type: Transform pos: -65.5,-14.5 parent: 2 - - uid: 35891 + - uid: 35735 components: - type: Transform pos: -66.5,-15.5 parent: 2 - - uid: 35892 + - uid: 35736 components: - type: Transform pos: -67.5,-15.5 parent: 2 - - uid: 35893 + - uid: 35737 components: - type: Transform pos: -68.5,-15.5 parent: 2 - - uid: 35894 + - uid: 35738 components: - type: Transform pos: -64.5,-13.5 parent: 2 - - uid: 35895 + - uid: 35739 components: - type: Transform pos: -64.5,-12.5 parent: 2 - - uid: 35896 + - uid: 35740 components: - type: Transform pos: -64.5,-11.5 parent: 2 - - uid: 35897 + - uid: 35741 components: - type: Transform pos: -64.5,-10.5 parent: 2 - - uid: 35898 + - uid: 35742 components: - type: Transform pos: -64.5,-9.5 parent: 2 - - uid: 35899 + - uid: 35743 components: - type: Transform pos: -63.5,-9.5 parent: 2 - - uid: 35900 + - uid: 35744 components: - type: Transform pos: -63.5,-11.5 parent: 2 - - uid: 35901 + - uid: 35745 components: - type: Transform pos: -62.5,-10.5 parent: 2 - - uid: 35902 + - uid: 35746 components: - type: Transform pos: -62.5,-9.5 parent: 2 - - uid: 40122 + - uid: 39949 components: - type: Transform pos: 18.5,6.5 - parent: 38584 - - uid: 40123 + parent: 38411 + - uid: 39950 components: - type: Transform pos: 1.5,38.5 - parent: 38584 - - uid: 40124 + parent: 38411 + - uid: 39951 components: - type: Transform pos: 1.5,37.5 - parent: 38584 - - uid: 40125 + parent: 38411 + - uid: 39952 components: - type: Transform pos: 14.5,8.5 - parent: 38584 - - uid: 40126 + parent: 38411 + - uid: 39953 components: - type: Transform pos: 15.5,7.5 - parent: 38584 - - uid: 40127 + parent: 38411 + - uid: 39954 components: - type: Transform pos: 2.5,10.5 - parent: 38584 - - uid: 40128 + parent: 38411 + - uid: 39955 components: - type: Transform pos: 17.5,6.5 - parent: 38584 - - uid: 40129 + parent: 38411 + - uid: 39956 components: - type: Transform pos: 15.5,8.5 - parent: 38584 - - uid: 40130 + parent: 38411 + - uid: 39957 components: - type: Transform pos: 13.5,8.5 - parent: 38584 - - uid: 40131 + parent: 38411 + - uid: 39958 components: - type: Transform pos: 5.5,6.5 - parent: 38584 - - uid: 40132 + parent: 38411 + - uid: 39959 components: - type: Transform pos: 5.5,7.5 - parent: 38584 - - uid: 40133 + parent: 38411 + - uid: 39960 components: - type: Transform pos: 1.5,11.5 - parent: 38584 - - uid: 40134 + parent: 38411 + - uid: 39961 components: - type: Transform pos: -7.5,12.5 - parent: 38584 - - uid: 40135 + parent: 38411 + - uid: 39962 components: - type: Transform pos: 3.5,8.5 - parent: 38584 - - uid: 40136 + parent: 38411 + - uid: 39963 components: - type: Transform pos: 4.5,8.5 - parent: 38584 - - uid: 40137 + parent: 38411 + - uid: 39964 components: - type: Transform pos: 1.5,10.5 - parent: 38584 - - uid: 40138 + parent: 38411 + - uid: 39965 components: - type: Transform pos: 4.5,7.5 - parent: 38584 - - uid: 40139 + parent: 38411 + - uid: 39966 components: - type: Transform pos: 6.5,8.5 - parent: 38584 - - uid: 40140 + parent: 38411 + - uid: 39967 components: - type: Transform pos: -6.5,12.5 - parent: 38584 - - uid: 40141 + parent: 38411 + - uid: 39968 components: - type: Transform pos: 3.5,7.5 - parent: 38584 - - uid: 40142 + parent: 38411 + - uid: 39969 components: - type: Transform pos: 3.5,6.5 - parent: 38584 - - uid: 40143 + parent: 38411 + - uid: 39970 components: - type: Transform pos: 4.5,6.5 - parent: 38584 - - uid: 40144 + parent: 38411 + - uid: 39971 components: - type: Transform pos: 5.5,8.5 - parent: 38584 - - uid: 40145 + parent: 38411 + - uid: 39972 components: - type: Transform pos: 6.5,7.5 - parent: 38584 - - uid: 40146 + parent: 38411 + - uid: 39973 components: - type: Transform pos: -5.5,12.5 - parent: 38584 - - uid: 40147 + parent: 38411 + - uid: 39974 components: - type: Transform pos: 3.5,9.5 - parent: 38584 - - uid: 40148 + parent: 38411 + - uid: 39975 components: - type: Transform pos: 6.5,6.5 - parent: 38584 - - uid: 40149 + parent: 38411 + - uid: 39976 components: - type: Transform pos: 10.5,13.5 - parent: 38584 - - uid: 40150 + parent: 38411 + - uid: 39977 components: - type: Transform pos: 9.5,14.5 - parent: 38584 - - uid: 40151 + parent: 38411 + - uid: 39978 components: - type: Transform pos: 10.5,33.5 - parent: 38584 - - uid: 40152 + parent: 38411 + - uid: 39979 components: - type: Transform pos: 9.5,13.5 - parent: 38584 - - uid: 40153 + parent: 38411 + - uid: 39980 components: - type: Transform pos: 8.5,16.5 - parent: 38584 - - uid: 40154 + parent: 38411 + - uid: 39981 components: - type: Transform pos: 10.5,32.5 - parent: 38584 - - uid: 40155 + parent: 38411 + - uid: 39982 components: - type: Transform pos: 10.5,12.5 - parent: 38584 - - uid: 40156 + parent: 38411 + - uid: 39983 components: - type: Transform pos: 12.5,9.5 - parent: 38584 - - uid: 40157 + parent: 38411 + - uid: 39984 components: - type: Transform pos: 6.5,19.5 - parent: 38584 - - uid: 40158 + parent: 38411 + - uid: 39985 components: - type: Transform pos: 7.5,22.5 - parent: 38584 - - uid: 40159 + parent: 38411 + - uid: 39986 components: - type: Transform pos: 5.5,20.5 - parent: 38584 - - uid: 40160 + parent: 38411 + - uid: 39987 components: - type: Transform pos: 18.5,27.5 - parent: 38584 - - uid: 40161 + parent: 38411 + - uid: 39988 components: - type: Transform pos: 14.5,26.5 - parent: 38584 - - uid: 40162 + parent: 38411 + - uid: 39989 components: - type: Transform pos: 15.5,26.5 - parent: 38584 - - uid: 40163 + parent: 38411 + - uid: 39990 components: - type: Transform pos: 6.5,18.5 - parent: 38584 - - uid: 40164 + parent: 38411 + - uid: 39991 components: - type: Transform pos: 10.5,14.5 - parent: 38584 - - uid: 40165 + parent: 38411 + - uid: 39992 components: - type: Transform pos: 8.5,14.5 - parent: 38584 - - uid: 40166 + parent: 38411 + - uid: 39993 components: - type: Transform pos: 11.5,12.5 - parent: 38584 - - uid: 40167 + parent: 38411 + - uid: 39994 components: - type: Transform pos: 5.5,23.5 - parent: 38584 - - uid: 40168 + parent: 38411 + - uid: 39995 components: - type: Transform pos: 13.5,25.5 - parent: 38584 - - uid: 40169 + parent: 38411 + - uid: 39996 components: - type: Transform pos: 13.5,26.5 - parent: 38584 - - uid: 40170 + parent: 38411 + - uid: 39997 components: - type: Transform pos: 14.5,9.5 - parent: 38584 - - uid: 40171 + parent: 38411 + - uid: 39998 components: - type: Transform pos: 6.5,14.5 - parent: 38584 - - uid: 40172 + parent: 38411 + - uid: 39999 components: - type: Transform pos: 6.5,13.5 - parent: 38584 - - uid: 40173 + parent: 38411 + - uid: 40000 components: - type: Transform pos: 16.5,14.5 - parent: 38584 - - uid: 40174 + parent: 38411 + - uid: 40001 components: - type: Transform pos: 9.5,10.5 - parent: 38584 - - uid: 40175 + parent: 38411 + - uid: 40002 components: - type: Transform pos: 18.5,25.5 - parent: 38584 - - uid: 40176 + parent: 38411 + - uid: 40003 components: - type: Transform pos: 4.5,19.5 - parent: 38584 - - uid: 40177 + parent: 38411 + - uid: 40004 components: - type: Transform pos: 5.5,19.5 - parent: 38584 - - uid: 40178 + parent: 38411 + - uid: 40005 components: - type: Transform pos: 6.5,15.5 - parent: 38584 - - uid: 40179 + parent: 38411 + - uid: 40006 components: - type: Transform pos: 6.5,22.5 - parent: 38584 - - uid: 40180 + parent: 38411 + - uid: 40007 components: - type: Transform pos: 8.5,12.5 - parent: 38584 - - uid: 40181 + parent: 38411 + - uid: 40008 components: - type: Transform pos: 5.5,17.5 - parent: 38584 - - uid: 40182 + parent: 38411 + - uid: 40009 components: - type: Transform pos: 7.5,21.5 - parent: 38584 - - uid: 40183 + parent: 38411 + - uid: 40010 components: - type: Transform pos: 6.5,23.5 - parent: 38584 - - uid: 40184 + parent: 38411 + - uid: 40011 components: - type: Transform pos: 8.5,13.5 - parent: 38584 - - uid: 40185 + parent: 38411 + - uid: 40012 components: - type: Transform pos: 4.5,17.5 - parent: 38584 - - uid: 40186 + parent: 38411 + - uid: 40013 components: - type: Transform pos: 11.5,10.5 - parent: 38584 - - uid: 40187 + parent: 38411 + - uid: 40014 components: - type: Transform pos: 11.5,9.5 - parent: 38584 - - uid: 40188 + parent: 38411 + - uid: 40015 components: - type: Transform pos: 7.5,10.5 - parent: 38584 - - uid: 40189 + parent: 38411 + - uid: 40016 components: - type: Transform pos: 10.5,24.5 - parent: 38584 - - uid: 40190 + parent: 38411 + - uid: 40017 components: - type: Transform pos: 7.5,14.5 - parent: 38584 - - uid: 40191 + parent: 38411 + - uid: 40018 components: - type: Transform pos: 6.5,20.5 - parent: 38584 - - uid: 40192 + parent: 38411 + - uid: 40019 components: - type: Transform pos: 7.5,17.5 - parent: 38584 - - uid: 40193 + parent: 38411 + - uid: 40020 components: - type: Transform pos: 6.5,21.5 - parent: 38584 - - uid: 40194 + parent: 38411 + - uid: 40021 components: - type: Transform pos: 5.5,22.5 - parent: 38584 - - uid: 40195 + parent: 38411 + - uid: 40022 components: - type: Transform pos: 4.5,15.5 - parent: 38584 - - uid: 40196 + parent: 38411 + - uid: 40023 components: - type: Transform pos: 7.5,13.5 - parent: 38584 - - uid: 40197 + parent: 38411 + - uid: 40024 components: - type: Transform pos: 4.5,18.5 - parent: 38584 - - uid: 40198 + parent: 38411 + - uid: 40025 components: - type: Transform pos: 5.5,11.5 - parent: 38584 - - uid: 40199 + parent: 38411 + - uid: 40026 components: - type: Transform pos: 10.5,31.5 - parent: 38584 - - uid: 40200 + parent: 38411 + - uid: 40027 components: - type: Transform pos: 5.5,14.5 - parent: 38584 - - uid: 40201 + parent: 38411 + - uid: 40028 components: - type: Transform pos: 10.5,10.5 - parent: 38584 - - uid: 40202 + parent: 38411 + - uid: 40029 components: - type: Transform pos: 3.5,18.5 - parent: 38584 - - uid: 40203 + parent: 38411 + - uid: 40030 components: - type: Transform pos: 9.5,9.5 - parent: 38584 - - uid: 40204 + parent: 38411 + - uid: 40031 components: - type: Transform pos: 7.5,12.5 - parent: 38584 - - uid: 40205 + parent: 38411 + - uid: 40032 components: - type: Transform pos: 4.5,20.5 - parent: 38584 - - uid: 40206 + parent: 38411 + - uid: 40033 components: - type: Transform pos: 5.5,18.5 - parent: 38584 - - uid: 40207 + parent: 38411 + - uid: 40034 components: - type: Transform pos: 8.5,9.5 - parent: 38584 - - uid: 40208 + parent: 38411 + - uid: 40035 components: - type: Transform pos: 9.5,11.5 - parent: 38584 - - uid: 40209 + parent: 38411 + - uid: 40036 components: - type: Transform pos: 8.5,11.5 - parent: 38584 - - uid: 40210 + parent: 38411 + - uid: 40037 components: - type: Transform pos: 9.5,12.5 - parent: 38584 - - uid: 40211 + parent: 38411 + - uid: 40038 components: - type: Transform pos: 14.5,25.5 - parent: 38584 - - uid: 40212 + parent: 38411 + - uid: 40039 components: - type: Transform pos: -25.5,22.5 - parent: 38584 - - uid: 40213 + parent: 38411 + - uid: 40040 components: - type: Transform pos: -24.5,21.5 - parent: 38584 - - uid: 40214 + parent: 38411 + - uid: 40041 components: - type: Transform pos: -24.5,20.5 - parent: 38584 - - uid: 40215 + parent: 38411 + - uid: 40042 components: - type: Transform pos: -24.5,13.5 - parent: 38584 - - uid: 40216 + parent: 38411 + - uid: 40043 components: - type: Transform pos: -13.5,40.5 - parent: 38584 - - uid: 40217 + parent: 38411 + - uid: 40044 components: - type: Transform pos: -18.5,38.5 - parent: 38584 - - uid: 40218 + parent: 38411 + - uid: 40045 components: - type: Transform pos: -28.5,30.5 - parent: 38584 - - uid: 40219 + parent: 38411 + - uid: 40046 components: - type: Transform pos: -15.5,41.5 - parent: 38584 - - uid: 40220 + parent: 38411 + - uid: 40047 components: - type: Transform pos: -29.5,32.5 - parent: 38584 - - uid: 40221 + parent: 38411 + - uid: 40048 components: - type: Transform pos: -20.5,19.5 - parent: 38584 - - uid: 40222 + parent: 38411 + - uid: 40049 components: - type: Transform pos: 11.5,31.5 - parent: 38584 - - uid: 40223 + parent: 38411 + - uid: 40050 components: - type: Transform pos: 0.5,34.5 - parent: 38584 - - uid: 40224 + parent: 38411 + - uid: 40051 components: - type: Transform pos: 5.5,28.5 - parent: 38584 - - uid: 40225 + parent: 38411 + - uid: 40052 components: - type: Transform pos: 2.5,33.5 - parent: 38584 - - uid: 40226 + parent: 38411 + - uid: 40053 components: - type: Transform pos: 1.5,33.5 - parent: 38584 - - uid: 40227 + parent: 38411 + - uid: 40054 components: - type: Transform pos: 8.5,35.5 - parent: 38584 - - uid: 40228 + parent: 38411 + - uid: 40055 components: - type: Transform pos: 7.5,36.5 - parent: 38584 - - uid: 40229 + parent: 38411 + - uid: 40056 components: - type: Transform pos: 11.5,33.5 - parent: 38584 - - uid: 40230 + parent: 38411 + - uid: 40057 components: - type: Transform pos: 11.5,32.5 - parent: 38584 - - uid: 40231 + parent: 38411 + - uid: 40058 components: - type: Transform pos: -25.5,21.5 - parent: 38584 - - uid: 40232 + parent: 38411 + - uid: 40059 components: - type: Transform pos: -25.5,19.5 - parent: 38584 - - uid: 40233 + parent: 38411 + - uid: 40060 components: - type: Transform pos: -26.5,18.5 - parent: 38584 - - uid: 40234 + parent: 38411 + - uid: 40061 components: - type: Transform pos: -26.5,22.5 - parent: 38584 - - uid: 40235 + parent: 38411 + - uid: 40062 components: - type: Transform pos: -26.5,21.5 - parent: 38584 - - uid: 40236 + parent: 38411 + - uid: 40063 components: - type: Transform pos: -25.5,18.5 - parent: 38584 - - uid: 40237 + parent: 38411 + - uid: 40064 components: - type: Transform pos: -24.5,23.5 - parent: 38584 - - uid: 40238 + parent: 38411 + - uid: 40065 components: - type: Transform pos: -23.5,23.5 - parent: 38584 - - uid: 40239 + parent: 38411 + - uid: 40066 components: - type: Transform pos: -25.5,12.5 - parent: 38584 - - uid: 40240 + parent: 38411 + - uid: 40067 components: - type: Transform pos: -25.5,11.5 - parent: 38584 - - uid: 40241 + parent: 38411 + - uid: 40068 components: - type: Transform pos: -24.5,17.5 - parent: 38584 - - uid: 40242 + parent: 38411 + - uid: 40069 components: - type: Transform pos: -23.5,12.5 - parent: 38584 - - uid: 40243 + parent: 38411 + - uid: 40070 components: - type: Transform pos: -24.5,12.5 - parent: 38584 - - uid: 40244 + parent: 38411 + - uid: 40071 components: - type: Transform pos: -23.5,14.5 - parent: 38584 - - uid: 40245 + parent: 38411 + - uid: 40072 components: - type: Transform pos: -31.5,32.5 - parent: 38584 - - uid: 40246 + parent: 38411 + - uid: 40073 components: - type: Transform pos: -28.5,33.5 - parent: 38584 - - uid: 40247 + parent: 38411 + - uid: 40074 components: - type: Transform pos: -25.5,37.5 - parent: 38584 - - uid: 40248 + parent: 38411 + - uid: 40075 components: - type: Transform pos: -25.5,38.5 - parent: 38584 - - uid: 40249 + parent: 38411 + - uid: 40076 components: - type: Transform pos: -25.5,36.5 - parent: 38584 - - uid: 40250 + parent: 38411 + - uid: 40077 components: - type: Transform pos: -29.5,33.5 - parent: 38584 - - uid: 40251 + parent: 38411 + - uid: 40078 components: - type: Transform pos: -25.5,33.5 - parent: 38584 - - uid: 40252 + parent: 38411 + - uid: 40079 components: - type: Transform pos: -11.5,40.5 - parent: 38584 - - uid: 40253 + parent: 38411 + - uid: 40080 components: - type: Transform pos: -12.5,41.5 - parent: 38584 - - uid: 40254 + parent: 38411 + - uid: 40081 components: - type: Transform pos: -23.5,19.5 - parent: 38584 - - uid: 40255 + parent: 38411 + - uid: 40082 components: - type: Transform pos: -24.5,19.5 - parent: 38584 - - uid: 40256 + parent: 38411 + - uid: 40083 components: - type: Transform pos: -24.5,18.5 - parent: 38584 - - uid: 40257 + parent: 38411 + - uid: 40084 components: - type: Transform pos: -22.5,19.5 - parent: 38584 - - uid: 40258 + parent: 38411 + - uid: 40085 components: - type: Transform pos: -22.5,18.5 - parent: 38584 - - uid: 40259 + parent: 38411 + - uid: 40086 components: - type: Transform pos: -23.5,22.5 - parent: 38584 - - uid: 40260 + parent: 38411 + - uid: 40087 components: - type: Transform pos: -15.5,40.5 - parent: 38584 - - uid: 40261 + parent: 38411 + - uid: 40088 components: - type: Transform pos: -21.5,41.5 - parent: 38584 - - uid: 40262 + parent: 38411 + - uid: 40089 components: - type: Transform pos: -23.5,40.5 - parent: 38584 - - uid: 40263 + parent: 38411 + - uid: 40090 components: - type: Transform pos: -16.5,41.5 - parent: 38584 - - uid: 40264 + parent: 38411 + - uid: 40091 components: - type: Transform pos: -20.5,40.5 - parent: 38584 - - uid: 40265 + parent: 38411 + - uid: 40092 components: - type: Transform pos: -22.5,22.5 - parent: 38584 - - uid: 40266 + parent: 38411 + - uid: 40093 components: - type: Transform pos: -21.5,40.5 - parent: 38584 - - uid: 40267 + parent: 38411 + - uid: 40094 components: - type: Transform pos: -20.5,41.5 - parent: 38584 - - uid: 40268 + parent: 38411 + - uid: 40095 components: - type: Transform pos: -19.5,40.5 - parent: 38584 - - uid: 40269 + parent: 38411 + - uid: 40096 components: - type: Transform pos: -18.5,40.5 - parent: 38584 - - uid: 40270 + parent: 38411 + - uid: 40097 components: - type: Transform pos: -21.5,42.5 - parent: 38584 - - uid: 40271 + parent: 38411 + - uid: 40098 components: - type: Transform pos: -17.5,40.5 - parent: 38584 - - uid: 40272 + parent: 38411 + - uid: 40099 components: - type: Transform pos: -18.5,23.5 - parent: 38584 - - uid: 40273 + parent: 38411 + - uid: 40100 components: - type: Transform pos: -17.5,23.5 - parent: 38584 - - uid: 40274 + parent: 38411 + - uid: 40101 components: - type: Transform pos: -28.5,31.5 - parent: 38584 - - uid: 40275 + parent: 38411 + - uid: 40102 components: - type: Transform pos: -27.5,31.5 - parent: 38584 - - uid: 40276 + parent: 38411 + - uid: 40103 components: - type: Transform pos: -24.5,24.5 - parent: 38584 - - uid: 40277 + parent: 38411 + - uid: 40104 components: - type: Transform pos: -27.5,17.5 - parent: 38584 - - uid: 40278 + parent: 38411 + - uid: 40105 components: - type: Transform pos: -18.5,12.5 - parent: 38584 - - uid: 40279 + parent: 38411 + - uid: 40106 components: - type: Transform pos: -17.5,12.5 - parent: 38584 - - uid: 40280 + parent: 38411 + - uid: 40107 components: - type: Transform pos: -18.5,13.5 - parent: 38584 - - uid: 40281 + parent: 38411 + - uid: 40108 components: - type: Transform pos: -28.5,19.5 - parent: 38584 - - uid: 40282 + parent: 38411 + - uid: 40109 components: - type: Transform pos: -27.5,20.5 - parent: 38584 - - uid: 40283 + parent: 38411 + - uid: 40110 components: - type: Transform pos: -17.5,14.5 - parent: 38584 - - uid: 40284 + parent: 38411 + - uid: 40111 components: - type: Transform pos: -17.5,13.5 - parent: 38584 - - uid: 40285 + parent: 38411 + - uid: 40112 components: - type: Transform pos: -27.5,18.5 - parent: 38584 - - uid: 40286 + parent: 38411 + - uid: 40113 components: - type: Transform pos: -28.5,12.5 - parent: 38584 - - uid: 40287 + parent: 38411 + - uid: 40114 components: - type: Transform pos: -28.5,11.5 - parent: 38584 - - uid: 40288 + parent: 38411 + - uid: 40115 components: - type: Transform pos: -31.5,16.5 - parent: 38584 - - uid: 40289 + parent: 38411 + - uid: 40116 components: - type: Transform pos: -29.5,18.5 - parent: 38584 - - uid: 40290 + parent: 38411 + - uid: 40117 components: - type: Transform pos: -30.5,17.5 - parent: 38584 - - uid: 40291 + parent: 38411 + - uid: 40118 components: - type: Transform pos: -26.5,32.5 - parent: 38584 - - uid: 40292 + parent: 38411 + - uid: 40119 components: - type: Transform pos: -25.5,31.5 - parent: 38584 - - uid: 40293 + parent: 38411 + - uid: 40120 components: - type: Transform pos: -25.5,32.5 - parent: 38584 - - uid: 40294 + parent: 38411 + - uid: 40121 components: - type: Transform pos: -22.5,39.5 - parent: 38584 - - uid: 40295 + parent: 38411 + - uid: 40122 components: - type: Transform pos: -25.5,34.5 - parent: 38584 - - uid: 40296 + parent: 38411 + - uid: 40123 components: - type: Transform pos: -21.5,39.5 - parent: 38584 - - uid: 40297 + parent: 38411 + - uid: 40124 components: - type: Transform pos: -24.5,37.5 - parent: 38584 - - uid: 40298 + parent: 38411 + - uid: 40125 components: - type: Transform pos: -24.5,39.5 - parent: 38584 - - uid: 40299 + parent: 38411 + - uid: 40126 components: - type: Transform pos: -28.5,28.5 - parent: 38584 - - uid: 40300 + parent: 38411 + - uid: 40127 components: - type: Transform pos: -19.5,39.5 - parent: 38584 - - uid: 40301 + parent: 38411 + - uid: 40128 components: - type: Transform pos: -26.5,30.5 - parent: 38584 - - uid: 40302 + parent: 38411 + - uid: 40129 components: - type: Transform pos: -32.5,30.5 - parent: 38584 - - uid: 40303 + parent: 38411 + - uid: 40130 components: - type: Transform pos: -32.5,31.5 - parent: 38584 - - uid: 40304 + parent: 38411 + - uid: 40131 components: - type: Transform pos: -31.5,31.5 - parent: 38584 - - uid: 40305 + parent: 38411 + - uid: 40132 components: - type: Transform pos: -26.5,31.5 - parent: 38584 - - uid: 40306 + parent: 38411 + - uid: 40133 components: - type: Transform pos: -29.5,29.5 - parent: 38584 - - uid: 40307 + parent: 38411 + - uid: 40134 components: - type: Transform pos: -27.5,28.5 - parent: 38584 - - uid: 40308 + parent: 38411 + - uid: 40135 components: - type: Transform pos: -27.5,29.5 - parent: 38584 - - uid: 40309 + parent: 38411 + - uid: 40136 components: - type: Transform pos: -22.5,37.5 - parent: 38584 - - uid: 40310 + parent: 38411 + - uid: 40137 components: - type: Transform pos: -18.5,21.5 - parent: 38584 - - uid: 40311 + parent: 38411 + - uid: 40138 components: - type: Transform pos: -10.5,38.5 - parent: 38584 - - uid: 40312 + parent: 38411 + - uid: 40139 components: - type: Transform pos: -11.5,37.5 - parent: 38584 - - uid: 40313 + parent: 38411 + - uid: 40140 components: - type: Transform pos: -12.5,32.5 - parent: 38584 - - uid: 40314 + parent: 38411 + - uid: 40141 components: - type: Transform pos: -9.5,29.5 - parent: 38584 - - uid: 40315 + parent: 38411 + - uid: 40142 components: - type: Transform pos: -30.5,30.5 - parent: 38584 - - uid: 40316 + parent: 38411 + - uid: 40143 components: - type: Transform pos: -29.5,31.5 - parent: 38584 - - uid: 40317 + parent: 38411 + - uid: 40144 components: - type: Transform pos: -16.5,28.5 - parent: 38584 - - uid: 40318 + parent: 38411 + - uid: 40145 components: - type: Transform pos: 4.5,35.5 - parent: 38584 - - uid: 40319 + parent: 38411 + - uid: 40146 components: - type: Transform pos: 5.5,40.5 - parent: 38584 - - uid: 40320 + parent: 38411 + - uid: 40147 components: - type: Transform pos: 4.5,37.5 - parent: 38584 - - uid: 40321 + parent: 38411 + - uid: 40148 components: - type: Transform pos: 5.5,25.5 - parent: 38584 - - uid: 40322 + parent: 38411 + - uid: 40149 components: - type: Transform pos: 0.5,36.5 - parent: 38584 - - uid: 40323 + parent: 38411 + - uid: 40150 components: - type: Transform pos: 5.5,42.5 - parent: 38584 - - uid: 40324 + parent: 38411 + - uid: 40151 components: - type: Transform pos: 4.5,32.5 - parent: 38584 - - uid: 40325 + parent: 38411 + - uid: 40152 components: - type: Transform pos: 5.5,38.5 - parent: 38584 - - uid: 40326 + parent: 38411 + - uid: 40153 components: - type: Transform pos: 6.5,41.5 - parent: 38584 - - uid: 40327 + parent: 38411 + - uid: 40154 components: - type: Transform pos: 2.5,37.5 - parent: 38584 - - uid: 40328 + parent: 38411 + - uid: 40155 components: - type: Transform pos: 3.5,36.5 - parent: 38584 - - uid: 40329 + parent: 38411 + - uid: 40156 components: - type: Transform pos: 4.5,36.5 - parent: 38584 - - uid: 40330 + parent: 38411 + - uid: 40157 components: - type: Transform pos: 3.5,40.5 - parent: 38584 - - uid: 40331 + parent: 38411 + - uid: 40158 components: - type: Transform pos: 2.5,41.5 - parent: 38584 - - uid: 40332 + parent: 38411 + - uid: 40159 components: - type: Transform pos: 3.5,38.5 - parent: 38584 - - uid: 40333 + parent: 38411 + - uid: 40160 components: - type: Transform pos: 4.5,40.5 - parent: 38584 - - uid: 40334 + parent: 38411 + - uid: 40161 components: - type: Transform pos: 1.5,35.5 - parent: 38584 - - uid: 40335 + parent: 38411 + - uid: 40162 components: - type: Transform pos: 4.5,39.5 - parent: 38584 - - uid: 40336 + parent: 38411 + - uid: 40163 components: - type: Transform pos: 4.5,26.5 - parent: 38584 - - uid: 40337 + parent: 38411 + - uid: 40164 components: - type: Transform pos: 4.5,25.5 - parent: 38584 - - uid: 40338 + parent: 38411 + - uid: 40165 components: - type: Transform pos: 2.5,23.5 - parent: 38584 - - uid: 40339 + parent: 38411 + - uid: 40166 components: - type: Transform pos: 1.5,36.5 - parent: 38584 - - uid: 40340 + parent: 38411 + - uid: 40167 components: - type: Transform pos: 2.5,24.5 - parent: 38584 - - uid: 40341 + parent: 38411 + - uid: 40168 components: - type: Transform pos: 3.5,20.5 - parent: 38584 - - uid: 40342 + parent: 38411 + - uid: 40169 components: - type: Transform pos: 5.5,30.5 - parent: 38584 - - uid: 40343 + parent: 38411 + - uid: 40170 components: - type: Transform pos: 5.5,31.5 - parent: 38584 - - uid: 40344 + parent: 38411 + - uid: 40171 components: - type: Transform pos: 6.5,30.5 - parent: 38584 - - uid: 40345 + parent: 38411 + - uid: 40172 components: - type: Transform pos: 4.5,38.5 - parent: 38584 - - uid: 40346 + parent: 38411 + - uid: 40173 components: - type: Transform pos: 5.5,24.5 - parent: 38584 - - uid: 40347 + parent: 38411 + - uid: 40174 components: - type: Transform pos: 6.5,32.5 - parent: 38584 - - uid: 40348 + parent: 38411 + - uid: 40175 components: - type: Transform pos: 6.5,26.5 - parent: 38584 - - uid: 40349 + parent: 38411 + - uid: 40176 components: - type: Transform pos: 6.5,31.5 - parent: 38584 - - uid: 40350 + parent: 38411 + - uid: 40177 components: - type: Transform pos: 7.5,35.5 - parent: 38584 - - uid: 40351 + parent: 38411 + - uid: 40178 components: - type: Transform pos: 0.5,33.5 - parent: 38584 - - uid: 40352 + parent: 38411 + - uid: 40179 components: - type: Transform pos: 1.5,32.5 - parent: 38584 - - uid: 40353 + parent: 38411 + - uid: 40180 components: - type: Transform pos: 0.5,32.5 - parent: 38584 - - uid: 40354 + parent: 38411 + - uid: 40181 components: - type: Transform pos: 2.5,36.5 - parent: 38584 - - uid: 40355 + parent: 38411 + - uid: 40182 components: - type: Transform pos: 0.5,37.5 - parent: 38584 - - uid: 40356 + parent: 38411 + - uid: 40183 components: - type: Transform pos: 3.5,25.5 - parent: 38584 - - uid: 40357 + parent: 38411 + - uid: 40184 components: - type: Transform pos: 4.5,24.5 - parent: 38584 - - uid: 40358 + parent: 38411 + - uid: 40185 components: - type: Transform pos: 5.5,34.5 - parent: 38584 - - uid: 40359 + parent: 38411 + - uid: 40186 components: - type: Transform pos: 1.5,28.5 - parent: 38584 - - uid: 40360 + parent: 38411 + - uid: 40187 components: - type: Transform pos: 2.5,26.5 - parent: 38584 - - uid: 40361 + parent: 38411 + - uid: 40188 components: - type: Transform pos: 3.5,33.5 - parent: 38584 - - uid: 40362 + parent: 38411 + - uid: 40189 components: - type: Transform pos: 1.5,30.5 - parent: 38584 - - uid: 40363 + parent: 38411 + - uid: 40190 components: - type: Transform pos: 2.5,30.5 - parent: 38584 - - uid: 40364 + parent: 38411 + - uid: 40191 components: - type: Transform pos: 1.5,31.5 - parent: 38584 - - uid: 40365 + parent: 38411 + - uid: 40192 components: - type: Transform pos: -10.5,22.5 - parent: 38584 - - uid: 40366 + parent: 38411 + - uid: 40193 components: - type: Transform pos: 0.5,28.5 - parent: 38584 - - uid: 40367 + parent: 38411 + - uid: 40194 components: - type: Transform pos: 2.5,25.5 - parent: 38584 - - uid: 40368 + parent: 38411 + - uid: 40195 components: - type: Transform pos: 1.5,27.5 - parent: 38584 - - uid: 40369 + parent: 38411 + - uid: 40196 components: - type: Transform pos: 5.5,27.5 - parent: 38584 - - uid: 40370 + parent: 38411 + - uid: 40197 components: - type: Transform pos: 0.5,27.5 - parent: 38584 - - uid: 40371 + parent: 38411 + - uid: 40198 components: - type: Transform pos: 2.5,28.5 - parent: 38584 - - uid: 40372 + parent: 38411 + - uid: 40199 components: - type: Transform pos: 4.5,33.5 - parent: 38584 - - uid: 40373 + parent: 38411 + - uid: 40200 components: - type: Transform pos: 5.5,26.5 - parent: 38584 - - uid: 40374 + parent: 38411 + - uid: 40201 components: - type: Transform pos: 4.5,21.5 - parent: 38584 - - uid: 40375 + parent: 38411 + - uid: 40202 components: - type: Transform pos: 5.5,41.5 - parent: 38584 - - uid: 40376 + parent: 38411 + - uid: 40203 components: - type: Transform pos: 11.5,35.5 - parent: 38584 - - uid: 40377 + parent: 38411 + - uid: 40204 components: - type: Transform pos: 5.5,39.5 - parent: 38584 - - uid: 40378 + parent: 38411 + - uid: 40205 components: - type: Transform pos: 3.5,42.5 - parent: 38584 - - uid: 40379 + parent: 38411 + - uid: 40206 components: - type: Transform pos: 3.5,41.5 - parent: 38584 - - uid: 40380 + parent: 38411 + - uid: 40207 components: - type: Transform pos: 5.5,36.5 - parent: 38584 - - uid: 40381 + parent: 38411 + - uid: 40208 components: - type: Transform pos: 5.5,35.5 - parent: 38584 - - uid: 40382 + parent: 38411 + - uid: 40209 components: - type: Transform pos: 6.5,36.5 - parent: 38584 - - uid: 40383 + parent: 38411 + - uid: 40210 components: - type: Transform pos: 6.5,35.5 - parent: 38584 - - uid: 40384 + parent: 38411 + - uid: 40211 components: - type: Transform pos: 3.5,37.5 - parent: 38584 - - uid: 40385 + parent: 38411 + - uid: 40212 components: - type: Transform pos: 9.5,35.5 - parent: 38584 - - uid: 40386 + parent: 38411 + - uid: 40213 components: - type: Transform pos: 7.5,34.5 - parent: 38584 - - uid: 40387 + parent: 38411 + - uid: 40214 components: - type: Transform pos: 7.5,37.5 - parent: 38584 - - uid: 40388 + parent: 38411 + - uid: 40215 components: - type: Transform pos: 3.5,24.5 - parent: 38584 - - uid: 40389 + parent: 38411 + - uid: 40216 components: - type: Transform pos: 3.5,28.5 - parent: 38584 - - uid: 40390 + parent: 38411 + - uid: 40217 components: - type: Transform pos: 7.5,33.5 - parent: 38584 - - uid: 40391 + parent: 38411 + - uid: 40218 components: - type: Transform pos: 1.5,26.5 - parent: 38584 - - uid: 40392 + parent: 38411 + - uid: 40219 components: - type: Transform pos: 8.5,36.5 - parent: 38584 - - uid: 40393 + parent: 38411 + - uid: 40220 components: - type: Transform pos: 1.5,29.5 - parent: 38584 - - uid: 40394 + parent: 38411 + - uid: 40221 components: - type: Transform pos: 8.5,34.5 - parent: 38584 - - uid: 40395 + parent: 38411 + - uid: 40222 components: - type: Transform pos: 12.5,36.5 - parent: 38584 - - uid: 40396 + parent: 38411 + - uid: 40223 components: - type: Transform pos: 3.5,26.5 - parent: 38584 - - uid: 40397 + parent: 38411 + - uid: 40224 components: - type: Transform pos: 2.5,27.5 - parent: 38584 - - uid: 40398 + parent: 38411 + - uid: 40225 components: - type: Transform pos: 4.5,27.5 - parent: 38584 - - uid: 40399 + parent: 38411 + - uid: 40226 components: - type: Transform pos: 1.5,34.5 - parent: 38584 - - uid: 40400 + parent: 38411 + - uid: 40227 components: - type: Transform pos: 14.5,34.5 - parent: 38584 - - uid: 40401 + parent: 38411 + - uid: 40228 components: - type: Transform pos: -8.5,28.5 - parent: 38584 - - uid: 40402 + parent: 38411 + - uid: 40229 components: - type: Transform pos: 11.5,34.5 - parent: 38584 - - uid: 40403 + parent: 38411 + - uid: 40230 components: - type: Transform pos: -16.5,26.5 - parent: 38584 - - uid: 40404 + parent: 38411 + - uid: 40231 components: - type: Transform pos: -2.5,34.5 - parent: 38584 - - uid: 40405 + parent: 38411 + - uid: 40232 components: - type: Transform pos: 2.5,39.5 - parent: 38584 - - uid: 40406 + parent: 38411 + - uid: 40233 components: - type: Transform pos: 9.5,32.5 - parent: 38584 - - uid: 40407 + parent: 38411 + - uid: 40234 components: - type: Transform pos: 9.5,34.5 - parent: 38584 - - uid: 40408 + parent: 38411 + - uid: 40235 components: - type: Transform pos: 10.5,34.5 - parent: 38584 - - uid: 40409 + parent: 38411 + - uid: 40236 components: - type: Transform pos: 9.5,37.5 - parent: 38584 - - uid: 40410 + parent: 38411 + - uid: 40237 components: - type: Transform pos: 12.5,34.5 - parent: 38584 - - uid: 40411 + parent: 38411 + - uid: 40238 components: - type: Transform pos: 13.5,35.5 - parent: 38584 - - uid: 40412 + parent: 38411 + - uid: 40239 components: - type: Transform pos: 9.5,33.5 - parent: 38584 - - uid: 40413 + parent: 38411 + - uid: 40240 components: - type: Transform pos: 13.5,34.5 - parent: 38584 - - uid: 40414 + parent: 38411 + - uid: 40241 components: - type: Transform pos: 15.5,34.5 - parent: 38584 - - uid: 40415 + parent: 38411 + - uid: 40242 components: - type: Transform pos: 9.5,31.5 - parent: 38584 - - uid: 40416 + parent: 38411 + - uid: 40243 components: - type: Transform pos: -13.5,30.5 - parent: 38584 - - uid: 40417 + parent: 38411 + - uid: 40244 components: - type: Transform pos: -9.5,31.5 - parent: 38584 - - uid: 40418 + parent: 38411 + - uid: 40245 components: - type: Transform pos: -18.5,27.5 - parent: 38584 - - uid: 40419 + parent: 38411 + - uid: 40246 components: - type: Transform pos: -15.5,27.5 - parent: 38584 - - uid: 40420 + parent: 38411 + - uid: 40247 components: - type: Transform pos: -10.5,30.5 - parent: 38584 - - uid: 40421 + parent: 38411 + - uid: 40248 components: - type: Transform pos: -18.5,39.5 - parent: 38584 - - uid: 40422 + parent: 38411 + - uid: 40249 components: - type: Transform pos: -23.5,37.5 - parent: 38584 - - uid: 40423 + parent: 38411 + - uid: 40250 components: - type: Transform pos: -21.5,38.5 - parent: 38584 - - uid: 40424 + parent: 38411 + - uid: 40251 components: - type: Transform pos: -16.5,39.5 - parent: 38584 - - uid: 40425 + parent: 38411 + - uid: 40252 components: - type: Transform pos: -23.5,39.5 - parent: 38584 - - uid: 40426 + parent: 38411 + - uid: 40253 components: - type: Transform pos: -23.5,36.5 - parent: 38584 - - uid: 40427 + parent: 38411 + - uid: 40254 components: - type: Transform pos: -17.5,21.5 - parent: 38584 - - uid: 40428 + parent: 38411 + - uid: 40255 components: - type: Transform pos: 15.5,27.5 - parent: 38584 - - uid: 40429 + parent: 38411 + - uid: 40256 components: - type: Transform pos: -10.5,18.5 - parent: 38584 - - uid: 40430 + parent: 38411 + - uid: 40257 components: - type: Transform pos: -11.5,16.5 - parent: 38584 - - uid: 40431 + parent: 38411 + - uid: 40258 components: - type: Transform pos: -10.5,17.5 - parent: 38584 - - uid: 40432 + parent: 38411 + - uid: 40259 components: - type: Transform pos: -11.5,15.5 - parent: 38584 - - uid: 40433 + parent: 38411 + - uid: 40260 components: - type: Transform pos: -12.5,19.5 - parent: 38584 - - uid: 40434 + parent: 38411 + - uid: 40261 components: - type: Transform pos: -12.5,15.5 - parent: 38584 - - uid: 40435 + parent: 38411 + - uid: 40262 components: - type: Transform pos: -11.5,17.5 - parent: 38584 - - uid: 40436 + parent: 38411 + - uid: 40263 components: - type: Transform pos: -12.5,18.5 - parent: 38584 - - uid: 40437 + parent: 38411 + - uid: 40264 components: - type: Transform pos: -13.5,18.5 - parent: 38584 - - uid: 40438 + parent: 38411 + - uid: 40265 components: - type: Transform pos: -12.5,16.5 - parent: 38584 - - uid: 40439 + parent: 38411 + - uid: 40266 components: - type: Transform pos: -9.5,17.5 - parent: 38584 - - uid: 40440 + parent: 38411 + - uid: 40267 components: - type: Transform pos: -13.5,19.5 - parent: 38584 - - uid: 40441 + parent: 38411 + - uid: 40268 components: - type: Transform pos: -11.5,24.5 - parent: 38584 - - uid: 40442 + parent: 38411 + - uid: 40269 components: - type: Transform pos: -10.5,21.5 - parent: 38584 - - uid: 40443 + parent: 38411 + - uid: 40270 components: - type: Transform pos: -12.5,22.5 - parent: 38584 - - uid: 40444 + parent: 38411 + - uid: 40271 components: - type: Transform pos: -13.5,21.5 - parent: 38584 - - uid: 40445 + parent: 38411 + - uid: 40272 components: - type: Transform pos: 15.5,28.5 - parent: 38584 - - uid: 40446 + parent: 38411 + - uid: 40273 components: - type: Transform pos: 11.5,27.5 - parent: 38584 - - uid: 40447 + parent: 38411 + - uid: 40274 components: - type: Transform pos: -13.5,20.5 - parent: 38584 - - uid: 40448 + parent: 38411 + - uid: 40275 components: - type: Transform pos: 14.5,29.5 - parent: 38584 - - uid: 40449 + parent: 38411 + - uid: 40276 components: - type: Transform pos: 14.5,30.5 - parent: 38584 - - uid: 40450 + parent: 38411 + - uid: 40277 components: - type: Transform pos: 11.5,29.5 - parent: 38584 - - uid: 40451 + parent: 38411 + - uid: 40278 components: - type: Transform pos: 10.5,30.5 - parent: 38584 - - uid: 40452 + parent: 38411 + - uid: 40279 components: - type: Transform pos: -13.5,25.5 - parent: 38584 - - uid: 40453 + parent: 38411 + - uid: 40280 components: - type: Transform pos: 14.5,28.5 - parent: 38584 - - uid: 40454 + parent: 38411 + - uid: 40281 components: - type: Transform pos: 13.5,29.5 - parent: 38584 - - uid: 40455 + parent: 38411 + - uid: 40282 components: - type: Transform pos: 13.5,28.5 - parent: 38584 - - uid: 40456 + parent: 38411 + - uid: 40283 components: - type: Transform pos: -15.5,24.5 - parent: 38584 - - uid: 40457 + parent: 38411 + - uid: 40284 components: - type: Transform pos: -15.5,23.5 - parent: 38584 - - uid: 40458 + parent: 38411 + - uid: 40285 components: - type: Transform pos: 12.5,28.5 - parent: 38584 - - uid: 40459 + parent: 38411 + - uid: 40286 components: - type: Transform pos: 12.5,29.5 - parent: 38584 - - uid: 40460 + parent: 38411 + - uid: 40287 components: - type: Transform pos: 11.5,28.5 - parent: 38584 - - uid: 40461 + parent: 38411 + - uid: 40288 components: - type: Transform pos: 20.5,28.5 - parent: 38584 - - uid: 40462 + parent: 38411 + - uid: 40289 components: - type: Transform pos: 19.5,29.5 - parent: 38584 - - uid: 40463 + parent: 38411 + - uid: 40290 components: - type: Transform pos: -10.5,31.5 - parent: 38584 - - uid: 40464 + parent: 38411 + - uid: 40291 components: - type: Transform pos: 19.5,27.5 - parent: 38584 - - uid: 40465 + parent: 38411 + - uid: 40292 components: - type: Transform pos: 20.5,26.5 - parent: 38584 - - uid: 40466 + parent: 38411 + - uid: 40293 components: - type: Transform pos: 3.5,17.5 - parent: 38584 - - uid: 40467 + parent: 38411 + - uid: 40294 components: - type: Transform pos: 4.5,13.5 - parent: 38584 - - uid: 40468 + parent: 38411 + - uid: 40295 components: - type: Transform pos: 2.5,16.5 - parent: 38584 - - uid: 40469 + parent: 38411 + - uid: 40296 components: - type: Transform pos: 3.5,15.5 - parent: 38584 - - uid: 40470 + parent: 38411 + - uid: 40297 components: - type: Transform pos: 2.5,15.5 - parent: 38584 - - uid: 40471 + parent: 38411 + - uid: 40298 components: - type: Transform pos: 2.5,13.5 - parent: 38584 - - uid: 40472 + parent: 38411 + - uid: 40299 components: - type: Transform pos: 2.5,14.5 - parent: 38584 - - uid: 40473 + parent: 38411 + - uid: 40300 components: - type: Transform pos: 3.5,14.5 - parent: 38584 - - uid: 40474 + parent: 38411 + - uid: 40301 components: - type: Transform pos: 2.5,12.5 - parent: 38584 - - uid: 40475 + parent: 38411 + - uid: 40302 components: - type: Transform pos: 15.5,31.5 - parent: 38584 - - uid: 40476 + parent: 38411 + - uid: 40303 components: - type: Transform pos: 12.5,30.5 - parent: 38584 - - uid: 40477 + parent: 38411 + - uid: 40304 components: - type: Transform pos: -15.5,15.5 - parent: 38584 - - uid: 40478 + parent: 38411 + - uid: 40305 components: - type: Transform pos: -15.5,14.5 - parent: 38584 - - uid: 40479 + parent: 38411 + - uid: 40306 components: - type: Transform pos: -26.5,10.5 - parent: 38584 - - uid: 40480 + parent: 38411 + - uid: 40307 components: - type: Transform pos: -14.5,15.5 - parent: 38584 - - uid: 40481 + parent: 38411 + - uid: 40308 components: - type: Transform pos: -27.5,9.5 - parent: 38584 - - uid: 40482 + parent: 38411 + - uid: 40309 components: - type: Transform pos: -21.5,12.5 - parent: 38584 - - uid: 40483 + parent: 38411 + - uid: 40310 components: - type: Transform pos: -14.5,17.5 - parent: 38584 - - uid: 40484 + parent: 38411 + - uid: 40311 components: - type: Transform pos: -16.5,14.5 - parent: 38584 - - uid: 40485 + parent: 38411 + - uid: 40312 components: - type: Transform pos: -16.5,13.5 - parent: 38584 - - uid: 40486 + parent: 38411 + - uid: 40313 components: - type: Transform pos: -15.5,17.5 - parent: 38584 - - uid: 40487 + parent: 38411 + - uid: 40314 components: - type: Transform pos: -25.5,10.5 - parent: 38584 - - uid: 40488 + parent: 38411 + - uid: 40315 components: - type: Transform pos: -27.5,10.5 - parent: 38584 - - uid: 40489 + parent: 38411 + - uid: 40316 components: - type: Transform pos: -25.5,8.5 - parent: 38584 - - uid: 40490 + parent: 38411 + - uid: 40317 components: - type: Transform pos: -24.5,10.5 - parent: 38584 - - uid: 40491 + parent: 38411 + - uid: 40318 components: - type: Transform pos: -25.5,7.5 - parent: 38584 - - uid: 40492 + parent: 38411 + - uid: 40319 components: - type: Transform pos: -14.5,38.5 - parent: 38584 - - uid: 40493 + parent: 38411 + - uid: 40320 components: - type: Transform pos: -4.5,34.5 - parent: 38584 - - uid: 40494 + parent: 38411 + - uid: 40321 components: - type: Transform pos: -12.5,39.5 - parent: 38584 - - uid: 40495 + parent: 38411 + - uid: 40322 components: - type: Transform pos: -4.5,35.5 - parent: 38584 - - uid: 40496 + parent: 38411 + - uid: 40323 components: - type: Transform pos: -7.5,34.5 - parent: 38584 - - uid: 40497 + parent: 38411 + - uid: 40324 components: - type: Transform pos: -6.5,33.5 - parent: 38584 - - uid: 40498 + parent: 38411 + - uid: 40325 components: - type: Transform pos: -28.5,27.5 - parent: 38584 - - uid: 40499 + parent: 38411 + - uid: 40326 components: - type: Transform pos: -29.5,27.5 - parent: 38584 - - uid: 40500 + parent: 38411 + - uid: 40327 components: - type: Transform pos: -27.5,27.5 - parent: 38584 - - uid: 40501 + parent: 38411 + - uid: 40328 components: - type: Transform pos: -6.5,32.5 - parent: 38584 - - uid: 40502 + parent: 38411 + - uid: 40329 components: - type: Transform pos: -10.5,32.5 - parent: 38584 - - uid: 40503 + parent: 38411 + - uid: 40330 components: - type: Transform pos: -1.5,33.5 - parent: 38584 - - uid: 40504 + parent: 38411 + - uid: 40331 components: - type: Transform pos: -9.5,28.5 - parent: 38584 - - uid: 40505 + parent: 38411 + - uid: 40332 components: - type: Transform pos: -2.5,32.5 - parent: 38584 - - uid: 40506 + parent: 38411 + - uid: 40333 components: - type: Transform pos: -0.5,32.5 - parent: 38584 - - uid: 40507 + parent: 38411 + - uid: 40334 components: - type: Transform pos: -0.5,33.5 - parent: 38584 - - uid: 40508 + parent: 38411 + - uid: 40335 components: - type: Transform pos: -11.5,32.5 - parent: 38584 - - uid: 40509 + parent: 38411 + - uid: 40336 components: - type: Transform pos: -12.5,33.5 - parent: 38584 - - uid: 40510 + parent: 38411 + - uid: 40337 components: - type: Transform pos: -17.5,27.5 - parent: 38584 - - uid: 40511 + parent: 38411 + - uid: 40338 components: - type: Transform pos: -16.5,27.5 - parent: 38584 - - uid: 40512 + parent: 38411 + - uid: 40339 components: - type: Transform pos: -24.5,6.5 - parent: 38584 - - uid: 40513 + parent: 38411 + - uid: 40340 components: - type: Transform pos: -25.5,4.5 - parent: 38584 - - uid: 40514 + parent: 38411 + - uid: 40341 components: - type: Transform pos: -24.5,4.5 - parent: 38584 - - uid: 40515 + parent: 38411 + - uid: 40342 components: - type: Transform pos: 16.5,30.5 - parent: 38584 - - uid: 40516 + parent: 38411 + - uid: 40343 components: - type: Transform pos: -14.5,16.5 - parent: 38584 - - uid: 40517 + parent: 38411 + - uid: 40344 components: - type: Transform pos: -18.5,22.5 - parent: 38584 - - uid: 40518 + parent: 38411 + - uid: 40345 components: - type: Transform pos: 18.5,28.5 - parent: 38584 - - uid: 40519 + parent: 38411 + - uid: 40346 components: - type: Transform pos: 17.5,28.5 - parent: 38584 - - uid: 40520 + parent: 38411 + - uid: 40347 components: - type: Transform pos: 17.5,29.5 - parent: 38584 - - uid: 40521 + parent: 38411 + - uid: 40348 components: - type: Transform pos: 16.5,29.5 - parent: 38584 - - uid: 40522 + parent: 38411 + - uid: 40349 components: - type: Transform pos: 15.5,30.5 - parent: 38584 - - uid: 40523 + parent: 38411 + - uid: 40350 components: - type: Transform pos: -24.5,9.5 - parent: 38584 - - uid: 40524 + parent: 38411 + - uid: 40351 components: - type: Transform pos: 16.5,28.5 - parent: 38584 - - uid: 40525 + parent: 38411 + - uid: 40352 components: - type: Transform pos: 15.5,29.5 - parent: 38584 - - uid: 40526 + parent: 38411 + - uid: 40353 components: - type: Transform pos: -15.5,16.5 - parent: 38584 - - uid: 40527 + parent: 38411 + - uid: 40354 components: - type: Transform pos: -27.5,8.5 - parent: 38584 - - uid: 40528 + parent: 38411 + - uid: 40355 components: - type: Transform pos: -26.5,9.5 - parent: 38584 - - uid: 40529 + parent: 38411 + - uid: 40356 components: - type: Transform pos: -26.5,8.5 - parent: 38584 - - uid: 40530 + parent: 38411 + - uid: 40357 components: - type: Transform pos: -25.5,3.5 - parent: 38584 - - uid: 40531 + parent: 38411 + - uid: 40358 components: - type: Transform pos: -24.5,3.5 - parent: 38584 - - uid: 40532 + parent: 38411 + - uid: 40359 components: - type: Transform pos: -24.5,5.5 - parent: 38584 - - uid: 40533 + parent: 38411 + - uid: 40360 components: - type: Transform pos: -19.5,20.5 - parent: 38584 - - uid: 40534 + parent: 38411 + - uid: 40361 components: - type: Transform pos: -14.5,24.5 - parent: 38584 - - uid: 40535 + parent: 38411 + - uid: 40362 components: - type: Transform pos: -14.5,22.5 - parent: 38584 - - uid: 40536 + parent: 38411 + - uid: 40363 components: - type: Transform pos: -16.5,20.5 - parent: 38584 - - uid: 40537 + parent: 38411 + - uid: 40364 components: - type: Transform pos: -15.5,19.5 - parent: 38584 - - uid: 40538 + parent: 38411 + - uid: 40365 components: - type: Transform pos: -15.5,18.5 - parent: 38584 - - uid: 40539 + parent: 38411 + - uid: 40366 components: - type: Transform pos: -14.5,23.5 - parent: 38584 - - uid: 40540 + parent: 38411 + - uid: 40367 components: - type: Transform pos: -15.5,20.5 - parent: 38584 - - uid: 40541 + parent: 38411 + - uid: 40368 components: - type: Transform pos: -16.5,21.5 - parent: 38584 - - uid: 40542 + parent: 38411 + - uid: 40369 components: - type: Transform pos: -14.5,19.5 - parent: 38584 - - uid: 40543 + parent: 38411 + - uid: 40370 components: - type: Transform pos: -16.5,18.5 - parent: 38584 - - uid: 40544 + parent: 38411 + - uid: 40371 components: - type: Transform pos: -16.5,22.5 - parent: 38584 - - uid: 40545 + parent: 38411 + - uid: 40372 components: - type: Transform pos: -14.5,18.5 - parent: 38584 - - uid: 40546 + parent: 38411 + - uid: 40373 components: - type: Transform pos: 16.5,32.5 - parent: 38584 - - uid: 40547 + parent: 38411 + - uid: 40374 components: - type: Transform pos: 16.5,33.5 - parent: 38584 - - uid: 40548 + parent: 38411 + - uid: 40375 components: - type: Transform pos: 17.5,33.5 - parent: 38584 - - uid: 40549 + parent: 38411 + - uid: 40376 components: - type: Transform pos: 16.5,31.5 - parent: 38584 - - uid: 40550 + parent: 38411 + - uid: 40377 components: - type: Transform pos: 17.5,32.5 - parent: 38584 - - uid: 40551 + parent: 38411 + - uid: 40378 components: - type: Transform pos: -13.5,15.5 - parent: 38584 - - uid: 40552 + parent: 38411 + - uid: 40379 components: - type: Transform pos: -12.5,24.5 - parent: 38584 - - uid: 40553 + parent: 38411 + - uid: 40380 components: - type: Transform pos: -11.5,18.5 - parent: 38584 - - uid: 40554 + parent: 38411 + - uid: 40381 components: - type: Transform pos: -12.5,23.5 - parent: 38584 - - uid: 40555 + parent: 38411 + - uid: 40382 components: - type: Transform pos: -10.5,19.5 - parent: 38584 - - uid: 40556 + parent: 38411 + - uid: 40383 components: - type: Transform pos: -8.5,20.5 - parent: 38584 - - uid: 40557 + parent: 38411 + - uid: 40384 components: - type: Transform pos: -9.5,20.5 - parent: 38584 - - uid: 40558 + parent: 38411 + - uid: 40385 components: - type: Transform pos: -10.5,20.5 - parent: 38584 - - uid: 40559 + parent: 38411 + - uid: 40386 components: - type: Transform pos: -13.5,23.5 - parent: 38584 - - uid: 40560 + parent: 38411 + - uid: 40387 components: - type: Transform pos: -13.5,22.5 - parent: 38584 - - uid: 40561 + parent: 38411 + - uid: 40388 components: - type: Transform pos: -11.5,23.5 - parent: 38584 - - uid: 40562 + parent: 38411 + - uid: 40389 components: - type: Transform pos: -11.5,20.5 - parent: 38584 - - uid: 40563 + parent: 38411 + - uid: 40390 components: - type: Transform pos: 4.5,14.5 - parent: 38584 - - uid: 40564 + parent: 38411 + - uid: 40391 components: - type: Transform pos: 4.5,11.5 - parent: 38584 - - uid: 40565 + parent: 38411 + - uid: 40392 components: - type: Transform pos: 3.5,11.5 - parent: 38584 - - uid: 40566 + parent: 38411 + - uid: 40393 components: - type: Transform pos: 3.5,12.5 - parent: 38584 - - uid: 40567 + parent: 38411 + - uid: 40394 components: - type: Transform pos: 4.5,12.5 - parent: 38584 - - uid: 40568 + parent: 38411 + - uid: 40395 components: - type: Transform pos: 4.5,9.5 - parent: 38584 - - uid: 40569 + parent: 38411 + - uid: 40396 components: - type: Transform pos: 3.5,16.5 - parent: 38584 - - uid: 40570 + parent: 38411 + - uid: 40397 components: - type: Transform pos: 0.5,24.5 - parent: 38584 - - uid: 40571 + parent: 38411 + - uid: 40398 components: - type: Transform pos: 1.5,23.5 - parent: 38584 - - uid: 40572 + parent: 38411 + - uid: 40399 components: - type: Transform pos: -21.5,21.5 - parent: 38584 - - uid: 40573 + parent: 38411 + - uid: 40400 components: - type: Transform pos: -21.5,20.5 - parent: 38584 - - uid: 40574 + parent: 38411 + - uid: 40401 components: - type: Transform pos: 7.5,25.5 - parent: 38584 - - uid: 40575 + parent: 38411 + - uid: 40402 components: - type: Transform pos: 11.5,13.5 - parent: 38584 - - uid: 40576 + parent: 38411 + - uid: 40403 components: - type: Transform pos: 16.5,27.5 - parent: 38584 - - uid: 40577 + parent: 38411 + - uid: 40404 components: - type: Transform pos: 7.5,26.5 - parent: 38584 - - uid: 40578 + parent: 38411 + - uid: 40405 components: - type: Transform pos: 17.5,14.5 - parent: 38584 - - uid: 40579 + parent: 38411 + - uid: 40406 components: - type: Transform pos: -21.5,22.5 - parent: 38584 - - uid: 40580 + parent: 38411 + - uid: 40407 components: - type: Transform pos: -15.5,12.5 - parent: 38584 - - uid: 40581 + parent: 38411 + - uid: 40408 components: - type: Transform pos: -25.5,9.5 - parent: 38584 - - uid: 40582 + parent: 38411 + - uid: 40409 components: - type: Transform pos: 11.5,30.5 - parent: 38584 - - uid: 40583 + parent: 38411 + - uid: 40410 components: - type: Transform pos: -21.5,19.5 - parent: 38584 - - uid: 40584 + parent: 38411 + - uid: 40411 components: - type: Transform pos: -19.5,21.5 - parent: 38584 - - uid: 40585 + parent: 38411 + - uid: 40412 components: - type: Transform pos: -20.5,21.5 - parent: 38584 - - uid: 40586 + parent: 38411 + - uid: 40413 components: - type: Transform pos: -20.5,20.5 - parent: 38584 - - uid: 40587 + parent: 38411 + - uid: 40414 components: - type: Transform pos: -27.5,26.5 - parent: 38584 - - uid: 40588 + parent: 38411 + - uid: 40415 components: - type: Transform pos: 19.5,28.5 - parent: 38584 - - uid: 40589 + parent: 38411 + - uid: 40416 components: - type: Transform pos: 1.5,12.5 - parent: 38584 - - uid: 40590 + parent: 38411 + - uid: 40417 components: - type: Transform pos: -29.5,28.5 - parent: 38584 - - uid: 40591 + parent: 38411 + - uid: 40418 components: - type: Transform pos: -30.5,29.5 - parent: 38584 - - uid: 40592 + parent: 38411 + - uid: 40419 components: - type: Transform pos: 12.5,27.5 - parent: 38584 - - uid: 40593 + parent: 38411 + - uid: 40420 components: - type: Transform pos: 14.5,27.5 - parent: 38584 - - uid: 40594 + parent: 38411 + - uid: 40421 components: - type: Transform pos: -16.5,17.5 - parent: 38584 - - uid: 40595 + parent: 38411 + - uid: 40422 components: - type: Transform pos: -16.5,15.5 - parent: 38584 - - uid: 40596 + parent: 38411 + - uid: 40423 components: - type: Transform pos: -24.5,2.5 - parent: 38584 - - uid: 40597 + parent: 38411 + - uid: 40424 components: - type: Transform pos: -27.5,33.5 - parent: 38584 - - uid: 40598 + parent: 38411 + - uid: 40425 components: - type: Transform pos: 13.5,27.5 - parent: 38584 - - uid: 40599 + parent: 38411 + - uid: 40426 components: - type: Transform pos: -13.5,31.5 - parent: 38584 - - uid: 40600 + parent: 38411 + - uid: 40427 components: - type: Transform pos: -7.5,33.5 - parent: 38584 - - uid: 40601 + parent: 38411 + - uid: 40428 components: - type: Transform pos: -26.5,26.5 - parent: 38584 - - uid: 40602 + parent: 38411 + - uid: 40429 components: - type: Transform pos: -14.5,29.5 - parent: 38584 - - uid: 40603 + parent: 38411 + - uid: 40430 components: - type: Transform pos: 3.5,10.5 - parent: 38584 - - uid: 40604 + parent: 38411 + - uid: 40431 components: - type: Transform pos: 13.5,33.5 - parent: 38584 - - uid: 40605 + parent: 38411 + - uid: 40432 components: - type: Transform pos: 12.5,32.5 - parent: 38584 - - uid: 40606 + parent: 38411 + - uid: 40433 components: - type: Transform pos: 20.5,27.5 - parent: 38584 - - uid: 40607 + parent: 38411 + - uid: 40434 components: - type: Transform pos: 14.5,33.5 - parent: 38584 - - uid: 40608 + parent: 38411 + - uid: 40435 components: - type: Transform pos: 12.5,33.5 - parent: 38584 - - uid: 40609 + parent: 38411 + - uid: 40436 components: - type: Transform pos: -26.5,11.5 - parent: 38584 - - uid: 40610 + parent: 38411 + - uid: 40437 components: - type: Transform pos: -1.5,31.5 - parent: 38584 - - uid: 40611 + parent: 38411 + - uid: 40438 components: - type: Transform pos: -27.5,32.5 - parent: 38584 - - uid: 40612 + parent: 38411 + - uid: 40439 components: - type: Transform pos: 0.5,12.5 - parent: 38584 - - uid: 40613 + parent: 38411 + - uid: 40440 components: - type: Transform pos: 0.5,11.5 - parent: 38584 - - uid: 40614 + parent: 38411 + - uid: 40441 components: - type: Transform pos: 6.5,27.5 - parent: 38584 - - uid: 40615 + parent: 38411 + - uid: 40442 components: - type: Transform pos: 7.5,29.5 - parent: 38584 - - uid: 40616 + parent: 38411 + - uid: 40443 components: - type: Transform pos: 7.5,27.5 - parent: 38584 - - uid: 40617 + parent: 38411 + - uid: 40444 components: - type: Transform pos: 8.5,29.5 - parent: 38584 - - uid: 40618 + parent: 38411 + - uid: 40445 components: - type: Transform pos: 8.5,27.5 - parent: 38584 - - uid: 40619 + parent: 38411 + - uid: 40446 components: - type: Transform pos: 8.5,26.5 - parent: 38584 - - uid: 40620 + parent: 38411 + - uid: 40447 components: - type: Transform pos: 8.5,25.5 - parent: 38584 - - uid: 40621 + parent: 38411 + - uid: 40448 components: - type: Transform pos: 9.5,26.5 - parent: 38584 - - uid: 40622 + parent: 38411 + - uid: 40449 components: - type: Transform pos: 9.5,25.5 - parent: 38584 - - uid: 40623 + parent: 38411 + - uid: 40450 components: - type: Transform pos: 6.5,25.5 - parent: 38584 - - uid: 40624 + parent: 38411 + - uid: 40451 components: - type: Transform pos: 6.5,24.5 - parent: 38584 - - uid: 40625 + parent: 38411 + - uid: 40452 components: - type: Transform pos: 9.5,27.5 - parent: 38584 - - uid: 40626 + parent: 38411 + - uid: 40453 components: - type: Transform pos: 9.5,28.5 - parent: 38584 - - uid: 40627 + parent: 38411 + - uid: 40454 components: - type: Transform pos: 9.5,29.5 - parent: 38584 - - uid: 40628 + parent: 38411 + - uid: 40455 components: - type: Transform pos: 9.5,30.5 - parent: 38584 - - uid: 40629 + parent: 38411 + - uid: 40456 components: - type: Transform pos: 7.5,30.5 - parent: 38584 - - uid: 40630 + parent: 38411 + - uid: 40457 components: - type: Transform pos: 8.5,30.5 - parent: 38584 - - uid: 40631 + parent: 38411 + - uid: 40458 components: - type: Transform pos: 8.5,31.5 - parent: 38584 - - uid: 40632 + parent: 38411 + - uid: 40459 components: - type: Transform pos: 8.5,32.5 - parent: 38584 - - uid: 40633 + parent: 38411 + - uid: 40460 components: - type: Transform pos: 8.5,33.5 - parent: 38584 - - uid: 40634 + parent: 38411 + - uid: 40461 components: - type: Transform pos: 10.5,29.5 - parent: 38584 - - uid: 40635 + parent: 38411 + - uid: 40462 components: - type: Transform pos: 10.5,28.5 - parent: 38584 - - uid: 40636 + parent: 38411 + - uid: 40463 components: - type: Transform pos: 4.5,28.5 - parent: 38584 - - uid: 40637 + parent: 38411 + - uid: 40464 components: - type: Transform pos: 4.5,29.5 - parent: 38584 - - uid: 40638 + parent: 38411 + - uid: 40465 components: - type: Transform pos: 4.5,30.5 - parent: 38584 - - uid: 40639 + parent: 38411 + - uid: 40466 components: - type: Transform pos: 4.5,31.5 - parent: 38584 - - uid: 40640 + parent: 38411 + - uid: 40467 components: - type: Transform pos: 3.5,29.5 - parent: 38584 - - uid: 40641 + parent: 38411 + - uid: 40468 components: - type: Transform pos: 2.5,29.5 - parent: 38584 - - uid: 40642 + parent: 38411 + - uid: 40469 components: - type: Transform pos: 3.5,30.5 - parent: 38584 - - uid: 40643 + parent: 38411 + - uid: 40470 components: - type: Transform pos: 3.5,31.5 - parent: 38584 - - uid: 40644 + parent: 38411 + - uid: 40471 components: - type: Transform pos: 3.5,32.5 - parent: 38584 - - uid: 40645 + parent: 38411 + - uid: 40472 components: - type: Transform pos: 2.5,31.5 - parent: 38584 - - uid: 40646 + parent: 38411 + - uid: 40473 components: - type: Transform pos: 2.5,32.5 - parent: 38584 + parent: 38411 - proto: WallRockArtifactFragment entities: - - uid: 35903 + - uid: 35747 components: - type: Transform pos: -109.5,37.5 parent: 2 - - uid: 35904 + - uid: 35748 components: - type: Transform pos: 46.5,-74.5 parent: 2 - - uid: 35905 + - uid: 35749 components: - type: Transform pos: -32.5,-82.5 parent: 2 - - uid: 35906 + - uid: 35750 components: - type: Transform pos: -31.5,-81.5 parent: 2 - - uid: 35907 + - uid: 35751 components: - type: Transform pos: 22.5,74.5 parent: 2 - - uid: 35908 + - uid: 35752 components: - type: Transform pos: -69.5,60.5 parent: 2 - - uid: 35909 + - uid: 35753 components: - type: Transform pos: -110.5,26.5 parent: 2 - - uid: 35910 + - uid: 35754 components: - type: Transform pos: -63.5,-10.5 parent: 2 - - uid: 40647 + - uid: 40474 components: - type: Transform pos: 5.5,15.5 - parent: 38584 - - uid: 40648 + parent: 38411 + - uid: 40475 components: - type: Transform pos: 4.5,16.5 - parent: 38584 - - uid: 40649 + parent: 38411 + - uid: 40476 components: - type: Transform pos: 5.5,16.5 - parent: 38584 - - uid: 40650 + parent: 38411 + - uid: 40477 components: - type: Transform pos: -25.5,20.5 - parent: 38584 - - uid: 40651 + parent: 38411 + - uid: 40478 components: - type: Transform pos: -27.5,11.5 - parent: 38584 - - uid: 40652 + parent: 38411 + - uid: 40479 components: - type: Transform pos: 3.5,39.5 - parent: 38584 - - uid: 40653 + parent: 38411 + - uid: 40480 components: - type: Transform pos: 2.5,38.5 - parent: 38584 - - uid: 40654 + parent: 38411 + - uid: 40481 components: - type: Transform pos: -15.5,13.5 - parent: 38584 - - uid: 40655 + parent: 38411 + - uid: 40482 components: - type: Transform pos: -14.5,21.5 - parent: 38584 - - uid: 40656 + parent: 38411 + - uid: 40483 components: - type: Transform pos: -26.5,12.5 - parent: 38584 + parent: 38411 - proto: WallRockBananium entities: - - uid: 35911 + - uid: 35755 components: - type: Transform pos: -79.5,-24.5 parent: 2 - - uid: 35912 + - uid: 35756 components: - type: Transform pos: 58.5,-49.5 parent: 2 - - uid: 35913 + - uid: 35757 components: - type: Transform pos: -45.5,-61.5 parent: 2 - - uid: 35914 + - uid: 35758 components: - type: Transform pos: 32.5,16.5 parent: 2 - - uid: 35915 + - uid: 35759 components: - type: Transform pos: 37.5,15.5 parent: 2 - - uid: 35916 + - uid: 35760 components: - type: Transform pos: 49.5,-69.5 parent: 2 - - uid: 35917 + - uid: 35761 components: - type: Transform pos: 68.5,-36.5 parent: 2 - - uid: 35918 + - uid: 35762 components: - type: Transform pos: -42.5,-67.5 parent: 2 - - uid: 35919 + - uid: 35763 components: - type: Transform pos: -108.5,53.5 parent: 2 - - uid: 40657 + - uid: 40484 components: - type: Transform pos: 5.5,21.5 - parent: 38584 - - uid: 40658 + parent: 38411 + - uid: 40485 components: - type: Transform pos: 10.5,9.5 - parent: 38584 - - uid: 40659 + parent: 38411 + - uid: 40486 components: - type: Transform pos: 3.5,27.5 - parent: 38584 - - uid: 40660 + parent: 38411 + - uid: 40487 components: - type: Transform pos: 3.5,13.5 - parent: 38584 + parent: 38411 - proto: WallRockCoal entities: - - uid: 35920 + - uid: 35764 components: - type: Transform pos: 44.5,-72.5 parent: 2 - - uid: 35921 + - uid: 35765 components: - type: Transform pos: -127.5,34.5 parent: 2 - - uid: 35922 + - uid: 35766 components: - type: Transform pos: -37.5,-82.5 parent: 2 - - uid: 35923 + - uid: 35767 components: - type: Transform pos: -36.5,-82.5 parent: 2 - - uid: 35924 + - uid: 35768 components: - type: Transform pos: 15.5,83.5 parent: 2 - - uid: 35925 + - uid: 35769 components: - type: Transform pos: 14.5,84.5 parent: 2 - - uid: 35926 + - uid: 35770 components: - type: Transform pos: -44.5,-65.5 parent: 2 - - uid: 35927 + - uid: 35771 components: - type: Transform pos: -43.5,-61.5 parent: 2 - - uid: 35928 + - uid: 35772 components: - type: Transform pos: -128.5,32.5 parent: 2 - - uid: 35929 + - uid: 35773 components: - type: Transform pos: -73.5,-38.5 parent: 2 - - uid: 35930 + - uid: 35774 components: - type: Transform pos: -108.5,33.5 parent: 2 - - uid: 35931 + - uid: 35775 components: - type: Transform pos: -76.5,-15.5 parent: 2 - - uid: 35932 + - uid: 35776 components: - type: Transform pos: -75.5,-13.5 parent: 2 - - uid: 40661 + - uid: 40488 components: - type: Transform pos: 13.5,11.5 - parent: 38584 - - uid: 40662 + parent: 38411 + - uid: 40489 components: - type: Transform pos: -22.5,21.5 - parent: 38584 - - uid: 40663 + parent: 38411 + - uid: 40490 components: - type: Transform pos: 12.5,12.5 - parent: 38584 - - uid: 40664 + parent: 38411 + - uid: 40491 components: - type: Transform pos: 13.5,10.5 - parent: 38584 - - uid: 40665 + parent: 38411 + - uid: 40492 components: - type: Transform pos: 13.5,9.5 - parent: 38584 - - uid: 40666 + parent: 38411 + - uid: 40493 components: - type: Transform pos: 11.5,11.5 - parent: 38584 - - uid: 40667 + parent: 38411 + - uid: 40494 components: - type: Transform pos: 10.5,11.5 - parent: 38584 - - uid: 40668 + parent: 38411 + - uid: 40495 components: - type: Transform pos: 12.5,11.5 - parent: 38584 - - uid: 40669 + parent: 38411 + - uid: 40496 components: - type: Transform pos: 12.5,10.5 - parent: 38584 - - uid: 40670 + parent: 38411 + - uid: 40497 components: - type: Transform pos: -22.5,20.5 - parent: 38584 - - uid: 40671 + parent: 38411 + - uid: 40498 components: - type: Transform pos: -26.5,20.5 - parent: 38584 - - uid: 40672 + parent: 38411 + - uid: 40499 components: - type: Transform pos: -26.5,19.5 - parent: 38584 - - uid: 40673 + parent: 38411 + - uid: 40500 components: - type: Transform pos: -25.5,23.5 - parent: 38584 - - uid: 40674 + parent: 38411 + - uid: 40501 components: - type: Transform pos: -26.5,23.5 - parent: 38584 - - uid: 40675 + parent: 38411 + - uid: 40502 components: - type: Transform pos: -24.5,22.5 - parent: 38584 - - uid: 40676 + parent: 38411 + - uid: 40503 components: - type: Transform pos: -23.5,20.5 - parent: 38584 - - uid: 40677 + parent: 38411 + - uid: 40504 components: - type: Transform pos: -27.5,19.5 - parent: 38584 - - uid: 40678 + parent: 38411 + - uid: 40505 components: - type: Transform pos: -28.5,17.5 - parent: 38584 - - uid: 40679 + parent: 38411 + - uid: 40506 components: - type: Transform pos: -28.5,18.5 - parent: 38584 - - uid: 40680 + parent: 38411 + - uid: 40507 components: - type: Transform pos: -25.5,24.5 - parent: 38584 - - uid: 40681 + parent: 38411 + - uid: 40508 components: - type: Transform pos: -28.5,16.5 - parent: 38584 - - uid: 40682 + parent: 38411 + - uid: 40509 components: - type: Transform pos: -29.5,16.5 - parent: 38584 - - uid: 40683 + parent: 38411 + - uid: 40510 components: - type: Transform pos: -29.5,17.5 - parent: 38584 - - uid: 40684 + parent: 38411 + - uid: 40511 components: - type: Transform pos: -13.5,16.5 - parent: 38584 - - uid: 40685 + parent: 38411 + - uid: 40512 components: - type: Transform pos: -13.5,17.5 - parent: 38584 - - uid: 40686 + parent: 38411 + - uid: 40513 components: - type: Transform pos: -12.5,17.5 - parent: 38584 - - uid: 40687 + parent: 38411 + - uid: 40514 components: - type: Transform pos: -9.5,12.5 - parent: 38584 + parent: 38411 - proto: WallRockGold entities: - - uid: 35933 + - uid: 35777 components: - type: Transform pos: -76.5,-37.5 parent: 2 - - uid: 35934 + - uid: 35778 components: - type: Transform pos: 68.5,-38.5 parent: 2 - - uid: 35935 + - uid: 35779 components: - type: Transform pos: -74.5,63.5 parent: 2 - - uid: 35936 + - uid: 35780 components: - type: Transform pos: -119.5,53.5 parent: 2 - - uid: 40688 + - uid: 40515 components: - type: Transform pos: 5.5,29.5 - parent: 38584 - - uid: 40689 + parent: 38411 + - uid: 40516 components: - type: Transform pos: 16.5,26.5 - parent: 38584 - - uid: 40690 + parent: 38411 + - uid: 40517 components: - type: Transform pos: 18.5,26.5 - parent: 38584 - - uid: 40691 + parent: 38411 + - uid: 40518 components: - type: Transform pos: 17.5,25.5 - parent: 38584 - - uid: 40692 + parent: 38411 + - uid: 40519 components: - type: Transform pos: -9.5,18.5 - parent: 38584 - - uid: 40693 + parent: 38411 + - uid: 40520 components: - type: Transform pos: -12.5,21.5 - parent: 38584 - - uid: 40694 + parent: 38411 + - uid: 40521 components: - type: Transform pos: -9.5,19.5 - parent: 38584 - - uid: 40695 + parent: 38411 + - uid: 40522 components: - type: Transform pos: -11.5,22.5 - parent: 38584 - - uid: 40696 + parent: 38411 + - uid: 40523 components: - type: Transform pos: -8.5,19.5 - parent: 38584 - - uid: 40697 + parent: 38411 + - uid: 40524 components: - type: Transform pos: 16.5,25.5 - parent: 38584 - - uid: 40698 + parent: 38411 + - uid: 40525 components: - type: Transform pos: 17.5,27.5 - parent: 38584 - - uid: 40699 + parent: 38411 + - uid: 40526 components: - type: Transform pos: 19.5,26.5 - parent: 38584 - - uid: 40700 + parent: 38411 + - uid: 40527 components: - type: Transform pos: 17.5,26.5 - parent: 38584 - - uid: 40701 + parent: 38411 + - uid: 40528 components: - type: Transform pos: 6.5,29.5 - parent: 38584 - - uid: 40702 + parent: 38411 + - uid: 40529 components: - type: Transform pos: 6.5,28.5 - parent: 38584 - - uid: 40703 + parent: 38411 + - uid: 40530 components: - type: Transform pos: 7.5,28.5 - parent: 38584 - - uid: 40704 + parent: 38411 + - uid: 40531 components: - type: Transform pos: 8.5,28.5 - parent: 38584 + parent: 38411 - proto: WallRockPlasma entities: - - uid: 35937 + - uid: 35781 components: - type: Transform pos: -83.5,-22.5 parent: 2 - - uid: 35938 + - uid: 35782 components: - type: Transform pos: -109.5,41.5 parent: 2 - - uid: 35939 + - uid: 35783 components: - type: Transform pos: -52.5,-52.5 parent: 2 - - uid: 35940 + - uid: 35784 components: - type: Transform pos: -125.5,28.5 parent: 2 - - uid: 35941 + - uid: 35785 components: - type: Transform pos: 59.5,-36.5 parent: 2 - - uid: 35942 + - uid: 35786 components: - type: Transform pos: -46.5,-63.5 parent: 2 - - uid: 35943 + - uid: 35787 components: - type: Transform pos: -47.5,-64.5 parent: 2 - - uid: 35944 + - uid: 35788 components: - type: Transform pos: -47.5,-50.5 parent: 2 - - uid: 35945 + - uid: 35789 components: - type: Transform pos: -68.5,64.5 parent: 2 - - uid: 40705 + - uid: 40532 components: - type: Transform pos: 9.5,36.5 - parent: 38584 - - uid: 40706 + parent: 38411 + - uid: 40533 components: - type: Transform pos: 10.5,35.5 - parent: 38584 - - uid: 40707 + parent: 38411 + - uid: 40534 components: - type: Transform pos: 12.5,35.5 - parent: 38584 - - uid: 40708 + parent: 38411 + - uid: 40535 components: - type: Transform pos: 10.5,36.5 - parent: 38584 - - uid: 40709 + parent: 38411 + - uid: 40536 components: - type: Transform pos: 11.5,36.5 - parent: 38584 - - uid: 40710 + parent: 38411 + - uid: 40537 components: - type: Transform pos: 10.5,37.5 - parent: 38584 - - uid: 40711 + parent: 38411 + - uid: 40538 components: - type: Transform pos: 8.5,37.5 - parent: 38584 + parent: 38411 - proto: WallRockQuartz entities: - - uid: 35946 + - uid: 35790 components: - type: Transform pos: 55.5,-54.5 parent: 2 - - uid: 35947 + - uid: 35791 components: - type: Transform pos: 35.5,16.5 parent: 2 - - uid: 35948 + - uid: 35792 components: - type: Transform pos: -46.5,-52.5 parent: 2 - - uid: 35949 + - uid: 35793 components: - type: Transform pos: -53.5,-50.5 parent: 2 - - uid: 35950 + - uid: 35794 components: - type: Transform pos: -105.5,46.5 parent: 2 - - uid: 35951 + - uid: 35795 components: - type: Transform pos: -81.5,-21.5 parent: 2 - - uid: 40712 + - uid: 40539 components: - type: Transform pos: 6.5,11.5 - parent: 38584 - - uid: 40713 + parent: 38411 + - uid: 40540 components: - type: Transform pos: 7.5,9.5 - parent: 38584 - - uid: 40714 + parent: 38411 + - uid: 40541 components: - type: Transform pos: 5.5,10.5 - parent: 38584 - - uid: 40715 + parent: 38411 + - uid: 40542 components: - type: Transform pos: 6.5,10.5 - parent: 38584 - - uid: 40716 + parent: 38411 + - uid: 40543 components: - type: Transform pos: 5.5,13.5 - parent: 38584 - - uid: 40717 + parent: 38411 + - uid: 40544 components: - type: Transform pos: 6.5,9.5 - parent: 38584 - - uid: 40718 + parent: 38411 + - uid: 40545 components: - type: Transform pos: 5.5,12.5 - parent: 38584 - - uid: 40719 + parent: 38411 + - uid: 40546 components: - type: Transform pos: 6.5,12.5 - parent: 38584 - - uid: 40720 + parent: 38411 + - uid: 40547 components: - type: Transform pos: 7.5,11.5 - parent: 38584 - - uid: 40721 + parent: 38411 + - uid: 40548 components: - type: Transform pos: -12.5,40.5 - parent: 38584 - - uid: 40722 + parent: 38411 + - uid: 40549 components: - type: Transform pos: -14.5,40.5 - parent: 38584 - - uid: 40723 + parent: 38411 + - uid: 40550 components: - type: Transform pos: -19.5,38.5 - parent: 38584 - - uid: 40724 + parent: 38411 + - uid: 40551 components: - type: Transform pos: -13.5,39.5 - parent: 38584 - - uid: 40725 + parent: 38411 + - uid: 40552 components: - type: Transform pos: -11.5,38.5 - parent: 38584 - - uid: 40726 + parent: 38411 + - uid: 40553 components: - type: Transform pos: -20.5,38.5 - parent: 38584 - - uid: 40727 + parent: 38411 + - uid: 40554 components: - type: Transform pos: -20.5,39.5 - parent: 38584 - - uid: 40728 + parent: 38411 + - uid: 40555 components: - type: Transform pos: -10.5,37.5 - parent: 38584 - - uid: 40729 + parent: 38411 + - uid: 40556 components: - type: Transform pos: 7.5,41.5 - parent: 38584 - - uid: 40730 + parent: 38411 + - uid: 40557 components: - type: Transform pos: 2.5,40.5 - parent: 38584 - - uid: 40731 + parent: 38411 + - uid: 40558 components: - type: Transform pos: 0.5,26.5 - parent: 38584 - - uid: 40732 + parent: 38411 + - uid: 40559 components: - type: Transform pos: -12.5,38.5 - parent: 38584 - - uid: 40733 + parent: 38411 + - uid: 40560 components: - type: Transform pos: 4.5,10.5 - parent: 38584 - - uid: 40734 + parent: 38411 + - uid: 40561 components: - type: Transform pos: 1.5,25.5 - parent: 38584 - - uid: 40735 + parent: 38411 + - uid: 40562 components: - type: Transform pos: 1.5,24.5 - parent: 38584 - - uid: 40736 + parent: 38411 + - uid: 40563 components: - type: Transform pos: -13.5,38.5 - parent: 38584 - - uid: 40737 + parent: 38411 + - uid: 40564 components: - type: Transform pos: 0.5,25.5 - parent: 38584 + parent: 38411 - proto: WallRockSalt entities: - - uid: 35952 + - uid: 35796 components: - type: Transform pos: -79.5,-19.5 parent: 2 - - uid: 35953 + - uid: 35797 components: - type: Transform pos: -41.5,-78.5 parent: 2 - - uid: 35954 + - uid: 35798 components: - type: Transform pos: -126.5,26.5 parent: 2 - - uid: 35955 + - uid: 35799 components: - type: Transform pos: 18.5,84.5 parent: 2 - - uid: 35956 + - uid: 35800 components: - type: Transform pos: 46.5,-65.5 parent: 2 - - uid: 35957 + - uid: 35801 components: - type: Transform pos: 11.5,-71.5 parent: 2 - - uid: 35958 + - uid: 35802 components: - type: Transform pos: -76.5,-33.5 parent: 2 - - uid: 35959 + - uid: 35803 components: - type: Transform pos: -72.5,62.5 parent: 2 - - uid: 35960 + - uid: 35804 components: - type: Transform pos: -107.5,49.5 parent: 2 - - uid: 40738 + - uid: 40565 components: - type: Transform pos: 7.5,31.5 - parent: 38584 - - uid: 40739 + parent: 38411 + - uid: 40566 components: - type: Transform pos: 5.5,33.5 - parent: 38584 - - uid: 40740 + parent: 38411 + - uid: 40567 components: - type: Transform pos: 5.5,32.5 - parent: 38584 - - uid: 40741 + parent: 38411 + - uid: 40568 components: - type: Transform pos: 4.5,34.5 - parent: 38584 - - uid: 40742 + parent: 38411 + - uid: 40569 components: - type: Transform pos: 6.5,34.5 - parent: 38584 - - uid: 40743 + parent: 38411 + - uid: 40570 components: - type: Transform pos: 7.5,32.5 - parent: 38584 - - uid: 40744 + parent: 38411 + - uid: 40571 components: - type: Transform pos: 6.5,33.5 - parent: 38584 - - uid: 40745 + parent: 38411 + - uid: 40572 components: - type: Transform pos: -3.5,33.5 - parent: 38584 - - uid: 40746 + parent: 38411 + - uid: 40573 components: - type: Transform pos: -3.5,34.5 - parent: 38584 - - uid: 40747 + parent: 38411 + - uid: 40574 components: - type: Transform pos: -8.5,33.5 - parent: 38584 + parent: 38411 - proto: WallRockSilver entities: - - uid: 35961 + - uid: 35805 components: - type: Transform pos: -29.5,-82.5 parent: 2 - - uid: 35962 + - uid: 35806 components: - type: Transform pos: 56.5,-51.5 parent: 2 - - uid: 35963 + - uid: 35807 components: - type: Transform pos: -27.5,-81.5 parent: 2 - - uid: 35964 + - uid: 35808 components: - type: Transform pos: 48.5,-63.5 parent: 2 - - uid: 35965 + - uid: 35809 components: - type: Transform pos: 58.5,-34.5 parent: 2 - - uid: 35966 + - uid: 35810 components: - type: Transform pos: 13.5,-75.5 parent: 2 - - uid: 35967 + - uid: 35811 components: - type: Transform pos: -44.5,-69.5 parent: 2 - - uid: 35968 + - uid: 35812 components: - type: Transform pos: -46.5,-67.5 parent: 2 - - uid: 35969 + - uid: 35813 components: - type: Transform pos: -111.5,28.5 parent: 2 - - uid: 35970 + - uid: 35814 components: - type: Transform pos: -110.5,56.5 parent: 2 - - uid: 35971 + - uid: 35815 components: - type: Transform pos: -116.5,54.5 parent: 2 - - uid: 40748 + - uid: 40575 components: - type: Transform pos: 13.5,30.5 - parent: 38584 - - uid: 40749 + parent: 38411 + - uid: 40576 components: - type: Transform pos: 15.5,33.5 - parent: 38584 - - uid: 40750 + parent: 38411 + - uid: 40577 components: - type: Transform pos: 18.5,29.5 - parent: 38584 - - uid: 40751 + parent: 38411 + - uid: 40578 components: - type: Transform pos: 14.5,31.5 - parent: 38584 - - uid: 40752 + parent: 38411 + - uid: 40579 components: - type: Transform pos: -24.5,8.5 - parent: 38584 - - uid: 40753 + parent: 38411 + - uid: 40580 components: - type: Transform pos: -26.5,7.5 - parent: 38584 - - uid: 40754 + parent: 38411 + - uid: 40581 components: - type: Transform pos: -26.5,6.5 - parent: 38584 - - uid: 40755 + parent: 38411 + - uid: 40582 components: - type: Transform pos: -25.5,6.5 - parent: 38584 - - uid: 40756 + parent: 38411 + - uid: 40583 components: - type: Transform pos: -24.5,7.5 - parent: 38584 - - uid: 40757 + parent: 38411 + - uid: 40584 components: - type: Transform pos: -25.5,5.5 - parent: 38584 - - uid: 40758 + parent: 38411 + - uid: 40585 components: - type: Transform pos: 15.5,32.5 - parent: 38584 - - uid: 40759 + parent: 38411 + - uid: 40586 components: - type: Transform pos: 17.5,30.5 - parent: 38584 - - uid: 40760 + parent: 38411 + - uid: 40587 components: - type: Transform pos: 18.5,30.5 - parent: 38584 - - uid: 40761 + parent: 38411 + - uid: 40588 components: - type: Transform pos: 13.5,31.5 - parent: 38584 - - uid: 40762 + parent: 38411 + - uid: 40589 components: - type: Transform pos: 12.5,31.5 - parent: 38584 - - uid: 40763 + parent: 38411 + - uid: 40590 components: - type: Transform pos: 14.5,32.5 - parent: 38584 + parent: 38411 - proto: WallRockTin entities: - - uid: 35972 + - uid: 35816 components: - type: Transform pos: 48.5,-71.5 parent: 2 - - uid: 35973 + - uid: 35817 components: - type: Transform pos: 70.5,-37.5 parent: 2 - - uid: 35974 + - uid: 35818 components: - type: Transform pos: -50.5,-52.5 parent: 2 - - uid: 35975 + - uid: 35819 components: - type: Transform pos: -45.5,-50.5 parent: 2 - - uid: 35976 + - uid: 35820 components: - type: Transform pos: -109.5,50.5 parent: 2 - - uid: 35977 + - uid: 35821 components: - type: Transform pos: -82.5,-18.5 parent: 2 - - uid: 40764 + - uid: 40591 components: - type: Transform pos: 7.5,15.5 - parent: 38584 - - uid: 40765 + parent: 38411 + - uid: 40592 components: - type: Transform pos: 6.5,17.5 - parent: 38584 - - uid: 40766 + parent: 38411 + - uid: 40593 components: - type: Transform pos: 7.5,24.5 - parent: 38584 - - uid: 40767 + parent: 38411 + - uid: 40594 components: - type: Transform pos: 12.5,26.5 - parent: 38584 - - uid: 40768 + parent: 38411 + - uid: 40595 components: - type: Transform pos: 8.5,15.5 - parent: 38584 - - uid: 40769 + parent: 38411 + - uid: 40596 components: - type: Transform pos: 8.5,23.5 - parent: 38584 - - uid: 40770 + parent: 38411 + - uid: 40597 components: - type: Transform pos: 7.5,16.5 - parent: 38584 - - uid: 40771 + parent: 38411 + - uid: 40598 components: - type: Transform pos: 8.5,24.5 - parent: 38584 - - uid: 40772 + parent: 38411 + - uid: 40599 components: - type: Transform pos: 6.5,16.5 - parent: 38584 - - uid: 40773 + parent: 38411 + - uid: 40600 components: - type: Transform pos: -31.5,30.5 - parent: 38584 - - uid: 40774 + parent: 38411 + - uid: 40601 components: - type: Transform pos: -29.5,30.5 - parent: 38584 - - uid: 40775 + parent: 38411 + - uid: 40602 components: - type: Transform pos: -24.5,11.5 - parent: 38584 - - uid: 40776 + parent: 38411 + - uid: 40603 components: - type: Transform pos: -30.5,31.5 - parent: 38584 - - uid: 40777 + parent: 38411 + - uid: 40604 components: - type: Transform pos: -24.5,33.5 - parent: 38584 - - uid: 40778 + parent: 38411 + - uid: 40605 components: - type: Transform pos: -24.5,38.5 - parent: 38584 - - uid: 40779 + parent: 38411 + - uid: 40606 components: - type: Transform pos: -14.5,39.5 - parent: 38584 - - uid: 40780 + parent: 38411 + - uid: 40607 components: - type: Transform pos: -26.5,33.5 - parent: 38584 - - uid: 40781 + parent: 38411 + - uid: 40608 components: - type: Transform pos: -23.5,18.5 - parent: 38584 - - uid: 40782 + parent: 38411 + - uid: 40609 components: - type: Transform pos: -30.5,32.5 - parent: 38584 - - uid: 40783 + parent: 38411 + - uid: 40610 components: - type: Transform pos: -16.5,40.5 - parent: 38584 - - uid: 40784 + parent: 38411 + - uid: 40611 components: - type: Transform pos: -11.5,39.5 - parent: 38584 - - uid: 40785 + parent: 38411 + - uid: 40612 components: - type: Transform pos: -27.5,12.5 - parent: 38584 - - uid: 40786 + parent: 38411 + - uid: 40613 components: - type: Transform pos: -28.5,13.5 - parent: 38584 - - uid: 40787 + parent: 38411 + - uid: 40614 components: - type: Transform pos: -24.5,32.5 - parent: 38584 - - uid: 40788 + parent: 38411 + - uid: 40615 components: - type: Transform pos: -22.5,36.5 - parent: 38584 - - uid: 40789 + parent: 38411 + - uid: 40616 components: - type: Transform pos: -17.5,39.5 - parent: 38584 - - uid: 40790 + parent: 38411 + - uid: 40617 components: - type: Transform pos: -23.5,38.5 - parent: 38584 - - uid: 40791 + parent: 38411 + - uid: 40618 components: - type: Transform pos: -26.5,28.5 - parent: 38584 - - uid: 40792 + parent: 38411 + - uid: 40619 components: - type: Transform pos: -24.5,36.5 - parent: 38584 - - uid: 40793 + parent: 38411 + - uid: 40620 components: - type: Transform pos: -26.5,29.5 - parent: 38584 - - uid: 40794 + parent: 38411 + - uid: 40621 components: - type: Transform pos: -21.5,37.5 - parent: 38584 - - uid: 40795 + parent: 38411 + - uid: 40622 components: - type: Transform pos: -12.5,37.5 - parent: 38584 - - uid: 40796 + parent: 38411 + - uid: 40623 components: - type: Transform pos: 3.5,22.5 - parent: 38584 - - uid: 40797 + parent: 38411 + - uid: 40624 components: - type: Transform pos: 10.5,27.5 - parent: 38584 - - uid: 40798 + parent: 38411 + - uid: 40625 components: - type: Transform pos: 4.5,22.5 - parent: 38584 - - uid: 40799 + parent: 38411 + - uid: 40626 components: - type: Transform pos: 3.5,21.5 - parent: 38584 - - uid: 40800 + parent: 38411 + - uid: 40627 components: - type: Transform pos: 4.5,23.5 - parent: 38584 - - uid: 40801 + parent: 38411 + - uid: 40628 components: - type: Transform pos: 2.5,22.5 - parent: 38584 - - uid: 40802 + parent: 38411 + - uid: 40629 components: - type: Transform pos: -15.5,39.5 - parent: 38584 - - uid: 40803 + parent: 38411 + - uid: 40630 components: - type: Transform pos: -26.5,17.5 - parent: 38584 - - uid: 40804 + parent: 38411 + - uid: 40631 components: - type: Transform pos: -26.5,16.5 - parent: 38584 - - uid: 40805 + parent: 38411 + - uid: 40632 components: - type: Transform pos: -12.5,25.5 - parent: 38584 - - uid: 40806 + parent: 38411 + - uid: 40633 components: - type: Transform pos: -11.5,21.5 - parent: 38584 - - uid: 40807 + parent: 38411 + - uid: 40634 components: - type: Transform pos: 11.5,26.5 - parent: 38584 - - uid: 40808 + parent: 38411 + - uid: 40635 components: - type: Transform pos: -12.5,20.5 - parent: 38584 - - uid: 40809 + parent: 38411 + - uid: 40636 components: - type: Transform pos: 10.5,26.5 - parent: 38584 - - uid: 40810 + parent: 38411 + - uid: 40637 components: - type: Transform pos: -20.5,37.5 - parent: 38584 - - uid: 40811 + parent: 38411 + - uid: 40638 components: - type: Transform pos: -13.5,24.5 - parent: 38584 - - uid: 40812 + parent: 38411 + - uid: 40639 components: - type: Transform pos: -11.5,26.5 - parent: 38584 - - uid: 40813 + parent: 38411 + - uid: 40640 components: - type: Transform pos: -12.5,26.5 - parent: 38584 - - uid: 40814 + parent: 38411 + - uid: 40641 components: - type: Transform pos: 11.5,25.5 - parent: 38584 - - uid: 40815 + parent: 38411 + - uid: 40642 components: - type: Transform pos: -28.5,29.5 - parent: 38584 - - uid: 40816 + parent: 38411 + - uid: 40643 components: - type: Transform pos: -25.5,17.5 - parent: 38584 - - uid: 40817 + parent: 38411 + - uid: 40644 components: - type: Transform pos: -20.5,36.5 - parent: 38584 - - uid: 40818 + parent: 38411 + - uid: 40645 components: - type: Transform pos: -25.5,16.5 - parent: 38584 + parent: 38411 - proto: WallRockUranium entities: - - uid: 35978 + - uid: 35822 components: - type: Transform pos: 12.5,-78.5 parent: 2 - - uid: 35979 + - uid: 35823 components: - type: Transform pos: -125.5,31.5 parent: 2 - - uid: 35980 + - uid: 35824 components: - type: Transform pos: 17.5,74.5 parent: 2 - - uid: 35981 + - uid: 35825 components: - type: Transform pos: 63.5,-37.5 parent: 2 - - uid: 35982 + - uid: 35826 components: - type: Transform pos: -79.5,-33.5 parent: 2 - - uid: 35983 + - uid: 35827 components: - type: Transform pos: -111.5,53.5 parent: 2 - - uid: 40819 + - uid: 40646 components: - type: Transform pos: -25.5,13.5 - parent: 38584 - - uid: 40820 + parent: 38411 + - uid: 40647 components: - type: Transform pos: -14.5,30.5 - parent: 38584 - - uid: 40821 + parent: 38411 + - uid: 40648 components: - type: Transform pos: -2.5,33.5 - parent: 38584 - - uid: 40822 + parent: 38411 + - uid: 40649 components: - type: Transform pos: 6.5,40.5 - parent: 38584 - - uid: 40823 + parent: 38411 + - uid: 40650 components: - type: Transform pos: 4.5,42.5 - parent: 38584 - - uid: 40824 + parent: 38411 + - uid: 40651 components: - type: Transform pos: 4.5,41.5 - parent: 38584 - - uid: 40825 + parent: 38411 + - uid: 40652 components: - type: Transform pos: -9.5,30.5 - parent: 38584 - - uid: 40826 + parent: 38411 + - uid: 40653 components: - type: Transform pos: 1.5,13.5 - parent: 38584 - - uid: 40827 + parent: 38411 + - uid: 40654 components: - type: Transform pos: -1.5,32.5 - parent: 38584 - - uid: 40828 + parent: 38411 + - uid: 40655 components: - type: Transform pos: -15.5,21.5 - parent: 38584 - - uid: 40829 + parent: 38411 + - uid: 40656 components: - type: Transform pos: -14.5,20.5 - parent: 38584 - - uid: 40830 + parent: 38411 + - uid: 40657 components: - type: Transform pos: 0.5,13.5 - parent: 38584 - - uid: 40831 + parent: 38411 + - uid: 40658 components: - type: Transform pos: 1.5,14.5 - parent: 38584 - - uid: 40832 + parent: 38411 + - uid: 40659 components: - type: Transform pos: -15.5,22.5 - parent: 38584 - - uid: 40833 + parent: 38411 + - uid: 40660 components: - type: Transform pos: -13.5,32.5 - parent: 38584 - - uid: 40834 + parent: 38411 + - uid: 40661 components: - type: Transform pos: -17.5,22.5 - parent: 38584 - - uid: 40835 + parent: 38411 + - uid: 40662 components: - type: Transform pos: -11.5,31.5 - parent: 38584 + parent: 38411 - proto: WallShuttle entities: - - uid: 38558 + - uid: 38385 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 38484 - - uid: 38559 + parent: 38311 + - uid: 38386 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-0.5 - parent: 38484 - - uid: 38560 + parent: 38311 + - uid: 38387 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 - parent: 38484 - - uid: 38561 + parent: 38311 + - uid: 38388 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 - parent: 38484 - - uid: 38562 + parent: 38311 + - uid: 38389 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 - parent: 38484 - - uid: 38563 + parent: 38311 + - uid: 38390 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-0.5 - parent: 38484 - - uid: 38564 + parent: 38311 + - uid: 38391 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 - parent: 38484 - - uid: 38565 + parent: 38311 + - uid: 38392 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-1.5 - parent: 38484 - - uid: 38566 + parent: 38311 + - uid: 38393 components: - type: Transform pos: 0.5,2.5 - parent: 38484 - - uid: 38567 + parent: 38311 + - uid: 38394 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 - parent: 38484 - - uid: 38568 + parent: 38311 + - uid: 38395 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,1.5 - parent: 38484 - - uid: 38569 + parent: 38311 + - uid: 38396 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-3.5 - parent: 38484 - - uid: 38570 + parent: 38311 + - uid: 38397 components: - type: Transform pos: 2.5,2.5 - parent: 38484 - - uid: 38571 + parent: 38311 + - uid: 38398 components: - type: Transform pos: 1.5,-2.5 - parent: 38484 - - uid: 38572 + parent: 38311 + - uid: 38399 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 - parent: 38484 + parent: 38311 - proto: WallShuttleDiagonal entities: - - uid: 38573 + - uid: 38400 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-1.5 - parent: 38484 - - uid: 38574 + parent: 38311 + - uid: 38401 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 - parent: 38484 - - uid: 38575 + parent: 38311 + - uid: 38402 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 - parent: 38484 - - uid: 38576 + parent: 38311 + - uid: 38403 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-3.5 - parent: 38484 - - uid: 38577 + parent: 38311 + - uid: 38404 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 - parent: 38484 - - uid: 38578 + parent: 38311 + - uid: 38405 components: - type: Transform pos: 2.5,-0.5 - parent: 38484 - - uid: 38579 + parent: 38311 + - uid: 38406 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 - parent: 38484 - - uid: 38580 + parent: 38311 + - uid: 38407 components: - type: Transform pos: -1.5,3.5 - parent: 38484 + parent: 38311 - proto: WallSilver entities: - - uid: 35984 + - uid: 35828 components: - type: MetaData name: мягкая стена @@ -265790,7 +265858,7 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-36.5 parent: 2 - - uid: 35985 + - uid: 35829 components: - type: MetaData name: мягкая стена @@ -265798,7 +265866,7 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-37.5 parent: 2 - - uid: 35986 + - uid: 35830 components: - type: MetaData name: мягкая стена @@ -265806,7 +265874,7 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-38.5 parent: 2 - - uid: 35987 + - uid: 35831 components: - type: MetaData name: мягкая стена @@ -265816,9236 +265884,9236 @@ entities: parent: 2 - proto: WallSolid entities: - - uid: 35988 + - uid: 35832 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,40.5 parent: 2 - - uid: 35989 + - uid: 35833 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-32.5 parent: 2 - - uid: 35990 + - uid: 35834 components: - type: Transform pos: 41.5,-3.5 parent: 2 - - uid: 35991 + - uid: 35835 components: - type: Transform pos: 39.5,-3.5 parent: 2 - - uid: 35992 + - uid: 35836 components: - type: Transform pos: 39.5,-2.5 parent: 2 - - uid: 35993 + - uid: 35837 components: - type: Transform pos: 40.5,-2.5 parent: 2 - - uid: 35994 + - uid: 35838 components: - type: Transform pos: 40.5,-3.5 parent: 2 - - uid: 35995 + - uid: 35839 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-33.5 parent: 2 - - uid: 35996 + - uid: 35840 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-34.5 parent: 2 - - uid: 35997 + - uid: 35841 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-34.5 parent: 2 - - uid: 35998 + - uid: 35842 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-33.5 parent: 2 - - uid: 35999 + - uid: 35843 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-33.5 parent: 2 - - uid: 36000 + - uid: 35844 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-35.5 parent: 2 - - uid: 36001 + - uid: 35845 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-32.5 parent: 2 - - uid: 36002 + - uid: 35846 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-32.5 parent: 2 - - uid: 36003 + - uid: 35847 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-33.5 parent: 2 - - uid: 36004 + - uid: 35848 components: - type: Transform pos: 43.5,-3.5 parent: 2 - - uid: 36005 + - uid: 35849 components: - type: Transform pos: 35.5,-54.5 parent: 2 - - uid: 36006 + - uid: 35850 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-45.5 parent: 2 - - uid: 36007 + - uid: 35851 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-45.5 parent: 2 - - uid: 36008 + - uid: 35852 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,46.5 parent: 2 - - uid: 36009 + - uid: 35853 components: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 36010 + - uid: 35854 components: - type: Transform pos: -110.5,33.5 parent: 2 - - uid: 36011 + - uid: 35855 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-35.5 parent: 2 - - uid: 36012 + - uid: 35856 components: - type: Transform pos: -53.5,-36.5 parent: 2 - - uid: 36013 + - uid: 35857 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-2.5 parent: 2 - - uid: 36014 + - uid: 35858 components: - type: Transform pos: -55.5,-23.5 parent: 2 - - uid: 36015 + - uid: 35859 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-7.5 parent: 2 - - uid: 36016 + - uid: 35860 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-1.5 parent: 2 - - uid: 36017 + - uid: 35861 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-3.5 parent: 2 - - uid: 36018 + - uid: 35862 components: - type: Transform pos: -3.5,-21.5 parent: 2 - - uid: 36019 + - uid: 35863 components: - type: Transform pos: 14.5,-21.5 parent: 2 - - uid: 36020 + - uid: 35864 components: - type: Transform pos: 22.5,33.5 parent: 2 - - uid: 36021 + - uid: 35865 components: - type: Transform pos: 19.5,33.5 parent: 2 - - uid: 36022 + - uid: 35866 components: - type: Transform pos: 7.5,32.5 parent: 2 - - uid: 36023 + - uid: 35867 components: - type: Transform pos: -15.5,-21.5 parent: 2 - - uid: 36024 + - uid: 35868 components: - type: Transform pos: 2.5,-21.5 parent: 2 - - uid: 36025 + - uid: 35869 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-71.5 parent: 2 - - uid: 36026 + - uid: 35870 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-58.5 parent: 2 - - uid: 36027 + - uid: 35871 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-59.5 parent: 2 - - uid: 36028 + - uid: 35872 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-68.5 parent: 2 - - uid: 36029 + - uid: 35873 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-68.5 parent: 2 - - uid: 36030 + - uid: 35874 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-68.5 parent: 2 - - uid: 36031 + - uid: 35875 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-68.5 parent: 2 - - uid: 36032 + - uid: 35876 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-69.5 parent: 2 - - uid: 36033 + - uid: 35877 components: - type: Transform pos: -56.5,-31.5 parent: 2 - - uid: 36034 + - uid: 35878 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-33.5 parent: 2 - - uid: 36035 + - uid: 35879 components: - type: Transform pos: -27.5,-62.5 parent: 2 - - uid: 36036 + - uid: 35880 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-35.5 parent: 2 - - uid: 36037 + - uid: 35881 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-38.5 parent: 2 - - uid: 36038 + - uid: 35882 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-37.5 parent: 2 - - uid: 36039 + - uid: 35883 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-60.5 parent: 2 - - uid: 36040 + - uid: 35884 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-63.5 parent: 2 - - uid: 36041 + - uid: 35885 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-61.5 parent: 2 - - uid: 36042 + - uid: 35886 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-63.5 parent: 2 - - uid: 36043 + - uid: 35887 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-60.5 parent: 2 - - uid: 36044 + - uid: 35888 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-39.5 parent: 2 - - uid: 36045 + - uid: 35889 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-68.5 parent: 2 - - uid: 36046 + - uid: 35890 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-63.5 parent: 2 - - uid: 36047 + - uid: 35891 components: - type: Transform pos: -55.5,-32.5 parent: 2 - - uid: 36048 + - uid: 35892 components: - type: Transform pos: -48.5,-32.5 parent: 2 - - uid: 36049 + - uid: 35893 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-39.5 parent: 2 - - uid: 36050 + - uid: 35894 components: - type: Transform pos: -10.5,-60.5 parent: 2 - - uid: 36051 + - uid: 35895 components: - type: Transform pos: -39.5,-70.5 parent: 2 - - uid: 36052 + - uid: 35896 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,56.5 parent: 2 - - uid: 36053 + - uid: 35897 components: - type: Transform pos: -53.5,-32.5 parent: 2 - - uid: 36054 + - uid: 35898 components: - type: Transform pos: -74.5,-28.5 parent: 2 - - uid: 36055 + - uid: 35899 components: - type: Transform pos: -63.5,-31.5 parent: 2 - - uid: 36056 + - uid: 35900 components: - type: Transform pos: -72.5,-20.5 parent: 2 - - uid: 36057 + - uid: 35901 components: - type: Transform pos: -56.5,-20.5 parent: 2 - - uid: 36058 + - uid: 35902 components: - type: Transform pos: -39.5,-73.5 parent: 2 - - uid: 36059 + - uid: 35903 components: - type: Transform pos: -14.5,-62.5 parent: 2 - - uid: 36060 + - uid: 35904 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-34.5 parent: 2 - - uid: 36061 + - uid: 35905 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-68.5 parent: 2 - - uid: 36062 + - uid: 35906 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-63.5 parent: 2 - - uid: 36063 + - uid: 35907 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-63.5 parent: 2 - - uid: 36064 + - uid: 35908 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-60.5 parent: 2 - - uid: 36065 + - uid: 35909 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-71.5 parent: 2 - - uid: 36066 + - uid: 35910 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-63.5 parent: 2 - - uid: 36067 + - uid: 35911 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-63.5 parent: 2 - - uid: 36068 + - uid: 35912 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-68.5 parent: 2 - - uid: 36069 + - uid: 35913 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-75.5 parent: 2 - - uid: 36070 + - uid: 35914 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-74.5 parent: 2 - - uid: 36071 + - uid: 35915 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-71.5 parent: 2 - - uid: 36072 + - uid: 35916 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-54.5 parent: 2 - - uid: 36073 + - uid: 35917 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-75.5 parent: 2 - - uid: 36074 + - uid: 35918 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-78.5 parent: 2 - - uid: 36075 + - uid: 35919 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-73.5 parent: 2 - - uid: 36076 + - uid: 35920 components: - type: Transform pos: 8.5,73.5 parent: 2 - - uid: 36077 + - uid: 35921 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-42.5 parent: 2 - - uid: 36078 + - uid: 35922 components: - type: Transform pos: 11.5,26.5 parent: 2 - - uid: 36079 + - uid: 35923 components: - type: Transform pos: -26.5,66.5 parent: 2 - - uid: 36080 + - uid: 35924 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 - - uid: 36081 + - uid: 35925 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,25.5 parent: 2 - - uid: 36082 + - uid: 35926 components: - type: Transform pos: 9.5,71.5 parent: 2 - - uid: 36083 + - uid: 35927 components: - type: Transform pos: 11.5,71.5 parent: 2 - - uid: 36084 + - uid: 35928 components: - type: Transform pos: 9.5,67.5 parent: 2 - - uid: 36085 + - uid: 35929 components: - type: Transform pos: -26.5,59.5 parent: 2 - - uid: 36086 + - uid: 35930 components: - type: Transform pos: -1.5,52.5 parent: 2 - - uid: 36087 + - uid: 35931 components: - type: Transform pos: -13.5,52.5 parent: 2 - - uid: 36088 + - uid: 35932 components: - type: Transform pos: 9.5,69.5 parent: 2 - - uid: 36089 + - uid: 35933 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-12.5 parent: 2 - - uid: 36090 + - uid: 35934 components: - type: Transform pos: 17.5,68.5 parent: 2 - - uid: 36091 + - uid: 35935 components: - type: Transform pos: -6.5,51.5 parent: 2 - - uid: 36092 + - uid: 35936 components: - type: Transform pos: 8.5,71.5 parent: 2 - - uid: 36093 + - uid: 35937 components: - type: Transform pos: 9.5,70.5 parent: 2 - - uid: 36094 + - uid: 35938 components: - type: Transform pos: -35.5,52.5 parent: 2 - - uid: 36095 + - uid: 35939 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,29.5 parent: 2 - - uid: 36096 + - uid: 35940 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-62.5 parent: 2 - - uid: 36097 + - uid: 35941 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,28.5 parent: 2 - - uid: 36098 + - uid: 35942 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,29.5 parent: 2 - - uid: 36099 + - uid: 35943 components: - type: Transform pos: -1.5,53.5 parent: 2 - - uid: 36100 + - uid: 35944 components: - type: Transform pos: -4.5,51.5 parent: 2 - - uid: 36101 + - uid: 35945 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,29.5 parent: 2 - - uid: 36102 + - uid: 35946 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-54.5 parent: 2 - - uid: 36103 + - uid: 35947 components: - type: Transform pos: -26.5,44.5 parent: 2 - - uid: 36104 + - uid: 35948 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,51.5 parent: 2 - - uid: 36105 + - uid: 35949 components: - type: Transform pos: -13.5,47.5 parent: 2 - - uid: 36106 + - uid: 35950 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,66.5 parent: 2 - - uid: 36107 + - uid: 35951 components: - type: Transform pos: -34.5,37.5 parent: 2 - - uid: 36108 + - uid: 35952 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-46.5 parent: 2 - - uid: 36109 + - uid: 35953 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-39.5 parent: 2 - - uid: 36110 + - uid: 35954 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-32.5 parent: 2 - - uid: 36111 + - uid: 35955 components: - type: Transform pos: -8.5,38.5 parent: 2 - - uid: 36112 + - uid: 35956 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 - - uid: 36113 + - uid: 35957 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,52.5 parent: 2 - - uid: 36114 + - uid: 35958 components: - type: Transform pos: -24.5,40.5 parent: 2 - - uid: 36115 + - uid: 35959 components: - type: Transform pos: -0.5,42.5 parent: 2 - - uid: 36116 + - uid: 35960 components: - type: Transform pos: 24.5,67.5 parent: 2 - - uid: 36117 + - uid: 35961 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,64.5 parent: 2 - - uid: 36118 + - uid: 35962 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,25.5 parent: 2 - - uid: 36119 + - uid: 35963 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-54.5 parent: 2 - - uid: 36120 + - uid: 35964 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-46.5 parent: 2 - - uid: 36121 + - uid: 35965 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,47.5 parent: 2 - - uid: 36122 + - uid: 35966 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-54.5 parent: 2 - - uid: 36123 + - uid: 35967 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,56.5 parent: 2 - - uid: 36124 + - uid: 35968 components: - type: Transform pos: 8.5,58.5 parent: 2 - - uid: 36125 + - uid: 35969 components: - type: Transform pos: 0.5,55.5 parent: 2 - - uid: 36126 + - uid: 35970 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-39.5 parent: 2 - - uid: 36127 + - uid: 35971 components: - type: Transform pos: -4.5,43.5 parent: 2 - - uid: 36128 + - uid: 35972 components: - type: Transform pos: -24.5,16.5 parent: 2 - - uid: 36129 + - uid: 35973 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,47.5 parent: 2 - - uid: 36130 + - uid: 35974 components: - type: Transform pos: -30.5,3.5 parent: 2 - - uid: 36131 + - uid: 35975 components: - type: Transform pos: 1.5,35.5 parent: 2 - - uid: 36132 + - uid: 35976 components: - type: Transform pos: -4.5,38.5 parent: 2 - - uid: 36133 + - uid: 35977 components: - type: Transform pos: 9.5,78.5 parent: 2 - - uid: 36134 + - uid: 35978 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,66.5 parent: 2 - - uid: 36135 + - uid: 35979 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,65.5 parent: 2 - - uid: 36136 + - uid: 35980 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,60.5 parent: 2 - - uid: 36137 + - uid: 35981 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,59.5 parent: 2 - - uid: 36138 + - uid: 35982 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,29.5 parent: 2 - - uid: 36139 + - uid: 35983 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,59.5 parent: 2 - - uid: 36140 + - uid: 35984 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,60.5 parent: 2 - - uid: 36141 + - uid: 35985 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,66.5 parent: 2 - - uid: 36142 + - uid: 35986 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,65.5 parent: 2 - - uid: 36143 + - uid: 35987 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,51.5 parent: 2 - - uid: 36144 + - uid: 35988 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,55.5 parent: 2 - - uid: 36145 + - uid: 35989 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,54.5 parent: 2 - - uid: 36146 + - uid: 35990 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,53.5 parent: 2 - - uid: 36147 + - uid: 35991 components: - type: Transform pos: -25.5,-0.5 parent: 2 - - uid: 36148 + - uid: 35992 components: - type: Transform pos: -1.5,-65.5 parent: 2 - - uid: 36149 + - uid: 35993 components: - type: Transform pos: -6.5,-65.5 parent: 2 - - uid: 36150 + - uid: 35994 components: - type: Transform pos: -0.5,60.5 parent: 2 - - uid: 36151 + - uid: 35995 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,66.5 parent: 2 - - uid: 36152 + - uid: 35996 components: - type: Transform pos: 38.5,-16.5 parent: 2 - - uid: 36153 + - uid: 35997 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,59.5 parent: 2 - - uid: 36154 + - uid: 35998 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,66.5 parent: 2 - - uid: 36155 + - uid: 35999 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,59.5 parent: 2 - - uid: 36156 + - uid: 36000 components: - type: Transform pos: -31.5,-63.5 parent: 2 - - uid: 36157 + - uid: 36001 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,58.5 parent: 2 - - uid: 36158 + - uid: 36002 components: - type: Transform pos: 42.5,-16.5 parent: 2 - - uid: 36159 + - uid: 36003 components: - type: Transform pos: -30.5,2.5 parent: 2 - - uid: 36160 + - uid: 36004 components: - type: Transform pos: -30.5,-63.5 parent: 2 - - uid: 36161 + - uid: 36005 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,66.5 parent: 2 - - uid: 36162 + - uid: 36006 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-46.5 parent: 2 - - uid: 36163 + - uid: 36007 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,1.5 parent: 2 - - uid: 36164 + - uid: 36008 components: - type: Transform pos: -53.5,-34.5 parent: 2 - - uid: 36165 + - uid: 36009 components: - type: Transform pos: -8.5,36.5 parent: 2 - - uid: 36166 + - uid: 36010 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-45.5 parent: 2 - - uid: 36167 + - uid: 36011 components: - type: Transform pos: -12.5,25.5 parent: 2 - - uid: 36168 + - uid: 36012 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,59.5 parent: 2 - - uid: 36169 + - uid: 36013 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,54.5 parent: 2 - - uid: 36170 + - uid: 36014 components: - type: Transform pos: 6.5,59.5 parent: 2 - - uid: 36171 + - uid: 36015 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,27.5 parent: 2 - - uid: 36173 + - uid: 36016 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,26.5 parent: 2 - - uid: 36174 + - uid: 36017 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,40.5 parent: 2 - - uid: 36175 + - uid: 36018 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-41.5 parent: 2 - - uid: 36176 + - uid: 36019 components: - type: Transform pos: 37.5,-20.5 parent: 2 - - uid: 36177 + - uid: 36020 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,28.5 parent: 2 - - uid: 36178 + - uid: 36021 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,59.5 parent: 2 - - uid: 36179 + - uid: 36022 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 36180 + - uid: 36023 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 - - uid: 36181 + - uid: 36024 components: - type: Transform pos: -48.5,-36.5 parent: 2 - - uid: 36182 + - uid: 36025 components: - type: Transform pos: 8.5,-54.5 parent: 2 - - uid: 36183 + - uid: 36026 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,33.5 parent: 2 - - uid: 36184 + - uid: 36027 components: - type: Transform pos: 14.5,-56.5 parent: 2 - - uid: 36185 + - uid: 36028 components: - type: Transform pos: -7.5,47.5 parent: 2 - - uid: 36186 + - uid: 36029 components: - type: Transform pos: -7.5,26.5 parent: 2 - - uid: 36187 + - uid: 36030 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,66.5 parent: 2 - - uid: 36188 + - uid: 36031 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,66.5 parent: 2 - - uid: 36189 + - uid: 36032 components: - type: Transform pos: -6.5,-66.5 parent: 2 - - uid: 36190 + - uid: 36033 components: - type: Transform pos: 6.5,60.5 parent: 2 - - uid: 36191 + - uid: 36034 components: - type: Transform pos: -47.5,-41.5 parent: 2 - - uid: 36192 + - uid: 36035 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-42.5 parent: 2 - - uid: 36193 + - uid: 36036 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-47.5 parent: 2 - - uid: 36194 + - uid: 36037 components: - type: Transform pos: -3.5,26.5 parent: 2 - - uid: 36195 + - uid: 36038 components: - type: Transform pos: -16.5,-1.5 parent: 2 - - uid: 36196 + - uid: 36039 components: - type: Transform pos: -16.5,5.5 parent: 2 - - uid: 36197 + - uid: 36040 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,33.5 parent: 2 - - uid: 36198 + - uid: 36041 components: - type: Transform pos: 24.5,-18.5 parent: 2 - - uid: 36199 + - uid: 36042 components: - type: Transform pos: 19.5,-14.5 parent: 2 - - uid: 36200 + - uid: 36043 components: - type: Transform pos: -2.5,55.5 parent: 2 - - uid: 36201 + - uid: 36044 components: - type: Transform pos: -22.5,62.5 parent: 2 - - uid: 36202 + - uid: 36045 components: - type: Transform pos: 1.5,25.5 parent: 2 - - uid: 36203 + - uid: 36046 components: - type: Transform pos: -21.5,-68.5 parent: 2 - - uid: 36204 + - uid: 36047 components: - type: Transform pos: 42.5,-25.5 parent: 2 - - uid: 36205 + - uid: 36048 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 36206 + - uid: 36049 components: - type: Transform pos: -51.5,-41.5 parent: 2 - - uid: 36207 + - uid: 36050 components: - type: Transform pos: 35.5,-51.5 parent: 2 - - uid: 36208 + - uid: 36051 components: - type: Transform pos: 29.5,-36.5 parent: 2 - - uid: 36209 + - uid: 36052 components: - type: Transform pos: 42.5,-29.5 parent: 2 - - uid: 36210 + - uid: 36053 components: - type: Transform pos: 48.5,-48.5 parent: 2 - - uid: 36211 + - uid: 36054 components: - type: Transform pos: 43.5,-29.5 parent: 2 - - uid: 36212 + - uid: 36055 components: - type: Transform pos: 5.5,52.5 parent: 2 - - uid: 36213 + - uid: 36056 components: - type: Transform pos: 12.5,55.5 parent: 2 - - uid: 36214 + - uid: 36057 components: - type: Transform pos: -52.5,-41.5 parent: 2 - - uid: 36215 + - uid: 36058 components: - type: Transform pos: 11.5,62.5 parent: 2 - - uid: 36216 + - uid: 36059 components: - type: Transform pos: 48.5,-49.5 parent: 2 - - uid: 36217 + - uid: 36060 components: - type: Transform pos: 48.5,-54.5 parent: 2 - - uid: 36218 + - uid: 36061 components: - type: Transform pos: 48.5,-50.5 parent: 2 - - uid: 36219 + - uid: 36062 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-42.5 parent: 2 - - uid: 36220 + - uid: 36063 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 36221 + - uid: 36064 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,32.5 parent: 2 - - uid: 36222 + - uid: 36065 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-45.5 parent: 2 - - uid: 36223 + - uid: 36066 components: - type: Transform pos: 32.5,-4.5 parent: 2 - - uid: 36224 + - uid: 36067 components: - type: Transform pos: 11.5,25.5 parent: 2 - - uid: 36225 + - uid: 36068 components: - type: Transform pos: 44.5,-12.5 parent: 2 - - uid: 36226 + - uid: 36069 components: - type: Transform pos: 34.5,-5.5 parent: 2 - - uid: 36227 + - uid: 36070 components: - type: Transform pos: 16.5,57.5 parent: 2 - - uid: 36228 + - uid: 36071 components: - type: Transform pos: 32.5,2.5 parent: 2 - - uid: 36229 + - uid: 36072 components: - type: Transform pos: -11.5,-73.5 parent: 2 - - uid: 36230 + - uid: 36073 components: - type: Transform pos: 2.5,41.5 parent: 2 - - uid: 36231 + - uid: 36074 components: - type: Transform pos: 32.5,0.5 parent: 2 - - uid: 36232 + - uid: 36075 components: - type: Transform pos: 21.5,64.5 parent: 2 - - uid: 36233 + - uid: 36076 components: - type: Transform pos: 23.5,-12.5 parent: 2 - - uid: 36234 + - uid: 36077 components: - type: Transform pos: 29.5,-18.5 parent: 2 - - uid: 36235 + - uid: 36078 components: - type: Transform pos: -32.5,59.5 parent: 2 - - uid: 36236 + - uid: 36079 components: - type: Transform pos: 38.5,-53.5 parent: 2 - - uid: 36237 + - uid: 36080 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 36238 + - uid: 36081 components: - type: Transform pos: 38.5,-17.5 parent: 2 - - uid: 36239 + - uid: 36082 components: - type: Transform pos: 32.5,-2.5 parent: 2 - - uid: 36240 + - uid: 36083 components: - type: Transform pos: 31.5,3.5 parent: 2 - - uid: 36241 + - uid: 36084 components: - type: Transform pos: -21.5,-71.5 parent: 2 - - uid: 36242 + - uid: 36085 components: - type: Transform pos: -2.5,43.5 parent: 2 - - uid: 36243 + - uid: 36086 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 36244 + - uid: 36087 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 36245 + - uid: 36088 components: - type: Transform pos: -21.5,18.5 parent: 2 - - uid: 36246 + - uid: 36089 components: - type: Transform pos: -21.5,-73.5 parent: 2 - - uid: 36247 + - uid: 36090 components: - type: Transform pos: 23.5,-13.5 parent: 2 - - uid: 36248 + - uid: 36091 components: - type: Transform pos: -21.5,59.5 parent: 2 - - uid: 36249 + - uid: 36092 components: - type: Transform pos: -21.5,-70.5 parent: 2 - - uid: 36250 + - uid: 36093 components: - type: Transform pos: -24.5,-9.5 parent: 2 - - uid: 36251 + - uid: 36094 components: - type: Transform pos: -13.5,-63.5 parent: 2 - - uid: 36252 + - uid: 36095 components: - type: Transform pos: 12.5,37.5 parent: 2 - - uid: 36253 + - uid: 36096 components: - type: Transform pos: 12.5,38.5 parent: 2 - - uid: 36254 + - uid: 36097 components: - type: Transform pos: -11.5,-62.5 parent: 2 - - uid: 36255 + - uid: 36098 components: - type: Transform pos: -12.5,-63.5 parent: 2 - - uid: 36256 + - uid: 36099 components: - type: Transform pos: 38.5,-26.5 parent: 2 - - uid: 36257 + - uid: 36100 components: - type: Transform pos: -7.5,54.5 parent: 2 - - uid: 36258 + - uid: 36101 components: - type: Transform pos: -15.5,59.5 parent: 2 - - uid: 36259 + - uid: 36102 components: - type: Transform pos: -22.5,56.5 parent: 2 - - uid: 36260 + - uid: 36103 components: - type: Transform pos: -33.5,58.5 parent: 2 - - uid: 36261 + - uid: 36104 components: - type: Transform pos: -22.5,57.5 parent: 2 - - uid: 36262 + - uid: 36105 components: - type: Transform pos: -23.5,60.5 parent: 2 - - uid: 36263 + - uid: 36106 components: - type: Transform pos: -1.5,49.5 parent: 2 - - uid: 36264 + - uid: 36107 components: - type: Transform pos: -14.5,53.5 parent: 2 - - uid: 36265 + - uid: 36108 components: - type: Transform pos: -8.5,55.5 parent: 2 - - uid: 36266 + - uid: 36109 components: - type: Transform pos: -23.5,66.5 parent: 2 - - uid: 36267 + - uid: 36110 components: - type: Transform pos: -34.5,7.5 parent: 2 - - uid: 36268 + - uid: 36111 components: - type: Transform pos: -37.5,-14.5 parent: 2 - - uid: 36269 + - uid: 36112 components: - type: Transform pos: -37.5,-13.5 parent: 2 - - uid: 36270 + - uid: 36113 components: - type: Transform pos: -38.5,-12.5 parent: 2 - - uid: 36271 + - uid: 36114 components: - type: Transform pos: -29.5,14.5 parent: 2 - - uid: 36272 + - uid: 36115 components: - type: Transform pos: -35.5,-1.5 parent: 2 - - uid: 36273 + - uid: 36116 components: - type: Transform pos: -42.5,-18.5 parent: 2 - - uid: 36274 + - uid: 36117 components: - type: Transform pos: -29.5,11.5 parent: 2 - - uid: 36275 + - uid: 36118 components: - type: Transform pos: -35.5,0.5 parent: 2 - - uid: 36276 + - uid: 36119 components: - type: Transform pos: -21.5,25.5 parent: 2 - - uid: 36277 + - uid: 36120 components: - type: Transform pos: -52.5,31.5 parent: 2 - - uid: 36278 + - uid: 36121 components: - type: Transform pos: -40.5,24.5 parent: 2 - - uid: 36279 + - uid: 36122 components: - type: Transform pos: -20.5,25.5 parent: 2 - - uid: 36280 + - uid: 36123 components: - type: Transform pos: -51.5,31.5 parent: 2 - - uid: 36281 + - uid: 36124 components: - type: Transform pos: -57.5,38.5 parent: 2 - - uid: 36282 + - uid: 36125 components: - type: Transform pos: 7.5,61.5 parent: 2 - - uid: 36283 + - uid: 36126 components: - type: Transform pos: 8.5,61.5 parent: 2 - - uid: 36284 + - uid: 36127 components: - type: Transform pos: -12.5,35.5 parent: 2 - - uid: 36285 + - uid: 36128 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,55.5 parent: 2 - - uid: 36286 + - uid: 36129 components: - type: Transform pos: -13.5,35.5 parent: 2 - - uid: 36287 + - uid: 36130 components: - type: Transform pos: -35.5,-15.5 parent: 2 - - uid: 36288 + - uid: 36131 components: - type: Transform pos: -35.5,-14.5 parent: 2 - - uid: 36289 + - uid: 36132 components: - type: Transform pos: -16.5,54.5 parent: 2 - - uid: 36290 + - uid: 36133 components: - type: Transform pos: 20.5,25.5 parent: 2 - - uid: 36291 + - uid: 36134 components: - type: Transform pos: 39.5,-28.5 parent: 2 - - uid: 36292 + - uid: 36135 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,54.5 parent: 2 - - uid: 36293 + - uid: 36136 components: - type: Transform pos: -1.5,35.5 parent: 2 - - uid: 36294 + - uid: 36137 components: - type: Transform pos: -23.5,24.5 parent: 2 - - uid: 36295 + - uid: 36138 components: - type: Transform pos: -35.5,-7.5 parent: 2 - - uid: 36296 + - uid: 36139 components: - type: Transform pos: -25.5,-9.5 parent: 2 - - uid: 36297 + - uid: 36140 components: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 36298 + - uid: 36141 components: - type: Transform pos: -38.5,51.5 parent: 2 - - uid: 36299 + - uid: 36142 components: - type: Transform pos: -0.5,41.5 parent: 2 - - uid: 36300 + - uid: 36143 components: - type: Transform pos: -0.5,43.5 parent: 2 - - uid: 36301 + - uid: 36144 components: - type: Transform pos: -0.5,44.5 parent: 2 - - uid: 36302 + - uid: 36145 components: - type: Transform pos: -21.5,21.5 parent: 2 - - uid: 36303 + - uid: 36146 components: - type: Transform pos: -39.5,30.5 parent: 2 - - uid: 36304 + - uid: 36147 components: - type: Transform pos: -26.5,-9.5 parent: 2 - - uid: 36305 + - uid: 36148 components: - type: Transform pos: -3.5,34.5 parent: 2 - - uid: 36306 + - uid: 36149 components: - type: Transform pos: -3.5,33.5 parent: 2 - - uid: 36307 + - uid: 36150 components: - type: Transform pos: 27.5,-23.5 parent: 2 - - uid: 36308 + - uid: 36151 components: - type: Transform pos: 26.5,-23.5 parent: 2 - - uid: 36309 + - uid: 36152 components: - type: Transform pos: 0.5,49.5 parent: 2 - - uid: 36310 + - uid: 36153 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 36311 + - uid: 36154 components: - type: Transform pos: 38.5,-48.5 parent: 2 - - uid: 36312 + - uid: 36155 components: - type: Transform pos: 33.5,-32.5 parent: 2 - - uid: 36313 + - uid: 36156 components: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 36314 + - uid: 36157 components: - type: Transform pos: 32.5,-32.5 parent: 2 - - uid: 36315 + - uid: 36158 components: - type: Transform pos: -11.5,-32.5 parent: 2 - - uid: 36316 + - uid: 36159 components: - type: Transform pos: 20.5,-12.5 parent: 2 - - uid: 36317 + - uid: 36160 components: - type: Transform pos: 13.5,66.5 parent: 2 - - uid: 36318 + - uid: 36161 components: - type: Transform pos: 51.5,-48.5 parent: 2 - - uid: 36319 + - uid: 36162 components: - type: Transform pos: 52.5,-48.5 parent: 2 - - uid: 36320 + - uid: 36163 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 36321 + - uid: 36164 components: - type: Transform pos: 30.5,-12.5 parent: 2 - - uid: 36322 + - uid: 36165 components: - type: Transform pos: 9.5,65.5 parent: 2 - - uid: 36323 + - uid: 36166 components: - type: Transform pos: 14.5,51.5 parent: 2 - - uid: 36324 + - uid: 36167 components: - type: Transform pos: 4.5,55.5 parent: 2 - - uid: 36325 + - uid: 36168 components: - type: Transform pos: 32.5,-12.5 parent: 2 - - uid: 36326 + - uid: 36169 components: - type: Transform pos: -39.5,10.5 parent: 2 - - uid: 36327 + - uid: 36170 components: - type: Transform pos: -5.5,55.5 parent: 2 - - uid: 36328 + - uid: 36171 components: - type: Transform pos: -7.5,51.5 parent: 2 - - uid: 36329 + - uid: 36172 components: - type: Transform pos: 3.5,42.5 parent: 2 - - uid: 36330 + - uid: 36173 components: - type: Transform pos: -1.5,28.5 parent: 2 - - uid: 36331 + - uid: 36174 components: - type: Transform pos: 45.5,-29.5 parent: 2 - - uid: 36332 + - uid: 36175 components: - type: Transform pos: 1.5,49.5 parent: 2 - - uid: 36333 + - uid: 36176 components: - type: Transform pos: 39.5,-32.5 parent: 2 - - uid: 36334 + - uid: 36177 components: - type: Transform pos: 3.5,59.5 parent: 2 - - uid: 36335 + - uid: 36178 components: - type: Transform pos: -39.5,-18.5 parent: 2 - - uid: 36336 + - uid: 36179 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,47.5 parent: 2 - - uid: 36337 + - uid: 36180 components: - type: Transform pos: -40.5,53.5 parent: 2 - - uid: 36338 + - uid: 36181 components: - type: Transform pos: -28.5,-9.5 parent: 2 - - uid: 36339 + - uid: 36182 components: - type: Transform pos: -2.5,-56.5 parent: 2 - - uid: 36340 + - uid: 36183 components: - type: Transform pos: -28.5,-16.5 parent: 2 - - uid: 36341 + - uid: 36184 components: - type: Transform pos: -11.5,-68.5 parent: 2 - - uid: 36342 + - uid: 36185 components: - type: Transform pos: 12.5,71.5 parent: 2 - - uid: 36343 + - uid: 36186 components: - type: Transform pos: 5.5,61.5 parent: 2 - - uid: 36344 + - uid: 36187 components: - type: Transform pos: -8.5,-56.5 parent: 2 - - uid: 36345 + - uid: 36188 components: - type: Transform pos: 1.5,30.5 parent: 2 - - uid: 36346 + - uid: 36189 components: - type: Transform pos: 1.5,31.5 parent: 2 - - uid: 36347 + - uid: 36190 components: - type: Transform pos: -21.5,-62.5 parent: 2 - - uid: 36348 + - uid: 36191 components: - type: Transform pos: 3.5,44.5 parent: 2 - - uid: 36349 + - uid: 36192 components: - type: Transform pos: -35.5,-16.5 parent: 2 - - uid: 36350 + - uid: 36193 components: - type: Transform pos: 29.5,-8.5 parent: 2 - - uid: 36351 + - uid: 36194 components: - type: Transform pos: -36.5,36.5 parent: 2 - - uid: 36352 + - uid: 36195 components: - type: Transform pos: -41.5,29.5 parent: 2 - - uid: 36353 + - uid: 36196 components: - type: Transform pos: -7.5,55.5 parent: 2 - - uid: 36354 + - uid: 36197 components: - type: Transform pos: -24.5,24.5 parent: 2 - - uid: 36355 + - uid: 36198 components: - type: Transform pos: -36.5,7.5 parent: 2 - - uid: 36356 + - uid: 36199 components: - type: Transform pos: -29.5,12.5 parent: 2 - - uid: 36357 + - uid: 36200 components: - type: Transform pos: -28.5,7.5 parent: 2 - - uid: 36358 + - uid: 36201 components: - type: Transform pos: -16.5,-21.5 parent: 2 - - uid: 36359 + - uid: 36202 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 36360 + - uid: 36203 components: - type: Transform pos: 45.5,-21.5 parent: 2 - - uid: 36361 + - uid: 36204 components: - type: Transform pos: 37.5,-6.5 parent: 2 - - uid: 36362 + - uid: 36205 components: - type: Transform pos: 14.5,48.5 parent: 2 - - uid: 36363 + - uid: 36206 components: - type: Transform pos: 15.5,55.5 parent: 2 - - uid: 36364 + - uid: 36207 components: - type: Transform pos: -21.5,53.5 parent: 2 - - uid: 36365 + - uid: 36208 components: - type: Transform pos: -40.5,-18.5 parent: 2 - - uid: 36366 + - uid: 36209 components: - type: Transform pos: -28.5,66.5 parent: 2 - - uid: 36367 + - uid: 36210 components: - type: Transform pos: -23.5,-76.5 parent: 2 - - uid: 36368 + - uid: 36211 components: - type: Transform pos: 11.5,72.5 parent: 2 - - uid: 36369 + - uid: 36212 components: - type: Transform pos: -4.5,55.5 parent: 2 - - uid: 36370 + - uid: 36213 components: - type: Transform pos: -3.5,55.5 parent: 2 - - uid: 36371 + - uid: 36214 components: - type: Transform pos: 43.5,-14.5 parent: 2 - - uid: 36372 + - uid: 36215 components: - type: Transform pos: -26.5,-10.5 parent: 2 - - uid: 36373 + - uid: 36216 components: - type: Transform pos: -41.5,35.5 parent: 2 - - uid: 36374 + - uid: 36217 components: - type: Transform pos: -43.5,38.5 parent: 2 - - uid: 36375 + - uid: 36218 components: - type: Transform pos: 26.5,-18.5 parent: 2 - - uid: 36376 + - uid: 36219 components: - type: Transform pos: 19.5,-17.5 parent: 2 - - uid: 36377 + - uid: 36220 components: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 36378 + - uid: 36221 components: - type: Transform pos: 6.5,32.5 parent: 2 - - uid: 36379 + - uid: 36222 components: - type: Transform pos: 6.5,25.5 parent: 2 - - uid: 36380 + - uid: 36223 components: - type: Transform pos: 8.5,38.5 parent: 2 - - uid: 36381 + - uid: 36224 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 36382 + - uid: 36225 components: - type: Transform pos: 1.5,33.5 parent: 2 - - uid: 36383 + - uid: 36226 components: - type: Transform pos: 23.5,25.5 parent: 2 - - uid: 36384 + - uid: 36227 components: - type: Transform pos: -25.5,-64.5 parent: 2 - - uid: 36385 + - uid: 36228 components: - type: Transform pos: -21.5,-75.5 parent: 2 - - uid: 36386 + - uid: 36229 components: - type: Transform pos: -5.5,35.5 parent: 2 - - uid: 36387 + - uid: 36230 components: - type: Transform pos: -4.5,35.5 parent: 2 - - uid: 36388 + - uid: 36231 components: - type: Transform pos: -25.5,3.5 parent: 2 - - uid: 36389 + - uid: 36232 components: - type: Transform pos: -35.5,-9.5 parent: 2 - - uid: 36390 + - uid: 36233 components: - type: Transform pos: -39.5,43.5 parent: 2 - - uid: 36391 + - uid: 36234 components: - type: Transform pos: -26.5,-16.5 parent: 2 - - uid: 36392 + - uid: 36235 components: - type: Transform pos: 8.5,72.5 parent: 2 - - uid: 36393 + - uid: 36236 components: - type: Transform pos: 39.5,-39.5 parent: 2 - - uid: 36394 + - uid: 36237 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 36395 + - uid: 36238 components: - type: Transform pos: -11.5,-52.5 parent: 2 - - uid: 36396 + - uid: 36239 components: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 36397 + - uid: 36240 components: - type: Transform pos: 30.5,-53.5 parent: 2 - - uid: 36398 + - uid: 36241 components: - type: Transform pos: 39.5,-40.5 parent: 2 - - uid: 36399 + - uid: 36242 components: - type: Transform pos: 32.5,-27.5 parent: 2 - - uid: 36400 + - uid: 36243 components: - type: Transform pos: 39.5,-41.5 parent: 2 - - uid: 36401 + - uid: 36244 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 36402 + - uid: 36245 components: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 36403 + - uid: 36246 components: - type: Transform pos: 13.5,-52.5 parent: 2 - - uid: 36404 + - uid: 36247 components: - type: Transform pos: 39.5,-43.5 parent: 2 - - uid: 36405 + - uid: 36248 components: - type: Transform pos: 28.5,-27.5 parent: 2 - - uid: 36406 + - uid: 36249 components: - type: Transform pos: 39.5,-38.5 parent: 2 - - uid: 36407 + - uid: 36250 components: - type: Transform pos: 39.5,-37.5 parent: 2 - - uid: 36408 + - uid: 36251 components: - type: Transform pos: -75.5,-27.5 parent: 2 - - uid: 36409 + - uid: 36252 components: - type: Transform pos: 9.5,79.5 parent: 2 - - uid: 36410 + - uid: 36253 components: - type: Transform pos: -21.5,56.5 parent: 2 - - uid: 36411 + - uid: 36254 components: - type: Transform pos: 48.5,-45.5 parent: 2 - - uid: 36412 + - uid: 36255 components: - type: Transform pos: 46.5,-45.5 parent: 2 - - uid: 36413 + - uid: 36256 components: - type: Transform pos: 19.5,-18.5 parent: 2 - - uid: 36414 + - uid: 36257 components: - type: Transform pos: -15.5,25.5 parent: 2 - - uid: 36415 + - uid: 36258 components: - type: Transform pos: 3.5,39.5 parent: 2 - - uid: 36416 + - uid: 36259 components: - type: Transform pos: 2.5,32.5 parent: 2 - - uid: 36417 + - uid: 36260 components: - type: Transform pos: 1.5,34.5 parent: 2 - - uid: 36418 + - uid: 36261 components: - type: Transform pos: 24.5,25.5 parent: 2 - - uid: 36419 + - uid: 36262 components: - type: Transform pos: 3.5,66.5 parent: 2 - - uid: 36420 + - uid: 36263 components: - type: Transform pos: -3.5,28.5 parent: 2 - - uid: 36421 + - uid: 36264 components: - type: Transform pos: -1.5,-66.5 parent: 2 - - uid: 36422 + - uid: 36265 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - - uid: 36423 + - uid: 36266 components: - type: Transform pos: -76.5,-24.5 parent: 2 - - uid: 36424 + - uid: 36267 components: - type: Transform pos: -1.5,47.5 parent: 2 - - uid: 36425 + - uid: 36268 components: - type: Transform pos: 38.5,-45.5 parent: 2 - - uid: 36426 + - uid: 36269 components: - type: Transform pos: -11.5,-36.5 parent: 2 - - uid: 36427 + - uid: 36270 components: - type: Transform pos: -32.5,-54.5 parent: 2 - - uid: 36428 + - uid: 36271 components: - type: Transform pos: -32.5,-50.5 parent: 2 - - uid: 36429 + - uid: 36272 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 36430 + - uid: 36273 components: - type: Transform pos: -34.5,-50.5 parent: 2 - - uid: 36431 + - uid: 36274 components: - type: Transform pos: -11.5,-37.5 parent: 2 - - uid: 36432 + - uid: 36275 components: - type: Transform pos: 36.5,-45.5 parent: 2 - - uid: 36433 + - uid: 36276 components: - type: Transform pos: 35.5,-47.5 parent: 2 - - uid: 36434 + - uid: 36277 components: - type: Transform pos: 27.5,-26.5 parent: 2 - - uid: 36435 + - uid: 36278 components: - type: Transform pos: -11.5,35.5 parent: 2 - - uid: 36436 + - uid: 36279 components: - type: Transform pos: -22.5,58.5 parent: 2 - - uid: 36437 + - uid: 36280 components: - type: Transform pos: 40.5,-74.5 parent: 2 - - uid: 36438 + - uid: 36281 components: - type: Transform pos: 39.5,-45.5 parent: 2 - - uid: 36439 + - uid: 36282 components: - type: Transform pos: -13.5,-32.5 parent: 2 - - uid: 36440 + - uid: 36283 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-47.5 parent: 2 - - uid: 36441 + - uid: 36284 components: - type: Transform pos: -7.5,35.5 parent: 2 - - uid: 36442 + - uid: 36285 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-47.5 parent: 2 - - uid: 36443 + - uid: 36286 components: - type: Transform pos: -41.5,27.5 parent: 2 - - uid: 36444 + - uid: 36287 components: - type: Transform pos: 15.5,-36.5 parent: 2 - - uid: 36445 + - uid: 36288 components: - type: Transform pos: 1.5,-49.5 parent: 2 - - uid: 36446 + - uid: 36289 components: - type: Transform pos: 40.5,-72.5 parent: 2 - - uid: 36447 + - uid: 36290 components: - type: Transform pos: 35.5,-46.5 parent: 2 - - uid: 36448 + - uid: 36291 components: - type: Transform pos: 39.5,-33.5 parent: 2 - - uid: 36449 + - uid: 36292 components: - type: Transform pos: -28.5,-18.5 parent: 2 - - uid: 36450 + - uid: 36293 components: - type: Transform pos: -26.5,16.5 parent: 2 - - uid: 36451 + - uid: 36294 components: - type: Transform pos: -40.5,26.5 parent: 2 - - uid: 36452 + - uid: 36295 components: - type: Transform pos: -27.5,31.5 parent: 2 - - uid: 36453 + - uid: 36296 components: - type: Transform pos: 23.5,26.5 parent: 2 - - uid: 36454 + - uid: 36297 components: - type: Transform pos: 40.5,-73.5 parent: 2 - - uid: 36455 + - uid: 36298 components: - type: Transform pos: 29.5,-54.5 parent: 2 - - uid: 36456 + - uid: 36299 components: - type: Transform pos: -6.5,25.5 parent: 2 - - uid: 36457 + - uid: 36300 components: - type: Transform pos: -7.5,34.5 parent: 2 - - uid: 36458 + - uid: 36301 components: - type: Transform pos: -26.5,40.5 parent: 2 - - uid: 36459 + - uid: 36302 components: - type: Transform pos: 25.5,-40.5 parent: 2 - - uid: 36460 + - uid: 36303 components: - type: Transform pos: 16.5,-22.5 parent: 2 - - uid: 36461 + - uid: 36304 components: - type: Transform pos: -20.5,-20.5 parent: 2 - - uid: 36462 + - uid: 36305 components: - type: Transform pos: 37.5,-70.5 parent: 2 - - uid: 36463 + - uid: 36306 components: - type: Transform pos: 23.5,-32.5 parent: 2 - - uid: 36464 + - uid: 36307 components: - type: Transform pos: -75.5,-31.5 parent: 2 - - uid: 36465 + - uid: 36308 components: - type: Transform pos: -75.5,-21.5 parent: 2 - - uid: 36466 + - uid: 36309 components: - type: Transform pos: 39.5,-35.5 parent: 2 - - uid: 36467 + - uid: 36310 components: - type: Transform pos: -34.5,38.5 parent: 2 - - uid: 36468 + - uid: 36311 components: - type: Transform pos: -34.5,41.5 parent: 2 - - uid: 36469 + - uid: 36312 components: - type: Transform pos: -35.5,-12.5 parent: 2 - - uid: 36470 + - uid: 36313 components: - type: Transform pos: -26.5,-17.5 parent: 2 - - uid: 36471 + - uid: 36314 components: - type: Transform pos: -34.5,43.5 parent: 2 - - uid: 36472 + - uid: 36315 components: - type: Transform pos: -33.5,31.5 parent: 2 - - uid: 36473 + - uid: 36316 components: - type: Transform pos: -3.5,27.5 parent: 2 - - uid: 36474 + - uid: 36317 components: - type: Transform pos: -35.5,-13.5 parent: 2 - - uid: 36475 + - uid: 36318 components: - type: Transform pos: 15.5,-27.5 parent: 2 - - uid: 36476 + - uid: 36319 components: - type: Transform pos: 23.5,-26.5 parent: 2 - - uid: 36477 + - uid: 36320 components: - type: Transform pos: 24.5,-32.5 parent: 2 - - uid: 36478 + - uid: 36321 components: - type: Transform pos: 19.5,-24.5 parent: 2 - - uid: 36479 + - uid: 36322 components: - type: Transform pos: -11.5,-39.5 parent: 2 - - uid: 36480 + - uid: 36323 components: - type: Transform pos: -11.5,-41.5 parent: 2 - - uid: 36481 + - uid: 36324 components: - type: Transform pos: -11.5,-43.5 parent: 2 - - uid: 36482 + - uid: 36325 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,55.5 parent: 2 - - uid: 36483 + - uid: 36326 components: - type: Transform pos: -39.5,9.5 parent: 2 - - uid: 36484 + - uid: 36327 components: - type: Transform pos: -4.5,44.5 parent: 2 - - uid: 36485 + - uid: 36328 components: - type: Transform pos: -4.5,25.5 parent: 2 - - uid: 36486 + - uid: 36329 components: - type: Transform pos: -34.5,33.5 parent: 2 - - uid: 36487 + - uid: 36330 components: - type: Transform pos: -8.5,44.5 parent: 2 - - uid: 36488 + - uid: 36331 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-0.5 parent: 2 - - uid: 36489 + - uid: 36332 components: - type: Transform pos: 29.5,-53.5 parent: 2 - - uid: 36490 + - uid: 36333 components: - type: Transform pos: 15.5,-21.5 parent: 2 - - uid: 36491 + - uid: 36334 components: - type: Transform pos: -3.5,25.5 parent: 2 - - uid: 36492 + - uid: 36335 components: - type: Transform pos: -14.5,25.5 parent: 2 - - uid: 36493 + - uid: 36336 components: - type: Transform pos: -33.5,56.5 parent: 2 - - uid: 36494 + - uid: 36337 components: - type: Transform pos: -16.5,21.5 parent: 2 - - uid: 36495 + - uid: 36338 components: - type: Transform pos: -15.5,-32.5 parent: 2 - - uid: 36496 + - uid: 36339 components: - type: Transform pos: -31.5,56.5 parent: 2 - - uid: 36497 + - uid: 36340 components: - type: Transform pos: 15.5,-22.5 parent: 2 - - uid: 36498 + - uid: 36341 components: - type: Transform pos: -32.5,56.5 parent: 2 - - uid: 36499 + - uid: 36342 components: - type: Transform pos: -25.5,40.5 parent: 2 - - uid: 36500 + - uid: 36343 components: - type: Transform pos: 6.5,61.5 parent: 2 - - uid: 36501 + - uid: 36344 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 36502 + - uid: 36345 components: - type: Transform pos: -20.5,7.5 parent: 2 - - uid: 36503 + - uid: 36346 components: - type: Transform pos: 35.5,-49.5 parent: 2 - - uid: 36504 + - uid: 36347 components: - type: Transform pos: -29.5,18.5 parent: 2 - - uid: 36505 + - uid: 36348 components: - type: Transform pos: -39.5,3.5 parent: 2 - - uid: 36506 + - uid: 36349 components: - type: Transform pos: -35.5,-11.5 parent: 2 - - uid: 36507 + - uid: 36350 components: - type: Transform pos: -0.5,34.5 parent: 2 - - uid: 36508 + - uid: 36351 components: - type: Transform pos: 28.5,3.5 parent: 2 - - uid: 36509 + - uid: 36352 components: - type: Transform pos: 47.5,-48.5 parent: 2 - - uid: 36510 + - uid: 36353 components: - type: Transform pos: 38.5,-54.5 parent: 2 - - uid: 36511 + - uid: 36354 components: - type: Transform pos: 32.5,-8.5 parent: 2 - - uid: 36512 + - uid: 36355 components: - type: Transform pos: 24.5,65.5 parent: 2 - - uid: 36513 + - uid: 36356 components: - type: Transform pos: -39.5,46.5 parent: 2 - - uid: 36514 + - uid: 36357 components: - type: Transform pos: -25.5,-70.5 parent: 2 - - uid: 36515 + - uid: 36358 components: - type: Transform pos: 19.5,-16.5 parent: 2 - - uid: 36516 + - uid: 36359 components: - type: Transform pos: 22.5,57.5 parent: 2 - - uid: 36517 + - uid: 36360 components: - type: Transform pos: 39.5,-5.5 parent: 2 - - uid: 36518 + - uid: 36361 components: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 36519 + - uid: 36362 components: - type: Transform pos: 26.5,33.5 parent: 2 - - uid: 36520 + - uid: 36363 components: - type: Transform pos: 7.5,38.5 parent: 2 - - uid: 36521 + - uid: 36364 components: - type: Transform pos: 54.5,-12.5 parent: 2 - - uid: 36522 + - uid: 36365 components: - type: Transform pos: 43.5,-12.5 parent: 2 - - uid: 36523 + - uid: 36366 components: - type: Transform pos: 54.5,-16.5 parent: 2 - - uid: 36524 + - uid: 36367 components: - type: Transform pos: 21.5,-12.5 parent: 2 - - uid: 36525 + - uid: 36368 components: - type: Transform pos: -22.5,66.5 parent: 2 - - uid: 36526 + - uid: 36369 components: - type: Transform pos: 8.5,51.5 parent: 2 - - uid: 36527 + - uid: 36370 components: - type: Transform pos: -20.5,54.5 parent: 2 - - uid: 36528 + - uid: 36371 components: - type: Transform pos: -35.5,-10.5 parent: 2 - - uid: 36529 + - uid: 36372 components: - type: Transform pos: -25.5,-18.5 parent: 2 - - uid: 36530 + - uid: 36373 components: - type: Transform pos: -22.5,-18.5 parent: 2 - - uid: 36531 + - uid: 36374 components: - type: Transform pos: -2.5,47.5 parent: 2 - - uid: 36532 + - uid: 36375 components: - type: Transform pos: -28.5,61.5 parent: 2 - - uid: 36533 + - uid: 36376 components: - type: Transform pos: -28.5,60.5 parent: 2 - - uid: 36534 + - uid: 36377 components: - type: Transform pos: 8.5,62.5 parent: 2 - - uid: 36535 + - uid: 36378 components: - type: Transform pos: 8.5,65.5 parent: 2 - - uid: 36536 + - uid: 36379 components: - type: Transform pos: 31.5,-8.5 parent: 2 - - uid: 36537 + - uid: 36380 components: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 36538 + - uid: 36381 components: - type: Transform pos: -29.5,19.5 parent: 2 - - uid: 36539 + - uid: 36382 components: - type: Transform pos: -33.5,-16.5 parent: 2 - - uid: 36540 + - uid: 36383 components: - type: Transform pos: -36.5,58.5 parent: 2 - - uid: 36541 + - uid: 36384 components: - type: Transform pos: -41.5,58.5 parent: 2 - - uid: 36542 + - uid: 36385 components: - type: Transform pos: -40.5,58.5 parent: 2 - - uid: 36543 + - uid: 36386 components: - type: Transform pos: -39.5,58.5 parent: 2 - - uid: 36544 + - uid: 36387 components: - type: Transform pos: -22.5,59.5 parent: 2 - - uid: 36545 + - uid: 36388 components: - type: Transform pos: -22.5,64.5 parent: 2 - - uid: 36546 + - uid: 36389 components: - type: Transform pos: -22.5,63.5 parent: 2 - - uid: 36547 + - uid: 36390 components: - type: Transform pos: -23.5,64.5 parent: 2 - - uid: 36548 + - uid: 36391 components: - type: Transform pos: -21.5,-18.5 parent: 2 - - uid: 36549 + - uid: 36392 components: - type: Transform pos: -23.5,62.5 parent: 2 - - uid: 36550 + - uid: 36393 components: - type: Transform pos: -11.5,-76.5 parent: 2 - - uid: 36551 + - uid: 36394 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 36552 + - uid: 36395 components: - type: Transform pos: -29.5,29.5 parent: 2 - - uid: 36553 + - uid: 36396 components: - type: Transform pos: -7.5,52.5 parent: 2 - - uid: 36554 + - uid: 36397 components: - type: Transform pos: -8.5,51.5 parent: 2 - - uid: 36555 + - uid: 36398 components: - type: Transform pos: 34.5,-24.5 parent: 2 - - uid: 36556 + - uid: 36399 components: - type: Transform pos: -5.5,46.5 parent: 2 - - uid: 36557 + - uid: 36400 components: - type: Transform pos: -5.5,47.5 parent: 2 - - uid: 36558 + - uid: 36401 components: - type: Transform pos: 37.5,-21.5 parent: 2 - - uid: 36559 + - uid: 36402 components: - type: Transform pos: 15.5,57.5 parent: 2 - - uid: 36560 + - uid: 36403 components: - type: Transform pos: 37.5,-16.5 parent: 2 - - uid: 36561 + - uid: 36404 components: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 36562 + - uid: 36405 components: - type: Transform pos: 42.5,-17.5 parent: 2 - - uid: 36563 + - uid: 36406 components: - type: Transform pos: 49.5,-29.5 parent: 2 - - uid: 36564 + - uid: 36407 components: - type: Transform pos: 38.5,-21.5 parent: 2 - - uid: 36565 + - uid: 36408 components: - type: Transform pos: 15.5,64.5 parent: 2 - - uid: 36566 + - uid: 36409 components: - type: Transform pos: -49.5,8.5 parent: 2 - - uid: 36567 + - uid: 36410 components: - type: Transform pos: 37.5,-19.5 parent: 2 - - uid: 36568 + - uid: 36411 components: - type: Transform pos: 16.5,64.5 parent: 2 - - uid: 36569 + - uid: 36412 components: - type: Transform pos: 54.5,-29.5 parent: 2 - - uid: 36570 + - uid: 36413 components: - type: Transform pos: 43.5,-26.5 parent: 2 - - uid: 36571 + - uid: 36414 components: - type: Transform pos: 25.5,-8.5 parent: 2 - - uid: 36572 + - uid: 36415 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 36573 + - uid: 36416 components: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 36574 + - uid: 36417 components: - type: Transform pos: 45.5,-26.5 parent: 2 - - uid: 36575 + - uid: 36418 components: - type: Transform pos: 26.5,-8.5 parent: 2 - - uid: 36576 + - uid: 36419 components: - type: Transform pos: 20.5,-8.5 parent: 2 - - uid: 36577 + - uid: 36420 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 36578 + - uid: 36421 components: - type: Transform pos: 46.5,-23.5 parent: 2 - - uid: 36579 + - uid: 36422 components: - type: Transform pos: 54.5,-22.5 parent: 2 - - uid: 36580 + - uid: 36423 components: - type: Transform pos: 54.5,-27.5 parent: 2 - - uid: 36581 + - uid: 36424 components: - type: Transform pos: -9.5,-81.5 parent: 2 - - uid: 36582 + - uid: 36425 components: - type: Transform pos: 1.5,28.5 parent: 2 - - uid: 36583 + - uid: 36426 components: - type: Transform pos: 5.5,55.5 parent: 2 - - uid: 36584 + - uid: 36427 components: - type: Transform pos: 7.5,66.5 parent: 2 - - uid: 36585 + - uid: 36428 components: - type: Transform pos: 8.5,64.5 parent: 2 - - uid: 36586 + - uid: 36429 components: - type: Transform pos: -7.5,53.5 parent: 2 - - uid: 36587 + - uid: 36430 components: - type: Transform pos: -35.5,-2.5 parent: 2 - - uid: 36588 + - uid: 36431 components: - type: Transform pos: -35.5,44.5 parent: 2 - - uid: 36589 + - uid: 36432 components: - type: Transform pos: -34.5,44.5 parent: 2 - - uid: 36590 + - uid: 36433 components: - type: Transform pos: -3.5,43.5 parent: 2 - - uid: 36591 + - uid: 36434 components: - type: Transform pos: -40.5,52.5 parent: 2 - - uid: 36592 + - uid: 36435 components: - type: Transform pos: -0.5,25.5 parent: 2 - - uid: 36593 + - uid: 36436 components: - type: Transform pos: -29.5,-59.5 parent: 2 - - uid: 36594 + - uid: 36437 components: - type: Transform pos: -4.5,-56.5 parent: 2 - - uid: 36595 + - uid: 36438 components: - type: Transform pos: 5.5,66.5 parent: 2 - - uid: 36596 + - uid: 36439 components: - type: Transform pos: -21.5,66.5 parent: 2 - - uid: 36597 + - uid: 36440 components: - type: Transform pos: -20.5,-18.5 parent: 2 - - uid: 36598 + - uid: 36441 components: - type: Transform pos: 9.5,73.5 parent: 2 - - uid: 36599 + - uid: 36442 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,52.5 parent: 2 - - uid: 36600 + - uid: 36443 components: - type: Transform pos: -28.5,16.5 parent: 2 - - uid: 36601 + - uid: 36444 components: - type: Transform pos: -41.5,26.5 parent: 2 - - uid: 36602 + - uid: 36445 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 36603 + - uid: 36446 components: - type: Transform pos: -20.5,-6.5 parent: 2 - - uid: 36604 + - uid: 36447 components: - type: Transform pos: -42.5,-17.5 parent: 2 - - uid: 36605 + - uid: 36448 components: - type: Transform pos: -36.5,24.5 parent: 2 - - uid: 36606 + - uid: 36449 components: - type: Transform pos: -37.5,24.5 parent: 2 - - uid: 36607 + - uid: 36450 components: - type: Transform pos: -31.5,39.5 parent: 2 - - uid: 36608 + - uid: 36451 components: - type: Transform pos: -4.5,40.5 parent: 2 - - uid: 36609 + - uid: 36452 components: - type: Transform pos: -10.5,34.5 parent: 2 - - uid: 36610 + - uid: 36453 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 36611 + - uid: 36454 components: - type: Transform pos: -59.5,13.5 parent: 2 - - uid: 36612 + - uid: 36455 components: - type: Transform pos: -36.5,25.5 parent: 2 - - uid: 36613 + - uid: 36456 components: - type: Transform pos: -40.5,54.5 parent: 2 - - uid: 36614 + - uid: 36457 components: - type: Transform pos: -20.5,-9.5 parent: 2 - - uid: 36615 + - uid: 36458 components: - type: Transform pos: -38.5,24.5 parent: 2 - - uid: 36616 + - uid: 36459 components: - type: Transform pos: -29.5,8.5 parent: 2 - - uid: 36617 + - uid: 36460 components: - type: Transform pos: -35.5,-5.5 parent: 2 - - uid: 36618 + - uid: 36461 components: - type: Transform pos: -42.5,-12.5 parent: 2 - - uid: 36619 + - uid: 36462 components: - type: Transform pos: -41.5,-12.5 parent: 2 - - uid: 36620 + - uid: 36463 components: - type: Transform pos: -39.5,8.5 parent: 2 - - uid: 36621 + - uid: 36464 components: - type: Transform pos: 13.5,-53.5 parent: 2 - - uid: 36622 + - uid: 36465 components: - type: Transform pos: -0.5,66.5 parent: 2 - - uid: 36623 + - uid: 36466 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-45.5 parent: 2 - - uid: 36624 + - uid: 36467 components: - type: Transform pos: 23.5,39.5 parent: 2 - - uid: 36625 + - uid: 36468 components: - type: Transform pos: 20.5,-16.5 parent: 2 - - uid: 36626 + - uid: 36469 components: - type: Transform pos: 7.5,46.5 parent: 2 - - uid: 36627 + - uid: 36470 components: - type: Transform pos: 43.5,-36.5 parent: 2 - - uid: 36628 + - uid: 36471 components: - type: Transform pos: 34.5,29.5 parent: 2 - - uid: 36629 + - uid: 36472 components: - type: Transform pos: 49.5,-21.5 parent: 2 - - uid: 36630 + - uid: 36473 components: - type: Transform pos: -0.5,46.5 parent: 2 - - uid: 36631 + - uid: 36474 components: - type: Transform pos: -34.5,34.5 parent: 2 - - uid: 36632 + - uid: 36475 components: - type: Transform pos: -7.5,32.5 parent: 2 - - uid: 36633 + - uid: 36476 components: - type: Transform pos: 11.5,73.5 parent: 2 - - uid: 36634 + - uid: 36477 components: - type: Transform pos: -61.5,16.5 parent: 2 - - uid: 36635 + - uid: 36478 components: - type: Transform pos: 8.5,55.5 parent: 2 - - uid: 36636 + - uid: 36479 components: - type: Transform pos: 1.5,37.5 parent: 2 - - uid: 36637 + - uid: 36480 components: - type: Transform pos: 17.5,64.5 parent: 2 - - uid: 36638 + - uid: 36481 components: - type: Transform pos: 39.5,-48.5 parent: 2 - - uid: 36639 + - uid: 36482 components: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 36640 + - uid: 36483 components: - type: Transform pos: 30.5,-16.5 parent: 2 - - uid: 36641 + - uid: 36484 components: - type: Transform pos: 30.5,-17.5 parent: 2 - - uid: 36642 + - uid: 36485 components: - type: Transform pos: 20.5,57.5 parent: 2 - - uid: 36643 + - uid: 36486 components: - type: Transform pos: 1.5,38.5 parent: 2 - - uid: 36644 + - uid: 36487 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-44.5 parent: 2 - - uid: 36645 + - uid: 36488 components: - type: Transform pos: -11.5,-70.5 parent: 2 - - uid: 36646 + - uid: 36489 components: - type: Transform pos: -11.5,-63.5 parent: 2 - - uid: 36647 + - uid: 36490 components: - type: Transform pos: -21.5,-77.5 parent: 2 - - uid: 36648 + - uid: 36491 components: - type: Transform pos: -22.5,-62.5 parent: 2 - - uid: 36649 + - uid: 36492 components: - type: Transform pos: 42.5,-35.5 parent: 2 - - uid: 36650 + - uid: 36493 components: - type: Transform pos: 5.5,46.5 parent: 2 - - uid: 36651 + - uid: 36494 components: - type: Transform pos: -20.5,21.5 parent: 2 - - uid: 36652 + - uid: 36495 components: - type: Transform pos: -75.5,-23.5 parent: 2 - - uid: 36653 + - uid: 36496 components: - type: Transform pos: -57.5,36.5 parent: 2 - - uid: 36654 + - uid: 36497 components: - type: Transform pos: -57.5,32.5 parent: 2 - - uid: 36655 + - uid: 36498 components: - type: Transform pos: -26.5,3.5 parent: 2 - - uid: 36656 + - uid: 36499 components: - type: Transform pos: -34.5,-16.5 parent: 2 - - uid: 36657 + - uid: 36500 components: - type: Transform pos: -29.5,20.5 parent: 2 - - uid: 36658 + - uid: 36501 components: - type: Transform pos: -31.5,38.5 parent: 2 - - uid: 36659 + - uid: 36502 components: - type: Transform pos: -34.5,39.5 parent: 2 - - uid: 36660 + - uid: 36503 components: - type: Transform pos: -31.5,32.5 parent: 2 - - uid: 36661 + - uid: 36504 components: - type: Transform pos: -39.5,49.5 parent: 2 - - uid: 36662 + - uid: 36505 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 36663 + - uid: 36506 components: - type: Transform pos: -28.5,3.5 parent: 2 - - uid: 36664 + - uid: 36507 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 36665 + - uid: 36508 components: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 36666 + - uid: 36509 components: - type: Transform pos: -18.5,-81.5 parent: 2 - - uid: 36667 + - uid: 36510 components: - type: Transform pos: -9.5,-78.5 parent: 2 - - uid: 36668 + - uid: 36511 components: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 36669 + - uid: 36512 components: - type: Transform pos: -34.5,-58.5 parent: 2 - - uid: 36670 + - uid: 36513 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-77.5 parent: 2 - - uid: 36671 + - uid: 36514 components: - type: Transform pos: 15.5,63.5 parent: 2 - - uid: 36672 + - uid: 36515 components: - type: Transform pos: -29.5,-61.5 parent: 2 - - uid: 36673 + - uid: 36516 components: - type: Transform pos: -2.5,-62.5 parent: 2 - - uid: 36674 + - uid: 36517 components: - type: Transform pos: -36.5,31.5 parent: 2 - - uid: 36675 + - uid: 36518 components: - type: Transform pos: 11.5,29.5 parent: 2 - - uid: 36676 + - uid: 36519 components: - type: Transform pos: -29.5,26.5 parent: 2 - - uid: 36677 + - uid: 36520 components: - type: Transform pos: -36.5,30.5 parent: 2 - - uid: 36678 + - uid: 36521 components: - type: Transform pos: -41.5,30.5 parent: 2 - - uid: 36679 + - uid: 36522 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 36680 + - uid: 36523 components: - type: Transform pos: 19.5,-32.5 parent: 2 - - uid: 36681 + - uid: 36524 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 36682 + - uid: 36525 components: - type: Transform pos: 35.5,10.5 parent: 2 - - uid: 36683 + - uid: 36526 components: - type: Transform pos: -29.5,3.5 parent: 2 - - uid: 36684 + - uid: 36527 components: - type: Transform pos: -42.5,-16.5 parent: 2 - - uid: 36685 + - uid: 36528 components: - type: Transform pos: -22.5,16.5 parent: 2 - - uid: 36686 + - uid: 36529 components: - type: Transform pos: -39.5,26.5 parent: 2 - - uid: 36687 + - uid: 36530 components: - type: Transform pos: -34.5,3.5 parent: 2 - - uid: 36688 + - uid: 36531 components: - type: Transform pos: -42.5,-14.5 parent: 2 - - uid: 36689 + - uid: 36532 components: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 36690 + - uid: 36533 components: - type: Transform pos: -39.5,25.5 parent: 2 - - uid: 36691 + - uid: 36534 components: - type: Transform pos: -32.5,61.5 parent: 2 - - uid: 36692 + - uid: 36535 components: - type: Transform pos: -0.5,38.5 parent: 2 - - uid: 36693 + - uid: 36536 components: - type: Transform pos: -0.5,39.5 parent: 2 - - uid: 36694 + - uid: 36537 components: - type: Transform pos: -23.5,-13.5 parent: 2 - - uid: 36695 + - uid: 36538 components: - type: Transform pos: -10.5,26.5 parent: 2 - - uid: 36696 + - uid: 36539 components: - type: Transform pos: 19.5,-28.5 parent: 2 - - uid: 36697 + - uid: 36540 components: - type: Transform pos: 39.5,-29.5 parent: 2 - - uid: 36698 + - uid: 36541 components: - type: Transform pos: -39.5,24.5 parent: 2 - - uid: 36699 + - uid: 36542 components: - type: Transform pos: -42.5,-15.5 parent: 2 - - uid: 36700 + - uid: 36543 components: - type: Transform pos: -20.5,15.5 parent: 2 - - uid: 36701 + - uid: 36544 components: - type: Transform pos: -20.5,-4.5 parent: 2 - - uid: 36702 + - uid: 36545 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 36703 + - uid: 36546 components: - type: Transform pos: 13.5,-51.5 parent: 2 - - uid: 36704 + - uid: 36547 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 36705 + - uid: 36548 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-42.5 parent: 2 - - uid: 36706 + - uid: 36549 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 36707 + - uid: 36550 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-64.5 parent: 2 - - uid: 36708 + - uid: 36551 components: - type: Transform pos: -12.5,51.5 parent: 2 - - uid: 36709 + - uid: 36552 components: - type: Transform pos: -24.5,43.5 parent: 2 - - uid: 36710 + - uid: 36553 components: - type: Transform pos: -18.5,-79.5 parent: 2 - - uid: 36711 + - uid: 36554 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 36712 + - uid: 36555 components: - type: Transform pos: -27.5,29.5 parent: 2 - - uid: 36713 + - uid: 36556 components: - type: Transform pos: 37.5,-63.5 parent: 2 - - uid: 36714 + - uid: 36557 components: - type: Transform pos: -37.5,36.5 parent: 2 - - uid: 36715 + - uid: 36558 components: - type: Transform pos: -28.5,26.5 parent: 2 - - uid: 36716 + - uid: 36559 components: - type: Transform pos: -28.5,65.5 parent: 2 - - uid: 36717 + - uid: 36560 components: - type: Transform pos: -28.5,18.5 parent: 2 - - uid: 36718 + - uid: 36561 components: - type: Transform pos: -32.5,-16.5 parent: 2 - - uid: 36719 + - uid: 36562 components: - type: Transform pos: -28.5,-68.5 parent: 2 - - uid: 36720 + - uid: 36563 components: - type: Transform pos: -10.5,-36.5 parent: 2 - - uid: 36721 + - uid: 36564 components: - type: Transform pos: -27.5,18.5 parent: 2 - - uid: 36722 + - uid: 36565 components: - type: Transform pos: -40.5,36.5 parent: 2 - - uid: 36723 + - uid: 36566 components: - type: Transform pos: 1.5,-42.5 parent: 2 - - uid: 36724 + - uid: 36567 components: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 36725 + - uid: 36568 components: - type: Transform pos: -44.5,-45.5 parent: 2 - - uid: 36726 + - uid: 36569 components: - type: Transform pos: 19.5,-20.5 parent: 2 - - uid: 36727 + - uid: 36570 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 36728 + - uid: 36571 components: - type: Transform pos: 2.5,-44.5 parent: 2 - - uid: 36729 + - uid: 36572 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,37.5 parent: 2 - - uid: 36730 + - uid: 36573 components: - type: Transform pos: 5.5,-47.5 parent: 2 - - uid: 36731 + - uid: 36574 components: - type: Transform pos: -47.5,-45.5 parent: 2 - - uid: 36732 + - uid: 36575 components: - type: Transform pos: -35.5,47.5 parent: 2 - - uid: 36733 + - uid: 36576 components: - type: Transform pos: -57.5,31.5 parent: 2 - - uid: 36734 + - uid: 36577 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 36735 + - uid: 36578 components: - type: Transform pos: 19.5,-40.5 parent: 2 - - uid: 36736 + - uid: 36579 components: - type: Transform pos: 33.5,-28.5 parent: 2 - - uid: 36737 + - uid: 36580 components: - type: Transform pos: -56.5,-45.5 parent: 2 - - uid: 36738 + - uid: 36581 components: - type: Transform pos: 21.5,-29.5 parent: 2 - - uid: 36739 + - uid: 36582 components: - type: Transform pos: -9.5,-36.5 parent: 2 - - uid: 36740 + - uid: 36583 components: - type: Transform pos: -4.5,42.5 parent: 2 - - uid: 36741 + - uid: 36584 components: - type: Transform pos: -5.5,45.5 parent: 2 - - uid: 36742 + - uid: 36585 components: - type: Transform pos: -5.5,44.5 parent: 2 - - uid: 36743 + - uid: 36586 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-45.5 parent: 2 - - uid: 36744 + - uid: 36587 components: - type: Transform pos: 14.5,55.5 parent: 2 - - uid: 36745 + - uid: 36588 components: - type: Transform pos: 42.5,-48.5 parent: 2 - - uid: 36746 + - uid: 36589 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-12.5 parent: 2 - - uid: 36747 + - uid: 36590 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 36748 + - uid: 36591 components: - type: Transform pos: 32.5,-5.5 parent: 2 - - uid: 36749 + - uid: 36592 components: - type: Transform pos: -11.5,-74.5 parent: 2 - - uid: 36750 + - uid: 36593 components: - type: Transform pos: -39.5,-58.5 parent: 2 - - uid: 36751 + - uid: 36594 components: - type: Transform pos: -1.5,43.5 parent: 2 - - uid: 36752 + - uid: 36595 components: - type: Transform pos: -16.5,-54.5 parent: 2 - - uid: 36753 + - uid: 36596 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 36754 + - uid: 36597 components: - type: Transform pos: -8.5,46.5 parent: 2 - - uid: 36755 + - uid: 36598 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,55.5 parent: 2 - - uid: 36756 + - uid: 36599 components: - type: Transform pos: 65.5,-20.5 parent: 2 - - uid: 36757 + - uid: 36600 components: - type: Transform pos: -40.5,43.5 parent: 2 - - uid: 36758 + - uid: 36601 components: - type: Transform pos: 45.5,7.5 parent: 2 - - uid: 36759 + - uid: 36602 components: - type: Transform pos: 23.5,68.5 parent: 2 - - uid: 36760 + - uid: 36603 components: - type: Transform pos: -10.5,-32.5 parent: 2 - - uid: 36761 + - uid: 36604 components: - type: Transform pos: -10.5,-31.5 parent: 2 - - uid: 36762 + - uid: 36605 components: - type: Transform pos: 77.5,-20.5 parent: 2 - - uid: 36763 + - uid: 36606 components: - type: Transform pos: 42.5,-31.5 parent: 2 - - uid: 36764 + - uid: 36607 components: - type: Transform pos: 5.5,50.5 parent: 2 - - uid: 36765 + - uid: 36608 components: - type: Transform pos: 28.5,29.5 parent: 2 - - uid: 36766 + - uid: 36609 components: - type: Transform pos: 18.5,33.5 parent: 2 - - uid: 36767 + - uid: 36610 components: - type: Transform pos: 50.5,-15.5 parent: 2 - - uid: 36768 + - uid: 36611 components: - type: Transform pos: -10.5,-30.5 parent: 2 - - uid: 36769 + - uid: 36612 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-46.5 parent: 2 - - uid: 36770 + - uid: 36613 components: - type: Transform pos: 8.5,60.5 parent: 2 - - uid: 36771 + - uid: 36614 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,42.5 parent: 2 - - uid: 36772 + - uid: 36615 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 36773 + - uid: 36616 components: - type: Transform pos: -22.5,27.5 parent: 2 - - uid: 36774 + - uid: 36617 components: - type: Transform pos: 42.5,-30.5 parent: 2 - - uid: 36775 + - uid: 36618 components: - type: Transform pos: 47.5,-12.5 parent: 2 - - uid: 36776 + - uid: 36619 components: - type: Transform pos: 42.5,-39.5 parent: 2 - - uid: 36777 + - uid: 36620 components: - type: Transform pos: 43.5,-15.5 parent: 2 - - uid: 36778 + - uid: 36621 components: - type: Transform pos: 42.5,-23.5 parent: 2 - - uid: 36779 + - uid: 36622 components: - type: Transform pos: 53.5,-17.5 parent: 2 - - uid: 36780 + - uid: 36623 components: - type: Transform pos: 37.5,-17.5 parent: 2 - - uid: 36781 + - uid: 36624 components: - type: Transform pos: 42.5,-37.5 parent: 2 - - uid: 36782 + - uid: 36625 components: - type: Transform pos: 34.5,-17.5 parent: 2 - - uid: 36783 + - uid: 36626 components: - type: Transform pos: 36.5,-17.5 parent: 2 - - uid: 36784 + - uid: 36627 components: - type: Transform pos: 16.5,68.5 parent: 2 - - uid: 36785 + - uid: 36628 components: - type: Transform pos: 51.5,-21.5 parent: 2 - - uid: 36786 + - uid: 36629 components: - type: Transform pos: 32.5,-14.5 parent: 2 - - uid: 36787 + - uid: 36630 components: - type: Transform pos: 43.5,-17.5 parent: 2 - - uid: 36788 + - uid: 36631 components: - type: Transform pos: 18.5,26.5 parent: 2 - - uid: 36789 + - uid: 36632 components: - type: Transform pos: 18.5,25.5 parent: 2 - - uid: 36790 + - uid: 36633 components: - type: Transform pos: -21.5,-64.5 parent: 2 - - uid: 36791 + - uid: 36634 components: - type: Transform pos: -25.5,-69.5 parent: 2 - - uid: 36792 + - uid: 36635 components: - type: Transform pos: -50.5,-4.5 parent: 2 - - uid: 36793 + - uid: 36636 components: - type: Transform pos: 54.5,-17.5 parent: 2 - - uid: 36794 + - uid: 36637 components: - type: Transform pos: 27.5,-12.5 parent: 2 - - uid: 36795 + - uid: 36638 components: - type: Transform pos: 24.5,-12.5 parent: 2 - - uid: 36796 + - uid: 36639 components: - type: Transform pos: 54.5,-14.5 parent: 2 - - uid: 36797 + - uid: 36640 components: - type: Transform pos: 8.5,48.5 parent: 2 - - uid: 36798 + - uid: 36641 components: - type: Transform pos: 28.5,-16.5 parent: 2 - - uid: 36799 + - uid: 36642 components: - type: Transform pos: 13.5,55.5 parent: 2 - - uid: 36800 + - uid: 36643 components: - type: Transform pos: 43.5,-48.5 parent: 2 - - uid: 36801 + - uid: 36644 components: - type: Transform pos: 14.5,63.5 parent: 2 - - uid: 36802 + - uid: 36645 components: - type: Transform pos: 39.5,-25.5 parent: 2 - - uid: 36803 + - uid: 36646 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 36804 + - uid: 36647 components: - type: Transform pos: -54.5,3.5 parent: 2 - - uid: 36805 + - uid: 36648 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 - - uid: 36806 + - uid: 36649 components: - type: Transform pos: 32.5,-16.5 parent: 2 - - uid: 36807 + - uid: 36650 components: - type: Transform pos: -53.5,7.5 parent: 2 - - uid: 36808 + - uid: 36651 components: - type: Transform pos: -3.5,-61.5 parent: 2 - - uid: 36809 + - uid: 36652 components: - type: Transform pos: 24.5,7.5 parent: 2 - - uid: 36810 + - uid: 36653 components: - type: Transform pos: 42.5,-38.5 parent: 2 - - uid: 36811 + - uid: 36654 components: - type: Transform pos: 33.5,-2.5 parent: 2 - - uid: 36812 + - uid: 36655 components: - type: Transform pos: 50.5,-25.5 parent: 2 - - uid: 36813 + - uid: 36656 components: - type: Transform pos: 19.5,-4.5 parent: 2 - - uid: 36814 + - uid: 36657 components: - type: Transform pos: 8.5,49.5 parent: 2 - - uid: 36815 + - uid: 36658 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 36816 + - uid: 36659 components: - type: Transform pos: 48.5,-51.5 parent: 2 - - uid: 36817 + - uid: 36660 components: - type: Transform pos: 50.5,-37.5 parent: 2 - - uid: 36818 + - uid: 36661 components: - type: Transform pos: 54.5,-26.5 parent: 2 - - uid: 36819 + - uid: 36662 components: - type: Transform pos: 41.5,-21.5 parent: 2 - - uid: 36820 + - uid: 36663 components: - type: Transform pos: 7.5,51.5 parent: 2 - - uid: 36821 + - uid: 36664 components: - type: Transform pos: 12.5,33.5 parent: 2 - - uid: 36822 + - uid: 36665 components: - type: Transform pos: 11.5,32.5 parent: 2 - - uid: 36823 + - uid: 36666 components: - type: Transform pos: -7.5,-56.5 parent: 2 - - uid: 36824 + - uid: 36667 components: - type: Transform pos: -21.5,-74.5 parent: 2 - - uid: 36825 + - uid: 36668 components: - type: Transform pos: 18.5,27.5 parent: 2 - - uid: 36826 + - uid: 36669 components: - type: Transform pos: 1.5,36.5 parent: 2 - - uid: 36827 + - uid: 36670 components: - type: Transform pos: 12.5,47.5 parent: 2 - - uid: 36828 + - uid: 36671 components: - type: Transform pos: -15.5,54.5 parent: 2 - - uid: 36829 + - uid: 36672 components: - type: Transform pos: 51.5,-26.5 parent: 2 - - uid: 36830 + - uid: 36673 components: - type: Transform pos: -24.5,-70.5 parent: 2 - - uid: 36831 + - uid: 36674 components: - type: Transform pos: 10.5,47.5 parent: 2 - - uid: 36832 + - uid: 36675 components: - type: Transform pos: 12.5,41.5 parent: 2 - - uid: 36833 + - uid: 36676 components: - type: Transform pos: -1.5,-73.5 parent: 2 - - uid: 36834 + - uid: 36677 components: - type: Transform pos: 53.5,-26.5 parent: 2 - - uid: 36835 + - uid: 36678 components: - type: Transform pos: 17.5,25.5 parent: 2 - - uid: 36836 + - uid: 36679 components: - type: Transform pos: 12.5,63.5 parent: 2 - - uid: 36837 + - uid: 36680 components: - type: Transform pos: -18.5,-63.5 parent: 2 - - uid: 36838 + - uid: 36681 components: - type: Transform pos: -23.5,54.5 parent: 2 - - uid: 36839 + - uid: 36682 components: - type: Transform pos: -8.5,-57.5 parent: 2 - - uid: 36840 + - uid: 36683 components: - type: Transform pos: 14.5,-53.5 parent: 2 - - uid: 36841 + - uid: 36684 components: - type: Transform pos: -31.5,24.5 parent: 2 - - uid: 36842 + - uid: 36685 components: - type: Transform pos: -20.5,-10.5 parent: 2 - - uid: 36843 + - uid: 36686 components: - type: Transform pos: -29.5,-16.5 parent: 2 - - uid: 36844 + - uid: 36687 components: - type: Transform pos: -23.5,28.5 parent: 2 - - uid: 36845 + - uid: 36688 components: - type: Transform pos: -8.5,-58.5 parent: 2 - - uid: 36846 + - uid: 36689 components: - type: Transform pos: -24.5,44.5 parent: 2 - - uid: 36847 + - uid: 36690 components: - type: Transform pos: -20.5,-11.5 parent: 2 - - uid: 36848 + - uid: 36691 components: - type: Transform pos: 37.5,10.5 parent: 2 - - uid: 36849 + - uid: 36692 components: - type: Transform pos: -30.5,-16.5 parent: 2 - - uid: 36850 + - uid: 36693 components: - type: Transform pos: 4.5,65.5 parent: 2 - - uid: 36851 + - uid: 36694 components: - type: Transform pos: -29.5,22.5 parent: 2 - - uid: 36852 + - uid: 36695 components: - type: Transform pos: 4.5,59.5 parent: 2 - - uid: 36853 + - uid: 36696 components: - type: Transform pos: 38.5,-24.5 parent: 2 - - uid: 36854 + - uid: 36697 components: - type: Transform pos: -17.5,-63.5 parent: 2 - - uid: 36855 + - uid: 36698 components: - type: Transform pos: -15.5,55.5 parent: 2 - - uid: 36856 + - uid: 36699 components: - type: Transform pos: 4.5,62.5 parent: 2 - - uid: 36857 + - uid: 36700 components: - type: Transform pos: -23.5,27.5 parent: 2 - - uid: 36858 + - uid: 36701 components: - type: Transform pos: 11.5,27.5 parent: 2 - - uid: 36859 + - uid: 36702 components: - type: Transform pos: -27.5,-0.5 parent: 2 - - uid: 36860 + - uid: 36703 components: - type: Transform pos: -21.5,-63.5 parent: 2 - - uid: 36861 + - uid: 36704 components: - type: Transform pos: -11.5,-80.5 parent: 2 - - uid: 36862 + - uid: 36705 components: - type: Transform pos: -23.5,53.5 parent: 2 - - uid: 36863 + - uid: 36706 components: - type: Transform pos: -28.5,44.5 parent: 2 - - uid: 36864 + - uid: 36707 components: - type: Transform pos: -20.5,-12.5 parent: 2 - - uid: 36865 + - uid: 36708 components: - type: Transform pos: 29.5,39.5 parent: 2 - - uid: 36866 + - uid: 36709 components: - type: Transform pos: 5.5,49.5 parent: 2 - - uid: 36867 + - uid: 36710 components: - type: Transform pos: -20.5,-63.5 parent: 2 - - uid: 36868 + - uid: 36711 components: - type: Transform pos: -32.5,7.5 parent: 2 - - uid: 36869 + - uid: 36712 components: - type: Transform pos: -10.5,-62.5 parent: 2 - - uid: 36870 + - uid: 36713 components: - type: Transform pos: -0.5,35.5 parent: 2 - - uid: 36871 + - uid: 36714 components: - type: Transform pos: -33.5,7.5 parent: 2 - - uid: 36872 + - uid: 36715 components: - type: Transform pos: 35.5,-24.5 parent: 2 - - uid: 36873 + - uid: 36716 components: - type: Transform pos: -27.5,44.5 parent: 2 - - uid: 36874 + - uid: 36717 components: - type: Transform pos: -28.5,-0.5 parent: 2 - - uid: 36875 + - uid: 36718 components: - type: Transform pos: -29.5,-0.5 parent: 2 - - uid: 36876 + - uid: 36719 components: - type: Transform pos: -30.5,0.5 parent: 2 - - uid: 36877 + - uid: 36720 components: - type: Transform pos: -40.5,2.5 parent: 2 - - uid: 36878 + - uid: 36721 components: - type: Transform pos: -34.5,24.5 parent: 2 - - uid: 36879 + - uid: 36722 components: - type: Transform pos: -40.5,47.5 parent: 2 - - uid: 36880 + - uid: 36723 components: - type: Transform pos: -33.5,24.5 parent: 2 - - uid: 36881 + - uid: 36724 components: - type: Transform pos: -10.5,47.5 parent: 2 - - uid: 36882 + - uid: 36725 components: - type: Transform pos: -10.5,35.5 parent: 2 - - uid: 36883 + - uid: 36726 components: - type: Transform pos: 29.5,-45.5 parent: 2 - - uid: 36884 + - uid: 36727 components: - type: Transform pos: -39.5,2.5 parent: 2 - - uid: 36885 + - uid: 36728 components: - type: Transform pos: 29.5,29.5 parent: 2 - - uid: 36886 + - uid: 36729 components: - type: Transform pos: -10.5,25.5 parent: 2 - - uid: 36887 + - uid: 36730 components: - type: Transform pos: -11.5,47.5 parent: 2 - - uid: 36888 + - uid: 36731 components: - type: Transform pos: -26.5,-11.5 parent: 2 - - uid: 36889 + - uid: 36732 components: - type: Transform pos: 13.5,73.5 parent: 2 - - uid: 36890 + - uid: 36733 components: - type: Transform pos: -24.5,28.5 parent: 2 - - uid: 36891 + - uid: 36734 components: - type: Transform pos: -35.5,53.5 parent: 2 - - uid: 36892 + - uid: 36735 components: - type: Transform pos: -75.5,-25.5 parent: 2 - - uid: 36893 + - uid: 36736 components: - type: Transform pos: -75.5,-28.5 parent: 2 - - uid: 36894 + - uid: 36737 components: - type: Transform pos: -39.5,47.5 parent: 2 - - uid: 36895 + - uid: 36738 components: - type: Transform pos: -35.5,54.5 parent: 2 - - uid: 36896 + - uid: 36739 components: - type: Transform pos: -9.5,25.5 parent: 2 - - uid: 36897 + - uid: 36740 components: - type: Transform pos: -6.5,-73.5 parent: 2 - - uid: 36898 + - uid: 36741 components: - type: Transform pos: 9.5,47.5 parent: 2 - - uid: 36899 + - uid: 36742 components: - type: Transform pos: 30.5,-18.5 parent: 2 - - uid: 36900 + - uid: 36743 components: - type: Transform pos: -38.5,44.5 parent: 2 - - uid: 36901 + - uid: 36744 components: - type: Transform pos: 12.5,29.5 parent: 2 - - uid: 36902 + - uid: 36745 components: - type: Transform pos: 36.5,-5.5 parent: 2 - - uid: 36903 + - uid: 36746 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-43.5 parent: 2 - - uid: 36904 + - uid: 36747 components: - type: Transform pos: 37.5,-5.5 parent: 2 - - uid: 36905 + - uid: 36748 components: - type: Transform pos: 42.5,-21.5 parent: 2 - - uid: 36906 + - uid: 36749 components: - type: Transform pos: 54.5,-24.5 parent: 2 - - uid: 36907 + - uid: 36750 components: - type: Transform pos: 19.5,10.5 parent: 2 - - uid: 36908 + - uid: 36751 components: - type: Transform pos: 50.5,-39.5 parent: 2 - - uid: 36909 + - uid: 36752 components: - type: Transform pos: 11.5,63.5 parent: 2 - - uid: 36910 + - uid: 36753 components: - type: Transform pos: 45.5,-0.5 parent: 2 - - uid: 36911 + - uid: 36754 components: - type: Transform pos: 32.5,29.5 parent: 2 - - uid: 36912 + - uid: 36755 components: - type: Transform pos: 14.5,33.5 parent: 2 - - uid: 36913 + - uid: 36756 components: - type: Transform pos: 48.5,-12.5 parent: 2 - - uid: 36914 + - uid: 36757 components: - type: Transform pos: 50.5,-16.5 parent: 2 - - uid: 36915 + - uid: 36758 components: - type: Transform pos: -55.5,-41.5 parent: 2 - - uid: 36916 + - uid: 36759 components: - type: Transform pos: -41.5,36.5 parent: 2 - - uid: 36917 + - uid: 36760 components: - type: Transform pos: -41.5,31.5 parent: 2 - - uid: 36918 + - uid: 36761 components: - type: Transform pos: -0.5,37.5 parent: 2 - - uid: 36919 + - uid: 36762 components: - type: Transform pos: -32.5,24.5 parent: 2 - - uid: 36920 + - uid: 36763 components: - type: Transform pos: -39.5,16.5 parent: 2 - - uid: 36921 + - uid: 36764 components: - type: Transform pos: -57.5,39.5 parent: 2 - - uid: 36922 + - uid: 36765 components: - type: Transform pos: -35.5,43.5 parent: 2 - - uid: 36923 + - uid: 36766 components: - type: Transform pos: -33.5,44.5 parent: 2 - - uid: 36924 + - uid: 36767 components: - type: Transform pos: -25.5,56.5 parent: 2 - - uid: 36925 + - uid: 36768 components: - type: Transform pos: -30.5,24.5 parent: 2 - - uid: 36926 + - uid: 36769 components: - type: Transform pos: -21.5,24.5 parent: 2 - - uid: 36927 + - uid: 36770 components: - type: Transform pos: -52.5,39.5 parent: 2 - - uid: 36928 + - uid: 36771 components: - type: Transform pos: -29.5,24.5 parent: 2 - - uid: 36929 + - uid: 36772 components: - type: Transform pos: -27.5,40.5 parent: 2 - - uid: 36930 + - uid: 36773 components: - type: Transform pos: -39.5,15.5 parent: 2 - - uid: 36931 + - uid: 36774 components: - type: Transform pos: -4.5,41.5 parent: 2 - - uid: 36932 + - uid: 36775 components: - type: Transform pos: -22.5,61.5 parent: 2 - - uid: 36933 + - uid: 36776 components: - type: Transform pos: -0.5,49.5 parent: 2 - - uid: 36934 + - uid: 36777 components: - type: Transform pos: 3.5,55.5 parent: 2 - - uid: 36936 + - uid: 36778 components: - type: Transform pos: 39.5,-27.5 parent: 2 - - uid: 36937 + - uid: 36779 components: - type: Transform pos: -9.5,47.5 parent: 2 - - uid: 36938 + - uid: 36780 components: - type: Transform pos: 32.5,-36.5 parent: 2 - - uid: 36939 + - uid: 36781 components: - type: Transform pos: -28.5,22.5 parent: 2 - - uid: 36940 + - uid: 36782 components: - type: Transform pos: 29.5,-37.5 parent: 2 - - uid: 36941 + - uid: 36783 components: - type: Transform pos: 32.5,-53.5 parent: 2 - - uid: 36942 + - uid: 36784 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 36943 + - uid: 36785 components: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 36944 + - uid: 36786 components: - type: Transform pos: -22.5,53.5 parent: 2 - - uid: 36945 + - uid: 36787 components: - type: Transform pos: -34.5,30.5 parent: 2 - - uid: 36946 + - uid: 36788 components: - type: Transform pos: 10.5,73.5 parent: 2 - - uid: 36947 + - uid: 36789 components: - type: Transform pos: -29.5,16.5 parent: 2 - - uid: 36948 + - uid: 36790 components: - type: Transform pos: -20.5,-7.5 parent: 2 - - uid: 36949 + - uid: 36791 components: - type: Transform pos: -7.5,-13.5 parent: 2 - - uid: 36950 + - uid: 36792 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-47.5 parent: 2 - - uid: 36951 + - uid: 36793 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 36952 + - uid: 36794 components: - type: Transform pos: 34.5,-32.5 parent: 2 - - uid: 36953 + - uid: 36795 components: - type: Transform pos: 12.5,25.5 parent: 2 - - uid: 36954 + - uid: 36796 components: - type: Transform pos: 42.5,-24.5 parent: 2 - - uid: 36955 + - uid: 36797 components: - type: Transform pos: 50.5,-45.5 parent: 2 - - uid: 36956 + - uid: 36798 components: - type: Transform pos: 2.5,49.5 parent: 2 - - uid: 36957 + - uid: 36799 components: - type: Transform pos: -21.5,54.5 parent: 2 - - uid: 36958 + - uid: 36800 components: - type: Transform pos: -39.5,55.5 parent: 2 - - uid: 36959 + - uid: 36801 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-47.5 parent: 2 - - uid: 36960 + - uid: 36802 components: - type: Transform pos: 19.5,-6.5 parent: 2 - - uid: 36961 + - uid: 36803 components: - type: Transform pos: 43.5,-11.5 parent: 2 - - uid: 36962 + - uid: 36804 components: - type: Transform pos: 32.5,-13.5 parent: 2 - - uid: 36963 + - uid: 36805 components: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 36964 + - uid: 36806 components: - type: Transform pos: 54.5,-21.5 parent: 2 - - uid: 36965 + - uid: 36807 components: - type: Transform pos: -16.5,-32.5 parent: 2 - - uid: 36966 + - uid: 36808 components: - type: Transform pos: -25.5,18.5 parent: 2 - - uid: 36967 + - uid: 36809 components: - type: Transform pos: -34.5,27.5 parent: 2 - - uid: 36968 + - uid: 36810 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-47.5 parent: 2 - - uid: 36969 + - uid: 36811 components: - type: Transform pos: 35.5,-48.5 parent: 2 - - uid: 36970 + - uid: 36812 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 36971 + - uid: 36813 components: - type: Transform pos: 35.5,-45.5 parent: 2 - - uid: 36972 + - uid: 36814 components: - type: Transform pos: 8.5,59.5 parent: 2 - - uid: 36973 + - uid: 36815 components: - type: Transform pos: 6.5,58.5 parent: 2 - - uid: 36974 + - uid: 36816 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 36975 + - uid: 36817 components: - type: Transform pos: 50.5,-38.5 parent: 2 - - uid: 36976 + - uid: 36818 components: - type: Transform pos: -64.5,-32.5 parent: 2 - - uid: 36977 + - uid: 36819 components: - type: Transform pos: 32.5,-18.5 parent: 2 - - uid: 36978 + - uid: 36820 components: - type: Transform pos: 23.5,-18.5 parent: 2 - - uid: 36979 + - uid: 36821 components: - type: Transform pos: 18.5,28.5 parent: 2 - - uid: 36980 + - uid: 36822 components: - type: Transform pos: 50.5,-24.5 parent: 2 - - uid: 36981 + - uid: 36823 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,32.5 parent: 2 - - uid: 36982 + - uid: 36824 components: - type: Transform pos: -26.5,18.5 parent: 2 - - uid: 36983 + - uid: 36825 components: - type: Transform pos: 8.5,54.5 parent: 2 - - uid: 36984 + - uid: 36826 components: - type: Transform pos: -1.5,25.5 parent: 2 - - uid: 36985 + - uid: 36827 components: - type: Transform pos: -1.5,50.5 parent: 2 - - uid: 36986 + - uid: 36828 components: - type: Transform pos: 24.5,-23.5 parent: 2 - - uid: 36987 + - uid: 36829 components: - type: Transform pos: -75.5,-29.5 parent: 2 - - uid: 36988 + - uid: 36830 components: - type: Transform pos: -11.5,-81.5 parent: 2 - - uid: 36989 + - uid: 36831 components: - type: Transform pos: -40.5,46.5 parent: 2 - - uid: 36990 + - uid: 36832 components: - type: Transform pos: -35.5,-6.5 parent: 2 - - uid: 36991 + - uid: 36833 components: - type: Transform pos: -35.5,-4.5 parent: 2 - - uid: 36992 + - uid: 36834 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 36993 + - uid: 36835 components: - type: Transform pos: -25.5,-65.5 parent: 2 - - uid: 36994 + - uid: 36836 components: - type: Transform pos: 12.5,57.5 parent: 2 - - uid: 36995 + - uid: 36837 components: - type: Transform pos: -31.5,30.5 parent: 2 - - uid: 36996 + - uid: 36838 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 36997 + - uid: 36839 components: - type: Transform pos: -27.5,23.5 parent: 2 - - uid: 36998 + - uid: 36840 components: - type: Transform pos: -27.5,24.5 parent: 2 - - uid: 36999 + - uid: 36841 components: - type: Transform pos: -21.5,-17.5 parent: 2 - - uid: 37000 + - uid: 36842 components: - type: Transform pos: 19.5,-29.5 parent: 2 - - uid: 37001 + - uid: 36843 components: - type: Transform pos: -11.5,-51.5 parent: 2 - - uid: 37002 + - uid: 36844 components: - type: Transform pos: 13.5,65.5 parent: 2 - - uid: 37003 + - uid: 36845 components: - type: Transform pos: -0.5,28.5 parent: 2 - - uid: 37004 + - uid: 36846 components: - type: Transform pos: 50.5,-17.5 parent: 2 - - uid: 37005 + - uid: 36847 components: - type: Transform pos: 50.5,-14.5 parent: 2 - - uid: 37006 + - uid: 36848 components: - type: Transform pos: 42.5,-34.5 parent: 2 - - uid: 37007 + - uid: 36849 components: - type: Transform pos: 4.5,48.5 parent: 2 - - uid: 37008 + - uid: 36850 components: - type: Transform pos: -50.5,3.5 parent: 2 - - uid: 37009 + - uid: 36851 components: - type: Transform pos: 12.5,65.5 parent: 2 - - uid: 37010 + - uid: 36852 components: - type: Transform pos: 49.5,-17.5 parent: 2 - - uid: 37011 + - uid: 36853 components: - type: Transform pos: -34.5,36.5 parent: 2 - - uid: 37012 + - uid: 36854 components: - type: Transform pos: -34.5,28.5 parent: 2 - - uid: 37013 + - uid: 36855 components: - type: Transform pos: -31.5,-16.5 parent: 2 - - uid: 37014 + - uid: 36856 components: - type: Transform pos: -3.5,-57.5 parent: 2 - - uid: 37015 + - uid: 36857 components: - type: Transform pos: 34.5,-24.5 parent: 2 - - uid: 37016 + - uid: 36858 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 - - uid: 37017 + - uid: 36859 components: - type: Transform pos: -23.5,18.5 parent: 2 - - uid: 37018 + - uid: 36860 components: - type: Transform pos: -35.5,56.5 parent: 2 - - uid: 37019 + - uid: 36861 components: - type: Transform pos: -20.5,8.5 parent: 2 - - uid: 37020 + - uid: 36862 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-43.5 parent: 2 - - uid: 37021 + - uid: 36863 components: - type: Transform pos: 11.5,57.5 parent: 2 - - uid: 37022 + - uid: 36864 components: - type: Transform pos: -60.5,-44.5 parent: 2 - - uid: 37023 + - uid: 36865 components: - type: Transform pos: 1.5,-62.5 parent: 2 - - uid: 37024 + - uid: 36866 components: - type: Transform pos: 0.5,28.5 parent: 2 - - uid: 37025 + - uid: 36867 components: - type: Transform pos: 50.5,-43.5 parent: 2 - - uid: 37026 + - uid: 36868 components: - type: Transform pos: 39.5,-21.5 parent: 2 - - uid: 37027 + - uid: 36869 components: - type: Transform pos: 50.5,-26.5 parent: 2 - - uid: 37028 + - uid: 36870 components: - type: Transform pos: 52.5,-12.5 parent: 2 - - uid: 37029 + - uid: 36871 components: - type: Transform pos: 43.5,-10.5 parent: 2 - - uid: 37030 + - uid: 36872 components: - type: Transform pos: 15.5,-53.5 parent: 2 - - uid: 37031 + - uid: 36873 components: - type: Transform pos: 4.5,46.5 parent: 2 - - uid: 37032 + - uid: 36874 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 37033 + - uid: 36875 components: - type: Transform pos: -25.5,44.5 parent: 2 - - uid: 37034 + - uid: 36876 components: - type: Transform pos: -24.5,-62.5 parent: 2 - - uid: 37035 + - uid: 36877 components: - type: Transform pos: -11.5,-71.5 parent: 2 - - uid: 37036 + - uid: 36878 components: - type: Transform pos: 54.5,-15.5 parent: 2 - - uid: 37037 + - uid: 36879 components: - type: Transform pos: 13.5,63.5 parent: 2 - - uid: 37038 + - uid: 36880 components: - type: Transform pos: -38.5,30.5 parent: 2 - - uid: 37039 + - uid: 36881 components: - type: Transform pos: 31.5,-18.5 parent: 2 - - uid: 37040 + - uid: 36882 components: - type: Transform pos: -14.5,-63.5 parent: 2 - - uid: 37041 + - uid: 36883 components: - type: Transform pos: -25.5,-68.5 parent: 2 - - uid: 37042 + - uid: 36884 components: - type: Transform pos: 18.5,32.5 parent: 2 - - uid: 37043 + - uid: 36885 components: - type: Transform pos: 43.5,-9.5 parent: 2 - - uid: 37044 + - uid: 36886 components: - type: Transform pos: 11.5,47.5 parent: 2 - - uid: 37045 + - uid: 36887 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,33.5 parent: 2 - - uid: 37046 + - uid: 36888 components: - type: Transform pos: 40.5,-48.5 parent: 2 - - uid: 37047 + - uid: 36889 components: - type: Transform pos: 28.5,-17.5 parent: 2 - - uid: 37048 + - uid: 36890 components: - type: Transform pos: 54.5,-25.5 parent: 2 - - uid: 37049 + - uid: 36891 components: - type: Transform pos: 32.5,-0.5 parent: 2 - - uid: 37050 + - uid: 36892 components: - type: Transform pos: 46.5,-29.5 parent: 2 - - uid: 37051 + - uid: 36893 components: - type: Transform pos: -53.5,3.5 parent: 2 - - uid: 37052 + - uid: 36894 components: - type: Transform pos: -11.5,-75.5 parent: 2 - - uid: 37053 + - uid: 36895 components: - type: Transform pos: -25.5,-66.5 parent: 2 - - uid: 37054 + - uid: 36896 components: - type: Transform pos: -9.5,51.5 parent: 2 - - uid: 37055 + - uid: 36897 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-48.5 parent: 2 - - uid: 37056 + - uid: 36898 components: - type: Transform pos: 29.5,3.5 parent: 2 - - uid: 37057 + - uid: 36899 components: - type: Transform pos: 11.5,55.5 parent: 2 - - uid: 37058 + - uid: 36900 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 37059 + - uid: 36901 components: - type: Transform pos: 32.5,-1.5 parent: 2 - - uid: 37060 + - uid: 36902 components: - type: Transform pos: 5.5,53.5 parent: 2 - - uid: 37061 + - uid: 36903 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-47.5 parent: 2 - - uid: 37062 + - uid: 36904 components: - type: Transform pos: 21.5,-16.5 parent: 2 - - uid: 37063 + - uid: 36905 components: - type: Transform pos: 50.5,-34.5 parent: 2 - - uid: 37064 + - uid: 36906 components: - type: Transform pos: 35.5,-5.5 parent: 2 - - uid: 37065 + - uid: 36907 components: - type: Transform pos: 8.5,63.5 parent: 2 - - uid: 37066 + - uid: 36908 components: - type: Transform pos: 50.5,-21.5 parent: 2 - - uid: 37067 + - uid: 36909 components: - type: Transform pos: 9.5,55.5 parent: 2 - - uid: 37068 + - uid: 36910 components: - type: Transform pos: 7.5,55.5 parent: 2 - - uid: 37069 + - uid: 36911 components: - type: Transform pos: 12.5,34.5 parent: 2 - - uid: 37070 + - uid: 36912 components: - type: Transform pos: 1.5,32.5 parent: 2 - - uid: 37071 + - uid: 36913 components: - type: Transform pos: 4.5,49.5 parent: 2 - - uid: 37072 + - uid: 36914 components: - type: Transform pos: 25.5,25.5 parent: 2 - - uid: 37073 + - uid: 36915 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 37074 + - uid: 36916 components: - type: Transform pos: -21.5,-76.5 parent: 2 - - uid: 37075 + - uid: 36917 components: - type: Transform pos: -39.5,45.5 parent: 2 - - uid: 37076 + - uid: 36918 components: - type: Transform pos: -34.5,-9.5 parent: 2 - - uid: 37077 + - uid: 36919 components: - type: Transform pos: 29.5,-38.5 parent: 2 - - uid: 37078 + - uid: 36920 components: - type: Transform pos: 33.5,-26.5 parent: 2 - - uid: 37079 + - uid: 36921 components: - type: Transform pos: -16.5,-44.5 parent: 2 - - uid: 37080 + - uid: 36922 components: - type: Transform pos: 8.5,50.5 parent: 2 - - uid: 37081 + - uid: 36923 components: - type: Transform pos: 14.5,54.5 parent: 2 - - uid: 37082 + - uid: 36924 components: - type: Transform pos: 13.5,47.5 parent: 2 - - uid: 37083 + - uid: 36925 components: - type: Transform pos: -39.5,14.5 parent: 2 - - uid: 37084 + - uid: 36926 components: - type: Transform pos: -60.5,-35.5 parent: 2 - - uid: 37085 + - uid: 36927 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,55.5 parent: 2 - - uid: 37086 + - uid: 36928 components: - type: Transform pos: 33.5,-29.5 parent: 2 - - uid: 37087 + - uid: 36929 components: - type: Transform pos: -53.5,-41.5 parent: 2 - - uid: 37088 + - uid: 36930 components: - type: Transform pos: 18.5,57.5 parent: 2 - - uid: 37089 + - uid: 36931 components: - type: Transform pos: 22.5,-12.5 parent: 2 - - uid: 37090 + - uid: 36932 components: - type: Transform pos: 38.5,-51.5 parent: 2 - - uid: 37091 + - uid: 36933 components: - type: Transform pos: -10.5,-29.5 parent: 2 - - uid: 37092 + - uid: 36934 components: - type: Transform pos: 1.5,26.5 parent: 2 - - uid: 37093 + - uid: 36935 components: - type: Transform pos: 44.5,-48.5 parent: 2 - - uid: 37094 + - uid: 36936 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 37095 + - uid: 36937 components: - type: Transform pos: -0.5,45.5 parent: 2 - - uid: 37096 + - uid: 36938 components: - type: Transform pos: 9.5,77.5 parent: 2 - - uid: 37097 + - uid: 36939 components: - type: Transform pos: -39.5,51.5 parent: 2 - - uid: 37098 + - uid: 36940 components: - type: Transform pos: 16.5,-53.5 parent: 2 - - uid: 37099 + - uid: 36941 components: - type: Transform pos: 6.5,46.5 parent: 2 - - uid: 37100 + - uid: 36942 components: - type: Transform pos: -11.5,-78.5 parent: 2 - - uid: 37101 + - uid: 36943 components: - type: Transform pos: -25.5,66.5 parent: 2 - - uid: 37102 + - uid: 36944 components: - type: Transform pos: -34.5,32.5 parent: 2 - - uid: 37103 + - uid: 36945 components: - type: Transform pos: -22.5,-13.5 parent: 2 - - uid: 37104 + - uid: 36946 components: - type: Transform pos: -27.5,-9.5 parent: 2 - - uid: 37105 + - uid: 36947 components: - type: Transform pos: -29.5,13.5 parent: 2 - - uid: 37106 + - uid: 36948 components: - type: Transform pos: -35.5,-0.5 parent: 2 - - uid: 37107 + - uid: 36949 components: - type: Transform pos: -34.5,29.5 parent: 2 - - uid: 37108 + - uid: 36950 components: - type: Transform pos: -4.5,39.5 parent: 2 - - uid: 37109 + - uid: 36951 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 37110 + - uid: 36952 components: - type: Transform pos: -25.5,24.5 parent: 2 - - uid: 37111 + - uid: 36953 components: - type: Transform pos: 18.5,-22.5 parent: 2 - - uid: 37112 + - uid: 36954 components: - type: Transform pos: 14.5,30.5 parent: 2 - - uid: 37113 + - uid: 36955 components: - type: Transform pos: 25.5,-23.5 parent: 2 - - uid: 37114 + - uid: 36956 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-47.5 parent: 2 - - uid: 37115 + - uid: 36957 components: - type: Transform pos: -20.5,-44.5 parent: 2 - - uid: 37116 + - uid: 36958 components: - type: Transform pos: 11.5,-13.5 parent: 2 - - uid: 37117 + - uid: 36959 components: - type: Transform pos: 17.5,-22.5 parent: 2 - - uid: 37118 + - uid: 36960 components: - type: Transform pos: -34.5,31.5 parent: 2 - - uid: 37119 + - uid: 36961 components: - type: Transform pos: 40.5,-71.5 parent: 2 - - uid: 37120 + - uid: 36962 components: - type: Transform pos: -3.5,29.5 parent: 2 - - uid: 37121 + - uid: 36963 components: - type: Transform pos: -36.5,35.5 parent: 2 - - uid: 37122 + - uid: 36964 components: - type: Transform pos: 8.5,47.5 parent: 2 - - uid: 37123 + - uid: 36965 components: - type: Transform pos: 12.5,46.5 parent: 2 - - uid: 37124 + - uid: 36966 components: - type: Transform pos: 50.5,-40.5 parent: 2 - - uid: 37125 + - uid: 36967 components: - type: Transform pos: -9.5,-80.5 parent: 2 - - uid: 37126 + - uid: 36968 components: - type: Transform pos: -22.5,24.5 parent: 2 - - uid: 37127 + - uid: 36969 components: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 37128 + - uid: 36970 components: - type: Transform pos: -34.5,58.5 parent: 2 - - uid: 37129 + - uid: 36971 components: - type: Transform pos: 8.5,53.5 parent: 2 - - uid: 37130 + - uid: 36972 components: - type: Transform pos: 14.5,29.5 parent: 2 - - uid: 37131 + - uid: 36973 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-42.5 parent: 2 - - uid: 37132 + - uid: 36974 components: - type: Transform pos: -28.5,62.5 parent: 2 - - uid: 37133 + - uid: 36975 components: - type: Transform pos: 54.5,-23.5 parent: 2 - - uid: 37134 + - uid: 36976 components: - type: Transform pos: -3.5,52.5 parent: 2 - - uid: 37135 + - uid: 36977 components: - type: Transform pos: 36.5,-24.5 parent: 2 - - uid: 37136 + - uid: 36978 components: - type: Transform pos: 50.5,-42.5 parent: 2 - - uid: 37137 + - uid: 36979 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 37138 + - uid: 36980 components: - type: Transform pos: 26.5,-12.5 parent: 2 - - uid: 37139 + - uid: 36981 components: - type: Transform pos: 54.5,-13.5 parent: 2 - - uid: 37140 + - uid: 36982 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 37141 + - uid: 36983 components: - type: Transform pos: -4.5,47.5 parent: 2 - - uid: 37142 + - uid: 36984 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-66.5 parent: 2 - - uid: 37143 + - uid: 36985 components: - type: Transform pos: -13.5,51.5 parent: 2 - - uid: 37144 + - uid: 36986 components: - type: Transform pos: -29.5,25.5 parent: 2 - - uid: 37145 + - uid: 36987 components: - type: Transform pos: -34.5,46.5 parent: 2 - - uid: 37146 + - uid: 36988 components: - type: Transform pos: -32.5,63.5 parent: 2 - - uid: 37147 + - uid: 36989 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-43.5 parent: 2 - - uid: 37148 + - uid: 36990 components: - type: Transform pos: -29.5,-58.5 parent: 2 - - uid: 37149 + - uid: 36991 components: - type: Transform pos: -24.5,45.5 parent: 2 - - uid: 37150 + - uid: 36992 components: - type: Transform pos: -0.5,47.5 parent: 2 - - uid: 37151 + - uid: 36993 components: - type: Transform pos: 5.5,51.5 parent: 2 - - uid: 37152 + - uid: 36994 components: - type: Transform pos: -12.5,47.5 parent: 2 - - uid: 37153 + - uid: 36995 components: - type: Transform pos: -8.5,47.5 parent: 2 - - uid: 37154 + - uid: 36996 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,55.5 parent: 2 - - uid: 37155 + - uid: 36997 components: - type: Transform pos: -5.5,25.5 parent: 2 - - uid: 37156 + - uid: 36998 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,55.5 parent: 2 - - uid: 37157 + - uid: 36999 components: - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 37158 + - uid: 37000 components: - type: Transform pos: 13.5,68.5 parent: 2 - - uid: 37159 + - uid: 37001 components: - type: Transform pos: 49.5,-48.5 parent: 2 - - uid: 37160 + - uid: 37002 components: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 37161 + - uid: 37003 components: - type: Transform pos: 50.5,-33.5 parent: 2 - - uid: 37162 + - uid: 37004 components: - type: Transform pos: 19.5,0.5 parent: 2 - - uid: 37163 + - uid: 37005 components: - type: Transform pos: 45.5,-36.5 parent: 2 - - uid: 37164 + - uid: 37006 components: - type: Transform pos: 19.5,57.5 parent: 2 - - uid: 37165 + - uid: 37007 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,44.5 parent: 2 - - uid: 37166 + - uid: 37008 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-47.5 parent: 2 - - uid: 37167 + - uid: 37009 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 37168 + - uid: 37010 components: - type: Transform pos: 19.5,-22.5 parent: 2 - - uid: 37169 + - uid: 37011 components: - type: Transform pos: -39.5,48.5 parent: 2 - - uid: 37170 + - uid: 37012 components: - type: Transform pos: 32.5,-17.5 parent: 2 - - uid: 37171 + - uid: 37013 components: - type: Transform pos: 19.5,25.5 parent: 2 - - uid: 37172 + - uid: 37014 components: - type: Transform pos: 48.5,-52.5 parent: 2 - - uid: 37173 + - uid: 37015 components: - type: Transform pos: 42.5,-43.5 parent: 2 - - uid: 37174 + - uid: 37016 components: - type: Transform pos: 42.5,-22.5 parent: 2 - - uid: 37175 + - uid: 37017 components: - type: Transform pos: 40.5,-21.5 parent: 2 - - uid: 37176 + - uid: 37018 components: - type: Transform pos: 4.5,61.5 parent: 2 - - uid: 37177 + - uid: 37019 components: - type: Transform pos: -11.5,-79.5 parent: 2 - - uid: 37178 + - uid: 37020 components: - type: Transform pos: -9.5,-79.5 parent: 2 - - uid: 37179 + - uid: 37021 components: - type: Transform pos: -12.5,-76.5 parent: 2 - - uid: 37180 + - uid: 37022 components: - type: Transform pos: -0.5,36.5 parent: 2 - - uid: 37181 + - uid: 37023 components: - type: Transform pos: -23.5,46.5 parent: 2 - - uid: 37182 + - uid: 37024 components: - type: Transform pos: -45.5,-41.5 parent: 2 - - uid: 37183 + - uid: 37025 components: - type: Transform pos: -21.5,27.5 parent: 2 - - uid: 37184 + - uid: 37026 components: - type: Transform pos: 19.5,-7.5 parent: 2 - - uid: 37185 + - uid: 37027 components: - type: Transform pos: 46.5,-24.5 parent: 2 - - uid: 37186 + - uid: 37028 components: - type: Transform pos: 44.5,-29.5 parent: 2 - - uid: 37187 + - uid: 37029 components: - type: Transform pos: 33.5,-17.5 parent: 2 - - uid: 37188 + - uid: 37030 components: - type: Transform pos: 9.5,82.5 parent: 2 - - uid: 37189 + - uid: 37031 components: - type: Transform pos: 3.5,46.5 parent: 2 - - uid: 37190 + - uid: 37032 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-37.5 parent: 2 - - uid: 37191 + - uid: 37033 components: - type: Transform pos: -39.5,44.5 parent: 2 - - uid: 37192 + - uid: 37034 components: - type: Transform pos: -34.5,35.5 parent: 2 - - uid: 37193 + - uid: 37035 components: - type: Transform pos: -13.5,25.5 parent: 2 - - uid: 37194 + - uid: 37036 components: - type: Transform pos: -41.5,-18.5 parent: 2 - - uid: 37195 + - uid: 37037 components: - type: Transform pos: 18.5,64.5 parent: 2 - - uid: 37196 + - uid: 37038 components: - type: Transform pos: -22.5,65.5 parent: 2 - - uid: 37197 + - uid: 37039 components: - type: Transform pos: -22.5,60.5 parent: 2 - - uid: 37198 + - uid: 37040 components: - type: Transform pos: -35.5,-8.5 parent: 2 - - uid: 37199 + - uid: 37041 components: - type: Transform pos: -39.5,36.5 parent: 2 - - uid: 37200 + - uid: 37042 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-35.5 parent: 2 - - uid: 37201 + - uid: 37043 components: - type: Transform pos: -26.5,24.5 parent: 2 - - uid: 37202 + - uid: 37044 components: - type: Transform pos: 33.5,-69.5 parent: 2 - - uid: 37203 + - uid: 37045 components: - type: Transform pos: -44.5,-43.5 parent: 2 - - uid: 37204 + - uid: 37046 components: - type: Transform pos: -3.5,35.5 parent: 2 - - uid: 37205 + - uid: 37047 components: - type: Transform pos: -56.5,31.5 parent: 2 - - uid: 37206 + - uid: 37048 components: - type: Transform pos: -4.5,36.5 parent: 2 - - uid: 37207 + - uid: 37049 components: - type: Transform pos: 28.5,-53.5 parent: 2 - - uid: 37208 + - uid: 37050 components: - type: Transform pos: 33.5,-30.5 parent: 2 - - uid: 37209 + - uid: 37051 components: - type: Transform pos: -56.5,-32.5 parent: 2 - - uid: 37210 + - uid: 37052 components: - type: Transform pos: 33.5,-65.5 parent: 2 - - uid: 37211 + - uid: 37053 components: - type: Transform pos: -49.5,-34.5 parent: 2 - - uid: 37212 + - uid: 37054 components: - type: Transform pos: 2.5,-47.5 parent: 2 - - uid: 37213 + - uid: 37055 components: - type: Transform pos: 42.5,-60.5 parent: 2 - - uid: 37214 + - uid: 37056 components: - type: Transform pos: 39.5,-44.5 parent: 2 - - uid: 37215 + - uid: 37057 components: - type: Transform pos: 25.5,-36.5 parent: 2 - - uid: 37216 + - uid: 37058 components: - type: Transform pos: -23.5,16.5 parent: 2 - - uid: 37217 + - uid: 37059 components: - type: Transform pos: -24.5,-18.5 parent: 2 - - uid: 37218 + - uid: 37060 components: - type: Transform pos: 9.5,74.5 parent: 2 - - uid: 37219 + - uid: 37061 components: - type: Transform pos: -3.5,-56.5 parent: 2 - - uid: 37220 + - uid: 37062 components: - type: Transform pos: -28.5,64.5 parent: 2 - - uid: 37221 + - uid: 37063 components: - type: Transform pos: 39.5,-30.5 parent: 2 - - uid: 37222 + - uid: 37064 components: - type: Transform pos: 22.5,39.5 parent: 2 - - uid: 37223 + - uid: 37065 components: - type: Transform pos: 29.5,-40.5 parent: 2 - - uid: 37224 + - uid: 37066 components: - type: Transform pos: 33.5,-27.5 parent: 2 - - uid: 37225 + - uid: 37067 components: - type: Transform pos: 8.5,70.5 parent: 2 - - uid: 37226 + - uid: 37068 components: - type: Transform pos: 8.5,66.5 parent: 2 - - uid: 37227 + - uid: 37069 components: - type: Transform pos: -20.5,-8.5 parent: 2 - - uid: 37228 + - uid: 37070 components: - type: Transform pos: -2.5,25.5 parent: 2 - - uid: 37229 + - uid: 37071 components: - type: Transform pos: -75.5,-24.5 parent: 2 - - uid: 37230 + - uid: 37072 components: - type: Transform pos: 5.5,54.5 parent: 2 - - uid: 37231 + - uid: 37073 components: - type: Transform pos: 15.5,21.5 parent: 2 - - uid: 37232 + - uid: 37074 components: - type: Transform pos: 37.5,-59.5 parent: 2 - - uid: 37233 + - uid: 37075 components: - type: Transform pos: 38.5,-55.5 parent: 2 - - uid: 37234 + - uid: 37076 components: - type: Transform pos: 38.5,-5.5 parent: 2 - - uid: 37235 + - uid: 37077 components: - type: Transform pos: 44.5,-36.5 parent: 2 - - uid: 37236 + - uid: 37078 components: - type: Transform pos: -42.5,24.5 parent: 2 - - uid: 37237 + - uid: 37079 components: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 37238 + - uid: 37080 components: - type: Transform pos: -50.5,-34.5 parent: 2 - - uid: 37239 + - uid: 37081 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-41.5 parent: 2 - - uid: 37240 + - uid: 37082 components: - type: Transform pos: -7.5,-36.5 parent: 2 - - uid: 37241 + - uid: 37083 components: - type: Transform pos: -44.5,-44.5 parent: 2 - - uid: 37242 + - uid: 37084 components: - type: Transform pos: -43.5,-41.5 parent: 2 - - uid: 37243 + - uid: 37085 components: - type: Transform pos: -48.5,-34.5 parent: 2 - - uid: 37244 + - uid: 37086 components: - type: Transform pos: 33.5,-53.5 parent: 2 - - uid: 37245 + - uid: 37087 components: - type: Transform pos: 22.5,-29.5 parent: 2 - - uid: 37246 + - uid: 37088 components: - type: Transform pos: 42.5,-63.5 parent: 2 - - uid: 37247 + - uid: 37089 components: - type: Transform pos: 34.5,-53.5 parent: 2 - - uid: 37248 + - uid: 37090 components: - type: Transform pos: 35.5,-52.5 parent: 2 - - uid: 37249 + - uid: 37091 components: - type: Transform pos: 35.5,-53.5 parent: 2 - - uid: 37250 + - uid: 37092 components: - type: Transform pos: 23.5,-29.5 parent: 2 - - uid: 37251 + - uid: 37093 components: - type: Transform pos: 26.5,-53.5 parent: 2 - - uid: 37252 + - uid: 37094 components: - type: Transform pos: 18.5,-53.5 parent: 2 - - uid: 37253 + - uid: 37095 components: - type: Transform pos: -76.5,-28.5 parent: 2 - - uid: 37254 + - uid: 37096 components: - type: Transform pos: 30.5,-36.5 parent: 2 - - uid: 37255 + - uid: 37097 components: - type: Transform pos: -36.5,44.5 parent: 2 - - uid: 37256 + - uid: 37098 components: - type: Transform pos: 34.5,-2.5 parent: 2 - - uid: 37257 + - uid: 37099 components: - type: Transform pos: 25.5,3.5 parent: 2 - - uid: 37258 + - uid: 37100 components: - type: Transform pos: 32.5,-6.5 parent: 2 - - uid: 37259 + - uid: 37101 components: - type: Transform pos: 42.5,-44.5 parent: 2 - - uid: 37260 + - uid: 37102 components: - type: Transform pos: -53.5,-35.5 parent: 2 - - uid: 37261 + - uid: 37103 components: - type: Transform pos: 50.5,-22.5 parent: 2 - - uid: 37262 + - uid: 37104 components: - type: Transform pos: 24.5,3.5 parent: 2 - - uid: 37263 + - uid: 37105 components: - type: Transform pos: 50.5,-31.5 parent: 2 - - uid: 37264 + - uid: 37106 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 37265 + - uid: 37107 components: - type: Transform pos: 42.5,-36.5 parent: 2 - - uid: 37266 + - uid: 37108 components: - type: Transform pos: 32.5,-3.5 parent: 2 - - uid: 37267 + - uid: 37109 components: - type: Transform pos: 49.5,-12.5 parent: 2 - - uid: 37268 + - uid: 37110 components: - type: Transform pos: 20.5,3.5 parent: 2 - - uid: 37269 + - uid: 37111 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-40.5 parent: 2 - - uid: 37270 + - uid: 37112 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-36.5 parent: 2 - - uid: 37271 + - uid: 37113 components: - type: Transform pos: -32.5,31.5 parent: 2 - - uid: 37272 + - uid: 37114 components: - type: Transform pos: -51.5,-38.5 parent: 2 - - uid: 37273 + - uid: 37115 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,3.5 parent: 2 - - uid: 37274 + - uid: 37116 components: - type: Transform pos: -24.5,-13.5 parent: 2 - - uid: 37275 + - uid: 37117 components: - type: Transform pos: -7.5,25.5 parent: 2 - - uid: 37276 + - uid: 37118 components: - type: Transform pos: -21.5,-67.5 parent: 2 - - uid: 37277 + - uid: 37119 components: - type: Transform pos: 28.5,-18.5 parent: 2 - - uid: 37278 + - uid: 37120 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 37279 + - uid: 37121 components: - type: Transform pos: -21.5,-13.5 parent: 2 - - uid: 37280 + - uid: 37122 components: - type: Transform pos: -28.5,29.5 parent: 2 - - uid: 37281 + - uid: 37123 components: - type: Transform pos: -16.5,-76.5 parent: 2 - - uid: 37282 + - uid: 37124 components: - type: Transform pos: -18.5,-76.5 parent: 2 - - uid: 37283 + - uid: 37125 components: - type: Transform pos: -4.5,-62.5 parent: 2 - - uid: 37284 + - uid: 37126 components: - type: Transform pos: -48.5,-38.5 parent: 2 - - uid: 37285 + - uid: 37127 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 37286 + - uid: 37128 components: - type: Transform pos: -37.5,7.5 parent: 2 - - uid: 37287 + - uid: 37129 components: - type: Transform pos: -38.5,7.5 parent: 2 - - uid: 37288 + - uid: 37130 components: - type: Transform pos: -38.5,3.5 parent: 2 - - uid: 37289 + - uid: 37131 components: - type: Transform pos: -27.5,3.5 parent: 2 - - uid: 37290 + - uid: 37132 components: - type: Transform pos: -29.5,10.5 parent: 2 - - uid: 37291 + - uid: 37133 components: - type: Transform pos: -35.5,1.5 parent: 2 - - uid: 37292 + - uid: 37134 components: - type: Transform pos: -39.5,-12.5 parent: 2 - - uid: 37293 + - uid: 37135 components: - type: Transform pos: -28.5,40.5 parent: 2 - - uid: 37294 + - uid: 37136 components: - type: Transform pos: -32.5,44.5 parent: 2 - - uid: 37295 + - uid: 37137 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 37296 + - uid: 37138 components: - type: Transform pos: -37.5,56.5 parent: 2 - - uid: 37297 + - uid: 37139 components: - type: Transform pos: -39.5,12.5 parent: 2 - - uid: 37298 + - uid: 37140 components: - type: Transform pos: -34.5,56.5 parent: 2 - - uid: 37299 + - uid: 37141 components: - type: Transform pos: 37.5,18.5 parent: 2 - - uid: 37300 + - uid: 37142 components: - type: Transform pos: 65.5,-19.5 parent: 2 - - uid: 37301 + - uid: 37143 components: - type: Transform pos: 19.5,3.5 parent: 2 - - uid: 37302 + - uid: 37144 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 37303 + - uid: 37145 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-47.5 parent: 2 - - uid: 37304 + - uid: 37146 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 37305 + - uid: 37147 components: - type: Transform pos: 27.5,3.5 parent: 2 - - uid: 37306 + - uid: 37148 components: - type: Transform pos: 48.5,-55.5 parent: 2 - - uid: 37307 + - uid: 37149 components: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 37308 + - uid: 37150 components: - type: Transform pos: 44.5,-45.5 parent: 2 - - uid: 37309 + - uid: 37151 components: - type: Transform pos: 27.5,-8.5 parent: 2 - - uid: 37310 + - uid: 37152 components: - type: Transform pos: 50.5,-29.5 parent: 2 - - uid: 37311 + - uid: 37153 components: - type: Transform pos: 44.5,-26.5 parent: 2 - - uid: 37312 + - uid: 37154 components: - type: Transform pos: 77.5,-19.5 parent: 2 - - uid: 37313 + - uid: 37155 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-0.5 parent: 2 - - uid: 37314 + - uid: 37156 components: - type: Transform pos: 42.5,-45.5 parent: 2 - - uid: 37315 + - uid: 37157 components: - type: Transform pos: 32.5,-7.5 parent: 2 - - uid: 37316 + - uid: 37158 components: - type: Transform pos: 50.5,-36.5 parent: 2 - - uid: 37317 + - uid: 37159 components: - type: Transform pos: 23.5,-16.5 parent: 2 - - uid: 37318 + - uid: 37160 components: - type: Transform pos: 22.5,-16.5 parent: 2 - - uid: 37319 + - uid: 37161 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 37320 + - uid: 37162 components: - type: Transform pos: 12.5,42.5 parent: 2 - - uid: 37321 + - uid: 37163 components: - type: Transform pos: 49.5,-26.5 parent: 2 - - uid: 37322 + - uid: 37164 components: - type: Transform pos: 48.5,-26.5 parent: 2 - - uid: 37323 + - uid: 37165 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 37324 + - uid: 37166 components: - type: Transform pos: 28.5,-8.5 parent: 2 - - uid: 37325 + - uid: 37167 components: - type: Transform pos: 53.5,-42.5 parent: 2 - - uid: 37326 + - uid: 37168 components: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 37327 + - uid: 37169 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,60.5 parent: 2 - - uid: 37328 + - uid: 37170 components: - type: Transform pos: 19.5,9.5 parent: 2 - - uid: 37329 + - uid: 37171 components: - type: Transform pos: 41.5,-48.5 parent: 2 - - uid: 37330 + - uid: 37172 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,0.5 parent: 2 - - uid: 37331 + - uid: 37173 components: - type: Transform pos: 49.5,-36.5 parent: 2 - - uid: 37332 + - uid: 37174 components: - type: Transform pos: -23.5,58.5 parent: 2 - - uid: 37333 + - uid: 37175 components: - type: Transform pos: 39.5,-31.5 parent: 2 - - uid: 37334 + - uid: 37176 components: - type: Transform pos: 0.5,66.5 parent: 2 - - uid: 37335 + - uid: 37177 components: - type: Transform pos: 39.5,-26.5 parent: 2 - - uid: 37336 + - uid: 37178 components: - type: Transform pos: 1.5,59.5 parent: 2 - - uid: 37337 + - uid: 37179 components: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 37338 + - uid: 37180 components: - type: Transform pos: -8.5,-61.5 parent: 2 - - uid: 37339 + - uid: 37181 components: - type: Transform pos: -15.5,-76.5 parent: 2 - - uid: 37340 + - uid: 37182 components: - type: Transform pos: -17.5,-76.5 parent: 2 - - uid: 37341 + - uid: 37183 components: - type: Transform pos: 42.5,-26.5 parent: 2 - - uid: 37342 + - uid: 37184 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 37343 + - uid: 37185 components: - type: Transform pos: 46.5,-25.5 parent: 2 - - uid: 37344 + - uid: 37186 components: - type: Transform pos: 2.5,38.5 parent: 2 - - uid: 37345 + - uid: 37187 components: - type: Transform pos: 25.5,33.5 parent: 2 - - uid: 37346 + - uid: 37188 components: - type: Transform pos: 34.5,-26.5 parent: 2 - - uid: 37347 + - uid: 37189 components: - type: Transform pos: -3.5,31.5 parent: 2 - - uid: 37348 + - uid: 37190 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-48.5 parent: 2 - - uid: 37349 + - uid: 37191 components: - type: Transform pos: -26.5,-13.5 parent: 2 - - uid: 37350 + - uid: 37192 components: - type: Transform pos: -5.5,31.5 parent: 2 - - uid: 37351 + - uid: 37193 components: - type: Transform pos: -6.5,31.5 parent: 2 - - uid: 37352 + - uid: 37194 components: - type: Transform pos: -24.5,58.5 parent: 2 - - uid: 37353 + - uid: 37195 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 - - uid: 37354 + - uid: 37196 components: - type: Transform pos: -28.5,-66.5 parent: 2 - - uid: 37355 + - uid: 37197 components: - type: Transform pos: -28.5,-63.5 parent: 2 - - uid: 37356 + - uid: 37198 components: - type: Transform pos: -47.5,-38.5 parent: 2 - - uid: 37357 + - uid: 37199 components: - type: Transform pos: -26.5,-14.5 parent: 2 - - uid: 37358 + - uid: 37200 components: - type: Transform pos: -7.5,31.5 parent: 2 - - uid: 37359 + - uid: 37201 components: - type: Transform pos: -26.5,-12.5 parent: 2 - - uid: 37360 + - uid: 37202 components: - type: Transform pos: 13.5,57.5 parent: 2 - - uid: 37361 + - uid: 37203 components: - type: Transform pos: 25.5,55.5 parent: 2 - - uid: 37362 + - uid: 37204 components: - type: Transform pos: 8.5,42.5 parent: 2 - - uid: 37363 + - uid: 37205 components: - type: Transform pos: 23.5,55.5 parent: 2 - - uid: 37364 + - uid: 37206 components: - type: Transform pos: 18.5,55.5 parent: 2 - - uid: 37365 + - uid: 37207 components: - type: Transform pos: 8.5,46.5 parent: 2 - - uid: 37366 + - uid: 37208 components: - type: Transform pos: 14.5,57.5 parent: 2 - - uid: 37367 + - uid: 37209 components: - type: Transform pos: -29.5,-62.5 parent: 2 - - uid: 37368 + - uid: 37210 components: - type: Transform pos: 22.5,55.5 parent: 2 - - uid: 37369 + - uid: 37211 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 37370 + - uid: 37212 components: - type: Transform pos: 37.5,22.5 parent: 2 - - uid: 37371 + - uid: 37213 components: - type: Transform pos: 42.5,-42.5 parent: 2 - - uid: 37372 + - uid: 37214 components: - type: Transform pos: 48.5,-36.5 parent: 2 - - uid: 37373 + - uid: 37215 components: - type: Transform pos: -35.5,2.5 parent: 2 - - uid: 37374 + - uid: 37216 components: - type: Transform pos: -40.5,-12.5 parent: 2 - - uid: 37375 + - uid: 37217 components: - type: Transform pos: 4.5,66.5 parent: 2 - - uid: 37376 + - uid: 37218 components: - type: Transform pos: -28.5,39.5 parent: 2 - - uid: 37377 + - uid: 37219 components: - type: Transform pos: -35.5,3.5 parent: 2 - - uid: 37378 + - uid: 37220 components: - type: Transform pos: -6.5,35.5 parent: 2 - - uid: 37379 + - uid: 37221 components: - type: Transform pos: -26.5,-15.5 parent: 2 - - uid: 37380 + - uid: 37222 components: - type: Transform pos: -39.5,13.5 parent: 2 - - uid: 37381 + - uid: 37223 components: - type: Transform pos: -8.5,-60.5 parent: 2 - - uid: 37382 + - uid: 37224 components: - type: Transform pos: 16.5,55.5 parent: 2 - - uid: 37383 + - uid: 37225 components: - type: Transform pos: -28.5,-64.5 parent: 2 - - uid: 37384 + - uid: 37226 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 37385 + - uid: 37227 components: - type: Transform pos: 50.5,-23.5 parent: 2 - - uid: 37386 + - uid: 37228 components: - type: Transform pos: 23.5,-15.5 parent: 2 - - uid: 37387 + - uid: 37229 components: - type: Transform pos: 13.5,-49.5 parent: 2 - - uid: 37388 + - uid: 37230 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-48.5 parent: 2 - - uid: 37389 + - uid: 37231 components: - type: Transform pos: -5.5,-36.5 parent: 2 - - uid: 37390 + - uid: 37232 components: - type: Transform pos: -14.5,-76.5 parent: 2 - - uid: 37391 + - uid: 37233 components: - type: Transform pos: -21.5,-69.5 parent: 2 - - uid: 37392 + - uid: 37234 components: - type: Transform pos: -29.5,9.5 parent: 2 - - uid: 37393 + - uid: 37235 components: - type: Transform pos: -36.5,3.5 parent: 2 - - uid: 37394 + - uid: 37236 components: - type: Transform pos: -40.5,55.5 parent: 2 - - uid: 37395 + - uid: 37237 components: - type: Transform pos: 21.5,55.5 parent: 2 - - uid: 37396 + - uid: 37238 components: - type: Transform pos: -28.5,-62.5 parent: 2 - - uid: 37397 + - uid: 37239 components: - type: Transform pos: -17.5,-78.5 parent: 2 - - uid: 37398 + - uid: 37240 components: - type: Transform pos: 0.5,59.5 parent: 2 - - uid: 37399 + - uid: 37241 components: - type: Transform pos: -19.5,-76.5 parent: 2 - - uid: 37400 + - uid: 37242 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-39.5 parent: 2 - - uid: 37401 + - uid: 37243 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 37402 + - uid: 37244 components: - type: Transform pos: -25.5,-13.5 parent: 2 - - uid: 37403 + - uid: 37245 components: - type: Transform pos: -40.5,56.5 parent: 2 - - uid: 37404 + - uid: 37246 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-37.5 parent: 2 - - uid: 37405 + - uid: 37247 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-39.5 parent: 2 - - uid: 37406 + - uid: 37248 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-39.5 parent: 2 - - uid: 37407 + - uid: 37249 components: - type: Transform pos: -28.5,-65.5 parent: 2 - - uid: 37408 + - uid: 37250 components: - type: Transform pos: 8.5,41.5 parent: 2 - - uid: 37409 + - uid: 37251 components: - type: Transform pos: 19.5,55.5 parent: 2 - - uid: 37410 + - uid: 37252 components: - type: Transform pos: 39.5,-24.5 parent: 2 - - uid: 37411 + - uid: 37253 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-34.5 parent: 2 - - uid: 37412 + - uid: 37254 components: - type: Transform pos: -8.5,-62.5 parent: 2 - - uid: 37413 + - uid: 37255 components: - type: Transform pos: -57.5,34.5 parent: 2 - - uid: 37414 + - uid: 37256 components: - type: Transform pos: 9.5,-83.5 parent: 2 - - uid: 37415 + - uid: 37257 components: - type: Transform pos: 4.5,38.5 parent: 2 - - uid: 37416 + - uid: 37258 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 37417 + - uid: 37259 components: - type: Transform pos: 37.5,-2.5 parent: 2 - - uid: 37418 + - uid: 37260 components: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 37419 + - uid: 37261 components: - type: Transform pos: -29.5,15.5 parent: 2 - - uid: 37420 + - uid: 37262 components: - type: Transform pos: -42.5,-13.5 parent: 2 - - uid: 37421 + - uid: 37263 components: - type: Transform pos: -29.5,7.5 parent: 2 - - uid: 37422 + - uid: 37264 components: - type: Transform pos: 13.5,-48.5 parent: 2 - - uid: 37423 + - uid: 37265 components: - type: Transform pos: 54.5,-11.5 parent: 2 - - uid: 37424 + - uid: 37266 components: - type: Transform pos: -6.5,55.5 parent: 2 - - uid: 37425 + - uid: 37267 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 37426 + - uid: 37268 components: - type: Transform pos: -37.5,30.5 parent: 2 - - uid: 37427 + - uid: 37269 components: - type: Transform pos: 23.5,-24.5 parent: 2 - - uid: 37428 + - uid: 37270 components: - type: Transform pos: 34.5,-36.5 parent: 2 - - uid: 37429 + - uid: 37271 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 37430 + - uid: 37272 components: - type: Transform pos: -32.5,60.5 parent: 2 - - uid: 37431 + - uid: 37273 components: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 37432 + - uid: 37274 components: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 37433 + - uid: 37275 components: - type: Transform pos: 39.5,-23.5 parent: 2 - - uid: 37434 + - uid: 37276 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-34.5 parent: 2 - - uid: 37435 + - uid: 37277 components: - type: Transform pos: 26.5,-17.5 parent: 2 - - uid: 37436 + - uid: 37278 components: - type: Transform pos: 26.5,-16.5 parent: 2 - - uid: 37437 + - uid: 37279 components: - type: Transform pos: 23.5,-17.5 parent: 2 - - uid: 37438 + - uid: 37280 components: - type: Transform pos: 27.5,-18.5 parent: 2 - - uid: 37439 + - uid: 37281 components: - type: Transform pos: 46.5,-36.5 parent: 2 - - uid: 37440 + - uid: 37282 components: - type: Transform pos: 47.5,-36.5 parent: 2 - - uid: 37441 + - uid: 37283 components: - type: Transform pos: -31.5,31.5 parent: 2 - - uid: 37442 + - uid: 37284 components: - type: Transform pos: 48.5,-53.5 parent: 2 - - uid: 37443 + - uid: 37285 components: - type: Transform pos: 50.5,-13.5 parent: 2 - - uid: 37444 + - uid: 37286 components: - type: Transform pos: -18.5,-78.5 parent: 2 - - uid: 37445 + - uid: 37287 components: - type: Transform pos: 13.5,25.5 parent: 2 - - uid: 37446 + - uid: 37288 components: - type: Transform pos: -32.5,58.5 parent: 2 - - uid: 37447 + - uid: 37289 components: - type: Transform pos: 32.5,3.5 parent: 2 - - uid: 37448 + - uid: 37290 components: - type: Transform pos: -22.5,-9.5 parent: 2 - - uid: 37449 + - uid: 37291 components: - type: Transform pos: -22.5,18.5 parent: 2 - - uid: 37450 + - uid: 37292 components: - type: Transform pos: -21.5,-72.5 parent: 2 - - uid: 37451 + - uid: 37293 components: - type: Transform pos: -37.5,-12.5 parent: 2 - - uid: 37452 + - uid: 37294 components: - type: Transform pos: -2.5,35.5 parent: 2 - - uid: 37453 + - uid: 37295 components: - type: Transform pos: -3.5,32.5 parent: 2 - - uid: 37454 + - uid: 37296 components: - type: Transform pos: 39.5,-36.5 parent: 2 - - uid: 37455 + - uid: 37297 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 37456 + - uid: 37298 components: - type: Transform pos: 38.5,-49.5 parent: 2 - - uid: 37457 + - uid: 37299 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 37458 + - uid: 37300 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 37459 + - uid: 37301 components: - type: Transform pos: -25.5,-63.5 parent: 2 - - uid: 37460 + - uid: 37302 components: - type: Transform pos: -25.5,-62.5 parent: 2 - - uid: 37461 + - uid: 37303 components: - type: Transform pos: 31.5,-12.5 parent: 2 - - uid: 37462 + - uid: 37304 components: - type: Transform pos: 11.5,58.5 parent: 2 - - uid: 37463 + - uid: 37305 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 37464 + - uid: 37306 components: - type: Transform pos: 3.5,43.5 parent: 2 - - uid: 37465 + - uid: 37307 components: - type: Transform pos: -24.5,60.5 parent: 2 - - uid: 37466 + - uid: 37308 components: - type: Transform pos: -8.5,-59.5 parent: 2 - - uid: 37467 + - uid: 37309 components: - type: Transform pos: 11.5,-53.5 parent: 2 - - uid: 37468 + - uid: 37310 components: - type: Transform pos: 3.5,41.5 parent: 2 - - uid: 37469 + - uid: 37311 components: - type: Transform pos: 13.5,71.5 parent: 2 - - uid: 37470 + - uid: 37312 components: - type: Transform pos: 3.5,45.5 parent: 2 - - uid: 37471 + - uid: 37313 components: - type: Transform pos: -25.5,58.5 parent: 2 - - uid: 37472 + - uid: 37314 components: - type: Transform pos: -55.5,16.5 parent: 2 - - uid: 37473 + - uid: 37315 components: - type: Transform pos: 22.5,25.5 parent: 2 - - uid: 37474 + - uid: 37316 components: - type: Transform pos: -9.5,35.5 parent: 2 - - uid: 37475 + - uid: 37317 components: - type: Transform pos: -8.5,35.5 parent: 2 - - uid: 37476 + - uid: 37318 components: - type: Transform pos: 49.5,-45.5 parent: 2 - - uid: 37477 + - uid: 37319 components: - type: Transform pos: 37.5,-45.5 parent: 2 - - uid: 37478 + - uid: 37320 components: - type: Transform pos: -55.5,18.5 parent: 2 - - uid: 37479 + - uid: 37321 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 37480 + - uid: 37322 components: - type: Transform pos: -20.5,-32.5 parent: 2 - - uid: 37481 + - uid: 37323 components: - type: Transform pos: -20.5,-27.5 parent: 2 - - uid: 37482 + - uid: 37324 components: - type: Transform pos: -20.5,-23.5 parent: 2 - - uid: 37483 + - uid: 37325 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 37484 + - uid: 37326 components: - type: Transform pos: -59.5,0.5 parent: 2 - - uid: 37485 + - uid: 37327 components: - type: Transform pos: -26.5,-18.5 parent: 2 - - uid: 37486 + - uid: 37328 components: - type: Transform pos: -59.5,16.5 parent: 2 - - uid: 37487 + - uid: 37329 components: - type: Transform pos: 25.5,-54.5 parent: 2 - - uid: 37488 + - uid: 37330 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 37489 + - uid: 37331 components: - type: Transform pos: -26.5,56.5 parent: 2 - - uid: 37490 + - uid: 37332 components: - type: Transform pos: -27.5,56.5 parent: 2 - - uid: 37491 + - uid: 37333 components: - type: Transform pos: -28.5,56.5 parent: 2 - - uid: 37492 + - uid: 37334 components: - type: Transform pos: -30.5,56.5 parent: 2 - - uid: 37493 + - uid: 37335 components: - type: Transform pos: 31.5,-36.5 parent: 2 - - uid: 37494 + - uid: 37336 components: - type: Transform pos: -21.5,7.5 parent: 2 - - uid: 37495 + - uid: 37337 components: - type: Transform pos: 35.5,-50.5 parent: 2 - - uid: 37496 + - uid: 37338 components: - type: Transform pos: -29.5,-9.5 parent: 2 - - uid: 37497 + - uid: 37339 components: - type: Transform pos: 17.5,33.5 parent: 2 - - uid: 37498 + - uid: 37340 components: - type: Transform pos: 42.5,-8.5 parent: 2 - - uid: 37499 + - uid: 37341 components: - type: Transform pos: 43.5,-8.5 parent: 2 - - uid: 37500 + - uid: 37342 components: - type: Transform pos: 43.5,-13.5 parent: 2 - - uid: 37501 + - uid: 37343 components: - type: Transform pos: 42.5,-6.5 parent: 2 - - uid: 37502 + - uid: 37344 components: - type: Transform pos: 41.5,-5.5 parent: 2 - - uid: 37503 + - uid: 37345 components: - type: Transform pos: 42.5,-5.5 parent: 2 - - uid: 37504 + - uid: 37346 components: - type: Transform pos: 19.5,-15.5 parent: 2 - - uid: 37505 + - uid: 37347 components: - type: Transform pos: 8.5,52.5 parent: 2 - - uid: 37506 + - uid: 37348 components: - type: Transform pos: -26.5,58.5 parent: 2 - - uid: 37507 + - uid: 37349 components: - type: Transform pos: -28.5,59.5 parent: 2 - - uid: 37508 + - uid: 37350 components: - type: Transform pos: -38.5,58.5 parent: 2 - - uid: 37509 + - uid: 37351 components: - type: Transform pos: -24.5,64.5 parent: 2 - - uid: 37510 + - uid: 37352 components: - type: Transform pos: -24.5,62.5 parent: 2 - - uid: 37511 + - uid: 37353 components: - type: Transform pos: 54.5,-30.5 parent: 2 - - uid: 37512 + - uid: 37354 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 37513 + - uid: 37355 components: - type: Transform pos: -15.5,66.5 parent: 2 - - uid: 37514 + - uid: 37356 components: - type: Transform pos: 1.5,-21.5 parent: 2 - - uid: 37515 + - uid: 37357 components: - type: Transform pos: 1.5,-27.5 parent: 2 - - uid: 37516 + - uid: 37358 components: - type: Transform pos: -36.5,29.5 parent: 2 - - uid: 37517 + - uid: 37359 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-71.5 parent: 2 - - uid: 37518 + - uid: 37360 components: - type: Transform pos: -38.5,-18.5 parent: 2 - - uid: 37519 + - uid: 37361 components: - type: Transform pos: -37.5,-16.5 parent: 2 - - uid: 37520 + - uid: 37362 components: - type: Transform pos: -37.5,-17.5 parent: 2 - - uid: 37521 + - uid: 37363 components: - type: Transform pos: -37.5,-18.5 parent: 2 - - uid: 37522 + - uid: 37364 components: - type: Transform pos: 21.5,57.5 parent: 2 - - uid: 37523 + - uid: 37365 components: - type: Transform pos: -21.5,-78.5 parent: 2 - - uid: 37524 + - uid: 37366 components: - type: Transform pos: -32.5,39.5 parent: 2 - - uid: 37525 + - uid: 37367 components: - type: Transform pos: -33.5,39.5 parent: 2 - - uid: 37526 + - uid: 37368 components: - type: Transform pos: -29.5,21.5 parent: 2 - - uid: 37527 + - uid: 37369 components: - type: Transform pos: -19.5,-78.5 parent: 2 - - uid: 37528 + - uid: 37370 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 37529 + - uid: 37371 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-62.5 parent: 2 - - uid: 37530 + - uid: 37372 components: - type: Transform pos: 10.5,-83.5 parent: 2 - - uid: 37531 + - uid: 37373 components: - type: Transform pos: -20.5,16.5 parent: 2 - - uid: 37532 + - uid: 37374 components: - type: Transform pos: 13.5,-50.5 parent: 2 - - uid: 37533 + - uid: 37375 components: - type: Transform pos: -35.5,51.5 parent: 2 - - uid: 37534 + - uid: 37376 components: - type: Transform pos: -47.5,-42.5 parent: 2 - - uid: 37535 + - uid: 37377 components: - type: Transform pos: -35.5,46.5 parent: 2 - - uid: 37536 + - uid: 37378 components: - type: Transform pos: 0.5,41.5 parent: 2 - - uid: 37537 + - uid: 37379 components: - type: Transform pos: 42.5,-40.5 parent: 2 - - uid: 37538 + - uid: 37380 components: - type: Transform pos: 35.5,-17.5 parent: 2 - - uid: 37539 + - uid: 37381 components: - type: Transform pos: -25.5,-67.5 parent: 2 - - uid: 37540 + - uid: 37382 components: - type: Transform pos: 52.5,-26.5 parent: 2 - - uid: 37541 + - uid: 37383 components: - type: Transform pos: -0.5,59.5 parent: 2 - - uid: 37542 + - uid: 37384 components: - type: Transform pos: -19.5,-63.5 parent: 2 - - uid: 37543 + - uid: 37385 components: - type: Transform pos: -30.5,-0.5 parent: 2 - - uid: 37544 + - uid: 37386 components: - type: Transform pos: 11.5,-83.5 parent: 2 - - uid: 37545 + - uid: 37387 components: - type: Transform pos: -31.5,29.5 parent: 2 - - uid: 37546 + - uid: 37388 components: - type: Transform pos: 20.5,64.5 parent: 2 - - uid: 37547 + - uid: 37389 components: - type: Transform pos: -20.5,18.5 parent: 2 - - uid: 37548 + - uid: 37390 components: - type: Transform pos: 42.5,-33.5 parent: 2 - - uid: 37549 + - uid: 37391 components: - type: Transform pos: -23.5,29.5 parent: 2 - - uid: 37550 + - uid: 37392 components: - type: Transform pos: 19.5,-21.5 parent: 2 - - uid: 37551 + - uid: 37393 components: - type: Transform pos: 37.5,-71.5 parent: 2 - - uid: 37552 + - uid: 37394 components: - type: Transform pos: -5.5,-56.5 parent: 2 - - uid: 37553 + - uid: 37395 components: - type: Transform pos: 38.5,-36.5 parent: 2 - - uid: 37554 + - uid: 37396 components: - type: Transform pos: -28.5,63.5 parent: 2 - - uid: 37555 + - uid: 37397 components: - type: Transform pos: -50.5,7.5 parent: 2 - - uid: 37556 + - uid: 37398 components: - type: Transform pos: 48.5,-29.5 parent: 2 - - uid: 37557 + - uid: 37399 components: - type: Transform pos: -40.5,51.5 parent: 2 - - uid: 37558 + - uid: 37400 components: - type: Transform pos: 50.5,-30.5 parent: 2 - - uid: 37559 + - uid: 37401 components: - type: Transform pos: 46.5,-22.5 parent: 2 - - uid: 37560 + - uid: 37402 components: - type: Transform pos: 50.5,-35.5 parent: 2 - - uid: 37561 + - uid: 37403 components: - type: Transform pos: 2.5,-55.5 parent: 2 - - uid: 37562 + - uid: 37404 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 37563 + - uid: 37405 components: - type: Transform pos: 1.5,-53.5 parent: 2 - - uid: 37564 + - uid: 37406 components: - type: Transform pos: 2.5,-53.5 parent: 2 - - uid: 37565 + - uid: 37407 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 37566 + - uid: 37408 components: - type: Transform pos: 4.5,-53.5 parent: 2 - - uid: 37567 + - uid: 37409 components: - type: Transform pos: 5.5,-53.5 parent: 2 - - uid: 37568 + - uid: 37410 components: - type: Transform pos: 6.5,-53.5 parent: 2 - - uid: 37569 + - uid: 37411 components: - type: Transform pos: 7.5,-53.5 parent: 2 - - uid: 37570 + - uid: 37412 components: - type: Transform pos: 8.5,-53.5 parent: 2 - - uid: 37571 + - uid: 37413 components: - type: Transform pos: 9.5,-53.5 parent: 2 - - uid: 37572 + - uid: 37414 components: - type: Transform pos: 3.5,38.5 parent: 2 - - uid: 37573 + - uid: 37415 components: - type: Transform pos: -4.5,31.5 parent: 2 - - uid: 37574 + - uid: 37416 components: - type: Transform pos: 24.5,55.5 parent: 2 - - uid: 37575 + - uid: 37417 components: - type: Transform pos: -37.5,55.5 parent: 2 - - uid: 37576 + - uid: 37418 components: - type: Transform pos: 1.5,27.5 parent: 2 - - uid: 37577 + - uid: 37419 components: - type: Transform pos: -7.5,-62.5 parent: 2 - - uid: 37578 + - uid: 37420 components: - type: Transform pos: 43.5,-16.5 parent: 2 - - uid: 37579 + - uid: 37421 components: - type: Transform pos: 23.5,-36.5 parent: 2 - - uid: 37580 + - uid: 37422 components: - type: Transform pos: 21.5,-36.5 parent: 2 - - uid: 37581 + - uid: 37423 components: - type: Transform pos: 19.5,-36.5 parent: 2 - - uid: 37582 + - uid: 37424 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 37583 + - uid: 37425 components: - type: Transform pos: -32.5,62.5 parent: 2 - - uid: 37584 + - uid: 37426 components: - type: Transform pos: -3.5,-54.5 parent: 2 - - uid: 37585 + - uid: 37427 components: - type: Transform pos: 37.5,-18.5 parent: 2 - - uid: 37586 + - uid: 37428 components: - type: Transform pos: -27.5,16.5 parent: 2 - - uid: 37587 + - uid: 37429 components: - type: Transform pos: 46.5,-21.5 parent: 2 - - uid: 37588 + - uid: 37430 components: - type: Transform pos: 11.5,-82.5 parent: 2 - - uid: 37589 + - uid: 37431 components: - type: Transform pos: 13.5,-56.5 parent: 2 - - uid: 37590 + - uid: 37432 components: - type: Transform pos: 11.5,-56.5 parent: 2 - - uid: 37591 + - uid: 37433 components: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 37592 + - uid: 37434 components: - type: Transform pos: -60.5,-39.5 parent: 2 - - uid: 37593 + - uid: 37435 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-12.5 parent: 2 - - uid: 37594 + - uid: 37436 components: - type: Transform pos: -59.5,-32.5 parent: 2 - - uid: 37595 + - uid: 37437 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 37596 + - uid: 37438 components: - type: Transform pos: -37.5,51.5 parent: 2 - - uid: 37597 + - uid: 37439 components: - type: Transform pos: 11.5,-79.5 parent: 2 - - uid: 37598 + - uid: 37440 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-40.5 parent: 2 - - uid: 37599 + - uid: 37441 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-76.5 parent: 2 - - uid: 37600 + - uid: 37442 components: - type: Transform pos: 38.5,-42.5 parent: 2 - - uid: 37601 + - uid: 37443 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-42.5 parent: 2 - - uid: 37602 + - uid: 37444 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-42.5 parent: 2 - - uid: 37603 + - uid: 37445 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-42.5 parent: 2 - - uid: 37604 + - uid: 37446 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-42.5 parent: 2 - - uid: 37605 + - uid: 37447 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-36.5 parent: 2 - - uid: 37606 + - uid: 37448 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-43.5 parent: 2 - - uid: 37607 + - uid: 37449 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-44.5 parent: 2 - - uid: 37608 + - uid: 37450 components: - type: Transform pos: 36.5,-42.5 parent: 2 - - uid: 37609 + - uid: 37451 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-36.5 parent: 2 - - uid: 37610 + - uid: 37452 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-42.5 parent: 2 - - uid: 37611 + - uid: 37453 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-36.5 parent: 2 - - uid: 37612 + - uid: 37454 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-42.5 parent: 2 - - uid: 37613 + - uid: 37455 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-42.5 parent: 2 - - uid: 37614 + - uid: 37456 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-41.5 parent: 2 - - uid: 37616 + - uid: 37457 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-2.5 parent: 2 - - uid: 37617 + - uid: 37458 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-2.5 parent: 2 - - uid: 37618 + - uid: 37459 components: - type: Transform pos: -24.5,54.5 parent: 2 - - uid: 37619 + - uid: 37460 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-73.5 parent: 2 - - uid: 37620 + - uid: 37461 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-75.5 parent: 2 - - uid: 37621 + - uid: 37462 components: - type: Transform pos: -34.5,45.5 parent: 2 - - uid: 37622 + - uid: 37463 components: - type: Transform pos: -25.5,45.5 parent: 2 - - uid: 37623 + - uid: 37464 components: - type: Transform pos: -34.5,54.5 parent: 2 - - uid: 37624 + - uid: 37465 components: - type: Transform pos: -25.5,55.5 parent: 2 - - uid: 37625 + - uid: 37466 components: - type: Transform pos: -24.5,46.5 parent: 2 - - uid: 37626 + - uid: 37467 components: - type: Transform pos: -33.5,55.5 parent: 2 - - uid: 37627 + - uid: 37468 components: - type: Transform pos: -24.5,55.5 parent: 2 - - uid: 37628 + - uid: 37469 components: - type: Transform pos: -33.5,45.5 parent: 2 - - uid: 37629 + - uid: 37470 components: - type: Transform pos: -34.5,55.5 parent: 2 - - uid: 37630 + - uid: 37471 components: - type: Transform pos: -39.5,50.5 parent: 2 - - uid: 37631 + - uid: 37472 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,25.5 parent: 2 - - uid: 37632 + - uid: 37473 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,65.5 parent: 2 - - uid: 37633 + - uid: 37474 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,39.5 parent: 2 - - uid: 37634 + - uid: 37475 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-8.5 parent: 2 - - uid: 37635 + - uid: 37476 components: - type: Transform pos: -30.5,39.5 parent: 2 - - uid: 37636 + - uid: 37477 components: - type: Transform pos: 30.5,29.5 parent: 2 - - uid: 37637 + - uid: 37478 components: - type: Transform pos: 20.5,55.5 parent: 2 - - uid: 37639 + - uid: 37479 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-32.5 parent: 2 - - uid: 37640 + - uid: 37480 components: - type: Transform pos: -60.5,-36.5 parent: 2 - - uid: 37641 + - uid: 37481 components: - type: Transform pos: -62.5,-38.5 parent: 2 - - uid: 37642 + - uid: 37482 components: - type: Transform pos: -61.5,-38.5 parent: 2 - - uid: 37643 + - uid: 37483 components: - type: Transform pos: -65.5,-32.5 parent: 2 - - uid: 37644 + - uid: 37484 components: - type: Transform pos: -69.5,-38.5 parent: 2 - - uid: 37645 + - uid: 37485 components: - type: Transform pos: -66.5,-38.5 parent: 2 - - uid: 37646 + - uid: 37486 components: - type: Transform pos: -67.5,-38.5 parent: 2 - - uid: 37647 + - uid: 37487 components: - type: Transform pos: -69.5,-32.5 parent: 2 - - uid: 37648 + - uid: 37488 components: - type: Transform pos: -63.5,-38.5 parent: 2 - - uid: 37649 + - uid: 37489 components: - type: Transform pos: -60.5,-38.5 parent: 2 - - uid: 37650 + - uid: 37490 components: - type: Transform pos: -60.5,-37.5 parent: 2 - - uid: 37651 + - uid: 37491 components: - type: Transform pos: -60.5,-32.5 parent: 2 - - uid: 37652 + - uid: 37492 components: - type: Transform pos: -67.5,-32.5 parent: 2 - - uid: 37653 + - uid: 37493 components: - type: Transform pos: -71.5,-38.5 parent: 2 - - uid: 37654 + - uid: 37494 components: - type: Transform pos: -70.5,-38.5 parent: 2 - - uid: 37655 + - uid: 37495 components: - type: Transform pos: -68.5,-32.5 parent: 2 - - uid: 37656 + - uid: 37496 components: - type: Transform pos: -66.5,-32.5 parent: 2 - - uid: 37657 + - uid: 37497 components: - type: Transform pos: -60.5,-33.5 parent: 2 - - uid: 37658 + - uid: 37498 components: - type: Transform pos: -64.5,-38.5 parent: 2 - - uid: 37659 + - uid: 37499 components: - type: Transform pos: -70.5,-32.5 parent: 2 - - uid: 37661 + - uid: 37500 components: - type: Transform pos: -65.5,-38.5 parent: 2 - - uid: 37662 + - uid: 37501 components: - type: Transform pos: -68.5,-38.5 parent: 2 - - uid: 37663 + - uid: 37502 components: - type: Transform pos: -23.5,-70.5 parent: 2 - - uid: 37664 + - uid: 37503 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 37665 + - uid: 37504 components: - type: Transform pos: -28.5,-71.5 parent: 2 - - uid: 37666 + - uid: 37505 components: - type: Transform pos: 7.5,-47.5 parent: 2 - - uid: 37667 + - uid: 37506 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-34.5 parent: 2 - - uid: 37668 + - uid: 37507 components: - type: Transform pos: -58.5,-46.5 parent: 2 - - uid: 37669 + - uid: 37508 components: - type: Transform pos: -69.5,-31.5 parent: 2 - - uid: 37670 + - uid: 37509 components: - type: Transform pos: -110.5,32.5 parent: 2 - - uid: 37671 + - uid: 37510 components: - type: Transform pos: -110.5,31.5 parent: 2 - - uid: 37672 + - uid: 37511 components: - type: Transform pos: -113.5,30.5 parent: 2 - - uid: 37673 + - uid: 37512 components: - type: Transform pos: -111.5,30.5 parent: 2 - - uid: 37674 + - uid: 37513 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-27.5 parent: 2 - - uid: 37675 + - uid: 37514 components: - type: Transform pos: 40.5,-36.5 parent: 2 - - uid: 37676 + - uid: 37515 components: - type: Transform pos: 42.5,-47.5 parent: 2 - - uid: 40836 + - uid: 40663 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,6.5 - parent: 38584 - - uid: 40837 + parent: 38411 + - uid: 40664 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 - parent: 38584 - - uid: 40838 + parent: 38411 + - uid: 40665 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 - parent: 38584 - - uid: 40839 + parent: 38411 + - uid: 40666 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,8.5 - parent: 38584 - - uid: 40840 + parent: 38411 + - uid: 40667 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,10.5 - parent: 38584 - - uid: 40841 + parent: 38411 + - uid: 40668 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,6.5 - parent: 38584 - - uid: 40842 + parent: 38411 + - uid: 40669 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,7.5 - parent: 38584 - - uid: 40843 + parent: 38411 + - uid: 40670 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,3.5 - parent: 38584 - - uid: 40844 + parent: 38411 + - uid: 40671 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,11.5 - parent: 38584 - - uid: 40845 + parent: 38411 + - uid: 40672 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,0.5 - parent: 38584 - - uid: 40846 + parent: 38411 + - uid: 40673 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-0.5 - parent: 38584 - - uid: 40847 + parent: 38411 + - uid: 40674 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,10.5 - parent: 38584 - - uid: 40848 + parent: 38411 + - uid: 40675 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,8.5 - parent: 38584 - - uid: 40849 + parent: 38411 + - uid: 40676 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,9.5 - parent: 38584 - - uid: 40850 + parent: 38411 + - uid: 40677 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,10.5 - parent: 38584 - - uid: 40851 + parent: 38411 + - uid: 40678 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,7.5 - parent: 38584 - - uid: 40852 + parent: 38411 + - uid: 40679 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,9.5 - parent: 38584 - - uid: 40853 + parent: 38411 + - uid: 40680 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,1.5 - parent: 38584 - - uid: 40854 + parent: 38411 + - uid: 40681 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,0.5 - parent: 38584 - - uid: 40855 + parent: 38411 + - uid: 40682 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,3.5 - parent: 38584 - - uid: 40856 + parent: 38411 + - uid: 40683 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,2.5 - parent: 38584 - - uid: 40857 + parent: 38411 + - uid: 40684 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,10.5 - parent: 38584 - - uid: 40858 + parent: 38411 + - uid: 40685 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,2.5 - parent: 38584 - - uid: 40859 + parent: 38411 + - uid: 40686 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-0.5 - parent: 38584 - - uid: 40860 + parent: 38411 + - uid: 40687 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,3.5 - parent: 38584 - - uid: 40861 + parent: 38411 + - uid: 40688 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,8.5 - parent: 38584 - - uid: 40862 + parent: 38411 + - uid: 40689 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,7.5 - parent: 38584 - - uid: 40863 + parent: 38411 + - uid: 40690 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,0.5 - parent: 38584 - - uid: 40864 + parent: 38411 + - uid: 40691 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,11.5 - parent: 38584 - - uid: 40865 + parent: 38411 + - uid: 40692 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-0.5 - parent: 38584 - - uid: 40866 + parent: 38411 + - uid: 40693 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-0.5 - parent: 38584 - - uid: 40867 + parent: 38411 + - uid: 40694 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,1.5 - parent: 38584 - - uid: 40868 + parent: 38411 + - uid: 40695 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,2.5 - parent: 38584 - - uid: 40869 + parent: 38411 + - uid: 40696 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,9.5 - parent: 38584 - - uid: 40870 + parent: 38411 + - uid: 40697 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-0.5 - parent: 38584 - - uid: 40871 + parent: 38411 + - uid: 40698 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-0.5 - parent: 38584 - - uid: 40872 + parent: 38411 + - uid: 40699 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,1.5 - parent: 38584 - - uid: 40873 + parent: 38411 + - uid: 40700 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-0.5 - parent: 38584 - - uid: 40874 + parent: 38411 + - uid: 40701 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-0.5 - parent: 38584 - - uid: 40875 + parent: 38411 + - uid: 40702 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,8.5 - parent: 38584 - - uid: 40876 + parent: 38411 + - uid: 40703 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,7.5 - parent: 38584 - - uid: 40877 + parent: 38411 + - uid: 40704 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,7.5 - parent: 38584 + parent: 38411 - proto: WallSolidRust entities: - - uid: 37677 + - uid: 37516 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-62.5 parent: 2 - - uid: 37678 + - uid: 37517 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-69.5 parent: 2 - - uid: 37679 + - uid: 37518 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-59.5 parent: 2 - - uid: 37680 + - uid: 37519 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-39.5 parent: 2 - - uid: 37681 + - uid: 37520 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-68.5 parent: 2 - - uid: 37682 + - uid: 37521 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-68.5 parent: 2 - - uid: 37683 + - uid: 37522 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-61.5 parent: 2 - - uid: 37684 + - uid: 37523 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-68.5 parent: 2 - - uid: 37685 + - uid: 37524 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-68.5 parent: 2 - - uid: 37686 + - uid: 37525 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-77.5 parent: 2 - - uid: 37687 + - uid: 37526 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-74.5 parent: 2 - - uid: 37688 + - uid: 37527 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-73.5 parent: 2 - - uid: 37689 + - uid: 37528 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-76.5 parent: 2 - - uid: 37690 + - uid: 37529 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-76.5 parent: 2 - - uid: 37691 + - uid: 37530 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-63.5 parent: 2 - - uid: 37692 + - uid: 37531 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-58.5 parent: 2 - - uid: 37693 + - uid: 37532 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-58.5 parent: 2 - - uid: 37694 + - uid: 37533 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-72.5 parent: 2 - - uid: 37695 + - uid: 37534 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-71.5 parent: 2 - - uid: 37696 + - uid: 37535 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-79.5 parent: 2 - - uid: 37697 + - uid: 37536 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-68.5 parent: 2 - - uid: 37698 + - uid: 37537 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-72.5 parent: 2 - - uid: 37699 + - uid: 37538 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-67.5 parent: 2 - - uid: 37700 + - uid: 37539 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-67.5 parent: 2 - - uid: 37701 + - uid: 37540 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-41.5 parent: 2 - - uid: 37702 + - uid: 37541 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-43.5 parent: 2 - - uid: 37703 + - uid: 37542 components: - type: Transform pos: -55.5,-47.5 parent: 2 - - uid: 37704 + - uid: 37543 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-44.5 parent: 2 - - uid: 37705 + - uid: 37544 components: - type: Transform pos: -53.5,-38.5 parent: 2 - - uid: 37706 + - uid: 37545 components: - type: Transform pos: -52.5,-34.5 parent: 2 - - uid: 37707 + - uid: 37546 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-41.5 parent: 2 - - uid: 37708 + - uid: 37547 components: - type: Transform pos: -47.5,-36.5 parent: 2 - - uid: 37709 + - uid: 37548 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 37710 + - uid: 37549 components: - type: Transform pos: -51.5,-34.5 parent: 2 - - uid: 37711 + - uid: 37550 components: - type: Transform pos: -45.5,-38.5 parent: 2 - - uid: 37712 + - uid: 37551 components: - type: Transform pos: -46.5,-36.5 parent: 2 - - uid: 37713 + - uid: 37552 components: - type: Transform pos: -45.5,-39.5 parent: 2 - - uid: 37714 + - uid: 37553 components: - type: Transform pos: -50.5,-38.5 parent: 2 - - uid: 37715 + - uid: 37554 components: - type: Transform pos: -46.5,-38.5 parent: 2 - - uid: 37716 + - uid: 37555 components: - type: Transform pos: -53.5,-37.5 parent: 2 - - uid: 37717 + - uid: 37556 components: - type: Transform pos: -46.5,-35.5 parent: 2 - - uid: 37718 + - uid: 37557 components: - type: Transform pos: -60.5,-45.5 parent: 2 - - uid: 37719 + - uid: 37558 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-41.5 parent: 2 - - uid: 37720 + - uid: 37559 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-41.5 parent: 2 - - uid: 37721 + - uid: 37560 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-41.5 parent: 2 - - uid: 37722 + - uid: 37561 components: - type: Transform pos: -56.5,-43.5 parent: 2 - - uid: 37723 + - uid: 37562 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-42.5 parent: 2 - - uid: 37724 + - uid: 37563 components: - type: Transform pos: -60.5,-40.5 parent: 2 - - uid: 37725 + - uid: 37564 components: - type: Transform pos: -60.5,-46.5 parent: 2 - - uid: 37726 + - uid: 37565 components: - type: Transform pos: -56.5,-44.5 parent: 2 - - uid: 37727 + - uid: 37566 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-41.5 parent: 2 - - uid: 37728 + - uid: 37567 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-47.5 parent: 2 - - uid: 37729 + - uid: 37568 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-46.5 parent: 2 - - uid: 37730 + - uid: 37569 components: - type: Transform pos: -56.5,-34.5 parent: 2 - - uid: 37731 + - uid: 37570 components: - type: Transform pos: -56.5,-46.5 parent: 2 - - uid: 37732 + - uid: 37571 components: - type: Transform pos: -56.5,-39.5 parent: 2 - - uid: 37733 + - uid: 37572 components: - type: Transform pos: -56.5,-38.5 parent: 2 - - uid: 37734 + - uid: 37573 components: - type: Transform pos: -56.5,-33.5 parent: 2 - - uid: 37735 + - uid: 37574 components: - type: Transform pos: -56.5,-42.5 parent: 2 - - uid: 37736 + - uid: 37575 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,8.5 parent: 2 - - uid: 37737 + - uid: 37576 components: - type: Transform pos: -36.5,-74.5 parent: 2 - proto: WardrobeAtmospherics entities: - - uid: 15214 + - uid: 15158 components: - type: Transform pos: -63.5,56.5 @@ -275074,15 +275142,15 @@ entities: showEnts: False occludes: True ents: - - 15216 - - 15215 - - 15218 - - 15217 + - 15160 + - 15159 + - 15162 + - 15161 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15219 + - uid: 15163 components: - type: Transform pos: -65.5,56.5 @@ -275111,15 +275179,15 @@ entities: showEnts: False occludes: True ents: - - 15221 - - 15222 - - 15220 - - 15223 + - 15165 + - 15166 + - 15164 + - 15167 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15224 + - uid: 15168 components: - type: Transform pos: -64.5,56.5 @@ -275148,17 +275216,17 @@ entities: showEnts: False occludes: True ents: - - 15226 - - 15225 - - 15228 - - 15227 + - 15170 + - 15169 + - 15172 + - 15171 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobeBotanistFilled entities: - - uid: 37738 + - uid: 37577 components: - type: Transform pos: -38.5,46.5 @@ -275169,8 +275237,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -275183,7 +275251,7 @@ entities: - 0 - proto: WardrobeChemistryFilled entities: - - uid: 37739 + - uid: 37578 components: - type: Transform pos: -39.5,54.5 @@ -275233,7 +275301,7 @@ entities: isPlaceable: True - proto: WardrobeGreenFilled entities: - - uid: 37740 + - uid: 37579 components: - type: Transform pos: 42.5,-13.5 @@ -275258,7 +275326,7 @@ entities: - 0 - proto: WardrobeGreyFilled entities: - - uid: 37741 + - uid: 37580 components: - type: Transform pos: 42.5,-15.5 @@ -275283,7 +275351,7 @@ entities: - 0 - proto: WardrobeMedicalDoctor entities: - - uid: 37742 + - uid: 37581 components: - type: Transform pos: 12.5,-48.5 @@ -275306,7 +275374,7 @@ entities: - 0 - 0 - 0 - - uid: 37743 + - uid: 37582 components: - type: Transform pos: 11.5,-48.5 @@ -275329,14 +275397,14 @@ entities: - 0 - 0 - 0 - - uid: 37744 + - uid: 37583 components: - type: Transform pos: 40.5,-38.5 parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 37745 + - uid: 37584 components: - type: Transform pos: 42.5,-10.5 @@ -275359,7 +275427,7 @@ entities: - 0 - 0 - 0 - - uid: 37746 + - uid: 37585 components: - type: Transform pos: 42.5,-11.5 @@ -275382,14 +275450,14 @@ entities: - 0 - 0 - 0 - - uid: 37747 + - uid: 37586 components: - type: Transform pos: -59.5,-38.5 parent: 2 - proto: WardrobePinkFilled entities: - - uid: 14947 + - uid: 14888 components: - type: Transform pos: -57.500004,-47.5 @@ -275418,16 +275486,16 @@ entities: showEnts: False occludes: True ents: - - 14948 - - 14950 - - 14949 + - 14889 + - 14891 + - 14890 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobePrisonFilled entities: - - uid: 15241 + - uid: 15185 components: - type: Transform pos: 72.5,2.5 @@ -275456,15 +275524,15 @@ entities: showEnts: False occludes: True ents: - - 15245 - - 15244 - - 15243 - - 15242 + - 15189 + - 15188 + - 15187 + - 15186 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15246 + - uid: 15190 components: - type: Transform pos: 72.5,3.5 @@ -275493,15 +275561,15 @@ entities: showEnts: False occludes: True ents: - - 15250 - - 15249 - - 15248 - - 15247 + - 15194 + - 15193 + - 15192 + - 15191 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 29168 + - uid: 28966 components: - type: Transform pos: 87.5,-4.5 @@ -275530,22 +275598,22 @@ entities: showEnts: False occludes: True ents: - - 29169 + - 28967 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 37748 + - uid: 37587 components: - type: Transform pos: 39.5,1.5 parent: 2 - - uid: 37749 + - uid: 37588 components: - type: Transform pos: 39.5,11.5 parent: 2 - - uid: 37750 + - uid: 37589 components: - type: Transform pos: 43.5,1.5 @@ -275568,7 +275636,7 @@ entities: - 0 - 0 - 0 - - uid: 37751 + - uid: 37590 components: - type: Transform pos: 43.5,13.5 @@ -275591,7 +275659,7 @@ entities: - 0 - 0 - 0 - - uid: 37752 + - uid: 37591 components: - type: Transform pos: 43.5,9.5 @@ -275614,7 +275682,7 @@ entities: - 0 - 0 - 0 - - uid: 37753 + - uid: 37592 components: - type: Transform pos: 8.5,-77.5 @@ -275637,7 +275705,7 @@ entities: - 0 - 0 - 0 - - uid: 37754 + - uid: 37593 components: - type: Transform pos: 8.5,-73.5 @@ -275660,12 +275728,12 @@ entities: - 0 - 0 - 0 - - uid: 37755 + - uid: 37594 components: - type: Transform pos: 79.5,-4.5 parent: 2 - - uid: 37756 + - uid: 37595 components: - type: Transform pos: 83.5,-4.5 @@ -275688,69 +275756,69 @@ entities: - 0 - 0 - 0 - - uid: 40878 + - uid: 40705 components: - type: Transform pos: -22.5,2.5 - parent: 38584 - - uid: 40879 + parent: 38411 + - uid: 40706 components: - type: Transform pos: -16.5,8.5 - parent: 38584 - - uid: 40880 + parent: 38411 + - uid: 40707 components: - type: Transform pos: -16.5,2.5 - parent: 38584 - - uid: 40881 + parent: 38411 + - uid: 40708 components: - type: Transform pos: -22.5,8.5 - parent: 38584 - - uid: 40882 + parent: 38411 + - uid: 40709 components: - type: Transform pos: -19.5,8.5 - parent: 38584 - - uid: 40883 + parent: 38411 + - uid: 40710 components: - type: Transform pos: -19.5,2.5 - parent: 38584 - - uid: 40884 + parent: 38411 + - uid: 40711 components: - type: Transform pos: -2.5,-9.5 - parent: 38584 - - uid: 40885 + parent: 38411 + - uid: 40712 components: - type: Transform pos: -2.5,-10.5 - parent: 38584 - - uid: 40886 + parent: 38411 + - uid: 40713 components: - type: Transform pos: -2.5,-8.5 - parent: 38584 - - uid: 40887 + parent: 38411 + - uid: 40714 components: - type: Transform pos: -2.5,-7.5 - parent: 38584 + parent: 38411 - proto: WardrobeSalvageFilled entities: - - uid: 37757 + - uid: 37596 components: - type: Transform pos: 19.5,32.5 parent: 2 - - uid: 37758 + - uid: 37597 components: - type: Transform pos: 19.5,30.5 parent: 2 - - uid: 37759 + - uid: 37598 components: - type: Transform pos: 19.5,31.5 @@ -275775,7 +275843,7 @@ entities: - 0 - proto: WardrobeVirology entities: - - uid: 37760 + - uid: 37599 components: - type: Transform pos: 43.5,-63.5 @@ -275800,7 +275868,7 @@ entities: - 0 - proto: WardrobeWhiteFilled entities: - - uid: 37761 + - uid: 37600 components: - type: Transform pos: 42.5,-14.5 @@ -275825,7 +275893,7 @@ entities: - 0 - proto: WarningCO2 entities: - - uid: 37762 + - uid: 37601 components: - type: Transform rot: 1.5707973450558423 rad @@ -275833,33 +275901,33 @@ entities: parent: 2 - proto: WarningN2 entities: - - uid: 37763 + - uid: 37602 components: - type: Transform rot: 1.5707973450558423 rad pos: -73.49999,37.5 parent: 2 - - uid: 40888 + - uid: 40715 components: - type: Transform pos: 14.5,1.5 - parent: 38584 + parent: 38411 - proto: WarningO2 entities: - - uid: 37764 + - uid: 37603 components: - type: Transform rot: 1.5707973450558423 rad pos: -73.50001,33.5 parent: 2 - - uid: 40889 + - uid: 40716 components: - type: Transform pos: 14.5,3.5 - parent: 38584 + parent: 38411 - proto: WarningPlasma entities: - - uid: 37765 + - uid: 37604 components: - type: Transform rot: 1.5707973450558423 rad @@ -275867,20 +275935,20 @@ entities: parent: 2 - proto: WarningWaste entities: - - uid: 37766 + - uid: 37605 components: - type: Transform rot: 1.5707973450558423 rad pos: -72.49999,19.5 parent: 2 - - uid: 40890 + - uid: 40717 components: - type: Transform pos: 14.5,5.5 - parent: 38584 + parent: 38411 - proto: WarpPoint entities: - - uid: 37767 + - uid: 37606 components: - type: MetaData name: Атмос - Баня @@ -275889,7 +275957,7 @@ entities: parent: 2 - type: WarpPoint location: Атмос - Баня - - uid: 37768 + - uid: 37607 components: - type: MetaData name: Медотсек - Психолог @@ -275897,7 +275965,7 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-50.5 parent: 2 - - uid: 37769 + - uid: 37608 components: - type: MetaData name: СБ - Зал брифинга @@ -275906,7 +275974,7 @@ entities: parent: 2 - type: WarpPoint location: СБ - Зал брифинга - - uid: 37770 + - uid: 37609 components: - type: MetaData name: Инженерный - Верфь @@ -275915,7 +275983,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Верфь - - uid: 37771 + - uid: 37610 components: - type: MetaData name: Атмос - Стойка ресепшн @@ -275924,7 +275992,7 @@ entities: parent: 2 - type: WarpPoint location: Атмос - Стойка ресепшн - - uid: 37772 + - uid: 37611 components: - type: MetaData name: Тех тоннели - Свободный офис Север @@ -275933,7 +276001,7 @@ entities: parent: 2 - type: WarpPoint location: Тех тоннели - Свободный офис Север - - uid: 37773 + - uid: 37612 components: - type: MetaData name: Тех тоннели - Сад @@ -275942,7 +276010,7 @@ entities: parent: 2 - type: WarpPoint location: Тех тоннели - Сад - - uid: 37774 + - uid: 37613 components: - type: MetaData name: Дормы - Фитнес @@ -275951,7 +276019,7 @@ entities: parent: 2 - type: WarpPoint location: Дормы - Фитнес - - uid: 37775 + - uid: 37614 components: - type: MetaData name: Снабжение - Центральная @@ -275960,7 +276028,7 @@ entities: parent: 2 - type: WarpPoint location: Снабжение - Центральная - - uid: 37776 + - uid: 37615 components: - type: MetaData name: Инженерный - Экипировка @@ -275969,7 +276037,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Экипировка - - uid: 37777 + - uid: 37616 components: - type: MetaData name: Библиотека - Задняя комната @@ -275978,7 +276046,7 @@ entities: parent: 2 - type: WarpPoint location: Библиотека - Задняя комната - - uid: 37778 + - uid: 37617 components: - type: MetaData name: Научный - Исследование и хранилище токсинов @@ -275987,7 +276055,7 @@ entities: parent: 2 - type: WarpPoint location: Научный - Исследование и хранилище токсинов - - uid: 37779 + - uid: 37618 components: - type: MetaData name: Научный - Заброшенная ксенобиология @@ -275996,7 +276064,7 @@ entities: parent: 2 - type: WarpPoint location: Научный - Заброшенная ксенобиология - - uid: 37780 + - uid: 37619 components: - type: MetaData name: Сервис - Репортеры @@ -276005,7 +276073,7 @@ entities: parent: 2 - type: WarpPoint location: Сервис - Репортеры - - uid: 37781 + - uid: 37620 components: - type: MetaData name: Библиотека - Центральный зал @@ -276014,7 +276082,7 @@ entities: parent: 2 - type: WarpPoint location: Библиотека - Центральный зал - - uid: 37782 + - uid: 37621 components: - type: MetaData name: Инженерный - Техническое помещение @@ -276023,7 +276091,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Техническое помещение - - uid: 37783 + - uid: 37622 components: - type: MetaData name: СБ - Камеры @@ -276032,7 +276100,7 @@ entities: parent: 2 - type: WarpPoint location: СБ - Камеры - - uid: 37784 + - uid: 37623 components: - type: MetaData name: Тех тоннели - Галактоаркада @@ -276041,7 +276109,7 @@ entities: parent: 2 - type: WarpPoint location: Тех тоннели - Галактоаркада - - uid: 37785 + - uid: 37624 components: - type: MetaData name: Атмос - Север @@ -276050,7 +276118,7 @@ entities: parent: 2 - type: WarpPoint location: Атмос - Север - - uid: 37786 + - uid: 37625 components: - type: MetaData name: Тех тоннели - Вторичная верфь @@ -276059,7 +276127,7 @@ entities: parent: 2 - type: WarpPoint location: Тех тоннели - Вторичная верфь - - uid: 37787 + - uid: 37626 components: - type: MetaData name: Научный - Холл @@ -276068,7 +276136,7 @@ entities: parent: 2 - type: WarpPoint location: Научный - Холл - - uid: 37788 + - uid: 37627 components: - type: MetaData name: Прибытие - Центральное @@ -276077,7 +276145,7 @@ entities: parent: 2 - type: WarpPoint location: Прибытие - Центральное - - uid: 37789 + - uid: 37628 components: - type: MetaData name: Инженерный - Генератор теслы @@ -276086,7 +276154,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Генератор теслы - - uid: 37790 + - uid: 37629 components: - type: MetaData name: Инженерный - Основная @@ -276095,7 +276163,7 @@ entities: parent: 2 - type: WarpPoint location: Инженерный - Основная - - uid: 37791 + - uid: 37630 components: - type: MetaData name: Научный - Заброшенная комната @@ -276104,40 +276172,40 @@ entities: parent: 2 - type: WarpPoint location: Научный - Заброшенная комната - - uid: 37792 + - uid: 37631 components: - type: Transform pos: 24.5,14.5 parent: 2 - type: WarpPoint location: Командование - Хранилище - - uid: 38581 + - uid: 38408 components: - type: MetaData name: СБ - Шаттл "Стервятник" - type: Transform rot: 1.5707963267948966 rad pos: 1.5,1.5 - parent: 38484 + parent: 38311 - type: WarpPoint location: СБ - Шаттл "Стервятник" - proto: WarpPointBombing entities: - - uid: 37793 + - uid: 37632 components: - type: Transform pos: 22.5,13.5 parent: 2 - type: WarpPoint location: Хранилище - - uid: 37794 + - uid: 37633 components: - type: Transform pos: 8.5,-38.5 parent: 2 - type: WarpPoint location: Клонёрка - - uid: 37795 + - uid: 37634 components: - type: MetaData name: Мостик @@ -276146,7 +276214,7 @@ entities: parent: 2 - type: WarpPoint location: Мостик - - uid: 37796 + - uid: 37635 components: - type: MetaData name: РИТЭГ @@ -276155,7 +276223,7 @@ entities: parent: 2 - type: WarpPoint location: РИТЭГ - - uid: 37797 + - uid: 37636 components: - type: MetaData name: ЕВА @@ -276164,7 +276232,7 @@ entities: parent: 2 - type: WarpPoint location: ЕВА - - uid: 37798 + - uid: 37637 components: - type: MetaData name: Оружейка @@ -276175,178 +276243,193 @@ entities: location: Оружейка - proto: WaterCooler entities: - - uid: 37799 + - uid: 37638 components: - type: Transform pos: -48.5,-39.5 parent: 2 - - uid: 37800 + - uid: 37639 components: - type: Transform pos: -25.5,43.5 parent: 2 - - uid: 37801 + - uid: 37640 components: - type: Transform pos: 37.5,-31.5 parent: 2 - - uid: 37802 + - uid: 37641 components: - type: Transform pos: 18.5,-41.5 parent: 2 - - uid: 37803 + - uid: 37642 components: - type: Transform pos: -60.5,15.5 parent: 2 - - uid: 37804 + - uid: 37643 components: - type: Transform pos: 5.5,33.5 parent: 2 - - uid: 37805 + - uid: 37644 components: - type: Transform pos: 18.5,-49.5 parent: 2 - - uid: 37806 + - uid: 37645 components: - type: Transform pos: 41.5,6.5 parent: 2 - - uid: 37807 + - uid: 37646 components: - type: Transform pos: -22.5,-41.5 parent: 2 - - uid: 37808 + - uid: 37647 components: - type: Transform pos: -29.5,-10.5 parent: 2 - - uid: 37809 + - uid: 37648 components: - type: Transform pos: -38.5,63.5 parent: 2 - - uid: 40891 + - uid: 40718 components: - type: Transform pos: -16.5,-1.5 - parent: 38584 - - uid: 40892 + parent: 38411 + - uid: 40719 components: - type: Transform pos: -20.5,30.5 - parent: 38584 + parent: 38411 - proto: WaterTankFull entities: - - uid: 37810 + - uid: 30666 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 37649 components: - type: Transform pos: -39.5,35.5 parent: 2 - - uid: 37811 + - uid: 37650 components: - type: Transform pos: -35.5,55.5 parent: 2 - - uid: 37812 + - uid: 37651 components: - type: Transform pos: -60.5,-14.5 parent: 2 - - uid: 37813 + - uid: 37652 components: - type: Transform pos: -51.5,-17.5 parent: 2 - - uid: 37814 + - uid: 37653 components: - type: Transform pos: 7.5,54.5 parent: 2 - - uid: 37815 + - uid: 37654 components: - type: Transform pos: 36.5,28.5 parent: 2 - - uid: 37816 + - uid: 37655 components: - type: Transform pos: 19.5,-55.5 parent: 2 - - uid: 37817 + - uid: 37656 components: - type: Transform pos: -58.5,42.5 parent: 2 - - uid: 37818 + - uid: 37657 components: - type: Transform pos: -29.5,61.5 parent: 2 - - uid: 37819 + - uid: 37658 components: - type: Transform pos: 23.5,54.5 parent: 2 - - uid: 37820 + - uid: 37659 components: - type: Transform pos: -77.5,-31.5 parent: 2 - - uid: 37821 + - uid: 37660 components: - type: Transform pos: -35.5,45.5 parent: 2 - - uid: 37822 + - uid: 37661 components: - type: Transform pos: 0.5,43.5 parent: 2 - - uid: 37823 + - uid: 37662 components: - type: Transform pos: -46.5,-21.5 parent: 2 - - uid: 37824 + - uid: 37663 components: - type: Transform pos: -12.5,-62.5 parent: 2 - - uid: 37825 + - uid: 37664 components: - type: Transform pos: 21.5,-22.5 parent: 2 - - uid: 37826 + - uid: 37665 components: - type: Transform pos: -27.5,15.499999 parent: 2 + - uid: 38307 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 37827 + - uid: 15678 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 37666 components: - type: Transform pos: 97.50001,5.5 parent: 2 - - uid: 37828 + - uid: 37667 components: - type: Transform pos: -30.5,55.5 parent: 2 - proto: WaterVaporCanister entities: - - uid: 37829 + - uid: 37668 components: - type: Transform pos: -61.5,54.5 parent: 2 - - uid: 37830 + - uid: 37669 components: - type: Transform anchored: True @@ -276354,24 +276437,24 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 37831 + - uid: 37670 components: - type: Transform pos: -59.5,56.5 parent: 2 - - uid: 37832 + - uid: 37671 components: - type: Transform pos: -27.5,-50.5 parent: 2 - - uid: 37833 + - uid: 37672 components: - type: Transform pos: -70.5,45.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 37834 + - uid: 37673 components: - type: Transform pos: 56.5,13.5 @@ -276396,17 +276479,17 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37835 + - uid: 37674 components: - type: Transform pos: -21.5,0.5 parent: 2 - - uid: 37836 + - uid: 37675 components: - type: Transform pos: -34.5,-42.5 parent: 2 - - uid: 37837 + - uid: 37676 components: - type: Transform pos: 50.5,6.5 @@ -276431,7 +276514,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37838 + - uid: 37677 components: - type: Transform pos: 40.5,23.5 @@ -276456,7 +276539,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37839 + - uid: 37678 components: - type: Transform pos: 58.5,13.5 @@ -276481,17 +276564,17 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37840 + - uid: 37679 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 37841 + - uid: 37680 components: - type: Transform pos: 56.5,15.5 parent: 2 - - uid: 37842 + - uid: 37681 components: - type: Transform pos: 14.5,7.5 @@ -276520,7 +276603,7 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37843 + - uid: 37682 components: - type: Transform pos: -8.5,-0.5 @@ -276549,13 +276632,13 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37844 + - uid: 37683 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,32.5 parent: 2 - - uid: 37845 + - uid: 37684 components: - type: Transform pos: 12.5,0.5 @@ -276584,13 +276667,13 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37846 + - uid: 37685 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-31.5 parent: 2 - - uid: 37847 + - uid: 37686 components: - type: Transform pos: -5.5,12.5 @@ -276621,7 +276704,7 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 37848 + - uid: 37687 components: - type: Transform pos: 6.5,-16.5 @@ -276646,18 +276729,18 @@ entities: ents: [] - type: Physics canCollide: False - - uid: 37849 + - uid: 37688 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 - - uid: 37850 + - uid: 37689 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 37851 + - uid: 37690 components: - type: Transform pos: 4.5,12.5 @@ -276688,73 +276771,73 @@ entities: powerLoad: 0 - type: Physics canCollide: False - - uid: 37852 + - uid: 37691 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,17.5 parent: 2 - - uid: 37853 + - uid: 37692 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,8.5 parent: 2 - - uid: 37854 + - uid: 37693 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,22.5 parent: 2 - - uid: 37855 + - uid: 37694 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-8.5 parent: 2 - - uid: 40893 + - uid: 40720 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 - parent: 38584 + parent: 38411 - proto: WeaponDisabler entities: - - uid: 37856 + - uid: 37695 components: - type: Transform pos: 50.441193,11.60602 parent: 2 - - uid: 37857 + - uid: 37696 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.234957,-27.379057 parent: 2 - - uid: 37858 + - uid: 37697 components: - type: Transform pos: -45.51563,8.636579 parent: 2 - - uid: 37859 + - uid: 37698 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 80.41266,10.716633 parent: 2 - - uid: 40894 + - uid: 40721 components: - type: Transform pos: 1.483573,-3.8929749 - parent: 38584 + parent: 38411 - proto: WeaponDisablerPractice entities: - - uid: 37860 + - uid: 37699 components: - type: Transform pos: 58.486435,16.114597 parent: 2 - - uid: 37861 + - uid: 37700 components: - type: Transform rot: 3.141592653589793 rad @@ -276762,13 +276845,13 @@ entities: parent: 2 - proto: WeaponDisablerSMG entities: - - uid: 37862 + - uid: 37701 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 61.56592,9.69966 parent: 2 - - uid: 37863 + - uid: 37702 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -276783,19 +276866,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37864 + - uid: 37703 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.51477,9.454613 parent: 2 - - uid: 37865 + - uid: 37704 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.539234,9.454613 parent: 2 - - uid: 37866 + - uid: 37705 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -276803,132 +276886,132 @@ entities: parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 37867 + - uid: 37706 components: - type: Transform pos: -34.528366,-42.458706 parent: 2 - - uid: 37868 + - uid: 37707 components: - type: Transform pos: 58.490166,18.333502 parent: 2 - - uid: 37869 + - uid: 37708 components: - type: Transform pos: 58.470814,18.520847 parent: 2 - proto: WeaponPistolCobra entities: - - uid: 37870 + - uid: 37709 components: - type: Transform pos: 25.5,67.5 parent: 2 - proto: WeaponPistolMk58 entities: - - uid: 37871 + - uid: 37710 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.516697,7.5344276 parent: 2 - - uid: 37872 + - uid: 37711 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.50446,8.512876 parent: 2 - - uid: 37873 + - uid: 37712 components: - type: Transform pos: 58.48871,17.219824 parent: 2 - - uid: 37874 + - uid: 37713 components: - type: Transform pos: 58.470924,17.486412 parent: 2 - - uid: 37875 + - uid: 37714 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 37876 + - uid: 37715 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 37877 + - uid: 37716 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 37878 + - uid: 37717 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 37879 + - uid: 37718 components: - type: Transform pos: 58.475845,17.747644 parent: 2 - - uid: 40895 + - uid: 40722 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.62985,-2.677948 - parent: 38584 + parent: 38411 - proto: WeaponPistolViper entities: - - uid: 40896 + - uid: 40723 components: - type: Transform rot: 3.141592653589793 rad pos: 12.13895,19.323975 - parent: 38584 + parent: 38411 - proto: WeaponRevolverMateba entities: - - uid: 37881 + - uid: 37719 components: - type: Transform pos: 36.47151,18.549223 parent: 2 - proto: WeaponRifleAk entities: - - uid: 37882 + - uid: 37720 components: - type: Transform pos: 40.57007,17.532423 parent: 2 - proto: WeaponRifleLecter entities: - - uid: 37883 + - uid: 37721 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 65.5592,8.563683 parent: 2 - - uid: 37884 + - uid: 37722 components: - type: Transform pos: 65.5,9.5 parent: 2 - - uid: 37885 + - uid: 37723 components: - type: Transform pos: 65.5,9.5 parent: 2 - proto: WeaponShotgunDoubleBarreled entities: - - uid: 37886 + - uid: 37724 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 59.413765,9.52802 parent: 2 - - uid: 37887 + - uid: 37725 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -276936,14 +277019,14 @@ entities: parent: 2 - proto: WeaponShotgunDoubleBarreledRubber entities: - - uid: 1648 + - uid: 1652 components: - type: Transform - parent: 1645 + parent: 1649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37888 + - uid: 37726 components: - type: Transform rot: 1.5707963267948966 rad @@ -276951,171 +277034,171 @@ entities: parent: 2 - proto: WeaponShotgunEnforcer entities: - - uid: 15016 + - uid: 14957 components: - type: Transform - parent: 15009 + parent: 14950 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37889 + - uid: 37727 components: - type: Transform pos: 67.4812,8.740917 parent: 2 - - uid: 37890 + - uid: 37728 components: - type: Transform pos: 67.528076,8.490917 parent: 2 - proto: WeaponShotgunKammerer entities: - - uid: 37891 + - uid: 37729 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.562634,8.421831 parent: 2 - - uid: 37892 + - uid: 37730 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.550396,8.519675 parent: 2 - - uid: 37893 + - uid: 37731 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 57.550396,8.556368 parent: 2 - - uid: 40897 + - uid: 40724 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.54236,-4.154785 - parent: 38584 - - uid: 40898 + parent: 38411 + - uid: 40725 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.776735,-4.17041 - parent: 38584 + parent: 38411 - proto: WeaponSubMachineGunDrozd entities: - - uid: 37894 + - uid: 37732 components: - type: Transform rot: 1.0182609457842773E-06 rad pos: 67.584465,9.4546175 parent: 2 - - uid: 37895 + - uid: 37733 components: - type: Transform pos: 65.5,7.5 parent: 2 - proto: WeaponTurretHostile entities: - - uid: 37896 + - uid: 37734 components: - type: Transform pos: 9.5,-79.5 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 37897 + - uid: 37735 components: - type: Transform pos: -31.5,-17.5 parent: 2 - - uid: 37898 + - uid: 37736 components: - type: Transform pos: -37.5,-27.5 parent: 2 - - uid: 37899 + - uid: 37737 components: - type: Transform pos: -43.5,-38.5 parent: 2 - - uid: 37900 + - uid: 37738 components: - type: Transform pos: -114.5,50.5 parent: 2 - - uid: 37901 + - uid: 37739 components: - type: Transform pos: -122.5,50.5 parent: 2 - - uid: 37902 + - uid: 37740 components: - type: Transform pos: -118.5,26.5 parent: 2 - - uid: 37903 + - uid: 37741 components: - type: Transform pos: -118.5,46.5 parent: 2 - - uid: 37904 + - uid: 37742 components: - type: Transform pos: -113.5,26.5 parent: 2 - - uid: 37905 + - uid: 37743 components: - type: Transform pos: -118.5,17.5 parent: 2 - - uid: 37906 + - uid: 37744 components: - type: Transform pos: 48.5,-43.5 parent: 2 - - uid: 37907 + - uid: 37745 components: - type: Transform pos: -68.5,-34.5 parent: 2 - - uid: 37908 + - uid: 37746 components: - type: Transform pos: 52.5,-44.5 parent: 2 - proto: WeaponWaterBlaster entities: - - uid: 37909 + - uid: 37747 components: - type: Transform pos: 67.5,7.5 parent: 2 - proto: WeaponWaterPistol entities: - - uid: 14922 + - uid: 14863 components: - type: Transform - parent: 14916 + parent: 14857 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Welder entities: - - uid: 37910 + - uid: 37748 components: - type: Transform pos: -78.332504,-9.199342 parent: 2 - - uid: 37911 + - uid: 37749 components: - type: Transform pos: 21.382963,54.46153 parent: 2 - - uid: 37912 + - uid: 37750 components: - type: Transform pos: 76.57189,8.456029 parent: 2 - - uid: 37913 + - uid: 37751 components: - type: Transform pos: 23.565264,57.53575 @@ -277124,135 +277207,135 @@ entities: canCollide: False - proto: WelderIndustrial entities: - - uid: 25299 + - uid: 37752 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.42271,-24.841988 parent: 2 - - uid: 37914 + - uid: 37753 components: - type: Transform pos: -47.602818,31.666988 parent: 2 - - uid: 37915 + - uid: 37754 components: - type: Transform pos: -75.5,10.5 parent: 2 - proto: WelderMini entities: - - uid: 37917 + - uid: 37755 components: - type: Transform pos: 13.165333,-14.091633 parent: 2 - - uid: 37918 + - uid: 37756 components: - type: Transform pos: 9.376167,-3.3592515 parent: 2 - proto: WeldingFuelTank entities: - - uid: 37919 + - uid: 37757 components: - type: Transform pos: -20.5,-62.5 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 37920 + - uid: 37758 components: - type: Transform pos: 9.5,88.5 parent: 2 - - uid: 37922 + - uid: 37759 components: - type: Transform pos: -22.5,25.5 parent: 2 - - uid: 37923 + - uid: 37760 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 37924 + - uid: 37761 components: - type: Transform pos: -29.5,60.5 parent: 2 - - uid: 37925 + - uid: 37762 components: - type: Transform pos: 20.5,-22.5 parent: 2 - - uid: 37926 + - uid: 37763 components: - type: Transform pos: 53.5,-29.5 parent: 2 - - uid: 37927 + - uid: 37764 components: - type: Transform pos: 56.5,-43.5 parent: 2 - - uid: 37928 + - uid: 37765 components: - type: Transform pos: -46.5,-17.5 parent: 2 - - uid: 37929 + - uid: 37766 components: - type: Transform pos: -60.5,42.5 parent: 2 - - uid: 37930 + - uid: 37767 components: - type: Transform pos: 22.5,54.5 parent: 2 - - uid: 37931 + - uid: 37768 components: - type: Transform pos: 36.5,32.5 parent: 2 - - uid: 37932 + - uid: 37769 components: - type: Transform pos: -41.5,-14.5 parent: 2 - - uid: 37933 + - uid: 37770 components: - type: Transform pos: -27.5,8.5 parent: 2 - - uid: 37934 + - uid: 37771 components: - type: Transform pos: -43.5,-42.5 parent: 2 - - uid: 37935 + - uid: 37772 components: - type: Transform pos: -28.5,-56.5 parent: 2 - proto: WeldingFuelTankHighCapacity entities: - - uid: 37936 + - uid: 37773 components: - type: Transform pos: -78.5,9.5 parent: 2 - proto: WetFloorSign entities: - - uid: 37937 + - uid: 37774 components: - type: Transform pos: -0.45487064,31.574512 parent: 2 - type: Physics canCollide: False - - uid: 37938 + - uid: 37775 components: - type: Transform pos: 1.5470634,47.65113 @@ -277261,14 +277344,14 @@ entities: canCollide: False - proto: WheatSeeds entities: - - uid: 37939 + - uid: 37776 components: - type: Transform pos: -40.5,33.5 parent: 2 - proto: WhiteKnight entities: - - uid: 37921 + - uid: 37777 components: - type: MetaData name: Дон-Жуан @@ -277280,120 +277363,120 @@ entities: radius: 2 - proto: Windoor entities: - - uid: 37940 + - uid: 37778 components: - type: Transform pos: 96.5,6.5 parent: 2 - - uid: 37941 + - uid: 37779 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-34.5 parent: 2 - - uid: 37942 + - uid: 37780 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-47.5 parent: 2 - - uid: 37943 + - uid: 37781 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-59.5 parent: 2 - - uid: 37944 + - uid: 37782 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,4.5 parent: 2 - - uid: 37945 + - uid: 37783 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-34.5 parent: 2 - - uid: 37946 + - uid: 37784 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,18.5 parent: 2 - - uid: 37947 + - uid: 37785 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,34.5 parent: 2 - - uid: 37948 + - uid: 37786 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,9.5 parent: 2 - - uid: 37949 + - uid: 37787 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,60.5 parent: 2 - - uid: 37950 + - uid: 37788 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 - - uid: 37951 + - uid: 37789 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-45.5 parent: 2 - - uid: 37952 + - uid: 37790 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-28.5 parent: 2 - - uid: 37953 + - uid: 37791 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-6.5 parent: 2 - - uid: 37954 + - uid: 37792 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-49.5 parent: 2 - - uid: 37955 + - uid: 37793 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-28.5 parent: 2 - - uid: 37956 + - uid: 37794 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,60.5 parent: 2 - - uid: 37957 + - uid: 37795 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-2.5 parent: 2 - - uid: 37958 + - uid: 37796 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,22.5 parent: 2 - - uid: 37959 + - uid: 37797 components: - type: Transform rot: 1.5707963267948966 rad @@ -277401,7 +277484,7 @@ entities: parent: 2 - proto: WindoorAssemblySecure entities: - - uid: 37960 + - uid: 37798 components: - type: Transform rot: 3.141592653589793 rad @@ -277409,51 +277492,51 @@ entities: parent: 2 - proto: WindoorBarLocked entities: - - uid: 37961 + - uid: 37799 components: - type: Transform pos: -2.5,41.5 parent: 2 - proto: WindoorCargoLocked entities: - - uid: 37962 + - uid: 37800 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,43.5 parent: 2 - - uid: 37963 + - uid: 37801 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,32.5 parent: 2 - - uid: 37964 + - uid: 37802 components: - type: Transform pos: 7.5,44.5 parent: 2 - proto: WindoorHydroponicsLocked entities: - - uid: 37965 + - uid: 37803 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,53.5 parent: 2 - - uid: 37966 + - uid: 37804 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,51.5 parent: 2 - - uid: 37967 + - uid: 37805 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,50.5 parent: 2 - - uid: 37968 + - uid: 37806 components: - type: Transform rot: -1.5707963267948966 rad @@ -277461,136 +277544,136 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 37969 + - uid: 37807 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,19.5 parent: 2 - - uid: 37970 + - uid: 37808 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-0.5 parent: 2 - - uid: 37971 + - uid: 37809 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-0.5 parent: 2 - - uid: 37972 + - uid: 37810 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-0.5 parent: 2 - - uid: 40899 + - uid: 40726 components: - type: Transform pos: -21.5,3.5 - parent: 38584 - - uid: 40900 + parent: 38411 + - uid: 40727 components: - type: Transform pos: -15.5,3.5 - parent: 38584 - - uid: 40901 + parent: 38411 + - uid: 40728 components: - type: Transform pos: -18.5,3.5 - parent: 38584 - - uid: 40902 + parent: 38411 + - uid: 40729 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,7.5 - parent: 38584 - - uid: 40903 + parent: 38411 + - uid: 40730 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,7.5 - parent: 38584 - - uid: 40904 + parent: 38411 + - uid: 40731 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,7.5 - parent: 38584 + parent: 38411 - proto: WindoorSecureArmoryLocked entities: - - uid: 37973 + - uid: 37811 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,8.5 parent: 2 - - uid: 37974 + - uid: 37812 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 37975 + - uid: 37813 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 37976 + - uid: 37814 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,12.5 parent: 2 - - uid: 37977 + - uid: 37815 components: - type: Transform pos: 58.5,7.5 parent: 2 - - uid: 37978 + - uid: 37816 components: - type: Transform pos: 62.5,7.5 parent: 2 - - uid: 37979 + - uid: 37817 components: - type: Transform pos: 66.5,7.5 parent: 2 - - uid: 37980 + - uid: 37818 components: - type: Transform pos: 69.5,8.5 parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: - - uid: 37981 + - uid: 37819 components: - type: Transform pos: -46.5,24.5 parent: 2 - - uid: 37982 + - uid: 37820 components: - type: Transform pos: -47.5,24.5 parent: 2 - - uid: 37983 + - uid: 37821 components: - type: Transform pos: -48.5,24.5 parent: 2 - - uid: 37984 + - uid: 37822 components: - type: Transform pos: -49.5,24.5 parent: 2 - - uid: 37985 + - uid: 37823 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,18.5 parent: 2 - - uid: 37986 + - uid: 37824 components: - type: Transform rot: -1.5707963267948966 rad @@ -277598,19 +277681,19 @@ entities: parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 37987 + - uid: 37825 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-59.5 parent: 2 - - uid: 37988 + - uid: 37826 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-7.5 parent: 2 - - uid: 37989 + - uid: 37827 components: - type: Transform rot: 1.5707963267948966 rad @@ -277618,7 +277701,7 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 37990 + - uid: 37828 components: - type: Transform rot: 1.5707963267948966 rad @@ -277626,96 +277709,96 @@ entities: parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 37991 + - uid: 37829 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-59.5 parent: 2 - - uid: 37992 + - uid: 37830 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-15.5 parent: 2 - - uid: 37993 + - uid: 37831 components: - type: Transform rot: 1.5707963267948966 rad pos: -117.5,48.5 parent: 2 - - uid: 37994 + - uid: 37832 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,48.5 parent: 2 - - uid: 37995 + - uid: 37833 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-0.5 parent: 2 - - uid: 37996 + - uid: 37834 components: - type: Transform pos: 31.5,-2.5 parent: 2 - - uid: 37997 + - uid: 37835 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 2 - - uid: 37998 + - uid: 37836 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 2 - - uid: 37999 + - uid: 37837 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-13.5 parent: 2 - - uid: 38000 + - uid: 37838 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,14.5 parent: 2 - - uid: 38001 + - uid: 37839 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 - - uid: 38002 + - uid: 37840 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 - - uid: 38003 + - uid: 37841 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-12.5 parent: 2 - - uid: 38004 + - uid: 37842 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,1.5 parent: 2 - - uid: 38005 + - uid: 37843 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,45.5 parent: 2 - - uid: 38006 + - uid: 37844 components: - type: Transform rot: 3.141592653589793 rad @@ -277723,19 +277806,19 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 38007 + - uid: 37845 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,14.5 parent: 2 - - uid: 38008 + - uid: 37846 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,23.5 parent: 2 - - uid: 38009 + - uid: 37847 components: - type: Transform rot: 1.5707963267948966 rad @@ -277743,61 +277826,61 @@ entities: parent: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 38010 + - uid: 37848 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,4.5 parent: 2 - - uid: 38011 + - uid: 37849 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-1.5 parent: 2 - - uid: 38012 + - uid: 37850 components: - type: Transform pos: -11.5,-1.5 parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 38013 + - uid: 37851 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-33.5 parent: 2 - - uid: 38014 + - uid: 37852 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-33.5 parent: 2 - - uid: 38015 + - uid: 37853 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 38016 + - uid: 37854 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 - - uid: 38017 + - uid: 37855 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-28.5 parent: 2 - - uid: 38018 + - uid: 37856 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-27.5 parent: 2 - - uid: 38019 + - uid: 37857 components: - type: Transform rot: 1.5707963267948966 rad @@ -277805,98 +277888,98 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 38020 + - uid: 37858 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-47.5 parent: 2 - - uid: 38021 + - uid: 37859 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-33.5 parent: 2 - - uid: 38022 + - uid: 37860 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-33.5 parent: 2 - - uid: 38023 + - uid: 37861 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-48.5 parent: 2 - - uid: 38024 + - uid: 37862 components: - type: Transform pos: -33.5,-30.5 parent: 2 - - uid: 38025 + - uid: 37863 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 38026 + - uid: 37864 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-24.5 parent: 2 - - uid: 38027 + - uid: 37865 components: - type: Transform pos: -33.5,-25.5 parent: 2 - - uid: 38028 + - uid: 37866 components: - type: Transform pos: -37.5,-30.5 parent: 2 - - uid: 38029 + - uid: 37867 components: - type: Transform pos: -41.5,-30.5 parent: 2 - - uid: 38030 + - uid: 37868 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-34.5 parent: 2 - - uid: 38031 + - uid: 37869 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-57.5 parent: 2 - - uid: 38032 + - uid: 37870 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-27.5 parent: 2 - - uid: 38033 + - uid: 37871 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-24.5 parent: 2 - - uid: 38034 + - uid: 37872 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-29.5 parent: 2 - - uid: 38035 + - uid: 37873 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-29.5 parent: 2 - - uid: 38036 + - uid: 37874 components: - type: Transform rot: -1.5707963267948966 rad @@ -277904,13 +277987,13 @@ entities: parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - - uid: 38037 + - uid: 37875 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 - - uid: 38038 + - uid: 37876 components: - type: Transform rot: -1.5707963267948966 rad @@ -277918,119 +278001,119 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 38039 + - uid: 37877 components: - type: Transform pos: 11.5,-28.5 parent: 2 - - uid: 38040 + - uid: 37878 components: - type: Transform pos: -22.5,3.5 parent: 2 - - uid: 38041 + - uid: 37879 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-32.5 parent: 2 - - uid: 38042 + - uid: 37880 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,61.5 parent: 2 - - uid: 38043 + - uid: 37881 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,24.5 parent: 2 - - uid: 38044 + - uid: 37882 components: - type: Transform pos: 75.5,24.5 parent: 2 - - uid: 38045 + - uid: 37883 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,26.5 parent: 2 - - uid: 38046 + - uid: 37884 components: - type: Transform pos: 75.5,26.5 parent: 2 - - uid: 38047 + - uid: 37885 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,7.5 parent: 2 - - uid: 38048 + - uid: 37886 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,23.5 parent: 2 - - uid: 38049 + - uid: 37887 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,21.5 parent: 2 - - uid: 38582 + - uid: 38409 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 - parent: 38484 - - uid: 38583 + parent: 38311 + - uid: 38410 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,0.5 - parent: 38484 - - uid: 40905 + parent: 38311 + - uid: 40732 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 - parent: 38584 - - uid: 40906 + parent: 38411 + - uid: 40733 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-3.5 - parent: 38584 - - uid: 40907 + parent: 38411 + - uid: 40734 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,1.5 - parent: 38584 - - uid: 40908 + parent: 38411 + - uid: 40735 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-4.5 - parent: 38584 - - uid: 40909 + parent: 38411 + - uid: 40736 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-2.5 - parent: 38584 - - uid: 40910 + parent: 38411 + - uid: 40737 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-3.5 - parent: 38584 + parent: 38411 - proto: WindoorServiceLocked entities: - - uid: 38050 + - uid: 37888 components: - type: Transform rot: 3.141592653589793 rad @@ -278038,7 +278121,7 @@ entities: parent: 2 - proto: WindoorTheatreLocked entities: - - uid: 38051 + - uid: 37889 components: - type: Transform rot: -1.5707963267948966 rad @@ -278046,458 +278129,462 @@ entities: parent: 2 - proto: Window entities: - - uid: 38052 + - uid: 37890 components: - type: Transform pos: -16.5,19.5 parent: 2 - - uid: 38053 + - type: PointLight + color: '#B6DCFFFF' + - uid: 37891 components: - type: Transform pos: 15.5,19.5 parent: 2 - - uid: 38054 + - type: PointLight + color: '#B6DCFFFF' + - uid: 37892 components: - type: Transform pos: 15.5,18.5 parent: 2 - - uid: 38055 + - uid: 37893 components: - type: Transform pos: -16.5,18.5 parent: 2 - - uid: 38056 + - uid: 37894 components: - type: Transform pos: -16.5,20.5 parent: 2 - - uid: 38057 + - uid: 37895 components: - type: Transform pos: 15.5,20.5 parent: 2 - - uid: 38058 + - uid: 37896 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,3.5 parent: 2 - - uid: 38059 + - uid: 37897 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,3.5 parent: 2 - - uid: 38060 + - uid: 37898 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,3.5 parent: 2 - - uid: 38061 + - uid: 37899 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,3.5 parent: 2 - - uid: 38080 + - uid: 37900 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 38081 + - uid: 37901 components: - type: Transform pos: 3.5,-6.5 parent: 2 - - uid: 38082 + - uid: 37902 components: - type: Transform pos: 45.5,-17.5 parent: 2 - - uid: 38083 + - uid: 37903 components: - type: Transform pos: -35.5,50.5 parent: 2 - - uid: 38084 + - uid: 37904 components: - type: Transform pos: 48.5,-17.5 parent: 2 - - uid: 38085 + - uid: 37905 components: - type: Transform pos: -1.5,-67.5 parent: 2 - - uid: 38086 + - uid: 37906 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-51.5 parent: 2 - - uid: 38087 + - uid: 37907 components: - type: Transform pos: -20.5,-3.5 parent: 2 - - uid: 38088 + - uid: 37908 components: - type: Transform pos: -4.5,-66.5 parent: 2 - - uid: 38089 + - uid: 37909 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-45.5 parent: 2 - - uid: 38090 + - uid: 37910 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 38091 + - uid: 37911 components: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 38092 + - uid: 37912 components: - type: Transform pos: 1.5,-6.5 parent: 2 - - uid: 38093 + - uid: 37913 components: - type: Transform pos: 4.5,-6.5 parent: 2 - - uid: 38094 + - uid: 37914 components: - type: Transform pos: 46.5,-48.5 parent: 2 - - uid: 38095 + - uid: 37915 components: - type: Transform pos: -36.5,28.5 parent: 2 - - uid: 38096 + - uid: 37916 components: - type: Transform pos: -36.5,34.5 parent: 2 - - uid: 38097 + - uid: 37917 components: - type: Transform pos: -36.5,33.5 parent: 2 - - uid: 38098 + - uid: 37918 components: - type: Transform pos: -41.5,32.5 parent: 2 - - uid: 38099 + - uid: 37919 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-52.5 parent: 2 - - uid: 38100 + - uid: 37920 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-66.5 parent: 2 - - uid: 38101 + - uid: 37921 components: - type: Transform pos: -41.5,33.5 parent: 2 - - uid: 38102 + - uid: 37922 components: - type: Transform pos: 10.5,25.5 parent: 2 - - uid: 38103 + - uid: 37923 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-47.5 parent: 2 - - uid: 38104 + - uid: 37924 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-45.5 parent: 2 - - uid: 38105 + - uid: 37925 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-45.5 parent: 2 - - uid: 38106 + - uid: 37926 components: - type: Transform pos: -34.5,42.5 parent: 2 - - uid: 38107 + - uid: 37927 components: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 38108 + - uid: 37928 components: - type: Transform pos: -20.5,10.5 parent: 2 - - uid: 38109 + - uid: 37929 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 38110 + - uid: 37930 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-50.5 parent: 2 - - uid: 38111 + - uid: 37931 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-45.5 parent: 2 - - uid: 38112 + - uid: 37932 components: - type: Transform pos: 10.5,65.5 parent: 2 - - uid: 38113 + - uid: 37933 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 38114 + - uid: 37934 components: - type: Transform pos: -2.5,-73.5 parent: 2 - - uid: 38115 + - uid: 37935 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-9.5 parent: 2 - - uid: 38116 + - uid: 37936 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-46.5 parent: 2 - - uid: 38117 + - uid: 37937 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-40.5 parent: 2 - - uid: 38118 + - uid: 37938 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 38119 + - uid: 37939 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 38120 + - uid: 37940 components: - type: Transform pos: -36.5,26.5 parent: 2 - - uid: 38121 + - uid: 37941 components: - type: Transform pos: -20.5,19.5 parent: 2 - - uid: 38122 + - uid: 37942 components: - type: Transform pos: -20.5,14.5 parent: 2 - - uid: 38123 + - uid: 37943 components: - type: Transform pos: 45.5,-48.5 parent: 2 - - uid: 38124 + - uid: 37944 components: - type: Transform pos: 38.5,-50.5 parent: 2 - - uid: 38125 + - uid: 37945 components: - type: Transform pos: -5.5,-66.5 parent: 2 - - uid: 38126 + - uid: 37946 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-45.5 parent: 2 - - uid: 38127 + - uid: 37947 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-48.5 parent: 2 - - uid: 38128 + - uid: 37948 components: - type: Transform pos: 13.5,70.5 parent: 2 - - uid: 38129 + - uid: 37949 components: - type: Transform pos: -35.5,48.5 parent: 2 - - uid: 38130 + - uid: 37950 components: - type: Transform pos: 11.5,65.5 parent: 2 - - uid: 38131 + - uid: 37951 components: - type: Transform pos: -22.5,7.5 parent: 2 - - uid: 38132 + - uid: 37952 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-58.5 parent: 2 - - uid: 38133 + - uid: 37953 components: - type: Transform pos: 3.5,25.5 parent: 2 - - uid: 38134 + - uid: 37954 components: - type: Transform pos: 2.5,25.5 parent: 2 - - uid: 38135 + - uid: 37955 components: - type: Transform pos: 13.5,69.5 parent: 2 - - uid: 38136 + - uid: 37956 components: - type: Transform pos: 9.5,25.5 parent: 2 - - uid: 38137 + - uid: 37957 components: - type: Transform pos: -20.5,13.5 parent: 2 - - uid: 38138 + - uid: 37958 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,3.5 parent: 2 - - uid: 38139 + - uid: 37959 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-9.5 parent: 2 - - uid: 38140 + - uid: 37960 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-71.5 parent: 2 - - uid: 38141 + - uid: 37961 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 38142 + - uid: 37962 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 38143 + - uid: 37963 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-47.5 parent: 2 - - uid: 38144 + - uid: 37964 components: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 38145 + - uid: 37965 components: - type: Transform pos: -27.5,7.5 parent: 2 - - uid: 38146 + - uid: 37966 components: - type: Transform pos: -26.5,7.5 parent: 2 - - uid: 38147 + - uid: 37967 components: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 38148 + - uid: 37968 components: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 38149 + - uid: 37969 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 38150 + - uid: 37970 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-47.5 parent: 2 - - uid: 38151 + - uid: 37971 components: - type: Transform pos: -21.5,22.5 parent: 2 - - uid: 38152 + - uid: 37972 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-40.5 parent: 2 - - uid: 38153 + - uid: 37973 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-66.5 parent: 2 - - uid: 38154 + - uid: 37974 components: - type: Transform pos: -6.5,-67.5 parent: 2 - - uid: 38155 + - uid: 37975 components: - type: Transform rot: -1.5707963267948966 rad @@ -278505,289 +278592,289 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 38156 + - uid: 37976 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,27.5 parent: 2 - - uid: 38157 + - uid: 37977 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,27.5 parent: 2 - - uid: 38158 + - uid: 37978 components: - type: Transform pos: 95.5,6.5 parent: 2 - - uid: 38159 + - uid: 37979 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-66.5 parent: 2 - - uid: 38160 + - uid: 37980 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-67.5 parent: 2 - - uid: 38161 + - uid: 37981 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-67.5 parent: 2 - - uid: 38162 + - uid: 37982 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-66.5 parent: 2 - - uid: 38163 + - uid: 37983 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,62.5 parent: 2 - - uid: 38164 + - uid: 37984 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,53.5 parent: 2 - - uid: 38165 + - uid: 37985 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,52.5 parent: 2 - - uid: 38166 + - uid: 37986 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,53.5 parent: 2 - - uid: 38167 + - uid: 37987 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,63.5 parent: 2 - - uid: 38168 + - uid: 37988 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,54.5 parent: 2 - - uid: 38169 + - uid: 37989 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,64.5 parent: 2 - - uid: 38170 + - uid: 37990 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-4.5 parent: 2 - - uid: 38171 + - uid: 37991 components: - type: Transform pos: -1.5,41.5 parent: 2 - - uid: 38172 + - uid: 37992 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,54.5 parent: 2 - - uid: 38173 + - uid: 37993 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-4.5 parent: 2 - - uid: 38174 + - uid: 37994 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,60.5 parent: 2 - - uid: 38175 + - uid: 37995 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-42.5 parent: 2 - - uid: 38176 + - uid: 37996 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,55.5 parent: 2 - - uid: 38177 + - uid: 37997 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-42.5 parent: 2 - - uid: 38178 + - uid: 37998 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-43.5 parent: 2 - - uid: 38179 + - uid: 37999 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,51.5 parent: 2 - - uid: 38180 + - uid: 38000 components: - type: Transform pos: 6.5,44.5 parent: 2 - - uid: 38181 + - uid: 38001 components: - type: Transform pos: -1.5,41.5 parent: 2 - - uid: 38182 + - uid: 38002 components: - type: Transform pos: 4.5,44.5 parent: 2 - - uid: 38183 + - uid: 38003 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,48.5 parent: 2 - - uid: 38184 + - uid: 38004 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,51.5 parent: 2 - - uid: 38185 + - uid: 38005 components: - type: Transform pos: -3.5,41.5 parent: 2 - - uid: 38186 + - uid: 38006 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,47.5 parent: 2 - - uid: 38187 + - uid: 38007 components: - type: Transform pos: 5.5,44.5 parent: 2 - - uid: 38188 + - uid: 38008 components: - type: Transform pos: -25.5,2.5 parent: 2 - - uid: 38189 + - uid: 38009 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,60.5 parent: 2 - - uid: 38190 + - uid: 38010 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 - - uid: 38191 + - uid: 38011 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-4.5 parent: 2 - - uid: 38192 + - uid: 38012 components: - type: Transform pos: 28.5,59.5 parent: 2 - - uid: 38193 + - uid: 38013 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,59.5 parent: 2 - - uid: 38194 + - uid: 38014 components: - type: Transform pos: 27.5,59.5 parent: 2 - - uid: 38195 + - uid: 38015 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,60.5 parent: 2 - - uid: 38196 + - uid: 38016 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-43.5 parent: 2 - - uid: 38197 + - uid: 38017 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-41.5 parent: 2 - - uid: 38198 + - uid: 38018 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-4.5 parent: 2 - - uid: 38199 + - uid: 38019 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,17.5 parent: 2 - - uid: 38200 + - uid: 38020 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,57.5 parent: 2 - - uid: 38201 + - uid: 38021 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,52.5 parent: 2 - - uid: 38202 + - uid: 38022 components: - type: Transform pos: -55.5,49.5 parent: 2 - - uid: 38203 + - uid: 38023 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,48.5 parent: 2 - - uid: 38204 + - uid: 38024 components: - type: Transform pos: 97.5,6.5 parent: 2 - - uid: 38205 + - uid: 38025 components: - type: MetaData desc: Это я =) @@ -278798,1359 +278885,1359 @@ entities: parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 38206 + - uid: 38026 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-6.5 parent: 2 - - uid: 38207 + - uid: 38027 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-8.5 parent: 2 - - uid: 38208 + - uid: 38028 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,13.5 parent: 2 - - uid: 38209 + - uid: 38029 components: - type: Transform pos: -4.5,-50.5 parent: 2 - - uid: 38210 + - uid: 38030 components: - type: Transform pos: -3.5,-50.5 parent: 2 - - uid: 38211 + - uid: 38031 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,23.5 parent: 2 - - uid: 38212 + - uid: 38032 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,59.5 parent: 2 - - uid: 38213 + - uid: 38033 components: - type: Transform pos: -34.5,62.5 parent: 2 - - uid: 38214 + - uid: 38034 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,60.5 parent: 2 - - uid: 38215 + - uid: 38035 components: - type: Transform pos: -36.5,62.5 parent: 2 - - uid: 38216 + - uid: 38036 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,62.5 parent: 2 - - uid: 38217 + - uid: 38037 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,63.5 parent: 2 - - uid: 38218 + - uid: 38038 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,63.5 parent: 2 - - uid: 38219 + - uid: 38039 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-15.5 parent: 2 - - uid: 38220 + - uid: 38040 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 - - uid: 38221 + - uid: 38041 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-15.5 parent: 2 - - uid: 38222 + - uid: 38042 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-13.5 parent: 2 - - uid: 38223 + - uid: 38043 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,62.5 parent: 2 - - uid: 38224 + - uid: 38044 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-6.5 parent: 2 - - uid: 38225 + - uid: 38045 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-7.5 parent: 2 - - uid: 38226 + - uid: 38046 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-8.5 parent: 2 - - uid: 38227 + - uid: 38047 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,60.5 parent: 2 - - uid: 38228 + - uid: 38048 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-37.5 parent: 2 - - uid: 38229 + - uid: 38049 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,12.5 parent: 2 - - uid: 38230 + - uid: 38050 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-8.5 parent: 2 - - uid: 38231 + - uid: 38051 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-6.5 parent: 2 - - uid: 40911 + - uid: 40738 components: - type: Transform pos: 12.5,20.5 - parent: 38584 - - uid: 40912 + parent: 38411 + - uid: 40739 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,18.5 - parent: 38584 - - uid: 40913 + parent: 38411 + - uid: 40740 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,18.5 - parent: 38584 - - uid: 40914 + parent: 38411 + - uid: 40741 components: - type: Transform pos: 14.5,20.5 - parent: 38584 + parent: 38411 - proto: WindowReinforcedDirectional entities: - - uid: 38232 + - uid: 38052 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 38233 + - uid: 38053 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-11.5 parent: 2 - - uid: 38234 + - uid: 38054 components: - type: Transform pos: -15.5,-11.5 parent: 2 - - uid: 38235 + - uid: 38055 components: - type: Transform pos: -13.5,-11.5 parent: 2 - - uid: 38236 + - uid: 38056 components: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 38237 + - uid: 38057 components: - type: Transform pos: -22.5,21.5 parent: 2 - - uid: 38238 + - uid: 38058 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,51.5 parent: 2 - - uid: 38239 + - uid: 38059 components: - type: Transform pos: -10.5,-1.5 parent: 2 - - uid: 38240 + - uid: 38060 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-1.5 parent: 2 - - uid: 38241 + - uid: 38061 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-1.5 parent: 2 - - uid: 38242 + - uid: 38062 components: - type: Transform pos: -12.5,-1.5 parent: 2 - - uid: 38243 + - uid: 38063 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-6.5 parent: 2 - - uid: 38244 + - uid: 38064 components: - type: Transform rot: 3.141592653589793 rad pos: -123.5,23.5 parent: 2 - - uid: 38245 + - uid: 38065 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-16.5 parent: 2 - - uid: 38246 + - uid: 38066 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 - - uid: 38247 + - uid: 38067 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-3.5 parent: 2 - - uid: 38248 + - uid: 38068 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 - - uid: 38249 + - uid: 38069 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 - - uid: 38250 + - uid: 38070 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,8.5 parent: 2 - - uid: 38251 + - uid: 38071 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,10.5 parent: 2 - - uid: 38252 + - uid: 38072 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,19.5 parent: 2 - - uid: 38253 + - uid: 38073 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-26.5 parent: 2 - - uid: 38254 + - uid: 38074 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-67.5 parent: 2 - - uid: 38255 + - uid: 38075 components: - type: Transform pos: -7.5,-12.5 parent: 2 - - uid: 38256 + - uid: 38076 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-6.5 parent: 2 - - uid: 38257 + - uid: 38077 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 - - uid: 38258 + - uid: 38078 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,0.5 parent: 2 - - uid: 38259 + - uid: 38079 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,11.5 parent: 2 - - uid: 38260 + - uid: 38080 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-26.5 parent: 2 - - uid: 38261 + - uid: 38081 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,18.5 parent: 2 - - uid: 38262 + - uid: 38082 components: - type: Transform pos: -118.5,30.5 parent: 2 - - uid: 38263 + - uid: 38083 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-58.5 parent: 2 - - uid: 38264 + - uid: 38084 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,13.5 parent: 2 - - uid: 38265 + - uid: 38085 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,7.5 parent: 2 - - uid: 38266 + - uid: 38086 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,7.5 parent: 2 - - uid: 38267 + - uid: 38087 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 2 - - uid: 38268 + - uid: 38088 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,13.5 parent: 2 - - uid: 38269 + - uid: 38089 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-29.5 parent: 2 - - uid: 38270 + - uid: 38090 components: - type: Transform pos: -24.5,21.5 parent: 2 - - uid: 38271 + - uid: 38091 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,22.5 parent: 2 - - uid: 38272 + - uid: 38092 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 - - uid: 38273 + - uid: 38093 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 38274 + - uid: 38094 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,35.5 parent: 2 - - uid: 38275 + - uid: 38095 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 2 - - uid: 38276 + - uid: 38096 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 2 - - uid: 38277 + - uid: 38097 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 - - uid: 38278 + - uid: 38098 components: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 38279 + - uid: 38099 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,23.5 parent: 2 - - uid: 38280 + - uid: 38100 components: - type: Transform pos: 63.5,7.5 parent: 2 - - uid: 38281 + - uid: 38101 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 38282 + - uid: 38102 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-50.5 parent: 2 - - uid: 38283 + - uid: 38103 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,7.5 parent: 2 - - uid: 38284 + - uid: 38104 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,8.5 parent: 2 - - uid: 38285 + - uid: 38105 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,8.5 parent: 2 - - uid: 38286 + - uid: 38106 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,9.5 parent: 2 - - uid: 38287 + - uid: 38107 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-25.5 parent: 2 - - uid: 38288 + - uid: 38108 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 - - uid: 38289 + - uid: 38109 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 - - uid: 38290 + - uid: 38110 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-25.5 parent: 2 - - uid: 38291 + - uid: 38111 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,8.5 parent: 2 - - uid: 38292 + - uid: 38112 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,9.5 parent: 2 - - uid: 38293 + - uid: 38113 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,9.5 parent: 2 - - uid: 38294 + - uid: 38114 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,7.5 parent: 2 - - uid: 38295 + - uid: 38115 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,9.5 parent: 2 - - uid: 38296 + - uid: 38116 components: - type: Transform pos: 57.5,7.5 parent: 2 - - uid: 38297 + - uid: 38117 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-31.5 parent: 2 - - uid: 38298 + - uid: 38118 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-51.5 parent: 2 - - uid: 38299 + - uid: 38119 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-52.5 parent: 2 - - uid: 38300 + - uid: 38120 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,9.5 parent: 2 - - uid: 38301 + - uid: 38121 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 - - uid: 38302 + - uid: 38122 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-30.5 parent: 2 - - uid: 38303 + - uid: 38123 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-49.5 parent: 2 - - uid: 38304 + - uid: 38124 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-55.5 parent: 2 - - uid: 38305 + - uid: 38125 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,33.5 parent: 2 - - uid: 38306 + - uid: 38126 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,14.5 parent: 2 - - uid: 38307 + - uid: 38127 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 2 - - uid: 38308 + - uid: 38128 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-53.5 parent: 2 - - uid: 38309 + - uid: 38129 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-16.5 parent: 2 - - uid: 38310 + - uid: 38130 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-29.5 parent: 2 - - uid: 38311 + - uid: 38131 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-29.5 parent: 2 - - uid: 38312 + - uid: 38132 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-30.5 parent: 2 - - uid: 38313 + - uid: 38133 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,8.5 parent: 2 - - uid: 38314 + - uid: 38134 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-25.5 parent: 2 - - uid: 38315 + - uid: 38135 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-25.5 parent: 2 - - uid: 38316 + - uid: 38136 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-50.5 parent: 2 - - uid: 38317 + - uid: 38137 components: - type: Transform pos: -15.5,-15.5 parent: 2 - - uid: 38318 + - uid: 38138 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-52.5 parent: 2 - - uid: 38319 + - uid: 38139 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,8.5 parent: 2 - - uid: 38320 + - uid: 38140 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-0.5 parent: 2 - - uid: 38321 + - uid: 38141 components: - type: Transform pos: 70.5,8.5 parent: 2 - - uid: 38322 + - uid: 38142 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,8.5 parent: 2 - - uid: 38323 + - uid: 38143 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-85.5 parent: 2 - - uid: 38324 + - uid: 38144 components: - type: Transform pos: 68.5,8.5 parent: 2 - - uid: 38325 + - uid: 38145 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-6.5 parent: 2 - - uid: 38326 + - uid: 38146 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,34.5 parent: 2 - - uid: 38327 + - uid: 38147 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-56.5 parent: 2 - - uid: 38328 + - uid: 38148 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,47.5 parent: 2 - - uid: 38329 + - uid: 38149 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-30.5 parent: 2 - - uid: 38330 + - uid: 38150 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-4.5 parent: 2 - - uid: 38331 + - uid: 38151 components: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 38332 + - uid: 38152 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-55.5 parent: 2 - - uid: 38333 + - uid: 38153 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,0.5 parent: 2 - - uid: 38334 + - uid: 38154 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 38335 + - uid: 38155 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-46.5 parent: 2 - - uid: 38336 + - uid: 38156 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-0.5 parent: 2 - - uid: 38337 + - uid: 38157 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,7.5 parent: 2 - - uid: 38338 + - uid: 38158 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-54.5 parent: 2 - - uid: 38339 + - uid: 38159 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 2 - - uid: 38340 + - uid: 38160 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,13.5 parent: 2 - - uid: 38341 + - uid: 38161 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,12.5 parent: 2 - - uid: 38342 + - uid: 38162 components: - type: Transform pos: -47.5,-26.5 parent: 2 - - uid: 38343 + - uid: 38163 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,15.5 parent: 2 - - uid: 38344 + - uid: 38164 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 parent: 2 - - uid: 38345 + - uid: 38165 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,9.5 parent: 2 - - uid: 38346 + - uid: 38166 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,9.5 parent: 2 - - uid: 38347 + - uid: 38167 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-29.5 parent: 2 - - uid: 38348 + - uid: 38168 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,10.5 parent: 2 - - uid: 38349 + - uid: 38169 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,10.5 parent: 2 - - uid: 38350 + - uid: 38170 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,7.5 parent: 2 - - uid: 38351 + - uid: 38171 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 2 - - uid: 38352 + - uid: 38172 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,47.5 parent: 2 - - uid: 38353 + - uid: 38173 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 2 - - uid: 38354 + - uid: 38174 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-29.5 parent: 2 - - uid: 38355 + - uid: 38175 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-28.5 parent: 2 - - uid: 38356 + - uid: 38176 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,51.5 parent: 2 - - uid: 38357 + - uid: 38177 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,21.5 parent: 2 - - uid: 38358 + - uid: 38178 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 - - uid: 38359 + - uid: 38179 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-51.5 parent: 2 - - uid: 38360 + - uid: 38180 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 2 - - uid: 38361 + - uid: 38181 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 - - uid: 38362 + - uid: 38182 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-84.5 parent: 2 - - uid: 38363 + - uid: 38183 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-83.5 parent: 2 - - uid: 38364 + - uid: 38184 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-82.5 parent: 2 - - uid: 38365 + - uid: 38185 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-82.5 parent: 2 - - uid: 38366 + - uid: 38186 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-82.5 parent: 2 - - uid: 38367 + - uid: 38187 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 38368 + - uid: 38188 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-83.5 parent: 2 - - uid: 38369 + - uid: 38189 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-84.5 parent: 2 - - uid: 38370 + - uid: 38190 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-85.5 parent: 2 - - uid: 38371 + - uid: 38191 components: - type: Transform pos: 5.5,-85.5 parent: 2 - - uid: 38372 + - uid: 38192 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-83.5 parent: 2 - - uid: 38373 + - uid: 38193 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 - - uid: 38374 + - uid: 38194 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-16.5 parent: 2 - - uid: 38375 + - uid: 38195 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-45.5 parent: 2 - - uid: 38376 + - uid: 38196 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-44.5 parent: 2 - - uid: 38377 + - uid: 38197 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-42.5 parent: 2 - - uid: 38378 + - uid: 38198 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-43.5 parent: 2 - - uid: 38379 + - uid: 38199 components: - type: Transform pos: 65.5,7.5 parent: 2 - - uid: 38380 + - uid: 38200 components: - type: Transform pos: 67.5,7.5 parent: 2 - - uid: 38381 + - uid: 38201 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-28.5 parent: 2 - - uid: 38382 + - uid: 38202 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,34.5 parent: 2 - - uid: 38383 + - uid: 38203 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,32.5 parent: 2 - - uid: 38384 + - uid: 38204 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,42.5 parent: 2 - - uid: 38385 + - uid: 38205 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,42.5 parent: 2 - - uid: 38386 + - uid: 38206 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,41.5 parent: 2 - - uid: 38387 + - uid: 38207 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,42.5 parent: 2 - - uid: 38388 + - uid: 38208 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,40.5 parent: 2 - - uid: 38389 + - uid: 38209 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,30.5 parent: 2 - - uid: 38390 + - uid: 38210 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,35.5 parent: 2 - - uid: 38391 + - uid: 38211 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,38.5 parent: 2 - - uid: 38392 + - uid: 38212 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,37.5 parent: 2 - - uid: 38393 + - uid: 38213 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,45.5 parent: 2 - - uid: 38394 + - uid: 38214 components: - type: Transform rot: -1.5707963267948966 rad pos: -121.5,45.5 parent: 2 - - uid: 38395 + - uid: 38215 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,40.5 parent: 2 - - uid: 38396 + - uid: 38216 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,38.5 parent: 2 - - uid: 38397 + - uid: 38217 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,33.5 parent: 2 - - uid: 38398 + - uid: 38218 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,36.5 parent: 2 - - uid: 38399 + - uid: 38219 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,31.5 parent: 2 - - uid: 38400 + - uid: 38220 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,36.5 parent: 2 - - uid: 38401 + - uid: 38221 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,41.5 parent: 2 - - uid: 38402 + - uid: 38222 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,39.5 parent: 2 - - uid: 38403 + - uid: 38223 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,39.5 parent: 2 - - uid: 38404 + - uid: 38224 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,37.5 parent: 2 - - uid: 38405 + - uid: 38225 components: - type: Transform rot: 3.141592653589793 rad pos: -121.5,23.5 parent: 2 - - uid: 38406 + - uid: 38226 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,32.5 parent: 2 - - uid: 38407 + - uid: 38227 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,30.5 parent: 2 - - uid: 38408 + - uid: 38228 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,31.5 parent: 2 - - uid: 38409 + - uid: 38229 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,9.5 parent: 2 - - uid: 38410 + - uid: 38230 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,9.5 parent: 2 - - uid: 38411 + - uid: 38231 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,0.5 parent: 2 - - uid: 38412 + - uid: 38232 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,0.5 parent: 2 - - uid: 38413 + - uid: 38233 components: - type: Transform pos: 71.5,0.5 parent: 2 - - uid: 38414 + - uid: 38234 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,10.5 parent: 2 - - uid: 38415 + - uid: 38235 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,7.5 parent: 2 - - uid: 38416 + - uid: 38236 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,9.5 parent: 2 - - uid: 38417 + - uid: 38237 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,9.5 parent: 2 - - uid: 38418 + - uid: 38238 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,7.5 parent: 2 - - uid: 38419 + - uid: 38239 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,9.5 parent: 2 - - uid: 38420 + - uid: 38240 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,9.5 parent: 2 - - uid: 38421 + - uid: 38241 components: - type: Transform pos: 98.5,14.5 parent: 2 - - uid: 40915 + - uid: 40742 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-2.5 - parent: 38584 - - uid: 40916 + parent: 38411 + - uid: 40743 components: - type: Transform pos: 11.5,-4.5 - parent: 38584 - - uid: 40917 + parent: 38411 + - uid: 40744 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-3.5 - parent: 38584 - - uid: 40918 + parent: 38411 + - uid: 40745 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-3.5 - parent: 38584 - - uid: 40919 + parent: 38411 + - uid: 40746 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-4.5 - parent: 38584 - - uid: 40920 + parent: 38411 + - uid: 40747 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-3.5 - parent: 38584 + parent: 38411 - proto: Wirecutter entities: - - uid: 38422 + - uid: 38242 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 38423 + - uid: 38243 components: - type: Transform pos: 0.5158134,45.46363 parent: 2 - type: Physics canCollide: False - - uid: 38424 + - uid: 38244 components: - type: Transform pos: 54.51428,-42.36651 parent: 2 - type: Physics canCollide: False - - uid: 38425 + - uid: 38245 components: - type: Transform pos: -41.48517,40.437695 parent: 2 - type: Physics canCollide: False - - uid: 38426 + - uid: 38246 components: - type: Transform rot: 1.0182609457842773E-06 rad @@ -280158,25 +280245,25 @@ entities: parent: 2 - proto: WoodDoor entities: - - uid: 38427 + - uid: 38247 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-78.5 parent: 2 - - uid: 38428 + - uid: 38248 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-77.5 parent: 2 - - uid: 38429 + - uid: 38249 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-76.5 parent: 2 - - uid: 38430 + - uid: 38250 components: - type: Transform rot: 3.141592653589793 rad @@ -280184,55 +280271,55 @@ entities: parent: 2 - proto: WoodenBench entities: - - uid: 38431 + - uid: 38251 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,54.5 parent: 2 - - uid: 38432 + - uid: 38252 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,54.5 parent: 2 - - uid: 38433 + - uid: 38253 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,54.5 parent: 2 - - uid: 38434 + - uid: 38254 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-20.5 parent: 2 - - uid: 38435 + - uid: 38255 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-19.5 parent: 2 - - uid: 38436 + - uid: 38256 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-24.5 parent: 2 - - uid: 38437 + - uid: 38257 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-19.5 parent: 2 - - uid: 38438 + - uid: 38258 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-24.5 parent: 2 - - uid: 38439 + - uid: 38259 components: - type: Transform rot: -1.5707963267948966 rad @@ -280240,345 +280327,345 @@ entities: parent: 2 - proto: WoodenSign entities: - - uid: 40921 + - uid: 40748 components: - type: MetaData desc: 'Данный знак гласит: "Тут абсолютно НИЧЕГО нет! Просто уходите! За этими огромными подозрительными дверьми ПУСТОТА!"' - type: Transform pos: -11.5,36.5 - parent: 38584 + parent: 38411 - proto: WoodenSupport entities: - - uid: 40922 + - uid: 40749 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,18.5 - parent: 38584 - - uid: 40923 + parent: 38411 + - uid: 40750 components: - type: Transform pos: -26.5,13.5 - parent: 38584 + parent: 38411 - proto: WoodenSupportWall entities: - - uid: 40924 + - uid: 40751 components: - type: Transform pos: -10.5,16.5 - parent: 38584 - - uid: 40925 + parent: 38411 + - uid: 40752 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,13.5 - parent: 38584 - - uid: 40926 + parent: 38411 + - uid: 40753 components: - type: Transform pos: 2.5,17.5 - parent: 38584 - - uid: 40927 + parent: 38411 + - uid: 40754 components: - type: Transform pos: -28.5,14.5 - parent: 38584 + parent: 38411 - proto: WoodenSupportWallBroken entities: - - uid: 40928 + - uid: 40755 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,20.5 - parent: 38584 - - uid: 40929 + parent: 38411 + - uid: 40756 components: - type: Transform pos: 1.5,22.5 - parent: 38584 - - uid: 40930 + parent: 38411 + - uid: 40757 components: - type: Transform pos: -28.5,15.5 - parent: 38584 - - uid: 40931 + parent: 38411 + - uid: 40758 components: - type: Transform pos: -24.5,16.5 - parent: 38584 + parent: 38411 - proto: Wrench entities: - - uid: 38440 + - uid: 38260 components: - type: Transform pos: -58.46594,31.622925 parent: 2 - - uid: 38441 + - uid: 38261 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.422253,23.14012 parent: 2 - - uid: 38442 + - uid: 38262 components: - type: Transform pos: -16.468157,-37.409504 parent: 2 - - uid: 38443 + - uid: 38263 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.17718,21.50901 parent: 2 - - uid: 38444 + - uid: 38264 components: - type: Transform pos: 4.4701343,18.466885 parent: 2 - - uid: 38445 + - uid: 38265 components: - type: Transform pos: -21.5,14.5 parent: 2 - - uid: 38446 + - uid: 38266 components: - type: Transform pos: 74.5,-4.5 parent: 2 - - uid: 38447 + - uid: 38267 components: - type: Transform pos: -7.4624815,-39.412907 parent: 2 - - uid: 38448 + - uid: 38268 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.695988,-70.00492 parent: 2 - - uid: 38449 + - uid: 38269 components: - type: Transform pos: -22.5,-45.5 parent: 2 - - uid: 38450 + - uid: 38270 components: - type: Transform pos: 6.6287384,39.563835 parent: 2 - type: Physics canCollide: False - - uid: 38451 + - uid: 38271 components: - type: Transform pos: -44.537624,-30.411694 parent: 2 - type: Physics canCollide: False - - uid: 38452 + - uid: 38272 components: - type: Transform pos: -78.50845,-5.605592 parent: 2 - - uid: 38453 + - uid: 38273 components: - type: Transform pos: -39.517647,-50.41243 parent: 2 - type: Physics canCollide: False - - uid: 38454 + - uid: 38274 components: - type: Transform pos: 24.454826,-40.436596 parent: 2 - - uid: 38455 + - uid: 38275 components: - type: Transform pos: -35.544933,-35.43443 parent: 2 - - uid: 38456 + - uid: 38276 components: - type: Transform pos: 2.4956002,-37.51832 parent: 2 - type: Physics canCollide: False - - uid: 38457 + - uid: 38277 components: - type: Transform pos: -49.5,-12.5 parent: 2 - type: Physics canCollide: False - - uid: 38458 + - uid: 38278 components: - type: Transform pos: 49.495605,-11.474231 parent: 2 - type: Physics canCollide: False - - uid: 38459 + - uid: 38279 components: - type: Transform pos: 43.5,-38.5 parent: 2 - type: Physics canCollide: False - - uid: 38460 + - uid: 38280 components: - type: Transform pos: -40.493076,-17.417048 parent: 2 - type: Physics canCollide: False - - uid: 38461 + - uid: 38281 components: - type: Transform pos: -59.520313,42.576546 parent: 2 - type: Physics canCollide: False - - uid: 38462 + - uid: 38282 components: - type: Transform pos: 10.479997,74.55022 parent: 2 - type: Physics canCollide: False - - uid: 38463 + - uid: 38283 components: - type: Transform pos: -53.53699,38.476086 parent: 2 - type: Physics canCollide: False - - uid: 38464 + - uid: 38284 components: - type: Transform pos: -34.537655,51.541393 parent: 2 - - uid: 38465 + - uid: 38285 components: - type: Transform pos: -15.437176,-59.397392 parent: 2 - - uid: 38466 + - uid: 38286 components: - type: Transform pos: -31.464987,60.523388 parent: 2 - type: Physics canCollide: False - - uid: 38467 + - uid: 38287 components: - type: Transform pos: 9.504911,87.53533 parent: 2 - type: Physics canCollide: False - - uid: 38468 + - uid: 38288 components: - type: Transform pos: -69.52676,12.527793 parent: 2 - type: Physics canCollide: False - - uid: 38469 + - uid: 38289 components: - type: Transform pos: -55.752308,-13.340677 parent: 2 - type: Physics canCollide: False - - uid: 38470 + - uid: 38290 components: - type: Transform pos: 46.5,-32.5 parent: 2 - type: Physics canCollide: False - - uid: 38471 + - uid: 38291 components: - type: Transform pos: 78.50939,8.518529 parent: 2 - - uid: 38472 + - uid: 38292 components: - type: Transform pos: -45.534843,-17.413626 parent: 2 - type: Physics canCollide: False - - uid: 38473 + - uid: 38293 components: - type: Transform pos: 2.4912405,13.561341 parent: 2 - type: Physics canCollide: False - - uid: 38474 + - uid: 38294 components: - type: Transform pos: 40.473694,-55.415142 parent: 2 - type: Physics canCollide: False - - uid: 38475 + - uid: 38295 components: - type: Transform pos: -33.5,8.5 parent: 2 - type: Physics canCollide: False - - uid: 38476 + - uid: 38296 components: - type: Transform pos: -24.504358,-66.4108 parent: 2 - type: Physics canCollide: False - - uid: 38477 + - uid: 38297 components: - type: Transform pos: -3.5405889,-29.525139 parent: 2 - type: Physics canCollide: False - - uid: 38478 + - uid: 38298 components: - type: Transform pos: -40.5,3.5 parent: 2 - type: Physics canCollide: False - - uid: 38479 + - uid: 38299 components: - type: Transform pos: -56.604393,-1.4317584 parent: 2 - type: Physics canCollide: False - - uid: 38480 + - uid: 38300 components: - type: Transform pos: -29.541601,27.50988 parent: 2 - type: Physics canCollide: False - - uid: 38481 + - uid: 38301 components: - type: Transform pos: -18.545227,-32.40024 parent: 2 - proto: ZiptiesBroken entities: - - uid: 38482 + - uid: 38302 components: - type: Transform pos: -74.245865,-34.43475 parent: 2 - - uid: 38483 + - uid: 38303 components: - type: Transform rot: 1.5707963267948966 rad diff --git a/Resources/Maps/corvax_ishimura.yml b/Resources/Maps/corvax_ishimura.yml index 8895172b983..89127735d22 100644 --- a/Resources/Maps/corvax_ishimura.yml +++ b/Resources/Maps/corvax_ishimura.yml @@ -162530,7 +162530,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Утилизаторская -- proto: SurveillanceCameraWirelessRouterBase +- proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 23587 components: diff --git a/Resources/Maps/corvax_paper.yml b/Resources/Maps/corvax_paper.yml index a9b3d2a62db..1bbc77bd0c5 100644 --- a/Resources/Maps/corvax_paper.yml +++ b/Resources/Maps/corvax_paper.yml @@ -90640,7 +90640,7 @@ entities: - type: Transform pos: 1.5,11.5 parent: 2 -- proto: SurveillanceCameraWirelessRouterBase +- proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 12826 components: diff --git a/Resources/Maps/corvax_pilgrim.yml b/Resources/Maps/corvax_pilgrim.yml index 22632db7116..51cf4e6f4ed 100644 --- a/Resources/Maps/corvax_pilgrim.yml +++ b/Resources/Maps/corvax_pilgrim.yml @@ -154836,7 +154836,7 @@ entities: [italic]А что жрут Дионы?[/italic] [italic]Ничего, идиот. Через 15 минут шаттл. - Те 20% зарплаты, которых я лишился, ЛИЧНО из тебя + Те 20% зарплаты, которых я лишился, ЛИЧНО из тебя выбью! Сранный ящер[/italic] - type: Physics canCollide: False @@ -154924,7 +154924,7 @@ entities: В ходе разведовательной операции удалось узнать следующую информацию: - Каждый офицер СБ, перед тем, как поступить на службу в НТ, проходит стажировку в ядерном подраздлелении синдиката. Только самые матёрые и опытные робасты имеют право сдать письменный экзамен ОЦК, и служить в СБ Кербероса. Каждый сотрудник обучен всем боевым искусствам в галактике, и умеет отличать их по одному нанесенному удару. Но не пользуется сам, потому что это ниже его достоинства. Каждый боец имеет в голове полную базу данных о всех прошлых и передовых разработках синдиката. Умеет пользоваться всей этой техникой, а также знает принципы противодействия ей. Осведомлен о всех способностях генокрадов. О всех возможностях пауков ужаса, ксеносов. Так же в него загружена полная база данных по снаряжению и заклинаниям любого мага федерации магов. + Каждый офицер СБ, перед тем, как поступить на службу в НТ, проходит стажировку в ядерном подраздлелении синдиката. Только самые матёрые и опытные робасты имеют право сдать письменный экзамен ОЦК, и служить в СБ Кербероса. Каждый сотрудник обучен всем боевым искусствам в галактике, и умеет отличать их по одному нанесенному удару. Но не пользуется сам, потому что это ниже его достоинства. Каждый боец имеет в голове полную базу данных о всех прошлых и передовых разработках синдиката. Умеет пользоваться всей этой техникой, а также знает принципы противодействия ей. Осведомлен о всех способностях генокрадов. О всех возможностях пауков ужаса, ксеносов. Так же в него загружена полная база данных по снаряжению и заклинаниям любого мага федерации магов. Но, к сожалению, в голове у сотрудников остается так мало места, что приходится удалять оттуда данные речевых функций, а так же все данные о КЗ, СРП и подобном, сразу после письменного экзамена. Итогом, сотрудник СБ становится молчаливым уберробастом, способным уничтожить любую угрозу в галактике. @@ -155066,7 +155066,7 @@ entities: [head=2]Использование аварийного сигнала[/head] - Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. + Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. При ложном вызове ОЗ, сотрудник, нажавший на аварийную кнопку, должен быть незамедлительно уволен, а Научный Руководитель получить выговор, искл. случаи саботажа отдела. О ложных вызовах необходимо сообщать ГСБ. @@ -155154,13 +155154,13 @@ entities: [head=3]Прочесть после брифинга[/head] - Вам необходимо внимательно ознакомиться с документом “Рабочие процедуры ОЗ”, и время от времени, раз в тридцать минут, контролировать его соблюдение. + Вам необходимо внимательно ознакомиться с документом “Рабочие процедуры ОЗ”, и время от времени, раз в тридцать минут, контролировать его соблюдение. НИК является закрытой стратегической точкой, поэтому, присутствие посторонних лиц без разрешения главы отдела недопустимо. - Рядом со стойкой смотрителя стоят стробоскопы, оповещающие о экстренных ситуациях в отделе. + Рядом со стойкой смотрителя стоят стробоскопы, оповещающие о экстренных ситуациях в отделе. К таковым относится: @@ -155551,7 +155551,7 @@ entities: [head=2]Использование аварийного сигнала[/head] - Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. + Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. При ложном вызове ОЗ, сотрудник, нажавший на аварийную кнопку, должен быть незамедлительно уволен, а Научный Руководитель получить выговор, искл. случаи саботажа отдела. О ложных вызовах необходимо сообщать ГСБ. @@ -155716,7 +155716,7 @@ entities: Каждый желающий член персонала или пассажир станции имеет право обучиться управлению шаттлом NT-PD “Лодка” на специальном тренажере-симуляторе. - По собранной статистике, проведя в нем от 10-ти минут, вы научитесь пилотировать данным видом шаттла. + По собранной статистике, проведя в нем от 10-ти минут, вы научитесь пилотировать данным видом шаттла. После обучения, вы получите право на его пилотирование. @@ -155725,7 +155725,7 @@ entities: [bullet]Шаттл “Лодка” — не ваша собственность. Любые несогласованные с СИ модификации строго запрещены. - [bullet]В случае аварии, на вас будет наложен штраф, размером в полную стоимость ремонта, а также арест по статье КЗ 322 “Порча ценного имущества”, и так далее, в зависимости от тяжести полученных шаттлом повреждений. + [bullet]В случае аварии, на вас будет наложен штраф, размером в полную стоимость ремонта, а также арест по статье КЗ 322 “Порча ценного имущества”, и так далее, в зависимости от тяжести полученных шаттлом повреждений. ============================================= @@ -155922,7 +155922,7 @@ entities: Каждый желающий член персонала или пассажир станции имеет право обучиться управлению шаттлом NT-PD “Лодка” на специальном тренажере-симуляторе, под присмотром учителя. - По собранной статистике, проведя в тренажере всего минуту, вы научитесь пилотировать данным видом шаттла. + По собранной статистике, проведя в тренажере всего минуту, вы научитесь пилотировать данным видом шаттла. После обучения, вы получите право на его пилотирование. @@ -155931,7 +155931,7 @@ entities: [bullet]Шаттл “Лодка” — не ваша собственность. Любые несогласованные с СИ модификации строго запрещены. - [bullet]В случае аварии, на вас будет наложен штраф, размером в полную стоимость ремонта, а также арест по статье КЗ 322 “Порча ценного имущества”, и так далее, в зависимости от тяжести полученных шаттлом повреждений. + [bullet]В случае аварии, на вас будет наложен штраф, размером в полную стоимость ремонта, а также арест по статье КЗ 322 “Порча ценного имущества”, и так далее, в зависимости от тяжести полученных шаттлом повреждений. ============================================= @@ -155964,7 +155964,7 @@ entities: Каждый желающий член персонала или пассажир станции имеет право обучиться управлению шаттлом NT-PD “Лодка” на специальном тренажере-симуляторе, под присмотром учителя. - По собранной статистике, проведя в тренажере всего минуту, вы научитесь пилотировать данным видом шаттла. + По собранной статистике, проведя в тренажере всего минуту, вы научитесь пилотировать данным видом шаттла. После обучения, вы получите право на его пилотирование. @@ -155973,7 +155973,7 @@ entities: [bullet]Шаттл “Лодка” — не ваша собственность. Любые несогласованные с СИ модификации строго запрещены. - [bullet]В случае аварии, на вас будет наложен штраф, размером в полную стоимость ремонта, а также арест по статье КЗ 322 “Порча ценного имущества”, и так далее, в зависимости от тяжести полученных шаттлом повреждений. + [bullet]В случае аварии, на вас будет наложен штраф, размером в полную стоимость ремонта, а также арест по статье КЗ 322 “Порча ценного имущества”, и так далее, в зависимости от тяжести полученных шаттлом повреждений. ============================================= @@ -156006,7 +156006,7 @@ entities: Каждый желающий член персонала или пассажир станции имеет право обучиться управлению шаттлом NT-PD “Лодка” на специальном тренажере-симуляторе, под присмотром учителя. - По собранной статистике, проведя в тренажере всего минуту, вы научитесь пилотировать данным видом шаттла. + По собранной статистике, проведя в тренажере всего минуту, вы научитесь пилотировать данным видом шаттла. После обучения, вы получите право на его пилотирование. @@ -156015,7 +156015,7 @@ entities: [bullet]Шаттл “Лодка” — не ваша собственность. Любые несогласованные с СИ модификации строго запрещены. - [bullet]В случае аварии, на вас будет наложен штраф, размером в полную стоимость ремонта, а также арест по статье КЗ 322 “Порча ценного имущества”, и так далее, в зависимости от тяжести полученных шаттлом повреждений. + [bullet]В случае аварии, на вас будет наложен штраф, размером в полную стоимость ремонта, а также арест по статье КЗ 322 “Порча ценного имущества”, и так далее, в зависимости от тяжести полученных шаттлом повреждений. ============================================= @@ -156072,13 +156072,13 @@ entities: [head=3]Прочесть после брифинга[/head] - Вам необходимо внимательно ознакомиться с документом “Рабочие процедуры ОЗ”, и время от времени, раз в тридцать минут, контролировать его соблюдение. + Вам необходимо внимательно ознакомиться с документом “Рабочие процедуры ОЗ”, и время от времени, раз в тридцать минут, контролировать его соблюдение. НИК является закрытой стратегической точкой, поэтому, присутствие посторонних лиц без разрешения главы отдела недопустимо. - Рядом со стойкой смотрителя стоят стробоскопы, оповещающие о экстренных ситуациях в отделе. + Рядом со стойкой смотрителя стоят стробоскопы, оповещающие о экстренных ситуациях в отделе. К таковым относится: @@ -156185,7 +156185,7 @@ entities: [head=2]Использование аварийного сигнала[/head] - Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. + Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. При ложном вызове ОЗ, сотрудник, нажавший на аварийную кнопку, должен быть незамедлительно уволен, а Научный Руководитель получить выговор, искл. случаи саботажа отдела. О ложных вызовах необходимо сообщать ГСБ. @@ -156499,7 +156499,7 @@ entities: [head=2]Использование аварийного сигнала[/head] - Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. + Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. При ложном вызове ОЗ, сотрудник, нажавший на аварийную кнопку, должен быть незамедлительно уволен, а Научный Руководитель получить выговор, искл. случаи саботажа отдела. О ложных вызовах необходимо сообщать ГСБ. @@ -156557,13 +156557,13 @@ entities: [head=3]Прочесть после брифинга[/head] - Вам необходимо внимательно ознакомиться с документом “Рабочие процедуры ОЗ”, и время от времени, раз в тридцать минут, контролировать его соблюдение. + Вам необходимо внимательно ознакомиться с документом “Рабочие процедуры ОЗ”, и время от времени, раз в тридцать минут, контролировать его соблюдение. НИК является закрытой стратегической точкой, поэтому, присутствие посторонних лиц без разрешения главы отдела недопустимо. - Рядом со стойкой смотрителя стоят стробоскопы, оповещающие о экстренных ситуациях в отделе. + Рядом со стойкой смотрителя стоят стробоскопы, оповещающие о экстренных ситуациях в отделе. К таковым относится: @@ -156728,7 +156728,7 @@ entities: [head=2]Использование аварийного сигнала[/head] - Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. + Аварийный сигнал активируется нажатием аварийной кнопки внутри смотровой камеры “Разлома”. Он должен оповещать о возникновении агрессивных сущностей внутри камеры содержания. При ложном вызове ОЗ, сотрудник, нажавший на аварийную кнопку, должен быть незамедлительно уволен, а Научный Руководитель получить выговор, искл. случаи саботажа отдела. О ложных вызовах необходимо сообщать ГСБ. @@ -156811,7 +156811,7 @@ entities: ⠀ [head=3]Краткое описание[/head] - ╠═══════════════════════════════════════╣ + ╠═══════════════════════════════════════╣ ⠀ Планета земного типа. Большую часть планеты @@ -156819,7 +156819,7 @@ entities: ⠀ собой разрозненные группы небольших островов. - ⠀ Зафиксирована аномальная магнитная активность. + ⠀ Зафиксирована аномальная магнитная активность. ╚═══════════════════════════════════════╝ @@ -187351,7 +187351,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Приёмная -- proto: SurveillanceCameraWirelessRouterBase +- proto: SurveillanceCameraWirelessRouterConstructed entities: - uid: 18161 components: diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index d9d9018051a..070f81e4ccc 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -123,7 +123,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: DAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAAADAAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAACgQAAAAAAfwAAAAACfwAAAAABfwAAAAABfwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfQAAAAADfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABIAAAAAADgQAAAAAAfwAAAAACfQAAAAACfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfwAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAfwAAAAADfwAAAAABfwAAAAADfwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAcAAAAAAA + tiles: DAAAAAABDAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAABKQAAAAAADAAAAAAADAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAACgQAAAAAAfwAAAAACfwAAAAABfwAAAAABfwAAAAABgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAADfQAAAAADfQAAAAADfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAABIAAAAAADgQAAAAAAfwAAAAACfQAAAAACfQAAAAACfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAfwAAAAADfQAAAAADfQAAAAAAfQAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAAgQAAAAAAgQAAAAAARAAAAAAAIAAAAAAAIAAAAAACgQAAAAAAfwAAAAADfwAAAAABfwAAAAADfwAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAADgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAYAAAAAADYAAAAAABYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAACZQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAACYAAAAAADYAAAAAABgQAAAAAAcAAAAAAA version: 6 1,0: ind: 1,0 @@ -171,7 +171,7 @@ entities: version: 6 2,-3: ind: 2,-3 - tiles: gQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAABbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAIQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAdwAAAAAAYAAAAAACYAAAAAABgQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAADJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACdwAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAdwAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAACKQAAAAADIQAAAAAAKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAJAAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAACIQAAAAABKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAbwAAAAAAKQAAAAADKQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAKQAAAAABbwAAAAAAKQAAAAABKQAAAAAAbwAAAAAAKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAKQAAAAACKQAAAAADKQAAAAADKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAADgQAAAAAAKQAAAAACKQAAAAAAIQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAdwAAAAAAYAAAAAACYAAAAAABgQAAAAAAKQAAAAABKQAAAAABgQAAAAAAKQAAAAADJgAAAAAAJgAAAAAAJgAAAAAAKQAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAACdwAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAAAdwAAAAABYAAAAAAAYAAAAAADYAAAAAABYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAACgQAAAAAAgQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAADgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAACKQAAAAADIQAAAAAAKQAAAAAAKQAAAAACKQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAACKQAAAAADKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAJAAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAAAKQAAAAACIQAAAAABKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,-1: ind: 2,-1 @@ -179,7 +179,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAALwAAAAAAYAAAAAAAYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAACYAAAAAABLwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAALwAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAAYAAAAAABLwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACgQAAAAAAfQAAAAADfQAAAAACfwAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAAAfQAAAAAAfQAAAAAAfwAAAAACfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADKQAAAAACfQAAAAAAfQAAAAADfwAAAAADfQAAAAABfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAfQAAAAABfQAAAAABfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAADYAAAAAACYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAABYAAAAAABYAAAAAADYAAAAAACYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACgQAAAAAALwAAAAAAYAAAAAAAYAAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAADgQAAAAAALwAAAAAAYAAAAAACYAAAAAABLwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAACYAAAAAADYAAAAAACgQAAAAAALwAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAALwAAAAAAYAAAAAABLwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfQAAAAADfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACgQAAAAAAfQAAAAADfQAAAAACfwAAAAAAfQAAAAABfQAAAAAAfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACfwAAAAAAfQAAAAAAfQAAAAAAfwAAAAACfQAAAAACfQAAAAABfQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADKQAAAAADfwAAAAAAfQAAAAAAfQAAAAADfwAAAAADfQAAAAABfQAAAAADfQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAADgQAAAAAAfQAAAAABfQAAAAABfwAAAAAAfQAAAAADfQAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 2,1: ind: 2,1 @@ -187,11 +187,11 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADbwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfwAAAAACgQAAAAAAgQAAAAAAfQAAAAADLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABcwAAAAACcwAAAAACgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAAAcwAAAAACcwAAAAAAcwAAAAABcwAAAAABcwAAAAAB + tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAACfQAAAAACfQAAAAADbwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAfwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfQAAAAACfQAAAAADgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAfwAAAAACgQAAAAAAgQAAAAAAfQAAAAADLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAfQAAAAACLwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAABcwAAAAAB version: 6 -3,-2: ind: -3,-2 - tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAACcwAAAAACcwAAAAABcwAAAAABcwAAAAADcwAAAAABcwAAAAAAIAAAAAADIAAAAAADIAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAADcwAAAAACgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABKQAAAAABKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAADKQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADKQAAAAABKQAAAAAAYAAAAAAAYAAAAAACKQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAA + tiles: LwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAABcwAAAAAAIAAAAAADIAAAAAADIAAAAAADYAAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABgQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAABIAAAAAACYAAAAAABYAAAAAADYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAABKQAAAAABKQAAAAACYAAAAAAAYAAAAAADgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAAAKQAAAAADKQAAAAAAYAAAAAACYAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADKQAAAAABKQAAAAAAYAAAAAAAYAAAAAACKQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcwAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAYAAAAAABYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfAAAAAABUwAAAAAAUwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAUwAAAAAAUwAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAABgQAAAAAAYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfAAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -203,7 +203,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-4: ind: 0,-4 @@ -251,15 +251,15 @@ entities: version: 6 3,-2: ind: 3,-2 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAAAgQAAAAAAJwAAAAADJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAACJwAAAAACJwAAAAADgQAAAAAAJwAAAAABJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAABJwAAAAAAJwAAAAAAgQAAAAAAJwAAAAADJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAJwAAAAACJwAAAAACJwAAAAADgQAAAAAAJwAAAAABJwAAAAACJwAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAAAKQAAAAACKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAABKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAACKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAADgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAKQAAAAACgQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAAAKQAAAAABKQAAAAADKQAAAAADKQAAAAABgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAADKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAADgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAADKQAAAAAAgQAAAAAABwAAAAAABwAAAAAAKQAAAAABgQAAAAAAKQAAAAADKQAAAAAAKQAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAKQAAAAABKQAAAAACgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: fQAAAAAAfwAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAABYAAAAAABbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAABgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAAAgQAAAAAA + tiles: fQAAAAAAfwAAAAAAfQAAAAADfQAAAAADfQAAAAAAgQAAAAAAfQAAAAABfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAAAfQAAAAABgQAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABgQAAAAAAfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAADgQAAAAAAYAAAAAADYAAAAAADbwAAAAAAgQAAAAAAgQAAAAAAfwAAAAADgQAAAAAAgQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAgQAAAAAAYAAAAAABYAAAAAACbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfQAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAACfQAAAAAAfQAAAAADfQAAAAACgQAAAAAAYAAAAAABYAAAAAABbwAAAAAAgQAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAADfQAAAAAAfQAAAAABfQAAAAAAfQAAAAACfQAAAAACfQAAAAABYAAAAAAAYAAAAAABYAAAAAACbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAABfQAAAAACfQAAAAABfQAAAAACYAAAAAAAYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACfQAAAAABfQAAAAADfQAAAAADfQAAAAADgQAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAADYAAAAAABYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcAAAAAAAYAAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAABKQAAAAADKQAAAAAAgQAAAAAA version: 6 -2,2: ind: -2,2 @@ -267,7 +267,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAA version: 6 2,-4: ind: 2,-4 @@ -291,7 +291,7 @@ entities: version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAADRAAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAABYAAAAAABYAAAAAADYAAAAAAARAAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAYAAAAAADYAAAAAACYAAAAAADRAAAAAAAKQAAAAABKQAAAAACKQAAAAABKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKQAAAAABYAAAAAABYAAAAAADYAAAAAAARAAAAAAAKQAAAAAAKQAAAAADKQAAAAADKQAAAAADKQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAADgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAARAAAAAAARAAAAAAARAAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAAgQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 @@ -363,7 +363,7 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAABJQAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAABYAAAAAACYAAAAAADUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAJQAAAAAAJQAAAAADYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADZQAAAAACZQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAABZQAAAAAAZQAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAYAAAAAACYAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAADYAAAAAABbwAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAABJQAAAAACYAAAAAADYAAAAAABgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAADJQAAAAACJQAAAAAAJQAAAAACYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAYAAAAAAAJQAAAAAAJQAAAAADJQAAAAADYAAAAAABYAAAAAACYAAAAAADUwAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACJQAAAAAAJQAAAAAAJQAAAAADYAAAAAABYAAAAAADYAAAAAAAgQAAAAAAOQAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAACYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAACYAAAAAABYAAAAAABYAAAAAAAYAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAADZQAAAAACZQAAAAACYAAAAAADYAAAAAADYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAADYAAAAAAAYAAAAAABYAAAAAACYAAAAAABgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAagAAAAABZQAAAAAAZQAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAACgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAAAbAAAAAAAbAAAAAAA version: 6 4,1: ind: 4,1 @@ -445,445 +445,445 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 709: 42.99683,-1.538444 + 707: 42.99683,-1.538444 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 710: 39.96558,-1.975944 + 708: 39.96558,-1.975944 - node: color: '#FFFFFFFF' id: Bot decals: - 963: -57,-9 - 964: -56,-9 - 965: -55,-9 - 966: -55,-10 - 967: -56,-10 - 968: -57,-10 - 969: -57,-11 - 970: -56,-11 - 971: -55,-11 - 972: -55,-12 - 973: -56,-12 - 974: -57,-12 - 3491: -3,-31 + 961: -57,-9 + 962: -56,-9 + 963: -55,-9 + 964: -55,-10 + 965: -56,-10 + 966: -57,-10 + 967: -57,-11 + 968: -56,-11 + 969: -55,-11 + 970: -55,-12 + 971: -56,-12 + 972: -57,-12 + 3489: -3,-31 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Bot decals: - 714: 40,-3 + 712: 40,-3 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 2721: 35,-25 - 2722: 35,-26 - 2723: 32,-25 - 2724: 32,-24 - 2725: 32,-22 - 2836: 7,-38 - 2967: 15,-40 - 2968: 15,-41 + 2719: 35,-25 + 2720: 35,-26 + 2721: 32,-25 + 2722: 32,-24 + 2723: 32,-22 + 2834: 7,-38 + 2965: 15,-40 + 2966: 15,-41 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: BotLeft decals: - 711: 43,-3 - 712: 42,-3 - 713: 41,-3 + 709: 43,-3 + 710: 42,-3 + 711: 41,-3 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2837: 7,-38 + 2835: 7,-38 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 2838: 7,-38 + 2836: 7,-38 - node: color: '#FFFFFFFF' id: Box decals: - 1734: 49,-37 - 1735: 49,-38 - 2341: -7,-51 - 2342: -5,-53 + 1732: 49,-37 + 1733: 49,-38 + 2339: -7,-51 + 2340: -5,-53 - node: color: '#C74EBDB2' id: BrickCornerOverlayNE decals: - 2933: -18,-25 + 2931: -18,-25 - node: color: '#EFB34196' id: BrickCornerOverlayNE decals: - 2484: 5,51 - 3098: -3,42 + 2482: 5,51 + 3096: -3,42 - node: color: '#F9801DB2' id: BrickCornerOverlayNE decals: - 2946: -22,-25 + 2944: -22,-25 - node: color: '#FED83DB2' id: BrickCornerOverlayNE decals: - 2939: -15,-25 + 2937: -15,-25 - node: color: '#C74EBDB2' id: BrickCornerOverlayNW decals: - 2934: -20,-25 + 2932: -20,-25 - node: color: '#EFB34196' id: BrickCornerOverlayNW decals: - 2485: 3,51 - 3097: -6,42 + 2483: 3,51 + 3095: -6,42 - node: color: '#F9801DB2' id: BrickCornerOverlayNW decals: - 2945: -23,-25 + 2943: -23,-25 - node: color: '#FED83DB2' id: BrickCornerOverlayNW decals: - 2940: -16,-25 + 2938: -16,-25 - node: color: '#C74EBDB2' id: BrickCornerOverlaySE decals: - 2936: -18,-26 + 2934: -18,-26 - node: color: '#EFB34196' id: BrickCornerOverlaySE decals: - 2486: 5,49 - 3095: -3,41 + 2484: 5,49 + 3093: -3,41 - node: color: '#F9801DB2' id: BrickCornerOverlaySE decals: - 2943: -22,-26 + 2941: -22,-26 - node: color: '#FED83DB2' id: BrickCornerOverlaySE decals: - 2941: -15,-26 + 2939: -15,-26 - node: color: '#C74EBDB2' id: BrickCornerOverlaySW decals: - 2935: -20,-26 + 2933: -20,-26 - node: color: '#EFB34196' id: BrickCornerOverlaySW decals: - 2438: 7,40 - 2487: 3,49 - 3096: -6,41 + 2436: 7,40 + 2485: 3,49 + 3094: -6,41 - node: color: '#F9801DB2' id: BrickCornerOverlaySW decals: - 2944: -23,-26 + 2942: -23,-26 - node: color: '#FED83DB2' id: BrickCornerOverlaySW decals: - 2942: -16,-26 + 2940: -16,-26 - node: color: '#EFB34196' id: BrickLineOverlayE decals: - 2449: 9,50 - 2450: 9,48 - 2451: 9,47 - 2459: 19,50 - 2470: 19,51 - 2471: 9,51 - 2490: 5,50 - 2492: 3,50 + 2447: 9,50 + 2448: 9,48 + 2449: 9,47 + 2457: 19,50 + 2468: 19,51 + 2469: 9,51 + 2488: 5,50 + 2490: 3,50 - node: color: '#C74EBDB2' id: BrickLineOverlayN decals: - 2937: -19,-25 - 2948: -20,-27 - 2949: -18,-27 - 2955: -19,-27 + 2935: -19,-25 + 2946: -20,-27 + 2947: -18,-27 + 2953: -19,-27 - node: color: '#EFB34196' id: BrickLineOverlayN decals: - 2452: 10,46 - 2453: 11,46 - 2454: 15,46 - 2455: 16,46 - 2489: 4,51 - 2495: 4,49 - 3099: -4,42 - 3100: -5,42 + 2450: 10,46 + 2451: 11,46 + 2452: 15,46 + 2453: 16,46 + 2487: 4,51 + 2493: 4,49 + 3097: -4,42 + 3098: -5,42 - node: color: '#F9801DB2' id: BrickLineOverlayN decals: - 2947: -23,-27 - 2956: -22,-27 + 2945: -23,-27 + 2954: -22,-27 - node: color: '#FED83DB2' id: BrickLineOverlayN decals: - 2950: -15,-27 - 2954: -16,-27 + 2948: -15,-27 + 2952: -16,-27 - node: color: '#C74EBDB2' id: BrickLineOverlayS decals: - 2938: -19,-26 + 2936: -19,-26 - node: color: '#EFB34196' id: BrickLineOverlayS decals: - 2491: 4,49 - 2493: 4,51 - 3101: -5,41 - 3102: -4,41 + 2489: 4,49 + 2491: 4,51 + 3099: -5,41 + 3100: -4,41 - node: color: '#EFB34196' id: BrickLineOverlayW decals: - 2439: 7,41 - 2440: 7,42 - 2441: 7,43 - 2442: 7,44 - 2443: 7,45 - 2444: 7,46 - 2445: 7,47 - 2446: 7,48 - 2447: 7,49 - 2448: 7,50 - 2456: 17,47 - 2457: 17,48 - 2458: 17,50 - 2469: 17,51 - 2472: 7,51 - 2488: 3,50 - 2494: 5,50 + 2437: 7,41 + 2438: 7,42 + 2439: 7,43 + 2440: 7,44 + 2441: 7,45 + 2442: 7,46 + 2443: 7,47 + 2444: 7,48 + 2445: 7,49 + 2446: 7,50 + 2454: 17,47 + 2455: 17,48 + 2456: 17,50 + 2467: 17,51 + 2470: 7,51 + 2486: 3,50 + 2492: 5,50 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 874: -53,8 - 875: -52,7 - 1727: 42,-40 + 872: -53,8 + 873: -52,7 + 1725: 42,-40 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 872: -55,8 - 876: -57,7 - 1726: 40,-40 + 870: -55,8 + 874: -57,7 + 1724: 40,-40 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 877: -52,5 + 875: -52,5 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 878: -57,5 + 876: -57,5 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 620: 22,4 - 885: -53,7 + 618: 22,4 + 883: -53,7 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 886: -55,7 + 884: -55,7 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 621: 22,9 + 619: 22,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 616: 22,8 - 617: 22,7 - 618: 22,6 - 619: 22,5 - 887: -52,6 - 2519: 27,42 - 2520: 27,43 - 2521: 30,42 - 2522: 30,43 + 614: 22,8 + 615: 22,7 + 616: 22,6 + 617: 22,5 + 885: -52,6 + 2517: 27,42 + 2518: 27,43 + 2519: 30,42 + 2520: 30,43 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 873: -54,8 - 884: -56,7 - 1728: 41,-40 - 3509: -8,-24 + 871: -54,8 + 882: -56,7 + 1726: 41,-40 + 3507: -8,-24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 879: -56,5 - 880: -55,5 - 881: -54,5 - 882: -53,5 + 877: -56,5 + 878: -55,5 + 879: -54,5 + 880: -53,5 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 883: -57,6 - 2523: 31,42 - 2524: 31,43 + 881: -57,6 + 2521: 31,42 + 2522: 31,43 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 724: -1,-34 - 2325: -4,-50 - 2389: 32,-38 - 3081: -28,42 + 722: -1,-34 + 2323: -4,-50 + 2387: 32,-38 + 3079: -28,42 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2326: -8,-50 - 2388: 29,-38 - 3082: -33,42 - 3427: 19,-18 - 3428: 18,-19 + 2324: -8,-50 + 2386: 29,-38 + 3080: -33,42 + 3425: 19,-18 + 3426: 18,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 723: -1,-39 - 2327: -4,-54 - 2397: 32,-40 - 3083: -28,40 + 721: -1,-39 + 2325: -4,-54 + 2395: 32,-40 + 3081: -28,40 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2328: -8,-54 - 2393: 29,-40 - 3084: -33,40 + 2326: -8,-54 + 2391: 29,-40 + 3082: -33,40 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 2317: -8,-44 + 2315: -8,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 2318: -8,-48 + 2316: -8,-48 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 721: -2,-34 + 719: -2,-34 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 3433: 19,-19 + 3431: 19,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 720: -2,-39 + 718: -2,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 715: -2,-40 - 716: -1,-38 - 717: -1,-37 - 718: -1,-36 - 719: -1,-35 - 722: -2,-33 - 1815: 17,30 - 2319: -8,-47 - 2320: -8,-46 - 2321: -8,-45 - 2329: -4,-53 - 2330: -4,-52 - 2331: -4,-51 - 2396: 32,-39 - 3085: -28,41 + 713: -2,-40 + 714: -1,-38 + 715: -1,-37 + 716: -1,-36 + 717: -1,-35 + 720: -2,-33 + 1813: 17,30 + 2317: -8,-47 + 2318: -8,-46 + 2319: -8,-45 + 2327: -4,-53 + 2328: -4,-52 + 2329: -4,-51 + 2394: 32,-39 + 3083: -28,41 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2332: -5,-50 - 2333: -6,-50 - 2334: -7,-50 - 2390: 30,-38 - 2394: 31,-38 - 3091: -32,42 - 3092: -31,42 - 3093: -30,42 - 3094: -29,42 - 3431: 20,-18 - 3432: 21,-18 + 2330: -5,-50 + 2331: -6,-50 + 2332: -7,-50 + 2388: 30,-38 + 2392: 31,-38 + 3089: -32,42 + 3090: -31,42 + 3091: -30,42 + 3092: -29,42 + 3429: 20,-18 + 3430: 21,-18 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2335: -5,-54 - 2336: -6,-54 - 2337: -7,-54 - 2391: 30,-40 - 2392: 31,-40 - 3087: -32,40 - 3088: -31,40 - 3089: -30,40 - 3090: -29,40 + 2333: -5,-54 + 2334: -6,-54 + 2335: -7,-54 + 2389: 30,-40 + 2390: 31,-40 + 3085: -32,40 + 3086: -31,40 + 3087: -30,40 + 3088: -29,40 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1816: 12,30 - 2322: -8,-47 - 2323: -8,-46 - 2324: -8,-45 - 2338: -8,-53 - 2339: -8,-52 - 2340: -8,-51 - 2395: 29,-39 - 3086: -33,41 - 3429: 18,-21 - 3430: 18,-20 + 1814: 12,30 + 2320: -8,-47 + 2321: -8,-46 + 2322: -8,-45 + 2336: -8,-53 + 2337: -8,-52 + 2338: -8,-51 + 2393: 29,-39 + 3084: -33,41 + 3427: 18,-21 + 3428: 18,-20 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerNe decals: - 3169: -27,43 - 3179: -36,4 - 3181: -42,5 + 3167: -27,43 + 3177: -36,4 + 3179: -42,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 609: 24,9 - 612: 24,8 + 607: 24,9 + 610: 24,8 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNe @@ -897,63 +897,63 @@ entities: 231: -5,-38 494: -25,-26 505: -29,-26 - 557: -24,-39 - 2361: 28,-35 - 2383: 37,-37 + 555: -24,-39 + 2359: 28,-35 + 2381: 37,-37 - node: color: '#765428FF' id: BrickTileWhiteCornerNe decals: - 3333: -53,-17 + 3331: -53,-17 - node: color: '#9FED58B3' id: BrickTileWhiteCornerNe decals: - 2534: -46,-30 + 2532: -46,-30 - node: color: '#BC863FFF' id: BrickTileWhiteCornerNe decals: - 3222: -49,3 + 3220: -49,3 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 837: -11,-47 - 2189: 16,-35 - 2190: 12,-43 + 835: -11,-47 + 2187: 16,-35 + 2188: 12,-43 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1551: 51,-3 - 1715: 42,-41 - 1729: 42,-40 + 1549: 51,-3 + 1713: 42,-41 + 1727: 42,-40 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 3103: -2,43 + 3101: -2,43 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 574: -30,-27 + 572: -30,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerNw decals: - 3170: -34,43 - 3180: -44,5 + 3168: -34,43 + 3178: -44,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 599: 21,8 - 604: 20,8 - 610: 23,9 - 611: 23,8 - 3211: -44,-9 + 597: 21,8 + 602: 20,8 + 608: 23,9 + 609: 23,8 + 3209: -44,-9 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNw @@ -967,62 +967,62 @@ entities: 225: -10,-33 493: -27,-26 504: -33,-26 - 558: -28,-39 - 727: -2,-39 - 2360: 27,-35 + 556: -28,-39 + 725: -2,-39 + 2358: 27,-35 - node: color: '#765428FF' id: BrickTileWhiteCornerNw decals: - 3332: -58,-17 + 3330: -58,-17 - node: color: '#9FED58B3' id: BrickTileWhiteCornerNw decals: - 2535: -48,-30 + 2533: -48,-30 - node: color: '#BC863FFF' id: BrickTileWhiteCornerNw decals: - 3221: -51,3 - 3358: -51,-2 + 3219: -51,3 + 3356: -51,-2 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 838: -14,-47 - 2183: 6,-43 - 2184: 14,-35 + 836: -14,-47 + 2181: 6,-43 + 2182: 14,-35 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1550: 49,-3 - 1730: 40,-40 + 1548: 49,-3 + 1728: 40,-40 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 3114: -7,43 + 3112: -7,43 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 572: -32,-27 - 573: -32,-27 + 570: -32,-27 + 571: -32,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerSe decals: - 3171: -27,39 - 3183: -36,3 + 3169: -27,39 + 3181: -36,3 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 608: 24,4 - 613: 24,5 - 614: 24,5 + 606: 24,4 + 611: 24,5 + 612: 24,5 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSe @@ -1036,63 +1036,63 @@ entities: 227: -5,-40 491: -25,-30 503: -29,-30 - 555: -24,-42 - 2381: 34,-42 - 2382: 37,-38 + 553: -24,-42 + 2379: 34,-42 + 2380: 37,-38 - node: color: '#765428FF' id: BrickTileWhiteCornerSe decals: - 3335: -53,-24 + 3333: -53,-24 - node: color: '#9FED58B3' id: BrickTileWhiteCornerSe decals: - 2532: -46,-31 + 2530: -46,-31 - node: color: '#BC863FFF' id: BrickTileWhiteCornerSe decals: - 3230: -49,-5 + 3228: -49,-5 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 836: -11,-51 - 2185: 12,-45 - 2186: 16,-44 + 834: -11,-51 + 2183: 12,-45 + 2184: 16,-44 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1552: 51,-4 + 1550: 51,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 3104: -2,40 - 3119: 10,40 - 3124: 19,39 + 3102: -2,40 + 3117: 10,40 + 3122: 19,39 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 571: -30,-29 + 569: -30,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteCornerSw decals: - 3172: -34,39 - 3182: -44,3 + 3170: -34,39 + 3180: -44,3 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 600: 21,5 - 603: 20,5 - 607: 23,4 - 615: 23,5 - 3210: -44,-11 + 598: 21,5 + 601: 20,5 + 605: 23,4 + 613: 23,5 + 3208: -44,-11 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSw @@ -1106,48 +1106,48 @@ entities: 229: -10,-35 492: -27,-30 506: -33,-30 - 556: -28,-42 - 726: -2,-34 - 2384: 27,-42 + 554: -28,-42 + 724: -2,-34 + 2382: 27,-42 - node: color: '#765428FF' id: BrickTileWhiteCornerSw decals: - 3334: -58,-24 + 3332: -58,-24 - node: color: '#9FED58B3' id: BrickTileWhiteCornerSw decals: - 2533: -48,-31 + 2531: -48,-31 - node: color: '#BC863FFF' id: BrickTileWhiteCornerSw decals: - 3231: -51,-5 - 3357: -51,1 + 3229: -51,-5 + 3355: -51,1 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 839: -14,-51 - 2187: 6,-45 - 2188: 14,-44 + 837: -14,-51 + 2185: 6,-45 + 2186: 14,-44 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1553: 49,-4 + 1551: 49,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 3112: -7,40 - 3123: 17,39 + 3110: -7,40 + 3121: 17,39 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 575: -32,-29 + 573: -32,-29 - node: color: '#169C9CFF' id: BrickTileWhiteEndE @@ -1167,22 +1167,22 @@ entities: color: '#80C71F80' id: BrickTileWhiteEndS decals: - 3451: 53,-20 + 3449: 53,-20 - node: color: '#8932B87F' id: BrickTileWhiteEndS decals: - 3448: 49,-20 + 3446: 49,-20 - node: color: '#DE3A3A96' id: BrickTileWhiteEndS decals: - 1716: 42,-42 + 1714: 42,-42 - node: color: '#F9801D7F' id: BrickTileWhiteEndS decals: - 3447: 45,-20 + 3445: 45,-20 - node: color: '#169C9CFF' id: BrickTileWhiteEndW @@ -1197,7 +1197,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteEndW decals: - 1714: 40,-41 + 1712: 40,-41 - node: color: '#F38BAAFF' id: BrickTileWhiteEndW @@ -1207,13 +1207,13 @@ entities: color: '#00BEBE7F' id: BrickTileWhiteInnerNe decals: - 3200: -44,1 - 3208: -42,4 + 3198: -44,1 + 3206: -42,4 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1357: 33,-8 + 1355: 33,-8 - node: color: '#4B709CFF' id: BrickTileWhiteInnerNe @@ -1223,219 +1223,219 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2387: 28,-37 + 2385: 28,-37 - node: color: '#9FED58B3' id: BrickTileWhiteInnerNe decals: - 2542: -48,-31 + 2540: -48,-31 - node: color: '#BC863FFF' id: BrickTileWhiteInnerNe decals: - 3239: -53,-2 - 3240: -53,3 - 3277: -53,1 - 3278: -53,2 - 3279: -53,3 - 3280: -53,-3 - 3281: -53,-4 - 3282: -53,-5 - 3283: -53,-6 - 3284: -53,-7 - 3285: -53,-8 - 3286: -53,-9 - 3287: -53,-10 - 3288: -53,-11 - 3289: -53,-12 - 3290: -53,-13 - 3291: -53,-15 - 3309: -58,3 - 3310: -57,3 - 3311: -56,3 - 3312: -55,3 + 3237: -53,-2 + 3238: -53,3 + 3275: -53,1 + 3276: -53,2 + 3277: -53,3 + 3278: -53,-3 + 3279: -53,-4 + 3280: -53,-5 + 3281: -53,-6 + 3282: -53,-7 + 3283: -53,-8 + 3284: -53,-9 + 3285: -53,-10 + 3286: -53,-11 + 3287: -53,-12 + 3288: -53,-13 + 3289: -53,-15 + 3307: -58,3 + 3308: -57,3 + 3309: -56,3 + 3310: -55,3 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2074: 3,-48 - 2077: 3,-45 - 2104: 17,-37 - 2105: 17,-36 - 2106: 17,-35 - 2107: 17,-34 - 2108: 15,-34 - 2109: 14,-34 - 2110: 13,-34 - 2118: 12,-42 - 2119: 11,-42 - 2120: 10,-42 - 2121: 9,-42 - 2122: 8,-42 - 2123: 7,-42 - 2124: 6,-42 - 2125: 5,-42 - 2133: 4,-34 - 2134: 8,-34 - 2135: 11,-40 - 2167: 8,-47 - 2168: 21,-44 - 2173: 13,-46 - 2182: 18,-45 - 2234: 5,-39 - 2287: -9,-42 - 2288: -8,-42 - 2289: -7,-42 - 2290: -7,-43 - 2296: -7,-46 - 2297: -7,-45 - 2300: -7,-49 - 2301: -6,-49 - 2302: -5,-49 - 2303: -5,-49 - 2304: -4,-49 - 2305: -3,-49 - 2306: -3,-50 - 2307: -3,-51 - 2308: -3,-52 - 2309: -3,-53 - 2310: -3,-54 - 2311: -3,-55 - 2861: 17,-42 - 2863: 17,-38 - 2864: 17,-39 - 2865: 17,-40 - 2866: 17,-43 - 2871: 20,-43 - 2872: 19,-43 - 2873: 18,-43 - 2963: 14,-42 + 2072: 3,-48 + 2075: 3,-45 + 2102: 17,-37 + 2103: 17,-36 + 2104: 17,-35 + 2105: 17,-34 + 2106: 15,-34 + 2107: 14,-34 + 2108: 13,-34 + 2116: 12,-42 + 2117: 11,-42 + 2118: 10,-42 + 2119: 9,-42 + 2120: 8,-42 + 2121: 7,-42 + 2122: 6,-42 + 2123: 5,-42 + 2131: 4,-34 + 2132: 8,-34 + 2133: 11,-40 + 2165: 8,-47 + 2166: 21,-44 + 2171: 13,-46 + 2180: 18,-45 + 2232: 5,-39 + 2285: -9,-42 + 2286: -8,-42 + 2287: -7,-42 + 2288: -7,-43 + 2294: -7,-46 + 2295: -7,-45 + 2298: -7,-49 + 2299: -6,-49 + 2300: -5,-49 + 2301: -5,-49 + 2302: -4,-49 + 2303: -3,-49 + 2304: -3,-50 + 2305: -3,-51 + 2306: -3,-52 + 2307: -3,-53 + 2308: -3,-54 + 2309: -3,-55 + 2859: 17,-42 + 2861: 17,-38 + 2862: 17,-39 + 2863: 17,-40 + 2864: 17,-43 + 2869: 20,-43 + 2870: 19,-43 + 2871: 18,-43 + 2961: 14,-42 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNe decals: - 1364: 30,-3 + 1362: 30,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1384: 52,-6 - 1385: 52,-7 - 1386: 53,-8 - 1387: 54,-8 - 1388: 54,-9 - 1389: 54,-14 - 1390: 54,-16 - 1391: 54,-18 - 1392: 54,-17 - 1393: 52,-8 - 1394: 54,-15 - 1395: 54,-13 - 1396: 50,-6 - 1397: 48,-6 - 1420: 47,-8 - 1421: 46,-8 - 1440: 40,-15 - 1441: 40,-14 - 1442: 40,-13 - 1443: 40,-12 - 1444: 39,-11 - 1445: 37,-11 - 1446: 36,-11 - 1447: 35,-11 - 1448: 34,-11 - 1449: 33,-11 - 1450: 31,-11 - 1451: 30,-11 - 1502: 42,-21 - 1503: 42,-20 - 1524: 52,-16 - 1525: 51,-16 - 1526: 49,-16 - 1527: 48,-16 - 1528: 47,-16 - 1540: 47,-15 - 1541: 47,-14 - 1542: 47,-13 - 1543: 47,-12 - 1544: 47,-11 - 1545: 47,-10 - 1570: 40,-24 - 1572: 42,-24 - 1589: 39,-25 - 1590: 42,-25 - 1591: 42,-26 - 1592: 42,-28 - 1593: 42,-29 - 1594: 42,-30 - 1624: 38,-35 - 1646: 38,-31 - 1647: 37,-31 - 1648: 36,-31 - 1649: 35,-31 - 1650: 34,-31 - 1651: 33,-31 - 1652: 32,-31 - 1653: 31,-31 - 1654: 30,-31 - 1664: 40,-32 - 1677: 44,-32 - 1678: 43,-32 - 1679: 42,-32 - 1680: 44,-33 - 1681: 44,-34 - 1682: 43,-35 - 1683: 43,-36 - 1692: 39,-37 - 1700: 43,-39 - 1701: 43,-40 - 1702: 43,-41 - 1703: 43,-42 - 1721: 40,-39 - 1724: 39,-39 - 1732: 37,-42 - 2726: 54,-10 - 2842: 40,-25 - 2848: 42,-23 - 2850: 42,-22 - 3458: 54,-19 + 1382: 52,-6 + 1383: 52,-7 + 1384: 53,-8 + 1385: 54,-8 + 1386: 54,-9 + 1387: 54,-14 + 1388: 54,-16 + 1389: 54,-18 + 1390: 54,-17 + 1391: 52,-8 + 1392: 54,-15 + 1393: 54,-13 + 1394: 50,-6 + 1395: 48,-6 + 1418: 47,-8 + 1419: 46,-8 + 1438: 40,-15 + 1439: 40,-14 + 1440: 40,-13 + 1441: 40,-12 + 1442: 39,-11 + 1443: 37,-11 + 1444: 36,-11 + 1445: 35,-11 + 1446: 34,-11 + 1447: 33,-11 + 1448: 31,-11 + 1449: 30,-11 + 1500: 42,-21 + 1501: 42,-20 + 1522: 52,-16 + 1523: 51,-16 + 1524: 49,-16 + 1525: 48,-16 + 1526: 47,-16 + 1538: 47,-15 + 1539: 47,-14 + 1540: 47,-13 + 1541: 47,-12 + 1542: 47,-11 + 1543: 47,-10 + 1568: 40,-24 + 1570: 42,-24 + 1587: 39,-25 + 1588: 42,-25 + 1589: 42,-26 + 1590: 42,-28 + 1591: 42,-29 + 1592: 42,-30 + 1622: 38,-35 + 1644: 38,-31 + 1645: 37,-31 + 1646: 36,-31 + 1647: 35,-31 + 1648: 34,-31 + 1649: 33,-31 + 1650: 32,-31 + 1651: 31,-31 + 1652: 30,-31 + 1662: 40,-32 + 1675: 44,-32 + 1676: 43,-32 + 1677: 42,-32 + 1678: 44,-33 + 1679: 44,-34 + 1680: 43,-35 + 1681: 43,-36 + 1690: 39,-37 + 1698: 43,-39 + 1699: 43,-40 + 1700: 43,-41 + 1701: 43,-42 + 1719: 40,-39 + 1722: 39,-39 + 1730: 37,-42 + 2724: 54,-10 + 2840: 40,-25 + 2846: 42,-23 + 2848: 42,-22 + 3456: 54,-19 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 1757: 6,38 - 1758: 5,38 - 1759: 4,38 - 1760: 8,38 - 1761: 8,37 - 1762: 8,36 - 1763: 8,35 - 1764: 8,34 - 1765: 8,31 - 1766: 8,30 - 1811: 5,31 - 1832: 19,31 - 1847: 25,23 - 1848: 22,28 - 1849: 23,34 - 1850: 25,34 - 1851: 25,40 - 1852: 23,40 - 1866: 22,31 - 2496: 3,49 - 2500: 19,43 - 2513: 9,46 - 3062: 11,31 + 1755: 6,38 + 1756: 5,38 + 1757: 4,38 + 1758: 8,38 + 1759: 8,37 + 1760: 8,36 + 1761: 8,35 + 1762: 8,34 + 1763: 8,31 + 1764: 8,30 + 1809: 5,31 + 1830: 19,31 + 1845: 25,23 + 1846: 22,28 + 1847: 23,34 + 1848: 25,34 + 1849: 25,40 + 1850: 23,40 + 1864: 22,31 + 2494: 3,49 + 2498: 19,43 + 2511: 9,46 + 3060: 11,31 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 3488: -6,-29 + 3486: -6,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteInnerNw decals: - 3199: -35,1 + 3197: -35,1 - node: color: '#4B709CFF' id: BrickTileWhiteInnerNw @@ -1445,209 +1445,209 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 734: -1,-39 + 732: -1,-39 - node: color: '#9FED58B3' id: BrickTileWhiteInnerNw decals: - 2539: -46,-31 + 2537: -46,-31 - node: color: '#A4610696' id: BrickTileWhiteInnerNw decals: - 1014: -48,-5 - 1015: -48,-5 + 1012: -48,-5 + 1013: -48,-5 - node: color: '#BC863FFF' id: BrickTileWhiteInnerNw decals: - 3241: -53,3 - 3242: -55,3 - 3243: -56,3 - 3244: -57,3 - 3245: -58,3 - 3246: -58,2 - 3247: -58,1 - 3248: -58,0 - 3249: -58,-1 - 3250: -58,-8 - 3251: -58,-9 - 3252: -58,-10 - 3253: -58,-11 - 3254: -58,-12 - 3255: -58,-13 - 3256: -58,-14 - 3257: -58,-15 - 3345: -47,-5 - 3353: -47,-2 - 3362: -50,-2 + 3239: -53,3 + 3240: -55,3 + 3241: -56,3 + 3242: -57,3 + 3243: -58,3 + 3244: -58,2 + 3245: -58,1 + 3246: -58,0 + 3247: -58,-1 + 3248: -58,-8 + 3249: -58,-9 + 3250: -58,-10 + 3251: -58,-11 + 3252: -58,-12 + 3253: -58,-13 + 3254: -58,-14 + 3255: -58,-15 + 3343: -47,-5 + 3351: -47,-2 + 3360: -50,-2 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2080: 5,-45 - 2085: 5,-42 - 2086: 6,-42 - 2087: 7,-42 - 2088: 8,-42 - 2089: 9,-42 - 2090: 10,-42 - 2091: 11,-42 - 2092: 12,-42 - 2093: 13,-42 - 2094: 13,-41 - 2095: 13,-40 - 2096: 13,-38 - 2097: 13,-37 - 2098: 13,-36 - 2099: 13,-35 - 2100: 13,-34 - 2101: 14,-34 - 2102: 15,-34 - 2103: 17,-34 - 2137: 6,-34 - 2138: 10,-34 - 2235: 9,-39 - 2274: -9,-55 - 2275: -9,-53 - 2276: -9,-52 - 2277: -9,-51 - 2278: -9,-50 - 2279: -9,-48 - 2280: -9,-47 - 2281: -9,-46 - 2282: -9,-44 - 2283: -9,-43 - 2284: -9,-42 - 2285: -8,-42 - 2286: -7,-42 - 2312: -3,-49 - 2313: -4,-49 - 2314: -5,-49 - 2315: -6,-49 - 2353: -1,-48 - 2867: 18,-43 - 2868: 19,-43 - 2869: 20,-43 - 2870: 21,-43 - 2964: 16,-42 + 2078: 5,-45 + 2083: 5,-42 + 2084: 6,-42 + 2085: 7,-42 + 2086: 8,-42 + 2087: 9,-42 + 2088: 10,-42 + 2089: 11,-42 + 2090: 12,-42 + 2091: 13,-42 + 2092: 13,-41 + 2093: 13,-40 + 2094: 13,-38 + 2095: 13,-37 + 2096: 13,-36 + 2097: 13,-35 + 2098: 13,-34 + 2099: 14,-34 + 2100: 15,-34 + 2101: 17,-34 + 2135: 6,-34 + 2136: 10,-34 + 2233: 9,-39 + 2272: -9,-55 + 2273: -9,-53 + 2274: -9,-52 + 2275: -9,-51 + 2276: -9,-50 + 2277: -9,-48 + 2278: -9,-47 + 2279: -9,-46 + 2280: -9,-44 + 2281: -9,-43 + 2282: -9,-42 + 2283: -8,-42 + 2284: -7,-42 + 2310: -3,-49 + 2311: -4,-49 + 2312: -5,-49 + 2313: -6,-49 + 2351: -1,-48 + 2865: 18,-43 + 2866: 19,-43 + 2867: 20,-43 + 2868: 21,-43 + 2962: 16,-42 - node: color: '#D4D4D428' id: BrickTileWhiteInnerNw decals: - 1365: 33,-3 + 1363: 33,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1398: 48,-6 - 1399: 48,-7 - 1400: 48,-8 - 1401: 47,-8 - 1402: 46,-8 - 1403: 46,-9 - 1404: 46,-10 - 1405: 46,-11 - 1406: 46,-12 - 1407: 46,-13 - 1408: 46,-14 - 1409: 46,-15 - 1418: 54,-8 - 1419: 53,-8 - 1422: 50,-6 - 1434: 52,-6 - 1452: 30,-11 - 1453: 30,-12 - 1454: 30,-13 - 1472: 39,-19 - 1475: 37,-18 - 1476: 37,-17 - 1477: 37,-16 - 1478: 37,-15 - 1479: 37,-14 - 1488: 31,-11 - 1489: 33,-11 - 1491: 34,-11 - 1492: 35,-11 - 1493: 36,-11 - 1494: 37,-11 - 1495: 39,-11 - 1529: 48,-16 - 1530: 49,-16 - 1531: 51,-16 - 1532: 52,-16 - 1533: 53,-15 - 1534: 53,-14 - 1535: 53,-13 - 1536: 53,-12 - 1537: 53,-11 - 1538: 53,-10 - 1539: 53,-16 - 1571: 42,-24 - 1573: 40,-24 - 1574: 40,-25 - 1575: 39,-25 - 1576: 39,-26 - 1577: 39,-27 - 1578: 39,-28 - 1579: 39,-29 - 1580: 40,-30 - 1622: 30,-34 - 1625: 40,-35 - 1637: 30,-35 - 1655: 30,-31 - 1656: 31,-31 - 1657: 32,-31 - 1658: 33,-31 - 1659: 34,-31 - 1660: 35,-31 - 1661: 36,-31 - 1662: 37,-31 - 1663: 38,-31 - 1665: 42,-32 - 1666: 43,-32 - 1667: 44,-32 - 1668: 40,-36 - 1669: 40,-37 - 1670: 39,-37 - 1711: 39,-42 - 1712: 39,-40 - 1713: 43,-39 - 1722: 40,-39 - 1723: 39,-39 - 2841: 42,-25 - 2846: 40,-23 - 2856: 40,-19 - 2857: 40,-20 + 1396: 48,-6 + 1397: 48,-7 + 1398: 48,-8 + 1399: 47,-8 + 1400: 46,-8 + 1401: 46,-9 + 1402: 46,-10 + 1403: 46,-11 + 1404: 46,-12 + 1405: 46,-13 + 1406: 46,-14 + 1407: 46,-15 + 1416: 54,-8 + 1417: 53,-8 + 1420: 50,-6 + 1432: 52,-6 + 1450: 30,-11 + 1451: 30,-12 + 1452: 30,-13 + 1470: 39,-19 + 1473: 37,-18 + 1474: 37,-17 + 1475: 37,-16 + 1476: 37,-15 + 1477: 37,-14 + 1486: 31,-11 + 1487: 33,-11 + 1489: 34,-11 + 1490: 35,-11 + 1491: 36,-11 + 1492: 37,-11 + 1493: 39,-11 + 1527: 48,-16 + 1528: 49,-16 + 1529: 51,-16 + 1530: 52,-16 + 1531: 53,-15 + 1532: 53,-14 + 1533: 53,-13 + 1534: 53,-12 + 1535: 53,-11 + 1536: 53,-10 + 1537: 53,-16 + 1569: 42,-24 + 1571: 40,-24 + 1572: 40,-25 + 1573: 39,-25 + 1574: 39,-26 + 1575: 39,-27 + 1576: 39,-28 + 1577: 39,-29 + 1578: 40,-30 + 1620: 30,-34 + 1623: 40,-35 + 1635: 30,-35 + 1653: 30,-31 + 1654: 31,-31 + 1655: 32,-31 + 1656: 33,-31 + 1657: 34,-31 + 1658: 35,-31 + 1659: 36,-31 + 1660: 37,-31 + 1661: 38,-31 + 1663: 42,-32 + 1664: 43,-32 + 1665: 44,-32 + 1666: 40,-36 + 1667: 40,-37 + 1668: 39,-37 + 1709: 39,-42 + 1710: 39,-40 + 1711: 43,-39 + 1720: 40,-39 + 1721: 39,-39 + 2839: 42,-25 + 2844: 40,-23 + 2854: 40,-19 + 2855: 40,-20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 1778: 8,38 - 1779: 6,38 - 1780: 5,38 - 1781: 4,38 - 1782: 4,37 - 1783: 4,34 - 1784: 4,31 - 1785: 4,30 - 1812: 7,31 - 1833: 21,31 - 1853: 25,40 - 1854: 27,40 - 1855: 27,34 - 1856: 25,28 - 1857: 25,34 - 1867: 28,31 - 2497: 5,49 - 2502: 20,43 - 2514: 17,46 - 3063: 18,31 + 1776: 8,38 + 1777: 6,38 + 1778: 5,38 + 1779: 4,38 + 1780: 4,37 + 1781: 4,34 + 1782: 4,31 + 1783: 4,30 + 1810: 7,31 + 1831: 21,31 + 1851: 25,40 + 1852: 27,40 + 1853: 27,34 + 1854: 25,28 + 1855: 25,34 + 1865: 28,31 + 2495: 5,49 + 2500: 20,43 + 2512: 17,46 + 3061: 18,31 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1358: 33,-4 + 1356: 33,-4 - node: color: '#4B709CFF' id: BrickTileWhiteInnerSe @@ -1658,221 +1658,221 @@ entities: id: BrickTileWhiteInnerSe decals: 416: -18,-29 - 2385: 34,-38 + 2383: 34,-38 - node: color: '#80C71F80' id: BrickTileWhiteInnerSe decals: - 3452: 53,-19 + 3450: 53,-19 - node: color: '#8932B87F' id: BrickTileWhiteInnerSe decals: - 3450: 49,-19 + 3448: 49,-19 - node: color: '#9FED58B3' id: BrickTileWhiteInnerSe decals: - 2540: -48,-30 + 2538: -48,-30 - node: color: '#BC863FFF' id: BrickTileWhiteInnerSe decals: - 3258: -58,-15 - 3259: -57,-15 - 3260: -54,-15 - 3261: -53,-15 - 3262: -53,-13 - 3263: -53,-12 - 3264: -53,-11 - 3265: -53,-10 - 3266: -53,-9 - 3267: -53,-8 - 3268: -53,-7 - 3269: -53,-6 - 3270: -53,-4 - 3271: -53,-5 - 3272: -53,-3 - 3273: -53,-2 - 3274: -53,1 - 3275: -53,2 - 3276: -53,3 - 3292: -53,-15 + 3256: -58,-15 + 3257: -57,-15 + 3258: -54,-15 + 3259: -53,-15 + 3260: -53,-13 + 3261: -53,-12 + 3262: -53,-11 + 3263: -53,-10 + 3264: -53,-9 + 3265: -53,-8 + 3266: -53,-7 + 3267: -53,-6 + 3268: -53,-4 + 3269: -53,-5 + 3270: -53,-3 + 3271: -53,-2 + 3272: -53,1 + 3273: -53,2 + 3274: -53,3 + 3290: -53,-15 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2075: 3,-45 - 2076: 3,-42 - 2136: 11,-38 - 2139: 21,-42 - 2140: 17,-36 - 2141: 17,-35 - 2142: 17,-34 - 2143: 21,-44 - 2144: 20,-44 - 2145: 19,-44 - 2146: 18,-44 - 2147: 18,-45 - 2148: 17,-45 - 2149: 16,-45 - 2150: 15,-45 - 2151: 14,-45 - 2152: 13,-45 - 2153: 13,-46 - 2154: 12,-46 - 2155: 11,-46 - 2156: 10,-46 - 2157: 9,-46 - 2158: 8,-46 - 2159: 8,-47 - 2160: 5,-47 - 2161: 6,-47 - 2162: 7,-47 - 2236: 5,-35 - 2261: -3,-55 - 2262: -3,-54 - 2263: -3,-53 - 2264: -3,-52 - 2265: -3,-51 - 2266: -3,-50 - 2267: -3,-49 - 2268: -4,-55 - 2269: -5,-55 - 2270: -6,-55 - 2271: -7,-55 - 2272: -8,-55 - 2273: -9,-55 - 2291: -7,-43 - 2292: -7,-42 - 2293: -7,-45 - 2294: -7,-46 - 2295: -7,-48 - 2862: 17,-40 - 2874: 17,-42 - 2875: 17,-39 - 2876: 17,-38 - 2877: 17,-37 - 2965: 14,-39 + 2073: 3,-45 + 2074: 3,-42 + 2134: 11,-38 + 2137: 21,-42 + 2138: 17,-36 + 2139: 17,-35 + 2140: 17,-34 + 2141: 21,-44 + 2142: 20,-44 + 2143: 19,-44 + 2144: 18,-44 + 2145: 18,-45 + 2146: 17,-45 + 2147: 16,-45 + 2148: 15,-45 + 2149: 14,-45 + 2150: 13,-45 + 2151: 13,-46 + 2152: 12,-46 + 2153: 11,-46 + 2154: 10,-46 + 2155: 9,-46 + 2156: 8,-46 + 2157: 8,-47 + 2158: 5,-47 + 2159: 6,-47 + 2160: 7,-47 + 2234: 5,-35 + 2259: -3,-55 + 2260: -3,-54 + 2261: -3,-53 + 2262: -3,-52 + 2263: -3,-51 + 2264: -3,-50 + 2265: -3,-49 + 2266: -4,-55 + 2267: -5,-55 + 2268: -6,-55 + 2269: -7,-55 + 2270: -8,-55 + 2271: -9,-55 + 2289: -7,-43 + 2290: -7,-42 + 2291: -7,-45 + 2292: -7,-46 + 2293: -7,-48 + 2860: 17,-40 + 2872: 17,-42 + 2873: 17,-39 + 2874: 17,-38 + 2875: 17,-37 + 2963: 14,-39 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1361: 31,-9 - 1410: 54,-8 - 1411: 54,-9 - 1412: 54,-13 - 1413: 54,-14 - 1414: 54,-15 - 1415: 54,-16 - 1416: 54,-17 - 1417: 54,-18 - 1469: 42,-21 - 1470: 42,-20 - 1471: 42,-19 - 1473: 38,-18 - 1474: 37,-18 - 1482: 34,-13 - 1483: 33,-13 - 1484: 32,-13 - 1485: 30,-13 - 1498: 40,-11 - 1499: 40,-12 - 1500: 40,-13 - 1501: 40,-14 - 1513: 47,-15 - 1514: 47,-14 - 1515: 47,-13 - 1516: 47,-12 - 1517: 47,-11 - 1518: 47,-10 - 1519: 47,-9 - 1520: 48,-9 - 1521: 49,-9 - 1548: 51,-9 - 1549: 52,-9 - 1587: 39,-29 - 1597: 40,-30 - 1598: 42,-30 - 1599: 42,-29 - 1600: 42,-28 - 1601: 42,-26 - 1602: 42,-25 - 1603: 42,-24 - 1620: 28,-31 - 1623: 38,-31 - 1626: 38,-35 - 1638: 30,-35 - 1639: 31,-35 - 1640: 32,-35 - 1641: 33,-35 - 1642: 34,-35 - 1643: 35,-35 - 1644: 36,-35 - 1645: 37,-35 - 1671: 43,-36 - 1672: 43,-35 - 1673: 43,-34 - 1674: 44,-34 - 1675: 44,-33 - 1676: 44,-32 - 1689: 40,-37 - 1690: 39,-37 - 1691: 42,-37 - 1704: 39,-42 - 1705: 40,-42 - 1706: 41,-42 - 1707: 43,-42 - 1708: 43,-41 - 1709: 43,-40 - 1710: 43,-39 - 1733: 37,-40 - 2727: 54,-12 - 2844: 40,-23 - 2847: 42,-23 - 2849: 42,-22 - 2855: 39,-18 - 3456: 52,-7 - 3457: 52,-6 + 1359: 31,-9 + 1408: 54,-8 + 1409: 54,-9 + 1410: 54,-13 + 1411: 54,-14 + 1412: 54,-15 + 1413: 54,-16 + 1414: 54,-17 + 1415: 54,-18 + 1467: 42,-21 + 1468: 42,-20 + 1469: 42,-19 + 1471: 38,-18 + 1472: 37,-18 + 1480: 34,-13 + 1481: 33,-13 + 1482: 32,-13 + 1483: 30,-13 + 1496: 40,-11 + 1497: 40,-12 + 1498: 40,-13 + 1499: 40,-14 + 1511: 47,-15 + 1512: 47,-14 + 1513: 47,-13 + 1514: 47,-12 + 1515: 47,-11 + 1516: 47,-10 + 1517: 47,-9 + 1518: 48,-9 + 1519: 49,-9 + 1546: 51,-9 + 1547: 52,-9 + 1585: 39,-29 + 1595: 40,-30 + 1596: 42,-30 + 1597: 42,-29 + 1598: 42,-28 + 1599: 42,-26 + 1600: 42,-25 + 1601: 42,-24 + 1618: 28,-31 + 1621: 38,-31 + 1624: 38,-35 + 1636: 30,-35 + 1637: 31,-35 + 1638: 32,-35 + 1639: 33,-35 + 1640: 34,-35 + 1641: 35,-35 + 1642: 36,-35 + 1643: 37,-35 + 1669: 43,-36 + 1670: 43,-35 + 1671: 43,-34 + 1672: 44,-34 + 1673: 44,-33 + 1674: 44,-32 + 1687: 40,-37 + 1688: 39,-37 + 1689: 42,-37 + 1702: 39,-42 + 1703: 40,-42 + 1704: 41,-42 + 1705: 43,-42 + 1706: 43,-41 + 1707: 43,-40 + 1708: 43,-39 + 1731: 37,-40 + 2725: 54,-12 + 2842: 40,-23 + 2845: 42,-23 + 2847: 42,-22 + 2853: 39,-18 + 3454: 52,-7 + 3455: 52,-6 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1767: 8,30 - 1768: 7,30 - 1769: 6,30 - 1770: 5,30 - 1771: 4,30 - 1772: 8,31 - 1773: 8,34 - 1774: 8,35 - 1775: 8,36 - 1776: 8,37 - 1777: 8,38 - 1814: 5,37 - 1831: 19,34 - 1858: 22,30 - 1859: 23,36 - 1860: 25,36 - 1861: 25,25 - 1869: 22,33 - 2498: 3,51 - 2501: 19,42 - 2512: 10,45 - 2526: 32,42 - 2527: 25,42 - 2529: 23,42 - 3064: 11,33 + 1765: 8,30 + 1766: 7,30 + 1767: 6,30 + 1768: 5,30 + 1769: 4,30 + 1770: 8,31 + 1771: 8,34 + 1772: 8,35 + 1773: 8,36 + 1774: 8,37 + 1775: 8,38 + 1812: 5,37 + 1829: 19,34 + 1856: 22,30 + 1857: 23,36 + 1858: 25,36 + 1859: 25,25 + 1867: 22,33 + 2496: 3,51 + 2499: 19,42 + 2510: 10,45 + 2524: 32,42 + 2525: 25,42 + 2527: 23,42 + 3062: 11,33 - node: color: '#F9801D7F' id: BrickTileWhiteInnerSe decals: - 3455: 45,-19 + 3453: 45,-19 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 3487: -6,-26 + 3485: -6,-26 - node: color: '#4B709CFF' id: BrickTileWhiteInnerSw @@ -1883,227 +1883,231 @@ entities: id: BrickTileWhiteInnerSw decals: 415: -20,-29 - 733: -1,-34 + 731: -1,-34 - node: color: '#80C71F80' id: BrickTileWhiteInnerSw decals: - 3453: 53,-19 + 3451: 53,-19 - node: color: '#8932B87F' id: BrickTileWhiteInnerSw decals: - 3449: 49,-19 + 3447: 49,-19 - node: color: '#9FED58B3' id: BrickTileWhiteInnerSw decals: - 2541: -46,-30 + 2539: -46,-30 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 1016: -48,-2 - 1017: -48,-2 + 1014: -48,-2 + 1015: -48,-2 - node: color: '#BC863FFF' id: BrickTileWhiteInnerSw decals: - 3293: -53,-15 - 3294: -54,-15 - 3295: -57,-15 - 3296: -58,-15 - 3297: -58,-14 - 3298: -58,-13 - 3299: -58,-12 - 3300: -58,-11 - 3301: -58,-10 - 3302: -58,-9 - 3303: -58,-8 - 3304: -58,-7 - 3305: -58,0 - 3306: -58,1 - 3307: -58,2 - 3308: -58,3 - 3348: -47,2 - 3354: -47,-2 - 3361: -50,1 + 3291: -53,-15 + 3292: -54,-15 + 3293: -57,-15 + 3294: -58,-15 + 3295: -58,-14 + 3296: -58,-13 + 3297: -58,-12 + 3298: -58,-11 + 3299: -58,-10 + 3300: -58,-9 + 3301: -58,-8 + 3302: -58,-7 + 3303: -58,0 + 3304: -58,1 + 3305: -58,2 + 3306: -58,3 + 3346: -47,2 + 3352: -47,-2 + 3359: -50,1 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2078: 5,-42 - 2079: 5,-45 - 2111: 13,-34 - 2112: 13,-35 - 2113: 13,-36 - 2114: 13,-37 - 2115: 13,-38 - 2116: 13,-40 - 2117: 13,-41 - 2163: 6,-47 - 2164: 7,-47 - 2165: 8,-47 - 2166: 9,-46 - 2169: 10,-46 - 2170: 11,-46 - 2171: 12,-46 - 2172: 13,-46 - 2174: 14,-45 - 2175: 16,-45 - 2176: 15,-45 - 2177: 17,-45 - 2178: 18,-45 - 2179: 19,-44 - 2180: 20,-44 - 2181: 21,-44 - 2233: 9,-35 - 2242: -9,-48 - 2243: -5,-46 - 2244: -9,-47 - 2245: -9,-46 - 2246: -9,-44 - 2247: -9,-43 - 2248: -9,-42 - 2249: -9,-50 - 2250: -9,-51 - 2251: -9,-52 - 2252: -9,-53 - 2254: -9,-55 - 2255: -8,-55 - 2256: -7,-55 - 2257: -6,-55 - 2258: -5,-55 - 2259: -4,-55 - 2260: -3,-55 - 2349: -1,-42 - 2966: 16,-39 + 2076: 5,-42 + 2077: 5,-45 + 2109: 13,-34 + 2110: 13,-35 + 2111: 13,-36 + 2112: 13,-37 + 2113: 13,-38 + 2114: 13,-40 + 2115: 13,-41 + 2161: 6,-47 + 2162: 7,-47 + 2163: 8,-47 + 2164: 9,-46 + 2167: 10,-46 + 2168: 11,-46 + 2169: 12,-46 + 2170: 13,-46 + 2172: 14,-45 + 2173: 16,-45 + 2174: 15,-45 + 2175: 17,-45 + 2176: 18,-45 + 2177: 19,-44 + 2178: 20,-44 + 2179: 21,-44 + 2231: 9,-35 + 2240: -9,-48 + 2241: -5,-46 + 2242: -9,-47 + 2243: -9,-46 + 2244: -9,-44 + 2245: -9,-43 + 2246: -9,-42 + 2247: -9,-50 + 2248: -9,-51 + 2249: -9,-52 + 2250: -9,-53 + 2252: -9,-55 + 2253: -8,-55 + 2254: -7,-55 + 2255: -6,-55 + 2256: -5,-55 + 2257: -4,-55 + 2258: -3,-55 + 2347: -1,-42 + 2964: 16,-39 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 1360: 33,-9 - 1423: 48,-7 - 1424: 48,-6 - 1425: 46,-8 - 1426: 46,-9 - 1427: 46,-10 - 1428: 46,-11 - 1429: 46,-12 - 1430: 46,-13 - 1431: 46,-14 - 1455: 30,-13 - 1456: 32,-13 - 1457: 33,-13 - 1458: 34,-13 - 1459: 36,-13 - 1460: 37,-13 - 1461: 37,-14 - 1462: 37,-15 - 1463: 37,-16 - 1464: 37,-17 - 1465: 37,-18 - 1466: 38,-18 - 1467: 39,-18 - 1468: 39,-19 - 1486: 30,-12 - 1487: 30,-11 - 1504: 51,-9 - 1505: 52,-9 - 1506: 53,-9 - 1507: 53,-10 - 1508: 53,-11 - 1509: 53,-12 - 1510: 53,-13 - 1511: 53,-14 - 1512: 53,-15 - 1546: 48,-9 - 1547: 49,-9 - 1581: 40,-24 - 1582: 39,-25 - 1583: 39,-26 - 1584: 39,-27 - 1585: 39,-28 - 1586: 39,-29 - 1588: 40,-29 - 1595: 42,-30 - 1596: 40,-30 - 1621: 30,-31 - 1627: 38,-35 - 1628: 37,-35 - 1629: 36,-35 - 1630: 35,-35 - 1631: 34,-35 - 1632: 33,-35 - 1633: 32,-35 - 1634: 31,-35 - 1635: 30,-35 - 1636: 30,-34 - 1684: 44,-34 - 1685: 43,-37 - 1686: 42,-37 - 1687: 40,-37 - 1688: 39,-37 - 1693: 40,-35 - 1694: 40,-36 - 1695: 43,-42 - 1696: 41,-42 - 1697: 40,-42 - 1698: 39,-42 - 1699: 39,-40 - 1719: 42,-41 - 1725: 39,-39 - 2843: 42,-23 - 2845: 40,-23 - 2852: 40,-20 - 2853: 40,-19 - 2854: 40,-18 + 1358: 33,-9 + 1421: 48,-7 + 1422: 48,-6 + 1423: 46,-8 + 1424: 46,-9 + 1425: 46,-10 + 1426: 46,-11 + 1427: 46,-12 + 1428: 46,-13 + 1429: 46,-14 + 1453: 30,-13 + 1454: 32,-13 + 1455: 33,-13 + 1456: 34,-13 + 1457: 36,-13 + 1458: 37,-13 + 1459: 37,-14 + 1460: 37,-15 + 1461: 37,-16 + 1462: 37,-17 + 1463: 37,-18 + 1464: 38,-18 + 1465: 39,-18 + 1466: 39,-19 + 1484: 30,-12 + 1485: 30,-11 + 1502: 51,-9 + 1503: 52,-9 + 1504: 53,-9 + 1505: 53,-10 + 1506: 53,-11 + 1507: 53,-12 + 1508: 53,-13 + 1509: 53,-14 + 1510: 53,-15 + 1544: 48,-9 + 1545: 49,-9 + 1579: 40,-24 + 1580: 39,-25 + 1581: 39,-26 + 1582: 39,-27 + 1583: 39,-28 + 1584: 39,-29 + 1586: 40,-29 + 1593: 42,-30 + 1594: 40,-30 + 1619: 30,-31 + 1625: 38,-35 + 1626: 37,-35 + 1627: 36,-35 + 1628: 35,-35 + 1629: 34,-35 + 1630: 33,-35 + 1631: 32,-35 + 1632: 31,-35 + 1633: 30,-35 + 1634: 30,-34 + 1682: 44,-34 + 1683: 43,-37 + 1684: 42,-37 + 1685: 40,-37 + 1686: 39,-37 + 1691: 40,-35 + 1692: 40,-36 + 1693: 43,-42 + 1694: 41,-42 + 1695: 40,-42 + 1696: 39,-42 + 1697: 39,-40 + 1717: 42,-41 + 1723: 39,-39 + 2841: 42,-23 + 2843: 40,-23 + 2850: 40,-20 + 2851: 40,-19 + 2852: 40,-18 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 1790: 4,37 - 1791: 4,34 - 1792: 4,30 - 1793: 5,30 - 1794: 6,30 - 1795: 7,30 - 1796: 8,30 - 1797: 4,31 - 1798: 4,38 - 1813: 7,37 - 1821: 10,34 - 1830: 21,34 - 1862: 25,30 - 1863: 25,36 - 1864: 27,36 - 1865: 27,42 - 1868: 28,33 - 1883: 35,42 - 2499: 5,51 - 2503: 20,42 - 2528: 25,42 - 3065: 18,33 - 3134: 17,45 + 1788: 4,37 + 1789: 4,34 + 1790: 4,30 + 1791: 5,30 + 1792: 6,30 + 1793: 7,30 + 1794: 8,30 + 1795: 4,31 + 1796: 4,38 + 1811: 7,37 + 1819: 10,34 + 1828: 21,34 + 1860: 25,30 + 1861: 25,36 + 1862: 27,36 + 1863: 27,42 + 1866: 28,33 + 1881: 35,42 + 2497: 5,51 + 2501: 20,42 + 2526: 25,42 + 3063: 18,33 + 3132: 17,45 - node: color: '#F9801D7F' id: BrickTileWhiteInnerSw decals: - 3454: 45,-19 + 3452: 45,-19 - node: color: '#00BEBE7F' id: BrickTileWhiteLineE decals: - 3157: -27,40 - 3158: -27,41 - 3159: -27,42 + 3155: -27,40 + 3156: -27,41 + 3157: -27,42 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 1354: 33,-5 - 1355: 33,-7 - 1356: 33,-6 + 1352: 33,-5 + 1353: 33,-7 + 1354: 33,-6 + 3594: 26,13 + 3595: 26,14 + 3608: 33,13 + 3609: 33,14 - node: color: '#4B709CFF' id: BrickTileWhiteLineE @@ -2124,153 +2128,159 @@ entities: 507: -29,-29 508: -29,-28 509: -29,-27 - 562: -24,-40 - 563: -24,-41 - 2372: 34,-39 - 2373: 34,-40 - 2374: 34,-41 - 2386: 28,-36 + 560: -24,-40 + 561: -24,-41 + 2370: 34,-39 + 2371: 34,-40 + 2372: 34,-41 + 2384: 28,-36 - node: color: '#765428FF' id: BrickTileWhiteLineE decals: - 3319: -53,-18 - 3320: -53,-19 - 3321: -53,-20 - 3322: -53,-21 - 3323: -53,-22 - 3324: -53,-23 + 3317: -53,-18 + 3318: -53,-19 + 3319: -53,-20 + 3320: -53,-21 + 3321: -53,-22 + 3322: -53,-23 - node: color: '#9FED58B3' id: BrickTileWhiteLineE decals: - 2543: -45,-31 - 2544: -45,-30 + 2541: -45,-31 + 2542: -45,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineE decals: - 3216: -53,-14 - 3217: -53,-1 - 3218: -53,0 - 3224: -49,2 - 3225: -49,1 - 3226: -49,0 - 3227: -49,-1 - 3228: -49,-2 - 3229: -49,-4 - 3356: -49,-3 + 3214: -53,-14 + 3215: -53,-1 + 3216: -53,0 + 3222: -49,2 + 3223: -49,1 + 3224: -49,0 + 3225: -49,-1 + 3226: -49,-2 + 3227: -49,-4 + 3354: -49,-3 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 843: -11,-50 - 844: -11,-49 - 845: -11,-48 - 2070: 3,-43 - 2071: 3,-44 - 2072: 3,-46 - 2073: 3,-47 - 2127: 17,-41 - 2128: 21,-43 - 2129: 11,-39 - 2197: 12,-44 - 2198: 16,-43 - 2199: 16,-42 - 2200: 16,-41 - 2201: 16,-40 - 2202: 16,-39 - 2203: 16,-38 - 2204: 16,-37 - 2205: 16,-36 - 2227: 5,-38 - 2228: 5,-37 - 2229: 5,-36 - 2237: -7,-47 - 2239: -7,-44 - 2299: -11,-45 - 2343: -3,-47 - 2344: -3,-46 - 2959: 14,-41 - 2960: 14,-40 + 841: -11,-50 + 842: -11,-49 + 843: -11,-48 + 2068: 3,-43 + 2069: 3,-44 + 2070: 3,-46 + 2071: 3,-47 + 2125: 17,-41 + 2126: 21,-43 + 2127: 11,-39 + 2195: 12,-44 + 2196: 16,-43 + 2197: 16,-42 + 2198: 16,-41 + 2199: 16,-40 + 2200: 16,-39 + 2201: 16,-38 + 2202: 16,-37 + 2203: 16,-36 + 2225: 5,-38 + 2226: 5,-37 + 2227: 5,-36 + 2235: -7,-47 + 2237: -7,-44 + 2297: -11,-45 + 2341: -3,-47 + 2342: -3,-46 + 2957: 14,-41 + 2958: 14,-40 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 1604: 42,-27 - 1605: 43,-37 - 1608: 37,-41 - 1609: 38,-34 - 1610: 38,-33 - 1611: 38,-32 - 1617: 27,-27 - 1618: 28,-32 - 1619: 28,-33 + 1602: 42,-27 + 1603: 43,-37 + 1606: 37,-41 + 1607: 38,-34 + 1608: 38,-33 + 1609: 38,-32 + 1615: 27,-27 + 1616: 28,-32 + 1617: 28,-33 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1755: 8,32 - 1756: 8,33 - 1799: 5,32 - 1800: 5,33 - 1801: 5,34 - 1802: 5,35 - 1803: 5,36 - 1817: 17,30 - 1826: 19,32 - 1827: 19,33 - 1880: 22,32 - 2509: 10,44 - 2510: 10,43 - 2511: 10,42 - 2515: 19,44 - 2516: 19,45 - 2517: 20,42 - 2518: 20,43 - 3053: 11,32 - 3080: 17,34 - 3105: -2,41 - 3106: -2,42 - 3120: 10,41 - 3125: 19,40 - 3126: 19,41 + 1753: 8,32 + 1754: 8,33 + 1797: 5,32 + 1798: 5,33 + 1799: 5,34 + 1800: 5,35 + 1801: 5,36 + 1815: 17,30 + 1824: 19,32 + 1825: 19,33 + 1878: 22,32 + 2507: 10,44 + 2508: 10,43 + 2509: 10,42 + 2513: 19,44 + 2514: 19,45 + 2515: 20,42 + 2516: 20,43 + 3051: 11,32 + 3078: 17,34 + 3103: -2,41 + 3104: -2,42 + 3118: 10,41 + 3123: 19,40 + 3124: 19,41 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 577: -30,-28 - 3489: -6,-28 - 3490: -6,-27 + 575: -30,-28 + 3487: -6,-28 + 3488: -6,-27 - node: color: '#00BEBE7F' id: BrickTileWhiteLineN decals: - 3160: -28,43 - 3161: -29,43 - 3162: -30,43 - 3163: -31,43 - 3164: -32,43 - 3165: -33,43 - 3191: -43,1 - 3192: -42,1 - 3193: -41,1 - 3194: -40,1 - 3195: -39,1 - 3196: -38,1 - 3197: -37,1 - 3198: -36,1 - 3202: -43,5 - 3203: -41,4 - 3204: -40,4 - 3205: -39,4 - 3206: -38,4 - 3207: -37,4 + 3158: -28,43 + 3159: -29,43 + 3160: -30,43 + 3161: -31,43 + 3162: -32,43 + 3163: -33,43 + 3189: -43,1 + 3190: -42,1 + 3191: -41,1 + 3192: -40,1 + 3193: -39,1 + 3194: -38,1 + 3195: -37,1 + 3196: -36,1 + 3200: -43,5 + 3201: -41,4 + 3202: -40,4 + 3203: -39,4 + 3204: -38,4 + 3205: -37,4 - node: color: '#169C9CFF' id: BrickTileWhiteLineN decals: 402: -16,-30 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 3610: 30,16 + 3611: 31,16 - node: color: '#4B709CFF' id: BrickTileWhiteLineN @@ -2298,111 +2308,111 @@ entities: 510: -30,-26 511: -31,-26 512: -32,-26 - 559: -27,-39 - 560: -26,-39 - 561: -25,-39 - 2362: 29,-37 - 2363: 30,-37 - 2364: 31,-37 - 2365: 32,-37 - 2366: 33,-37 - 2367: 34,-37 - 2368: 35,-37 - 2369: 36,-37 + 557: -27,-39 + 558: -26,-39 + 559: -25,-39 + 2360: 29,-37 + 2361: 30,-37 + 2362: 31,-37 + 2363: 32,-37 + 2364: 33,-37 + 2365: 34,-37 + 2366: 35,-37 + 2367: 36,-37 - node: color: '#765428FF' id: BrickTileWhiteLineN decals: - 3313: -55,-17 - 3314: -56,-17 - 3315: -57,-17 - 3316: -54,-17 + 3311: -55,-17 + 3312: -56,-17 + 3313: -57,-17 + 3314: -54,-17 - node: color: '#9FED58B3' id: BrickTileWhiteLineN decals: - 2531: -47,-31 - 2537: -47,-30 + 2529: -47,-31 + 2535: -47,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineN decals: - 3213: -54,3 - 3223: -50,3 + 3211: -54,3 + 3221: -50,3 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 834: -13,-47 - 835: -12,-47 - 2130: 16,-34 - 2131: 9,-34 - 2132: 5,-34 - 2191: 7,-43 - 2192: 8,-43 - 2193: 9,-43 - 2194: 10,-43 - 2195: 11,-43 - 2196: 15,-35 - 2224: 6,-39 - 2225: 7,-39 - 2226: 8,-39 + 832: -13,-47 + 833: -12,-47 + 2128: 16,-34 + 2129: 9,-34 + 2130: 5,-34 + 2189: 7,-43 + 2190: 8,-43 + 2191: 9,-43 + 2192: 10,-43 + 2193: 11,-43 + 2194: 15,-35 + 2222: 6,-39 + 2223: 7,-39 + 2224: 8,-39 - node: color: '#D4D4D428' id: BrickTileWhiteLineN decals: - 1362: 31,-3 - 1363: 32,-3 + 1360: 31,-3 + 1361: 32,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1432: 49,-6 - 1433: 51,-6 - 1490: 32,-11 - 1496: 38,-11 - 1497: 40,-11 - 1523: 50,-16 - 1554: 50,-3 - 1568: 41,-32 - 1717: 41,-41 - 1720: 41,-39 - 1731: 41,-40 - 2840: 41,-25 + 1430: 49,-6 + 1431: 51,-6 + 1488: 32,-11 + 1494: 38,-11 + 1495: 40,-11 + 1521: 50,-16 + 1552: 50,-3 + 1566: 41,-32 + 1715: 41,-41 + 1718: 41,-39 + 1729: 41,-40 + 2838: 41,-25 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1754: 7,38 - 1804: 6,31 - 1834: 23,28 - 1835: 24,28 - 1842: 24,40 - 1843: 26,40 - 1844: 24,34 - 1845: 26,34 - 1846: 26,23 - 1870: 23,31 - 1871: 24,31 - 1872: 25,31 - 1873: 26,31 - 1874: 27,31 - 3041: 17,31 - 3042: 16,31 - 3043: 15,31 - 3044: 14,31 - 3045: 13,31 - 3046: 12,31 - 3056: 12,33 - 3057: 13,33 - 3058: 14,33 - 3059: 15,33 - 3060: 16,33 - 3061: 17,33 - 3115: -6,43 - 3116: -5,43 - 3117: -4,43 - 3118: -3,43 + 1752: 7,38 + 1802: 6,31 + 1832: 23,28 + 1833: 24,28 + 1840: 24,40 + 1841: 26,40 + 1842: 24,34 + 1843: 26,34 + 1844: 26,23 + 1868: 23,31 + 1869: 24,31 + 1870: 25,31 + 1871: 26,31 + 1872: 27,31 + 3039: 17,31 + 3040: 16,31 + 3041: 15,31 + 3042: 14,31 + 3043: 13,31 + 3044: 12,31 + 3054: 12,33 + 3055: 13,33 + 3056: 14,33 + 3057: 15,33 + 3058: 16,33 + 3059: 17,33 + 3113: -6,43 + 3114: -5,43 + 3115: -4,43 + 3116: -3,43 - node: color: '#F38BAAFF' id: BrickTileWhiteLineN @@ -2412,27 +2422,27 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 576: -31,-27 - 3481: -5,-29 - 3482: -4,-29 - 3483: -3,-29 + 574: -31,-27 + 3479: -5,-29 + 3480: -4,-29 + 3481: -3,-29 - node: color: '#00BEBE7F' id: BrickTileWhiteLineS decals: - 3151: -33,39 - 3152: -32,39 - 3153: -31,39 - 3154: -30,39 - 3155: -29,39 - 3156: -28,39 - 3184: -37,3 - 3185: -38,3 - 3186: -39,3 - 3187: -40,3 - 3188: -41,3 - 3189: -42,3 - 3190: -43,3 + 3149: -33,39 + 3150: -32,39 + 3151: -31,39 + 3152: -30,39 + 3153: -29,39 + 3154: -28,39 + 3182: -37,3 + 3183: -38,3 + 3184: -39,3 + 3185: -40,3 + 3186: -41,3 + 3187: -42,3 + 3188: -43,3 - node: color: '#169C9CFF' id: BrickTileWhiteLineS @@ -2469,120 +2479,119 @@ entities: 496: -26,-30 516: -32,-30 517: -31,-30 - 518: -30,-30 - 519: -30,-30 - 564: -25,-42 - 565: -26,-42 - 566: -27,-42 - 2370: 36,-38 - 2371: 35,-38 - 2375: 33,-42 - 2376: 32,-42 - 2377: 31,-42 - 2378: 30,-42 - 2379: 29,-42 - 2380: 28,-42 + 562: -25,-42 + 563: -26,-42 + 564: -27,-42 + 2368: 36,-38 + 2369: 35,-38 + 2373: 33,-42 + 2374: 32,-42 + 2375: 31,-42 + 2376: 30,-42 + 2377: 29,-42 + 2378: 28,-42 + 3624: -30,-30 - node: color: '#765428FF' id: BrickTileWhiteLineS decals: - 3325: -54,-24 - 3326: -55,-24 - 3327: -56,-24 - 3328: -57,-24 + 3323: -54,-24 + 3324: -55,-24 + 3325: -56,-24 + 3326: -57,-24 - node: color: '#80C71F7F' id: BrickTileWhiteLineS decals: - 3438: 54,-19 - 3439: 52,-19 - 3440: 51,-19 + 3436: 54,-19 + 3437: 52,-19 + 3438: 51,-19 - node: color: '#8932B87F' id: BrickTileWhiteLineS decals: - 3441: 50,-19 - 3442: 48,-19 - 3443: 47,-19 + 3439: 50,-19 + 3440: 48,-19 + 3441: 47,-19 - node: color: '#9FED58B3' id: BrickTileWhiteLineS decals: - 2536: -47,-30 - 2538: -47,-31 + 2534: -47,-30 + 2536: -47,-31 - node: color: '#BC863FFF' id: BrickTileWhiteLineS decals: - 3214: -56,-15 - 3215: -55,-15 - 3232: -50,-5 + 3212: -56,-15 + 3213: -55,-15 + 3230: -50,-5 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 846: -12,-51 - 847: -13,-51 - 2215: 7,-45 - 2216: 8,-45 - 2217: 9,-45 - 2218: 10,-45 - 2219: 11,-45 - 2220: 15,-44 - 2221: 6,-35 - 2222: 7,-35 - 2223: 8,-35 + 844: -12,-51 + 845: -13,-51 + 2213: 7,-45 + 2214: 8,-45 + 2215: 9,-45 + 2216: 10,-45 + 2217: 11,-45 + 2218: 15,-44 + 2219: 6,-35 + 2220: 7,-35 + 2221: 8,-35 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1359: 32,-9 - 1480: 35,-13 - 1481: 31,-13 - 1522: 50,-9 - 1555: 50,-4 - 1569: 41,-30 - 1606: 41,-37 - 1718: 41,-41 - 2839: 41,-23 + 1357: 32,-9 + 1478: 35,-13 + 1479: 31,-13 + 1520: 50,-9 + 1553: 50,-4 + 1567: 41,-30 + 1604: 41,-37 + 1716: 41,-41 + 2837: 41,-23 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1810: 6,37 - 1836: 23,30 - 1837: 24,30 - 1838: 26,25 - 1839: 26,36 - 1840: 24,36 - 1841: 26,42 - 1875: 23,33 - 1876: 24,33 - 1877: 25,33 - 1878: 26,33 - 1879: 27,33 - 1882: 34,42 - 2504: 15,45 - 2505: 14,45 - 2506: 13,45 - 2507: 12,45 - 2508: 11,45 - 2525: 33,42 - 2530: 24,42 - 3047: 12,33 - 3048: 13,33 - 3049: 14,33 - 3050: 15,33 - 3051: 16,33 - 3052: 17,33 - 3107: -3,40 - 3108: -4,40 - 3109: -5,40 - 3113: -6,40 - 3121: 9,40 - 3122: 8,40 - 3127: 18,39 - 3133: 16,45 + 1808: 6,37 + 1834: 23,30 + 1835: 24,30 + 1836: 26,25 + 1837: 26,36 + 1838: 24,36 + 1839: 26,42 + 1873: 23,33 + 1874: 24,33 + 1875: 25,33 + 1876: 26,33 + 1877: 27,33 + 1880: 34,42 + 2502: 15,45 + 2503: 14,45 + 2504: 13,45 + 2505: 12,45 + 2506: 11,45 + 2523: 33,42 + 2528: 24,42 + 3045: 12,33 + 3046: 13,33 + 3047: 14,33 + 3048: 15,33 + 3049: 16,33 + 3050: 17,33 + 3105: -3,40 + 3106: -4,40 + 3107: -5,40 + 3111: -6,40 + 3119: 9,40 + 3120: 8,40 + 3125: 18,39 + 3131: 16,45 - node: color: '#F38BAAFF' id: BrickTileWhiteLineS @@ -2592,34 +2601,36 @@ entities: color: '#F9801D7F' id: BrickTileWhiteLineS decals: - 3444: 46,-19 - 3445: 44,-19 - 3446: 43,-19 + 3442: 46,-19 + 3443: 44,-19 + 3444: 43,-19 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 578: -31,-29 - 3484: -5,-26 - 3485: -4,-26 - 3486: -3,-26 + 576: -31,-29 + 3482: -5,-26 + 3483: -4,-26 + 3484: -3,-26 - node: color: '#00BEBE7F' id: BrickTileWhiteLineW decals: - 3166: -34,42 - 3167: -34,41 - 3168: -34,40 - 3201: -44,4 + 3164: -34,42 + 3165: -34,41 + 3166: -34,40 + 3199: -44,4 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 601: 21,6 - 602: 21,7 - 605: 20,6 - 606: 20,7 - 3212: -44,-10 + 599: 21,6 + 600: 21,7 + 603: 20,6 + 604: 20,7 + 3210: -44,-10 + 3596: 28,13 + 3597: 28,14 - node: color: '#4B709CFF' id: BrickTileWhiteLineW @@ -2640,517 +2651,517 @@ entities: 513: -33,-29 514: -33,-28 515: -33,-27 - 567: -28,-41 - 568: -28,-40 - 725: -2,-33 - 728: -2,-40 - 729: -1,-35 - 730: -1,-36 - 731: -1,-37 - 732: -1,-38 - 2354: 27,-41 - 2355: 27,-40 - 2356: 27,-39 - 2357: 27,-38 - 2358: 27,-37 - 2359: 27,-36 + 565: -28,-41 + 566: -28,-40 + 723: -2,-33 + 726: -2,-40 + 727: -1,-35 + 728: -1,-36 + 729: -1,-37 + 730: -1,-38 + 2352: 27,-41 + 2353: 27,-40 + 2354: 27,-39 + 2355: 27,-38 + 2356: 27,-37 + 2357: 27,-36 - node: color: '#765428FF' id: BrickTileWhiteLineW decals: - 3329: -58,-23 - 3330: -58,-22 - 3331: -58,-21 + 3327: -58,-23 + 3328: -58,-22 + 3329: -58,-21 - node: color: '#9FED58B3' id: BrickTileWhiteLineW decals: - 2545: -45,-31 - 2546: -45,-30 + 2543: -45,-31 + 2544: -45,-30 - node: color: '#BC863FFF' id: BrickTileWhiteLineW decals: - 3219: -51,-4 - 3220: -51,-3 - 3233: -47,-4 - 3234: -47,-3 - 3346: -47,0 - 3347: -47,1 - 3352: -47,-1 - 3355: -51,2 - 3359: -50,-1 - 3360: -50,0 + 3217: -51,-4 + 3218: -51,-3 + 3231: -47,-4 + 3232: -47,-3 + 3344: -47,0 + 3345: -47,1 + 3350: -47,-1 + 3353: -51,2 + 3357: -50,-1 + 3358: -50,0 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 840: -14,-50 - 841: -14,-49 - 842: -14,-48 - 2081: 5,-43 - 2082: 5,-44 - 2083: 5,-46 - 2084: 5,-47 - 2126: 13,-39 - 2206: 6,-44 - 2207: 14,-43 - 2208: 14,-42 - 2209: 14,-41 - 2210: 14,-39 - 2211: 14,-40 - 2212: 14,-38 - 2213: 14,-37 - 2214: 14,-36 - 2230: 9,-38 - 2231: 9,-37 - 2232: 9,-36 - 2238: -5,-47 - 2241: -9,-49 - 2253: -9,-54 - 2298: -9,-45 - 2345: -1,-46 - 2346: -1,-45 - 2347: -1,-44 - 2348: -1,-43 - 2352: -1,-47 - 2961: 16,-41 - 2962: 16,-40 + 838: -14,-50 + 839: -14,-49 + 840: -14,-48 + 2079: 5,-43 + 2080: 5,-44 + 2081: 5,-46 + 2082: 5,-47 + 2124: 13,-39 + 2204: 6,-44 + 2205: 14,-43 + 2206: 14,-42 + 2207: 14,-41 + 2208: 14,-39 + 2209: 14,-40 + 2210: 14,-38 + 2211: 14,-37 + 2212: 14,-36 + 2228: 9,-38 + 2229: 9,-37 + 2230: 9,-36 + 2236: -5,-47 + 2239: -9,-49 + 2251: -9,-54 + 2296: -9,-45 + 2343: -1,-46 + 2344: -1,-45 + 2345: -1,-44 + 2346: -1,-43 + 2350: -1,-47 + 2959: 16,-41 + 2960: 16,-40 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 1607: 39,-41 - 1612: 40,-34 - 1613: 40,-33 - 1614: 40,-32 - 1615: 30,-33 - 1616: 30,-32 - 2858: 40,-22 - 2859: 40,-21 + 1605: 39,-41 + 1610: 40,-34 + 1611: 40,-33 + 1612: 40,-32 + 1613: 30,-33 + 1614: 30,-32 + 2856: 40,-22 + 2857: 40,-21 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1786: 4,32 - 1787: 4,33 - 1788: 4,35 - 1789: 4,36 - 1805: 7,32 - 1806: 7,33 - 1807: 7,34 - 1808: 7,35 - 1809: 7,36 - 1818: 12,30 - 1819: 10,33 - 1820: 10,32 - 1828: 21,32 - 1829: 21,33 - 1881: 28,32 - 3054: 18,32 - 3055: 12,34 - 3110: -7,41 - 3111: -7,42 - 3128: 17,40 - 3129: 17,41 - 3130: 17,42 - 3131: 17,43 - 3132: 17,44 + 1784: 4,32 + 1785: 4,33 + 1786: 4,35 + 1787: 4,36 + 1803: 7,32 + 1804: 7,33 + 1805: 7,34 + 1806: 7,35 + 1807: 7,36 + 1816: 12,30 + 1817: 10,33 + 1818: 10,32 + 1826: 21,32 + 1827: 21,33 + 1879: 28,32 + 3052: 18,32 + 3053: 12,34 + 3108: -7,41 + 3109: -7,42 + 3126: 17,40 + 3127: 17,41 + 3128: 17,42 + 3129: 17,43 + 3130: 17,44 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 579: -32,-28 - 580: -32,-28 + 577: -32,-28 + 578: -32,-28 - node: color: '#FFFFFFFF' id: BushAOne decals: - 2647: -12.173578,-13.16537 + 2645: -12.173578,-13.16537 - node: color: '#FFFFFFFF' id: BushAThree decals: - 2604: 7.063609,-17.083809 - 2648: -12.954828,-13.13412 - 2980: -13.009358,7.995878 - 2985: -15.09027,11.031727 + 2602: 7.063609,-17.083809 + 2646: -12.954828,-13.13412 + 2978: -13.009358,7.995878 + 2983: -15.09027,11.031727 - node: color: '#FFFFFFFF' id: BushATwo decals: - 2649: -12.996495,-12.238287 - 2650: -6.0969057,-13.717453 + 2647: -12.996495,-12.238287 + 2648: -6.0969057,-13.717453 - node: color: '#FFFFFFFF' id: BushCOne decals: - 2973: -11.007082,13.412277 + 2971: -11.007082,13.412277 - node: color: '#FFFFFFFF' id: BushCThree decals: - 2598: 17.014423,-8.300894 - 2634: -4.785802,3.4705331 + 2596: 17.014423,-8.300894 + 2632: -4.785802,3.4705331 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 2653: -5.148989,-12.144537 + 2651: -5.148989,-12.144537 - node: color: '#FFFFFFFF' id: BushDTwo decals: - 2590: 17.163681,15.561111 - 2591: 3.516313,17.119299 + 2588: 17.163681,15.561111 + 2589: 3.516313,17.119299 - node: color: '#FFFFFFFF' id: Busha1 decals: - 2592: 4.90173,16.900549 - 2977: -13.092692,9.881294 + 2590: 4.90173,16.900549 + 2975: -13.092692,9.881294 - node: color: '#FFFFFFFF' id: Busha2 decals: - 2982: -13.96527,9.885894 - 2984: -14.642353,10.979644 + 2980: -13.96527,9.885894 + 2982: -14.642353,10.979644 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 2974: -10.975832,14.18311 - 2978: -13.092692,9.006294 + 2972: -10.975832,14.18311 + 2976: -13.092692,9.006294 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 2646: -12.183994,-14.061203 - 2975: -10.996666,15.02686 + 2644: -12.183994,-14.061203 + 2973: -10.996666,15.02686 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 2979: -13.009358,8.402128 - 2983: -14.017353,10.354644 + 2977: -13.009358,8.402128 + 2981: -14.017353,10.354644 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 2651: -5.1698227,-12.957037 - 2981: -14.02777,11.062977 + 2649: -5.1698227,-12.957037 + 2979: -14.02777,11.062977 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 2589: 17.194931,12.9986105 - 2652: -8.055239,-11.332037 - 2976: -11.044625,12.930744 + 2587: 17.194931,12.9986105 + 2650: -8.055239,-11.332037 + 2974: -11.044625,12.930744 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 2580: 6.2998166,3.7755318 - 2595: 17.076923,-7.467561 - 2596: 16.566507,-7.988394 - 2602: 7.2406926,-16.500475 - 2617: 3.5204434,-9.447139 - 2618: 3.2912767,-9.686723 - 2654: -8.044823,-11.092453 + 2578: 6.2998166,3.7755318 + 2593: 17.076923,-7.467561 + 2594: 16.566507,-7.988394 + 2600: 7.2406926,-16.500475 + 2615: 3.5204434,-9.447139 + 2616: 3.2912767,-9.686723 + 2652: -8.044823,-11.092453 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 2581: 6.6984973,3.4174294 - 2597: 17.014423,-8.030061 - 2611: 7.441076,6.766222 - 2971: -17.569584,14.99561 - 2994: -4.0134697,4.9046235 - 3476: 63.771957,-1.9947927 - 3480: 64.23029,-2.0052094 + 2579: 6.6984973,3.4174294 + 2595: 17.014423,-8.030061 + 2609: 7.441076,6.766222 + 2969: -17.569584,14.99561 + 2992: -4.0134697,4.9046235 + 3474: 63.771957,-1.9947927 + 3478: 64.23029,-2.0052094 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 2603: 6.6990256,-16.510893 - 3375: 58.245747,-2.973395 - 3376: 57.818665,-3.0463119 - 3377: 58.308247,-2.1817284 - 3475: 64.15737,-0.19270933 + 2601: 6.6990256,-16.510893 + 3373: 58.245747,-2.973395 + 3374: 57.818665,-3.0463119 + 3375: 58.308247,-2.1817284 + 3473: 64.15737,-0.19270933 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1304: 57.84424,1.1426643 - 1305: 58.21924,0.9864143 - 1306: 57.885906,-2.0552526 - 1307: 58.15674,-1.5865024 - 1308: 57.90674,0.18433094 - 2628: 6.6556993,14.650438 - 2635: -4.7441354,3.6892834 - 2660: -12.329075,-5.2076516 - 2661: -11.683241,-5.540985 - 2995: -4.2530527,4.29004 - 3474: 63.792793,0.09895742 + 1302: 57.84424,1.1426643 + 1303: 58.21924,0.9864143 + 1304: 57.885906,-2.0552526 + 1305: 58.15674,-1.5865024 + 1306: 57.90674,0.18433094 + 2626: 6.6556993,14.650438 + 2633: -4.7441354,3.6892834 + 2658: -12.329075,-5.2076516 + 2659: -11.683241,-5.540985 + 2993: -4.2530527,4.29004 + 3472: 63.792793,0.09895742 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1311: 58.167156,-0.24275243 - 3008: -4.922404,-3.8768375 + 1309: 58.167156,-0.24275243 + 3006: -4.922404,-3.8768375 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 1312: 57.833824,-0.37816906 - 3010: -4.4328203,-4.7726707 - 3011: -4.3255215,-5.3247385 + 1310: 57.833824,-0.37816906 + 3008: -4.4328203,-4.7726707 + 3009: -4.3255215,-5.3247385 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 2970: -17.132084,16.266443 - 3009: -4.3703203,-4.199754 - 3374: 57.943665,-2.723395 + 2968: -17.132084,16.266443 + 3007: -4.3703203,-4.199754 + 3372: 57.943665,-2.723395 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 2599: 17.14984,-5.092561 - 2605: 8.53236,-17.187975 - 2639: 3.404969,-4.7533755 - 2986: -9.359586,2.9312673 + 2597: 17.14984,-5.092561 + 2603: 8.53236,-17.187975 + 2637: 3.404969,-4.7533755 + 2984: -9.359586,2.9312673 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 2640: 4.175802,-4.0346255 - 2972: -16.8925,15.828943 + 2638: 4.175802,-4.0346255 + 2970: -16.8925,15.828943 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 2559: -2.1416075,5.8916445 - 2560: -2.162441,14.072103 - 2561: 17.866562,15.155413 - 2562: 18.231146,11.999163 - 2563: 3.059716,-17.07088 - 2564: -4.1298733,-14.029394 - 2565: -2.3702574,-5.9809127 - 2566: -8.961391,-10.053829 - 2567: -17.146135,-6.1901164 + 2557: -2.1416075,5.8916445 + 2558: -2.162441,14.072103 + 2559: 17.866562,15.155413 + 2560: 18.231146,11.999163 + 2561: 3.059716,-17.07088 + 2562: -4.1298733,-14.029394 + 2563: -2.3702574,-5.9809127 + 2564: -8.961391,-10.053829 + 2565: -17.146135,-6.1901164 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 2600: 17.160257,-5.6342273 - 2629: 7.2077823,13.712938 + 2598: 17.160257,-5.6342273 + 2627: 7.2077823,13.712938 - node: color: '#FFFFFFFF' id: Bushh1 decals: - 2577: 5.9211392,3.1419072 - 2582: 8.507914,15.796663 - 2583: 9.528748,15.46333 - 2993: -3.4732609,5.2424126 + 2575: 5.9211392,3.1419072 + 2580: 8.507914,15.796663 + 2581: 9.528748,15.46333 + 2991: -3.4732609,5.2424126 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 2578: 5.087806,3.9127407 - 2584: 8.528747,14.473747 - 2662: -13.162408,-5.0826516 - 2663: -14.037408,-5.988902 + 2576: 5.087806,3.9127407 + 2582: 8.528747,14.473747 + 2660: -13.162408,-5.0826516 + 2661: -14.037408,-5.988902 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 2579: 7.181556,4.0273237 - 2588: 17.465765,12.071527 - 2664: -13.756159,-5.822237 - 2665: -13.901991,-8.228487 - 2990: -9.230458,4.9216795 + 2577: 7.181556,4.0273237 + 2586: 17.465765,12.071527 + 2662: -13.756159,-5.822237 + 2663: -13.901991,-8.228487 + 2988: -9.230458,4.9216795 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 2568: -17.677385,-15.149096 - 2569: -6.0205603,-17.117607 - 2570: -9.970078,-14.052947 - 2571: -9.887934,2.4137444 - 2572: -18.05108,15.0529785 - 2601: 6.2927756,-17.073393 - 2612: 15.850491,-4.61609 - 2614: 9.772904,-4.483665 - 2626: 13.70388,8.66825 - 2627: 7.1036158,14.358771 - 2630: -5.465275,9.849015 - 2631: -6.746525,10.213598 - 2644: 3.4466357,-5.461709 - 2679: -20.130556,-17.838984 - 2680: -16.849306,-19.984818 - 2681: -17.307638,-19.6619 - 2682: -19.265972,-20.13065 - 2998: -14.051299,-2.1793242 - 3001: -17.143507,-2.1316965 - 3002: -14.734559,-9.289597 - 3004: -14.390809,-9.633347 - 3005: -10.377625,-9.233512 - 3013: -3.5338547,-5.210155 - 3014: -4.8467765,-14.670914 - 3370: -2.6337829,9.646117 + 2566: -17.677385,-15.149096 + 2567: -6.0205603,-17.117607 + 2568: -9.970078,-14.052947 + 2569: -9.887934,2.4137444 + 2570: -18.05108,15.0529785 + 2599: 6.2927756,-17.073393 + 2610: 15.850491,-4.61609 + 2612: 9.772904,-4.483665 + 2624: 13.70388,8.66825 + 2625: 7.1036158,14.358771 + 2628: -5.465275,9.849015 + 2629: -6.746525,10.213598 + 2642: 3.4466357,-5.461709 + 2677: -20.130556,-17.838984 + 2678: -16.849306,-19.984818 + 2679: -17.307638,-19.6619 + 2680: -19.265972,-20.13065 + 2996: -14.051299,-2.1793242 + 2999: -17.143507,-2.1316965 + 3000: -14.734559,-9.289597 + 3002: -14.390809,-9.633347 + 3003: -10.377625,-9.233512 + 3011: -3.5338547,-5.210155 + 3012: -4.8467765,-14.670914 + 3368: -2.6337829,9.646117 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 2573: -17.025719,17.03245 - 2574: 18.117056,13.867498 - 2619: 3.580893,-8.535644 - 2620: 8.918044,-3.98356 - 2621: 15.266736,-5.8692675 - 2622: 16.209822,-5.8538113 - 2623: 7.318463,5.66825 - 2624: 6.4642963,5.85575 - 2625: 14.620547,8.230751 - 2636: 6.318049,2.225238 - 2655: -8.044823,-13.97787 - 2656: -8.878156,-13.144537 - 2657: -5.867739,-11.154953 - 2658: -13.026991,-9.009735 - 2659: -11.860325,-5.124318 - 2683: -16.859722,-18.94315 - 2987: -8.75542,2.9208503 - 2992: -13.95071,2.256745 - 2999: -14.165881,-2.439741 - 3003: -14.713725,-9.602097 - 3006: -9.76849,-14.395954 - 3015: -4.450943,-14.608414 - 3371: -2.8004496,9.333617 + 2571: -17.025719,17.03245 + 2572: 18.117056,13.867498 + 2617: 3.580893,-8.535644 + 2618: 8.918044,-3.98356 + 2619: 15.266736,-5.8692675 + 2620: 16.209822,-5.8538113 + 2621: 7.318463,5.66825 + 2622: 6.4642963,5.85575 + 2623: 14.620547,8.230751 + 2634: 6.318049,2.225238 + 2653: -8.044823,-13.97787 + 2654: -8.878156,-13.144537 + 2655: -5.867739,-11.154953 + 2656: -13.026991,-9.009735 + 2657: -11.860325,-5.124318 + 2681: -16.859722,-18.94315 + 2985: -8.75542,2.9208503 + 2990: -13.95071,2.256745 + 2997: -14.165881,-2.439741 + 3001: -14.713725,-9.602097 + 3004: -9.76849,-14.395954 + 3013: -4.450943,-14.608414 + 3369: -2.8004496,9.333617 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 2575: 17.117056,10.211248 - 2576: 9.26489,2.9960737 - 2606: 14.499886,6.958212 - 2607: 13.541552,7.447795 - 2608: 6.0254874,14.498462 - 2613: 16.579659,-3.9598398 - 2637: 7.224299,2.3710713 - 2638: 4.0082765,6.5204124 - 2645: 5.713353,-3.1926599 - 2969: -14.413333,18.172693 - 2989: -9.557503,5.8271008 - 2991: -14.0402975,2.506745 - 3372: -2.8212829,8.989867 + 2573: 17.117056,10.211248 + 2574: 9.26489,2.9960737 + 2604: 14.499886,6.958212 + 2605: 13.541552,7.447795 + 2606: 6.0254874,14.498462 + 2611: 16.579659,-3.9598398 + 2635: 7.224299,2.3710713 + 2636: 4.0082765,6.5204124 + 2643: 5.713353,-3.1926599 + 2967: -14.413333,18.172693 + 2987: -9.557503,5.8271008 + 2989: -14.0402975,2.506745 + 3370: -2.8212829,8.989867 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 2547: -15.13607,-18.199955 - 2548: -18.14605,-11.80234 - 2549: -13.963279,-4.177868 - 2550: -5.8667884,-5.4799514 - 2551: 8.061129,-4.427868 - 2552: 15.901968,-2.2820346 - 2553: 17.151968,2.9988291 - 2554: 9.610178,17.11985 - 2555: 4.0546904,17.078184 - 2556: 3.480264,5.210905 - 2557: -15.017622,18.057854 - 2558: -5.5270247,2.9853945 - 2593: 5.777904,17.049623 - 2594: 9.139725,14.0701685 - 2609: 6.567154,13.456795 - 2610: 6.441076,6.7870555 - 2615: 9.397904,-5.046165 - 2616: 4.3850265,-9.488806 - 2632: -6.2881913,9.494848 - 2633: -5.402775,10.869849 - 2641: 3.8528857,-4.5242085 - 2666: -11.037408,-8.100949 - 2996: -3.7009702,4.4983735 - 2997: -5.697132,-3.1168242 - 3007: -9.425084,-14.560988 - 3012: -3.5442712,-4.7830715 + 2545: -15.13607,-18.199955 + 2546: -18.14605,-11.80234 + 2547: -13.963279,-4.177868 + 2548: -5.8667884,-5.4799514 + 2549: 8.061129,-4.427868 + 2550: 15.901968,-2.2820346 + 2551: 17.151968,2.9988291 + 2552: 9.610178,17.11985 + 2553: 4.0546904,17.078184 + 2554: 3.480264,5.210905 + 2555: -15.017622,18.057854 + 2556: -5.5270247,2.9853945 + 2591: 5.777904,17.049623 + 2592: 9.139725,14.0701685 + 2607: 6.567154,13.456795 + 2608: 6.441076,6.7870555 + 2613: 9.397904,-5.046165 + 2614: 4.3850265,-9.488806 + 2630: -6.2881913,9.494848 + 2631: -5.402775,10.869849 + 2639: 3.8528857,-4.5242085 + 2664: -11.037408,-8.100949 + 2994: -3.7009702,4.4983735 + 2995: -5.697132,-3.1168242 + 3005: -9.425084,-14.560988 + 3010: -3.5442712,-4.7830715 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 2585: 8.789164,15.109163 - 2671: -19.824345,-10.10782 - 2672: -20.11601,-9.63907 - 2674: -20.011845,-8.243237 - 2675: -18.730595,-8.79532 - 2676: -18.873224,-10.013859 - 2677: -19.654474,-7.0659423 - 3388: -18.860361,-7.807997 + 2583: 8.789164,15.109163 + 2669: -19.824345,-10.10782 + 2670: -20.11601,-9.63907 + 2672: -20.011845,-8.243237 + 2673: -18.730595,-8.79532 + 2674: -18.873224,-10.013859 + 2675: -19.654474,-7.0659423 + 3386: -18.860361,-7.807997 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 2673: -18.793095,-6.868236 - 2678: -19.94614,-7.7117753 - 3386: -20.016611,-7.2975807 - 3387: -18.902029,-9.370498 - 3389: -19.318695,-8.485081 + 2671: -18.793095,-6.868236 + 2676: -19.94614,-7.7117753 + 3384: -20.016611,-7.2975807 + 3385: -18.902029,-9.370498 + 3387: -19.318695,-8.485081 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 3373: -4.6337833,10.114867 + 3371: -4.6337833,10.114867 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 2643: 3.0091357,-5.795042 - 2988: -10.00542,5.191684 + 2641: 3.0091357,-5.795042 + 2986: -10.00542,5.191684 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 2586: 15.903748,17.02583 - 2587: 18.067644,12.942497 - 2642: 4.8112187,-3.7846253 + 2584: 15.903748,17.02583 + 2585: 18.067644,12.942497 + 2640: 4.8112187,-3.7846253 - node: color: '#FFFFFFFF' id: Bushm1 decals: - 3477: 63.81363,-0.83854264 + 3475: 63.81363,-0.83854264 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 3478: 64.29279,-0.73437595 + 3476: 64.29279,-0.73437595 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 2667: -10.9586735,-6.0094166 - 2668: -11.224603,-5.736016 - 2669: -13.307937,-8.381849 - 2670: -14.067469,-7.593817 - 3479: 64.12612,-1.2864593 + 2665: -10.9586735,-6.0094166 + 2666: -11.224603,-5.736016 + 2667: -13.307937,-8.381849 + 2668: -14.067469,-7.593817 + 3477: 64.12612,-1.2864593 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 1309: 58.021324,0.5489143 - 1310: 57.96924,-1.1594192 - 3378: 57.99387,-2.411529 + 1307: 58.021324,0.5489143 + 1308: 57.96924,-1.1594192 + 3376: 57.99387,-2.411529 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 3546: 56.20735,16.017925 + 3544: 56.20735,16.017925 - node: color: '#52B4E996' id: CheckerNWSE decals: - 2951: -19,-27 - 2952: -16,-27 - 2953: -22,-27 + 2949: -19,-27 + 2950: -16,-27 + 2951: -22,-27 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe @@ -3181,33 +3192,33 @@ entities: decals: 30: -2,-2 31: -2,-2 - 3413: 2,4 - 3414: 3,3 - 3415: 4,2 + 3411: 2,4 + 3412: 3,3 + 3413: 4,2 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: 33: 2,-2 - 3410: -4,2 - 3411: -3,3 - 3412: -2,4 + 3408: -4,2 + 3409: -3,3 + 3410: -2,4 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: 29: -2,2 - 3407: 2,-4 - 3408: 3,-3 - 3409: 4,-2 + 3405: 2,-4 + 3406: 3,-3 + 3407: 4,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: 32: 2,2 - 3404: -2,-4 - 3405: -3,-3 - 3406: -4,-2 + 3402: -2,-4 + 3403: -3,-3 + 3404: -4,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE @@ -3271,7 +3282,7 @@ entities: 95: -13,-2 96: -16,-2 97: -17,-2 - 3000: -14,-2 + 2998: -14,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS @@ -3302,8 +3313,8 @@ entities: 105: -8,2 106: -7,2 107: -6,2 - 3396: 11,2 - 3397: 14,2 + 3394: 11,2 + 3395: 14,2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW @@ -3333,348 +3344,350 @@ entities: 76: 2,-14 77: 2,-16 78: 2,-17 - 3402: 2,10 - 3403: 2,13 + 3400: 2,10 + 3401: 2,13 - node: color: '#FFFFFFFF' id: Delivery decals: - 1736: 50,-39 - 1737: 50,-38 - 1738: 50,-37 - 1739: 50,-36 + 1734: 50,-39 + 1735: 50,-38 + 1736: 50,-37 + 1737: 50,-36 - node: color: '#3EB38896' id: DiagonalCheckerAOverlay decals: - 3523: 12,23 - 3524: 13,22 - 3525: 13,23 - 3526: 14,23 - 3527: 15,23 - 3528: 15,22 - 3529: 14,22 - 3530: 14,21 - 3531: 13,21 - 3532: 12,20 - 3533: 13,20 - 3534: 14,20 - 3535: 15,20 - 3536: 15,21 - 3538: 12,21 - 3539: 12,22 + 3521: 12,23 + 3522: 13,22 + 3523: 13,23 + 3524: 14,23 + 3525: 15,23 + 3526: 15,22 + 3527: 14,22 + 3528: 14,21 + 3529: 13,21 + 3530: 12,20 + 3531: 13,20 + 3532: 14,20 + 3533: 15,20 + 3534: 15,21 + 3536: 12,21 + 3537: 12,22 - node: color: '#639137FF' id: DiagonalCheckerBOverlay decals: - 3510: 12,20 - 3511: 13,20 - 3512: 13,21 - 3513: 13,22 - 3514: 13,23 - 3515: 14,23 - 3516: 14,22 - 3517: 14,21 - 3518: 14,20 - 3519: 15,20 - 3520: 15,21 - 3521: 15,22 - 3522: 15,23 - 3537: 12,23 - 3540: 12,21 - 3541: 12,22 + 3508: 12,20 + 3509: 13,20 + 3510: 13,21 + 3511: 13,22 + 3512: 13,23 + 3513: 14,23 + 3514: 14,22 + 3515: 14,21 + 3516: 14,20 + 3517: 15,20 + 3518: 15,21 + 3519: 15,22 + 3520: 15,23 + 3535: 12,23 + 3538: 12,21 + 3539: 12,22 - node: color: '#D381C996' id: DiagonalOverlay decals: - 2240: -10,-49 - 2316: -10,-45 - 3381: 4,-47 - 3382: 4,-46 - 3383: -2,-47 - 3384: -6,-47 + 2238: -10,-49 + 2314: -10,-45 + 3379: 4,-47 + 3380: 4,-46 + 3381: -2,-47 + 3382: -6,-47 - node: color: '#DE3A3A96' id: DiagonalOverlay decals: - 1556: 51,-2 - 1557: 49,-2 - 1558: 49,-5 - 1559: 51,-5 - 1560: 29,-33 - 1561: 29,-32 - 1562: 39,-34 - 1563: 39,-32 - 1564: 41,-31 - 1565: 44,-37 - 1566: 41,-38 - 1567: 38,-41 - 2851: 41,-24 + 1554: 51,-2 + 1555: 49,-2 + 1556: 49,-5 + 1557: 51,-5 + 1558: 29,-33 + 1559: 29,-32 + 1560: 39,-34 + 1561: 39,-32 + 1562: 41,-31 + 1563: 44,-37 + 1564: 41,-38 + 1565: 38,-41 + 2849: 41,-24 - node: color: '#EFB34196' id: DiagonalOverlay decals: - 1822: 9,33 - 1823: 9,32 - 1824: 20,33 - 1825: 20,32 + 1820: 9,33 + 1821: 9,32 + 1822: 20,33 + 1823: 20,32 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 2749: 16.070688,16.03927 - 2780: 9.361443,4.4135666 - 2781: 8.71561,5.3614836 + 2747: 16.070688,16.03927 + 2778: 9.361443,4.4135666 + 2779: 8.71561,5.3614836 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 2750: 17.062426,11.239492 - 2751: 10.321154,17.060677 - 2784: 7.6635256,6.1948166 - 2785: 8.538526,6.2989836 - 2820: 9.51524,6.327868 + 2748: 17.062426,11.239492 + 2749: 10.321154,17.060677 + 2782: 7.6635256,6.1948166 + 2783: 8.538526,6.2989836 + 2818: 9.51524,6.327868 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 2777: 10.111443,4.4344 - 2778: 8.663526,4.5594 - 2779: 8.05936,5.5073166 - 2821: 9.79649,6.7862015 + 2775: 10.111443,4.4344 + 2776: 8.663526,4.5594 + 2777: 8.05936,5.5073166 + 2819: 9.79649,6.7862015 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 2746: 3.1090877,15.838451 - 2747: 15.10194,16.174686 + 2744: 3.1090877,15.838451 + 2745: 15.10194,16.174686 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 2748: 15.393607,16.737186 - 2782: 9.49686,5.1010666 - 2783: 9.080193,5.7260666 - 2786: 10.324566,5.2335067 - 2808: 16.988474,10.508276 - 2809: 16.363474,10.747859 - 2810: 11.000941,16.992361 - 2811: 11.6309395,17.170504 - 2827: 7.8013525,4.69695 - 2828: 9.145103,3.603201 - 2829: 9.15132,6.0905905 + 2746: 15.393607,16.737186 + 2780: 9.49686,5.1010666 + 2781: 9.080193,5.7260666 + 2784: 10.324566,5.2335067 + 2806: 16.988474,10.508276 + 2807: 16.363474,10.747859 + 2808: 11.000941,16.992361 + 2809: 11.6309395,17.170504 + 2825: 7.8013525,4.69695 + 2826: 9.145103,3.603201 + 2827: 9.15132,6.0905905 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 2819: 8.806907,6.8799515 + 2817: 8.806907,6.8799515 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 2787: 15.255633,6.9409747 - 2788: 14.661882,7.545141 + 2785: 15.255633,6.9409747 + 2786: 14.661882,7.545141 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 2789: 15.463966,7.690975 - 2791: 14.5844555,8.774308 - 2795: 14.978545,6.1768036 - 2796: 15.728544,6.3643036 - 2822: 14.814111,5.0989227 - 2823: 15.56411,4.4947557 - 2826: 12.9190645,9.799427 + 2787: 15.463966,7.690975 + 2789: 14.5844555,8.774308 + 2793: 14.978545,6.1768036 + 2794: 15.728544,6.3643036 + 2820: 14.814111,5.0989227 + 2821: 15.56411,4.4947557 + 2824: 12.9190645,9.799427 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 2740: 8.013186,3.1140726 - 2741: 10.378889,-5.012858 - 2742: 10.274722,-4.383773 - 2790: 15.219872,8.347224 - 2792: 13.9177885,8.774308 - 2793: 13.252036,8.115639 - 2794: 13.134795,8.926804 - 2797: 16.103544,7.1143036 - 2798: 16.42646,6.1143036 - 2799: 15.748611,5.544657 - 2824: 14.501611,4.234339 - 2825: 13.6690645,9.570259 + 2738: 8.013186,3.1140726 + 2739: 10.378889,-5.012858 + 2740: 10.274722,-4.383773 + 2788: 15.219872,8.347224 + 2790: 13.9177885,8.774308 + 2791: 13.252036,8.115639 + 2792: 13.134795,8.926804 + 2795: 16.103544,7.1143036 + 2796: 16.42646,6.1143036 + 2797: 15.748611,5.544657 + 2822: 14.501611,4.234339 + 2823: 13.6690645,9.570259 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 2738: 7.160172,13.449887 - 2739: 5.483089,13.918637 - 2752: 12.341987,18.164845 - 2759: 4.084557,12.876521 - 2760: 6.313724,11.689021 - 2761: 9.0012245,11.564021 - 2767: 8.3553915,12.168188 - 2768: 6.730391,12.855688 - 2769: 5.105391,14.376521 - 2770: 2.9283073,14.741104 - 2772: 4.719974,13.105688 - 2773: 4.355391,14.585857 - 2774: 3.473161,14.394393 - 2775: 4.3585773,13.821476 - 2801: 2.299132,6.662748 - 2806: 4.7337813,6.6002483 - 2807: 4.5150313,6.0064983 + 2736: 7.160172,13.449887 + 2737: 5.483089,13.918637 + 2750: 12.341987,18.164845 + 2757: 4.084557,12.876521 + 2758: 6.313724,11.689021 + 2759: 9.0012245,11.564021 + 2765: 8.3553915,12.168188 + 2766: 6.730391,12.855688 + 2767: 5.105391,14.376521 + 2768: 2.9283073,14.741104 + 2770: 4.719974,13.105688 + 2771: 4.355391,14.585857 + 2772: 3.473161,14.394393 + 2773: 4.3585773,13.821476 + 2799: 2.299132,6.662748 + 2804: 4.7337813,6.6002483 + 2805: 4.5150313,6.0064983 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 2753: 14.633654,18.154427 - 2762: 7.6991415,11.939021 - 2763: 7.0533075,11.282771 - 2764: 8.1783085,11.241104 - 2802: 3.0178826,5.8710814 + 2751: 14.633654,18.154427 + 2760: 7.6991415,11.939021 + 2761: 7.0533075,11.282771 + 2762: 8.1783085,11.241104 + 2800: 3.0178826,5.8710814 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 2754: 13.227404,18.091927 - 2756: 11.914904,18.11276 - 2757: 11.914904,18.11276 - 2765: 6.938724,12.168188 - 2766: 7.6158075,12.918188 - 2776: 3.4939945,13.592309 - 2803: 3.1637156,6.5481644 - 2804: 3.7887158,5.704415 - 2805: 3.9108648,7.0273314 + 2752: 13.227404,18.091927 + 2754: 11.914904,18.11276 + 2755: 11.914904,18.11276 + 2763: 6.938724,12.168188 + 2764: 7.6158075,12.918188 + 2774: 3.4939945,13.592309 + 2801: 3.1637156,6.5481644 + 2802: 3.7887158,5.704415 + 2803: 3.9108648,7.0273314 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 2743: 3.8501334,-9.470912 - 2744: 4.3709664,-9.908412 - 2745: 3.6209664,-9.960495 - 2755: 13.966987,18.133595 - 2758: 15.123237,18.071095 - 2771: 5.136641,13.511938 - 2800: 2.2574656,5.8294144 - 2812: 9.849766,11.338729 - 2813: 9.047683,10.619978 - 2814: 4.7809443,7.692894 - 2815: 5.676778,7.797061 - 2816: 5.4059443,8.505394 - 2817: 5.8902392,6.890369 - 2818: 6.223573,8.400785 + 2741: 3.8501334,-9.470912 + 2742: 4.3709664,-9.908412 + 2743: 3.6209664,-9.960495 + 2753: 13.966987,18.133595 + 2756: 15.123237,18.071095 + 2769: 5.136641,13.511938 + 2798: 2.2574656,5.8294144 + 2810: 9.849766,11.338729 + 2811: 9.047683,10.619978 + 2812: 4.7809443,7.692894 + 2813: 5.676778,7.797061 + 2814: 5.4059443,8.505394 + 2815: 5.8902392,6.890369 + 2816: 6.223573,8.400785 - node: color: '#00BEBE7F' id: FullTileOverlayGreyscale decals: - 3173: -26,40 - 3174: -26,42 - 3175: -43,2 - 3176: -42,2 - 3177: -37,2 - 3178: -36,2 + 3171: -26,40 + 3172: -26,42 + 3173: -43,2 + 3174: -42,2 + 3175: -37,2 + 3176: -36,2 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 706: 21,3 - 707: 23,3 - 708: 25,3 - 808: -33,-9 - 809: -29,-9 - 2860: -23,-36 + 704: 21,3 + 705: 23,3 + 706: 25,3 + 806: -33,-9 + 807: -29,-9 + 2858: -23,-36 + 3612: 27,13 + 3613: 27,14 - node: color: '#373737FF' id: FullTileOverlayGreyscale decals: - 3416: 21,-19 - 3417: 20,-19 - 3418: 19,-19 - 3419: 19,-18 - 3420: 18,-19 - 3421: 18,-20 - 3422: 19,-20 - 3423: 19,-21 - 3424: 18,-21 - 3425: 21,-18 - 3426: 20,-18 - 3434: 17,-18 - 3435: 18,-17 - 3436: 21,-22 - 3437: 22,-21 + 3414: 21,-19 + 3415: 20,-19 + 3416: 19,-19 + 3417: 19,-18 + 3418: 18,-19 + 3419: 18,-20 + 3420: 19,-20 + 3421: 19,-21 + 3422: 18,-21 + 3423: 21,-18 + 3424: 20,-18 + 3432: 17,-18 + 3433: 18,-17 + 3434: 21,-22 + 3435: 22,-21 - node: color: '#4A35194C' id: FullTileOverlayGreyscale decals: - 2689: -22,3 - 2690: -21,3 - 2691: -20,3 - 2692: -19,3 - 2693: -19,4 - 2694: -19,5 - 2695: -19,6 - 2696: -19,7 - 2697: -19,8 - 2698: -19,9 - 2699: -19,10 - 2700: -20,10 - 2701: -20,9 - 2702: -20,8 - 2703: -20,7 - 2704: -20,6 - 2705: -20,5 - 2706: -20,4 - 2707: -21,4 - 2708: -22,4 - 2709: -22,5 - 2710: -21,5 - 2711: -21,6 - 2712: -22,6 - 2713: -22,7 - 2714: -21,7 - 2715: -21,8 - 2716: -22,8 - 2717: -22,9 - 2718: -21,9 - 2719: -21,10 - 2720: -22,10 + 2687: -22,3 + 2688: -21,3 + 2689: -20,3 + 2690: -19,3 + 2691: -19,4 + 2692: -19,5 + 2693: -19,6 + 2694: -19,7 + 2695: -19,8 + 2696: -19,9 + 2697: -19,10 + 2698: -20,10 + 2699: -20,9 + 2700: -20,8 + 2701: -20,7 + 2702: -20,6 + 2703: -20,5 + 2704: -20,4 + 2705: -21,4 + 2706: -22,4 + 2707: -22,5 + 2708: -21,5 + 2709: -21,6 + 2710: -22,6 + 2711: -22,7 + 2712: -21,7 + 2713: -21,8 + 2714: -22,8 + 2715: -22,9 + 2716: -21,9 + 2717: -21,10 + 2718: -22,10 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: 244: -8,-39 245: -7,-39 - 530: -26,-27 - 531: -26,-28 - 532: -26,-29 - 533: -12,-30 - 534: -12,-29 - 535: -11,-29 - 550: -26,-41 - 735: -3,-37 - 736: -3,-36 - 818: -29,-6 - 819: -33,-6 - 927: -28,-29 - 928: -28,-28 - 929: -24,-29 - 930: -24,-28 + 528: -26,-27 + 529: -26,-28 + 530: -26,-29 + 531: -12,-30 + 532: -12,-29 + 533: -11,-29 + 548: -26,-41 + 733: -3,-37 + 734: -3,-36 + 816: -29,-6 + 817: -33,-6 + 925: -28,-29 + 926: -28,-28 + 927: -24,-29 + 928: -24,-28 - node: color: '#765428FF' id: FullTileOverlayGreyscale decals: - 3317: -55,-16 - 3318: -56,-16 + 3315: -55,-16 + 3316: -56,-16 - node: color: '#951710FF' id: FullTileOverlayGreyscale decals: - 2398: 43,37 - 2399: 43,38 - 2400: 43,39 - 2401: 43,40 - 2402: 43,41 - 2403: 43,36 - 2404: 43,42 + 2396: 43,37 + 2397: 43,38 + 2398: 43,39 + 2399: 43,40 + 2400: 43,41 + 2401: 43,36 + 2402: 43,42 - node: color: '#9FED5896' id: FullTileOverlayGreyscale @@ -3687,102 +3700,106 @@ entities: 193: -31,-17 263: -26,-14 474: -30,-22 - 814: -31,-9 - 815: -31,-4 + 812: -31,-9 + 813: -31,-4 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 812: -31,-8 - 813: -31,-5 + 810: -31,-8 + 811: -31,-5 - node: color: '#BC863FFF' id: FullTileOverlayGreyscale decals: - 3235: -48,-3 - 3236: -48,-4 - 3237: -52,-1 - 3238: -52,0 - 3349: -48,0 - 3350: -48,1 - 3351: -48,-1 - 3363: -51,-1 - 3364: -51,0 + 3233: -48,-3 + 3234: -48,-4 + 3235: -52,-1 + 3236: -52,0 + 3347: -48,0 + 3348: -48,1 + 3349: -48,-1 + 3361: -51,-1 + 3362: -51,0 - node: color: '#C6FF91FF' id: FullTileOverlayGreyscale decals: - 3018: -37,-35 - 3019: -37,-34 - 3020: -36,-34 - 3021: -35,-34 + 3016: -37,-35 + 3017: -37,-34 + 3018: -36,-34 + 3019: -35,-34 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 822: -29,-4 - 823: -33,-4 + 820: -29,-4 + 821: -33,-4 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale decals: - 816: -29,-7 - 817: -33,-7 + 814: -29,-7 + 815: -33,-7 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 820: -29,-5 - 821: -33,-5 - 2735: 56,-10 - 2736: 56,-11 - 2737: 56,-12 - 3390: 32,-10 - 3391: 38,-10 - 3392: 40,-10 + 818: -29,-5 + 819: -33,-5 + 2733: 56,-10 + 2734: 56,-11 + 2735: 56,-12 + 3388: 32,-10 + 3389: 38,-10 + 3390: 40,-10 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 810: -29,-8 - 811: -33,-8 - 2886: -11,-39 - 2887: -19,-40 - 2932: -16,-38 + 808: -29,-8 + 809: -33,-8 + 2884: -11,-39 + 2885: -19,-40 + 2930: -16,-38 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 3393: 11,2 + 3391: 11,2 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 3400: 2,10 + 3398: 2,10 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 3395: 12.501469,3.9993005 - 3398: 2,13 - 3399: 2,13 + 3393: 12.501469,3.9993005 + 3396: 2,13 + 3397: 2,13 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 3394: 14,2 - 3401: 4.001555,11.500919 + 3392: 14,2 + 3399: 4.001555,11.500919 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 593: 20,9 - 594: 21,9 - 595: 21,9 - 596: 22,9 - 597: 22,9 - 598: 25,9 - 622: 26,9 + 591: 20,9 + 592: 21,9 + 593: 21,9 + 594: 22,9 + 595: 22,9 + 596: 25,9 + 620: 26,9 + 3585: 22,18 + 3586: 23,18 + 3587: 24,18 + 3588: 25,18 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3795,18 +3812,18 @@ entities: 332: -17,-33 333: -16,-33 334: -15,-33 - 537: -13,-29 - 549: -26,-42 + 535: -13,-29 + 547: -26,-42 - node: color: '#639137FF' id: HalfTileOverlayGreyscale decals: - 640: 4,24 - 641: 5,24 - 642: 6,24 - 643: 7,24 - 644: 8,24 - 645: 9,24 + 638: 4,24 + 639: 5,24 + 640: 6,24 + 641: 7,24 + 642: 8,24 + 643: 9,24 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -3825,35 +3842,37 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale decals: - 3022: -36,-31 - 3023: -37,-31 - 3024: -38,-31 + 3020: -36,-31 + 3021: -37,-31 + 3022: -38,-31 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 830: -13,-50 - 831: -12,-50 - 2957: 15,-42 + 828: -13,-50 + 829: -12,-50 + 2955: 15,-42 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1435: 45,-15 - 1436: 44,-15 - 1437: 43,-15 - 1438: 42,-15 - 1439: 41,-15 + 1433: 45,-15 + 1434: 44,-15 + 1435: 43,-15 + 1436: 42,-15 + 1437: 41,-15 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 588: 20,4 - 589: 20,4 - 590: 21,4 - 591: 22,4 - 592: 25,4 - 623: 26,4 + 586: 20,4 + 587: 20,4 + 588: 21,4 + 589: 22,4 + 590: 25,4 + 621: 26,4 + 3589: 23,11 + 3590: 24,11 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -3864,26 +3883,26 @@ entities: 340: -18,-36 341: -20,-36 342: -19,-36 - 536: -13,-28 - 548: -26,-40 + 534: -13,-28 + 546: -26,-40 - node: color: '#639137FF' id: HalfTileOverlayGreyscale180 decals: - 632: 8,22 - 633: 7,22 - 634: 7,22 - 635: 6,22 - 636: 5,22 - 646: 4,19 - 647: 5,19 - 648: 6,19 - 649: 7,19 - 650: 7,19 - 651: 8,19 - 652: 9,19 - 665: 5,23 - 666: 8,23 + 630: 8,22 + 631: 7,22 + 632: 7,22 + 633: 6,22 + 634: 5,22 + 644: 4,19 + 645: 5,19 + 646: 6,19 + 647: 7,19 + 648: 7,19 + 649: 8,19 + 650: 9,19 + 663: 5,23 + 664: 8,23 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -3901,33 +3920,38 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale180 decals: - 3017: -38,-35 + 3015: -38,-35 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 824: -13,-48 - 825: -12,-48 - 2958: 15,-39 + 822: -13,-48 + 823: -12,-48 + 2956: 15,-39 - node: color: '#1E5026FF' id: HalfTileOverlayGreyscale270 decals: - 2412: 42,36 - 2413: 42,37 - 2414: 42,38 - 2415: 42,39 - 2416: 42,40 - 2417: 42,41 - 2418: 42,42 + 2410: 42,36 + 2411: 42,37 + 2412: 42,38 + 2413: 42,39 + 2414: 42,40 + 2415: 42,41 + 2416: 42,42 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 584: 19,5 - 585: 19,6 - 586: 19,7 - 587: 19,8 + 582: 19,5 + 583: 19,6 + 584: 19,7 + 585: 19,8 + 3580: 21,13 + 3581: 21,14 + 3582: 21,15 + 3583: 21,16 + 3584: 21,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -3944,32 +3968,32 @@ entities: 257: -8,-34 327: -21,-34 328: -21,-35 - 541: -11,-28 - 542: -11,-27 - 543: -11,-26 - 547: -11,-25 + 539: -11,-28 + 540: -11,-27 + 541: -11,-26 + 545: -11,-25 - node: color: '#639137FF' id: HalfTileOverlayGreyscale270 decals: - 631: 9,21 - 653: 3,20 - 654: 3,21 - 655: 3,22 - 656: 3,23 - 667: 7,20 - 670: 7,21 + 629: 9,21 + 651: 3,20 + 652: 3,21 + 653: 3,22 + 654: 3,23 + 665: 7,20 + 668: 7,21 - node: color: '#951710FF' id: HalfTileOverlayGreyscale270 decals: - 2426: 44,36 - 2427: 44,37 - 2428: 44,38 - 2429: 44,39 - 2430: 44,40 - 2431: 44,41 - 2432: 44,42 + 2424: 44,36 + 2425: 44,37 + 2426: 44,38 + 2427: 44,39 + 2428: 44,40 + 2429: 44,41 + 2430: 44,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3985,32 +4009,39 @@ entities: color: '#C6FF91FF' id: HalfTileOverlayGreyscale270 decals: - 3026: -39,-32 - 3027: -39,-33 - 3028: -39,-34 + 3024: -39,-32 + 3025: -39,-33 + 3026: -39,-34 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 829: -13,-49 + 827: -13,-49 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 2730: 57,-12 - 2731: 57,-11 - 2732: 57,-10 + 2728: 57,-12 + 2729: 57,-11 + 2730: 57,-10 - node: color: '#1E5026FF' id: HalfTileOverlayGreyscale90 decals: - 2405: 44,36 - 2406: 44,37 - 2407: 44,38 - 2408: 44,39 - 2409: 44,40 - 2410: 44,41 - 2411: 44,42 + 2403: 44,36 + 2404: 44,37 + 2405: 44,38 + 2406: 44,39 + 2407: 44,40 + 2408: 44,41 + 2409: 44,42 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 3591: 26,15 + 3592: 26,16 + 3593: 26,17 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -4021,31 +4052,31 @@ entities: 255: -10,-34 335: -14,-34 336: -14,-35 - 544: -12,-27 - 545: -12,-26 - 546: -12,-25 + 542: -12,-27 + 543: -12,-26 + 544: -12,-25 - node: color: '#639137FF' id: HalfTileOverlayGreyscale90 decals: - 637: 4,21 - 657: 10,20 - 658: 10,21 - 659: 10,22 - 660: 10,23 - 668: 6,20 - 669: 6,21 + 635: 4,21 + 655: 10,20 + 656: 10,21 + 657: 10,22 + 658: 10,23 + 666: 6,20 + 667: 6,21 - node: color: '#951710FF' id: HalfTileOverlayGreyscale90 decals: - 2419: 42,36 - 2420: 42,37 - 2421: 42,38 - 2422: 42,39 - 2423: 42,40 - 2424: 42,41 - 2425: 42,42 + 2417: 42,36 + 2418: 42,37 + 2419: 42,38 + 2420: 42,39 + 2421: 42,40 + 2422: 42,41 + 2423: 42,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -4059,238 +4090,238 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 828: -12,-49 + 826: -12,-49 - node: color: '#EFB34196' id: MiniTileCornerOverlayNE decals: - 2881: -14,-40 + 2879: -14,-40 - node: color: '#EFB34196' id: MiniTileCornerOverlayNW decals: - 2878: -16,-40 + 2876: -16,-40 - node: color: '#EFB34196' id: MiniTileCornerOverlaySE decals: - 2879: -14,-42 + 2877: -14,-42 - node: color: '#EFB34196' id: MiniTileCornerOverlaySW decals: - 2880: -16,-42 + 2878: -16,-42 - node: color: '#DE3A3A96' id: MiniTileInnerOverlaySE decals: - 2830: 36,-13 + 2828: 36,-13 - node: color: '#EFB34196' id: MiniTileLineOverlayE decals: - 2883: -14,-41 + 2881: -14,-41 - node: color: '#DE3A3A96' id: MiniTileLineOverlayN decals: - 2729: 55,-10 + 2727: 55,-10 - node: color: '#EFB34196' id: MiniTileLineOverlayN decals: - 2882: -15,-40 + 2880: -15,-40 - node: color: '#DE3A3A96' id: MiniTileLineOverlayS decals: - 2728: 55,-12 + 2726: 55,-12 - node: color: '#EFB34196' id: MiniTileLineOverlayS decals: - 2885: -15,-42 + 2883: -15,-42 - node: color: '#EFB34196' id: MiniTileLineOverlayW decals: - 2884: -16,-41 + 2882: -16,-41 - node: color: '#D4D4D496' id: MiniTileOverlay decals: - 1751: 46,-35 - 1752: 46,-41 + 1749: 46,-35 + 1750: 46,-41 - node: color: '#FFFFFFFF' id: MiniTileOverlay decals: - 1753: 6,39 + 1751: 6,39 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 1741: 48,-36 + 1739: 48,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 1742: 45,-36 + 1740: 45,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 1740: 48,-39 - 1744: 47,-40 + 1738: 48,-39 + 1742: 47,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 1743: 45,-40 + 1741: 45,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 1745: 46,-36 - 1746: 47,-36 + 1743: 46,-36 + 1744: 47,-36 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 1747: 46,-40 + 1745: 46,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1748: 45,-39 - 1749: 45,-38 - 1750: 45,-37 + 1746: 45,-39 + 1747: 45,-38 + 1748: 45,-37 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 989: -52,-9 + 987: -52,-9 - node: color: '#A4610696' id: MiniTileWhiteCornerNe decals: - 1004: -57,-3 - 1007: -57,-3 + 1002: -57,-3 + 1005: -57,-3 - node: color: '#BC863FBF' id: MiniTileWhiteCornerNe decals: - 960: -57,-18 + 958: -57,-18 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 2923: -11,-42 - 2924: -12,-39 + 2921: -11,-42 + 2922: -12,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe decals: 441: -15,-34 - 2891: -12,-39 - 2892: -11,-42 + 2889: -12,-39 + 2890: -11,-42 - node: color: '#A4610696' id: MiniTileWhiteCornerNw decals: - 1005: -58,-3 - 1006: -58,-3 + 1003: -58,-3 + 1004: -58,-3 - node: color: '#BC863FBF' id: MiniTileWhiteCornerNw decals: - 959: -58,-18 + 957: -58,-18 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 2925: -18,-39 + 2923: -18,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw decals: 440: -20,-34 - 2890: -18,-39 + 2888: -18,-39 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 988: -52,-11 + 986: -52,-11 - node: color: '#A4610696' id: MiniTileWhiteCornerSe decals: - 1002: -57,-5 - 1008: -57,-5 + 1000: -57,-5 + 1006: -57,-5 - node: color: '#BC863FBF' id: MiniTileWhiteCornerSe decals: - 957: -57,-20 + 955: -57,-20 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 2922: -11,-43 + 2920: -11,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe decals: 438: -15,-35 - 2888: -11,-43 + 2886: -11,-43 - node: color: '#A4610696' id: MiniTileWhiteCornerSw decals: - 1003: -58,-5 - 1009: -58,-5 + 1001: -58,-5 + 1007: -58,-5 - node: color: '#BC863FBF' id: MiniTileWhiteCornerSw decals: - 958: -58,-20 + 956: -58,-20 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 2921: -18,-43 + 2919: -18,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: 439: -20,-35 - 2889: -18,-43 + 2887: -18,-43 - node: color: '#D381C996' id: MiniTileWhiteInnerNe decals: - 3385: -7,-48 + 3383: -7,-48 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNe decals: - 3380: 42,-39 + 3378: 42,-39 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 2931: -12,-42 + 2929: -12,-42 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe decals: 434: -21,-36 - 2909: -12,-42 + 2907: -12,-42 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNw decals: - 3379: 42,-39 + 3377: 42,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw @@ -4311,24 +4342,24 @@ entities: color: '#334E6DC8' id: MiniTileWhiteLineE decals: - 987: -52,-10 + 985: -52,-10 - node: color: '#A4610696' id: MiniTileWhiteLineE decals: - 1012: -57,-4 - 1013: -57,-4 + 1010: -57,-4 + 1011: -57,-4 - node: color: '#BC863FBF' id: MiniTileWhiteLineE decals: - 962: -57,-19 + 960: -57,-19 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 2929: -12,-41 - 2930: -12,-40 + 2927: -12,-41 + 2928: -12,-40 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE @@ -4336,17 +4367,17 @@ entities: 425: -21,-34 426: -21,-34 427: -21,-35 - 2898: -12,-40 - 2899: -12,-41 + 2896: -12,-40 + 2897: -12,-41 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 2910: -17,-39 - 2911: -16,-39 - 2912: -15,-39 - 2913: -14,-39 - 2914: -13,-39 + 2908: -17,-39 + 2909: -16,-39 + 2910: -15,-39 + 2911: -14,-39 + 2912: -13,-39 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -4361,21 +4392,21 @@ entities: 443: -18,-34 444: -17,-34 445: -16,-34 - 2893: -17,-39 - 2894: -16,-39 - 2895: -15,-39 - 2896: -14,-39 - 2897: -13,-39 + 2891: -17,-39 + 2892: -16,-39 + 2893: -15,-39 + 2894: -14,-39 + 2895: -13,-39 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 2915: -12,-43 - 2916: -13,-43 - 2917: -14,-43 - 2918: -15,-43 - 2919: -16,-43 - 2920: -17,-43 + 2913: -12,-43 + 2914: -13,-43 + 2915: -14,-43 + 2916: -15,-43 + 2917: -16,-43 + 2918: -17,-43 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS @@ -4390,39 +4421,39 @@ entities: 447: -17,-35 448: -18,-35 449: -19,-35 - 2900: -12,-43 - 2901: -13,-43 - 2902: -14,-43 - 2903: -15,-43 - 2904: -16,-43 - 2905: -17,-43 + 2898: -12,-43 + 2899: -13,-43 + 2900: -14,-43 + 2901: -15,-43 + 2902: -16,-43 + 2903: -17,-43 - node: color: '#A4610696' id: MiniTileWhiteLineW decals: - 1010: -58,-4 - 1011: -58,-4 + 1008: -58,-4 + 1009: -58,-4 - node: color: '#BC863FBF' id: MiniTileWhiteLineW decals: - 961: -58,-19 + 959: -58,-19 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 2926: -18,-40 - 2927: -18,-41 - 2928: -18,-42 + 2924: -18,-40 + 2925: -18,-41 + 2926: -18,-42 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: 417: -14,-35 418: -14,-34 - 2906: -18,-42 - 2907: -18,-41 - 2908: -18,-40 + 2904: -18,-42 + 2905: -18,-41 + 2906: -18,-40 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNe @@ -4486,53 +4517,53 @@ entities: color: '#D4D4D428' id: PavementOverlay decals: - 1366: 44,-21 - 1367: 45,-21 - 1368: 46,-21 - 1369: 46,-22 - 1370: 45,-22 - 1371: 44,-22 - 1372: 48,-21 - 1373: 49,-21 - 1374: 50,-21 - 1375: 50,-22 - 1376: 49,-22 - 1377: 48,-22 - 1378: 52,-21 - 1379: 53,-21 - 1380: 54,-21 - 1381: 54,-22 - 1382: 53,-22 - 1383: 52,-22 - 3459: 42,-12 - 3460: 44,-12 - 3461: 44,-13 - 3462: 43,-13 - 3463: 41,-12 - 3464: 41,-14 - 3465: 42,-13 - 3466: 41,-13 - 3467: 42,-14 - 3468: 43,-14 - 3469: 44,-14 - 3470: 45,-14 - 3471: 45,-13 - 3472: 45,-12 - 3473: 43,-12 + 1364: 44,-21 + 1365: 45,-21 + 1366: 46,-21 + 1367: 46,-22 + 1368: 45,-22 + 1369: 44,-22 + 1370: 48,-21 + 1371: 49,-21 + 1372: 50,-21 + 1373: 50,-22 + 1374: 49,-22 + 1375: 48,-22 + 1376: 52,-21 + 1377: 53,-21 + 1378: 54,-21 + 1379: 54,-22 + 1380: 53,-22 + 1381: 52,-22 + 3457: 42,-12 + 3458: 44,-12 + 3459: 44,-13 + 3460: 43,-13 + 3461: 41,-12 + 3462: 41,-14 + 3463: 42,-13 + 3464: 41,-13 + 3465: 42,-14 + 3466: 43,-14 + 3467: 44,-14 + 3468: 45,-14 + 3469: 45,-13 + 3470: 45,-12 + 3471: 43,-12 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale decals: - 2433: 43,37 - 2436: 44,41 + 2431: 43,37 + 2434: 44,41 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1344: 30,-3 - 1348: 30,-8 - 1351: 30,-5 - 1352: 30,-6 + 1342: 30,-3 + 1346: 30,-8 + 1349: 30,-5 + 1350: 30,-6 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -4586,19 +4617,19 @@ entities: 394: -22,-28 395: -19,-28 396: -16,-28 - 520: -31,-32 - 521: -31,-31 - 524: -31,-33 - 525: -22,-36 - 529: -24,-29 - 538: -14,-29 - 554: -25,-42 - 570: -12,-31 - 737: -2,-37 - 3029: -36,-33 - 3033: -37,-33 - 3037: -35,-33 - 3039: -34,-33 + 518: -31,-32 + 519: -31,-31 + 522: -31,-33 + 523: -22,-36 + 527: -24,-29 + 536: -14,-29 + 552: -25,-42 + 568: -12,-31 + 735: -2,-37 + 3027: -36,-33 + 3031: -37,-33 + 3035: -35,-33 + 3037: -34,-33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -4608,168 +4639,169 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 832: -11,-50 + 830: -11,-50 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1018: -48,-2 - 1020: -48,3 - 1055: -33,-2 - 1120: -1,18 - 1121: -1,19 - 1122: -1,20 - 1123: -1,21 - 1124: -1,22 - 1125: -1,23 - 1126: -1,24 - 1127: -1,25 - 1128: -1,29 - 1129: -1,30 - 1130: -2,31 - 1131: -2,32 - 1132: -2,33 - 1133: -2,34 - 1134: -2,35 - 1135: -2,36 - 1136: -2,37 - 1137: -2,38 - 1152: -13,53 - 1154: -12,53 - 1155: -11,53 - 1156: -10,53 - 1157: -9,53 - 1162: -8,50 - 1163: -7,50 - 1164: -6,50 - 1165: -5,50 - 1166: -5,50 - 1167: -4,50 - 1168: -3,50 - 1169: -3,51 - 1170: -3,52 - 1171: -3,53 - 1172: -2,53 - 1173: -1,53 - 1174: 0,53 - 1176: 1,53 - 1218: -2,26 - 1219: -2,27 - 1220: -2,27 - 1221: -2,28 - 1257: 53,1 - 1258: 53,2 - 1259: 54,3 - 1260: 55,4 - 1261: 56,5 - 1302: 45,-3 - 1303: 45,-2 - 1315: 59,-3 - 1329: 57,5 - 1330: 58,5 - 1331: 59,5 - 1332: 60,5 - 1333: 61,5 - 1339: 62,0 - 1933: 3,-83 - 1934: 3,-82 - 1935: 3,-81 - 1936: 3,-80 - 1937: 3,-79 - 1938: 3,-78 - 1939: 3,-77 - 1940: 3,-76 - 1941: 3,-75 - 1942: 3,-74 - 1943: 3,-73 - 1944: 3,-72 - 1945: 3,-71 - 1946: 3,-70 - 1947: 3,-69 - 1948: 3,-68 - 1949: 3,-67 - 1950: 3,-66 - 1951: 3,-65 - 1952: 3,-64 - 1987: -10,-81 - 1988: -10,-80 - 1989: -10,-79 - 1990: -10,-78 - 1991: -11,-77 - 1992: -11,-76 - 1993: -11,-75 - 1994: -11,-75 - 1995: -10,-75 - 1996: -10,-74 - 1997: -10,-73 - 1998: -10,-72 - 1999: -10,-71 - 2000: -11,-70 - 2001: -11,-69 - 2002: -11,-68 - 2003: -10,-68 - 2004: -10,-67 - 2005: -10,-66 - 2006: -10,-65 - 2007: -10,-64 - 2008: -10,-63 - 2009: -10,-62 - 2010: -10,-61 - 2011: -10,-60 - 2012: -10,-59 - 2013: -10,-58 - 2014: -10,-57 - 2015: -9,-57 - 2016: -1,-57 - 2017: -1,-56 - 2018: -1,-55 - 2019: -1,-54 - 2020: -1,-53 - 2021: -1,-52 - 2022: -1,-51 - 2023: -1,-50 - 2024: -1,-49 - 2025: -1,-46 - 2026: -1,-45 - 2027: -1,-44 - 2028: -1,-43 - 2029: -1,-42 - 2030: -1,-41 - 2350: -1,-47 - 2351: -1,-48 + 1016: -48,-2 + 1018: -48,3 + 1053: -33,-2 + 1118: -1,18 + 1119: -1,19 + 1120: -1,20 + 1121: -1,21 + 1122: -1,22 + 1123: -1,23 + 1124: -1,24 + 1125: -1,25 + 1126: -1,29 + 1127: -1,30 + 1128: -2,31 + 1129: -2,32 + 1130: -2,33 + 1131: -2,34 + 1132: -2,35 + 1133: -2,36 + 1134: -2,37 + 1135: -2,38 + 1150: -13,53 + 1152: -12,53 + 1153: -11,53 + 1154: -10,53 + 1155: -9,53 + 1160: -8,50 + 1161: -7,50 + 1162: -6,50 + 1163: -5,50 + 1164: -5,50 + 1165: -4,50 + 1166: -3,50 + 1167: -3,51 + 1168: -3,52 + 1169: -3,53 + 1170: -2,53 + 1171: -1,53 + 1172: 0,53 + 1174: 1,53 + 1216: -2,26 + 1217: -2,27 + 1218: -2,27 + 1219: -2,28 + 1255: 53,1 + 1256: 53,2 + 1257: 54,3 + 1258: 55,4 + 1259: 56,5 + 1300: 45,-3 + 1301: 45,-2 + 1313: 59,-3 + 1327: 57,5 + 1328: 58,5 + 1329: 59,5 + 1330: 60,5 + 1331: 61,5 + 1337: 62,0 + 1931: 3,-83 + 1932: 3,-82 + 1933: 3,-81 + 1934: 3,-80 + 1935: 3,-79 + 1936: 3,-78 + 1937: 3,-77 + 1938: 3,-76 + 1939: 3,-75 + 1940: 3,-74 + 1941: 3,-73 + 1942: 3,-72 + 1943: 3,-71 + 1944: 3,-70 + 1945: 3,-69 + 1946: 3,-68 + 1947: 3,-67 + 1948: 3,-66 + 1949: 3,-65 + 1950: 3,-64 + 1985: -10,-81 + 1986: -10,-80 + 1987: -10,-79 + 1988: -10,-78 + 1989: -11,-77 + 1990: -11,-76 + 1991: -11,-75 + 1992: -11,-75 + 1993: -10,-75 + 1994: -10,-74 + 1995: -10,-73 + 1996: -10,-72 + 1997: -10,-71 + 1998: -11,-70 + 1999: -11,-69 + 2000: -11,-68 + 2001: -10,-68 + 2002: -10,-67 + 2003: -10,-66 + 2004: -10,-65 + 2005: -10,-64 + 2006: -10,-63 + 2007: -10,-62 + 2008: -10,-61 + 2009: -10,-60 + 2010: -10,-59 + 2011: -10,-58 + 2012: -10,-57 + 2013: -9,-57 + 2014: -1,-57 + 2015: -1,-56 + 2016: -1,-55 + 2017: -1,-54 + 2018: -1,-53 + 2019: -1,-52 + 2020: -1,-51 + 2021: -1,-50 + 2022: -1,-49 + 2023: -1,-46 + 2024: -1,-45 + 2025: -1,-44 + 2026: -1,-43 + 2027: -1,-42 + 2028: -1,-41 + 2348: -1,-47 + 2349: -1,-48 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale decals: - 3139: 0,48 - 3140: 0,47 - 3141: 0,46 - 3142: 0,45 - 3143: 0,44 - 3144: 0,43 - 3145: 0,42 - 3146: 0,41 - 3147: 0,40 - 3148: 0,38 - 3149: 0,39 - 3150: -1,38 + 3137: 0,48 + 3138: 0,47 + 3139: 0,46 + 3140: 0,45 + 3141: 0,44 + 3142: 0,43 + 3143: 0,42 + 3144: 0,41 + 3145: 0,40 + 3146: 0,38 + 3147: 0,39 + 3148: -1,38 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 2734: 57,-13 + 2732: 57,-13 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale180 decals: - 2434: 43,39 - 2437: 43,36 + 2432: 43,39 + 2435: 43,36 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 630: 27,5 - 1346: 33,-9 + 628: 27,5 + 1344: 33,-9 + 3598: 25,12 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4820,305 +4852,306 @@ entities: 381: -16,-28 382: -15,-28 391: -19,-28 - 522: -31,-31 - 523: -31,-33 - 526: -22,-36 - 527: -22,-35 - 528: -24,-28 - 539: -14,-28 - 551: -27,-40 - 569: -12,-31 - 581: -12,-33 - 3030: -36,-32 - 3031: -37,-32 - 3032: -38,-32 - 3038: -35,-32 - 3040: -34,-32 + 520: -31,-31 + 521: -31,-33 + 524: -22,-36 + 525: -22,-35 + 526: -24,-28 + 537: -14,-28 + 549: -27,-40 + 567: -12,-31 + 579: -12,-33 + 3028: -36,-32 + 3029: -37,-32 + 3030: -38,-32 + 3036: -35,-32 + 3038: -34,-32 - node: color: '#639137FF' id: QuarterTileOverlayGreyscale180 decals: - 639: 4,22 + 637: 4,22 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 826: -14,-48 + 824: -14,-48 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1041: -18,-1 - 1042: -19,-1 - 1043: -20,-1 - 1044: -21,-1 - 1045: -22,-1 - 1046: -23,-1 - 1047: -27,-1 - 1048: -28,-1 - 1049: -29,-1 - 1050: -29,-2 - 1051: -31,-2 - 1053: -33,-2 - 1056: -34,-1 - 1057: -35,-1 - 1058: -36,-1 - 1059: -37,-1 - 1060: -38,-1 - 1061: -39,-1 - 1062: -40,-1 - 1063: -41,-1 - 1064: -41,-2 - 1065: -41,-3 - 1066: -41,-4 - 1067: -41,-5 - 1068: -41,-6 - 1069: -41,-7 - 1070: -41,-8 - 1071: -41,-9 - 1072: -41,-10 - 1073: -41,-13 - 1074: -41,-14 - 1075: -41,-15 - 1076: -41,-16 - 1077: -41,-17 - 1078: -41,-18 - 1079: -41,-19 - 1080: -41,-20 - 1081: -41,-21 - 1082: -41,-22 - 1083: -41,-23 - 1084: -41,-24 - 1085: -41,-25 - 1086: -41,-26 - 1087: -41,-27 - 1088: -41,-28 - 1089: -41,-29 - 1090: -41,-30 - 1091: -41,-31 - 1092: -43,-31 - 1159: -9,53 - 1160: -9,52 - 1161: -9,51 - 1177: 1,53 - 1202: 2,31 - 1205: -2,31 - 1268: 52,-1 - 1269: 51,-1 - 1270: 50,-1 - 1271: 49,-1 - 1272: 48,-1 - 1273: 47,-2 - 1274: 47,-3 - 1275: 46,-3 - 1276: 44,-1 - 1277: 42,-1 - 1278: 39,-1 - 1279: 38,-1 - 1280: 37,-1 - 1281: 36,-1 - 1282: 35,-1 - 1283: 34,-1 - 1284: 33,-1 - 1285: 32,-1 - 1286: 31,-1 - 1287: 29,-1 - 1288: 28,-2 - 1289: 27,-2 - 1290: 26,-2 - 1291: 25,-1 - 1292: 24,-1 - 1293: 23,-1 - 1294: 22,-1 - 1295: 21,-1 - 1296: 20,-1 - 1297: 19,-1 - 1298: 18,-1 - 1301: 45,-3 - 1316: 57,2 - 1317: 57,1 - 1318: 57,0 - 1319: 57,-1 - 1334: 61,5 - 1335: 61,4 - 1336: 61,3 - 1337: 61,2 - 1338: 61,1 - 1342: 62,-1 - 1343: 30,-1 - 1884: 1,-19 - 1885: 1,-20 - 1886: 1,-18 - 1887: 1,-21 - 1888: 1,-22 - 1889: 1,-23 - 1890: 2,-26 - 1891: 2,-28 - 1892: 1,-29 - 1893: 1,-30 - 1894: 1,-31 - 1895: 1,-32 - 1931: 4,-83 - 1932: 3,-83 - 1953: 2,-63 - 1954: 1,-63 - 1955: 0,-63 - 1956: -1,-63 - 1957: -2,-63 - 1964: -3,-63 - 2042: 1,-33 - 2043: 1,-34 - 2044: 1,-35 - 2045: 1,-36 - 2046: 1,-37 - 2047: 1,-38 - 2048: 1,-39 - 2049: 1,-40 - 2069: 1,-25 + 1039: -18,-1 + 1040: -19,-1 + 1041: -20,-1 + 1042: -21,-1 + 1043: -22,-1 + 1044: -23,-1 + 1045: -27,-1 + 1046: -28,-1 + 1047: -29,-1 + 1048: -29,-2 + 1049: -31,-2 + 1051: -33,-2 + 1054: -34,-1 + 1055: -35,-1 + 1056: -36,-1 + 1057: -37,-1 + 1058: -38,-1 + 1059: -39,-1 + 1060: -40,-1 + 1061: -41,-1 + 1062: -41,-2 + 1063: -41,-3 + 1064: -41,-4 + 1065: -41,-5 + 1066: -41,-6 + 1067: -41,-7 + 1068: -41,-8 + 1069: -41,-9 + 1070: -41,-10 + 1071: -41,-13 + 1072: -41,-14 + 1073: -41,-15 + 1074: -41,-16 + 1075: -41,-17 + 1076: -41,-18 + 1077: -41,-19 + 1078: -41,-20 + 1079: -41,-21 + 1080: -41,-22 + 1081: -41,-23 + 1082: -41,-24 + 1083: -41,-25 + 1084: -41,-26 + 1085: -41,-27 + 1086: -41,-28 + 1087: -41,-29 + 1088: -41,-30 + 1089: -41,-31 + 1090: -43,-31 + 1157: -9,53 + 1158: -9,52 + 1159: -9,51 + 1175: 1,53 + 1200: 2,31 + 1203: -2,31 + 1266: 52,-1 + 1267: 51,-1 + 1268: 50,-1 + 1269: 49,-1 + 1270: 48,-1 + 1271: 47,-2 + 1272: 47,-3 + 1273: 46,-3 + 1274: 44,-1 + 1275: 42,-1 + 1276: 39,-1 + 1277: 38,-1 + 1278: 37,-1 + 1279: 36,-1 + 1280: 35,-1 + 1281: 34,-1 + 1282: 33,-1 + 1283: 32,-1 + 1284: 31,-1 + 1285: 29,-1 + 1286: 28,-2 + 1287: 27,-2 + 1288: 26,-2 + 1289: 25,-1 + 1290: 24,-1 + 1291: 23,-1 + 1292: 22,-1 + 1293: 21,-1 + 1294: 20,-1 + 1295: 19,-1 + 1296: 18,-1 + 1299: 45,-3 + 1314: 57,2 + 1315: 57,1 + 1316: 57,0 + 1317: 57,-1 + 1332: 61,5 + 1333: 61,4 + 1334: 61,3 + 1335: 61,2 + 1336: 61,1 + 1340: 62,-1 + 1341: 30,-1 + 1882: 1,-19 + 1883: 1,-20 + 1884: 1,-18 + 1885: 1,-21 + 1886: 1,-22 + 1887: 1,-23 + 1888: 2,-26 + 1889: 2,-28 + 1890: 1,-29 + 1891: 1,-30 + 1892: 1,-31 + 1893: 1,-32 + 1929: 4,-83 + 1930: 3,-83 + 1951: 2,-63 + 1952: 1,-63 + 1953: 0,-63 + 1954: -1,-63 + 1955: -2,-63 + 1962: -3,-63 + 2040: 1,-33 + 2041: 1,-34 + 2042: 1,-35 + 2043: 1,-36 + 2044: 1,-37 + 2045: 1,-38 + 2046: 1,-39 + 2047: 1,-40 + 2067: 1,-25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 1345: 30,-9 - 1349: 30,-7 - 1350: 30,-4 - 1353: 30,-6 + 1343: 30,-9 + 1347: 30,-7 + 1348: 30,-4 + 1351: 30,-6 + 3599: 22,12 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: 249: -7,-38 - 553: -25,-40 - 738: -2,-36 - 3035: -37,-32 + 551: -25,-40 + 736: -2,-36 + 3033: -37,-32 - node: color: '#639137FF' id: QuarterTileOverlayGreyscale270 decals: - 638: 9,22 + 636: 9,22 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 827: -11,-48 + 825: -11,-48 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1019: -48,3 - 1052: -31,-2 - 1054: -33,-2 - 1094: -43,-29 - 1095: -43,-28 - 1096: -43,-27 - 1097: -43,-26 - 1098: -43,-25 - 1099: -43,-24 - 1100: -43,-23 - 1101: -43,-22 - 1102: -43,-21 - 1103: -43,-20 - 1104: -43,-19 - 1105: -43,-18 - 1106: -43,-14 - 1107: -43,-13 - 1108: -43,-12 - 1109: -43,-8 - 1110: -43,-7 - 1111: -43,-6 - 1112: -44,-5 - 1113: -45,-5 - 1114: -46,-5 - 1115: -47,-5 - 1116: -48,-5 - 1117: -43,-5 - 1118: -29,-2 - 1138: -4,49 - 1139: -5,49 - 1140: -6,49 - 1141: -7,49 - 1142: -8,49 - 1143: -9,49 - 1144: -10,49 - 1145: -11,49 - 1146: -12,49 - 1147: -13,49 - 1148: -13,50 - 1149: -13,51 - 1150: -13,52 - 1151: -13,53 - 1203: 2,31 - 1204: -2,31 - 1262: 53,-3 - 1263: 54,-4 - 1264: 55,-5 - 1265: 56,-6 - 1266: 53,-1 - 1267: 53,-2 - 1299: 41,-1 - 1300: 45,-3 - 1314: 59,2 - 1320: 59,-1 - 1321: 59,0 - 1322: 59,1 - 1323: 61,-6 - 1340: 62,-1 - 1958: -8,-63 - 1959: -7,-63 - 1960: -6,-63 - 1961: -5,-63 - 1962: -4,-63 - 1963: -3,-63 - 1985: -9,-83 - 1986: -10,-83 - 2031: -1,-32 - 2032: -1,-31 - 2033: -1,-29 - 2034: -1,-30 - 2035: -1,-26 - 2036: -2,-23 - 2037: -2,-22 - 2038: -1,-21 - 2039: -1,-20 - 2040: -1,-19 - 2041: -1,-18 - 2062: 4,-51 - 2063: 3,-51 - 2064: 2,-51 - 2065: -1,-24 - 2066: -1,-25 - 2067: -1,-27 - 2068: -1,-28 + 1017: -48,3 + 1050: -31,-2 + 1052: -33,-2 + 1092: -43,-29 + 1093: -43,-28 + 1094: -43,-27 + 1095: -43,-26 + 1096: -43,-25 + 1097: -43,-24 + 1098: -43,-23 + 1099: -43,-22 + 1100: -43,-21 + 1101: -43,-20 + 1102: -43,-19 + 1103: -43,-18 + 1104: -43,-14 + 1105: -43,-13 + 1106: -43,-12 + 1107: -43,-8 + 1108: -43,-7 + 1109: -43,-6 + 1110: -44,-5 + 1111: -45,-5 + 1112: -46,-5 + 1113: -47,-5 + 1114: -48,-5 + 1115: -43,-5 + 1116: -29,-2 + 1136: -4,49 + 1137: -5,49 + 1138: -6,49 + 1139: -7,49 + 1140: -8,49 + 1141: -9,49 + 1142: -10,49 + 1143: -11,49 + 1144: -12,49 + 1145: -13,49 + 1146: -13,50 + 1147: -13,51 + 1148: -13,52 + 1149: -13,53 + 1201: 2,31 + 1202: -2,31 + 1260: 53,-3 + 1261: 54,-4 + 1262: 55,-5 + 1263: 56,-6 + 1264: 53,-1 + 1265: 53,-2 + 1297: 41,-1 + 1298: 45,-3 + 1312: 59,2 + 1318: 59,-1 + 1319: 59,0 + 1320: 59,1 + 1321: 61,-6 + 1338: 62,-1 + 1956: -8,-63 + 1957: -7,-63 + 1958: -6,-63 + 1959: -5,-63 + 1960: -4,-63 + 1961: -3,-63 + 1983: -9,-83 + 1984: -10,-83 + 2029: -1,-32 + 2030: -1,-31 + 2031: -1,-29 + 2032: -1,-30 + 2033: -1,-26 + 2034: -2,-23 + 2035: -2,-22 + 2036: -1,-21 + 2037: -1,-20 + 2038: -1,-19 + 2039: -1,-18 + 2060: 4,-51 + 2061: 3,-51 + 2062: 2,-51 + 2063: -1,-24 + 2064: -1,-25 + 2065: -1,-27 + 2066: -1,-28 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale270 decals: - 3135: -3,49 - 3136: -2,49 - 3137: -1,49 + 3133: -3,49 + 3134: -2,49 + 3135: -1,49 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 2733: 57,-9 + 2731: 57,-9 - node: color: '#1D1D21FF' id: QuarterTileOverlayGreyscale90 decals: - 2435: 42,40 + 2433: 42,40 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 629: 27,8 - 1347: 33,-3 + 627: 27,8 + 1345: 33,-3 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: 247: -8,-40 - 552: -27,-42 - 3034: -38,-33 + 550: -27,-42 + 3032: -38,-33 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -5128,246 +5161,249 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 833: -14,-50 + 831: -14,-50 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1021: -48,3 - 1022: -47,3 - 1023: -46,3 - 1024: -46,2 - 1025: -46,1 - 1026: -45,1 - 1027: -34,1 - 1028: -33,1 - 1029: -32,1 - 1030: -31,1 - 1031: -30,1 - 1032: -29,1 - 1033: -28,1 - 1034: -27,1 - 1035: -23,1 - 1036: -22,1 - 1037: -21,1 - 1038: -20,1 - 1039: -19,1 - 1040: -18,1 - 1093: -44,-30 - 1119: -29,-2 - 1153: -13,53 - 1158: -9,53 - 1175: 1,53 - 1178: 1,52 - 1179: 1,51 - 1180: 1,50 - 1181: 1,48 - 1182: 1,47 - 1183: 1,46 - 1184: 1,45 - 1185: 1,44 - 1186: 1,43 - 1187: 1,42 - 1188: 1,41 - 1189: 1,40 - 1190: 1,39 - 1191: 1,38 - 1192: 2,38 - 1193: 2,37 - 1194: 2,37 - 1195: 2,36 - 1196: 2,35 - 1197: 2,34 - 1198: 2,33 - 1199: 2,32 - 1200: 2,31 - 1201: 1,30 - 1206: 1,29 - 1207: 1,25 - 1208: 1,24 - 1209: 1,23 - 1210: 1,22 - 1211: 1,21 - 1212: 1,20 - 1213: 1,20 - 1214: 1,19 - 1215: 1,18 - 1216: 2,26 - 1217: 2,27 - 1222: 18,1 - 1223: 19,1 - 1224: 20,1 - 1225: 21,1 - 1226: 22,1 - 1227: 23,1 - 1228: 24,1 - 1229: 25,1 - 1230: 26,1 - 1231: 27,1 - 1232: 28,1 - 1233: 29,1 - 1234: 30,1 - 1235: 31,1 - 1236: 32,1 - 1237: 33,1 - 1238: 34,2 - 1239: 35,2 - 1240: 36,2 - 1241: 37,1 - 1242: 38,1 - 1243: 39,1 - 1244: 40,1 - 1245: 41,1 - 1246: 42,1 - 1247: 43,1 - 1248: 44,1 - 1249: 45,1 - 1250: 46,1 - 1251: 47,1 - 1252: 48,1 - 1253: 49,1 - 1254: 50,1 - 1255: 51,1 - 1256: 52,1 - 1313: 57,-3 - 1324: 61,-6 - 1325: 61,-5 - 1326: 61,-4 - 1327: 61,-3 - 1328: 61,-2 - 1341: 62,0 - 1896: 1,-52 - 1897: 1,-53 - 1898: 1,-54 - 1899: 1,-55 - 1900: 1,-56 - 1901: 1,-57 - 1902: 1,-58 - 1903: 1,-59 - 1904: 1,-60 - 1905: 2,-60 - 1906: 3,-60 - 1907: 4,-60 - 1908: 4,-61 - 1909: 4,-62 - 1910: 4,-63 - 1911: 4,-64 - 1912: 4,-65 - 1913: 4,-66 - 1914: 4,-68 - 1915: 5,-68 - 1916: 5,-69 - 1917: 5,-70 - 1918: 4,-71 - 1919: 4,-67 - 1920: 4,-72 - 1921: 4,-73 - 1922: 4,-74 - 1923: 4,-75 - 1924: 5,-75 - 1925: 5,-76 - 1926: 5,-77 - 1927: 4,-78 - 1928: 4,-79 - 1929: 4,-80 - 1930: 4,-81 - 1965: -9,-64 - 1966: -9,-65 - 1967: -9,-66 - 1968: -9,-67 - 1969: -9,-68 - 1970: -9,-69 - 1971: -9,-70 - 1972: -9,-71 - 1973: -9,-72 - 1974: -9,-73 - 1975: -9,-74 - 1976: -9,-75 - 1977: -9,-76 - 1978: -9,-77 - 1979: -9,-78 - 1980: -9,-79 - 1981: -9,-80 - 1982: -9,-81 - 1983: -9,-82 - 1984: -9,-83 - 2050: 1,-41 - 2051: 2,-42 - 2052: 3,-42 - 2053: 3,-43 - 2054: 3,-44 - 2055: 3,-45 - 2056: 3,-46 - 2057: 3,-47 - 2058: 3,-48 - 2059: 4,-49 - 2060: 4,-50 - 2061: 4,-51 + 1019: -48,3 + 1020: -47,3 + 1021: -46,3 + 1022: -46,2 + 1023: -46,1 + 1024: -45,1 + 1025: -34,1 + 1026: -33,1 + 1027: -32,1 + 1028: -31,1 + 1029: -30,1 + 1030: -29,1 + 1031: -28,1 + 1032: -27,1 + 1033: -23,1 + 1034: -22,1 + 1035: -21,1 + 1036: -20,1 + 1037: -19,1 + 1038: -18,1 + 1091: -44,-30 + 1117: -29,-2 + 1151: -13,53 + 1156: -9,53 + 1173: 1,53 + 1176: 1,52 + 1177: 1,51 + 1178: 1,50 + 1179: 1,48 + 1180: 1,47 + 1181: 1,46 + 1182: 1,45 + 1183: 1,44 + 1184: 1,43 + 1185: 1,42 + 1186: 1,41 + 1187: 1,40 + 1188: 1,39 + 1189: 1,38 + 1190: 2,38 + 1191: 2,37 + 1192: 2,37 + 1193: 2,36 + 1194: 2,35 + 1195: 2,34 + 1196: 2,33 + 1197: 2,32 + 1198: 2,31 + 1199: 1,30 + 1204: 1,29 + 1205: 1,25 + 1206: 1,24 + 1207: 1,23 + 1208: 1,22 + 1209: 1,21 + 1210: 1,20 + 1211: 1,20 + 1212: 1,19 + 1213: 1,18 + 1214: 2,26 + 1215: 2,27 + 1220: 18,1 + 1221: 19,1 + 1222: 20,1 + 1223: 21,1 + 1224: 22,1 + 1225: 23,1 + 1226: 24,1 + 1227: 25,1 + 1228: 26,1 + 1229: 27,1 + 1230: 28,1 + 1231: 29,1 + 1232: 30,1 + 1233: 31,1 + 1234: 32,1 + 1235: 33,1 + 1236: 34,2 + 1237: 35,2 + 1238: 36,2 + 1239: 37,1 + 1240: 38,1 + 1241: 39,1 + 1242: 40,1 + 1243: 41,1 + 1244: 42,1 + 1245: 43,1 + 1246: 44,1 + 1247: 45,1 + 1248: 46,1 + 1249: 47,1 + 1250: 48,1 + 1251: 49,1 + 1252: 50,1 + 1253: 51,1 + 1254: 52,1 + 1311: 57,-3 + 1322: 61,-6 + 1323: 61,-5 + 1324: 61,-4 + 1325: 61,-3 + 1326: 61,-2 + 1339: 62,0 + 1894: 1,-52 + 1895: 1,-53 + 1896: 1,-54 + 1897: 1,-55 + 1898: 1,-56 + 1899: 1,-57 + 1900: 1,-58 + 1901: 1,-59 + 1902: 1,-60 + 1903: 2,-60 + 1904: 3,-60 + 1905: 4,-60 + 1906: 4,-61 + 1907: 4,-62 + 1908: 4,-63 + 1909: 4,-64 + 1910: 4,-65 + 1911: 4,-66 + 1912: 4,-68 + 1913: 5,-68 + 1914: 5,-69 + 1915: 5,-70 + 1916: 4,-71 + 1917: 4,-67 + 1918: 4,-72 + 1919: 4,-73 + 1920: 4,-74 + 1921: 4,-75 + 1922: 5,-75 + 1923: 5,-76 + 1924: 5,-77 + 1925: 4,-78 + 1926: 4,-79 + 1927: 4,-80 + 1928: 4,-81 + 1963: -9,-64 + 1964: -9,-65 + 1965: -9,-66 + 1966: -9,-67 + 1967: -9,-68 + 1968: -9,-69 + 1969: -9,-70 + 1970: -9,-71 + 1971: -9,-72 + 1972: -9,-73 + 1973: -9,-74 + 1974: -9,-75 + 1975: -9,-76 + 1976: -9,-77 + 1977: -9,-78 + 1978: -9,-79 + 1979: -9,-80 + 1980: -9,-81 + 1981: -9,-82 + 1982: -9,-83 + 2048: 1,-41 + 2049: 2,-42 + 2050: 3,-42 + 2051: 3,-43 + 2052: 3,-44 + 2053: 3,-45 + 2054: 3,-46 + 2055: 3,-47 + 2056: 3,-48 + 2057: 4,-49 + 2058: 4,-50 + 2059: 4,-51 - node: color: '#D4D4D433' id: QuarterTileOverlayGreyscale90 decals: - 3138: 1,49 - 3209: -35,1 + 3136: 1,49 + 3207: -35,1 - node: color: '#FFFFFFFF' id: Rock06 decals: - 2684: -6.549043,-18.995234 + 2682: -6.549043,-18.995234 - node: color: '#FFFFFFFF' id: Rock07 decals: - 2685: -10.21571,-19.245234 - 2686: -19.922543,-12.716649 - 2687: -18.60001,-10.259648 - 2688: -18.846893,-8.106161 + 2683: -10.21571,-19.245234 + 2684: -19.922543,-12.716649 + 2685: -18.60001,-10.259648 + 2686: -18.846893,-8.106161 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 956: 31,0 + 954: 31,0 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 955: 32,0 + 953: 32,0 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 954: 33,0 + 952: 33,0 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 953: 34,0 + 951: 34,0 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 952: 35,0 + 950: 35,0 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 951: 36,0 + 949: 36,0 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 950: 37,0 + 948: 37,0 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClearGreyscale decals: - 3369: -56,-4 + 3367: -56,-4 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale decals: - 582: 19,9 + 580: 19,9 + 3574: 21,18 + 3600: 28,15 + 3601: 29,16 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -5377,7 +5413,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale decals: - 661: 3,24 + 659: 3,24 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale @@ -5392,25 +5428,29 @@ entities: color: '#C6FF91FF' id: ThreeQuarterTileOverlayGreyscale decals: - 3025: -39,-31 + 3023: -39,-31 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 624: 27,4 - 625: 28,5 - 626: 28,5 + 622: 27,4 + 623: 28,5 + 624: 28,5 + 3578: 25,11 + 3579: 26,12 + 3604: 33,12 + 3605: 32,11 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: 489: -14,-36 - 540: -12,-28 + 538: -12,-28 - node: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 664: 10,19 + 662: 10,19 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 @@ -5426,7 +5466,11 @@ entities: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 583: 19,4 + 581: 19,4 + 3576: 21,12 + 3577: 22,11 + 3606: 29,11 + 3607: 28,12 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -5436,7 +5480,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 663: 3,19 + 661: 3,19 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -5452,13 +5496,16 @@ entities: color: '#C6FF91FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3016: -39,-35 + 3014: -39,-35 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 627: 28,8 - 628: 27,9 + 625: 28,8 + 626: 27,9 + 3575: 26,18 + 3602: 32,16 + 3603: 33,15 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 @@ -5468,7 +5515,7 @@ entities: color: '#639137FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 662: 10,24 + 660: 10,24 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 @@ -5478,200 +5525,201 @@ entities: 174: -29,-11 175: -32,-11 483: -29,-23 - 3036: -35,-31 + 3034: -35,-31 - node: color: '#FFFFFFFF' id: WarnBox decals: - 3559: -24,36 - 3560: -25,37 - 3561: -26,37 - 3562: -27,37 - 3563: -28,37 - 3564: -29,37 - 3565: -30,37 - 3566: -31,36 - 3567: -25,35 - 3568: -26,35 - 3569: -28,35 - 3570: -29,35 - 3571: -30,35 + 3557: -24,36 + 3558: -25,37 + 3559: -26,37 + 3560: -27,37 + 3561: -28,37 + 3562: -29,37 + 3563: -30,37 + 3564: -31,36 + 3565: -25,35 + 3566: -26,35 + 3567: -28,35 + 3568: -29,35 + 3569: -30,35 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 3492: -6,-26 + 3490: -6,-26 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: - 3508: -6,-29 + 3506: -6,-29 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 3342: -58,-13 - 3558: -22,42 - 3574: -31,35 + 3340: -58,-13 + 3556: -22,42 + 3572: -31,35 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 981: -56,-7 - 985: -56,-3 - 1001: -54,-13 - 3557: -18,42 - 3575: -24,35 + 979: -56,-7 + 983: -56,-3 + 999: -54,-13 + 3555: -18,42 + 3573: -24,35 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 3341: -58,-8 - 3555: -22,44 - 3573: -31,37 + 3339: -58,-8 + 3553: -22,44 + 3571: -31,37 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 979: -56,-1 - 980: -56,-1 - 986: -56,-5 - 1000: -54,-8 - 3556: -18,44 - 3572: -24,37 + 977: -56,-1 + 978: -56,-1 + 984: -56,-5 + 998: -54,-8 + 3554: -18,44 + 3570: -24,37 - node: color: '#FFFFFFFF' id: WarnFull decals: - 2481: 12,53 - 2482: 13,53 - 2483: 14,53 + 2479: 12,53 + 2480: 13,53 + 2481: 14,53 - node: color: '#BC863FFF' id: WarnFullGreyscale decals: - 3365: -51,-1 - 3366: -51,0 - 3367: -52,-1 - 3368: -52,0 + 3363: -51,-1 + 3364: -51,0 + 3365: -52,-1 + 3366: -52,0 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 2463: 9,49 - 2465: 19,49 - 2466: 19,48 - 2467: 19,47 - 2468: 19,46 - 3336: -58,-12 - 3337: -58,-11 - 3338: -58,-10 - 3339: -58,-9 - 3551: -22,43 + 2461: 9,49 + 2463: 19,49 + 2464: 19,48 + 2465: 19,47 + 2466: 19,46 + 3334: -58,-12 + 3335: -58,-11 + 3336: -58,-10 + 3337: -58,-9 + 3549: -22,43 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 3493: -5,-26 - 3494: -4,-26 - 3495: -3,-26 - 3505: -9,-29 - 3506: -8,-29 - 3507: -7,-29 + 3491: -5,-26 + 3492: -4,-26 + 3493: -3,-26 + 3503: -9,-29 + 3504: -8,-29 + 3505: -7,-29 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 3498: -9,-30 - 3499: -8,-30 - 3500: -7,-30 - 3501: -6,-30 - 3502: -5,-30 - 3503: -4,-30 - 3504: -3,-30 + 3496: -9,-30 + 3497: -8,-30 + 3498: -7,-30 + 3499: -6,-30 + 3500: -5,-30 + 3501: -4,-30 + 3502: -3,-30 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 982: -56,-5 - 983: -56,-4 - 984: -56,-3 - 3496: -6,-27 - 3497: -6,-28 + 980: -56,-5 + 981: -56,-4 + 982: -56,-3 + 3494: -6,-27 + 3495: -6,-28 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 976: -57,-1 - 990: -57,-8 - 991: -56,-8 - 992: -56,-8 - 993: -55,-8 - 3343: -58,-1 - 3548: -19,44 - 3549: -20,44 - 3550: -21,44 + 974: -57,-1 + 988: -57,-8 + 989: -56,-8 + 990: -56,-8 + 991: -55,-8 + 3341: -58,-1 + 3546: -19,44 + 3547: -20,44 + 3548: -21,44 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 977: -56,-6 - 978: -56,-2 - 994: -54,-10 - 995: -54,-11 - 996: -54,-12 - 2464: 17,49 - 3340: -54,-9 - 3542: 21,46 - 3543: 21,47 - 3544: 21,48 - 3545: 21,49 - 3547: -18,43 + 975: -56,-6 + 976: -56,-2 + 992: -54,-10 + 993: -54,-11 + 994: -54,-12 + 2462: 17,49 + 3338: -54,-9 + 3540: 21,46 + 3541: 21,47 + 3542: 21,48 + 3543: 21,49 + 3545: -18,43 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 975: -57,-7 - 997: -55,-13 - 998: -56,-13 - 999: -57,-13 - 2460: 12,46 - 2461: 13,46 - 2462: 14,46 - 2473: 7,51 - 2474: 8,51 - 2475: 9,51 - 2476: 17,51 - 2477: 18,51 - 2478: 19,51 - 2479: 15,53 - 2480: 11,53 - 3344: -58,-7 - 3552: -21,42 - 3553: -20,42 - 3554: -19,42 + 973: -57,-7 + 995: -55,-13 + 996: -56,-13 + 997: -57,-13 + 2458: 12,46 + 2459: 13,46 + 2460: 14,46 + 2471: 7,51 + 2472: 8,51 + 2473: 9,51 + 2474: 17,51 + 2475: 18,51 + 2476: 19,51 + 2477: 15,53 + 2478: 11,53 + 3342: -58,-7 + 3550: -21,42 + 3551: -20,42 + 3552: -19,42 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: 266: -30,-39 286: -29,-35 - 685: 37,-7 - 691: 44,-5 - 739: -4,38 - 740: -12,33 - 781: -16,32 - 797: -19,-3 - 851: -49,7 - 854: -53,12 - 855: -51,10 - 897: 36,18 - 904: 40,16 - 924: 44,-9 - 931: 17,-30 - 932: 20,-30 - 2831: 41,23 - 3066: 19,37 + 683: 37,-7 + 689: 44,-5 + 737: -4,38 + 738: -12,33 + 779: -16,32 + 795: -19,-3 + 849: -49,7 + 852: -53,12 + 853: -51,10 + 895: 36,18 + 902: 40,16 + 922: 44,-9 + 929: 17,-30 + 930: 20,-30 + 2829: 41,23 + 3064: 19,37 + 3614: 10,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -5679,108 +5727,111 @@ entities: 269: -31,-39 270: -31,-39 287: -33,-35 - 678: 35,-7 - 679: 35,-3 - 692: 39,-5 - 741: -14,38 - 742: -14,33 - 782: -19,32 - 798: -22,-3 - 850: -50,7 - 856: -55,12 - 857: -57,10 - 898: 35,18 - 905: 38,16 - 906: 35,15 - 921: 42,-9 - 933: 13,-30 - 934: 19,-30 - 2832: 39,23 - 3067: 12,37 + 676: 35,-7 + 677: 35,-3 + 690: 39,-5 + 739: -14,38 + 740: -14,33 + 780: -19,32 + 796: -22,-3 + 848: -50,7 + 854: -55,12 + 855: -57,10 + 896: 35,18 + 903: 38,16 + 904: 35,15 + 919: 42,-9 + 931: 13,-30 + 932: 19,-30 + 2830: 39,23 + 3065: 12,37 + 3615: 7,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 268: -30,-41 297: -29,-37 - 689: 37,-5 - 704: 44,-7 - 743: -12,31 - 744: -4,31 - 783: -16,27 - 799: -19,-5 - 848: -49,5 - 859: -51,9 - 889: 41,18 - 900: 36,17 - 901: 40,11 - 922: 44,-10 - 935: 17,-32 - 936: 20,-32 - 3077: 19,36 + 687: 37,-5 + 702: 44,-7 + 741: -12,31 + 742: -4,31 + 781: -16,27 + 797: -19,-5 + 846: -49,5 + 857: -51,9 + 887: 41,18 + 898: 36,17 + 899: 40,11 + 920: 44,-10 + 933: 17,-32 + 934: 20,-32 + 3075: 19,36 + 3617: 10,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 267: -31,-41 295: -33,-37 - 676: 35,-5 - 677: 35,-9 - 693: 39,-7 - 745: -14,31 - 746: -14,35 - 747: -10,31 - 784: -19,27 - 800: -22,-5 - 849: -50,5 - 858: -57,9 - 888: 39,18 - 899: 35,17 - 902: 38,11 - 903: 35,12 - 923: 42,-10 - 937: 13,-32 - 938: 19,-32 + 674: 35,-5 + 675: 35,-9 + 691: 39,-7 + 743: -14,31 + 744: -14,35 + 745: -10,31 + 782: -19,27 + 798: -22,-5 + 847: -50,5 + 856: -57,9 + 886: 39,18 + 897: 35,17 + 900: 38,11 + 901: 35,12 + 921: 42,-10 + 935: 13,-32 + 936: 19,-32 + 3616: 7,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 671: 38,-3 - 672: 38,-9 + 669: 38,-3 + 670: 38,-9 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 919: 46,-5 + 917: 46,-5 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 920: 46,-6 + 918: 46,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 687: 37,-9 - 870: -53,10 + 685: 37,-9 + 868: -53,10 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 871: -55,10 - 918: 38,15 + 869: -55,10 + 916: 38,15 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 690: 37,-3 - 3079: 17,36 + 688: 37,-3 + 3077: 17,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 777: -10,35 - 917: 38,12 + 775: -10,35 + 915: 38,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5797,34 +5848,35 @@ entities: 279: -32.293655,-40.00201 280: -32.29232,-41.003887 298: -29,-36 - 686: 37,-8 - 688: 37,-4 - 705: 44,-6 - 754: -4,32 - 755: -4,33 - 756: -4,34 - 757: -4,35 - 758: -4,36 - 759: -4,37 - 760: -12,32 - 785: -16,31 - 786: -16,30 - 787: -16,29 - 788: -16,28 - 801: -19,-4 - 853: -49,6 - 869: -53,11 - 890: 41,19 - 891: 41,20 - 892: 41,21 - 907: 40,14 - 908: 40,15 - 909: 40,12 - 910: 40,13 - 939: 20,-31 - 940: 17,-31 - 2833: 41,22 - 3068: 17,35 + 684: 37,-8 + 686: 37,-4 + 703: 44,-6 + 752: -4,32 + 753: -4,33 + 754: -4,34 + 755: -4,35 + 756: -4,36 + 757: -4,37 + 758: -12,32 + 783: -16,31 + 784: -16,30 + 785: -16,29 + 786: -16,28 + 799: -19,-4 + 851: -49,6 + 867: -53,11 + 888: 41,19 + 889: 41,20 + 890: 41,21 + 905: 40,14 + 906: 40,15 + 907: 40,12 + 908: 40,13 + 937: 20,-31 + 938: 17,-31 + 2831: 41,22 + 3066: 17,35 + 3623: 10,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5834,46 +5886,48 @@ entities: 288: -32,-35 289: -31,-35 290: -30,-35 - 680: 36,-3 - 681: 37,-3 - 684: 36,-7 - 699: 40,-5 - 700: 41,-5 - 701: 41,-5 - 702: 42,-5 - 703: 43,-5 - 761: -5,38 - 762: -6,38 - 763: -7,38 - 764: -8,38 - 765: -9,38 - 766: -10,38 - 767: -11,38 - 768: -12,38 - 769: -13,38 - 770: -13,33 - 791: -17,32 - 792: -18,32 - 805: -21,-3 - 806: -20,-3 - 807: -19,-3 - 865: -54,12 - 866: -56,10 - 867: -52,10 - 913: 36,15 - 914: 37,15 - 926: 43,-9 - 946: 14,-30 - 947: 15,-30 - 948: 15,-30 - 949: 16,-30 - 2835: 40,23 - 3071: 13,37 - 3072: 14,37 - 3073: 15,37 - 3074: 16,37 - 3075: 17,37 - 3076: 18,37 + 678: 36,-3 + 679: 37,-3 + 682: 36,-7 + 697: 40,-5 + 698: 41,-5 + 699: 41,-5 + 700: 42,-5 + 701: 43,-5 + 759: -5,38 + 760: -6,38 + 761: -7,38 + 762: -8,38 + 763: -9,38 + 764: -10,38 + 765: -11,38 + 766: -12,38 + 767: -13,38 + 768: -13,33 + 789: -17,32 + 790: -18,32 + 803: -21,-3 + 804: -20,-3 + 805: -19,-3 + 863: -54,12 + 864: -56,10 + 865: -52,10 + 911: 36,15 + 912: 37,15 + 924: 43,-9 + 944: 14,-30 + 945: 15,-30 + 946: 15,-30 + 947: 16,-30 + 2833: 40,23 + 3069: 13,37 + 3070: 14,37 + 3071: 15,37 + 3072: 16,37 + 3073: 17,37 + 3074: 18,37 + 3621: 8,-19 + 3622: 9,-19 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5885,71 +5939,74 @@ entities: 292: -31,-37 293: -31,-37 294: -30,-37 - 673: 37,-9 - 674: 36,-9 - 675: 36,-5 - 695: 40,-7 - 696: 41,-7 - 697: 42,-7 - 698: 43,-7 - 748: -13,31 - 749: -9,31 - 750: -8,31 - 751: -7,31 - 752: -6,31 - 753: -5,31 - 778: -11,35 - 779: -12,35 - 780: -13,35 - 789: -17,27 - 790: -18,27 - 803: -21,-5 - 804: -20,-5 - 860: -56,9 - 861: -55,9 - 862: -54,9 - 863: -53,9 - 864: -52,9 - 893: 40,18 - 915: 36,12 - 916: 37,12 - 925: 43,-10 - 943: 14,-32 - 944: 15,-32 - 945: 16,-32 - 3078: 18,36 + 671: 37,-9 + 672: 36,-9 + 673: 36,-5 + 693: 40,-7 + 694: 41,-7 + 695: 42,-7 + 696: 43,-7 + 746: -13,31 + 747: -9,31 + 748: -8,31 + 749: -7,31 + 750: -6,31 + 751: -5,31 + 776: -11,35 + 777: -12,35 + 778: -13,35 + 787: -17,27 + 788: -18,27 + 801: -21,-5 + 802: -20,-5 + 858: -56,9 + 859: -55,9 + 860: -54,9 + 861: -53,9 + 862: -52,9 + 891: 40,18 + 913: 36,12 + 914: 37,12 + 923: 43,-10 + 941: 14,-32 + 942: 15,-32 + 943: 16,-32 + 3076: 18,36 + 3618: 9,-21 + 3619: 8,-21 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: 264: -31,-40 296: -33,-36 - 682: 35,-4 - 683: 35,-8 - 694: 39,-6 - 771: -14,37 - 772: -14,36 - 773: -14,32 - 774: -10,32 - 775: -10,33 - 776: -10,34 - 793: -19,31 - 794: -19,30 - 795: -19,29 - 796: -19,28 - 802: -22,-4 - 852: -50,6 - 868: -55,11 - 894: 39,19 - 895: 39,20 - 896: 39,21 - 911: 35,13 - 912: 35,14 - 941: 19,-31 - 942: 13,-31 - 2834: 39,22 - 3069: 12,35 - 3070: 12,36 + 680: 35,-4 + 681: 35,-8 + 692: 39,-6 + 769: -14,37 + 770: -14,36 + 771: -14,32 + 772: -10,32 + 773: -10,33 + 774: -10,34 + 791: -19,31 + 792: -19,30 + 793: -19,29 + 794: -19,28 + 800: -22,-4 + 850: -50,6 + 866: -55,11 + 892: 39,19 + 893: 39,20 + 894: 39,21 + 909: 35,13 + 910: 35,14 + 939: 19,-31 + 940: 13,-31 + 2832: 39,22 + 3067: 12,35 + 3068: 12,36 + 3620: 7,-20 - type: GridAtmosphere version: 2 data: @@ -6313,7 +6370,8 @@ entities: 1,6: 0: 65295 1,7: - 0: 65295 + 0: 62223 + 2: 3072 1,8: 0: 65535 2,5: @@ -6646,7 +6704,7 @@ entities: 0: 16383 1,-13: 0: 57104 - 2: 8 + 3: 8 2,-12: 0: 65308 2,-11: @@ -6655,7 +6713,7 @@ entities: 0: 28671 2,-13: 0: 7936 - 2: 8 + 3: 8 3,-12: 0: 62349 3,-11: @@ -6664,7 +6722,7 @@ entities: 0: 61182 3,-13: 0: 55040 - 2: 4 + 3: 4 3,-9: 0: 3822 4,-12: @@ -6792,7 +6850,7 @@ entities: 10,-10: 0: 62207 10,-13: - 2: 9902 + 3: 9902 11,-12: 0: 4913 11,-11: @@ -6801,7 +6859,7 @@ entities: 0: 65262 11,-13: 0: 4352 - 2: 127 + 3: 127 12,-10: 0: 65488 12,-9: @@ -6907,14 +6965,14 @@ entities: 12,6: 0: 64271 12,7: - 2: 16368 + 3: 16368 -12,-12: 0: 13119 -12,-13: 0: 65427 -13,-12: 0: 56524 - 3: 17 + 4: 17 -12,-11: 0: 60931 -13,-11: @@ -7012,70 +7070,70 @@ entities: -13,1: 0: 57296 -12,1: - 2: 36352 + 3: 36352 -12,3: - 2: 34956 + 3: 34956 -11,1: 0: 127 - 2: 30464 + 3: 30464 -12,2: - 2: 34952 + 3: 34952 -11,2: - 2: 255 - 4: 57344 + 3: 255 + 5: 57344 -12,4: - 2: 53192 + 3: 53192 -11,3: - 2: 61440 - 5: 224 + 3: 61440 + 6: 224 -10,1: 0: 40847 -10,2: - 2: 8755 + 3: 8755 0: 34952 -10,3: - 2: 12834 + 3: 12834 0: 34952 -10,4: - 2: 8738 + 3: 8738 0: 34952 -13,4: - 2: 32630 + 3: 32630 -12,7: - 2: 52476 + 3: 52476 -13,7: - 2: 26615 + 3: 26615 -12,6: - 2: 51336 + 3: 51336 -12,5: - 2: 34952 + 3: 34952 -11,6: - 2: 61440 - 3: 224 + 3: 61440 + 4: 224 -12,8: - 2: 34952 + 3: 34952 -11,4: - 6: 224 - 3: 57344 + 7: 224 + 4: 57344 -11,5: - 3: 57568 + 4: 57568 -11,7: - 3: 57568 + 4: 57568 -10,6: - 2: 12834 + 3: 12834 0: 34952 -10,5: - 2: 8738 + 3: 8738 0: 34952 -10,7: - 2: 8738 + 3: 8738 0: 34952 -10,8: - 2: 62258 + 3: 62258 0: 136 -9,8: 0: 52479 - 2: 4096 + 3: 4096 0,-16: 0: 65528 -1,-16: @@ -7096,23 +7154,23 @@ entities: 0: 257 1,-14: 0: 4369 - 2: 34956 + 3: 34956 1,-17: 0: 4371 2,-14: - 2: 63631 + 3: 63631 2,-15: - 2: 39315 + 3: 39315 2,-16: - 2: 27776 + 3: 27776 3,-16: - 2: 57375 + 3: 57375 3,-15: - 2: 12443 + 3: 12443 3,-14: - 2: 61488 + 3: 61488 4,-16: - 2: 4883 + 3: 4883 -4,-15: 0: 65088 -4,-14: @@ -7136,7 +7194,7 @@ entities: -2,-14: 0: 65520 -9,-15: - 3: 2048 + 4: 2048 -8,-14: 0: 4080 -9,-14: @@ -7146,69 +7204,69 @@ entities: -9,-13: 0: 4095 -7,-15: - 3: 61184 + 4: 61184 -7,-14: 0: 32752 -6,-15: - 3: 256 + 4: 256 0: 32768 -6,-14: 0: 65528 -12,-16: - 2: 4880 + 3: 4880 -13,-16: - 2: 65520 + 3: 65520 -12,-15: - 3: 53128 + 4: 53128 -12,-14: 0: 30483 - 3: 4 + 4: 4 -13,-14: 0: 52232 - 2: 23 + 3: 23 -11,-16: - 3: 4352 + 4: 4352 -11,-15: - 3: 65425 + 4: 65425 -11,-14: 0: 65520 -11,-13: 0: 831 -10,-15: - 3: 14327 + 4: 14327 -10,-14: 0: 16304 -10,-13: 0: 2187 -10,-16: - 3: 8704 + 4: 8704 -10,-17: - 3: 49152 + 4: 49152 -16,-7: - 2: 52416 + 3: 52416 -16,-6: - 2: 3276 + 3: 3276 0: 32768 -16,-5: 0: 3080 -16,-4: - 2: 140 + 3: 140 -15,-7: - 2: 4368 + 3: 4368 0: 3276 -15,-6: - 2: 273 + 3: 273 0: 52428 -15,-5: 0: 53199 -15,-4: - 2: 4369 + 3: 4369 0: 52416 -15,-8: 0: 52416 -15,-9: 0: 34952 - 3: 256 + 4: 256 -14,-8: 0: 49080 -14,-7: @@ -7228,31 +7286,31 @@ entities: -13,-7: 0: 26214 -16,-12: - 3: 32 + 4: 32 -16,-11: - 3: 32768 + 4: 32768 -16,-10: - 3: 8 + 4: 8 -15,-11: - 3: 13036 + 4: 13036 0: 32768 -15,-10: - 3: 307 + 4: 307 0: 34952 -15,-12: - 3: 51336 + 4: 51336 -14,-12: - 3: 4607 + 4: 4607 0: 49152 -14,-11: - 3: 17 + 4: 17 0: 61644 -14,-10: 0: 65535 -14,-13: - 3: 59392 + 4: 59392 -13,-13: - 3: 4352 + 4: 4352 0: 1604 8,9: 0: 65535 @@ -7281,28 +7339,28 @@ entities: 10,10: 0: 3549 10,11: - 3: 275 + 4: 275 10,12: 0: 305 - 2: 3276 + 3: 3276 11,9: 0: 4469 - 2: 49152 + 3: 49152 11,10: 0: 273 - 2: 52428 + 3: 52428 11,11: - 2: 61166 + 3: 61166 11,12: - 2: 53247 + 3: 53247 12,8: - 2: 13107 + 3: 13107 12,9: - 2: 13107 + 3: 13107 12,10: - 2: 63923 + 3: 63923 12,11: - 2: 61443 + 3: 61443 4,9: 0: 57599 3,9: @@ -7325,7 +7383,7 @@ entities: 0: 60928 5,12: 0: 238 - 2: 49152 + 3: 49152 6,9: 0: 65535 6,10: @@ -7394,26 +7452,26 @@ entities: 0: 16183 15,1: 0: 13119 - 2: 18432 + 3: 18432 15,2: 0: 13107 - 2: 32836 + 3: 32836 15,3: 0: 13107 - 2: 2184 + 3: 2184 15,-1: 0: 30527 15,4: 0: 13107 - 2: 32768 + 3: 32768 16,0: 0: 1793 - 2: 4 + 3: 4 16,1: 0: 7 - 2: 1024 + 3: 1024 16,3: - 2: 4368 + 3: 4368 13,-4: 0: 26215 13,-3: @@ -7432,22 +7490,22 @@ entities: 0: 61098 15,-4: 0: 4113 - 2: 34952 + 3: 34952 15,-3: 0: 4369 - 2: 34952 + 3: 34952 15,-2: 0: 16177 - 2: 8 + 3: 8 15,-5: 0: 4353 - 2: 34952 + 3: 34952 16,-2: 0: 1792 - 2: 4 + 3: 4 16,-1: 0: 4359 - 2: 17408 + 3: 17408 13,-8: 0: 15 13,-6: @@ -7461,56 +7519,56 @@ entities: 14,-9: 0: 36623 15,-8: - 3: 16 + 4: 16 15,-6: - 3: 16 + 4: 16 0: 4096 - 2: 32768 + 3: 32768 15,-9: 0: 4353 16,-5: - 2: 304 + 3: 304 12,-11: - 3: 49156 + 4: 49156 12,-12: - 2: 12 + 3: 12 12,-13: - 2: 52303 + 3: 52303 13,-12: - 2: 15 - 3: 16384 + 3: 15 + 4: 16384 13,-11: - 3: 65228 + 4: 65228 13,-10: 0: 65520 13,-13: - 2: 65295 + 3: 65295 14,-12: - 2: 15 + 3: 15 14,-11: - 3: 65521 + 4: 65521 14,-10: 0: 65392 14,-13: - 2: 65295 + 3: 65295 15,-12: - 2: 1 + 3: 1 15,-11: - 3: 4112 + 4: 4112 15,-10: - 3: 52451 + 4: 52451 0: 4096 15,-13: - 2: 4511 + 3: 4511 16,-10: - 3: 19 + 4: 19 -4,9: 0: 7421 -5,9: 0: 62719 -4,10: 0: 65533 - 7: 2 + 8: 2 -5,10: 0: 65535 -4,11: @@ -7519,13 +7577,13 @@ entities: 0: 32767 -4,12: 0: 34945 - 3: 13072 + 4: 13072 -3,9: 0: 4095 -3,10: 0: 65535 -3,11: - 3: 61408 + 4: 61408 -2,9: 0: 4095 -2,10: @@ -7538,23 +7596,23 @@ entities: 0: 61678 -9,9: 0: 52428 - 2: 4369 + 3: 4369 -8,10: 0: 65535 -9,10: 0: 52428 -8,11: - 2: 43808 + 3: 43808 -9,11: - 2: 20224 + 3: 20224 -8,12: - 2: 43690 + 3: 43690 -7,9: 0: 45311 -7,10: 0: 49087 -7,11: - 2: 768 + 3: 768 0: 34952 -6,9: 0: 61661 @@ -7562,44 +7620,44 @@ entities: 0: 65535 -6,11: 0: 64255 - 8: 256 - 7: 1024 + 9: 256 + 8: 1024 -7,12: 0: 34952 - 2: 12322 + 3: 12322 -6,12: 0: 65535 -5,12: 0: 13111 - 3: 34816 + 4: 34816 -12,9: - 2: 65433 + 3: 65433 -13,9: - 2: 8 + 3: 8 -12,10: - 2: 52428 + 3: 52428 -11,8: - 2: 65520 + 3: 65520 -11,9: - 2: 4607 - 3: 49152 + 3: 4607 + 4: 49152 -11,10: - 2: 33041 - 3: 204 + 3: 33041 + 4: 204 -12,11: - 2: 136 + 3: 136 -11,11: - 2: 248 + 3: 248 -10,9: - 2: 52479 - 3: 4096 + 3: 52479 + 4: 4096 -10,10: - 3: 17 - 2: 34952 + 4: 17 + 3: 34952 -10,11: - 2: 2296 + 3: 2296 -9,12: - 2: 17476 + 3: 17476 8,-15: 0: 65535 7,-15: @@ -7613,50 +7671,50 @@ entities: 9,-14: 0: 4403 10,-16: - 2: 3584 + 3: 3584 11,-16: - 2: 7936 + 3: 7936 10,-14: - 2: 34816 + 3: 34816 11,-14: - 2: 29489 + 3: 29489 11,-15: - 2: 4369 + 3: 4369 12,-16: - 2: 3840 + 3: 3840 4,-17: - 2: 4096 + 3: 4096 4,-14: - 2: 2048 + 3: 2048 5,-14: - 2: 1024 + 3: 1024 6,-14: - 2: 512 + 3: 512 -8,13: - 2: 29666 + 3: 29666 -9,13: - 2: 3140 + 3: 3140 -8,14: - 2: 15 + 3: 15 -7,13: - 2: 32816 + 3: 32816 0: 1032 -7,14: - 2: 15 + 3: 15 -6,13: 0: 255 -6,14: - 2: 49 + 3: 49 -5,13: 0: 51 - 3: 51208 + 4: 51208 -5,14: - 3: 264 + 4: 264 -4,13: - 3: 29443 + 4: 29443 0: 136 -4,14: - 3: 3 + 4: 3 -3,12: 0: 65520 -3,13: @@ -7675,166 +7733,166 @@ entities: 0: 8866 1,14: 0: 8710 - 2: 34952 + 3: 34952 1,15: 0: 8226 - 2: 34952 + 3: 34952 1,16: 0: 8738 - 2: 34952 + 3: 34952 2,13: 0: 184 2,14: - 2: 49023 + 3: 49023 2,15: - 2: 44974 + 3: 44974 2,16: - 2: 32702 + 3: 32702 3,13: 0: 255 3,14: - 2: 44847 + 3: 44847 3,15: - 2: 44975 + 3: 44975 3,16: - 2: 12207 + 3: 12207 4,14: - 2: 61439 + 3: 61439 4,15: - 2: 44971 + 3: 44971 4,13: 0: 224 4,16: - 2: 65515 + 3: 65515 5,15: - 2: 1279 + 3: 1279 0: 8192 5,13: 0: 8738 - 3: 136 + 4: 136 5,14: 0: 546 - 2: 16384 + 3: 16384 5,16: 0: 8738 6,15: - 2: 255 + 3: 255 6,13: 0: 1262 7,13: 0: 1279 7,15: - 2: 255 + 3: 255 8,15: - 2: 255 + 3: 255 9,15: - 2: 255 + 3: 255 10,15: - 2: 55 + 3: 55 10,14: - 2: 65224 + 3: 65224 11,14: - 2: 311 + 3: 311 11,13: - 2: 65228 + 3: 65228 12,12: - 2: 65535 + 3: 65535 13,10: - 2: 17 + 3: 17 13,9: - 2: 13028 + 3: 13028 13,8: - 2: 19652 + 3: 19652 13,7: - 2: 20478 + 3: 20478 14,9: - 2: 248 + 3: 248 14,8: - 2: 52428 + 3: 52428 14,7: - 2: 51711 + 3: 51711 15,8: - 2: 56797 + 3: 56797 15,9: - 2: 248 + 3: 248 15,7: - 2: 55539 + 3: 55539 16,8: - 2: 56797 + 3: 56797 16,9: - 2: 248 + 3: 248 13,5: 0: 1911 13,6: 0: 4111 - 2: 60928 + 3: 60928 14,5: 0: 4369 14,6: 0: 1 - 2: 13056 + 3: 13056 15,6: - 2: 14024 + 3: 14024 16,4: - 2: 29233 + 3: 29233 16,6: - 2: 34947 + 3: 34947 16,7: - 2: 55544 + 3: 55544 13,12: - 2: 4095 + 3: 4095 14,12: - 2: 4095 + 3: 4095 15,12: - 2: 4095 + 3: 4095 16,12: - 2: 883 + 3: 883 0,18: - 2: 49160 + 3: 49160 0,17: - 2: 34816 + 3: 34816 1,17: - 2: 24856 + 3: 24856 0: 3106 1,18: - 2: 61987 + 3: 61987 2,17: - 2: 57359 + 3: 57359 0: 1792 2,18: - 2: 4238 + 3: 4238 3,17: - 2: 61455 + 3: 61455 0: 1792 3,18: - 2: 255 + 3: 255 4,17: - 2: 12303 + 3: 12303 0: 3840 4,18: - 2: 49155 + 3: 49155 5,17: 0: 290 - 2: 48192 + 3: 48192 5,18: - 2: 61998 + 3: 61998 6,17: - 2: 18244 + 3: 18244 6,18: - 2: 4164 + 3: 4164 6,16: - 2: 16384 + 3: 16384 -15,0: - 2: 1 + 3: 1 0: 52428 -15,1: - 2: 4401 + 3: 4401 0: 34944 -15,2: - 2: 4369 + 3: 4369 0: 2176 -15,3: - 2: 34959 + 3: 34959 -15,-1: 0: 52732 -14,0: @@ -7844,49 +7902,49 @@ entities: -14,2: 0: 61439 -14,3: - 2: 61440 + 3: 61440 0: 14 -14,-1: 0: 65535 -13,2: 0: 817 - 2: 128 + 3: 128 -13,3: - 2: 12834 + 3: 12834 -13,5: - 2: 8742 + 3: 8742 -13,6: - 2: 25122 + 3: 25122 -13,8: - 2: 50722 + 3: 50722 -16,-16: - 2: 30583 + 3: 30583 -16,-17: - 2: 29187 + 3: 29187 -16,-15: - 2: 29426 + 3: 29426 -17,-15: - 2: 29426 + 3: 29426 -16,-14: - 2: 30583 + 3: 30583 -16,-13: - 2: 2 + 3: 2 -15,-15: - 2: 240 + 3: 240 -15,-16: - 2: 65520 + 3: 65520 -15,-13: - 3: 64 + 4: 64 -14,-16: - 2: 24404 + 3: 24404 -14,-15: - 2: 52980 + 3: 52980 -14,-17: - 2: 24404 + 3: 24404 -13,-15: - 2: 29456 + 3: 29456 -14,-14: - 2: 8 + 3: 8 0,-20: 0: 34952 0,-19: @@ -7920,140 +7978,140 @@ entities: -2,-18: 0: 4096 -16,-2: - 2: 12 + 3: 12 0: 51200 -16,-1: 0: 2240 -16,-3: - 2: 32768 + 3: 32768 -15,-3: - 2: 4369 + 3: 4369 0: 52428 -15,-2: - 2: 1 + 3: 1 0: 64972 -14,-3: 0: 65535 -14,-2: 0: 65535 16,5: - 2: 62242 + 3: 62242 17,5: - 2: 61440 + 3: 61440 17,6: - 2: 65520 + 3: 65520 17,7: - 2: 55536 + 3: 55536 17,8: - 2: 56797 + 3: 56797 18,5: - 2: 61440 + 3: 61440 18,6: - 2: 65520 + 3: 65520 18,7: - 2: 55536 + 3: 55536 18,8: - 2: 56797 + 3: 56797 19,5: - 2: 61440 + 3: 61440 19,6: - 2: 48056 + 3: 48056 19,7: - 2: 39162 + 3: 39162 19,8: - 2: 39321 + 3: 39321 20,7: - 2: 16 + 3: 16 -12,-19: - 2: 61440 + 3: 61440 -13,-19: - 2: 61440 + 3: 61440 -12,-18: - 2: 4880 + 3: 4880 -13,-18: - 2: 65520 + 3: 65520 -12,-17: - 2: 4880 + 3: 4880 -13,-17: - 2: 65520 + 3: 65520 -11,-19: - 2: 61440 + 3: 61440 -10,-19: - 2: 4096 + 3: 4096 -10,-18: 0: 4 -18,-12: - 2: 68 + 3: 68 -18,-13: - 2: 17476 + 3: 17476 -18,-15: - 2: 17636 + 3: 17636 -18,-16: - 2: 17476 + 3: 17476 -18,-17: - 2: 17484 + 3: 17484 -18,-14: - 2: 17476 + 3: 17476 -17,-16: - 2: 30583 + 3: 30583 -17,-17: - 2: 29199 + 3: 29199 -17,-14: - 2: 30583 + 3: 30583 -17,-13: - 2: 2 + 3: 2 16,-12: - 2: 546 + 3: 546 16,-13: - 2: 8743 + 3: 8743 -16,-19: - 2: 57344 + 3: 57344 -16,-18: - 2: 10786 + 3: 10786 -15,-19: - 2: 61440 + 3: 61440 -15,-18: - 2: 65520 + 3: 65520 -15,-17: - 2: 65520 + 3: 65520 -14,-19: - 2: 62464 + 3: 62464 -14,-18: - 2: 24404 + 3: 24404 12,-15: - 2: 30496 + 3: 30496 12,-14: - 2: 10103 + 3: 10103 13,-16: - 2: 3840 + 3: 3840 13,-15: - 2: 30496 + 3: 30496 13,-14: - 2: 10103 + 3: 10103 14,-16: - 2: 3840 + 3: 3840 14,-15: - 2: 30496 + 3: 30496 14,-14: - 2: 10103 + 3: 10103 15,-16: - 2: 3840 + 3: 3840 15,-15: - 2: 30496 + 3: 30496 15,-14: - 2: 10103 + 3: 10103 16,-16: - 2: 8960 + 3: 8960 16,-15: - 2: 8738 + 3: 8738 16,-14: - 2: 8738 + 3: 8738 17,9: - 2: 248 + 3: 248 18,9: - 2: 248 + 3: 248 19,9: - 2: 248 + 3: 248 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8085,6 +8143,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -9836,6 +9909,16 @@ entities: container: 8991 - proto: AirAlarm entities: + - uid: 3220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 16149 + - 16148 - uid: 5583 components: - type: Transform @@ -9919,6 +10002,17 @@ entities: - 5218 - 16531 - 16532 + - uid: 14996 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 876 + - 18504 + - 16179 + - 16180 - uid: 15512 components: - type: Transform @@ -10525,26 +10619,6 @@ entities: - 18457 - 14690 - 14689 - - uid: 18469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 18471 - - 18472 - - 18473 - - 18474 - - 18475 - - 18476 - - 18468 - - 18467 - - 18459 - - 14721 - - 18461 - - 14720 - uid: 18478 components: - type: Transform @@ -10620,7 +10694,7 @@ entities: - 18490 - 16551 - 16552 - - 18502 + - 876 - 18504 - 18485 - 13281 @@ -10710,15 +10784,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18560 - - 18559 - - 18571 - 18572 - - 18568 - - 18569 - - 18574 - - 16794 + - 18571 + - 18559 + - 18560 - 13584 + - 16794 - 18573 - uid: 18570 components: @@ -10740,7 +10811,6 @@ entities: - 18577 - 13560 - 13559 - - 18574 - uid: 18582 components: - type: Transform @@ -11399,6 +11469,26 @@ entities: - 3136 - 9112 - 28612 + - uid: 28879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 18459 + - 14721 + - 18461 + - 14720 + - 18474 + - 18473 + - 18475 + - 18476 + - 18467 + - 18468 + - 18471 + - 18472 - proto: AirCanister entities: - uid: 4223 @@ -11770,21 +11860,43 @@ entities: - type: Transform pos: -32.5,34.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28923: + - DoorStatus: InputB - uid: 8505 components: - type: Transform pos: -33.5,34.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28923: + - DoorStatus: InputA - uid: 8506 components: - type: Transform pos: -32.5,38.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28922: + - DoorStatus: InputB - uid: 8507 components: - type: Transform pos: -33.5,38.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28922: + - DoorStatus: InputA - proto: AirlockAtmosphericsLocked entities: - uid: 8143 @@ -12432,6 +12544,22 @@ entities: linkedPorts: 8424: - DoorStatus: DoorBolt + - uid: 28436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 5 + - type: DeviceLinkSource + linkedPorts: + 8507: + - DoorStatus: DoorBolt + 8506: + - DoorStatus: DoorBolt + 8505: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 826 @@ -12439,6 +12567,12 @@ entities: - type: Transform pos: -60.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28494: + - DoorStatus: DoorBolt - uid: 11331 components: - type: Transform @@ -12454,6 +12588,12 @@ entities: - type: Transform pos: -58.5,-19.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 826: + - DoorStatus: DoorBolt - uid: 28495 components: - type: Transform @@ -12839,10 +12979,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,54.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6863: - - DoorStatus: DoorBolt - uid: 6991 components: - type: Transform @@ -13083,6 +13219,48 @@ entities: - type: Transform pos: 17.5,-17.5 parent: 2 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,51.5 + parent: 2 + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,51.5 + parent: 2 + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,37.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-28.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-55.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 - uid: 3448 components: - type: Transform @@ -13107,29 +13285,191 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,2.5 parent: 2 - - uid: 6863 + - uid: 8247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,51.5 + rot: -1.5707963267948966 rad + pos: -41.5,-5.5 parent: 2 - - uid: 6864 + - uid: 8252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,51.5 + rot: -1.5707963267948966 rad + pos: -0.5,18.5 parent: 2 - - uid: 7850 + - uid: 8254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,38.5 + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 parent: 2 - - uid: 7851 + - uid: 8256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,37.5 + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,48.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,0.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,29.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,48.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,29.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,29.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-28.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,1.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-55.5 parent: 2 - uid: 12229 components: @@ -13163,6 +13503,12 @@ entities: - type: Transform pos: 4.5,-63.5 parent: 2 + - uid: 28603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 2 - proto: AirlockHatch entities: - uid: 10942 @@ -13729,21 +14075,18 @@ entities: - type: Transform pos: -22.5,-39.5 parent: 2 - - uid: 1372 + - uid: 877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-36.5 + rot: 3.141592653589793 rad + pos: -3.5,-35.5 parent: 2 - - uid: 1373 + - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-35.5 + pos: -3.5,-36.5 parent: 2 - - type: Door - secondsUntilStateChange: -583970.1 - state: Opening - uid: 1496 components: - type: Transform @@ -13899,6 +14242,12 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: + - uid: 878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 2 - uid: 9731 components: - type: Transform @@ -13931,11 +14280,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-43.5 parent: 2 - - uid: 10272 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 2 - uid: 10308 components: - type: Transform @@ -14119,23 +14463,47 @@ entities: - type: Transform pos: 60.5,48.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4821.3525 + state: Opening - uid: 6934 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,50.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4823.986 + state: Opening - uid: 6935 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,50.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4822.836 + state: Opening - uid: 6936 components: - type: Transform pos: 62.5,48.5 parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -4822.0522 + state: Opening - proto: AirlockTheatreLocked entities: - uid: 2191 @@ -14479,7 +14847,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - uid: 18460 components: - type: Transform @@ -14494,7 +14862,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - uid: 18462 components: - type: Transform @@ -14650,16 +15018,6 @@ entities: - type: DeviceNetwork deviceLists: - 18567 - - uid: 18574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18567 - - 18570 - uid: 18576 components: - type: Transform @@ -15515,6 +15873,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,45.5 parent: 2 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,17.5 + parent: 2 - uid: 2023 components: - type: MetaData @@ -15528,12 +15892,6 @@ entities: - type: Transform pos: 12.5,-40.5 parent: 2 - - uid: 12830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,17.5 - parent: 2 - proto: APCSuperCapacity entities: - uid: 733 @@ -15548,8 +15906,36 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-45.5 parent: 2 +- proto: Ash + entities: + - uid: 28873 + components: + - type: Transform + pos: 35.773716,-16.714659 + parent: 2 - proto: Ashtray entities: + - uid: 10272 + components: + - type: Transform + pos: 34.393116,-15.167919 + parent: 2 + - type: Storage + storedItems: + 11535: + position: 0,0 + _rotation: South + 11867: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 11535 + - 11867 - uid: 23244 components: - type: Transform @@ -34704,36 +35090,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 9293 - components: - - type: Transform - pos: -40.5,29.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 9295 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 9296 - components: - - type: Transform - pos: -40.5,31.5 - parent: 2 - - uid: 9297 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 9298 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9299 components: - type: Transform @@ -35889,10 +36245,10 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 6716 + - uid: 6864 components: - type: Transform - pos: 8.5,31.5 + pos: 7.5,30.5 parent: 2 - uid: 9959 components: @@ -37250,6 +37606,12 @@ entities: rot: 3.141592653589793 rad pos: -53.658516,9.595246 parent: 2 + - uid: 28614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.492344,-15.954241 + parent: 2 - proto: BoxFolderWhite entities: - uid: 1115 @@ -37581,11 +37943,6 @@ entities: - type: Transform pos: 7.3088074,9.718449 parent: 21002 - - uid: 23354 - components: - - type: Transform - pos: 38.630417,16.50916 - parent: 2 - proto: ButtonFrameGrey entities: - uid: 4519 @@ -37678,11 +38035,26 @@ entities: - type: Transform pos: -21.5,-10.5 parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 - uid: 1330 components: - type: Transform pos: -11.5,-80.5 parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 - uid: 1434 components: - type: Transform @@ -38493,6 +38865,11 @@ entities: - type: Transform pos: -9.5,-82.5 parent: 2 + - uid: 1865 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 - uid: 1929 components: - type: Transform @@ -49138,6 +49515,11 @@ entities: - type: Transform pos: -40.5,40.5 parent: 2 + - uid: 14151 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 - uid: 14189 components: - type: Transform @@ -51858,46 +52240,6 @@ entities: - type: Transform pos: -37.5,33.5 parent: 2 - - uid: 23308 - components: - - type: Transform - pos: -38.5,31.5 - parent: 2 - - uid: 23309 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 23310 - components: - - type: Transform - pos: -40.5,31.5 - parent: 2 - - uid: 23311 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 23312 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 23313 - components: - - type: Transform - pos: -40.5,29.5 - parent: 2 - - uid: 23314 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - - uid: 23315 - components: - - type: Transform - pos: -38.5,29.5 - parent: 2 - uid: 23316 components: - type: Transform @@ -54923,6 +55265,76 @@ entities: - type: Transform pos: -31.5,9.5 parent: 2 + - uid: 28908 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 28909 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 28910 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 28911 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 28912 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 28913 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 28914 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 28915 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 28916 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 28917 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 28918 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 28919 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 28920 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 28921 + components: + - type: Transform + pos: -44.5,37.5 + parent: 2 - proto: CableApcStack1 entities: - uid: 23589 @@ -68331,26 +68743,6 @@ entities: - type: Transform pos: 22.5,-16.5 parent: 2 - - uid: 857 - components: - - type: Transform - pos: 22.5,-23.5 - parent: 2 - - uid: 858 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 2 - - uid: 859 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 2 - - uid: 873 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 2 - uid: 874 components: - type: Transform @@ -68361,36 +68753,6 @@ entities: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 876 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 2 - - uid: 877 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 878 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - uid: 880 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 884 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 885 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 2 - uid: 886 components: - type: Transform @@ -68401,21 +68763,6 @@ entities: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 888 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 2 - - uid: 889 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - - uid: 890 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 2 - uid: 891 components: - type: Transform @@ -68568,11 +68915,53 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-23.5 parent: 2 + - uid: 2604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-21.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-20.5 + parent: 2 - uid: 5738 components: - type: Transform pos: 13.5,29.5 parent: 2 + - uid: 6258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-22.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 2 - uid: 6376 components: - type: Transform @@ -68608,6 +68997,24 @@ entities: - type: Transform pos: 16.5,28.5 parent: 2 + - uid: 6716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-22.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 - uid: 12160 components: - type: Transform @@ -68628,6 +69035,42 @@ entities: - type: Transform pos: -38.5,-23.5 parent: 2 + - uid: 28886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 28887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 2 + - uid: 28888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 28889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 28890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 28891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 - proto: CarpetBlue entities: - uid: 2676 @@ -70638,6 +71081,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,36.5 parent: 2 + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-31.5 + parent: 2 - uid: 9384 components: - type: Transform @@ -73527,6 +73976,12 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,23.5 parent: 2 + - uid: 28604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-31.5 + parent: 2 - proto: Chair entities: - uid: 495 @@ -73724,12 +74179,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-21.5 parent: 2 - - uid: 18707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-21.5 - parent: 2 - uid: 18708 components: - type: Transform @@ -74569,6 +75018,19 @@ entities: rot: 3.141592653589793 rad pos: -9.4977665,-59.404213 parent: 2 +- proto: ChurchBell + entities: + - uid: 28892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 28893 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 - proto: ChurchOrganInstrument entities: - uid: 45 @@ -74608,6 +75070,26 @@ entities: - type: Transform pos: -54.0773,9.794919 parent: 2 +- proto: Cigarette + entities: + - uid: 28871 + components: + - type: Transform + pos: 34.674366,-15.053335 + parent: 2 + - uid: 28872 + components: + - type: Transform + pos: 34.580616,-15.188752 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 11535 + components: + - type: Transform + parent: 10272 + - type: Physics + canCollide: False - proto: CigarGold entities: - uid: 2705 @@ -74640,6 +75122,21 @@ entities: rot: 1.5707963267948966 rad pos: -46.538147,-11.384542 parent: 2 +- proto: CigarSpent + entities: + - uid: 11867 + components: + - type: Transform + parent: 10272 + - type: Physics + canCollide: False +- proto: CigPackRed + entities: + - uid: 28869 + components: + - type: Transform + pos: 34.622284,-14.886669 + parent: 2 - proto: CircuitImprinter entities: - uid: 9961 @@ -76703,6 +77200,12 @@ entities: - type: Transform pos: -16.5,14.5 parent: 2 + - uid: 28595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 2 - proto: ComputerAlert entities: - uid: 9322 @@ -77607,10 +78110,10 @@ entities: parent: 2 - proto: CrateElectrical entities: - - uid: 6259 + - uid: 9603 components: - type: Transform - pos: 7.5,30.5 + pos: 8.5,31.5 parent: 2 - uid: 19667 components: @@ -77703,10 +78206,10 @@ entities: parent: 2 - proto: CrateEngineeringElectricalSupplies entities: - - uid: 6258 + - uid: 1276 components: - type: Transform - pos: 6.5,30.5 + pos: 8.5,30.5 parent: 2 - proto: CrateEngineeringMiniJetpack entities: @@ -78341,7 +78844,7 @@ entities: - uid: 28353 components: - type: Transform - pos: -20.5,-4.5 + pos: -24.5,-20.5 parent: 2 - type: EntityStorage open: True @@ -87605,7 +88108,7 @@ entities: - uid: 23355 components: - type: Transform - pos: 38.60958,16.707075 + pos: 38.62831,16.89455 parent: 2 - uid: 23370 components: @@ -87718,6 +88221,11 @@ entities: - type: Transform pos: 19.668665,37.711403 parent: 2 + - uid: 23353 + components: + - type: Transform + pos: 34.69026,-16.54799 + parent: 2 - uid: 23571 components: - type: Transform @@ -87772,12 +88280,12 @@ entities: - type: Transform pos: -48.22078,-11.387981 parent: 2 -- proto: DrinkIceJug +- proto: DrinkIceBucket entities: - - uid: 23353 + - uid: 7849 components: - type: Transform - pos: 38.8075,16.75916 + pos: 38.63873,16.467466 parent: 2 - proto: DrinkJar entities: @@ -88136,6 +88644,11 @@ entities: - type: Transform pos: 36.738503,-2.8382018 parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 34.48193,-16.51674 + parent: 2 - uid: 23618 components: - type: Transform @@ -89153,6 +89666,13 @@ entities: - type: Transform pos: -59.512844,-33.467316 parent: 2 +- proto: EvidenceMarkerOne + entities: + - uid: 28866 + components: + - type: Transform + pos: 34.392616,-14.27478 + parent: 2 - proto: ExosuitFabricator entities: - uid: 10470 @@ -89247,12 +89767,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-47.5 parent: 2 - - uid: 23799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 2 - uid: 23800 components: - type: Transform @@ -89270,6 +89784,12 @@ entities: - type: Transform pos: -29.5,34.5 parent: 2 + - uid: 28905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 2 - proto: FaxMachineBase entities: - uid: 1043 @@ -89405,6 +89925,14 @@ entities: - type: Transform pos: 32.5,20.5 parent: 2 +- proto: FenceWoodSmallGate + entities: + - uid: 28615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-36.5 + parent: 2 - proto: FigureSpawner entities: - uid: 23863 @@ -89688,6 +90216,16 @@ entities: - 17899 - 16671 - 12062 + - uid: 15810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 876 + - 18504 - uid: 18231 components: - type: Transform @@ -90302,7 +90840,7 @@ entities: - 18490 - 16551 - 16552 - - 18502 + - 876 - 18504 - uid: 18531 components: @@ -90934,6 +91472,15 @@ entities: - 26798 - 26787 - 26792 + - uid: 28901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,51.5 + parent: 2 + - type: DeviceList + devices: + - 18546 - proto: FireAxeCabinetFilled entities: - uid: 2471 @@ -92346,6 +92893,18 @@ entities: - 18288 - 18282 - 18271 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18500 + - 18501 + - 15810 + - 14996 - uid: 2200 components: - type: Transform @@ -93488,7 +94047,7 @@ entities: - 18464 - 18463 - 18470 - - 18469 + - 28879 - uid: 18468 components: - type: Transform @@ -93500,7 +94059,7 @@ entities: - 18464 - 18463 - 18470 - - 18469 + - 28879 - uid: 18471 components: - type: Transform @@ -93510,7 +94069,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18477 - 18478 - uid: 18472 @@ -93522,7 +94081,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18477 - 18478 - uid: 18473 @@ -93534,7 +94093,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18484 - 18480 - uid: 18474 @@ -93546,7 +94105,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18484 - 18480 - uid: 18475 @@ -93558,7 +94117,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18483 - 18482 - uid: 18476 @@ -93570,7 +94129,7 @@ entities: - type: DeviceNetwork deviceLists: - 18470 - - 18469 + - 28879 - 18483 - 18482 - uid: 18488 @@ -93685,15 +94244,6 @@ entities: deviceLists: - 18498 - 18499 - - uid: 18502 - components: - - type: Transform - pos: -2.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18500 - - 18501 - uid: 18504 components: - type: Transform @@ -93703,6 +94253,8 @@ entities: deviceLists: - 18500 - 18501 + - 15810 + - 14996 - uid: 18522 components: - type: Transform @@ -93830,6 +94382,7 @@ entities: - 18551 - 18553 - 9410 + - 28901 - uid: 18547 components: - type: Transform @@ -93903,7 +94456,6 @@ entities: - type: DeviceNetwork deviceLists: - 18566 - - 18567 - 18575 - 18570 - uid: 18569 @@ -93915,7 +94467,6 @@ entities: - type: DeviceNetwork deviceLists: - 18566 - - 18567 - 18575 - 18570 - uid: 18571 @@ -95382,16 +95933,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 8580 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 8581 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9778 components: - type: Transform @@ -95468,18 +96009,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,31.5 - parent: 2 - - uid: 8524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,29.5 - parent: 2 - uid: 8527 components: - type: Transform @@ -95662,17 +96191,6 @@ entities: - type: Transform pos: 52.5,16.5 parent: 21002 - - uid: 28594 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 28595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,31.5 - parent: 2 - proto: GasPipeBend entities: - uid: 51 @@ -95864,18 +96382,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 - - uid: 8588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,28.5 - parent: 2 - - uid: 8589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,30.5 - parent: 2 - uid: 8652 components: - type: Transform @@ -96036,30 +96542,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 9201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,34.5 - parent: 2 - - uid: 9204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,27.5 - parent: 2 - - uid: 9212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 2 - - uid: 9234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,27.5 - parent: 2 - uid: 9390 components: - type: Transform @@ -98016,46 +98498,6 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,33.5 - parent: 2 - - uid: 28600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,33.5 - parent: 2 - - uid: 28613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,34.5 - parent: 2 - - uid: 28614 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -40.5,34.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 28615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,36.5 - parent: 2 - - uid: 28616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,34.5 - parent: 2 - uid: 28634 components: - type: Transform @@ -98902,6 +99344,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8534 components: - type: Transform @@ -98944,18 +99394,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,25.5 parent: 2 - - uid: 8541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,29.5 - parent: 2 - - uid: 8542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,31.5 - parent: 2 - uid: 8543 components: - type: Transform @@ -99286,42 +99724,14 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,28.5 parent: 2 - - uid: 8622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,28.5 - parent: 2 - - uid: 8623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,28.5 - parent: 2 - - uid: 8624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,28.5 - parent: 2 - - uid: 8625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,30.5 - parent: 2 - uid: 8626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,30.5 - parent: 2 - - uid: 8627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,30.5 + rot: -1.5707963267948966 rad + pos: -33.5,35.5 parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8628 components: - type: Transform @@ -99963,13 +100373,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 8775 - components: - - type: Transform - pos: -33.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#3AB334FF' - uid: 8776 components: - type: Transform @@ -99998,13 +100401,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 8780 - components: - - type: Transform - pos: -32.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#B3A234FF' - uid: 8781 components: - type: Transform @@ -100050,17 +100446,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 8818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,34.5 - parent: 2 - - uid: 8821 - components: - - type: Transform - pos: -44.5,32.5 - parent: 2 - uid: 8822 components: - type: Transform @@ -100302,16 +100687,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9199 - components: - - type: Transform - pos: -44.5,29.5 - parent: 2 - - uid: 9200 - components: - - type: Transform - pos: -44.5,28.5 - parent: 2 - uid: 9386 components: - type: Transform @@ -100408,12 +100783,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,27.5 - parent: 2 - uid: 9611 components: - type: Transform @@ -105924,18 +106293,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14128 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 14129 components: - type: Transform @@ -106071,17 +106428,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14151 - components: - - type: Transform - anchored: False - pos: 32.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 14155 components: - type: Transform @@ -117403,16 +117749,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 16792 - components: - - type: Transform - pos: -44.5,33.5 - parent: 2 - - uid: 16793 - components: - - type: Transform - pos: -44.5,31.5 - parent: 2 - uid: 16796 components: - type: Transform @@ -118944,6 +119280,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 23478 components: - type: Transform @@ -119299,11 +119643,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 24118 - components: - - type: Transform - pos: -44.5,30.5 - parent: 2 - uid: 25219 components: - type: Transform @@ -119846,28 +120185,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,28.5 - parent: 2 - - uid: 28597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - uid: 28598 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 28620 components: - type: Transform @@ -120197,6 +120514,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 8524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#B3A234FF' - uid: 8683 components: - type: Transform @@ -122911,30 +123244,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,34.5 - parent: 2 - - uid: 28604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,36.5 - parent: 2 - - uid: 28617 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,34.5 - parent: 2 - - uid: 28618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,36.5 - parent: 2 - uid: 28624 components: - type: Transform @@ -123269,22 +123578,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,29.5 parent: 2 - - uid: 9202 - components: - - type: Transform - pos: -42.5,35.5 - parent: 2 - - uid: 9311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,35.5 - parent: 2 - - uid: 9603 - components: - - type: Transform - pos: -40.5,35.5 - parent: 2 - uid: 9752 components: - type: Transform @@ -123319,12 +123612,6 @@ entities: targetPressure: 501.325 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,35.5 - parent: 2 - proto: GasThermoMachineFreezer entities: - uid: 9281 @@ -123384,6 +123671,16 @@ entities: bodyType: Dynamic - proto: GasValve entities: + - uid: 888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,37.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 8100 components: - type: Transform @@ -123434,6 +123731,48 @@ entities: open: False - type: AtmosPipeColor color: '#B3A234FF' + - uid: 8248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 8329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - type: GasValve + open: False + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,28.5 + parent: 2 + - type: GasValve + open: False + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,31.5 + parent: 2 + - type: GasValve + open: False + - uid: 8523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,29.5 + parent: 2 + - type: GasValve + open: False - uid: 8689 components: - type: Transform @@ -123499,14 +123838,6 @@ entities: parent: 2 - type: GasValve open: False - - uid: 9211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,27.5 - parent: 2 - - type: GasValve - open: False - uid: 9759 components: - type: Transform @@ -123554,14 +123885,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,33.5 - parent: 2 - - type: GasValve - open: False - uid: 28605 components: - type: Transform @@ -124248,7 +124571,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14741 @@ -124954,6 +125277,9 @@ entities: rot: 3.141592653589793 rad pos: -17.5,29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3220 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16179 @@ -124962,6 +125288,9 @@ entities: rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14996 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16188 @@ -126065,7 +126394,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18469 + - 28879 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14740 @@ -126608,18 +126937,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15810 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -6.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 15814 components: - type: Transform @@ -126776,6 +127093,9 @@ entities: rot: 3.141592653589793 rad pos: -16.5,28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 3220 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16180 @@ -126784,6 +127104,9 @@ entities: rot: 3.141592653589793 rad pos: -8.5,35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14996 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16189 @@ -129202,12 +129525,6 @@ entities: rot: 3.141592653589793 rad pos: 27.5,54.5 parent: 2 - - uid: 6857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,54.5 - parent: 2 - uid: 6858 components: - type: Transform @@ -130189,12 +130506,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,16.5 parent: 2 - - uid: 8393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 2 - uid: 8394 components: - type: Transform @@ -130243,16 +130554,6 @@ entities: rot: 3.141592653589793 rad pos: -40.5,2.5 parent: 2 - - uid: 8514 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 8515 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - uid: 8516 components: - type: Transform @@ -131070,6 +131371,12 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-15.5 parent: 2 + - uid: 11983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 - uid: 12307 components: - type: Transform @@ -135868,7 +136175,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -16897.393 + secondsUntilStateChange: -32977.18 state: Opening - uid: 5211 components: @@ -136775,6 +137082,14 @@ entities: - type: Transform pos: 27.345627,0.6012745 parent: 21002 +- proto: Lighter + entities: + - uid: 28870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.559784,-14.813752 + parent: 2 - proto: LightReplacer entities: - uid: 9677 @@ -137567,6 +137882,41 @@ entities: - type: Transform pos: 35.5,35.5 parent: 2 +- proto: LogicGate + entities: + - uid: 28922 + components: + - type: Transform + pos: -32.477474,37.47289 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28924: + - Output: InputA + - uid: 28923 + components: + - type: Transform + pos: -32.49831,35.52497 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 28924: + - Output: InputB + - uid: 28924 + components: + - type: Transform + pos: -33.46706,36.483307 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 28436: + - Output: DoorBolt - proto: MachineAnomalyGenerator entities: - uid: 3797 @@ -137849,6 +138199,11 @@ entities: - type: Transform pos: 58.5,7.5 parent: 2 + - uid: 12259 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 - uid: 23232 components: - type: Transform @@ -137874,6 +138229,21 @@ entities: - type: Transform pos: -11.5,26.5 parent: 2 + - uid: 28594 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 2 + - uid: 28880 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 28882 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 - proto: MaintenanceToolSpawner entities: - uid: 255 @@ -138004,11 +138374,6 @@ entities: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 8712 - components: - - type: Transform - pos: -57.5,-14.5 - parent: 2 - proto: MatterBinStockPart entities: - uid: 23592 @@ -138592,11 +138957,6 @@ entities: - type: Transform pos: 40.5,50.5 parent: 2 - - uid: 11868 - components: - - type: Transform - pos: -57.5,-21.5 - parent: 2 - uid: 15320 components: - type: Transform @@ -138757,10 +139117,10 @@ entities: parent: 2 - proto: OreProcessor entities: - - uid: 11983 + - uid: 9204 components: - type: Transform - pos: -56.5,-16.5 + pos: -57.5,-15.5 parent: 2 - proto: OxygenCanister entities: @@ -138799,6 +139159,11 @@ entities: - type: Transform pos: -42.5,13.5 parent: 2 + - uid: 9211 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 - uid: 9468 components: - type: Transform @@ -138809,11 +139174,6 @@ entities: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 11867 - components: - - type: Transform - pos: -57.5,-16.5 - parent: 2 - uid: 18928 components: - type: Transform @@ -139604,6 +139964,12 @@ entities: - type: Transform pos: -16.680094,39.619514 parent: 2 + - uid: 28865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.554844,-15.797991 + parent: 2 - proto: PenCap entities: - uid: 2672 @@ -139656,6 +140022,13 @@ entities: - type: Transform pos: -4.5151863,-48.460827 parent: 2 +- proto: PetCarrier + entities: + - uid: 16800 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 - proto: PhoneInstrument entities: - uid: 2675 @@ -140255,15 +140628,24 @@ entities: - type: Transform pos: 22.5,35.5 parent: 2 - - uid: 28331 + - uid: 28332 components: - type: Transform - pos: 3.5,30.5 + pos: -32.5,7.5 parent: 2 - - uid: 28332 + - uid: 28881 components: - type: Transform - pos: -32.5,7.5 + rot: -1.5707963267948966 rad + pos: 8.5,39.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-33.5 parent: 2 - proto: PosterLegitCarpMount entities: @@ -140348,6 +140730,22 @@ entities: - type: Transform pos: -5.5,53.5 parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 1051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 8712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-37.5 + parent: 2 - proto: PosterLegitThereIsNoGasGiant entities: - uid: 9176 @@ -141638,11 +142036,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,22.5 parent: 2 - - uid: 5571 - components: - - type: Transform - pos: -4.5,38.5 - parent: 2 - uid: 5641 components: - type: Transform @@ -141826,18 +142219,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,52.5 parent: 2 - - uid: 7938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,35.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,31.5 - parent: 2 - uid: 7940 components: - type: Transform @@ -141983,6 +142364,23 @@ entities: - type: Transform pos: -11.5,43.5 parent: 2 + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,31.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,35.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 - uid: 9578 components: - type: Transform @@ -142888,6 +143286,12 @@ entities: powerLoad: 10 - proto: PoweredLightPostSmall entities: + - uid: 1042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,37.5 + parent: 2 - uid: 2259 components: - type: Transform @@ -142898,6 +143302,12 @@ entities: - type: Transform pos: 46.5,-50.5 parent: 2 + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,31.5 + parent: 2 - uid: 11558 components: - type: Transform @@ -142950,11 +143360,6 @@ entities: - type: Transform pos: -41.5,7.5 parent: 2 - - uid: 14996 - components: - - type: Transform - pos: -38.5,34.5 - parent: 2 - uid: 20783 components: - type: Transform @@ -143123,12 +143528,6 @@ entities: - type: Transform pos: 30.5,-14.5 parent: 2 - - uid: 4011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 2 - uid: 4239 components: - type: Transform @@ -143199,16 +143598,6 @@ entities: - type: Transform pos: -41.5,25.5 parent: 2 - - uid: 9161 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 9162 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - uid: 9186 components: - type: Transform @@ -143233,6 +143622,12 @@ entities: rot: 3.141592653589793 rad pos: -12.5,46.5 parent: 2 + - uid: 9298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 2 - uid: 9852 components: - type: Transform @@ -143854,6 +144249,12 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,25.5 parent: 2 + - uid: 28877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,8.5 + parent: 2 - proto: PresentRandomCash entities: - uid: 9641 @@ -143881,10 +144282,10 @@ entities: color: '#03FCD3FF' - proto: Protolathe entities: - - uid: 6715 + - uid: 7789 components: - type: Transform - pos: 8.5,30.5 + pos: 6.5,30.5 parent: 2 - uid: 9960 components: @@ -145603,6 +146004,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-16.5 parent: 21002 + - uid: 28894 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 28895 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -146014,6 +146425,30 @@ entities: - type: Transform pos: 19.5,-25.5 parent: 21002 + - uid: 28896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 2 + - uid: 28897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 28898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 2 + - uid: 28899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 - proto: RailingRound entities: - uid: 3408 @@ -147322,21 +147757,11 @@ entities: - type: Transform pos: -7.5,46.5 parent: 2 - - uid: 8359 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - uid: 8360 components: - type: Transform pos: -39.5,25.5 parent: 2 - - uid: 8361 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - uid: 8508 components: - type: Transform @@ -148760,11 +149185,6 @@ entities: - type: Transform pos: 31.5,54.5 parent: 2 - - uid: 6849 - components: - - type: Transform - pos: 28.5,54.5 - parent: 2 - uid: 6850 components: - type: Transform @@ -149034,12 +149454,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,14.5 parent: 2 - - uid: 8329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 2 - uid: 8330 components: - type: Transform @@ -149244,6 +149658,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-30.5 parent: 2 + - uid: 9200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 - uid: 9256 components: - type: Transform @@ -150906,6 +151326,29 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-7.5 parent: 2 + - uid: 23309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-4.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,3.5 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 23312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 - uid: 23440 components: - type: Transform @@ -150988,6 +151431,16 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,46.5 parent: 2 + - uid: 24118 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 28331 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 - uid: 28364 components: - type: Transform @@ -151302,18 +151755,6 @@ entities: parent: 21002 - proto: ShuttersNormal entities: - - uid: 2604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 2 - - uid: 2605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 2 - uid: 7762 components: - type: Transform @@ -151337,6 +151778,18 @@ entities: - type: Transform pos: 20.5,-1.5 parent: 2 + - uid: 12261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 - uid: 16922 components: - type: Transform @@ -151953,10 +152406,18 @@ entities: parent: 2 - proto: SignAi entities: - - uid: 23184 + - uid: 23308 components: - type: Transform - rot: 3.141592653589793 rad + rot: -1.5707963267948966 rad + pos: 57.5,18.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 12285 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 59.5,6.5 parent: 2 - proto: SignalButtonDirectional @@ -152102,18 +152563,6 @@ entities: - Pressed: Toggle 5742: - Pressed: Toggle - - uid: 2730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2604: - - Pressed: Toggle - 2605: - - Pressed: Toggle - uid: 2735 components: - type: MetaData @@ -152314,22 +152763,6 @@ entities: - Pressed: Toggle 7860: - Pressed: Toggle - - uid: 7984 - components: - - type: MetaData - name: light switch - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,36.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5571: - - Pressed: Toggle - 7939: - - Pressed: Toggle - 7938: - - Pressed: Toggle - uid: 8946 components: - type: Transform @@ -152553,6 +152986,17 @@ entities: linkedPorts: 23781: - Pressed: Toggle + - uid: 18469 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12261: + - Pressed: Toggle + 12830: + - Pressed: Toggle - uid: 18694 components: - type: MetaData @@ -152874,14 +153318,78 @@ entities: linkedPorts: 12131: - Pressed: DoorBolt + - uid: 28868 + components: + - type: MetaData + name: light + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9298: + - Pressed: Toggle + - uid: 28874 + components: + - type: MetaData + name: light + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3764: + - Pressed: Toggle + - uid: 28878 + components: + - type: MetaData + name: door bolt + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23642: + - Pressed: DoorBolt + - uid: 28900 + components: + - type: MetaData + name: lights + - type: Transform + pos: -4.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9296: + - Pressed: Toggle + 9294: + - Pressed: Toggle + 9295: + - Pressed: Toggle - proto: SignAnomaly entities: + - uid: 16793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 - uid: 23200 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 2 +- proto: SignArcade + entities: + - uid: 6863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 - proto: SignArmory entities: - uid: 23185 @@ -152914,6 +153422,14 @@ entities: rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 +- proto: SignCans + entities: + - uid: 8260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 - proto: SignCargo entities: - uid: 23190 @@ -152938,7 +153454,7 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 -- proto: SignChemistry1 +- proto: SignChem entities: - uid: 8921 components: @@ -152962,16 +153478,27 @@ entities: rot: 3.141592653589793 rad pos: 28.5,16.5 parent: 2 -- proto: SignCourt +- proto: SignCryo entities: - - uid: 8922 + - uid: 23799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 + pos: -45.5,-28.5 parent: 2 - proto: SignDangerMed entities: + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-52.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-52.5 + parent: 2 - uid: 28305 components: - type: Transform @@ -152994,6 +153521,12 @@ entities: parent: 2 - proto: SignDirectionalChapel entities: + - uid: 1279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 2 - uid: 3461 components: - type: Transform @@ -153056,11 +153589,6 @@ entities: rot: 3.141592653589793 rad pos: -1.497997,-40.258747 parent: 2 - - uid: 20992 - components: - - type: Transform - pos: -2.4500175,39.76776 - parent: 2 - uid: 20995 components: - type: Transform @@ -153073,8 +153601,18 @@ entities: rot: 1.5707963267948966 rad pos: 38.525524,2.687672 parent: 2 + - uid: 28601 + components: + - type: Transform + pos: -0.50126964,39.711143 + parent: 2 - proto: SignDirectionalFood entities: + - uid: 14128 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 - uid: 20980 components: - type: Transform @@ -153093,11 +153631,6 @@ entities: rot: 3.141592653589793 rad pos: -1.497997,-40.456665 parent: 2 - - uid: 20993 - components: - - type: Transform - pos: -2.4500175,39.54901 - parent: 2 - uid: 20994 components: - type: Transform @@ -153407,6 +153940,12 @@ entities: parent: 2 - proto: SignEngineering entities: + - uid: 9293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 - uid: 23196 components: - type: Transform @@ -153429,6 +153968,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 + - uid: 23198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 - proto: SignFire entities: - uid: 28553 @@ -153436,7 +153981,65 @@ entities: - type: Transform pos: -27.5,34.5 parent: 2 -- proto: SignHydro2 +- proto: SignGravity + entities: + - uid: 9201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,34.5 + parent: 2 +- proto: SignHead + entities: + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,16.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-36.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,45.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 23313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 + parent: 2 + - uid: 23314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,4.5 + parent: 2 + - uid: 28593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 2 +- proto: SignHydro1 entities: - uid: 23182 components: @@ -153446,11 +154049,11 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 8927 + - uid: 23315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 parent: 2 - proto: SignJanitor entities: @@ -153462,6 +154065,12 @@ entities: parent: 2 - proto: SignLawyer entities: + - uid: 8922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 - uid: 8925 components: - type: Transform @@ -153566,13 +154175,21 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 +- proto: SignSalvage + entities: + - uid: 28902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-15.5 + parent: 2 - proto: SignScience entities: - - uid: 23198 + - uid: 28906 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-36.5 + pos: 4.5,-40.5 parent: 2 - proto: SignSecurity entities: @@ -153594,6 +154211,22 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-26.5 parent: 2 +- proto: SignServer + entities: + - uid: 28903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-33.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 8514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,2.5 + parent: 2 - proto: SignShock entities: - uid: 5411 @@ -153657,11 +154290,35 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 7789 + - uid: 880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-18.5 + rot: -1.5707963267948966 rad + pos: -34.5,38.5 + parent: 2 + - uid: 885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-81.5 + parent: 2 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-51.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-47.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-20.5 parent: 2 - uid: 8936 components: @@ -153669,6 +154326,24 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-32.5 parent: 2 + - uid: 9162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,34.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - uid: 23354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-18.5 + parent: 2 - uid: 28314 components: - type: Transform @@ -153689,6 +154364,18 @@ entities: - type: Transform pos: 47.5,-45.5 parent: 21002 + - uid: 28437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-54.5 + parent: 2 + - uid: 28864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-81.5 + parent: 2 - proto: SignSurgery entities: - uid: 8937 @@ -153712,6 +154399,22 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 +- proto: SignVirology + entities: + - uid: 28907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 +- proto: SignXenobio + entities: + - uid: 7850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 - proto: SingularityGenerator entities: - uid: 7089 @@ -154006,11 +154709,6 @@ entities: - type: Transform pos: 15.5,37.5 parent: 2 - - uid: 9399 - components: - - type: Transform - pos: 15.5,37.5 - parent: 2 - proto: SodaDispenserMachineCircuitboard entities: - uid: 5812 @@ -157422,6 +158120,18 @@ entities: parent: 2 - proto: StairStageDark entities: + - uid: 4011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 2 - uid: 28344 components: - type: Transform @@ -157455,6 +158165,17 @@ entities: parent: 2 - proto: StationMap entities: + - uid: 18502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 18574 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 2 - uid: 23439 components: - type: Transform @@ -157494,11 +158215,6 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 - - uid: 23463 - components: - - type: Transform - pos: -43.5,-28.5 - parent: 2 - uid: 23493 components: - type: Transform @@ -157828,16 +158544,6 @@ entities: - type: Transform pos: -42.5,25.5 parent: 2 - - uid: 8890 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - uid: 8891 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 - uid: 9743 components: - type: Transform @@ -159009,14 +159715,19 @@ entities: pos: -20.5,-2.5 parent: 2 - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment id: Exhibit A - uid: 532 components: - type: Transform + anchored: False pos: -21.5,-2.5 parent: 2 - type: SurveillanceCamera id: Exhibit B + - type: Physics + bodyType: Dynamic - uid: 3481 components: - type: Transform @@ -160050,6 +160761,12 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 + - uid: 9202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 - uid: 13006 components: - type: Transform @@ -160080,6 +160797,18 @@ entities: - type: Transform pos: 58.5,14.5 parent: 2 + - uid: 16792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - uid: 28613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 - proto: TableCounterWood entities: - uid: 294 @@ -160146,24 +160875,12 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-54.5 parent: 2 - - uid: 12259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-36.5 - parent: 2 - uid: 12260 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-36.5 parent: 2 - - uid: 12261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-36.5 - parent: 2 - uid: 12263 components: - type: Transform @@ -160206,6 +160923,16 @@ entities: rot: 3.141592653589793 rad pos: 12.5,34.5 parent: 2 + - uid: 20992 + components: + - type: Transform + pos: -54.5,-36.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 2 - uid: 23276 components: - type: Transform @@ -161105,11 +161832,6 @@ entities: - type: Transform pos: 8.5,-18.5 parent: 2 - - uid: 1042 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 2 - uid: 1572 components: - type: Transform @@ -161729,6 +162451,11 @@ entities: - type: Transform pos: 16.5,1.5 parent: 21002 + - uid: 23184 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 - uid: 23374 components: - type: Transform @@ -169819,96 +170546,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,34.5 parent: 2 - - uid: 8247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,32.5 - parent: 2 - - uid: 8248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - uid: 8249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,32.5 - parent: 2 - - uid: 8250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,32.5 - parent: 2 - - uid: 8251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,31.5 - parent: 2 - - uid: 8252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,30.5 - parent: 2 - - uid: 8254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,30.5 - parent: 2 - - uid: 8256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,32.5 - parent: 2 - - uid: 8257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,30.5 - parent: 2 - - uid: 8258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,28.5 - parent: 2 - - uid: 8259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,28.5 - parent: 2 - - uid: 8260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,28.5 - parent: 2 - - uid: 8261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,28.5 - parent: 2 - - uid: 8262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,28.5 - parent: 2 - - uid: 8263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,29.5 - parent: 2 - uid: 8264 components: - type: Transform @@ -170428,6 +171065,11 @@ entities: - type: Transform pos: -29.5,24.5 parent: 2 + - uid: 9199 + components: + - type: Transform + pos: 28.5,54.5 + parent: 2 - uid: 9383 components: - type: Transform @@ -172831,6 +173473,11 @@ entities: - type: Transform pos: -48.5,-28.5 parent: 2 + - uid: 11868 + components: + - type: Transform + pos: 28.5,55.5 + parent: 2 - uid: 11962 components: - type: Transform @@ -173535,12 +174182,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 - - uid: 16800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,36.5 - parent: 2 - uid: 18052 components: - type: Transform @@ -176079,18 +176720,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,32.5 parent: 21002 - - uid: 28436 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,30.5 - parent: 2 - - uid: 28437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,30.5 - parent: 2 - uid: 28521 components: - type: Transform @@ -176665,12 +177294,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 2 - - uid: 1276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 2 - uid: 1277 components: - type: Transform @@ -176683,54 +177306,12 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-17.5 parent: 2 - - uid: 1279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-17.5 - parent: 2 - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-4.5 parent: 2 - - uid: 1282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - uid: 1283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 2 - - uid: 1284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 2 - - uid: 1324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 2 - - uid: 1325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 2 - - uid: 1326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 2 - uid: 1327 components: - type: Transform @@ -178589,11 +179170,11 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,35.5 parent: 2 - - uid: 7849 + - uid: 7851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,36.5 + rot: 3.141592653589793 rad + pos: -2.5,38.5 parent: 2 - uid: 7852 components: @@ -179710,11 +180291,6 @@ entities: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 11535 - components: - - type: Transform - pos: -57.5,-15.5 - parent: 2 - uid: 11536 components: - type: Transform @@ -180482,6 +181058,54 @@ entities: - type: Transform pos: -22.5,27.5 parent: 2 + - uid: 28597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + - uid: 28598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 2 + - uid: 28599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 2 + - uid: 28600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 2 + - uid: 28602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 2 + - uid: 28883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 28884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 2 + - uid: 28885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 2 - proto: WallSolidRust entities: - uid: 24642 @@ -181248,18 +181872,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 - - uid: 8918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,30.5 - parent: 2 - - uid: 8919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,28.5 - parent: 2 - uid: 8938 components: - type: Transform @@ -181703,11 +182315,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-37.5 parent: 2 - - uid: 12285 - components: - - type: Transform - pos: -55.5,-36.5 - parent: 2 - proto: WindoorHydroponicsLocked entities: - uid: 3318 @@ -181892,6 +182499,14 @@ entities: - type: Transform pos: -5.5,-34.5 parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 9234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 9918 @@ -182767,6 +183382,44 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-26.5 parent: 2 + - uid: 28616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 + - uid: 28617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 + parent: 2 + - uid: 28618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-27.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 28867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 + - uid: 28875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + - uid: 28876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 352 @@ -182925,12 +183578,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 - - uid: 1865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-28.5 - parent: 2 - uid: 2329 components: - type: Transform @@ -182967,18 +183614,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,4.5 parent: 2 - - uid: 3220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-27.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-29.5 - parent: 2 - uid: 3424 components: - type: Transform @@ -183261,11 +183896,6 @@ entities: - type: Transform pos: -35.5,-4.5 parent: 2 - - uid: 1051 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 2 - uid: 1596 components: - type: Transform @@ -183312,8 +183942,13 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -362102 + secondsUntilStateChange: -378181.78 state: Opening + - uid: 28863 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 - proto: WoodenBench entities: - uid: 21 diff --git a/Resources/Maps/train.yml b/Resources/Maps/train.yml index 6b929468a2c..8bcbf97b865 100644 --- a/Resources/Maps/train.yml +++ b/Resources/Maps/train.yml @@ -5469,21 +5469,21 @@ entities: id: Train - proto: AccordionInstrument entities: - - uid: 12393 + - uid: 3 components: - type: Transform pos: -5.3016195,-317.37082 parent: 2 - proto: AcousticGuitarInstrument entities: - - uid: 10093 + - uid: 4 components: - type: Transform pos: -7.466254,-281.50427 parent: 2 - proto: AirAlarm entities: - - uid: 2277 + - uid: 5 components: - type: Transform rot: 1.5707963267948966 rad @@ -5491,27 +5491,27 @@ entities: parent: 2 - type: DeviceList devices: - - 13310 - - 13323 - - 12367 - - 12297 - - 13324 - - uid: 5925 + - 7463 + - 442 + - 9613 + - 9801 + - 7470 + - uid: 6 components: - type: Transform pos: -1.5,-334.5 parent: 2 - type: DeviceList devices: - - 12798 - - 10658 - - 13392 - - 13387 - - 13386 - - 13396 - - 13395 - - 12306 - - uid: 8201 + - 9818 + - 9597 + - 453 + - 7496 + - 7495 + - 7499 + - 7498 + - 7430 + - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad @@ -5519,41 +5519,45 @@ entities: parent: 2 - type: DeviceList devices: - - 5346 - - 13214 - - 5277 - - 5260 - - 13200 - - 13201 - - 13202 - - uid: 8432 + - 9775 + - 423 + - 9784 + - 9643 + - 7450 + - 7345 + - 7346 + - uid: 8 components: - type: Transform pos: -5.5,-306.5 parent: 2 - type: DeviceList devices: - - 3027 - - 12470 - - 8430 - - 13377 - - 13372 - - 7798 - - 7799 - - 7800 - - 13344 - - 13343 - - 13342 - - 13345 - - 13346 - - 13347 - - uid: 10964 + - 9702 + - 9616 + - 388 + - 7493 + - 7491 + - 7414 + - 7415 + - 7416 + - 7478 + - 7477 + - 7476 + - 7479 + - 7480 + - 7481 + - uid: 9 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-345.5 parent: 2 - - uid: 11906 + - type: DeviceList + devices: + - 9468 + - 9813 + - uid: 10 components: - type: Transform rot: -1.5707963267948966 rad @@ -5561,18 +5565,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13384 - - 12898 - - 12896 - - 13390 - - 13386 - - 13387 - - 12897 - - 12798 - - 13392 - - 13395 - - 13396 - - uid: 12935 + - 452 + - 7497 + - 7495 + - 7496 + - 9818 + - 453 + - 7498 + - 7499 + - uid: 11 components: - type: Transform rot: 1.5707963267948966 rad @@ -5580,12 +5581,12 @@ entities: parent: 2 - type: DeviceList devices: - - 884 - - 1825 - - 13073 - - 393 - - 391 - - uid: 13080 + - 9630 + - 9789 + - 392 + - 7363 + - 7361 + - uid: 12 components: - type: Transform rot: 1.5707963267948966 rad @@ -5593,14 +5594,14 @@ entities: parent: 2 - type: DeviceList devices: - - 13072 - - 857 - - 747 - 391 - - 390 - - 387 - - 146 - - uid: 13105 + - 9473 + - 9816 + - 7361 + - 7360 + - 7358 + - 7357 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad @@ -5608,12 +5609,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13083 - - 611 - - 6915 - - 146 - - 396 - - uid: 13109 + - 393 + - 9672 + - 9661 + - 7357 + - 7364 + - 9586 + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad @@ -5621,28 +5623,26 @@ entities: parent: 2 - type: DeviceList devices: - - 1155 - - 977 - - 637 - - 638 - - 13106 - - 6036 - - 1191 - - uid: 13110 + - 9494 + - 9703 + - 7316 + - 7317 + - 394 + - 9820 + - 9607 + - uid: 15 components: - type: Transform pos: 3.5,-36.5 parent: 2 - type: DeviceList devices: - - 1239 - - 954 - - 13107 - - 610 - - 639 - - 6036 - - 1191 - - uid: 13115 + - 9690 + - 9477 + - 395 + - 7315 + - 7318 + - uid: 16 components: - type: Transform rot: 3.141592653589793 rad @@ -5650,17 +5650,20 @@ entities: parent: 2 - type: DeviceList devices: - - 1427 - - 13119 - - 1372 - - 13111 - - 13112 - - 13113 - - 13114 - - 10757 - - 13120 - - 1408 - - uid: 13116 + - 7370 + - 397 + - 7368 + - 7332 + - 7333 + - 7334 + - 7335 + - 7429 + - 398 + - 7369 + - 9579 + - 9501 + - 9476 + - uid: 17 components: - type: Transform rot: 1.5707963267948966 rad @@ -5668,11 +5671,11 @@ entities: parent: 2 - type: DeviceList devices: - - 13118 - - 4056 - - 2076 - - 10757 - - uid: 13117 + - 396 + - 9745 + - 9495 + - 7429 + - uid: 18 components: - type: Transform rot: -1.5707963267948966 rad @@ -5680,16 +5683,16 @@ entities: parent: 2 - type: DeviceList devices: - - 13121 - - 1429 - - 13113 - - 13114 - - 13112 - - 13111 - - 1326 - - 1238 - - 1431 - - uid: 13124 + - 399 + - 7371 + - 7334 + - 7335 + - 7333 + - 7332 + - 9695 + - 9485 + - 7372 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad @@ -5697,11 +5700,11 @@ entities: parent: 2 - type: DeviceList devices: - - 1409 - - 13122 - - 1415 - - 1372 - - uid: 13146 + - 9699 + - 400 + - 9492 + - 7368 + - uid: 20 components: - type: Transform rot: -1.5707963267948966 rad @@ -5709,34 +5712,36 @@ entities: parent: 2 - type: DeviceList devices: - - 13145 - - 13137 - - 4508 - - 13127 - - 13128 - - 13129 - - 13133 - - 13132 - - 12954 - - 13134 - - 13135 - - 13136 - - uid: 13147 + - 9646 + - 405 + - 7336 + - 7337 + - 7338 + - 7434 + - 7433 + - 7431 + - 7435 + - 7436 + - 7437 + - uid: 21 components: - type: Transform pos: 2.5,-80.5 parent: 2 - type: DeviceList devices: - - 13133 - - 13132 - - 12954 - - 3310 - - 3351 - - 13125 - - 1701 - - 1702 - - uid: 13148 + - 7434 + - 7433 + - 7431 + - 9710 + - 9821 + - 401 + - 7375 + - 7376 + - 9594 + - 9593 + - 9502 + - uid: 22 components: - type: Transform rot: 3.141592653589793 rad @@ -5744,30 +5749,32 @@ entities: parent: 2 - type: DeviceList devices: - - 1544 - - 3314 - - 3392 - - 13126 - - 13136 - - 13135 - - 13134 - - uid: 13150 + - 7374 + - 9711 + - 9508 + - 402 + - 7437 + - 7436 + - 7435 + - 9596 + - 9666 + - uid: 23 components: - type: Transform pos: 2.5,-84.5 parent: 2 - type: DeviceList devices: - - 1701 - - 13127 - - 13128 - - 13129 - - 13130 - - 4509 - - 4360 - - 1725 - - 1715 - - uid: 13151 + - 7375 + - 7336 + - 7337 + - 7338 + - 403 + - 9749 + - 9537 + - 7319 + - 7378 + - uid: 24 components: - type: Transform rot: 1.5707963267948966 rad @@ -5775,13 +5782,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13131 - - 3262 - - 3261 - - 3371 - - 1723 - - 1726 - - uid: 13152 + - 404 + - 9705 + - 9704 + - 9503 + - 7379 + - 7320 + - uid: 25 components: - type: Transform rot: 1.5707963267948966 rad @@ -5789,10 +5796,10 @@ entities: parent: 2 - type: DeviceList devices: - - 13153 - - 3284 - - 3372 - - uid: 13161 + - 407 + - 9708 + - 9504 + - uid: 26 components: - type: Transform rot: 3.141592653589793 rad @@ -5800,38 +5807,41 @@ entities: parent: 2 - type: DeviceList devices: - - 13158 - - 13159 - - 2407 - - 2408 - - 2409 - - 13157 - - 13156 - - 13155 - - 3630 - - 3436 - - 13154 - - 13160 - - 3474 - - 3550 - - 3475 - - 3551 - - 3437 - - 3549 - - 13149 - - uid: 13165 + - 7438 + - 7439 + - 7383 + - 7384 + - 7385 + - 7341 + - 7340 + - 7339 + - 9727 + - 9510 + - 408 + - 7440 + - 9516 + - 9716 + - 9517 + - 9717 + - 9511 + - 9715 + - 406 + - 9518 + - 9519 + - 9520 + - uid: 27 components: - type: Transform pos: -0.5,-118.5 parent: 2 - type: DeviceList devices: - - 13164 - - 3483 - - 3600 - - 13163 - - 2410 - - uid: 13166 + - 409 + - 9524 + - 9722 + - 7441 + - 7386 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad @@ -5839,8 +5849,8 @@ entities: parent: 2 - type: DeviceList devices: - - 3626 - - uid: 13168 + - 9525 + - uid: 29 components: - type: Transform rot: 3.141592653589793 rad @@ -5848,24 +5858,23 @@ entities: parent: 2 - type: DeviceList devices: - - 13167 - - 3480 - - 3603 - - 13163 - - 13158 - - 13159 - - 2406 - - 2405 - - 2256 - - 3478 - - 3553 - - 3477 - - 3513 - - 3476 - - 3552 - - 3608 - - 2410 - - uid: 13171 + - 410 + - 9522 + - 9723 + - 7441 + - 7438 + - 7439 + - 7382 + - 7381 + - 7380 + - 9719 + - 9714 + - 9718 + - 9724 + - 7386 + - 9598 + - 9667 + - uid: 30 components: - type: Transform rot: -1.5707963267948966 rad @@ -5873,12 +5882,12 @@ entities: parent: 2 - type: DeviceList devices: - - 2411 - - 13170 - - 2412 - - 3457 - - 3599 - - uid: 13176 + - 7387 + - 411 + - 7388 + - 9515 + - 9721 + - uid: 31 components: - type: Transform rot: -1.5707963267948966 rad @@ -5886,15 +5895,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2834 - - 2835 - - 2836 - - 13173 - - 13172 - - 3647 - - 4016 - - 2833 - - uid: 13178 + - 7397 + - 7398 + - 7399 + - 7443 + - 7442 + - 9731 + - 7396 + - uid: 32 components: - type: Transform rot: 1.5707963267948966 rad @@ -5902,15 +5910,15 @@ entities: parent: 2 - type: DeviceList devices: - - 2830 - - 2829 - - 2828 - - 13174 - - 2827 - - 2826 - - 13173 - - 13172 - - uid: 13180 + - 7393 + - 7392 + - 7391 + - 7444 + - 7390 + - 7389 + - 7443 + - 7442 + - uid: 33 components: - type: Transform rot: -1.5707963267948966 rad @@ -5918,26 +5926,25 @@ entities: parent: 2 - type: DeviceList devices: - - 4568 - - 13179 - - 3980 - - 2830 - - 2829 - - 2828 - - 2831 - - uid: 13182 + - 9542 + - 414 + - 9737 + - 7393 + - 7392 + - 7391 + - 7394 + - uid: 34 components: - type: Transform pos: 4.5,-136.5 parent: 2 - type: DeviceList devices: - - 2831 - - 2832 - - 3954 - - 3650 - - 13181 - - uid: 13185 + - 7394 + - 7395 + - 9736 + - 415 + - uid: 35 components: - type: Transform rot: 1.5707963267948966 rad @@ -5945,15 +5952,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13184 - - 13183 - - 3993 - - 4033 - - 2836 - - 2835 - - 2834 - - 2837 - - uid: 13187 + - 417 + - 416 + - 9739 + - 9529 + - 7399 + - 7398 + - 7397 + - 7400 + - uid: 36 components: - type: Transform rot: 1.5707963267948966 rad @@ -5961,11 +5968,11 @@ entities: parent: 2 - type: DeviceList devices: - - 4031 - - 4037 - - 13186 - - 2837 - - uid: 13189 + - 9528 + - 9742 + - 418 + - 7400 + - uid: 37 components: - type: Transform rot: 1.5707963267948966 rad @@ -5973,11 +5980,11 @@ entities: parent: 2 - type: DeviceList devices: - - 13188 - - 4556 - - 4559 - - 2826 - - uid: 13209 + - 419 + - 9751 + - 9540 + - 7389 + - uid: 38 components: - type: Transform rot: 1.5707963267948966 rad @@ -5985,15 +5992,16 @@ entities: parent: 2 - type: DeviceList devices: - - 13207 - - 13206 - - 13204 - - 13205 - - 13192 - - 13193 - - 13194 - - 1498 - - uid: 13211 + - 9656 + - 420 + - 7452 + - 7453 + - 7342 + - 7343 + - 7344 + - 7373 + - 9583 + - uid: 39 components: - type: Transform rot: 1.5707963267948966 rad @@ -6001,13 +6009,13 @@ entities: parent: 2 - type: DeviceList devices: - - 5252 - - 5251 - - 13210 - - 13199 - - 13191 - - 13190 - - uid: 13213 + - 9521 + - 9752 + - 421 + - 7449 + - 7446 + - 7445 + - uid: 40 components: - type: Transform rot: 1.5707963267948966 rad @@ -6015,35 +6023,33 @@ entities: parent: 2 - type: DeviceList devices: - - 13212 - - 5261 - - 5275 - - 13197 - - 13196 - - uid: 13218 + - 422 + - 7448 + - 7447 + - uid: 41 components: - type: Transform pos: 4.5,-164.5 parent: 2 - type: DeviceList devices: - - 5301 - - 5302 - - 13217 - - 13192 - - 13193 - - 13194 - - 13202 - - 13201 - - 13200 - - 13203 - - uid: 13220 + - 9773 + - 9569 + - 424 + - 7342 + - 7343 + - 7344 + - 7346 + - 7345 + - 7450 + - 7451 + - uid: 42 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-171.5 parent: 2 - - uid: 13239 + - uid: 43 components: - type: Transform rot: -1.5707963267948966 rad @@ -6051,46 +6057,49 @@ entities: parent: 2 - type: DeviceList devices: - - 13238 - - 13223 - - 13224 - - 13237 - - 13236 - - 5129 - - 5128 - - 13225 - - 13226 - - uid: 13241 + - 428 + - 7454 + - 7455 + - 9647 + - 9834 + - 7403 + - 7402 + - 7456 + - 7457 + - uid: 44 components: - type: Transform pos: 2.5,-188.5 parent: 2 - type: DeviceList devices: - - 13224 - - 13223 - - 5073 - - 5082 - - 5134 - - 13221 - - 9827 - - 8852 - - 15086 - - uid: 13244 + - 7455 + - 7454 + - 9782 + - 9538 + - 7407 + - 425 + - 7427 + - 7426 + - 7510 + - 9589 + - 9628 + - 9591 + - uid: 45 components: - type: Transform pos: -0.5,-204.5 parent: 2 - type: DeviceList devices: - - 5070 - - 4967 - - 13227 - - 13226 - - 13225 - - 13242 - - 15087 - - uid: 13247 + - 9762 + - 9545 + - 427 + - 7457 + - 7456 + - 7458 + - 7511 + - uid: 46 components: - type: Transform rot: 1.5707963267948966 rad @@ -6098,13 +6107,13 @@ entities: parent: 2 - type: DeviceList devices: - - 5127 - - 13246 - - 5129 - - 5128 - - 5135 - - 5130 - - uid: 13249 + - 9557 + - 429 + - 7403 + - 7402 + - 7408 + - 7404 + - uid: 47 components: - type: Transform rot: 1.5707963267948966 rad @@ -6112,12 +6121,10 @@ entities: parent: 2 - type: DeviceList devices: - - 13248 - - 5072 - - 5083 - - 5135 - - 5134 - - uid: 13251 + - 430 + - 7408 + - 7407 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad @@ -6125,12 +6132,12 @@ entities: parent: 2 - type: DeviceList devices: - - 5108 - - 13250 - - 5107 - - 5130 - - 5131 - - uid: 13252 + - 9553 + - 431 + - 9765 + - 7404 + - 7405 + - uid: 49 components: - type: Transform rot: -1.5707963267948966 rad @@ -6138,50 +6145,48 @@ entities: parent: 2 - type: DeviceList devices: - - 13253 - - 4981 - - 13254 - - 4670 - - 5110 - - 4905 - - 5068 - - 13255 - - 5121 - - 5131 - - 13242 - - uid: 13317 + - 432 + - 9758 + - 433 + - 9754 + - 9554 + - 9543 + - 9760 + - 434 + - 9555 + - 7405 + - 7458 + - uid: 50 components: - type: Transform pos: -0.5,-272.5 parent: 2 - type: DeviceList devices: - - 13314 - - 13315 - - 13316 - - 12341 - - 12340 - - 13313 - - 13312 - - 13311 - - 13310 - - uid: 13322 + - 7465 + - 7466 + - 440 + - 7464 + - 7348 + - 7347 + - 7463 + - uid: 51 components: - type: Transform pos: 4.5,-269.5 parent: 2 - type: DeviceList devices: - - 13321 - - 13320 - - 13319 - - 13313 - - 13312 - - 13311 - - 13318 - - 12322 - - 12333 - - uid: 13333 + - 7469 + - 7468 + - 7467 + - 7464 + - 7348 + - 7347 + - 441 + - 9644 + - 9688 + - uid: 52 components: - type: Transform rot: 1.5707963267948966 rad @@ -6189,15 +6194,13 @@ entities: parent: 2 - type: DeviceList devices: - - 13325 - - 12356 - - 12355 - - 13326 - - 13328 - - 13314 - - 13315 - - 13332 - - uid: 13335 + - 443 + - 444 + - 7471 + - 7465 + - 7466 + - 7472 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad @@ -6205,11 +6208,11 @@ entities: parent: 2 - type: DeviceList devices: - - 12362 - - 13334 - - 12298 - - 13332 - - uid: 13341 + - 9612 + - 445 + - 9802 + - 7472 + - uid: 54 components: - type: Transform rot: 3.141592653589793 rad @@ -6217,17 +6220,17 @@ entities: parent: 2 - type: DeviceList devices: - - 12224 - - 13336 - - 12305 - - 13337 - - 13319 - - 13320 - - 13338 - - 10538 - - 13340 - - 13339 - - uid: 13358 + - 9797 + - 446 + - 9605 + - 447 + - 7467 + - 7468 + - 7473 + - 7428 + - 7475 + - 7474 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad @@ -6235,36 +6238,38 @@ entities: parent: 2 - type: DeviceList devices: - - 3400 - - 12704 - - 12705 - - 13347 - - 13346 - - 13345 - - 13354 - - 13353 - - 13355 - - 13356 - - 13357 - - uid: 13365 + - 386 + - 9769 + - 9484 + - 7481 + - 7480 + - 7479 + - 7483 + - 7482 + - 7349 + - 7350 + - 7351 + - 9620 + - 9478 + - uid: 56 components: - type: Transform pos: 10.5,-305.5 parent: 2 - type: DeviceList devices: - - 13361 - - 13360 - - 13342 - - 13343 - - 13344 - - 13359 - - 12501 - - 12502 - - 13362 - - 13363 - - 13364 - - uid: 13370 + - 7485 + - 7484 + - 7476 + - 7477 + - 7478 + - 448 + - 9618 + - 9808 + - 7486 + - 7487 + - 7488 + - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad @@ -6272,12 +6277,15 @@ entities: parent: 2 - type: DeviceList devices: - - 13368 - - 13367 - - 13366 - - 12430 - - 12530 - - uid: 13374 + - 7489 + - 9807 + - 9771 + - 9564 + - 9632 + - 9621 + - 7415 + - 7416 + - uid: 58 components: - type: Transform rot: 3.141592653589793 rad @@ -6285,28 +6293,26 @@ entities: parent: 2 - type: DeviceList devices: - - 13371 - - 12428 - - 12433 - - 13367 - - 13372 - - 13373 - - uid: 13382 + - 450 + - 7489 + - 7491 + - 7492 + - uid: 59 components: - type: Transform pos: -6.5,-298.5 parent: 2 - type: DeviceList devices: - - 12581 - - 12580 - - 13380 - - 13377 - - 13381 - - 13357 - - 13356 - - 13355 - - uid: 13383 + - 9811 + - 9625 + - 451 + - 7493 + - 7494 + - 7351 + - 7350 + - 7349 + - uid: 60 components: - type: Transform rot: -1.5707963267948966 rad @@ -6314,27 +6320,29 @@ entities: parent: 2 - type: DeviceList devices: - - 12508 - - 12564 - - 4689 - - 13360 - - uid: 13391 + - 9619 + - 9810 + - 387 + - 7484 + - uid: 61 components: - type: Transform pos: -0.5,-328.5 parent: 2 - type: DeviceList devices: - - 13384 - - 12898 - - 12896 - - 13390 - - 13386 - - 13387 - - 9425 - - 10870 - - 9426 - - uid: 13402 + - 452 + - 9566 + - 9772 + - 7497 + - 7495 + - 7496 + - 7328 + - 7330 + - 7329 + - 9621 + - 9632 + - uid: 62 components: - type: Transform rot: 1.5707963267948966 rad @@ -6342,64 +6350,63 @@ entities: parent: 2 - type: DeviceList devices: - - 13401 - - 12813 - - 12920 - - 13396 - - uid: 13421 + - 454 + - 9763 + - 9651 + - 7499 + - uid: 63 components: - type: Transform pos: -3.5,-359.5 parent: 2 - type: DeviceList devices: - - 1278 - - 13420 - - 13417 - - 12984 - - 13041 - - 13067 - - 12985 - - 13416 - - 13419 - - 13418 - - 13068 - - 12988 - - 13040 - - 12989 - - 13039 - - 13423 - - 13424 - - 13082 - - 13415 - - 13414 - - 13412 - - 13413 - - 12754 - - 12932 - - 12933 - - 13081 - - 12944 - - 12943 - - 16682 - - 11912 - - 16679 - - uid: 13426 + - 9486 + - 7508 + - 7505 + - 9635 + - 9573 + - 9572 + - 9636 + - 7504 + - 7507 + - 7506 + - 9682 + - 9639 + - 9681 + - 9640 + - 9827 + - 456 + - 457 + - 9776 + - 7503 + - 7502 + - 7500 + - 7501 + - 9633 + - 9824 + - 9777 + - 9825 + - 9634 + - 7355 + - 9830 + - 9669 + - uid: 64 components: - type: Transform pos: -4.5,-369.5 parent: 2 - type: DeviceList devices: - - 13422 - - 13094 - - 12987 - - 13425 - - 13088 - - 12986 - - 13419 - - 13418 - - uid: 13429 + - 455 + - 9832 + - 9638 + - 458 + - 9831 + - 9637 + - 7507 + - 7506 + - uid: 65 components: - type: Transform rot: 1.5707963267948966 rad @@ -6407,10 +6414,12 @@ entities: parent: 2 - type: DeviceList devices: - - 13427 - - 13053 - - 12994 - - uid: 14727 + - 459 + - 9780 + - 9641 + - 9642 + - 9466 + - uid: 66 components: - type: Transform rot: 3.141592653589793 rad @@ -6418,13 +6427,12 @@ entities: parent: 2 - type: DeviceList devices: - - 14726 - - 1378 - - 1375 - - 9827 - - 8852 - - 14728 - - uid: 15278 + - 460 + - 9697 + - 7427 + - 7426 + - 7509 + - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad @@ -6432,31 +6440,33 @@ entities: parent: 2 - type: DeviceList devices: - - 8213 - - 7879 - - 8483 - - 8009 - - 15275 - - 13108 - - 8012 - - 12324 - - 9085 - - 17000 - - uid: 15279 + - 7424 + - 7419 + - 7425 + - 7421 + - 462 + - 7432 + - 7422 + - 7331 + - 7327 + - 7314 + - 9610 + - 9631 + - uid: 68 components: - type: Transform pos: 4.5,-241.5 parent: 2 - type: DeviceList devices: - - 15274 - - 8091 - - 8071 - - 8213 - - 7879 - - 8483 - - 7885 - - uid: 15280 + - 461 + - 9790 + - 9585 + - 7424 + - 7419 + - 7425 + - 7420 + - uid: 69 components: - type: Transform rot: -1.5707963267948966 rad @@ -6464,17 +6474,15 @@ entities: parent: 2 - type: DeviceList devices: - - 8089 - - 15277 - - 8314 - - 6858 - - 7885 - - 9085 - - 12324 - - 8037 - - 6857 - - 15281 - - uid: 15282 + - 464 + - 7413 + - 7420 + - 7327 + - 7331 + - 7423 + - 7412 + - 7512 + - uid: 70 components: - type: Transform rot: 1.5707963267948966 rad @@ -6482,18 +6490,20 @@ entities: parent: 2 - type: DeviceList devices: - - 15284 - - 15283 - - 15276 - - 6726 - - 8037 - - 13108 - - 8012 - - 15285 - - 15286 - - 15287 - - 7820 - - uid: 15292 + - 9552 + - 9548 + - 463 + - 7409 + - 7423 + - 7432 + - 7422 + - 7352 + - 7353 + - 7354 + - 7417 + - 9757 + - 9544 + - uid: 71 components: - type: Transform rot: 3.141592653589793 rad @@ -6501,18 +6511,20 @@ entities: parent: 2 - type: DeviceList devices: - - 15289 - - 7476 - - 4202 - - 7776 - - 4950 - - 15288 - - 6855 - - 7821 - - 6856 - - 15290 - - 15291 - - uid: 16971 + - 466 + - 9546 + - 9826 + - 9828 + - 9581 + - 465 + - 7410 + - 7418 + - 7411 + - 7513 + - 7514 + - 9550 + - 9759 + - uid: 72 components: - type: Transform rot: -1.5707963267948966 rad @@ -6520,120 +6532,114 @@ entities: parent: 2 - type: DeviceList devices: - - 16996 - - 17001 - - 16990 + - 7516 + - 9838 + - 9670 - proto: AirCanister entities: - - uid: 4848 + - uid: 73 components: - type: Transform pos: -21.5,-260.5 parent: 2 + - uid: 74 + components: + - type: Transform + pos: -0.5,-327.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: -0.5,-354.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -1.5,-168.5 + parent: 2 - proto: Airlock entities: - - uid: 2078 + - uid: 76 components: - type: Transform pos: -5.5,-110.5 parent: 2 - - uid: 2079 + - uid: 77 components: - type: Transform pos: -5.5,-113.5 parent: 2 - - type: DeviceLinkSink - links: - - 2096 - - uid: 2080 + - uid: 78 components: - type: Transform pos: -5.5,-116.5 parent: 2 - - type: DeviceLinkSink - links: - - 2095 - - uid: 2081 + - uid: 79 components: - type: Transform pos: -5.5,-119.5 parent: 2 - - type: DeviceLinkSink - links: - - 2094 - - uid: 2640 + - uid: 80 components: - type: Transform pos: -1.5,-151.5 parent: 2 - - uid: 2645 + - uid: 81 components: - type: Transform pos: -5.5,-150.5 parent: 2 - - type: DeviceLinkSink - links: - - 11933 - - uid: 4109 + - uid: 82 components: - type: Transform pos: -5.5,-152.5 parent: 2 - - type: DeviceLinkSink - links: - - 11983 - proto: AirlockArmoryLocked entities: - - uid: 2846 + - uid: 83 components: - type: Transform pos: 0.5,-361.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 5042 + - uid: 84 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 7746 + - uid: 85 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 16880 + - uid: 86 components: - type: Transform pos: -6.5,-260.5 parent: 2 - proto: AirlockBarLocked entities: - - uid: 1227 + - uid: 87 components: - type: Transform pos: 2.5,-62.5 parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 10636 + - uid: 88 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-334.5 parent: 2 - - type: DeviceLinkSink - links: - - 9683 - - uid: 10746 + - uid: 89 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-334.5 parent: 2 - - type: DeviceLinkSink - links: - - 9683 - - uid: 12983 + - uid: 90 components: - type: Transform rot: 3.141592653589793 rad @@ -6641,54 +6647,54 @@ entities: parent: 2 - proto: AirlockBrigLocked entities: - - uid: 323 + - uid: 91 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 326 + - uid: 92 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 405 + - uid: 93 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 614 + - uid: 94 components: - type: Transform pos: 0.5,-355.5 parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 155 + - uid: 95 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 293 + - uid: 96 components: - type: Transform pos: -2.5,-12.5 parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 8466 + - uid: 97 components: - type: Transform pos: 2.5,-274.5 parent: 2 - proto: AirlockCargoLocked entities: - - uid: 8495 + - uid: 98 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-275.5 parent: 2 - - uid: 8498 + - uid: 99 components: - type: Transform rot: 1.5707963267948966 rad @@ -6696,14 +6702,14 @@ entities: parent: 2 - proto: AirlockChapelLocked entities: - - uid: 2678 + - uid: 100 components: - type: Transform pos: 4.5,-140.5 parent: 2 - proto: AirlockChemistryGlassLocked entities: - - uid: 14309 + - uid: 101 components: - type: Transform rot: 3.141592653589793 rad @@ -6711,12 +6717,12 @@ entities: parent: 2 - proto: AirlockChiefEngineerLocked entities: - - uid: 330 + - uid: 102 components: - type: Transform pos: 18.5,-262.5 parent: 2 - - uid: 8019 + - uid: 103 components: - type: Transform rot: 1.5707963267948966 rad @@ -6724,24 +6730,24 @@ entities: parent: 2 - proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 8675 + - uid: 104 components: - type: Transform pos: 2.5,-200.5 parent: 2 - proto: AirlockCommandGlassLocked entities: - - uid: 26 + - uid: 105 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 31 + - uid: 106 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 13385 + - uid: 107 components: - type: Transform rot: 3.141592653589793 rad @@ -6749,202 +6755,198 @@ entities: parent: 2 - proto: AirlockCommandLocked entities: - - uid: 131 + - uid: 108 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 181 + - uid: 109 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 394 + - uid: 110 components: - type: Transform pos: 5.5,-0.5 parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 1368 + - uid: 111 components: - type: Transform pos: -4.5,-69.5 parent: 2 - proto: AirlockEngineeringGlass entities: - - uid: 17038 + - uid: 112 components: - type: Transform pos: -3.5,-248.5 parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 311 + - uid: 113 components: - type: Transform pos: 2.5,-256.5 parent: 2 - - uid: 14648 + - uid: 114 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-246.5 parent: 2 - - uid: 16873 + - uid: 115 components: - type: Transform pos: -8.5,-248.5 parent: 2 - - uid: 16879 + - uid: 116 components: - type: Transform pos: -6.5,-243.5 parent: 2 - - uid: 16945 + - uid: 117 components: - type: Transform pos: -12.5,-248.5 parent: 2 - - uid: 16991 + - uid: 118 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 190 + - uid: 119 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 1433 + - uid: 120 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 2040 + - uid: 121 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 2189 + - uid: 122 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 2817 + - uid: 123 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 4715 + - uid: 124 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 4723 + - uid: 125 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 7534 + - uid: 126 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-248.5 parent: 2 - - uid: 7804 + - uid: 127 components: - type: Transform pos: 18.5,-244.5 parent: 2 - - uid: 8001 + - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-256.5 parent: 2 - - uid: 8022 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-248.5 parent: 2 - - uid: 8023 + - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-256.5 parent: 2 - - uid: 9019 + - uid: 131 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 10149 + - uid: 132 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 12572 + - uid: 133 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 12906 + - uid: 134 components: - type: Transform pos: 5.5,-360.5 parent: 2 - proto: AirlockExternal entities: - - uid: 1758 + - uid: 135 components: - type: Transform pos: -6.5,-96.5 parent: 2 - - uid: 12099 + - uid: 136 components: - type: Transform pos: 5.5,-381.5 parent: 2 - proto: AirlockExternalEngineeringLocked entities: - - uid: 1921 + - uid: 137 components: - type: Transform pos: -14.5,-235.5 parent: 2 - - uid: 2424 + - uid: 138 components: - type: Transform pos: -15.5,-237.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3536 - type: DeviceLinkSource linkedPorts: - 3536: + 139: - DoorStatus: DoorBolt - DoorStatus: Close - - uid: 3536 + - uid: 139 components: - type: Transform pos: -14.5,-239.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 2424 - type: DeviceLinkSource linkedPorts: - 2424: + 138: - DoorStatus: Close - DoorStatus: DoorBolt - - uid: 8003 + - uid: 140 components: - type: Transform rot: 1.5707963267948966 rad @@ -6952,19 +6954,19 @@ entities: parent: 2 - proto: AirlockExternalGlass entities: - - uid: 728 + - uid: 141 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 15794 + - uid: 142 components: - type: Transform pos: -7.5,-36.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 13348 + - uid: 143 components: - type: Transform rot: -1.5707963267948966 rad @@ -6972,13 +6974,11 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 14345 - type: DeviceLinkSource linkedPorts: - 14345: + 144: - DoorStatus: DoorBolt - - uid: 14345 + - uid: 144 components: - type: Transform rot: -1.5707963267948966 rad @@ -6986,119 +6986,99 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 13348 - type: DeviceLinkSource linkedPorts: - 13348: + 143: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - - uid: 8762 + - uid: 145 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-269.5 parent: 2 - - uid: 9004 + - uid: 146 components: - type: Transform pos: 9.5,-280.5 parent: 2 - - uid: 9005 + - uid: 147 components: - type: Transform pos: 9.5,-278.5 parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 1808 + - uid: 148 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-228.5 parent: 2 - - type: DeviceLinkSink - links: - - 4512 - type: DeviceLinkSource linkedPorts: - 4512: + 152: - DoorStatus: DoorBolt - - uid: 3017 + - uid: 149 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-228.5 parent: 2 - - type: DeviceLinkSink - links: - - 4513 - type: DeviceLinkSource linkedPorts: - 4513: + 153: - DoorStatus: DoorBolt - - uid: 4494 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-221.5 parent: 2 - - type: DeviceLinkSink - links: - - 4510 - type: DeviceLinkSource linkedPorts: - 4510: + 151: - DoorStatus: DoorBolt - - uid: 4510 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 4494 - type: DeviceLinkSource linkedPorts: - 4494: + 150: - DoorStatus: DoorBolt - - uid: 4512 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - - type: DeviceLinkSink - links: - - 1808 - type: DeviceLinkSource linkedPorts: - 1808: + 148: - DoorStatus: DoorBolt - - uid: 4513 + - uid: 153 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - - type: DeviceLinkSink - links: - - 3017 - type: DeviceLinkSource linkedPorts: - 3017: + 149: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 574 + - uid: 154 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-36.5 parent: 2 - - uid: 575 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad @@ -7106,13 +7086,13 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 441 + - uid: 156 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-31.5 parent: 2 - - uid: 573 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad @@ -7120,18 +7100,18 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 541 + - uid: 158 components: - type: Transform pos: -4.5,-46.5 parent: 2 - - uid: 11311 + - uid: 159 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-295.5 parent: 2 - - uid: 11451 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad @@ -7139,37 +7119,37 @@ entities: parent: 2 - proto: AirlockExternalLocked entities: - - uid: 879 + - uid: 161 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 1007 + - uid: 162 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 1013 + - uid: 163 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 1691 + - uid: 164 components: - type: Transform pos: -4.5,-242.5 parent: 2 - - uid: 1763 + - uid: 165 components: - type: Transform pos: -4.5,-262.5 parent: 2 - - uid: 1924 + - uid: 166 components: - type: Transform pos: 5.5,-321.5 parent: 2 - - uid: 3355 + - uid: 167 components: - type: Transform rot: 3.141592653589793 rad @@ -7177,50 +7157,50 @@ entities: parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 1576 + - uid: 168 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 1662 + - uid: 169 components: - type: Transform pos: -0.5,-91.5 parent: 2 - - uid: 1677 + - uid: 170 components: - type: Transform pos: -3.5,-94.5 parent: 2 - proto: AirlockGlass entities: - - uid: 2662 + - uid: 171 components: - type: Transform pos: 3.5,-147.5 parent: 2 - - uid: 2663 + - uid: 172 components: - type: Transform pos: 4.5,-147.5 parent: 2 - - uid: 2664 + - uid: 173 components: - type: Transform pos: 5.5,-147.5 parent: 2 - - uid: 2714 + - uid: 174 components: - type: Transform pos: -1.5,-139.5 parent: 2 - - uid: 2717 + - uid: 175 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - - uid: 2718 + - uid: 176 components: - type: Transform rot: 1.5707963267948966 rad @@ -7228,37 +7208,37 @@ entities: parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 8830 + - uid: 177 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-280.5 parent: 2 - - uid: 8831 + - uid: 178 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-278.5 parent: 2 - - uid: 8834 + - uid: 179 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-273.5 parent: 2 - - uid: 8835 + - uid: 180 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-272.5 parent: 2 - - uid: 10680 + - uid: 181 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-146.5 parent: 2 - - uid: 10744 + - uid: 182 components: - type: Transform rot: 1.5707963267948966 rad @@ -7266,24 +7246,24 @@ entities: parent: 2 - proto: AirlockHatch entities: - - uid: 1616 + - uid: 183 components: - type: Transform pos: 13.5,-307.5 parent: 2 - - uid: 8239 + - uid: 184 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-302.5 parent: 2 - - uid: 8240 + - uid: 185 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-307.5 parent: 2 - - uid: 8424 + - uid: 186 components: - type: Transform rot: 1.5707963267948966 rad @@ -7291,170 +7271,139 @@ entities: parent: 2 - proto: AirlockHatchMaintenance entities: - - uid: 12 + - uid: 187 components: - type: Transform pos: 0.5,-53.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 3544: + 16522: - DoorStatus: Close - 9343: + 16533: - DoorStatus: Close - - uid: 20 + - uid: 188 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: Close - 9346: + 16534: - DoorStatus: Close - - uid: 269 + - uid: 189 components: - type: Transform pos: 0.5,-18.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: Close - 9346: + 16534: - DoorStatus: Close - - uid: 270 + - uid: 190 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 9343: + 16533: - DoorStatus: Close - 3544: + 16522: - DoorStatus: Close - - uid: 274 + - uid: 191 components: - type: Transform pos: 0.5,-72.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 3547: + 16525: - DoorStatus: Close - 9347: + 16535: - DoorStatus: Close - - uid: 276 + - uid: 192 components: - type: Transform pos: 0.5,-80.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 3547: + 16525: - DoorStatus: Close - 9347: + 16535: - DoorStatus: Close - - uid: 277 + - uid: 193 components: - type: Transform pos: 0.5,-99.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: Close - 9374: + 16536: - DoorStatus: Close - - uid: 279 + - uid: 194 components: - type: Transform pos: 0.5,-107.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 9374: + 16536: - DoorStatus: Close - 8135: + 16530: - DoorStatus: Close - - uid: 281 + - uid: 195 components: - type: Transform pos: 0.5,-126.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 283 - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 9423: + 16537: - DoorStatus: Close - 3545: + 16523: - DoorStatus: Close - - uid: 283 + - uid: 196 components: - type: Transform pos: 0.5,-134.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 9423: + 16537: - DoorStatus: Close - 3545: + 16523: - DoorStatus: Close - 281: + 195: - DoorStatus: Close - - uid: 616 + - uid: 197 components: - type: Transform rot: 3.141592653589793 rad @@ -7462,383 +7411,314 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: Close - 9459: + 16541: - DoorStatus: Close - - uid: 625 + - uid: 198 components: - type: Transform pos: 0.5,-153.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: Close - 9433: + 16538: - DoorStatus: Close - - uid: 656 + - uid: 199 components: - type: Transform pos: 0.5,-20.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: DoorBolt - 9346: + 16534: - DoorStatus: DoorBolt - - uid: 657 + - uid: 200 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 278 - - 9346 - type: DeviceLinkSource linkedPorts: - 278: + 16510: - DoorStatus: DoorBolt - 9346: + 16534: - DoorStatus: DoorBolt - - uid: 658 + - uid: 201 components: - type: Transform pos: 0.5,-105.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: DoorBolt - 9374: + 16536: - DoorStatus: DoorBolt - - uid: 662 + - uid: 202 components: - type: Transform pos: 0.5,-186.5 parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 3546 - - 280 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: DoorBolt - 280: + 16511: - DoorStatus: DoorBolt - - uid: 666 + - uid: 203 components: - type: Transform pos: 0.5,-161.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 9433: + 16538: - DoorStatus: Close - 8136: + 16531: - DoorStatus: Close - - uid: 667 + - uid: 204 components: - type: Transform pos: 0.5,-188.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: Close - 280: + 16511: - DoorStatus: Close - - uid: 670 + - uid: 205 components: - type: Transform pos: 0.5,-180.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 3546: + 16524: - DoorStatus: Close - 280: + 16511: - DoorStatus: Close - - uid: 671 + - uid: 206 components: - type: Transform pos: 0.5,-215.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: Close - 282: + 16512: - DoorStatus: Close - - uid: 991 + - uid: 207 components: - type: Transform pos: 0.5,-207.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: Close - 282: + 16512: - DoorStatus: Close - - uid: 1211 + - uid: 208 components: - type: Transform pos: 0.5,-242.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: Close - 8137: + 16532: - DoorStatus: Close - - uid: 1247 + - uid: 209 components: - type: Transform pos: 0.5,-234.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: Close - 8137: + 16532: - DoorStatus: Close - - uid: 4692 + - uid: 210 components: - type: Transform pos: 0.5,-74.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 9347: + 16535: - DoorStatus: DoorBolt - 3547: + 16525: - DoorStatus: DoorBolt - - uid: 4693 + - uid: 211 components: - type: Transform pos: 0.5,-78.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9347 - - 3547 - type: DeviceLinkSource linkedPorts: - 9347: + 16535: - DoorStatus: DoorBolt - 3547: + 16525: - DoorStatus: DoorBolt - - uid: 4694 + - uid: 212 components: - type: Transform pos: 0.5,-182.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 280 - - 3546 - type: DeviceLinkSource linkedPorts: - 280: + 16511: - DoorStatus: DoorBolt - 3546: + 16524: - DoorStatus: DoorBolt - - uid: 4695 + - uid: 213 components: - type: Transform pos: 0.5,-159.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: DoorBolt - 9433: + 16538: - DoorStatus: DoorBolt - - uid: 5216 + - uid: 214 components: - type: Transform pos: 0.5,-263.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: DoorBolt - 9459: + 16541: - DoorStatus: DoorBolt - - uid: 5259 + - uid: 215 components: - type: Transform pos: 0.5,-240.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: DoorBolt - 8137: + 16532: - DoorStatus: DoorBolt - - uid: 5467 + - uid: 216 components: - type: Transform pos: 0.5,-326.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: DoorBolt - 708: + 16516: - DoorStatus: DoorBolt - - uid: 7287 + - uid: 217 components: - type: Transform pos: 12.5,-162.5 parent: 2 - - uid: 7293 + - uid: 218 components: - type: Transform pos: 15.5,-157.5 parent: 2 - - uid: 7359 + - uid: 219 components: - type: Transform pos: 15.5,-155.5 parent: 2 - - uid: 8169 + - uid: 220 components: - type: Transform pos: 0.5,-132.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 3545: + 16523: - DoorStatus: DoorBolt - 9423: + 16537: - DoorStatus: DoorBolt - - uid: 8178 + - uid: 221 components: - type: Transform pos: 0.5,-47.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 9343: + 16533: - DoorStatus: DoorBolt - 3544: + 16522: - DoorStatus: DoorBolt - - uid: 8195 + - uid: 222 components: - type: Transform pos: 0.5,-213.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: DoorBolt - 282: + 16512: - DoorStatus: DoorBolt - - uid: 8639 + - uid: 223 components: - type: Transform rot: 1.5707963267948966 rad @@ -7846,16 +7726,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 9459 - - 9455 - type: DeviceLinkSource linkedPorts: - 9455: + 16540: - DoorStatus: Close - 9459: + 16541: - DoorStatus: Close - - uid: 8674 + - uid: 224 components: - type: Transform rot: 1.5707963267948966 rad @@ -7863,192 +7740,156 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5262: + 16526: - DoorStatus: Close - 5463: + 16527: - DoorStatus: Close - - uid: 8678 + - uid: 225 components: - type: Transform pos: 0.5,-290.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5262: + 16526: - DoorStatus: DoorBolt - 5463: + 16527: - DoorStatus: DoorBolt - - uid: 9375 + - uid: 226 components: - type: Transform pos: 0.5,-296.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5262 - - 5463 - type: DeviceLinkSource linkedPorts: - 5463: + 16527: - DoorStatus: Close - 5262: + 16526: - DoorStatus: Close - - uid: 9551 + - uid: 227 components: - type: Transform pos: 0.5,-155.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8136 - - 9433 - type: DeviceLinkSource linkedPorts: - 8136: + 16531: - DoorStatus: DoorBolt - 9433: + 16538: - DoorStatus: DoorBolt - - uid: 9552 + - uid: 228 components: - type: Transform pos: 0.5,-128.5 parent: 2 - type: DeviceLinkSink invokeCounter: 3 - links: - - 3545 - - 9423 - type: DeviceLinkSource linkedPorts: - 3545: + 16523: - DoorStatus: DoorBolt - 9423: + 16537: - DoorStatus: DoorBolt - - uid: 9553 + - uid: 229 components: - type: Transform pos: 0.5,-101.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9374 - - 8135 - type: DeviceLinkSource linkedPorts: - 8135: + 16530: - DoorStatus: DoorBolt - 9374: + 16536: - DoorStatus: DoorBolt - - uid: 9554 + - uid: 230 components: - type: Transform pos: 0.5,-51.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 3544 - - 9343 - type: DeviceLinkSource linkedPorts: - 3544: + 16522: - DoorStatus: DoorBolt - 9343: + 16533: - DoorStatus: DoorBolt - - uid: 9555 + - uid: 231 components: - type: Transform pos: 0.5,-209.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 282 - - 284 - type: DeviceLinkSource linkedPorts: - 284: + 16513: - DoorStatus: DoorBolt - 282: + 16512: - DoorStatus: DoorBolt - - uid: 9556 + - uid: 232 components: - type: Transform pos: 0.5,-236.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 8137 - - 9439 - type: DeviceLinkSource linkedPorts: - 9439: + 16539: - DoorStatus: DoorBolt - 8137: + 16532: - DoorStatus: DoorBolt - - uid: 9557 + - uid: 233 components: - type: Transform pos: 0.5,-267.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 9455 - - 9459 - type: DeviceLinkSource linkedPorts: - 9459: + 16541: - DoorStatus: DoorBolt - 9455: + 16540: - DoorStatus: DoorBolt - - uid: 9558 + - uid: 234 components: - type: Transform pos: 0.5,-294.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5463 - - 5262 - type: DeviceLinkSource linkedPorts: - 5463: + 16527: - DoorStatus: DoorBolt - 5262: + 16526: - DoorStatus: DoorBolt - - uid: 9685 + - uid: 235 components: - type: Transform pos: 0.5,-322.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: DoorBolt - 708: + 16516: - DoorStatus: DoorBolt - - uid: 10132 + - uid: 236 components: - type: Transform rot: 1.5707963267948966 rad @@ -8056,16 +7897,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 5466 - - 708 - type: DeviceLinkSource linkedPorts: - 5466: + 16528: - DoorStatus: Close - 708: + 16516: - DoorStatus: Close - - uid: 10646 + - uid: 237 components: - type: Transform rot: 1.5707963267948966 rad @@ -8073,16 +7911,13 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 2 - links: - - 708 - - 5466 - type: DeviceLinkSource linkedPorts: - 708: + 16516: - DoorStatus: Close - 5466: + 16528: - DoorStatus: Close - - uid: 11821 + - uid: 238 components: - type: Transform rot: -1.5707963267948966 rad @@ -8090,15 +7925,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11820: + 16542: - DoorStatus: Close - - uid: 11822 + - uid: 239 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-382.5 parent: 2 - - uid: 12945 + - uid: 240 components: - type: Transform rot: -1.5707963267948966 rad @@ -8106,19 +7941,19 @@ entities: parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 2229 + - uid: 241 components: - type: Transform pos: 3.5,-120.5 parent: 2 - - uid: 2230 + - uid: 242 components: - type: Transform pos: 0.5,-118.5 parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 10794 + - uid: 243 components: - type: Transform rot: -1.5707963267948966 rad @@ -8126,7 +7961,7 @@ entities: parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 1717 + - uid: 244 components: - type: Transform rot: -1.5707963267948966 rad @@ -8134,7 +7969,7 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 14801 + - uid: 245 components: - type: Transform rot: -1.5707963267948966 rad @@ -8142,54 +7977,54 @@ entities: parent: 2 - proto: AirlockLawyerLocked entities: - - uid: 570 + - uid: 246 components: - type: Transform pos: 3.5,-330.5 parent: 2 - proto: AirlockMaintBarLocked entities: - - uid: 961 + - uid: 247 components: - type: Transform pos: 5.5,-63.5 parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 8546 + - uid: 248 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 10846 + - uid: 249 components: - type: Transform pos: 5.5,-269.5 parent: 2 - proto: AirlockMaintChapelLocked entities: - - uid: 2715 + - uid: 250 components: - type: Transform pos: 7.5,-138.5 parent: 2 - proto: AirlockMaintChemLocked entities: - - uid: 3089 + - uid: 251 components: - type: Transform pos: 6.5,-164.5 parent: 2 - proto: AirlockMaintCommandLocked entities: - - uid: 423 + - uid: 252 components: - type: Transform pos: -2.5,1.5 parent: 2 - proto: AirlockMaintDetectiveLocked entities: - - uid: 5092 + - uid: 253 components: - type: Transform rot: -1.5707963267948966 rad @@ -8197,37 +8032,37 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14783: + 16547: - DoorStatus: DoorBolt - 268: + 16509: - DoorStatus: DoorBolt - proto: AirlockMaintEngiLocked entities: - - uid: 7533 + - uid: 254 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-260.5 parent: 2 - - uid: 7548 + - uid: 255 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-243.5 parent: 2 - - uid: 8122 + - uid: 256 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-260.5 parent: 2 - - uid: 8206 + - uid: 257 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-243.5 parent: 2 - - uid: 8522 + - uid: 258 components: - type: Transform rot: 1.5707963267948966 rad @@ -8235,12 +8070,12 @@ entities: parent: 2 - proto: AirlockMaintGlassLocked entities: - - uid: 2245 + - uid: 259 components: - type: Transform pos: -5.5,-107.5 parent: 2 - - uid: 13027 + - uid: 260 components: - type: Transform rot: 3.141592653589793 rad @@ -8248,14 +8083,14 @@ entities: parent: 2 - proto: AirlockMaintHOPLocked entities: - - uid: 2225 + - uid: 261 components: - type: Transform pos: 2.5,-116.5 parent: 2 - proto: AirlockMaintLocked entities: - - uid: 45 + - uid: 262 components: - type: Transform rot: -1.5707963267948966 rad @@ -8263,16 +8098,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14760: + 16545: - DoorStatus: DoorBolt - 14757: + 16544: - DoorStatus: DoorBolt - - uid: 46 + - uid: 263 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 397 + - uid: 264 components: - type: Transform rot: 3.141592653589793 rad @@ -8280,16 +8115,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14860: + 16551: - DoorStatus: DoorBolt - 14857: + 16548: - DoorStatus: DoorBolt - - uid: 601 + - uid: 265 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 622 + - uid: 266 components: - type: Transform rot: 3.141592653589793 rad @@ -8297,32 +8132,32 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14859: + 16550: - DoorStatus: DoorBolt - 14858: + 16549: - DoorStatus: DoorBolt - - uid: 640 + - uid: 267 components: - type: Transform pos: -4.5,-79.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 14783: + 16547: - DoorStatus: DoorBolt - 268: + 16509: - DoorStatus: DoorBolt - - uid: 706 + - uid: 268 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 758 + - uid: 269 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 811 + - uid: 270 components: - type: Transform rot: 1.5707963267948966 rad @@ -8330,11 +8165,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - - uid: 1068 + - uid: 271 components: - type: Transform rot: 3.141592653589793 rad @@ -8342,53 +8177,53 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14860: + 16551: - DoorStatus: DoorBolt - 14857: + 16548: - DoorStatus: DoorBolt - - uid: 1081 + - uid: 272 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 1478 + - uid: 273 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 1760 + - uid: 274 components: - type: Transform pos: -1.5,-81.5 parent: 2 - - uid: 1762 + - uid: 275 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 1933 + - uid: 276 components: - type: Transform pos: 5.5,-161.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15117: + 16558: - DoorStatus: DoorBolt - 15118: + 16559: - DoorStatus: DoorBolt - - uid: 1937 + - uid: 277 components: - type: Transform pos: 5.5,-154.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15117: + 16558: - DoorStatus: DoorBolt - 15118: + 16559: - DoorStatus: DoorBolt - - uid: 1938 + - uid: 278 components: - type: Transform rot: -1.5707963267948966 rad @@ -8396,11 +8231,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 3508: + 16521: - DoorStatus: DoorBolt - 15040: + 16557: - DoorStatus: DoorBolt - - uid: 2100 + - uid: 279 components: - type: Transform rot: 3.141592653589793 rad @@ -8408,16 +8243,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14890: + 16553: - DoorStatus: DoorBolt - 14891: + 16554: - DoorStatus: DoorBolt - - uid: 2202 + - uid: 280 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 2244 + - uid: 281 components: - type: Transform rot: -1.5707963267948966 rad @@ -8425,33 +8260,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14751: + 16543: - DoorStatus: DoorBolt - 605: + 16515: - DoorStatus: DoorBolt - - uid: 2413 + - uid: 282 components: - type: Transform pos: 5.5,-289.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15193: + 16561: - DoorStatus: DoorBolt - 15194: + 16562: - DoorStatus: DoorBolt - - uid: 2414 + - uid: 283 components: - type: Transform pos: 5.5,-295.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15193: + 16561: - DoorStatus: DoorBolt - 15194: + 16562: - DoorStatus: DoorBolt - - uid: 2492 + - uid: 284 components: - type: Transform rot: 1.5707963267948966 rad @@ -8459,21 +8294,21 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14768: + 16546: - DoorStatus: DoorBolt - 1335: + 16517: - DoorStatus: DoorBolt - - uid: 2562 + - uid: 285 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 2688 + - uid: 286 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 2690 + - uid: 287 components: - type: Transform rot: 1.5707963267948966 rad @@ -8481,26 +8316,26 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14880: + 16552: - DoorStatus: DoorBolt - 5738: + 16529: - DoorStatus: DoorBolt - - uid: 3207 + - uid: 288 components: - type: Transform pos: 2.5,-162.5 parent: 2 - - uid: 3213 + - uid: 289 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 3214 + - uid: 290 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 3782 + - uid: 291 components: - type: Transform rot: 3.141592653589793 rad @@ -8508,117 +8343,117 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14859: + 16550: - DoorStatus: DoorBolt - 14858: + 16549: - DoorStatus: DoorBolt - - uid: 5018 + - uid: 292 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-260.5 parent: 2 - - uid: 6286 + - uid: 293 components: - type: Transform pos: 5.5,-79.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 333: + 16514: - DoorStatus: DoorBolt - 2646: + 16520: - DoorStatus: DoorBolt - - uid: 6736 + - uid: 294 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-162.5 parent: 2 - - uid: 6778 + - uid: 295 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-243.5 parent: 2 - - uid: 6822 + - uid: 296 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-252.5 parent: 2 - - uid: 6963 + - uid: 297 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 7939 + - uid: 298 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-167.5 parent: 2 - - uid: 8428 + - uid: 299 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-260.5 parent: 2 - - uid: 8701 + - uid: 300 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-285.5 parent: 2 - - uid: 8796 + - uid: 301 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-254.5 parent: 2 - - uid: 9028 + - uid: 302 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-118.5 parent: 2 - - uid: 9522 + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-328.5 parent: 2 - - uid: 9818 + - uid: 304 components: - type: Transform pos: 1.5,-113.5 parent: 2 - - uid: 10062 + - uid: 305 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10063 + - uid: 306 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10067 + - uid: 307 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10068 + - uid: 308 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10069 + - uid: 309 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10531 + - uid: 310 components: - type: Transform rot: -1.5707963267948966 rad @@ -8626,58 +8461,58 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14751: + 16543: - DoorStatus: DoorBolt - 605: + 16515: - DoorStatus: DoorBolt - - uid: 12871 + - uid: 311 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-15.5 parent: 2 - - uid: 13169 + - uid: 312 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-190.5 parent: 2 - - uid: 13443 + - uid: 313 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-205.5 parent: 2 - - uid: 13453 + - uid: 314 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-41.5 parent: 2 - - uid: 13454 + - uid: 315 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-126.5 parent: 2 - - uid: 14554 + - uid: 316 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 14565 + - uid: 317 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-70.5 parent: 2 - - uid: 14749 + - uid: 318 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-52.5 parent: 2 - - uid: 14753 + - uid: 319 components: - type: Transform rot: -1.5707963267948966 rad @@ -8685,11 +8520,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14760: + 16545: - DoorStatus: DoorBolt - 14757: + 16544: - DoorStatus: DoorBolt - - uid: 14796 + - uid: 320 components: - type: Transform rot: 1.5707963267948966 rad @@ -8697,11 +8532,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 333: + 16514: - DoorStatus: DoorBolt - 2646: + 16520: - DoorStatus: DoorBolt - - uid: 14946 + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad @@ -8709,11 +8544,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - - uid: 15186 + - uid: 322 components: - type: Transform rot: -1.5707963267948966 rad @@ -8721,140 +8556,140 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 164: + 16508: - DoorStatus: DoorBolt - 15152: + 16560: - DoorStatus: DoorBolt - - uid: 16476 + - uid: 323 components: - type: Transform pos: -7.5,-162.5 parent: 2 - - uid: 16818 + - uid: 324 components: - type: Transform pos: 5.5,-133.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 14890: + 16553: - DoorStatus: DoorBolt - 14891: + 16554: - DoorStatus: DoorBolt - - uid: 16903 + - uid: 325 components: - type: Transform pos: -4.5,-187.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15040: + 16557: - DoorStatus: DoorBolt - 3508: + 16521: - DoorStatus: DoorBolt - proto: AirlockMaintMedLocked entities: - - uid: 8348 + - uid: 326 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-170.5 parent: 2 - - uid: 8422 + - uid: 327 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-164.5 parent: 2 - - uid: 8448 + - uid: 328 components: - type: Transform pos: -5.5,-173.5 parent: 2 - proto: AirlockMaintServiceLocked entities: - - uid: 1720 + - uid: 329 components: - type: Transform pos: -3.5,-85.5 parent: 2 - proto: AirlockMedicalGlassLocked entities: - - uid: 308 + - uid: 330 components: - type: Transform pos: 2.5,-178.5 parent: 2 - - uid: 3756 + - uid: 331 components: - type: Transform pos: 5.5,-177.5 parent: 2 - - uid: 3761 + - uid: 332 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-191.5 parent: 2 - - uid: 3762 + - uid: 333 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-195.5 parent: 2 - - uid: 7193 + - uid: 334 components: - type: Transform pos: 4.5,-177.5 parent: 2 - - uid: 7797 + - uid: 335 components: - type: Transform pos: 2.5,-179.5 parent: 2 - - uid: 11907 + - uid: 336 components: - type: Transform pos: -0.5,-169.5 parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 319 + - uid: 337 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-198.5 parent: 2 - - uid: 320 + - uid: 338 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-197.5 parent: 2 - - uid: 3168 + - uid: 339 components: - type: Transform pos: -0.5,-174.5 parent: 2 - - uid: 3181 + - uid: 340 components: - type: Transform pos: -0.5,-175.5 parent: 2 - - uid: 7478 + - uid: 341 components: - type: Transform pos: -0.5,-165.5 parent: 2 - proto: AirlockMining entities: - - uid: 14336 + - uid: 342 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-70.5 parent: 2 - - uid: 14339 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad @@ -8862,19 +8697,19 @@ entities: parent: 2 - proto: AirlockMiningGlass entities: - - uid: 14333 + - uid: 344 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-66.5 parent: 2 - - uid: 14335 + - uid: 345 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-64.5 parent: 2 - - uid: 14462 + - uid: 346 components: - type: Transform rot: 3.141592653589793 rad @@ -8882,38 +8717,38 @@ entities: parent: 2 - proto: AirlockQuartermasterLocked entities: - - uid: 9165 + - uid: 347 components: - type: Transform pos: 6.5,-283.5 parent: 2 - proto: AirlockResearchDirectorLocked entities: - - uid: 8373 + - uid: 348 components: - type: Transform pos: -8.5,-301.5 parent: 2 - - uid: 9832 + - uid: 349 components: - type: Transform pos: -7.5,-303.5 parent: 2 - proto: AirlockSalvageLocked entities: - - uid: 2048 + - uid: 350 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-271.5 parent: 2 - - uid: 2049 + - uid: 351 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-282.5 parent: 2 - - uid: 2132 + - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad @@ -8921,101 +8756,89 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 9823 + - uid: 353 components: - type: Transform pos: -6.5,-314.5 parent: 2 - proto: AirlockScienceLocked entities: - - uid: 9855 + - uid: 354 components: - type: Transform pos: -3.5,-310.5 parent: 2 - - uid: 9856 + - uid: 355 components: - type: Transform pos: -3.5,-306.5 parent: 2 - - uid: 9951 + - uid: 356 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-309.5 parent: 2 - - uid: 9952 + - uid: 357 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-305.5 parent: 2 - - uid: 10083 + - uid: 358 components: - type: Transform pos: -4.5,-320.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1791: + 16518: - DoorStatus: DoorBolt - 1812: + 16519: - DoorStatus: DoorBolt - - uid: 10127 + - uid: 359 components: - type: Transform pos: -1.5,-317.5 parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 2473 + - uid: 360 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 11258 + - uid: 361 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-363.5 parent: 2 - - type: DeviceLinkSink - links: - - 11496 - - uid: 11259 + - uid: 362 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-363.5 parent: 2 - - type: DeviceLinkSink - links: - - 11332 - - uid: 11260 + - uid: 363 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-366.5 parent: 2 - - type: DeviceLinkSink - links: - - 11331 - - uid: 11261 + - uid: 364 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-366.5 parent: 2 - - type: DeviceLinkSink - links: - - 11330 - - uid: 12089 + - uid: 365 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-339.5 parent: 2 - - uid: 12703 + - uid: 366 components: - type: Transform rot: -1.5707963267948966 rad @@ -9023,37 +8846,37 @@ entities: parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 11194 + - uid: 367 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-357.5 parent: 2 - - uid: 11195 + - uid: 368 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-357.5 parent: 2 - - uid: 11380 + - uid: 369 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-369.5 parent: 2 - - uid: 11381 + - uid: 370 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-369.5 parent: 2 - - uid: 11382 + - uid: 371 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-367.5 parent: 2 - - uid: 11407 + - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad @@ -9061,13 +8884,13 @@ entities: parent: 2 - proto: AirlockServiceGlassLocked entities: - - uid: 1704 + - uid: 373 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-86.5 parent: 2 - - uid: 1722 + - uid: 374 components: - type: Transform rot: -1.5707963267948966 rad @@ -9075,65 +8898,65 @@ entities: parent: 2 - proto: AirlockServiceLocked entities: - - uid: 2719 + - uid: 375 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 11931 + - uid: 376 components: - type: Transform pos: -5.5,-385.5 parent: 2 - proto: AirlockTheatreLocked entities: - - uid: 619 + - uid: 377 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-126.5 parent: 2 - - uid: 2016 + - uid: 378 components: - type: Transform pos: -5.5,-125.5 parent: 2 - - uid: 2017 + - uid: 379 components: - type: Transform pos: -5.5,-122.5 parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 1358 + - uid: 380 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 3768 + - uid: 381 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-198.5 parent: 2 - - uid: 3867 + - uid: 382 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-205.5 parent: 2 - - uid: 3869 + - uid: 383 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-201.5 parent: 2 - - uid: 8806 + - uid: 384 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 12114 + - uid: 385 components: - type: Transform rot: -1.5707963267948966 rad @@ -9141,23 +8964,23 @@ entities: parent: 2 - proto: AirSensor entities: - - uid: 3400 + - uid: 386 components: - type: Transform pos: 0.5,-300.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 4689 + - 55 + - uid: 387 components: - type: Transform pos: 4.5,-301.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13383 - - uid: 8430 + - 60 + - uid: 388 components: - type: Transform rot: -1.5707963267948966 rad @@ -9165,20 +8988,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 10651 + - 8 + - uid: 389 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-342.5 parent: 2 - - uid: 10759 + - uid: 390 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-337.5 parent: 2 - - uid: 13072 + - uid: 391 components: - type: Transform rot: 3.141592653589793 rad @@ -9186,8 +9009,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 13073 + - 12 + - uid: 392 components: - type: Transform rot: 3.141592653589793 rad @@ -9195,8 +9018,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12935 - - uid: 13083 + - 11 + - uid: 393 components: - type: Transform rot: 3.141592653589793 rad @@ -9204,8 +9027,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 - - uid: 13106 + - 13 + - uid: 394 components: - type: Transform rot: 3.141592653589793 rad @@ -9213,8 +9036,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 13107 + - 14 + - uid: 395 components: - type: Transform rot: 3.141592653589793 rad @@ -9222,8 +9045,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 13118 + - 15 + - uid: 396 components: - type: Transform rot: -1.5707963267948966 rad @@ -9231,8 +9054,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 - - uid: 13119 + - 17 + - uid: 397 components: - type: Transform rot: -1.5707963267948966 rad @@ -9240,8 +9063,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 13120 + - 16 + - uid: 398 components: - type: Transform rot: -1.5707963267948966 rad @@ -9249,8 +9072,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 13121 + - 16 + - uid: 399 components: - type: Transform rot: -1.5707963267948966 rad @@ -9258,8 +9081,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 13122 + - 18 + - uid: 400 components: - type: Transform rot: 1.5707963267948966 rad @@ -9267,8 +9090,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 - - uid: 13125 + - 19 + - uid: 401 components: - type: Transform rot: 1.5707963267948966 rad @@ -9276,8 +9099,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - uid: 13126 + - 21 + - uid: 402 components: - type: Transform rot: 1.5707963267948966 rad @@ -9285,8 +9108,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - uid: 13130 + - 22 + - uid: 403 components: - type: Transform rot: 1.5707963267948966 rad @@ -9294,8 +9117,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 13131 + - 23 + - uid: 404 components: - type: Transform rot: 1.5707963267948966 rad @@ -9303,8 +9126,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 13137 + - 24 + - uid: 405 components: - type: Transform rot: 1.5707963267948966 rad @@ -9312,8 +9135,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - uid: 13149 + - 20 + - uid: 406 components: - type: Transform rot: 3.141592653589793 rad @@ -9321,8 +9144,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13153 + - 26 + - uid: 407 components: - type: Transform rot: 1.5707963267948966 rad @@ -9330,8 +9153,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 - - uid: 13154 + - 25 + - uid: 408 components: - type: Transform rot: 1.5707963267948966 rad @@ -9339,8 +9162,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13164 + - 26 + - uid: 409 components: - type: Transform rot: 3.141592653589793 rad @@ -9348,36 +9171,36 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - uid: 13167 + - 27 + - uid: 410 components: - type: Transform pos: -0.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 13170 + - 29 + - uid: 411 components: - type: Transform pos: 1.5,-116.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 13175 + - 30 + - uid: 412 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-141.5 parent: 2 - - uid: 13177 + - uid: 413 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-149.5 parent: 2 - - uid: 13179 + - uid: 414 components: - type: Transform rot: 1.5707963267948966 rad @@ -9385,8 +9208,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 - - uid: 13181 + - 33 + - uid: 415 components: - type: Transform rot: -1.5707963267948966 rad @@ -9394,24 +9217,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13182 - - uid: 13183 + - 34 + - uid: 416 components: - type: Transform pos: -4.5,-139.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - uid: 13184 + - 35 + - uid: 417 components: - type: Transform pos: -2.5,-146.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - uid: 13186 + - 35 + - uid: 418 components: - type: Transform rot: 1.5707963267948966 rad @@ -9419,8 +9242,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 - - uid: 13188 + - 36 + - uid: 419 components: - type: Transform rot: 1.5707963267948966 rad @@ -9428,16 +9251,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 - - uid: 13206 + - 37 + - uid: 420 components: - type: Transform pos: 0.5,-166.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13210 + - 38 + - uid: 421 components: - type: Transform rot: 1.5707963267948966 rad @@ -9445,8 +9268,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13212 + - 39 + - uid: 422 components: - type: Transform rot: 1.5707963267948966 rad @@ -9454,8 +9277,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13214 + - 40 + - uid: 423 components: - type: Transform rot: 1.5707963267948966 rad @@ -9463,8 +9286,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - uid: 13217 + - 7 + - uid: 424 components: - type: Transform rot: 3.141592653589793 rad @@ -9472,8 +9295,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13218 - - uid: 13221 + - 41 + - uid: 425 components: - type: Transform rot: 3.141592653589793 rad @@ -9481,14 +9304,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - uid: 13222 + - 44 + - uid: 426 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-197.5 parent: 2 - - uid: 13227 + - uid: 427 components: - type: Transform rot: 3.141592653589793 rad @@ -9496,8 +9319,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - uid: 13238 + - 45 + - uid: 428 components: - type: Transform rot: -1.5707963267948966 rad @@ -9505,8 +9328,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - uid: 13246 + - 43 + - uid: 429 components: - type: Transform rot: -1.5707963267948966 rad @@ -9514,8 +9337,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - uid: 13248 + - 46 + - uid: 430 components: - type: Transform rot: 1.5707963267948966 rad @@ -9523,8 +9346,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13249 - - uid: 13250 + - 47 + - uid: 431 components: - type: Transform rot: 1.5707963267948966 rad @@ -9532,8 +9355,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13251 - - uid: 13253 + - 48 + - uid: 432 components: - type: Transform rot: -1.5707963267948966 rad @@ -9541,8 +9364,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13254 + - 49 + - uid: 433 components: - type: Transform rot: -1.5707963267948966 rad @@ -9550,8 +9373,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13255 + - 49 + - uid: 434 components: - type: Transform rot: -1.5707963267948966 rad @@ -9559,44 +9382,38 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 - - uid: 13256 + - 49 + - uid: 435 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-219.5 parent: 2 - - uid: 13257 + - uid: 436 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-219.5 parent: 2 - - uid: 13258 + - uid: 437 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-230.5 parent: 2 - - uid: 13259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-230.5 - parent: 2 - - uid: 13268 + - uid: 438 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-218.5 parent: 2 - - uid: 13270 + - uid: 439 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-231.5 parent: 2 - - uid: 13316 + - uid: 440 components: - type: Transform rot: -1.5707963267948966 rad @@ -9604,24 +9421,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - uid: 13318 + - 50 + - uid: 441 components: - type: Transform pos: 4.5,-271.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - uid: 13323 + - 51 + - uid: 442 components: - type: Transform pos: -6.5,-272.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2277 - - uid: 13325 + - 5 + - uid: 443 components: - type: Transform rot: 1.5707963267948966 rad @@ -9629,8 +9446,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13326 + - 52 + - uid: 444 components: - type: Transform rot: 1.5707963267948966 rad @@ -9638,8 +9455,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13334 + - 52 + - uid: 445 components: - type: Transform rot: 1.5707963267948966 rad @@ -9647,8 +9464,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13335 - - uid: 13336 + - 53 + - uid: 446 components: - type: Transform rot: 3.141592653589793 rad @@ -9656,8 +9473,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13337 + - 54 + - uid: 447 components: - type: Transform rot: 3.141592653589793 rad @@ -9665,8 +9482,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13359 + - 54 + - uid: 448 components: - type: Transform rot: -1.5707963267948966 rad @@ -9674,16 +9491,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13366 + - 56 + - uid: 449 components: - type: Transform pos: 0.5,-314.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - uid: 13371 + - uid: 450 components: - type: Transform rot: 1.5707963267948966 rad @@ -9691,8 +9505,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - uid: 13380 + - 58 + - uid: 451 components: - type: Transform rot: 1.5707963267948966 rad @@ -9700,8 +9514,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 - - uid: 13384 + - 59 + - uid: 452 components: - type: Transform rot: -1.5707963267948966 rad @@ -9709,18 +9523,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - uid: 13392 + - 61 + - 10 + - uid: 453 components: - type: Transform pos: -0.5,-337.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 - - uid: 13401 + - 10 + - 6 + - uid: 454 components: - type: Transform rot: -1.5707963267948966 rad @@ -9728,54 +9542,48 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13402 - - uid: 13407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-345.5 - parent: 2 - - uid: 13422 + - 62 + - uid: 455 components: - type: Transform pos: -4.5,-372.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13426 - - uid: 13423 + - 64 + - uid: 456 components: - type: Transform pos: 3.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13424 + - 63 + - uid: 457 components: - type: Transform pos: -2.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13425 + - 63 + - uid: 458 components: - type: Transform pos: 5.5,-372.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13426 - - uid: 13427 + - 64 + - uid: 459 components: - type: Transform pos: -0.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13429 - - uid: 14726 + - 65 + - uid: 460 components: - type: Transform rot: 1.5707963267948966 rad @@ -9783,40 +9591,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 - - uid: 15274 + - 66 + - uid: 461 components: - type: Transform pos: 6.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - - uid: 15275 + - 68 + - uid: 462 components: - type: Transform pos: -0.5,-246.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - uid: 15276 + - 67 + - uid: 463 components: - type: Transform pos: 0.5,-257.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15277 + - 70 + - uid: 464 components: - type: Transform pos: 4.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 15288 + - 69 + - uid: 465 components: - type: Transform rot: -1.5707963267948966 rad @@ -9824,8 +9632,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 15289 + - 71 + - uid: 466 components: - type: Transform rot: -1.5707963267948966 rad @@ -9833,325 +9641,316 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 71 - proto: AltarSpawner entities: - - uid: 2584 + - uid: 467 components: - type: Transform pos: 4.5,-143.5 parent: 2 - proto: AmeJar entities: - - uid: 3746 + - uid: 468 components: - type: Transform pos: 20.506,-253.4022 parent: 2 - proto: AmePartFlatpack entities: - - uid: 8631 + - uid: 470 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8633 + - uid: 471 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8634 + - uid: 472 components: - type: Transform - parent: 8630 + parent: 469 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AnomalyFloraBulb entities: - - uid: 6675 + - uid: 473 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 6914 + - uid: 474 components: - type: Transform pos: 3.5,-41.5 parent: 2 - - uid: 12929 + - uid: 475 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-373.5 parent: 2 - - uid: 15093 + - uid: 476 components: - type: Transform pos: 11.5,-196.5 parent: 2 - proto: AnomalyLocatorWide entities: - - uid: 10022 + - uid: 477 components: - type: Transform pos: 3.3139195,-303.7327 parent: 2 - proto: AnomalyScanner entities: - - uid: 10016 + - uid: 478 components: - type: Transform pos: 4.6213827,-304.56445 parent: 2 - - uid: 10017 + - uid: 479 components: - type: Transform pos: 4.3572483,-304.30038 parent: 2 - proto: APCBasic entities: - - uid: 906 + - uid: 480 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-220.5 parent: 2 - - uid: 1028 + - uid: 481 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-247.5 parent: 2 - - uid: 2002 + - uid: 482 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 2 - - uid: 2005 + - uid: 483 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 2 - - uid: 2236 + - uid: 484 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-56.5 parent: 2 - - uid: 3200 + - uid: 485 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 4047 + - uid: 486 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-302.5 parent: 2 - - uid: 4294 + - uid: 487 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 4348 + - uid: 488 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 5001 + - uid: 489 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-254.5 parent: 2 - - uid: 5695 + - uid: 490 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-6.5 parent: 2 - - uid: 5743 + - uid: 491 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-11.5 parent: 2 - - uid: 5818 + - uid: 492 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-42.5 parent: 2 - - uid: 5820 + - uid: 493 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-30.5 parent: 2 - - uid: 5969 + - uid: 494 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-63.5 parent: 2 - - uid: 5971 + - uid: 495 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-71.5 parent: 2 - - uid: 6161 + - uid: 496 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6162 + - uid: 497 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-97.5 parent: 2 - - uid: 6444 + - uid: 498 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6445 + - uid: 499 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6918 + - uid: 500 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-164.5 parent: 2 - - uid: 6919 + - uid: 501 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-176.5 parent: 2 - - uid: 7062 + - uid: 502 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7063 + - uid: 503 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-203.5 parent: 2 - - uid: 7591 + - uid: 504 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7722 + - uid: 505 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-248.5 parent: 2 - - uid: 7929 + - uid: 506 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-249.5 parent: 2 - - uid: 8259 + - uid: 507 components: - type: Transform pos: 13.5,-158.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 8315 + - uid: 508 components: - type: Transform pos: 17.5,-137.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 9074 + - uid: 509 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-264.5 parent: 2 - - uid: 9166 + - uid: 510 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9174 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-272.5 parent: 2 - - uid: 9187 + - uid: 512 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-272.5 parent: 2 - - uid: 10277 + - uid: 513 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-320.5 parent: 2 - - uid: 10333 + - uid: 514 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-301.5 parent: 2 - - uid: 10338 + - uid: 515 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-317.5 parent: 2 - - uid: 10957 + - uid: 516 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 11998 + - uid: 517 components: - type: Transform pos: 0.5,-387.5 parent: 2 - type: Battery startingCharge: 0 - - type: Apc - lastExternalState: Good - lastChargeState: Full - - uid: 14464 + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-84.5 parent: 2 - - uid: 16641 + - uid: 519 components: - type: Transform rot: 3.141592653589793 rad @@ -10159,19 +9958,19 @@ entities: parent: 2 - proto: APCHighCapacity entities: - - uid: 10937 + - uid: 520 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-347.5 parent: 2 - - uid: 10938 + - uid: 521 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-347.5 parent: 2 - - uid: 15300 + - uid: 522 components: - type: Transform rot: 1.5707963267948966 rad @@ -10179,18 +9978,18 @@ entities: parent: 2 - proto: APCHyperCapacity entities: - - uid: 888 + - uid: 523 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 9616 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-307.5 parent: 2 - - uid: 10860 + - uid: 525 components: - type: Transform rot: 3.141592653589793 rad @@ -10198,289 +9997,289 @@ entities: parent: 2 - proto: APCSuperCapacity entities: - - uid: 11557 + - uid: 526 components: - type: Transform pos: 1.5,-361.5 parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 12014 + - uid: 527 components: - type: Transform pos: 2.5,-36.5 parent: 2 - proto: AsteroidRock entities: - - uid: 6689 + - uid: 528 components: - type: Transform pos: 29.5,-263.5 parent: 2 - - uid: 6864 + - uid: 529 components: - type: Transform pos: 28.5,-263.5 parent: 2 - - uid: 7496 + - uid: 530 components: - type: Transform pos: 28.5,-261.5 parent: 2 - - uid: 8530 + - uid: 531 components: - type: Transform pos: 28.5,-258.5 parent: 2 - - uid: 8854 + - uid: 532 components: - type: Transform pos: 31.5,-261.5 parent: 2 - - uid: 8859 + - uid: 533 components: - type: Transform pos: 28.5,-259.5 parent: 2 - proto: AsteroidRockGold entities: - - uid: 4988 + - uid: 534 components: - type: Transform pos: 27.5,-259.5 parent: 2 - proto: AsteroidRockUranium entities: - - uid: 7371 + - uid: 535 components: - type: Transform pos: 15.5,-143.5 parent: 2 - - uid: 7374 + - uid: 536 components: - type: Transform pos: 17.5,-150.5 parent: 2 - - uid: 7375 + - uid: 537 components: - type: Transform pos: 15.5,-148.5 parent: 2 - proto: AsteroidRockUraniumCrab entities: - - uid: 7312 + - uid: 538 components: - type: Transform pos: 12.5,-150.5 parent: 2 - - uid: 7368 + - uid: 539 components: - type: Transform pos: 17.5,-141.5 parent: 2 - - uid: 7369 + - uid: 540 components: - type: Transform pos: 13.5,-142.5 parent: 2 - - uid: 7370 + - uid: 541 components: - type: Transform pos: 16.5,-143.5 parent: 2 - - uid: 7372 + - uid: 542 components: - type: Transform pos: 15.5,-144.5 parent: 2 - - uid: 7373 + - uid: 543 components: - type: Transform pos: 15.5,-142.5 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 142 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-16.5 parent: 2 - - uid: 560 + - uid: 545 components: - type: Transform pos: 8.5,-43.5 parent: 2 - - uid: 561 + - uid: 546 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 562 + - uid: 547 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 563 + - uid: 548 components: - type: Transform pos: -7.5,-36.5 parent: 2 - - uid: 564 + - uid: 549 components: - type: Transform pos: 8.5,-36.5 parent: 2 - - uid: 565 + - uid: 550 components: - type: Transform pos: 8.5,-29.5 parent: 2 - - uid: 568 + - uid: 551 components: - type: Transform pos: -7.5,-31.5 parent: 2 - - uid: 569 + - uid: 552 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 1627 + - uid: 553 components: - type: Transform pos: -4.5,-46.5 parent: 2 - - uid: 1707 + - uid: 554 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-96.5 parent: 2 - - uid: 1709 + - uid: 555 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-94.5 parent: 2 - - uid: 1710 + - uid: 556 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-89.5 parent: 2 - - uid: 1716 + - uid: 557 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-91.5 parent: 2 - - uid: 3259 + - uid: 558 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 - - uid: 3260 + - uid: 559 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-86.5 parent: 2 - - uid: 5006 + - uid: 560 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-223.5 parent: 2 - - uid: 5111 + - uid: 561 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-242.5 parent: 2 - - uid: 5119 + - uid: 562 components: - type: Transform pos: -4.5,-262.5 parent: 2 - - uid: 8000 + - uid: 563 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-169.5 parent: 2 - - uid: 8159 + - uid: 564 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-256.5 parent: 2 - - uid: 8819 + - uid: 565 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-278.5 parent: 2 - - uid: 8820 + - uid: 566 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-280.5 parent: 2 - - uid: 8836 + - uid: 567 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-269.5 parent: 2 - - uid: 8839 + - uid: 568 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-272.5 parent: 2 - - uid: 8841 + - uid: 569 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-273.5 parent: 2 - - uid: 10080 + - uid: 570 components: - type: Transform pos: -4.5,-295.5 parent: 2 - - uid: 10682 + - uid: 571 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-146.5 parent: 2 - - uid: 10852 + - uid: 572 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-145.5 parent: 2 - - uid: 11507 + - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-178.5 parent: 2 - - uid: 11882 + - uid: 574 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-381.5 parent: 2 - - uid: 13243 + - uid: 575 components: - type: Transform pos: 5.5,-321.5 parent: 2 - - uid: 14291 + - uid: 576 components: - type: Transform rot: 3.141592653589793 rad @@ -10488,208 +10287,208 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: - - uid: 4989 + - uid: 577 components: - type: Transform pos: -21.5,-255.5 parent: 2 - - uid: 16536 + - uid: 578 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-261.5 parent: 2 - - uid: 16539 + - uid: 579 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-260.5 parent: 2 - - uid: 16540 + - uid: 580 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-259.5 parent: 2 - - uid: 16541 + - uid: 581 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-259.5 parent: 2 - - uid: 16542 + - uid: 582 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-260.5 parent: 2 - - uid: 16543 + - uid: 583 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-261.5 parent: 2 - - uid: 16544 + - uid: 584 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-261.5 parent: 2 - - uid: 16545 + - uid: 585 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-260.5 parent: 2 - - uid: 16546 + - uid: 586 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-259.5 parent: 2 - - uid: 16547 + - uid: 587 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-257.5 parent: 2 - - uid: 16548 + - uid: 588 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-257.5 parent: 2 - - uid: 16550 + - uid: 589 components: - type: Transform pos: -21.5,-257.5 parent: 2 - - uid: 16551 + - uid: 590 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-255.5 parent: 2 - - uid: 16552 + - uid: 591 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-255.5 parent: 2 - - uid: 16553 + - uid: 592 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-253.5 parent: 2 - - uid: 16554 + - uid: 593 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-253.5 parent: 2 - - uid: 16555 + - uid: 594 components: - type: Transform pos: -21.5,-253.5 parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 1626 + - uid: 595 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 1786 + - uid: 596 components: - type: Transform pos: -5.5,-91.5 parent: 2 - - uid: 1787 + - uid: 597 components: - type: Transform pos: -5.5,-92.5 parent: 2 - - uid: 1788 + - uid: 598 components: - type: Transform pos: -4.5,-91.5 parent: 2 - - uid: 1789 + - uid: 599 components: - type: Transform pos: -4.5,-92.5 parent: 2 - - uid: 1790 + - uid: 600 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 1792 + - uid: 601 components: - type: Transform pos: -2.5,-91.5 parent: 2 - - uid: 1793 + - uid: 602 components: - type: Transform pos: -2.5,-92.5 parent: 2 - - uid: 1794 + - uid: 603 components: - type: Transform pos: -1.5,-91.5 parent: 2 - - uid: 1795 + - uid: 604 components: - type: Transform pos: -1.5,-92.5 parent: 2 - - uid: 1796 + - uid: 605 components: - type: Transform pos: -2.5,-93.5 parent: 2 - - uid: 1797 + - uid: 606 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 1798 + - uid: 607 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 1799 + - uid: 608 components: - type: Transform pos: -4.5,-90.5 parent: 2 - - uid: 1800 + - uid: 609 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 1801 + - uid: 610 components: - type: Transform pos: -2.5,-90.5 parent: 2 - proto: AtmosFixPlasmaMarker entities: - - uid: 12605 + - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-251.5 parent: 2 - - uid: 13240 + - uid: 612 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-251.5 parent: 2 - - uid: 14223 + - uid: 613 components: - type: Transform rot: -1.5707963267948966 rad @@ -10697,213 +10496,213 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 4985 + - uid: 614 components: - type: Transform - pos: 17.5,-245.5 + pos: 6.5,-272.5 parent: 2 - - uid: 9073 + - uid: 615 components: - type: Transform - pos: 6.5,-273.5 + pos: 17.5,-245.5 parent: 2 - - uid: 14289 + - uid: 616 components: - type: Transform pos: -5.5,-299.5 parent: 2 - proto: BackgammonBoard entities: - - uid: 3707 + - uid: 617 components: - type: Transform pos: 6.5271845,-122.9964 parent: 2 - proto: BananaPhoneInstrument entities: - - uid: 2015 + - uid: 618 components: - type: Transform pos: -7.68055,-124.47525 parent: 2 - proto: BannerCargo entities: - - uid: 8378 + - uid: 619 components: - type: Transform pos: -0.5,-282.5 parent: 2 - - uid: 14027 + - uid: 620 components: - type: Transform pos: -0.5,-276.5 parent: 2 - proto: BannerEngineering entities: - - uid: 14010 + - uid: 621 components: - type: Transform pos: -2.5,-246.5 parent: 2 - proto: BarberScissors entities: - - uid: 14338 + - uid: 622 components: - type: Transform pos: 16.483294,-59.410294 parent: 2 - - uid: 14356 + - uid: 623 components: - type: Transform pos: 14.515497,-59.39709 parent: 2 - - uid: 14477 + - uid: 625 components: - type: Transform - parent: 14476 + parent: 624 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Barricade entities: - - uid: 2819 + - uid: 629 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 2820 + - uid: 630 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 3399 + - uid: 631 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-148.5 parent: 2 - - uid: 3889 + - uid: 632 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-200.5 parent: 2 - - uid: 7358 + - uid: 633 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-156.5 parent: 2 - - uid: 7363 + - uid: 634 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-141.5 parent: 2 - - uid: 7365 + - uid: 635 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-141.5 parent: 2 - - uid: 7367 + - uid: 636 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-150.5 parent: 2 - - uid: 7401 + - uid: 637 components: - type: Transform pos: 8.5,-162.5 parent: 2 - - uid: 16525 + - uid: 638 components: - type: Transform pos: -10.5,-167.5 parent: 2 - - uid: 16526 + - uid: 639 components: - type: Transform pos: -7.5,-162.5 parent: 2 - proto: BarricadeBlock entities: - - uid: 208 + - uid: 640 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 1689 + - uid: 641 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-71.5 parent: 2 - - uid: 2986 + - uid: 642 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-376.5 parent: 2 - - uid: 3886 + - uid: 643 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-201.5 parent: 2 - - uid: 3888 + - uid: 644 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-205.5 parent: 2 - - uid: 3952 + - uid: 645 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 7366 + - uid: 646 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-155.5 parent: 2 - - uid: 8810 + - uid: 647 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 12082 + - uid: 648 components: - type: Transform pos: 0.5,-382.5 parent: 2 - - uid: 12946 + - uid: 649 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-380.5 parent: 2 - - uid: 16527 + - uid: 650 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 16528 + - uid: 651 components: - type: Transform pos: -10.5,-162.5 parent: 2 - proto: BarricadeDirectional entities: - - uid: 7364 + - uid: 652 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-141.5 parent: 2 - - uid: 7402 + - uid: 653 components: - type: Transform rot: 1.5707963267948966 rad @@ -10911,14 +10710,14 @@ entities: parent: 2 - proto: BarSignRobustaCafe entities: - - uid: 711 + - uid: 654 components: - type: Transform pos: 1.5,-60.5 parent: 2 - proto: BaseComputer entities: - - uid: 9704 + - uid: 655 components: - type: Transform rot: 3.141592653589793 rad @@ -10926,254 +10725,254 @@ entities: parent: 2 - proto: BaseSecretDoorAssembly entities: - - uid: 1459 + - uid: 656 components: - type: Transform pos: 4.5,-71.5 parent: 2 - proto: Beaker entities: - - uid: 1403 + - uid: 657 components: - type: Transform pos: 5.582528,-167.40445 parent: 2 - - uid: 1589 + - uid: 658 components: - type: Transform pos: 5.707528,-167.3107 parent: 2 - - uid: 2296 + - uid: 659 components: - type: Transform pos: 1.3710482,-86.542175 parent: 2 - - uid: 2297 + - uid: 660 components: - type: Transform pos: 1.1890888,-86.33679 parent: 2 - - uid: 3906 + - uid: 661 components: - type: Transform pos: -6.721316,-194.7393 parent: 2 - - uid: 3908 + - uid: 662 components: - type: Transform pos: -6.686098,-195.08257 parent: 2 - - uid: 3916 + - uid: 663 components: - type: Transform pos: -4.0606456,-198.2437 parent: 2 - - uid: 3917 + - uid: 664 components: - type: Transform pos: -4.2543435,-198.42853 parent: 2 - - uid: 11686 + - uid: 665 components: - type: Transform pos: 2.6228993,-370.27484 parent: 2 - - uid: 26550 + - uid: 666 components: - type: Transform pos: 2.312565,-370.50742 parent: 2 + - uid: 16327 + components: + - type: Transform + pos: -2.3821619,-168.06873 + parent: 2 - proto: Bed entities: - - uid: 1078 + - uid: 667 components: - type: Transform pos: 4.5,-64.5 parent: 2 - - uid: 1406 + - uid: 668 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 1686 + - uid: 669 components: - type: Transform pos: -6.5,-112.5 parent: 2 - - uid: 1989 + - uid: 670 components: - type: Transform pos: -8.5,-112.5 parent: 2 - - uid: 1991 + - uid: 671 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 1995 + - uid: 672 components: - type: Transform pos: -6.5,-121.5 parent: 2 - - uid: 1999 + - uid: 673 components: - type: Transform pos: -6.5,-124.5 parent: 2 - - uid: 2082 + - uid: 674 components: - type: Transform pos: -6.5,-115.5 parent: 2 - - uid: 2086 + - uid: 675 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 2087 + - uid: 676 components: - type: Transform pos: -8.5,-118.5 parent: 2 - - uid: 2233 + - uid: 677 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 2476 - components: - - type: Transform - pos: -2.5,-168.5 - parent: 2 - - uid: 2712 + - uid: 679 components: - type: Transform pos: 6.5,-139.5 parent: 2 - - uid: 2721 + - uid: 680 components: - type: Transform pos: -5.5,-135.5 parent: 2 - - uid: 5873 + - uid: 681 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 7210 + - uid: 682 components: - type: Transform pos: 1.5,-196.5 parent: 2 - - uid: 8345 + - uid: 683 components: - type: Transform pos: 10.5,-250.5 parent: 2 - - uid: 9014 + - uid: 684 components: - type: Transform pos: 4.5,-285.5 parent: 2 - - uid: 9744 + - uid: 685 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 10742 + - uid: 686 components: - type: Transform pos: -4.5,-206.5 parent: 2 - - uid: 11102 + - uid: 687 components: - type: Transform pos: -2.5,-344.5 parent: 2 - - uid: 11771 + - uid: 688 components: - type: Transform pos: 7.5,-364.5 parent: 2 - - uid: 11772 + - uid: 689 components: - type: Transform pos: 7.5,-367.5 parent: 2 - - uid: 11774 + - uid: 690 components: - type: Transform pos: -6.5,-367.5 parent: 2 - - uid: 11775 + - uid: 691 components: - type: Transform pos: -6.5,-364.5 parent: 2 - - uid: 11787 + - uid: 692 components: - type: Transform pos: -5.5,-372.5 parent: 2 - - uid: 11789 + - uid: 693 components: - type: Transform pos: -5.5,-371.5 parent: 2 - - uid: 15748 + - uid: 694 components: - type: Transform pos: -4.5,-200.5 parent: 2 - proto: BedsheetBlack entities: - - uid: 964 + - uid: 695 components: - type: Transform pos: 4.5,-64.5 parent: 2 - - uid: 2713 + - uid: 696 components: - type: Transform pos: 6.5,-139.5 parent: 2 - proto: BedsheetBrown entities: - - uid: 3257 + - uid: 697 components: - type: Transform pos: -5.5,-73.5 parent: 2 - proto: BedsheetCaptain entities: - - uid: 296 + - uid: 698 components: - type: Transform pos: -0.5,-14.5 parent: 2 - proto: BedsheetCE entities: - - uid: 8441 + - uid: 699 components: - type: Transform pos: 10.5,-250.5 parent: 2 - proto: BedsheetClown entities: - - uid: 2046 + - uid: 700 components: - type: Transform pos: -6.5,-124.5 parent: 2 - proto: BedsheetGreen entities: - - uid: 3880 + - uid: 701 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-200.5 parent: 2 - - uid: 3881 + - uid: 702 components: - type: Transform rot: 3.141592653589793 rad @@ -11181,14 +10980,14 @@ entities: parent: 2 - proto: BedsheetHOP entities: - - uid: 2221 + - uid: 703 components: - type: Transform pos: -0.5,-116.5 parent: 2 - proto: BedsheetHOS entities: - - uid: 11096 + - uid: 704 components: - type: Transform rot: 3.141592653589793 rad @@ -11196,76 +10995,76 @@ entities: parent: 2 - proto: BedsheetMedical entities: - - uid: 2462 + - uid: 705 components: - type: Transform pos: 8.5,-176.5 parent: 2 - - uid: 3683 + - uid: 706 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 3684 + - uid: 707 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 3688 + - uid: 708 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 3689 + - uid: 709 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 11438 + - uid: 710 components: - type: Transform pos: -4.5,-361.5 parent: 2 - proto: BedsheetMime entities: - - uid: 2025 + - uid: 711 components: - type: Transform pos: -6.5,-121.5 parent: 2 - proto: BedsheetOrange entities: - - uid: 11779 + - uid: 712 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-367.5 parent: 2 - - uid: 11780 + - uid: 713 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-364.5 parent: 2 - - uid: 11781 + - uid: 714 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-364.5 parent: 2 - - uid: 11782 + - uid: 715 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-367.5 parent: 2 - - uid: 11791 + - uid: 716 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-371.5 parent: 2 - - uid: 11792 + - uid: 717 components: - type: Transform rot: 3.141592653589793 rad @@ -11273,114 +11072,114 @@ entities: parent: 2 - proto: BedsheetQM entities: - - uid: 9013 + - uid: 718 components: - type: Transform pos: 4.5,-285.5 parent: 2 - proto: BedsheetRD entities: - - uid: 9824 + - uid: 719 components: - type: Transform pos: -9.5,-302.5 parent: 2 - proto: BedsheetSpawner entities: - - uid: 2088 + - uid: 720 components: - type: Transform pos: -8.5,-118.5 parent: 2 - - uid: 2089 + - uid: 721 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 2090 + - uid: 722 components: - type: Transform pos: -6.5,-115.5 parent: 2 - - uid: 2091 + - uid: 723 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 2092 + - uid: 724 components: - type: Transform pos: -8.5,-112.5 parent: 2 - - uid: 2093 + - uid: 725 components: - type: Transform pos: -6.5,-112.5 parent: 2 - - uid: 2680 + - uid: 726 components: - type: Transform pos: -5.5,-135.5 parent: 2 - proto: BenchBlueComfy entities: - - uid: 132 + - uid: 727 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 160 + - uid: 728 components: - type: Transform pos: 3.5,-5.5 parent: 2 - - uid: 162 + - uid: 729 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-8.5 parent: 2 - - uid: 170 + - uid: 730 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 171 + - uid: 731 components: - type: Transform pos: 4.5,-5.5 parent: 2 - - uid: 172 + - uid: 732 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 2 - - uid: 173 + - uid: 733 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 2 - - uid: 174 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-8.5 parent: 2 - - uid: 14746 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-309.5 parent: 2 - - uid: 14747 + - uid: 736 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-309.5 parent: 2 - - uid: 14748 + - uid: 737 components: - type: Transform rot: 3.141592653589793 rad @@ -11388,19 +11187,19 @@ entities: parent: 2 - proto: BenchColorfulComfy entities: - - uid: 4179 + - uid: 738 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-314.5 parent: 2 - - uid: 11419 + - uid: 739 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-313.5 parent: 2 - - uid: 13351 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad @@ -11408,31 +11207,31 @@ entities: parent: 2 - proto: BenchComfy entities: - - uid: 10574 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-300.5 parent: 2 - - uid: 10575 + - uid: 742 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-301.5 parent: 2 - - uid: 10576 + - uid: 743 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-302.5 parent: 2 - - uid: 14736 + - uid: 744 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-191.5 parent: 2 - - uid: 14737 + - uid: 745 components: - type: Transform rot: 3.141592653589793 rad @@ -11440,478 +11239,478 @@ entities: parent: 2 - proto: BenchRedComfy entities: - - uid: 597 + - uid: 746 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 687 + - uid: 747 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 688 + - uid: 748 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 689 + - uid: 749 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 690 + - uid: 750 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-29.5 parent: 2 - - uid: 691 + - uid: 751 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-29.5 parent: 2 - - uid: 692 + - uid: 752 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-29.5 parent: 2 - - uid: 695 + - uid: 753 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 697 + - uid: 754 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-29.5 parent: 2 - - uid: 699 + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-29.5 parent: 2 - - uid: 791 + - uid: 756 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - uid: 792 + - uid: 757 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 - - uid: 805 + - uid: 758 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-39.5 parent: 2 - - uid: 825 + - uid: 759 components: - type: Transform pos: 2.5,-42.5 parent: 2 - - uid: 833 + - uid: 760 components: - type: Transform pos: 3.5,-42.5 parent: 2 - - uid: 2363 + - uid: 761 components: - type: Transform pos: -6.5,-66.5 parent: 2 - - uid: 3126 + - uid: 762 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-246.5 parent: 2 - - uid: 3134 + - uid: 763 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-250.5 parent: 2 - - uid: 3489 + - uid: 764 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-249.5 parent: 2 - - uid: 3840 + - uid: 765 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-139.5 parent: 2 - - uid: 4197 + - uid: 766 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-138.5 parent: 2 - - uid: 6845 + - uid: 767 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-147.5 parent: 2 - - uid: 7231 + - uid: 768 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-146.5 parent: 2 - - uid: 7232 + - uid: 769 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-143.5 parent: 2 - - uid: 7234 + - uid: 770 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-144.5 parent: 2 - - uid: 7236 + - uid: 771 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-148.5 parent: 2 - - uid: 7238 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-143.5 parent: 2 - - uid: 7251 + - uid: 773 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-148.5 parent: 2 - - uid: 7311 + - uid: 774 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-153.5 parent: 2 - - uid: 7314 + - uid: 775 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-153.5 parent: 2 - - uid: 7316 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-139.5 parent: 2 - - uid: 7317 + - uid: 777 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-139.5 parent: 2 - - uid: 7320 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-151.5 parent: 2 - - uid: 7321 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-151.5 parent: 2 - - uid: 7322 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-152.5 parent: 2 - - uid: 7324 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-153.5 parent: 2 - - uid: 7325 + - uid: 782 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-152.5 parent: 2 - - uid: 7326 + - uid: 783 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-152.5 parent: 2 - - uid: 7327 + - uid: 784 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-151.5 parent: 2 - - uid: 7328 + - uid: 785 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-151.5 parent: 2 - - uid: 7329 + - uid: 786 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-138.5 parent: 2 - - uid: 7331 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-140.5 parent: 2 - - uid: 7332 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-140.5 parent: 2 - - uid: 7333 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-140.5 parent: 2 - - uid: 7336 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-159.5 parent: 2 - - uid: 7337 + - uid: 791 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-159.5 parent: 2 - - uid: 7338 + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-160.5 parent: 2 - - uid: 7339 + - uid: 793 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-160.5 parent: 2 - - uid: 7340 + - uid: 794 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-161.5 parent: 2 - - uid: 7341 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-161.5 parent: 2 - - uid: 7342 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-161.5 parent: 2 - - uid: 7343 + - uid: 797 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-161.5 parent: 2 - - uid: 7344 + - uid: 798 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-160.5 parent: 2 - - uid: 7345 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-160.5 parent: 2 - - uid: 7346 + - uid: 800 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-159.5 parent: 2 - - uid: 7347 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-159.5 parent: 2 - - uid: 7349 + - uid: 802 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-165.5 parent: 2 - - uid: 7521 + - uid: 803 components: - type: Transform pos: -6.5,-61.5 parent: 2 - - uid: 7522 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-64.5 parent: 2 - - uid: 7921 + - uid: 805 components: - type: Transform pos: -5.5,-61.5 parent: 2 - - uid: 7926 + - uid: 806 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-64.5 parent: 2 - - uid: 9431 + - uid: 807 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-68.5 parent: 2 - - uid: 10868 + - uid: 808 components: - type: Transform pos: -6.5,-57.5 parent: 2 - - uid: 10932 + - uid: 809 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-332.5 parent: 2 - - uid: 10933 + - uid: 810 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-331.5 parent: 2 - - uid: 10934 + - uid: 811 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-329.5 parent: 2 - - uid: 11893 + - uid: 812 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-247.5 parent: 2 - - uid: 14373 + - uid: 813 components: - type: Transform pos: 13.5,-77.5 parent: 2 - - uid: 14420 + - uid: 814 components: - type: Transform pos: 14.5,-77.5 parent: 2 - - uid: 14421 + - uid: 815 components: - type: Transform pos: 16.5,-77.5 parent: 2 - - uid: 14422 + - uid: 816 components: - type: Transform pos: 17.5,-77.5 parent: 2 - - uid: 14435 + - uid: 817 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-79.5 parent: 2 - - uid: 14436 + - uid: 818 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-79.5 parent: 2 - - uid: 14438 + - uid: 819 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-83.5 parent: 2 - - uid: 14439 + - uid: 820 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-83.5 parent: 2 - - uid: 14440 + - uid: 821 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-84.5 parent: 2 - - uid: 14443 + - uid: 822 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-84.5 parent: 2 - - uid: 14446 + - uid: 823 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-82.5 parent: 2 - - uid: 14449 + - uid: 824 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-82.5 parent: 2 - - uid: 14456 + - uid: 825 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-80.5 parent: 2 - - uid: 14458 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-80.5 parent: 2 - - uid: 15809 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad @@ -11919,191 +11718,140 @@ entities: parent: 2 - proto: BlastDoor entities: - - uid: 1749 + - uid: 828 components: - type: Transform pos: -4.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 1767 - - uid: 1750 + - uid: 829 components: - type: Transform pos: -3.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 1767 - - uid: 2917 + - uid: 830 components: - type: Transform pos: -20.5,-236.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 2972 + - uid: 831 components: - type: Transform pos: -20.5,-237.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 3537 + - uid: 832 components: - type: Transform pos: -20.5,-238.5 parent: 2 - - type: DeviceLinkSink - links: - - 6906 - - uid: 9906 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-312.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 9908 + - uid: 834 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-313.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 9941 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-314.5 parent: 2 - - type: DeviceLinkSink - links: - - 10008 - - uid: 10001 + - uid: 836 components: - type: Transform pos: -10.5,-314.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 10003 + - uid: 837 components: - type: Transform pos: -10.5,-315.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 10004 + - uid: 838 components: - type: Transform pos: -10.5,-313.5 parent: 2 - - type: DeviceLinkSink - links: - - 10009 - - uid: 11201 + - uid: 839 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-357.5 parent: 2 - - type: DeviceLinkSink - links: - - 11710 - - uid: 11940 + - uid: 840 components: - type: Transform pos: -3.5,-385.5 parent: 2 - - uid: 11943 + - uid: 841 components: - type: Transform pos: -4.5,-385.5 parent: 2 - proto: BlastDoorOpen entities: - - uid: 2222 + - uid: 842 components: - type: Transform pos: -2.5,-114.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 2223 + - uid: 843 components: - type: Transform pos: -2.5,-113.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 2224 + - uid: 844 components: - type: Transform pos: -2.5,-112.5 parent: 2 - - type: DeviceLinkSink - links: - - 11312 - - uid: 8236 + - uid: 845 components: - type: Transform pos: -1.5,-253.5 parent: 2 - - uid: 8238 + - uid: 846 components: - type: Transform pos: -2.5,-330.5 parent: 2 - - uid: 8549 + - uid: 847 components: - type: Transform pos: -2.5,-331.5 parent: 2 - - uid: 8801 + - uid: 848 components: - type: Transform pos: 10.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9008 - - uid: 8803 + - uid: 849 components: - type: Transform pos: 10.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9009 - - uid: 10915 + - uid: 850 components: - type: Transform pos: -2.5,-329.5 parent: 2 - - uid: 13998 + - uid: 851 components: - type: Transform pos: -1.5,-255.5 parent: 2 - - uid: 14025 + - uid: 852 components: - type: Transform pos: -1.5,-254.5 parent: 2 - proto: BlockGameArcade entities: - - uid: 1756 + - uid: 853 components: - type: Transform rot: 1.5707963267948966 rad @@ -12113,154 +11861,154 @@ entities: enabled: False - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 15271 + - uid: 854 components: - type: Transform pos: 6.380858,-242.27087 parent: 2 - proto: BodyBagFolded entities: - - uid: 2706 + - uid: 855 components: - type: Transform pos: 3.4006777,-137.08098 parent: 2 - - uid: 2707 + - uid: 856 components: - type: Transform pos: 3.6031802,-137.20421 parent: 2 - - uid: 2708 + - uid: 857 components: - type: Transform pos: 3.4711132,-137.28342 parent: 2 - - uid: 2845 + - uid: 858 components: - type: Transform pos: -2.3260214,-174.77829 parent: 2 - - uid: 2930 + - uid: 859 components: - type: Transform pos: -2.5666766,-174.61398 parent: 2 - - uid: 3239 + - uid: 860 components: - type: Transform pos: -2.5608068,-174.98366 parent: 2 - - uid: 3240 + - uid: 861 components: - type: Transform pos: -2.34363,-175.13622 parent: 2 - proto: BookAtmosAirAlarms entities: - - uid: 17059 + - uid: 863 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosDistro entities: - - uid: 17060 + - uid: 864 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosVentsMore entities: - - uid: 17062 + - uid: 865 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookAtmosWaste entities: - - uid: 17057 + - uid: 866 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookshelfFilled entities: - - uid: 1759 + - uid: 869 components: - type: Transform pos: -5.5,-146.5 parent: 2 - - uid: 2604 + - uid: 870 components: - type: Transform pos: -5.5,-143.5 parent: 2 - - uid: 2614 + - uid: 871 components: - type: Transform pos: -3.5,-143.5 parent: 2 - - uid: 2615 + - uid: 872 components: - type: Transform pos: -2.5,-143.5 parent: 2 - - uid: 2628 + - uid: 873 components: - type: Transform pos: -2.5,-145.5 parent: 2 - - uid: 2629 + - uid: 874 components: - type: Transform pos: -4.5,-145.5 parent: 2 - - uid: 2630 + - uid: 875 components: - type: Transform pos: -5.5,-145.5 parent: 2 - - uid: 2631 + - uid: 876 components: - type: Transform pos: -2.5,-147.5 parent: 2 - - uid: 2632 + - uid: 877 components: - type: Transform pos: -3.5,-147.5 parent: 2 - - uid: 2633 + - uid: 878 components: - type: Transform pos: -5.5,-147.5 parent: 2 - - uid: 2742 + - uid: 879 components: - type: Transform pos: -5.5,-142.5 parent: 2 - - uid: 4786 + - uid: 880 components: - type: Transform pos: -5.5,-144.5 parent: 2 - - uid: 7551 + - uid: 881 components: - type: Transform pos: -5.5,-148.5 parent: 2 - proto: BoozeDispenser entities: - - uid: 1249 + - uid: 882 components: - type: Transform rot: 3.141592653589793 rad @@ -12268,55 +12016,55 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 8697 + - uid: 883 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-251.5 parent: 2 - - uid: 9975 + - uid: 884 components: - type: Transform pos: 7.5,-310.5 parent: 2 - proto: BorgChargerCircuitboard entities: - - uid: 14743 + - uid: 885 components: - type: Transform pos: -5.6778665,-307.2365 parent: 2 - proto: BoxBeaker entities: - - uid: 3141 + - uid: 886 components: - type: Transform pos: 6.935201,-165.38791 parent: 2 - proto: BoxBodyBag entities: - - uid: 3048 + - uid: 887 components: - type: Transform pos: -2.6240926,-174.26779 parent: 2 - proto: BoxCandle entities: - - uid: 14729 + - uid: 888 components: - type: Transform pos: -5.4542284,-189.36801 parent: 2 - proto: BoxDarts entities: - - uid: 13431 + - uid: 889 components: - type: Transform pos: -2.9653907,-32.45716 parent: 2 - proto: BoxFolderBase entities: - - uid: 2773 + - uid: 890 components: - type: Transform rot: 3.141592653589793 rad @@ -12324,197 +12072,197 @@ entities: parent: 2 - proto: BoxFolderBlack entities: - - uid: 2567 + - uid: 891 components: - type: Transform pos: 6.7308598,-6.9109907 parent: 2 - - uid: 11073 + - uid: 892 components: - type: Transform pos: 4.492667,-332.38788 parent: 2 - proto: BoxFolderBlue entities: - - uid: 2781 + - uid: 893 components: - type: Transform pos: 3.4805696,-6.920642 parent: 2 - proto: BoxFolderGreen entities: - - uid: 2744 + - uid: 894 components: - type: Transform pos: -5.3577433,-140.33952 parent: 2 - - uid: 2780 + - uid: 895 components: - type: Transform pos: 2.4827733,-42.50757 parent: 2 - proto: BoxFolderGrey entities: - - uid: 11076 + - uid: 896 components: - type: Transform pos: 5.4435487,-332.5595 parent: 2 - proto: BoxFolderRed entities: - - uid: 750 + - uid: 897 components: - type: Transform pos: -6.554108,-339.5885 parent: 2 - - uid: 2745 + - uid: 898 components: - type: Transform pos: -5.6042686,-140.69159 parent: 2 - - uid: 2777 + - uid: 899 components: - type: Transform pos: 1.1156995,-121.4541 parent: 2 - - uid: 2778 + - uid: 900 components: - type: Transform pos: 1.4750745,-67.40666 parent: 2 - - uid: 11074 + - uid: 901 components: - type: Transform pos: 4.703974,-332.5463 parent: 2 - - uid: 12731 + - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4252734,-358.4766 parent: 2 - - uid: 12998 + - uid: 903 components: - type: Transform pos: -6.6729684,-339.83936 parent: 2 - proto: BoxFolderWhite entities: - - uid: 11075 + - uid: 904 components: - type: Transform pos: 5.205828,-332.4011 parent: 2 - proto: BoxFolderYellow entities: - - uid: 1075 + - uid: 905 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4889371,-58.428474 parent: 2 - - uid: 2776 + - uid: 906 components: - type: Transform pos: 1.5844495,-121.53223 parent: 2 - - uid: 4978 + - uid: 907 components: - type: Transform pos: 1.5176499,-251.36285 parent: 2 - - uid: 6638 + - uid: 908 components: - type: Transform pos: 5.4400353,-254.3202 parent: 2 - - uid: 9083 + - uid: 909 components: - type: Transform pos: 4.3809915,-273.23694 parent: 2 - proto: BoxHandcuff entities: - - uid: 10681 + - uid: 910 components: - type: Transform pos: -6.2767687,-339.93176 parent: 2 - proto: BoxLightbulb entities: - - uid: 8905 + - uid: 911 components: - type: Transform pos: 8.347681,-249.4434 parent: 2 - - uid: 8906 + - uid: 912 components: - type: Transform pos: 8.628931,-249.4434 parent: 2 - proto: BoxLightMixed entities: - - uid: 8965 + - uid: 913 components: - type: Transform pos: -13.339703,-245.36317 parent: 2 - proto: BoxMouthSwab entities: - - uid: 10678 + - uid: 914 components: - type: Transform pos: -6.5179734,-193.50864 parent: 2 - proto: BoxSterileMask entities: - - uid: 10708 + - uid: 915 components: - type: Transform pos: -6.124293,-193.22752 parent: 2 - proto: BoxSyringe entities: - - uid: 2331 + - uid: 916 components: - type: Transform pos: -6.1348615,-84.71074 parent: 2 - - uid: 2909 + - uid: 917 components: - type: Transform pos: 1.3851851,-192.22426 parent: 2 - proto: BrbSign entities: - - uid: 2269 + - uid: 918 components: - type: Transform pos: -0.49859565,-122.45183 parent: 2 - proto: BriefcaseBrown entities: - - uid: 14481 + - uid: 919 components: - type: Transform pos: 17.608545,-82.66066 parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 10798 + - uid: 920 components: - type: Transform pos: 4.4794602,-328.2291 parent: 2 - proto: BrigTimer entities: - - uid: 11154 + - uid: 921 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-368.5 parent: 2 - - uid: 11330 + - uid: 922 components: - type: Transform rot: -1.5707963267948966 rad @@ -12522,9 +12270,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11261: + 364: - Timer: Open - - uid: 11331 + - uid: 923 components: - type: Transform rot: 1.5707963267948966 rad @@ -12532,9 +12280,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11260: + 363: - Timer: Open - - uid: 11332 + - uid: 924 components: - type: Transform rot: 1.5707963267948966 rad @@ -12542,15 +12290,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11259: + 362: - Timer: Open - - uid: 11439 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-368.5 parent: 2 - - uid: 11496 + - uid: 926 components: - type: Transform rot: 1.5707963267948966 rad @@ -12558,18992 +12306,18992 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11258: + 361: - Timer: Open - proto: Brutepack entities: - - uid: 3699 + - uid: 927 components: - type: Transform pos: 8.449239,-173.24081 parent: 2 - - uid: 3700 + - uid: 928 components: - type: Transform pos: 8.72658,-177.42598 parent: 2 - proto: Bucket entities: - - uid: 1742 + - uid: 626 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 929 components: - type: Transform pos: -3.7102582,-53.682693 parent: 2 - - uid: 3244 + - uid: 930 components: - type: Transform pos: -1.1669447,-173.19298 parent: 2 - - uid: 12151 + - uid: 931 components: - type: Transform pos: -5.7254634,-38.660492 parent: 2 - - uid: 14479 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14762 + - uid: 933 components: - type: Transform - parent: 14755 + parent: 932 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 26547 + - uid: 936 components: - type: Transform pos: -4.342669,-374.57834 parent: 2 - proto: ButtonFrameCautionSecurity entities: - - uid: 5465 + - uid: 937 components: - type: Transform pos: 1.5,-334.5 parent: 2 - proto: CableApcExtension entities: - - uid: 61 + - uid: 938 components: - type: Transform pos: 5.5,-97.5 parent: 2 - - uid: 74 + - uid: 939 components: - type: Transform pos: 6.5,-260.5 parent: 2 - - uid: 80 + - uid: 940 components: - type: Transform pos: 4.5,-97.5 parent: 2 - - uid: 168 + - uid: 941 components: - type: Transform pos: -0.5,-58.5 parent: 2 - - uid: 250 + - uid: 942 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 267 + - uid: 943 components: - type: Transform pos: -4.5,-112.5 parent: 2 - - uid: 377 + - uid: 944 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 627 + - uid: 945 components: - type: Transform pos: -4.5,-109.5 parent: 2 - - uid: 634 + - uid: 946 components: - type: Transform pos: -4.5,-111.5 parent: 2 - - uid: 636 + - uid: 947 components: - type: Transform pos: -4.5,-110.5 parent: 2 - - uid: 652 + - uid: 948 components: - type: Transform pos: 5.5,-268.5 parent: 2 - - uid: 745 + - uid: 949 components: - type: Transform pos: -3.5,-109.5 parent: 2 - - uid: 753 + - uid: 950 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 790 + - uid: 951 components: - type: Transform pos: 7.5,-225.5 parent: 2 - - uid: 827 + - uid: 952 components: - type: Transform pos: 5.5,-220.5 parent: 2 - - uid: 843 + - uid: 953 components: - type: Transform pos: -3.5,-330.5 parent: 2 - - uid: 986 + - uid: 954 components: - type: Transform pos: 3.5,-147.5 parent: 2 - - uid: 1006 + - uid: 955 components: - type: Transform pos: 7.5,-138.5 parent: 2 - - uid: 1037 + - uid: 956 components: - type: Transform pos: -4.5,-27.5 parent: 2 - - uid: 1125 + - uid: 957 components: - type: Transform pos: -4.5,-18.5 parent: 2 - - uid: 1130 + - uid: 958 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 1329 + - uid: 959 components: - type: Transform pos: -5.5,-59.5 parent: 2 - - uid: 1367 + - uid: 960 components: - type: Transform pos: -5.5,-62.5 parent: 2 - - uid: 1380 + - uid: 961 components: - type: Transform pos: -5.5,-61.5 parent: 2 - - uid: 1384 + - uid: 962 components: - type: Transform pos: -5.5,-60.5 parent: 2 - - uid: 1385 + - uid: 963 components: - type: Transform pos: 0.5,-58.5 parent: 2 - - uid: 1401 + - uid: 964 components: - type: Transform pos: 6.5,-80.5 parent: 2 - - uid: 1468 + - uid: 965 components: - type: Transform pos: 16.5,-240.5 parent: 2 - - uid: 1494 + - uid: 966 components: - type: Transform pos: 18.5,-243.5 parent: 2 - - uid: 1802 + - uid: 967 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 1834 + - uid: 968 components: - type: Transform pos: -17.5,-252.5 parent: 2 - - uid: 1837 + - uid: 969 components: - type: Transform pos: 5.5,-221.5 parent: 2 - - uid: 2004 + - uid: 970 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 2059 + - uid: 971 components: - type: Transform pos: 3.5,-64.5 parent: 2 - - uid: 2060 + - uid: 972 components: - type: Transform pos: 3.5,-62.5 parent: 2 - - uid: 2061 + - uid: 973 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 2063 + - uid: 974 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 2065 + - uid: 975 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - uid: 2066 + - uid: 976 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 2194 + - uid: 977 components: - type: Transform pos: -9.5,-300.5 parent: 2 - - uid: 2293 + - uid: 978 components: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 2318 + - uid: 979 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 2323 + - uid: 980 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 2324 + - uid: 981 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 2328 + - uid: 982 components: - type: Transform pos: 1.5,-16.5 parent: 2 - - uid: 2402 + - uid: 983 components: - type: Transform pos: -21.5,-241.5 parent: 2 - - uid: 2422 + - uid: 984 components: - type: Transform pos: 3.5,-9.5 parent: 2 - - uid: 2445 + - uid: 985 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 2446 + - uid: 986 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 2479 + - uid: 987 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 2485 + - uid: 988 components: - type: Transform pos: -19.5,-237.5 parent: 2 - - uid: 2487 + - uid: 989 components: - type: Transform pos: -11.5,-162.5 parent: 2 - - uid: 2505 + - uid: 990 components: - type: Transform pos: 5.5,-80.5 parent: 2 - - uid: 2639 + - uid: 991 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 2642 + - uid: 992 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 2644 + - uid: 993 components: - type: Transform pos: -1.5,-125.5 parent: 2 - - uid: 2716 + - uid: 994 components: - type: Transform pos: 3.5,-115.5 parent: 2 - - uid: 2727 + - uid: 995 components: - type: Transform pos: 3.5,-114.5 parent: 2 - - uid: 2731 + - uid: 996 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 2739 + - uid: 997 components: - type: Transform pos: 3.5,-253.5 parent: 2 - - uid: 2743 + - uid: 998 components: - type: Transform pos: 1.5,-121.5 parent: 2 - - uid: 2844 + - uid: 999 components: - type: Transform pos: 2.5,-208.5 parent: 2 - - uid: 2858 + - uid: 1000 components: - type: Transform pos: 2.5,-121.5 parent: 2 - - uid: 2876 + - uid: 1001 components: - type: Transform pos: -0.5,-121.5 parent: 2 - - uid: 2877 + - uid: 1002 components: - type: Transform pos: -1.5,-121.5 parent: 2 - - uid: 2914 + - uid: 1003 components: - type: Transform pos: -17.5,-237.5 parent: 2 - - uid: 2915 + - uid: 1004 components: - type: Transform pos: -14.5,-238.5 parent: 2 - - uid: 2918 + - uid: 1005 components: - type: Transform pos: -16.5,-237.5 parent: 2 - - uid: 2954 + - uid: 1006 components: - type: Transform pos: 8.5,-115.5 parent: 2 - - uid: 2955 + - uid: 1007 components: - type: Transform pos: -14.5,-239.5 parent: 2 - - uid: 2987 + - uid: 1008 components: - type: Transform pos: -1.5,-330.5 parent: 2 - - uid: 3005 + - uid: 1009 components: - type: Transform pos: -0.5,-125.5 parent: 2 - - uid: 3053 + - uid: 1010 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 3077 + - uid: 1011 components: - type: Transform pos: -14.5,-241.5 parent: 2 - - uid: 3104 + - uid: 1012 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 3132 + - uid: 1013 components: - type: Transform pos: -14.5,-242.5 parent: 2 - - uid: 3152 + - uid: 1014 components: - type: Transform pos: -15.5,-237.5 parent: 2 - - uid: 3171 + - uid: 1015 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 3247 + - uid: 1016 components: - type: Transform pos: -7.5,-335.5 parent: 2 - - uid: 3254 + - uid: 1017 components: - type: Transform pos: -18.5,-237.5 parent: 2 - - uid: 3396 + - uid: 1018 components: - type: Transform pos: -14.5,-237.5 parent: 2 - - uid: 3487 + - uid: 1019 components: - type: Transform pos: -6.5,-163.5 parent: 2 - - uid: 3532 + - uid: 1020 components: - type: Transform pos: -14.5,-240.5 parent: 2 - - uid: 3640 + - uid: 1021 components: - type: Transform pos: 7.5,-120.5 parent: 2 - - uid: 3641 + - uid: 1022 components: - type: Transform pos: -8.5,-132.5 parent: 2 - - uid: 3763 + - uid: 1023 components: - type: Transform pos: -21.5,-244.5 parent: 2 - - uid: 3765 + - uid: 1024 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 3904 + - uid: 1025 components: - type: Transform pos: -0.5,-330.5 parent: 2 - - uid: 4043 + - uid: 1026 components: - type: Transform pos: -9.5,-301.5 parent: 2 - - uid: 4115 + - uid: 1027 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 4184 + - uid: 1028 components: - type: Transform pos: -4.5,-105.5 parent: 2 - - uid: 4207 + - uid: 1029 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 4208 + - uid: 1030 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 4213 + - uid: 1031 components: - type: Transform pos: 18.5,-263.5 parent: 2 - - uid: 4340 + - uid: 1032 components: - type: Transform pos: 3.5,-222.5 parent: 2 - - uid: 4341 + - uid: 1033 components: - type: Transform pos: 5.5,-222.5 parent: 2 - - uid: 4587 + - uid: 1034 components: - type: Transform pos: -10.5,-167.5 parent: 2 - - uid: 4612 + - uid: 1035 components: - type: Transform pos: -21.5,-245.5 parent: 2 - - uid: 4638 + - uid: 1036 components: - type: Transform pos: 5.5,-143.5 parent: 2 - - uid: 4658 + - uid: 1037 components: - type: Transform pos: 8.5,-119.5 parent: 2 - - uid: 4682 + - uid: 1038 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 4752 + - uid: 1039 components: - type: Transform pos: 5.5,-0.5 parent: 2 - - uid: 4753 + - uid: 1040 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 4754 + - uid: 1041 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 4873 + - uid: 1042 components: - type: Transform pos: 9.5,-243.5 parent: 2 - - uid: 4900 + - uid: 1043 components: - type: Transform pos: 5.5,-219.5 parent: 2 - - uid: 4901 + - uid: 1044 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 4941 + - uid: 1045 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 4980 + - uid: 1046 components: - type: Transform pos: 5.5,-226.5 parent: 2 - - uid: 4994 + - uid: 1047 components: - type: Transform pos: 5.5,-147.5 parent: 2 - - uid: 5043 + - uid: 1048 components: - type: Transform pos: 5.5,-106.5 parent: 2 - - uid: 5211 + - uid: 1049 + components: + - type: Transform + pos: 1.5,-319.5 + parent: 2 + - uid: 1050 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 5294 + - uid: 1051 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 5295 + - uid: 1052 components: - type: Transform pos: 4.5,-222.5 parent: 2 - - uid: 5296 + - uid: 1053 components: - type: Transform pos: 2.5,-116.5 parent: 2 - - uid: 5322 + - uid: 1054 components: - type: Transform pos: 5.5,-104.5 parent: 2 - - uid: 5327 + - uid: 1055 components: - type: Transform pos: 7.5,-224.5 parent: 2 - - uid: 5329 + - uid: 1056 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 5330 + - uid: 1057 components: - type: Transform pos: 2.5,-28.5 parent: 2 - - uid: 5331 + - uid: 1058 components: - type: Transform pos: 3.5,-247.5 parent: 2 - - uid: 5400 + - uid: 1059 components: - type: Transform pos: 3.5,-30.5 parent: 2 - - uid: 5415 + - uid: 1060 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 5426 + - uid: 1061 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 5427 + - uid: 1062 components: - type: Transform pos: 3.5,-220.5 parent: 2 - - uid: 5430 + - uid: 1063 components: - type: Transform pos: -0.5,-179.5 parent: 2 - - uid: 5431 + - uid: 1064 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 5432 + - uid: 1065 components: - type: Transform pos: -2.5,-179.5 parent: 2 - - uid: 5433 + - uid: 1066 components: - type: Transform pos: -3.5,-179.5 parent: 2 - - uid: 5470 + - uid: 1067 components: - type: Transform pos: -20.5,-243.5 parent: 2 - - uid: 5474 + - uid: 1068 components: - type: Transform pos: -21.5,-243.5 parent: 2 - - uid: 5477 + - uid: 1069 components: - type: Transform pos: -18.5,-243.5 parent: 2 - - uid: 5478 + - uid: 1070 components: - type: Transform pos: -19.5,-243.5 parent: 2 - - uid: 5480 + - uid: 1071 components: - type: Transform pos: -17.5,-243.5 parent: 2 - - uid: 5484 + - uid: 1072 components: - type: Transform pos: -4.5,-113.5 parent: 2 - - uid: 5485 + - uid: 1073 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 5505 + - uid: 1074 components: - type: Transform pos: -9.5,-167.5 parent: 2 - - uid: 5655 + - uid: 1075 components: - type: Transform pos: -8.5,-167.5 parent: 2 - - uid: 5696 + - uid: 1076 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5697 + - uid: 1077 components: - type: Transform pos: -2.5,-12.5 parent: 2 - - uid: 5698 + - uid: 1078 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 5701 + - uid: 1079 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5702 + - uid: 1080 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5703 + - uid: 1081 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 5704 + - uid: 1082 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 5705 + - uid: 1083 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 5706 + - uid: 1084 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 5707 + - uid: 1085 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 5708 + - uid: 1086 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 5709 + - uid: 1087 components: - type: Transform pos: -3.5,-2.5 parent: 2 - - uid: 5710 + - uid: 1088 components: - type: Transform pos: -2.5,-1.5 parent: 2 - - uid: 5711 + - uid: 1089 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5712 + - uid: 1090 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 5713 + - uid: 1091 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 5714 + - uid: 1092 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 5715 + - uid: 1093 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 5716 + - uid: 1094 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 5717 + - uid: 1095 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 5718 + - uid: 1096 components: - type: Transform pos: -1.5,-6.5 parent: 2 - - uid: 5719 + - uid: 1097 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 5720 + - uid: 1098 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 5721 + - uid: 1099 components: - type: Transform pos: 2.5,-6.5 parent: 2 - - uid: 5722 + - uid: 1100 components: - type: Transform pos: 2.5,-7.5 parent: 2 - - uid: 5723 + - uid: 1101 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 5724 + - uid: 1102 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 5725 + - uid: 1103 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 5726 + - uid: 1104 components: - type: Transform pos: 2.5,-11.5 parent: 2 - - uid: 5727 + - uid: 1105 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 5728 + - uid: 1106 components: - type: Transform pos: 2.5,-13.5 parent: 2 - - uid: 5729 + - uid: 1107 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 5730 + - uid: 1108 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 5731 + - uid: 1109 components: - type: Transform pos: 2.5,-16.5 parent: 2 - - uid: 5732 + - uid: 1110 components: - type: Transform pos: 5.5,-9.5 parent: 2 - - uid: 5733 + - uid: 1111 components: - type: Transform pos: 6.5,-9.5 parent: 2 - - uid: 5734 + - uid: 1112 components: - type: Transform pos: 5.5,-5.5 parent: 2 - - uid: 5735 + - uid: 1113 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 5736 + - uid: 1114 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 5737 + - uid: 1115 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 5739 + - uid: 1116 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 5740 + - uid: 1117 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 5742 + - uid: 1118 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 5744 + - uid: 1119 components: - type: Transform pos: -2.5,-13.5 parent: 2 - - uid: 5745 + - uid: 1120 components: - type: Transform pos: -2.5,-14.5 parent: 2 - - uid: 5746 + - uid: 1121 components: - type: Transform pos: -3.5,-14.5 parent: 2 - - uid: 5747 + - uid: 1122 components: - type: Transform pos: -1.5,-14.5 parent: 2 - - uid: 5748 + - uid: 1123 components: - type: Transform pos: -2.5,-9.5 parent: 2 - - uid: 5751 + - uid: 1124 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 5752 + - uid: 1125 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 5753 + - uid: 1126 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 5754 + - uid: 1127 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 5755 + - uid: 1128 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 5756 + - uid: 1129 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 5757 + - uid: 1130 components: - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 5758 + - uid: 1131 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 5759 + - uid: 1132 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 5760 + - uid: 1133 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 5762 + - uid: 1134 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 5763 + - uid: 1135 components: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 5764 + - uid: 1136 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 5765 + - uid: 1137 components: - type: Transform pos: 1.5,0.5 parent: 2 - - uid: 5766 + - uid: 1138 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 5767 + - uid: 1139 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 5769 + - uid: 1140 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 5770 + - uid: 1141 components: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 5771 + - uid: 1142 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 5772 + - uid: 1143 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 5773 + - uid: 1144 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 5774 + - uid: 1145 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 5775 + - uid: 1146 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 5776 + - uid: 1147 components: - type: Transform pos: -2.5,1.5 parent: 2 - - uid: 5777 + - uid: 1148 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 5778 + - uid: 1149 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 5779 + - uid: 1150 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 5780 + - uid: 1151 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 5782 + - uid: 1152 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 5783 + - uid: 1153 components: - type: Transform pos: 3.5,-221.5 parent: 2 - - uid: 5821 + - uid: 1154 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 5822 + - uid: 1155 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 5823 + - uid: 1156 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 5824 + - uid: 1157 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 5825 + - uid: 1158 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 5826 + - uid: 1159 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 5827 + - uid: 1160 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5828 + - uid: 1161 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5829 + - uid: 1162 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 5830 + - uid: 1163 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 5831 + - uid: 1164 components: - type: Transform pos: -1.5,-28.5 parent: 2 - - uid: 5832 + - uid: 1165 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 5833 + - uid: 1166 components: - type: Transform pos: -3.5,-28.5 parent: 2 - - uid: 5834 + - uid: 1167 components: - type: Transform pos: -4.5,-28.5 parent: 2 - - uid: 5835 + - uid: 1168 components: - type: Transform pos: -1.5,-30.5 parent: 2 - - uid: 5836 + - uid: 1169 components: - type: Transform pos: -2.5,-30.5 parent: 2 - - uid: 5837 + - uid: 1170 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 5838 + - uid: 1171 components: - type: Transform pos: -4.5,-30.5 parent: 2 - - uid: 5840 + - uid: 1172 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 5841 + - uid: 1173 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 5843 + - uid: 1174 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 5845 + - uid: 1175 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 5846 + - uid: 1176 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 5847 + - uid: 1177 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 5848 + - uid: 1178 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 5849 + - uid: 1179 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 5850 + - uid: 1180 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 5853 + - uid: 1181 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 5854 + - uid: 1182 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 5855 + - uid: 1183 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5856 + - uid: 1184 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 5857 + - uid: 1185 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 5858 + - uid: 1186 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 5859 + - uid: 1187 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 5860 + - uid: 1188 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 5861 + - uid: 1189 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 5862 + - uid: 1190 components: - type: Transform pos: -1.5,-46.5 parent: 2 - - uid: 5863 + - uid: 1191 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 5865 + - uid: 1192 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 5866 + - uid: 1193 components: - type: Transform pos: 2.5,-43.5 parent: 2 - - uid: 5867 + - uid: 1194 components: - type: Transform pos: 3.5,-43.5 parent: 2 - - uid: 5868 + - uid: 1195 components: - type: Transform pos: 4.5,-43.5 parent: 2 - - uid: 5869 + - uid: 1196 components: - type: Transform pos: 5.5,-43.5 parent: 2 - - uid: 5870 + - uid: 1197 components: - type: Transform pos: 6.5,-43.5 parent: 2 - - uid: 5871 + - uid: 1198 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 5874 + - uid: 1199 components: - type: Transform pos: 5.5,-42.5 parent: 2 - - uid: 5875 + - uid: 1200 components: - type: Transform pos: 5.5,-41.5 parent: 2 - - uid: 5876 + - uid: 1201 components: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 5877 + - uid: 1202 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 5878 + - uid: 1203 components: - type: Transform pos: 5.5,-38.5 parent: 2 - - uid: 5879 + - uid: 1204 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 5880 + - uid: 1205 components: - type: Transform pos: 5.5,-36.5 parent: 2 - - uid: 5882 + - uid: 1206 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 5883 + - uid: 1207 components: - type: Transform pos: 3.5,-37.5 parent: 2 - - uid: 5885 + - uid: 1208 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 5886 + - uid: 1209 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5887 + - uid: 1210 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5888 + - uid: 1211 components: - type: Transform pos: 6.5,-36.5 parent: 2 - - uid: 5889 + - uid: 1212 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 5890 + - uid: 1213 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5891 + - uid: 1214 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5892 + - uid: 1215 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5893 + - uid: 1216 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5895 + - uid: 1217 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5896 + - uid: 1218 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 5897 + - uid: 1219 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 5898 + - uid: 1220 components: - type: Transform pos: 2.5,-34.5 parent: 2 - - uid: 5899 + - uid: 1221 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 5900 + - uid: 1222 components: - type: Transform pos: 4.5,-34.5 parent: 2 - - uid: 5901 + - uid: 1223 components: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 5902 + - uid: 1224 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 5903 + - uid: 1225 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 5904 + - uid: 1226 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 5905 + - uid: 1227 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 5906 + - uid: 1228 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 5907 + - uid: 1229 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 5908 + - uid: 1230 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 5909 + - uid: 1231 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 5910 + - uid: 1232 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 5911 + - uid: 1233 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 5912 + - uid: 1234 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 5913 + - uid: 1235 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 5914 + - uid: 1236 components: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 5915 + - uid: 1237 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 5916 + - uid: 1238 components: - type: Transform pos: 5.5,-23.5 parent: 2 - - uid: 5917 + - uid: 1239 components: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 5918 + - uid: 1240 components: - type: Transform pos: 5.5,-21.5 parent: 2 - - uid: 5919 + - uid: 1241 components: - type: Transform pos: 5.5,-20.5 parent: 2 - - uid: 5920 + - uid: 1242 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 5921 + - uid: 1243 components: - type: Transform pos: 5.5,-18.5 parent: 2 - - uid: 5922 + - uid: 1244 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 5923 + - uid: 1245 components: - type: Transform pos: 5.5,-16.5 parent: 2 - - uid: 5924 + - uid: 1246 components: - type: Transform pos: 5.5,-15.5 parent: 2 - - uid: 5927 + - uid: 1247 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 5928 + - uid: 1248 components: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 5929 + - uid: 1249 components: - type: Transform pos: -2.5,-32.5 parent: 2 - - uid: 5930 + - uid: 1250 components: - type: Transform pos: -3.5,-32.5 parent: 2 - - uid: 5931 + - uid: 1251 components: - type: Transform pos: -4.5,-32.5 parent: 2 - - uid: 5932 + - uid: 1252 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 5933 + - uid: 1253 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 5934 + - uid: 1254 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 5935 + - uid: 1255 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 5936 + - uid: 1256 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 5937 + - uid: 1257 components: - type: Transform pos: 3.5,-32.5 parent: 2 - - uid: 5938 + - uid: 1258 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 5939 + - uid: 1259 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5940 + - uid: 1260 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5941 + - uid: 1261 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5942 + - uid: 1262 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 5943 + - uid: 1263 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5944 + - uid: 1264 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5945 + - uid: 1265 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5946 + - uid: 1266 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5947 + - uid: 1267 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5948 + - uid: 1268 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5949 + - uid: 1269 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5950 + - uid: 1270 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5951 + - uid: 1271 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5952 + - uid: 1272 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5953 + - uid: 1273 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5954 + - uid: 1274 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 5955 + - uid: 1275 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 5956 + - uid: 1276 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 5957 + - uid: 1277 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 5958 + - uid: 1278 components: - type: Transform pos: -6.5,-43.5 parent: 2 - - uid: 5964 + - uid: 1279 components: - type: Transform pos: 2.5,-37.5 parent: 2 - - uid: 5966 + - uid: 1280 components: - type: Transform pos: 5.5,-44.5 parent: 2 - - uid: 5967 + - uid: 1281 components: - type: Transform pos: 3.5,-44.5 parent: 2 - - uid: 5968 + - uid: 1282 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 6017 + - uid: 1283 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 6018 + - uid: 1284 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 6020 + - uid: 1285 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 6021 + - uid: 1286 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 6022 + - uid: 1287 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 6023 + - uid: 1288 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 6024 + - uid: 1289 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 6025 + - uid: 1290 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 6026 + - uid: 1291 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 6027 + - uid: 1292 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 6028 + - uid: 1293 components: - type: Transform pos: -1.5,-52.5 parent: 2 - - uid: 6029 + - uid: 1294 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 6030 + - uid: 1295 components: - type: Transform pos: -1.5,-58.5 parent: 2 - - uid: 6031 + - uid: 1296 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 6032 + - uid: 1297 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 6033 + - uid: 1298 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 6034 + - uid: 1299 components: - type: Transform pos: -1.5,-64.5 parent: 2 - - uid: 6035 + - uid: 1300 components: - type: Transform pos: 1.5,-63.5 parent: 2 - - uid: 6037 + - uid: 1301 components: - type: Transform pos: -1.5,-63.5 parent: 2 - - uid: 6039 + - uid: 1302 components: - type: Transform pos: -1.5,-62.5 parent: 2 - - uid: 6040 + - uid: 1303 components: - type: Transform pos: -1.5,-61.5 parent: 2 - - uid: 6042 + - uid: 1304 components: - type: Transform pos: -0.5,-61.5 parent: 2 - - uid: 6043 + - uid: 1305 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 6044 + - uid: 1306 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 6045 + - uid: 1307 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 6047 + - uid: 1308 components: - type: Transform pos: -2.5,-58.5 parent: 2 - - uid: 6048 + - uid: 1309 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 6049 + - uid: 1310 components: - type: Transform pos: -4.5,-58.5 parent: 2 - - uid: 6050 + - uid: 1311 components: - type: Transform pos: -5.5,-58.5 parent: 2 - - uid: 6051 + - uid: 1312 components: - type: Transform pos: -5.5,-57.5 parent: 2 - - uid: 6053 + - uid: 1313 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 6054 + - uid: 1314 components: - type: Transform pos: -5.5,-54.5 parent: 2 - - uid: 6055 + - uid: 1315 components: - type: Transform pos: -4.5,-54.5 parent: 2 - - uid: 6056 + - uid: 1316 components: - type: Transform pos: -3.5,-54.5 parent: 2 - - uid: 6057 + - uid: 1317 components: - type: Transform pos: -2.5,-54.5 parent: 2 - - uid: 6058 + - uid: 1318 components: - type: Transform pos: -5.5,-63.5 parent: 2 - - uid: 6059 + - uid: 1319 components: - type: Transform pos: -5.5,-64.5 parent: 2 - - uid: 6060 + - uid: 1320 components: - type: Transform pos: -5.5,-65.5 parent: 2 - - uid: 6063 + - uid: 1321 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 6064 + - uid: 1322 components: - type: Transform pos: -2.5,-71.5 parent: 2 - - uid: 6065 + - uid: 1323 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 6066 + - uid: 1324 components: - type: Transform pos: -4.5,-71.5 parent: 2 - - uid: 6067 + - uid: 1325 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 6070 + - uid: 1326 components: - type: Transform pos: -4.5,-72.5 parent: 2 - - uid: 6071 + - uid: 1327 components: - type: Transform pos: -5.5,-71.5 parent: 2 - - uid: 6072 + - uid: 1328 components: - type: Transform pos: -5.5,-66.5 parent: 2 - - uid: 6073 + - uid: 1329 components: - type: Transform pos: -5.5,-67.5 parent: 2 - - uid: 6074 + - uid: 1330 components: - type: Transform pos: -4.5,-67.5 parent: 2 - - uid: 6075 + - uid: 1331 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 6076 + - uid: 1332 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 6077 + - uid: 1333 components: - type: Transform pos: -1.5,-67.5 parent: 2 - - uid: 6078 + - uid: 1334 components: - type: Transform pos: -0.5,-67.5 parent: 2 - - uid: 6079 + - uid: 1335 components: - type: Transform pos: 0.5,-67.5 parent: 2 - - uid: 6080 + - uid: 1336 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 6081 + - uid: 1337 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 6082 + - uid: 1338 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 6083 + - uid: 1339 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 6084 + - uid: 1340 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 6085 + - uid: 1341 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 6086 + - uid: 1342 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 6087 + - uid: 1343 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 6088 + - uid: 1344 components: - type: Transform pos: -0.5,-73.5 parent: 2 - - uid: 6089 + - uid: 1345 components: - type: Transform pos: -1.5,-73.5 parent: 2 - - uid: 6090 + - uid: 1346 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 6091 + - uid: 1347 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 6092 + - uid: 1348 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 6093 + - uid: 1349 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 6094 + - uid: 1350 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 6095 + - uid: 1351 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 6096 + - uid: 1352 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 6097 + - uid: 1353 components: - type: Transform pos: 6.5,-69.5 parent: 2 - - uid: 6098 + - uid: 1354 components: - type: Transform pos: 6.5,-70.5 parent: 2 - - uid: 6099 + - uid: 1355 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 6100 + - uid: 1356 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 6101 + - uid: 1357 components: - type: Transform pos: 5.5,-72.5 parent: 2 - - uid: 6102 + - uid: 1358 components: - type: Transform pos: 5.5,-73.5 parent: 2 - - uid: 6103 + - uid: 1359 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 6104 + - uid: 1360 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 6105 + - uid: 1361 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 6106 + - uid: 1362 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 6107 + - uid: 1363 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 6108 + - uid: 1364 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 6109 + - uid: 1365 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 6110 + - uid: 1366 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 6111 + - uid: 1367 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 6112 + - uid: 1368 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 6113 + - uid: 1369 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 6114 + - uid: 1370 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 6115 + - uid: 1371 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 6116 + - uid: 1372 components: - type: Transform pos: 5.5,-53.5 parent: 2 - - uid: 6117 + - uid: 1373 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 6118 + - uid: 1374 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 6119 + - uid: 1375 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 6120 + - uid: 1376 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 6121 + - uid: 1377 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 6122 + - uid: 1378 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 6123 + - uid: 1379 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 6124 + - uid: 1380 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 6125 + - uid: 1381 components: - type: Transform pos: -0.5,-79.5 parent: 2 - - uid: 6126 + - uid: 1382 components: - type: Transform pos: -1.5,-79.5 parent: 2 - - uid: 6127 + - uid: 1383 components: - type: Transform pos: -4.5,-73.5 parent: 2 - - uid: 6128 + - uid: 1384 components: - type: Transform pos: -2.5,-72.5 parent: 2 - - uid: 6163 + - uid: 1385 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6164 + - uid: 1386 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 6165 + - uid: 1387 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 6166 + - uid: 1388 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 6167 + - uid: 1389 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 6168 + - uid: 1390 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 6169 + - uid: 1391 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 6170 + - uid: 1392 components: - type: Transform pos: -4.5,-86.5 parent: 2 - - uid: 6171 + - uid: 1393 components: - type: Transform pos: -5.5,-86.5 parent: 2 - - uid: 6172 + - uid: 1394 components: - type: Transform pos: -6.5,-86.5 parent: 2 - - uid: 6173 + - uid: 1395 components: - type: Transform pos: -7.5,-86.5 parent: 2 - - uid: 6174 + - uid: 1396 components: - type: Transform pos: -8.5,-86.5 parent: 2 - - uid: 6175 + - uid: 1397 components: - type: Transform pos: -7.5,-85.5 parent: 2 - - uid: 6176 + - uid: 1398 components: - type: Transform pos: -7.5,-84.5 parent: 2 - - uid: 6177 + - uid: 1399 components: - type: Transform pos: -7.5,-87.5 parent: 2 - - uid: 6178 + - uid: 1400 components: - type: Transform pos: -7.5,-88.5 parent: 2 - - uid: 6179 + - uid: 1401 components: - type: Transform pos: -5.5,-87.5 parent: 2 - - uid: 6180 + - uid: 1402 components: - type: Transform pos: -5.5,-88.5 parent: 2 - - uid: 6181 + - uid: 1403 components: - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 6182 + - uid: 1404 components: - type: Transform pos: -5.5,-84.5 parent: 2 - - uid: 6183 + - uid: 1405 components: - type: Transform pos: -9.5,-86.5 parent: 2 - - uid: 6184 + - uid: 1406 components: - type: Transform pos: -7.5,-89.5 parent: 2 - - uid: 6185 + - uid: 1407 components: - type: Transform pos: -7.5,-83.5 parent: 2 - - uid: 6187 + - uid: 1408 components: - type: Transform pos: 1.5,-219.5 parent: 2 - - uid: 6189 + - uid: 1409 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 6190 + - uid: 1410 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 6191 + - uid: 1411 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 6192 + - uid: 1412 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 6193 + - uid: 1413 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 6194 + - uid: 1414 components: - type: Transform pos: 3.5,-97.5 parent: 2 - - uid: 6196 + - uid: 1415 components: - type: Transform pos: -2.5,-91.5 parent: 2 - - uid: 6197 + - uid: 1416 components: - type: Transform pos: -4.5,-91.5 parent: 2 - - uid: 6199 + - uid: 1417 components: - type: Transform pos: -0.5,-84.5 parent: 2 - - uid: 6200 + - uid: 1418 components: - type: Transform pos: -2.5,-93.5 parent: 2 - - uid: 6201 + - uid: 1419 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 6204 + - uid: 1420 components: - type: Transform pos: -2.5,-86.5 parent: 2 - - uid: 6206 + - uid: 1421 components: - type: Transform pos: -1.5,-86.5 parent: 2 - - uid: 6207 + - uid: 1422 components: - type: Transform pos: -0.5,-86.5 parent: 2 - - uid: 6208 + - uid: 1423 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 6209 + - uid: 1424 components: - type: Transform pos: 0.5,-86.5 parent: 2 - - uid: 6210 + - uid: 1425 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 6211 + - uid: 1426 components: - type: Transform pos: 1.5,-87.5 parent: 2 - - uid: 6212 + - uid: 1427 components: - type: Transform pos: 1.5,-88.5 parent: 2 - - uid: 6213 + - uid: 1428 components: - type: Transform pos: 1.5,-89.5 parent: 2 - - uid: 6214 + - uid: 1429 components: - type: Transform pos: 1.5,-90.5 parent: 2 - - uid: 6215 + - uid: 1430 components: - type: Transform pos: 1.5,-91.5 parent: 2 - - uid: 6216 + - uid: 1431 components: - type: Transform pos: 1.5,-92.5 parent: 2 - - uid: 6217 + - uid: 1432 components: - type: Transform pos: 0.5,-92.5 parent: 2 - - uid: 6218 + - uid: 1433 components: - type: Transform pos: 2.5,-97.5 parent: 2 - - uid: 6219 + - uid: 1434 components: - type: Transform pos: 1.5,-97.5 parent: 2 - - uid: 6220 + - uid: 1435 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 6221 + - uid: 1436 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 6222 + - uid: 1437 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 6223 + - uid: 1438 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 6224 + - uid: 1439 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 6225 + - uid: 1440 components: - type: Transform pos: -4.5,-97.5 parent: 2 - - uid: 6226 + - uid: 1441 components: - type: Transform pos: -5.5,-97.5 parent: 2 - - uid: 6227 + - uid: 1442 components: - type: Transform pos: -4.5,-96.5 parent: 2 - - uid: 6228 + - uid: 1443 components: - type: Transform pos: -2.5,-96.5 parent: 2 - - uid: 6229 + - uid: 1444 components: - type: Transform pos: -4.5,-99.5 parent: 2 - - uid: 6230 + - uid: 1445 components: - type: Transform pos: -4.5,-98.5 parent: 2 - - uid: 6232 + - uid: 1446 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 6233 + - uid: 1447 components: - type: Transform pos: 0.5,-96.5 parent: 2 - - uid: 6234 + - uid: 1448 components: - type: Transform pos: 0.5,-95.5 parent: 2 - - uid: 6235 + - uid: 1449 components: - type: Transform pos: 2.5,-96.5 parent: 2 - - uid: 6236 + - uid: 1450 components: - type: Transform pos: 2.5,-95.5 parent: 2 - - uid: 6237 + - uid: 1451 components: - type: Transform pos: 4.5,-96.5 parent: 2 - - uid: 6238 + - uid: 1452 components: - type: Transform pos: 4.5,-95.5 parent: 2 - - uid: 6240 + - uid: 1453 components: - type: Transform pos: 6.5,-96.5 parent: 2 - - uid: 6241 + - uid: 1454 components: - type: Transform pos: 6.5,-95.5 parent: 2 - - uid: 6242 + - uid: 1455 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 6243 + - uid: 1456 components: - type: Transform pos: 6.5,-93.5 parent: 2 - - uid: 6244 + - uid: 1457 components: - type: Transform pos: 6.5,-92.5 parent: 2 - - uid: 6245 + - uid: 1458 components: - type: Transform pos: 6.5,-91.5 parent: 2 - - uid: 6246 + - uid: 1459 components: - type: Transform pos: 6.5,-90.5 parent: 2 - - uid: 6247 + - uid: 1460 components: - type: Transform pos: 6.5,-89.5 parent: 2 - - uid: 6248 + - uid: 1461 components: - type: Transform pos: 6.5,-88.5 parent: 2 - - uid: 6249 + - uid: 1462 components: - type: Transform pos: 6.5,-87.5 parent: 2 - - uid: 6250 + - uid: 1463 components: - type: Transform pos: 6.5,-86.5 parent: 2 - - uid: 6251 + - uid: 1464 components: - type: Transform pos: 6.5,-85.5 parent: 2 - - uid: 6252 + - uid: 1465 components: - type: Transform pos: 6.5,-84.5 parent: 2 - - uid: 6253 + - uid: 1466 components: - type: Transform pos: 6.5,-83.5 parent: 2 - - uid: 6254 + - uid: 1467 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 6256 + - uid: 1468 components: - type: Transform pos: 4.5,-94.5 parent: 2 - - uid: 6257 + - uid: 1469 components: - type: Transform pos: 4.5,-93.5 parent: 2 - - uid: 6258 + - uid: 1470 components: - type: Transform pos: 4.5,-92.5 parent: 2 - - uid: 6259 + - uid: 1471 components: - type: Transform pos: 4.5,-91.5 parent: 2 - - uid: 6260 + - uid: 1472 components: - type: Transform pos: 4.5,-90.5 parent: 2 - - uid: 6261 + - uid: 1473 components: - type: Transform pos: 4.5,-89.5 parent: 2 - - uid: 6262 + - uid: 1474 components: - type: Transform pos: 4.5,-88.5 parent: 2 - - uid: 6263 + - uid: 1475 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 6264 - components: - - type: Transform - pos: 4.5,-86.5 - parent: 2 - - uid: 6265 + - uid: 1476 components: - type: Transform pos: 4.5,-85.5 parent: 2 - - uid: 6266 + - uid: 1477 components: - type: Transform pos: 4.5,-84.5 parent: 2 - - uid: 6267 + - uid: 1478 components: - type: Transform pos: 4.5,-83.5 parent: 2 - - uid: 6268 + - uid: 1479 components: - type: Transform pos: 4.5,-82.5 parent: 2 - - uid: 6269 + - uid: 1480 components: - type: Transform pos: 4.5,-81.5 parent: 2 - - uid: 6270 + - uid: 1481 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 6271 + - uid: 1482 components: - type: Transform pos: 3.5,-81.5 parent: 2 - - uid: 6272 + - uid: 1483 components: - type: Transform pos: 2.5,-81.5 parent: 2 - - uid: 6273 + - uid: 1484 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 6275 + - uid: 1485 components: - type: Transform pos: 0.5,-100.5 parent: 2 - - uid: 6276 + - uid: 1486 components: - type: Transform pos: 1.5,-100.5 parent: 2 - - uid: 6277 + - uid: 1487 components: - type: Transform pos: 2.5,-100.5 parent: 2 - - uid: 6278 + - uid: 1488 components: - type: Transform pos: -0.5,-100.5 parent: 2 - - uid: 6279 + - uid: 1489 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 6280 + - uid: 1490 components: - type: Transform pos: 0.5,-99.5 parent: 2 - - uid: 6281 + - uid: 1491 components: - type: Transform pos: 0.5,-101.5 parent: 2 - - uid: 6282 + - uid: 1492 components: - type: Transform pos: 0.5,-98.5 parent: 2 - - uid: 6303 + - uid: 1493 components: - type: Transform pos: 5.5,-161.5 parent: 2 - - uid: 6308 + - uid: 1494 components: - type: Transform pos: -4.5,-114.5 parent: 2 - - uid: 6309 + - uid: 1495 components: - type: Transform pos: -4.5,-115.5 parent: 2 - - uid: 6310 + - uid: 1496 components: - type: Transform pos: -4.5,-116.5 parent: 2 - - uid: 6311 + - uid: 1497 components: - type: Transform pos: -4.5,-117.5 parent: 2 - - uid: 6312 + - uid: 1498 components: - type: Transform pos: -4.5,-118.5 parent: 2 - - uid: 6313 + - uid: 1499 components: - type: Transform pos: -4.5,-119.5 parent: 2 - - uid: 6314 + - uid: 1500 components: - type: Transform pos: -4.5,-120.5 parent: 2 - - uid: 6315 + - uid: 1501 components: - type: Transform pos: -4.5,-121.5 parent: 2 - - uid: 6316 + - uid: 1502 components: - type: Transform pos: -4.5,-122.5 parent: 2 - - uid: 6317 + - uid: 1503 components: - type: Transform pos: -4.5,-123.5 parent: 2 - - uid: 6318 + - uid: 1504 components: - type: Transform pos: -4.5,-124.5 parent: 2 - - uid: 6319 + - uid: 1505 components: - type: Transform pos: -4.5,-125.5 parent: 2 - - uid: 6320 + - uid: 1506 components: - type: Transform pos: -5.5,-125.5 parent: 2 - - uid: 6321 + - uid: 1507 components: - type: Transform pos: -6.5,-125.5 parent: 2 - - uid: 6322 + - uid: 1508 components: - type: Transform pos: -7.5,-125.5 parent: 2 - - uid: 6323 + - uid: 1509 components: - type: Transform pos: -8.5,-125.5 parent: 2 - - uid: 6324 + - uid: 1510 components: - type: Transform pos: -5.5,-122.5 parent: 2 - - uid: 6325 + - uid: 1511 components: - type: Transform pos: -6.5,-122.5 parent: 2 - - uid: 6326 + - uid: 1512 components: - type: Transform pos: -7.5,-122.5 parent: 2 - - uid: 6327 + - uid: 1513 components: - type: Transform pos: -8.5,-122.5 parent: 2 - - uid: 6328 + - uid: 1514 components: - type: Transform pos: -5.5,-119.5 parent: 2 - - uid: 6329 + - uid: 1515 components: - type: Transform pos: -6.5,-119.5 parent: 2 - - uid: 6330 + - uid: 1516 components: - type: Transform pos: -7.5,-119.5 parent: 2 - - uid: 6331 + - uid: 1517 components: - type: Transform pos: -8.5,-119.5 parent: 2 - - uid: 6332 + - uid: 1518 components: - type: Transform pos: -5.5,-116.5 parent: 2 - - uid: 6333 + - uid: 1519 components: - type: Transform pos: -6.5,-116.5 parent: 2 - - uid: 6334 + - uid: 1520 components: - type: Transform pos: -7.5,-116.5 parent: 2 - - uid: 6335 + - uid: 1521 components: - type: Transform pos: -8.5,-116.5 parent: 2 - - uid: 6336 + - uid: 1522 components: - type: Transform pos: -5.5,-113.5 parent: 2 - - uid: 6337 + - uid: 1523 components: - type: Transform pos: -6.5,-113.5 parent: 2 - - uid: 6338 + - uid: 1524 components: - type: Transform pos: -7.5,-113.5 parent: 2 - - uid: 6339 + - uid: 1525 components: - type: Transform pos: -8.5,-113.5 parent: 2 - - uid: 6340 + - uid: 1526 components: - type: Transform pos: -5.5,-110.5 parent: 2 - - uid: 6341 + - uid: 1527 components: - type: Transform pos: -6.5,-110.5 parent: 2 - - uid: 6342 + - uid: 1528 components: - type: Transform pos: -7.5,-110.5 parent: 2 - - uid: 6343 + - uid: 1529 components: - type: Transform pos: -7.5,-109.5 parent: 2 - - uid: 6344 + - uid: 1530 components: - type: Transform pos: -7.5,-108.5 parent: 2 - - uid: 6345 + - uid: 1531 components: - type: Transform pos: -7.5,-107.5 parent: 2 - - uid: 6347 + - uid: 1532 components: - type: Transform pos: -6.5,-107.5 parent: 2 - - uid: 6349 + - uid: 1533 components: - type: Transform pos: -5.5,-107.5 parent: 2 - - uid: 6350 + - uid: 1534 components: - type: Transform pos: -4.5,-107.5 parent: 2 - - uid: 6351 + - uid: 1535 components: - type: Transform pos: -4.5,-106.5 parent: 2 - - uid: 6352 + - uid: 1536 components: - type: Transform pos: -8.5,-110.5 parent: 2 - - uid: 6353 + - uid: 1537 components: - type: Transform pos: -8.5,-107.5 parent: 2 - - uid: 6354 + - uid: 1538 components: - type: Transform pos: -3.5,-113.5 parent: 2 - - uid: 6355 + - uid: 1539 components: - type: Transform pos: -2.5,-113.5 parent: 2 - - uid: 6356 + - uid: 1540 components: - type: Transform pos: -1.5,-113.5 parent: 2 - - uid: 6357 + - uid: 1541 components: - type: Transform pos: -0.5,-113.5 parent: 2 - - uid: 6358 + - uid: 1542 components: - type: Transform pos: -0.5,-114.5 parent: 2 - - uid: 6360 + - uid: 1543 components: - type: Transform pos: -0.5,-112.5 parent: 2 - - uid: 6362 + - uid: 1544 components: - type: Transform pos: 0.5,-113.5 parent: 2 - - uid: 6363 + - uid: 1545 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 6364 + - uid: 1546 components: - type: Transform pos: 1.5,-116.5 parent: 2 - - uid: 6365 + - uid: 1547 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 6366 + - uid: 1548 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 6367 + - uid: 1549 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 6368 + - uid: 1550 components: - type: Transform pos: 0.5,-118.5 parent: 2 - - uid: 6369 + - uid: 1551 components: - type: Transform pos: 0.5,-119.5 parent: 2 - - uid: 6370 + - uid: 1552 components: - type: Transform pos: 0.5,-120.5 parent: 2 - - uid: 6371 + - uid: 1553 components: - type: Transform pos: -0.5,-119.5 parent: 2 - - uid: 6372 + - uid: 1554 components: - type: Transform pos: 1.5,-119.5 parent: 2 - - uid: 6373 + - uid: 1555 components: - type: Transform pos: 0.5,-121.5 parent: 2 - - uid: 6374 + - uid: 1556 components: - type: Transform pos: -1.5,-119.5 parent: 2 - - uid: 6375 + - uid: 1557 components: - type: Transform pos: 2.5,-119.5 parent: 2 - - uid: 6376 + - uid: 1558 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 6377 + - uid: 1559 components: - type: Transform pos: -2.5,-125.5 parent: 2 - - uid: 6378 + - uid: 1560 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 6379 + - uid: 1561 components: - type: Transform pos: 1.5,-125.5 parent: 2 - - uid: 6380 + - uid: 1562 components: - type: Transform pos: 2.5,-125.5 parent: 2 - - uid: 6381 + - uid: 1563 components: - type: Transform pos: 3.5,-125.5 parent: 2 - - uid: 6382 + - uid: 1564 components: - type: Transform pos: 4.5,-125.5 parent: 2 - - uid: 6383 + - uid: 1565 components: - type: Transform pos: 5.5,-125.5 parent: 2 - - uid: 6384 + - uid: 1566 components: - type: Transform pos: 6.5,-125.5 parent: 2 - - uid: 6385 + - uid: 1567 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 6386 + - uid: 1568 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 6387 + - uid: 1569 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 6388 + - uid: 1570 components: - type: Transform pos: 5.5,-115.5 parent: 2 - - uid: 6391 + - uid: 1571 components: - type: Transform pos: 5.5,-117.5 parent: 2 - - uid: 6395 + - uid: 1572 components: - type: Transform pos: 8.5,-118.5 parent: 2 - - uid: 6396 + - uid: 1573 components: - type: Transform pos: 8.5,-116.5 parent: 2 - - uid: 6398 + - uid: 1574 components: - type: Transform pos: 6.5,-114.5 parent: 2 - - uid: 6399 + - uid: 1575 components: - type: Transform pos: 7.5,-114.5 parent: 2 - - uid: 6400 + - uid: 1576 components: - type: Transform pos: 8.5,-114.5 parent: 2 - - uid: 6401 + - uid: 1577 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 6402 + - uid: 1578 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 6403 + - uid: 1579 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 6404 + - uid: 1580 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 6405 + - uid: 1581 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 6406 + - uid: 1582 components: - type: Transform pos: 3.5,-108.5 parent: 2 - - uid: 6407 + - uid: 1583 components: - type: Transform pos: 4.5,-108.5 parent: 2 - - uid: 6408 + - uid: 1584 components: - type: Transform pos: 5.5,-108.5 parent: 2 - - uid: 6409 + - uid: 1585 components: - type: Transform pos: 5.5,-107.5 parent: 2 - - uid: 6410 + - uid: 1586 components: - type: Transform pos: -4.5,-136.5 parent: 2 - - uid: 6411 + - uid: 1587 components: - type: Transform pos: 0.5,-105.5 parent: 2 - - uid: 6412 + - uid: 1588 components: - type: Transform pos: 0.5,-106.5 parent: 2 - - uid: 6413 + - uid: 1589 components: - type: Transform pos: 1.5,-106.5 parent: 2 - - uid: 6414 + - uid: 1590 components: - type: Transform pos: 2.5,-106.5 parent: 2 - - uid: 6415 + - uid: 1591 components: - type: Transform pos: -0.5,-106.5 parent: 2 - - uid: 6416 + - uid: 1592 components: - type: Transform pos: -1.5,-106.5 parent: 2 - - uid: 6417 + - uid: 1593 components: - type: Transform pos: 0.5,-107.5 parent: 2 - - uid: 6418 + - uid: 1594 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 6419 + - uid: 1595 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 6420 + - uid: 1596 components: - type: Transform pos: -0.5,-109.5 parent: 2 - - uid: 6421 + - uid: 1597 components: - type: Transform pos: -1.5,-109.5 parent: 2 - - uid: 6422 + - uid: 1598 components: - type: Transform pos: -2.5,-124.5 parent: 2 - - uid: 6423 + - uid: 1599 components: - type: Transform pos: 2.5,-124.5 parent: 2 - - uid: 6424 + - uid: 1600 components: - type: Transform pos: 5.5,-124.5 parent: 2 - - uid: 6425 + - uid: 1601 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 6426 + - uid: 1602 components: - type: Transform pos: 5.5,-122.5 parent: 2 - - uid: 6427 + - uid: 1603 components: - type: Transform pos: 5.5,-121.5 parent: 2 - - uid: 6428 + - uid: 1604 components: - type: Transform pos: 5.5,-120.5 parent: 2 - - uid: 6429 + - uid: 1605 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 6430 + - uid: 1606 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 6431 + - uid: 1607 components: - type: Transform pos: -0.5,-127.5 parent: 2 - - uid: 6432 + - uid: 1608 components: - type: Transform pos: -1.5,-127.5 parent: 2 - - uid: 6433 + - uid: 1609 components: - type: Transform pos: 1.5,-127.5 parent: 2 - - uid: 6434 + - uid: 1610 components: - type: Transform pos: 2.5,-127.5 parent: 2 - - uid: 6435 + - uid: 1611 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 6436 + - uid: 1612 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 6437 + - uid: 1613 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 6438 + - uid: 1614 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 6439 + - uid: 1615 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 6440 + - uid: 1616 components: - type: Transform pos: 1.5,-133.5 parent: 2 - - uid: 6441 + - uid: 1617 components: - type: Transform pos: 2.5,-133.5 parent: 2 - - uid: 6442 + - uid: 1618 components: - type: Transform pos: -0.5,-133.5 parent: 2 - - uid: 6443 + - uid: 1619 components: - type: Transform pos: -1.5,-133.5 parent: 2 - - uid: 6494 + - uid: 1620 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6495 + - uid: 1621 components: - type: Transform pos: -3.5,-135.5 parent: 2 - - uid: 6496 + - uid: 1622 components: - type: Transform pos: -3.5,-136.5 parent: 2 - - uid: 6497 + - uid: 1623 components: - type: Transform pos: -5.5,-136.5 parent: 2 - - uid: 6498 + - uid: 1624 components: - type: Transform pos: -2.5,-136.5 parent: 2 - - uid: 6499 + - uid: 1625 components: - type: Transform pos: 0.5,-151.5 parent: 2 - - uid: 6500 + - uid: 1626 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 6501 + - uid: 1627 components: - type: Transform pos: -4.5,-138.5 parent: 2 - - uid: 6502 + - uid: 1628 components: - type: Transform pos: -4.5,-139.5 parent: 2 - - uid: 6503 + - uid: 1629 components: - type: Transform pos: -4.5,-140.5 parent: 2 - - uid: 6504 + - uid: 1630 components: - type: Transform pos: -4.5,-141.5 parent: 2 - - uid: 6505 + - uid: 1631 components: - type: Transform pos: -4.5,-142.5 parent: 2 - - uid: 6506 + - uid: 1632 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 6507 + - uid: 1633 components: - type: Transform pos: -4.5,-144.5 parent: 2 - - uid: 6508 + - uid: 1634 components: - type: Transform pos: -3.5,-144.5 parent: 2 - - uid: 6510 + - uid: 1635 components: - type: Transform pos: -3.5,-145.5 parent: 2 - - uid: 6512 + - uid: 1636 components: - type: Transform pos: -3.5,-146.5 parent: 2 - - uid: 6513 + - uid: 1637 components: - type: Transform pos: -4.5,-146.5 parent: 2 - - uid: 6514 + - uid: 1638 components: - type: Transform pos: -4.5,-147.5 parent: 2 - - uid: 6515 + - uid: 1639 components: - type: Transform pos: -4.5,-148.5 parent: 2 - - uid: 6516 + - uid: 1640 components: - type: Transform pos: -5.5,-139.5 parent: 2 - - uid: 6517 + - uid: 1641 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 6519 + - uid: 1642 components: - type: Transform pos: -5.5,-141.5 parent: 2 - - uid: 6520 + - uid: 1643 components: - type: Transform pos: -6.5,-141.5 parent: 2 - - uid: 6521 + - uid: 1644 components: - type: Transform pos: -6.5,-139.5 parent: 2 - - uid: 6522 + - uid: 1645 components: - type: Transform pos: -3.5,-139.5 parent: 2 - - uid: 6523 + - uid: 1646 components: - type: Transform pos: -2.5,-139.5 parent: 2 - - uid: 6524 + - uid: 1647 components: - type: Transform pos: -3.5,-141.5 parent: 2 - - uid: 6525 + - uid: 1648 components: - type: Transform pos: -2.5,-141.5 parent: 2 - - uid: 6526 + - uid: 1649 components: - type: Transform pos: -1.5,-141.5 parent: 2 - - uid: 6527 + - uid: 1650 components: - type: Transform pos: -1.5,-139.5 parent: 2 - - uid: 6528 + - uid: 1651 components: - type: Transform pos: -0.5,-139.5 parent: 2 - - uid: 6529 + - uid: 1652 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 6530 + - uid: 1653 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 6531 + - uid: 1654 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 6532 + - uid: 1655 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 6533 + - uid: 1656 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6534 + - uid: 1657 components: - type: Transform pos: 6.5,-138.5 parent: 2 - - uid: 6535 + - uid: 1658 components: - type: Transform pos: 5.5,-138.5 parent: 2 - - uid: 6536 + - uid: 1659 components: - type: Transform pos: 4.5,-138.5 parent: 2 - - uid: 6537 + - uid: 1660 components: - type: Transform pos: 3.5,-138.5 parent: 2 - - uid: 6538 + - uid: 1661 components: - type: Transform pos: 4.5,-139.5 parent: 2 - - uid: 6539 + - uid: 1662 components: - type: Transform pos: 4.5,-140.5 parent: 2 - - uid: 6540 + - uid: 1663 components: - type: Transform pos: 4.5,-141.5 parent: 2 - - uid: 6541 + - uid: 1664 components: - type: Transform pos: 4.5,-142.5 parent: 2 - - uid: 6542 + - uid: 1665 components: - type: Transform pos: 4.5,-143.5 parent: 2 - - uid: 6543 + - uid: 1666 components: - type: Transform pos: 4.5,-144.5 parent: 2 - - uid: 6544 + - uid: 1667 components: - type: Transform pos: 4.5,-145.5 parent: 2 - - uid: 6545 + - uid: 1668 components: - type: Transform pos: 4.5,-146.5 parent: 2 - - uid: 6546 + - uid: 1669 components: - type: Transform pos: 4.5,-147.5 parent: 2 - - uid: 6547 + - uid: 1670 components: - type: Transform pos: 6.5,-143.5 parent: 2 - - uid: 6548 + - uid: 1671 components: - type: Transform pos: 3.5,-143.5 parent: 2 - - uid: 6550 + - uid: 1672 components: - type: Transform pos: 2.5,-143.5 parent: 2 - - uid: 6554 + - uid: 1673 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 6555 + - uid: 1674 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 6556 + - uid: 1675 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 6557 + - uid: 1676 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 6558 + - uid: 1677 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 6559 + - uid: 1678 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 6560 + - uid: 1679 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 6561 + - uid: 1680 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 6562 + - uid: 1681 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 6563 + - uid: 1682 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 6564 + - uid: 1683 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 6565 + - uid: 1684 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 6566 + - uid: 1685 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 6567 + - uid: 1686 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 6568 + - uid: 1687 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 6569 + - uid: 1688 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 6571 + - uid: 1689 components: - type: Transform pos: 6.5,-151.5 parent: 2 - - uid: 6572 + - uid: 1690 components: - type: Transform pos: 5.5,-151.5 parent: 2 - - uid: 6574 + - uid: 1691 components: - type: Transform pos: 5.5,-152.5 parent: 2 - - uid: 6575 + - uid: 1692 components: - type: Transform pos: 5.5,-153.5 parent: 2 - - uid: 6576 + - uid: 1693 components: - type: Transform pos: 4.5,-152.5 parent: 2 - - uid: 6577 + - uid: 1694 components: - type: Transform pos: 5.5,-154.5 parent: 2 - - uid: 6578 + - uid: 1695 components: - type: Transform pos: 3.5,-152.5 parent: 2 - - uid: 6579 + - uid: 1696 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 6580 + - uid: 1697 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 6581 + - uid: 1698 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 6582 + - uid: 1699 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 6583 + - uid: 1700 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 6584 + - uid: 1701 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 6585 + - uid: 1702 components: - type: Transform pos: 1.5,-154.5 parent: 2 - - uid: 6586 + - uid: 1703 components: - type: Transform pos: -0.5,-154.5 parent: 2 - - uid: 6587 + - uid: 1704 components: - type: Transform pos: -1.5,-154.5 parent: 2 - - uid: 6588 + - uid: 1705 components: - type: Transform pos: 2.5,-154.5 parent: 2 - - uid: 6590 + - uid: 1706 components: - type: Transform pos: -0.5,-151.5 parent: 2 - - uid: 6591 + - uid: 1707 components: - type: Transform pos: -1.5,-151.5 parent: 2 - - uid: 6592 + - uid: 1708 components: - type: Transform pos: -2.5,-151.5 parent: 2 - - uid: 6593 + - uid: 1709 components: - type: Transform pos: -3.5,-151.5 parent: 2 - - uid: 6594 + - uid: 1710 components: - type: Transform pos: -4.5,-151.5 parent: 2 - - uid: 6595 + - uid: 1711 components: - type: Transform pos: -4.5,-152.5 parent: 2 - - uid: 6596 + - uid: 1712 components: - type: Transform pos: -4.5,-153.5 parent: 2 - - uid: 6597 + - uid: 1713 components: - type: Transform pos: -4.5,-154.5 parent: 2 - - uid: 6598 + - uid: 1714 components: - type: Transform pos: -4.5,-150.5 parent: 2 - - uid: 6599 + - uid: 1715 components: - type: Transform pos: -5.5,-150.5 parent: 2 - - uid: 6600 + - uid: 1716 components: - type: Transform pos: -5.5,-152.5 parent: 2 - - uid: 6601 + - uid: 1717 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 6602 + - uid: 1718 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 6603 + - uid: 1719 components: - type: Transform pos: -0.5,-141.5 parent: 2 - - uid: 6604 + - uid: 1720 components: - type: Transform pos: 0.5,-141.5 parent: 2 - - uid: 6605 + - uid: 1721 components: - type: Transform pos: 0.5,-142.5 parent: 2 - - uid: 6606 + - uid: 1722 components: - type: Transform pos: 0.5,-143.5 parent: 2 - - uid: 6607 + - uid: 1723 components: - type: Transform pos: 0.5,-144.5 parent: 2 - - uid: 6608 + - uid: 1724 components: - type: Transform pos: 0.5,-145.5 parent: 2 - - uid: 6609 + - uid: 1725 components: - type: Transform pos: 0.5,-146.5 parent: 2 - - uid: 6610 + - uid: 1726 components: - type: Transform pos: 0.5,-147.5 parent: 2 - - uid: 6611 + - uid: 1727 components: - type: Transform pos: 0.5,-148.5 parent: 2 - - uid: 6617 + - uid: 1728 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 6633 + - uid: 1729 components: - type: Transform pos: -3.5,-220.5 parent: 2 - - uid: 6634 + - uid: 1730 components: - type: Transform pos: -3.5,-221.5 parent: 2 - - uid: 6635 + - uid: 1731 components: - type: Transform pos: 2.5,-219.5 parent: 2 - - uid: 6648 + - uid: 1732 components: - type: Transform pos: 17.5,-242.5 parent: 2 - - uid: 6649 + - uid: 1733 components: - type: Transform pos: 17.5,-241.5 parent: 2 - - uid: 6655 + - uid: 1734 components: - type: Transform pos: 10.5,-243.5 parent: 2 - - uid: 6656 + - uid: 1735 components: - type: Transform pos: 11.5,-243.5 parent: 2 - - uid: 6658 + - uid: 1736 components: - type: Transform pos: 17.5,-248.5 parent: 2 - - uid: 6672 + - uid: 1737 components: - type: Transform pos: -11.5,-167.5 parent: 2 - - uid: 6711 + - uid: 1738 components: - type: Transform pos: -8.5,-162.5 parent: 2 - - uid: 6713 + - uid: 1739 components: - type: Transform pos: -12.5,-162.5 parent: 2 - - uid: 6746 + - uid: 1740 components: - type: Transform pos: -9.5,-162.5 parent: 2 - - uid: 6747 + - uid: 1741 components: - type: Transform pos: -10.5,-162.5 parent: 2 - - uid: 6861 + - uid: 1742 components: - type: Transform pos: 5.5,-105.5 parent: 2 - - uid: 6874 + - uid: 1743 components: - type: Transform pos: -5.5,-308.5 parent: 2 - - uid: 6875 + - uid: 1744 components: - type: Transform pos: -6.5,-308.5 parent: 2 - - uid: 6909 + - uid: 1745 components: - type: Transform pos: -21.5,-242.5 parent: 2 - - uid: 6943 + - uid: 1746 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 6944 + - uid: 1747 components: - type: Transform pos: 1.5,-164.5 parent: 2 - - uid: 6945 + - uid: 1748 components: - type: Transform pos: 1.5,-163.5 parent: 2 - - uid: 6946 + - uid: 1749 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 6947 + - uid: 1750 components: - type: Transform pos: 2.5,-162.5 parent: 2 - - uid: 6948 + - uid: 1751 components: - type: Transform pos: 3.5,-162.5 parent: 2 - - uid: 6949 + - uid: 1752 components: - type: Transform pos: 4.5,-162.5 parent: 2 - - uid: 6950 + - uid: 1753 components: - type: Transform pos: 5.5,-162.5 parent: 2 - - uid: 6951 + - uid: 1754 components: - type: Transform pos: 6.5,-162.5 parent: 2 - - uid: 6952 + - uid: 1755 components: - type: Transform pos: 6.5,-163.5 parent: 2 - - uid: 6954 + - uid: 1756 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 6955 + - uid: 1757 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 6956 + - uid: 1758 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 6957 + - uid: 1759 components: - type: Transform pos: -3.5,-163.5 parent: 2 - - uid: 6958 + - uid: 1760 components: - type: Transform pos: -4.5,-163.5 parent: 2 - - uid: 6959 + - uid: 1761 components: - type: Transform pos: -5.5,-163.5 parent: 2 - - uid: 6965 + - uid: 1762 components: - type: Transform pos: -6.5,-168.5 parent: 2 - - uid: 6966 + - uid: 1763 components: - type: Transform pos: -6.5,-169.5 parent: 2 - - uid: 6967 + - uid: 1764 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 6968 + - uid: 1765 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 6969 + - uid: 1766 components: - type: Transform pos: 0.5,-175.5 parent: 2 - - uid: 6970 + - uid: 1767 components: - type: Transform pos: 0.5,-174.5 parent: 2 - - uid: 6971 + - uid: 1768 components: - type: Transform pos: 0.5,-177.5 parent: 2 - - uid: 6972 + - uid: 1769 components: - type: Transform pos: -1.5,-174.5 parent: 2 - - uid: 6973 + - uid: 1770 components: - type: Transform pos: -1.5,-173.5 parent: 2 - - uid: 6974 + - uid: 1771 components: - type: Transform pos: -2.5,-173.5 parent: 2 - - uid: 6975 + - uid: 1772 components: - type: Transform pos: -3.5,-173.5 parent: 2 - - uid: 6976 + - uid: 1773 components: - type: Transform pos: -4.5,-173.5 parent: 2 - - uid: 6977 + - uid: 1774 components: - type: Transform pos: -1.5,-175.5 parent: 2 - - uid: 6978 + - uid: 1775 components: - type: Transform pos: -1.5,-176.5 parent: 2 - - uid: 6979 + - uid: 1776 components: - type: Transform pos: -2.5,-176.5 parent: 2 - - uid: 6980 + - uid: 1777 components: - type: Transform pos: -3.5,-176.5 parent: 2 - - uid: 6981 + - uid: 1778 components: - type: Transform pos: -4.5,-176.5 parent: 2 - - uid: 6982 + - uid: 1779 components: - type: Transform pos: 0.5,-178.5 parent: 2 - - uid: 6983 + - uid: 1780 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 6984 + - uid: 1781 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 6985 + - uid: 1782 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 6986 + - uid: 1783 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 6987 + - uid: 1784 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 6988 + - uid: 1785 components: - type: Transform pos: -4.5,-180.5 parent: 2 - - uid: 6989 + - uid: 1786 components: - type: Transform pos: -5.5,-179.5 parent: 2 - - uid: 6990 + - uid: 1787 components: - type: Transform pos: -6.5,-179.5 parent: 2 - - uid: 6991 + - uid: 1788 components: - type: Transform pos: -6.5,-178.5 parent: 2 - - uid: 6992 + - uid: 1789 components: - type: Transform pos: -6.5,-177.5 parent: 2 - - uid: 6993 + - uid: 1790 components: - type: Transform pos: -6.5,-176.5 parent: 2 - - uid: 6994 + - uid: 1791 components: - type: Transform pos: -6.5,-175.5 parent: 2 - - uid: 6995 + - uid: 1792 components: - type: Transform pos: -6.5,-174.5 parent: 2 - - uid: 6996 + - uid: 1793 components: - type: Transform pos: 0.5,-165.5 parent: 2 - - uid: 6997 + - uid: 1794 components: - type: Transform pos: 1.5,-165.5 parent: 2 - - uid: 6998 + - uid: 1795 components: - type: Transform pos: -0.5,-165.5 parent: 2 - - uid: 6999 + - uid: 1796 components: - type: Transform pos: -1.5,-165.5 parent: 2 - - uid: 7000 + - uid: 1797 components: - type: Transform pos: -2.5,-165.5 parent: 2 - - uid: 7003 + - uid: 1798 components: - type: Transform pos: 1.5,-166.5 parent: 2 - - uid: 7004 + - uid: 1799 components: - type: Transform pos: 1.5,-167.5 parent: 2 - - uid: 7005 + - uid: 1800 components: - type: Transform pos: 1.5,-168.5 parent: 2 - - uid: 7006 + - uid: 1801 components: - type: Transform pos: 1.5,-169.5 parent: 2 - - uid: 7007 + - uid: 1802 components: - type: Transform pos: 0.5,-169.5 parent: 2 - - uid: 7008 + - uid: 1803 components: - type: Transform pos: -0.5,-169.5 parent: 2 - - uid: 7009 + - uid: 1804 components: - type: Transform pos: -1.5,-169.5 parent: 2 - - uid: 7010 + - uid: 1805 components: - type: Transform pos: -2.5,-169.5 parent: 2 - - uid: 7011 + - uid: 1806 components: - type: Transform pos: -3.5,-169.5 parent: 2 - - uid: 7012 + - uid: 1807 components: - type: Transform pos: 2.5,-167.5 parent: 2 - - uid: 7013 + - uid: 1808 components: - type: Transform pos: 3.5,-167.5 parent: 2 - - uid: 7014 + - uid: 1809 components: - type: Transform pos: 3.5,-168.5 parent: 2 - - uid: 7015 + - uid: 1810 components: - type: Transform pos: 4.5,-168.5 parent: 2 - - uid: 7016 + - uid: 1811 components: - type: Transform pos: 5.5,-168.5 parent: 2 - - uid: 7017 + - uid: 1812 components: - type: Transform pos: 6.5,-168.5 parent: 2 - - uid: 7018 + - uid: 1813 components: - type: Transform pos: 6.5,-166.5 parent: 2 - - uid: 7019 + - uid: 1814 components: - type: Transform pos: 6.5,-167.5 parent: 2 - - uid: 7020 + - uid: 1815 components: - type: Transform pos: 5.5,-166.5 parent: 2 - - uid: 7021 + - uid: 1816 components: - type: Transform pos: 4.5,-166.5 parent: 2 - - uid: 7022 + - uid: 1817 components: - type: Transform pos: 3.5,-166.5 parent: 2 - - uid: 7023 + - uid: 1818 components: - type: Transform pos: 0.5,-173.5 parent: 2 - - uid: 7024 + - uid: 1819 components: - type: Transform pos: 0.5,-172.5 parent: 2 - - uid: 7025 + - uid: 1820 components: - type: Transform pos: 0.5,-171.5 parent: 2 - - uid: 7026 + - uid: 1821 components: - type: Transform pos: 1.5,-175.5 parent: 2 - - uid: 7027 + - uid: 1822 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 7028 + - uid: 1823 components: - type: Transform pos: 3.5,-175.5 parent: 2 - - uid: 7029 + - uid: 1824 components: - type: Transform pos: 4.5,-175.5 parent: 2 - - uid: 7030 + - uid: 1825 components: - type: Transform pos: 5.5,-175.5 parent: 2 - - uid: 7031 + - uid: 1826 components: - type: Transform pos: 6.5,-175.5 parent: 2 - - uid: 7032 + - uid: 1827 components: - type: Transform pos: 7.5,-175.5 parent: 2 - - uid: 7033 + - uid: 1828 components: - type: Transform pos: 7.5,-174.5 parent: 2 - - uid: 7034 + - uid: 1829 components: - type: Transform pos: 7.5,-173.5 parent: 2 - - uid: 7035 + - uid: 1830 components: - type: Transform pos: 7.5,-172.5 parent: 2 - - uid: 7036 + - uid: 1831 components: - type: Transform pos: 6.5,-172.5 parent: 2 - - uid: 7037 + - uid: 1832 components: - type: Transform pos: 5.5,-172.5 parent: 2 - - uid: 7038 + - uid: 1833 components: - type: Transform pos: 4.5,-172.5 parent: 2 - - uid: 7039 + - uid: 1834 components: - type: Transform pos: 4.5,-173.5 parent: 2 - - uid: 7040 + - uid: 1835 components: - type: Transform pos: 4.5,-174.5 parent: 2 - - uid: 7041 + - uid: 1836 components: - type: Transform pos: 7.5,-176.5 parent: 2 - - uid: 7042 + - uid: 1837 components: - type: Transform pos: 7.5,-177.5 parent: 2 - - uid: 7043 + - uid: 1838 components: - type: Transform pos: 7.5,-178.5 parent: 2 - - uid: 7044 + - uid: 1839 components: - type: Transform pos: 5.5,-176.5 parent: 2 - - uid: 7045 + - uid: 1840 components: - type: Transform pos: 5.5,-177.5 parent: 2 - - uid: 7046 + - uid: 1841 components: - type: Transform pos: 5.5,-178.5 parent: 2 - - uid: 7047 + - uid: 1842 components: - type: Transform pos: 5.5,-179.5 parent: 2 - - uid: 7048 + - uid: 1843 components: - type: Transform pos: 4.5,-179.5 parent: 2 - - uid: 7049 + - uid: 1844 components: - type: Transform pos: -4.5,-162.5 parent: 2 - - uid: 7050 + - uid: 1845 components: - type: Transform pos: -4.5,-161.5 parent: 2 - - uid: 7051 + - uid: 1846 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 7052 + - uid: 1847 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 7053 + - uid: 1848 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 7054 + - uid: 1849 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 7055 + - uid: 1850 components: - type: Transform pos: -4.5,-181.5 parent: 2 - - uid: 7057 + - uid: 1851 components: - type: Transform pos: 7.5,-179.5 parent: 2 - - uid: 7058 + - uid: 1852 components: - type: Transform pos: 6.5,-169.5 parent: 2 - - uid: 7059 + - uid: 1853 components: - type: Transform pos: 6.5,-165.5 parent: 2 - - uid: 7091 + - uid: 1854 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7092 + - uid: 1855 components: - type: Transform pos: 4.5,-189.5 parent: 2 - - uid: 7093 + - uid: 1856 components: - type: Transform pos: 3.5,-189.5 parent: 2 - - uid: 7094 + - uid: 1857 components: - type: Transform pos: 2.5,-189.5 parent: 2 - - uid: 7095 + - uid: 1858 components: - type: Transform pos: 1.5,-189.5 parent: 2 - - uid: 7096 + - uid: 1859 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 7097 + - uid: 1860 components: - type: Transform pos: -0.5,-189.5 parent: 2 - - uid: 7098 + - uid: 1861 components: - type: Transform pos: -1.5,-189.5 parent: 2 - - uid: 7099 + - uid: 1862 components: - type: Transform pos: -2.5,-189.5 parent: 2 - - uid: 7100 + - uid: 1863 components: - type: Transform pos: -2.5,-188.5 parent: 2 - - uid: 7101 + - uid: 1864 components: - type: Transform pos: -2.5,-187.5 parent: 2 - - uid: 7102 + - uid: 1865 components: - type: Transform pos: 3.5,-188.5 parent: 2 - - uid: 7103 + - uid: 1866 components: - type: Transform pos: 3.5,-187.5 parent: 2 - - uid: 7104 + - uid: 1867 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 7105 + - uid: 1868 components: - type: Transform pos: 6.5,-189.5 parent: 2 - - uid: 7106 + - uid: 1869 components: - type: Transform pos: 6.5,-190.5 parent: 2 - - uid: 7107 + - uid: 1870 components: - type: Transform pos: 6.5,-191.5 parent: 2 - - uid: 7108 + - uid: 1871 components: - type: Transform pos: 6.5,-192.5 parent: 2 - - uid: 7109 + - uid: 1872 components: - type: Transform pos: 6.5,-193.5 parent: 2 - - uid: 7110 + - uid: 1873 components: - type: Transform pos: 6.5,-194.5 parent: 2 - - uid: 7111 + - uid: 1874 components: - type: Transform pos: 6.5,-195.5 parent: 2 - - uid: 7112 + - uid: 1875 components: - type: Transform pos: 6.5,-196.5 parent: 2 - - uid: 7113 + - uid: 1876 components: - type: Transform pos: 6.5,-197.5 parent: 2 - - uid: 7114 + - uid: 1877 components: - type: Transform pos: 6.5,-198.5 parent: 2 - - uid: 7115 + - uid: 1878 components: - type: Transform pos: 6.5,-199.5 parent: 2 - - uid: 7116 + - uid: 1879 components: - type: Transform pos: 6.5,-200.5 parent: 2 - - uid: 7117 + - uid: 1880 components: - type: Transform pos: 6.5,-201.5 parent: 2 - - uid: 7118 + - uid: 1881 components: - type: Transform pos: 6.5,-202.5 parent: 2 - - uid: 7119 + - uid: 1882 components: - type: Transform pos: 6.5,-203.5 parent: 2 - - uid: 7120 + - uid: 1883 components: - type: Transform pos: 6.5,-204.5 parent: 2 - - uid: 7121 + - uid: 1884 components: - type: Transform pos: 6.5,-205.5 parent: 2 - - uid: 7122 + - uid: 1885 components: - type: Transform pos: 6.5,-206.5 parent: 2 - - uid: 7123 + - uid: 1886 components: - type: Transform pos: 5.5,-206.5 parent: 2 - - uid: 7124 + - uid: 1887 components: - type: Transform pos: 4.5,-206.5 parent: 2 - - uid: 7125 + - uid: 1888 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 7126 + - uid: 1889 components: - type: Transform pos: 2.5,-206.5 parent: 2 - - uid: 7127 + - uid: 1890 components: - type: Transform pos: 1.5,-206.5 parent: 2 - - uid: 7128 + - uid: 1891 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 7129 + - uid: 1892 components: - type: Transform pos: 0.5,-207.5 parent: 2 - - uid: 7130 + - uid: 1893 components: - type: Transform pos: 0.5,-208.5 parent: 2 - - uid: 7131 + - uid: 1894 components: - type: Transform pos: 0.5,-209.5 parent: 2 - - uid: 7132 + - uid: 1895 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 7133 + - uid: 1896 components: - type: Transform pos: 4.5,-198.5 parent: 2 - - uid: 7134 + - uid: 1897 components: - type: Transform pos: 3.5,-198.5 parent: 2 - - uid: 7135 + - uid: 1898 components: - type: Transform pos: 2.5,-198.5 parent: 2 - - uid: 7136 + - uid: 1899 components: - type: Transform pos: 2.5,-197.5 parent: 2 - - uid: 7137 + - uid: 1900 components: - type: Transform pos: 2.5,-196.5 parent: 2 - - uid: 7138 + - uid: 1901 components: - type: Transform pos: 2.5,-195.5 parent: 2 - - uid: 7139 + - uid: 1902 components: - type: Transform pos: 2.5,-194.5 parent: 2 - - uid: 7140 + - uid: 1903 components: - type: Transform pos: 2.5,-193.5 parent: 2 - - uid: 7141 + - uid: 1904 components: - type: Transform pos: 1.5,-193.5 parent: 2 - - uid: 7142 + - uid: 1905 components: - type: Transform pos: 0.5,-193.5 parent: 2 - - uid: 7143 + - uid: 1906 components: - type: Transform pos: 2.5,-199.5 parent: 2 - - uid: 7144 + - uid: 1907 components: - type: Transform pos: 2.5,-200.5 parent: 2 - - uid: 7145 + - uid: 1908 components: - type: Transform pos: 2.5,-201.5 parent: 2 - - uid: 7146 + - uid: 1909 components: - type: Transform pos: 2.5,-202.5 parent: 2 - - uid: 7147 + - uid: 1910 components: - type: Transform pos: 1.5,-202.5 parent: 2 - - uid: 7148 + - uid: 1911 components: - type: Transform pos: 0.5,-202.5 parent: 2 - - uid: 7149 + - uid: 1912 components: - type: Transform pos: 0.5,-201.5 parent: 2 - - uid: 7150 + - uid: 1913 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 7151 + - uid: 1914 components: - type: Transform pos: 0.5,-199.5 parent: 2 - - uid: 7152 + - uid: 1915 components: - type: Transform pos: 0.5,-198.5 parent: 2 - - uid: 7153 + - uid: 1916 components: - type: Transform pos: 0.5,-197.5 parent: 2 - - uid: 7154 + - uid: 1917 components: - type: Transform pos: 1.5,-197.5 parent: 2 - - uid: 7155 + - uid: 1918 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 7156 + - uid: 1919 components: - type: Transform pos: -2.5,-203.5 parent: 2 - - uid: 7157 + - uid: 1920 components: - type: Transform pos: -2.5,-204.5 parent: 2 - - uid: 7158 + - uid: 1921 components: - type: Transform pos: -2.5,-205.5 parent: 2 - - uid: 7159 + - uid: 1922 components: - type: Transform pos: -3.5,-205.5 parent: 2 - - uid: 7160 + - uid: 1923 components: - type: Transform pos: -4.5,-205.5 parent: 2 - - uid: 7161 + - uid: 1924 components: - type: Transform pos: -5.5,-205.5 parent: 2 - - uid: 7162 + - uid: 1925 components: - type: Transform pos: -2.5,-202.5 parent: 2 - - uid: 7163 + - uid: 1926 components: - type: Transform pos: -2.5,-201.5 parent: 2 - - uid: 7164 + - uid: 1927 components: - type: Transform pos: -3.5,-201.5 parent: 2 - - uid: 7165 + - uid: 1928 components: - type: Transform pos: -4.5,-201.5 parent: 2 - - uid: 7166 + - uid: 1929 components: - type: Transform pos: -5.5,-201.5 parent: 2 - - uid: 7167 + - uid: 1930 components: - type: Transform pos: -2.5,-206.5 parent: 2 - - uid: 7168 + - uid: 1931 components: - type: Transform pos: -2.5,-200.5 parent: 2 - - uid: 7169 + - uid: 1932 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 7170 + - uid: 1933 components: - type: Transform pos: -2.5,-198.5 parent: 2 - - uid: 7171 + - uid: 1934 components: - type: Transform pos: -2.5,-197.5 parent: 2 - - uid: 7172 + - uid: 1935 components: - type: Transform pos: -2.5,-196.5 parent: 2 - - uid: 7173 + - uid: 1936 components: - type: Transform pos: -2.5,-195.5 parent: 2 - - uid: 7174 + - uid: 1937 components: - type: Transform pos: -2.5,-194.5 parent: 2 - - uid: 7175 + - uid: 1938 components: - type: Transform pos: -3.5,-194.5 parent: 2 - - uid: 7176 + - uid: 1939 components: - type: Transform pos: -4.5,-194.5 parent: 2 - - uid: 7177 + - uid: 1940 components: - type: Transform pos: -5.5,-194.5 parent: 2 - - uid: 7178 + - uid: 1941 components: - type: Transform pos: -6.5,-194.5 parent: 2 - - uid: 7179 + - uid: 1942 components: - type: Transform pos: -6.5,-195.5 parent: 2 - - uid: 7180 + - uid: 1943 components: - type: Transform pos: -6.5,-196.5 parent: 2 - - uid: 7181 + - uid: 1944 components: - type: Transform pos: -6.5,-197.5 parent: 2 - - uid: 7182 + - uid: 1945 components: - type: Transform pos: -6.5,-198.5 parent: 2 - - uid: 7183 + - uid: 1946 components: - type: Transform pos: -5.5,-198.5 parent: 2 - - uid: 7184 + - uid: 1947 components: - type: Transform pos: -4.5,-198.5 parent: 2 - - uid: 7185 + - uid: 1948 components: - type: Transform pos: -3.5,-198.5 parent: 2 - - uid: 7186 + - uid: 1949 components: - type: Transform pos: -3.5,-193.5 parent: 2 - - uid: 7187 + - uid: 1950 components: - type: Transform pos: -3.5,-192.5 parent: 2 - - uid: 7188 + - uid: 1951 components: - type: Transform pos: -1.5,-181.5 parent: 2 - - uid: 7215 + - uid: 1952 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 7218 + - uid: 1953 components: - type: Transform pos: -0.5,-160.5 parent: 2 - - uid: 7219 + - uid: 1954 components: - type: Transform pos: 2.5,-160.5 parent: 2 - - uid: 7220 + - uid: 1955 components: - type: Transform pos: -1.5,-160.5 parent: 2 - - uid: 7221 + - uid: 1956 components: - type: Transform pos: 1.5,-181.5 parent: 2 - - uid: 7222 + - uid: 1957 components: - type: Transform pos: 2.5,-181.5 parent: 2 - - uid: 7223 + - uid: 1958 components: - type: Transform pos: -0.5,-181.5 parent: 2 - - uid: 7224 + - uid: 1959 components: - type: Transform pos: -0.5,-187.5 parent: 2 - - uid: 7225 + - uid: 1960 components: - type: Transform pos: 1.5,-187.5 parent: 2 - - uid: 7226 + - uid: 1961 components: - type: Transform pos: -1.5,-187.5 parent: 2 - - uid: 7227 + - uid: 1962 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 7228 + - uid: 1963 components: - type: Transform pos: 2.5,-187.5 parent: 2 - - uid: 7229 + - uid: 1964 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 7230 + - uid: 1965 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 7423 + - uid: 1966 components: - type: Transform pos: 2.5,-282.5 parent: 2 - - uid: 7438 + - uid: 1967 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 7443 + - uid: 1968 components: - type: Transform pos: 7.5,-253.5 parent: 2 - - uid: 7444 + - uid: 1969 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 7445 + - uid: 1970 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 7457 + - uid: 1971 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 7458 + - uid: 1972 components: - type: Transform pos: 15.5,-248.5 parent: 2 - - uid: 7459 + - uid: 1973 components: - type: Transform pos: 14.5,-248.5 parent: 2 - - uid: 7462 + - uid: 1974 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 7463 + - uid: 1975 components: - type: Transform pos: 8.5,-243.5 parent: 2 - - uid: 7477 + - uid: 1976 components: - type: Transform pos: 5.5,-180.5 parent: 2 - - uid: 7509 + - uid: 1977 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 7557 + - uid: 1978 components: - type: Transform pos: 1.5,-208.5 parent: 2 - - uid: 7560 + - uid: 1979 components: - type: Transform pos: -0.5,-208.5 parent: 2 - - uid: 7562 + - uid: 1980 components: - type: Transform pos: -1.5,-208.5 parent: 2 - - uid: 7592 + - uid: 1981 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7593 + - uid: 1982 components: - type: Transform pos: -2.5,-229.5 parent: 2 - - uid: 7594 + - uid: 1983 components: - type: Transform pos: -2.5,-230.5 parent: 2 - - uid: 7595 + - uid: 1984 components: - type: Transform pos: -3.5,-228.5 parent: 2 - - uid: 7596 + - uid: 1985 components: - type: Transform pos: -3.5,-227.5 parent: 2 - - uid: 7597 + - uid: 1986 components: - type: Transform pos: -3.5,-226.5 parent: 2 - - uid: 7598 + - uid: 1987 components: - type: Transform pos: -4.5,-226.5 parent: 2 - - uid: 7599 + - uid: 1988 components: - type: Transform pos: -5.5,-226.5 parent: 2 - - uid: 7600 + - uid: 1989 components: - type: Transform pos: -6.5,-226.5 parent: 2 - - uid: 7601 + - uid: 1990 components: - type: Transform pos: -6.5,-227.5 parent: 2 - - uid: 7602 + - uid: 1991 components: - type: Transform pos: -6.5,-228.5 parent: 2 - - uid: 7603 + - uid: 1992 components: - type: Transform pos: -6.5,-229.5 parent: 2 - - uid: 7604 + - uid: 1993 components: - type: Transform pos: -7.5,-229.5 parent: 2 - - uid: 7605 + - uid: 1994 components: - type: Transform pos: -8.5,-229.5 parent: 2 - - uid: 7625 + - uid: 1995 components: - type: Transform pos: -1.5,-230.5 parent: 2 - - uid: 7626 + - uid: 1996 components: - type: Transform pos: -0.5,-230.5 parent: 2 - - uid: 7627 + - uid: 1997 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 7628 + - uid: 1998 components: - type: Transform pos: 1.5,-230.5 parent: 2 - - uid: 7629 + - uid: 1999 components: - type: Transform pos: 2.5,-230.5 parent: 2 - - uid: 7630 + - uid: 2000 components: - type: Transform pos: 3.5,-230.5 parent: 2 - - uid: 7631 + - uid: 2001 components: - type: Transform pos: 4.5,-230.5 parent: 2 - - uid: 7632 + - uid: 2002 components: - type: Transform pos: 4.5,-229.5 parent: 2 - - uid: 7633 + - uid: 2003 components: - type: Transform pos: 4.5,-228.5 parent: 2 - - uid: 7634 + - uid: 2004 components: - type: Transform pos: 4.5,-227.5 parent: 2 - - uid: 7635 + - uid: 2005 components: - type: Transform pos: 4.5,-226.5 parent: 2 - - uid: 7636 + - uid: 2006 components: - type: Transform pos: 6.5,-226.5 parent: 2 - - uid: 7637 + - uid: 2007 components: - type: Transform pos: 7.5,-226.5 parent: 2 - - uid: 7639 + - uid: 2008 components: - type: Transform pos: 7.5,-227.5 parent: 2 - - uid: 7640 + - uid: 2009 components: - type: Transform pos: 7.5,-228.5 parent: 2 - - uid: 7641 + - uid: 2010 components: - type: Transform pos: 7.5,-229.5 parent: 2 - - uid: 7642 + - uid: 2011 components: - type: Transform pos: 8.5,-229.5 parent: 2 - - uid: 7643 + - uid: 2012 components: - type: Transform pos: 9.5,-229.5 parent: 2 - - uid: 7645 + - uid: 2013 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 7646 + - uid: 2014 components: - type: Transform pos: -0.5,-219.5 parent: 2 - - uid: 7647 + - uid: 2015 components: - type: Transform pos: -1.5,-219.5 parent: 2 - - uid: 7648 + - uid: 2016 components: - type: Transform pos: -2.5,-219.5 parent: 2 - - uid: 7649 + - uid: 2017 components: - type: Transform pos: -3.5,-219.5 parent: 2 - - uid: 7650 + - uid: 2018 components: - type: Transform pos: -3.5,-222.5 parent: 2 - - uid: 7651 + - uid: 2019 components: - type: Transform pos: -3.5,-223.5 parent: 2 - - uid: 7652 + - uid: 2020 components: - type: Transform pos: -4.5,-223.5 parent: 2 - - uid: 7653 + - uid: 2021 components: - type: Transform pos: -5.5,-223.5 parent: 2 - - uid: 7654 + - uid: 2022 components: - type: Transform pos: -6.5,-223.5 parent: 2 - - uid: 7655 + - uid: 2023 components: - type: Transform pos: -6.5,-222.5 parent: 2 - - uid: 7656 + - uid: 2024 components: - type: Transform pos: -6.5,-221.5 parent: 2 - - uid: 7657 + - uid: 2025 components: - type: Transform pos: -6.5,-220.5 parent: 2 - - uid: 7658 + - uid: 2026 components: - type: Transform pos: -7.5,-220.5 parent: 2 - - uid: 7659 + - uid: 2027 components: - type: Transform pos: 0.5,-214.5 parent: 2 - - uid: 7660 + - uid: 2028 components: - type: Transform pos: 0.5,-215.5 parent: 2 - - uid: 7661 + - uid: 2029 components: - type: Transform pos: 0.5,-216.5 parent: 2 - - uid: 7662 + - uid: 2030 components: - type: Transform pos: 0.5,-217.5 parent: 2 - - uid: 7663 + - uid: 2031 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 7664 + - uid: 2032 components: - type: Transform pos: 1.5,-214.5 parent: 2 - - uid: 7665 + - uid: 2033 components: - type: Transform pos: -8.5,-220.5 parent: 2 - - uid: 7666 + - uid: 2034 components: - type: Transform pos: 0.5,-213.5 parent: 2 - - uid: 7669 + - uid: 2035 components: - type: Transform pos: 7.5,-223.5 parent: 2 - - uid: 7670 + - uid: 2036 components: - type: Transform pos: 7.5,-222.5 parent: 2 - - uid: 7671 + - uid: 2037 components: - type: Transform pos: 7.5,-221.5 parent: 2 - - uid: 7672 + - uid: 2038 components: - type: Transform pos: 7.5,-220.5 parent: 2 - - uid: 7673 + - uid: 2039 components: - type: Transform pos: 8.5,-220.5 parent: 2 - - uid: 7674 + - uid: 2040 components: - type: Transform pos: 9.5,-220.5 parent: 2 - - uid: 7675 + - uid: 2041 components: - type: Transform pos: 2.5,-214.5 parent: 2 - - uid: 7676 + - uid: 2042 components: - type: Transform pos: -0.5,-214.5 parent: 2 - - uid: 7678 + - uid: 2043 components: - type: Transform pos: -1.5,-214.5 parent: 2 - - uid: 7680 + - uid: 2044 components: - type: Transform pos: -1.5,-235.5 parent: 2 - - uid: 7681 + - uid: 2045 components: - type: Transform pos: -0.5,-235.5 parent: 2 - - uid: 7682 + - uid: 2046 components: - type: Transform pos: 0.5,-235.5 parent: 2 - - uid: 7683 + - uid: 2047 components: - type: Transform pos: 1.5,-235.5 parent: 2 - - uid: 7684 + - uid: 2048 components: - type: Transform pos: 2.5,-235.5 parent: 2 - - uid: 7686 + - uid: 2049 components: - type: Transform pos: 0.5,-236.5 parent: 2 - - uid: 7687 + - uid: 2050 components: - type: Transform pos: 0.5,-234.5 parent: 2 - - uid: 7688 + - uid: 2051 components: - type: Transform pos: 0.5,-233.5 parent: 2 - - uid: 7689 + - uid: 2052 components: - type: Transform pos: 0.5,-232.5 parent: 2 - - uid: 7690 + - uid: 2053 components: - type: Transform pos: 0.5,-231.5 parent: 2 - - uid: 7699 + - uid: 2054 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 7700 + - uid: 2055 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 7701 + - uid: 2056 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 7702 + - uid: 2057 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 7711 + - uid: 2058 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 7712 + - uid: 2059 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 7713 + - uid: 2060 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 7714 + - uid: 2061 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 7716 + - uid: 2062 components: - type: Transform pos: -3.5,-230.5 parent: 2 - - uid: 7718 + - uid: 2063 components: - type: Transform pos: -2.5,-231.5 parent: 2 - - uid: 7775 + - uid: 2064 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 7778 + - uid: 2065 components: - type: Transform pos: 4.5,-260.5 parent: 2 - - uid: 7814 + - uid: 2066 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 7842 + - uid: 2067 components: - type: Transform pos: 6.5,-247.5 parent: 2 - - uid: 7919 + - uid: 2068 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 7920 + - uid: 2069 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 7925 + - uid: 2070 components: - type: Transform pos: 5.5,-289.5 parent: 2 - - uid: 7930 + - uid: 2071 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 7931 + - uid: 2072 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 7932 + - uid: 2073 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 7938 + - uid: 2074 components: - type: Transform pos: 7.5,-339.5 parent: 2 - - uid: 7940 + - uid: 2075 components: - type: Transform pos: 7.5,-340.5 parent: 2 - - uid: 7974 + - uid: 2076 components: - type: Transform pos: 2.5,-284.5 parent: 2 - - uid: 7983 + - uid: 2077 components: - type: Transform pos: 0.5,-242.5 parent: 2 - - uid: 7985 + - uid: 2078 components: - type: Transform pos: 0.5,-241.5 parent: 2 - - uid: 7986 + - uid: 2079 components: - type: Transform pos: 1.5,-241.5 parent: 2 - - uid: 7987 + - uid: 2080 components: - type: Transform pos: 2.5,-241.5 parent: 2 - - uid: 7988 + - uid: 2081 components: - type: Transform pos: -0.5,-241.5 parent: 2 - - uid: 7989 + - uid: 2082 components: - type: Transform pos: -1.5,-241.5 parent: 2 - - uid: 7990 + - uid: 2083 components: - type: Transform pos: 0.5,-240.5 parent: 2 - - uid: 7994 + - uid: 2084 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 8030 + - uid: 2085 components: - type: Transform pos: 6.5,-336.5 parent: 2 - - uid: 8045 + - uid: 2086 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 8057 + - uid: 2087 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 8072 + - uid: 2088 components: - type: Transform pos: 0.5,-261.5 parent: 2 - - uid: 8073 + - uid: 2089 components: - type: Transform pos: 0.5,-262.5 parent: 2 - - uid: 8074 + - uid: 2090 components: - type: Transform pos: 0.5,-263.5 parent: 2 - - uid: 8075 + - uid: 2091 components: - type: Transform pos: 1.5,-262.5 parent: 2 - - uid: 8076 + - uid: 2092 components: - type: Transform pos: 2.5,-262.5 parent: 2 - - uid: 8078 + - uid: 2093 components: - type: Transform pos: -0.5,-262.5 parent: 2 - - uid: 8080 + - uid: 2094 components: - type: Transform pos: -1.5,-262.5 parent: 2 - - uid: 8083 + - uid: 2095 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 8095 + - uid: 2096 components: - type: Transform pos: 5.5,-288.5 parent: 2 - - uid: 8097 + - uid: 2097 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 8112 + - uid: 2098 components: - type: Transform pos: 3.5,-254.5 parent: 2 - - uid: 8167 + - uid: 2099 components: - type: Transform pos: 7.5,-337.5 parent: 2 - - uid: 8168 + - uid: 2100 components: - type: Transform pos: 5.5,-340.5 parent: 2 - - uid: 8171 + - uid: 2101 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 8172 + - uid: 2102 components: - type: Transform pos: 7.5,-255.5 parent: 2 - - uid: 8173 + - uid: 2103 components: - type: Transform pos: 7.5,-256.5 parent: 2 - - uid: 8188 + - uid: 2104 components: - type: Transform pos: 6.5,-342.5 parent: 2 - - uid: 8194 + - uid: 2105 components: - type: Transform pos: 5.5,-337.5 parent: 2 - - uid: 8216 + - uid: 2106 components: - type: Transform pos: -8.5,-308.5 parent: 2 - - uid: 8227 + - uid: 2107 components: - type: Transform pos: 16.5,-254.5 parent: 2 - - uid: 8228 + - uid: 2108 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 8262 + - uid: 2109 components: - type: Transform pos: 13.5,-158.5 parent: 2 - - uid: 8263 + - uid: 2110 components: - type: Transform pos: 13.5,-159.5 parent: 2 - - uid: 8264 + - uid: 2111 components: - type: Transform pos: 13.5,-160.5 parent: 2 - - uid: 8265 + - uid: 2112 components: - type: Transform pos: 13.5,-161.5 parent: 2 - - uid: 8266 + - uid: 2113 components: - type: Transform pos: 13.5,-162.5 parent: 2 - - uid: 8268 + - uid: 2114 components: - type: Transform pos: 15.5,-159.5 parent: 2 - - uid: 8269 + - uid: 2115 components: - type: Transform pos: 16.5,-159.5 parent: 2 - - uid: 8270 + - uid: 2116 components: - type: Transform pos: 17.5,-159.5 parent: 2 - - uid: 8271 + - uid: 2117 components: - type: Transform pos: 5.5,-336.5 parent: 2 - - uid: 8272 + - uid: 2118 components: - type: Transform pos: 17.5,-160.5 parent: 2 - - uid: 8273 + - uid: 2119 components: - type: Transform pos: 17.5,-161.5 parent: 2 - - uid: 8274 + - uid: 2120 components: - type: Transform pos: 17.5,-162.5 parent: 2 - - uid: 8276 + - uid: 2121 components: - type: Transform pos: 8.5,-340.5 parent: 2 - - uid: 8278 + - uid: 2122 components: - type: Transform pos: 17.5,-137.5 parent: 2 - - uid: 8279 + - uid: 2123 components: - type: Transform pos: 17.5,-138.5 parent: 2 - - uid: 8280 + - uid: 2124 components: - type: Transform pos: 17.5,-139.5 parent: 2 - - uid: 8281 + - uid: 2125 components: - type: Transform pos: 17.5,-140.5 parent: 2 - - uid: 8282 + - uid: 2126 components: - type: Transform pos: 17.5,-141.5 parent: 2 - - uid: 8283 + - uid: 2127 components: - type: Transform pos: 17.5,-142.5 parent: 2 - - uid: 8284 + - uid: 2128 components: - type: Transform pos: 17.5,-143.5 parent: 2 - - uid: 8285 + - uid: 2129 components: - type: Transform pos: 17.5,-144.5 parent: 2 - - uid: 8286 + - uid: 2130 components: - type: Transform pos: 17.5,-145.5 parent: 2 - - uid: 8287 + - uid: 2131 components: - type: Transform pos: 17.5,-146.5 parent: 2 - - uid: 8288 + - uid: 2132 components: - type: Transform pos: 17.5,-147.5 parent: 2 - - uid: 8289 + - uid: 2133 components: - type: Transform pos: 17.5,-148.5 parent: 2 - - uid: 8290 + - uid: 2134 components: - type: Transform pos: 17.5,-149.5 parent: 2 - - uid: 8291 + - uid: 2135 components: - type: Transform pos: 17.5,-150.5 parent: 2 - - uid: 8292 + - uid: 2136 components: - type: Transform pos: 17.5,-151.5 parent: 2 - - uid: 8293 + - uid: 2137 components: - type: Transform pos: 17.5,-152.5 parent: 2 - - uid: 8294 + - uid: 2138 components: - type: Transform pos: 17.5,-153.5 parent: 2 - - uid: 8295 + - uid: 2139 components: - type: Transform pos: 16.5,-138.5 parent: 2 - - uid: 8296 + - uid: 2140 components: - type: Transform pos: 15.5,-138.5 parent: 2 - - uid: 8297 + - uid: 2141 components: - type: Transform pos: 14.5,-138.5 parent: 2 - - uid: 8298 + - uid: 2142 components: - type: Transform pos: 13.5,-138.5 parent: 2 - - uid: 8299 + - uid: 2143 components: - type: Transform pos: 13.5,-139.5 parent: 2 - - uid: 8300 + - uid: 2144 components: - type: Transform pos: 13.5,-140.5 parent: 2 - - uid: 8301 + - uid: 2145 components: - type: Transform pos: 13.5,-141.5 parent: 2 - - uid: 8302 + - uid: 2146 components: - type: Transform pos: 13.5,-142.5 parent: 2 - - uid: 8303 + - uid: 2147 components: - type: Transform pos: 13.5,-143.5 parent: 2 - - uid: 8304 + - uid: 2148 components: - type: Transform pos: 13.5,-144.5 parent: 2 - - uid: 8306 + - uid: 2149 components: - type: Transform pos: 13.5,-146.5 parent: 2 - - uid: 8307 + - uid: 2150 components: - type: Transform pos: 13.5,-147.5 parent: 2 - - uid: 8308 + - uid: 2151 components: - type: Transform pos: 13.5,-148.5 parent: 2 - - uid: 8309 + - uid: 2152 components: - type: Transform pos: 13.5,-149.5 parent: 2 - - uid: 8310 + - uid: 2153 components: - type: Transform pos: 13.5,-150.5 parent: 2 - - uid: 8311 + - uid: 2154 components: - type: Transform pos: 13.5,-151.5 parent: 2 - - uid: 8312 + - uid: 2155 components: - type: Transform pos: 13.5,-152.5 parent: 2 - - uid: 8313 + - uid: 2156 components: - type: Transform pos: 13.5,-153.5 parent: 2 - - uid: 8320 + - uid: 2157 components: - type: Transform pos: 19.5,-240.5 parent: 2 - - uid: 8349 + - uid: 2158 components: - type: Transform pos: -13.5,-162.5 parent: 2 - - uid: 8351 + - uid: 2159 components: - type: Transform pos: 16.5,-255.5 parent: 2 - - uid: 8352 + - uid: 2160 components: - type: Transform pos: 17.5,-255.5 parent: 2 - - uid: 8356 + - uid: 2161 components: - type: Transform pos: 18.5,-255.5 parent: 2 - - uid: 8359 + - uid: 2162 components: - type: Transform pos: 12.5,-260.5 parent: 2 - - uid: 8360 + - uid: 2163 components: - type: Transform pos: 18.5,-257.5 parent: 2 - - uid: 8361 + - uid: 2164 components: - type: Transform pos: 15.5,-240.5 parent: 2 - - uid: 8362 + - uid: 2165 components: - type: Transform pos: 16.5,-243.5 parent: 2 - - uid: 8363 + - uid: 2166 components: - type: Transform pos: 18.5,-260.5 parent: 2 - - uid: 8364 + - uid: 2167 components: - type: Transform pos: 15.5,-243.5 parent: 2 - - uid: 8367 + - uid: 2168 components: - type: Transform pos: -13.5,-163.5 parent: 2 - - uid: 8368 + - uid: 2169 components: - type: Transform pos: 18.5,-248.5 parent: 2 - - uid: 8369 + - uid: 2170 components: - type: Transform pos: 17.5,-245.5 parent: 2 - - uid: 8371 + - uid: 2171 components: - type: Transform pos: -13.5,-164.5 parent: 2 - - uid: 8377 + - uid: 2172 components: - type: Transform pos: -13.5,-165.5 parent: 2 - - uid: 8382 + - uid: 2173 components: - type: Transform pos: 17.5,-260.5 parent: 2 - - uid: 8383 + - uid: 2174 components: - type: Transform pos: 14.5,-256.5 parent: 2 - - uid: 8386 + - uid: 2175 components: - type: Transform pos: -13.5,-166.5 parent: 2 - - uid: 8389 + - uid: 2176 components: - type: Transform pos: 7.5,-257.5 parent: 2 - - uid: 8390 + - uid: 2177 components: - type: Transform pos: 7.5,-258.5 parent: 2 - - uid: 8392 + - uid: 2178 components: - type: Transform pos: -13.5,-167.5 parent: 2 - - uid: 8393 + - uid: 2179 components: - type: Transform pos: -12.5,-167.5 parent: 2 - - uid: 8418 + - uid: 2180 components: - type: Transform pos: 7.5,-247.5 parent: 2 - - uid: 8423 + - uid: 2181 components: - type: Transform pos: 7.5,-259.5 parent: 2 - - uid: 8427 + - uid: 2182 components: - type: Transform pos: 7.5,-260.5 parent: 2 - - uid: 8434 + - uid: 2183 components: - type: Transform pos: 11.5,-256.5 parent: 2 - - uid: 8437 + - uid: 2184 components: - type: Transform pos: 6.5,-243.5 parent: 2 - - uid: 8445 + - uid: 2185 components: - type: Transform pos: -9.5,-299.5 parent: 2 - - uid: 8446 + - uid: 2186 components: - type: Transform pos: 8.5,-260.5 parent: 2 - - uid: 8447 + - uid: 2187 components: - type: Transform pos: 13.5,-256.5 parent: 2 - - uid: 8451 + - uid: 2188 components: - type: Transform pos: 16.5,-264.5 parent: 2 - - uid: 8457 + - uid: 2189 components: - type: Transform pos: 5.5,-261.5 parent: 2 - - uid: 8462 + - uid: 2190 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 8464 + - uid: 2191 components: - type: Transform pos: 0.5,-362.5 parent: 2 - - uid: 8465 + - uid: 2192 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 8500 + - uid: 2193 components: - type: Transform pos: 17.5,-243.5 parent: 2 - - uid: 8505 + - uid: 2194 components: - type: Transform pos: 18.5,-247.5 parent: 2 - - uid: 8506 + - uid: 2195 components: - type: Transform pos: 18.5,-240.5 parent: 2 - - uid: 8517 + - uid: 2196 components: - type: Transform pos: 3.5,-252.5 parent: 2 - - uid: 8555 + - uid: 2197 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 8566 + - uid: 2198 components: - type: Transform pos: 3.5,-260.5 parent: 2 - - uid: 8618 + - uid: 2199 components: - type: Transform pos: 3.5,-249.5 parent: 2 - - uid: 8645 + - uid: 2200 components: - type: Transform pos: 5.5,-260.5 parent: 2 - - uid: 8646 + - uid: 2201 components: - type: Transform pos: 15.5,-260.5 parent: 2 - - uid: 8647 + - uid: 2202 components: - type: Transform pos: 17.5,-240.5 parent: 2 - - uid: 8660 + - uid: 2203 components: - type: Transform pos: 14.5,-260.5 parent: 2 - - uid: 8668 + - uid: 2204 components: - type: Transform pos: 16.5,-250.5 parent: 2 - - uid: 8670 + - uid: 2205 components: - type: Transform pos: 19.5,-248.5 parent: 2 - - uid: 8684 + - uid: 2206 components: - type: Transform pos: 15.5,-245.5 parent: 2 - - uid: 8696 + - uid: 2207 components: - type: Transform pos: 16.5,-260.5 parent: 2 - - uid: 8708 + - uid: 2208 components: - type: Transform pos: -6.5,-167.5 parent: 2 - - uid: 8730 + - uid: 2209 components: - type: Transform pos: 13.5,-260.5 parent: 2 - - uid: 8731 + - uid: 2210 components: - type: Transform pos: 18.5,-256.5 parent: 2 - - uid: 8764 + - uid: 2211 components: - type: Transform pos: -7.5,-167.5 parent: 2 - - uid: 8786 + - uid: 2212 components: - type: Transform pos: 16.5,-256.5 parent: 2 - - uid: 8787 + - uid: 2213 components: - type: Transform pos: 11.5,-260.5 parent: 2 - - uid: 8791 + - uid: 2214 components: - type: Transform pos: 18.5,-258.5 parent: 2 - - uid: 8792 + - uid: 2215 components: - type: Transform pos: 18.5,-246.5 parent: 2 - - uid: 8793 + - uid: 2216 components: - type: Transform pos: 16.5,-245.5 parent: 2 - - uid: 8799 + - uid: 2217 components: - type: Transform pos: 18.5,-261.5 parent: 2 - - uid: 8804 + - uid: 2218 components: - type: Transform pos: 18.5,-259.5 parent: 2 - - uid: 8805 + - uid: 2219 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 8829 + - uid: 2220 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 8843 + - uid: 2221 components: - type: Transform pos: 8.5,-117.5 parent: 2 - - uid: 8895 + - uid: 2222 components: - type: Transform pos: 18.5,-245.5 parent: 2 - - uid: 8897 + - uid: 2223 components: - type: Transform pos: 18.5,-264.5 parent: 2 - - uid: 8916 + - uid: 2224 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 8929 + - uid: 2225 components: - type: Transform pos: 17.5,-264.5 parent: 2 - - uid: 8930 + - uid: 2226 components: - type: Transform pos: 3.5,-251.5 parent: 2 - - uid: 8973 + - uid: 2227 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 8976 + - uid: 2228 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 8988 + - uid: 2229 components: - type: Transform pos: 7.5,-243.5 parent: 2 - - uid: 9010 + - uid: 2230 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9027 + - uid: 2231 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 9041 + - uid: 2232 components: - type: Transform pos: 4.5,-243.5 parent: 2 - - uid: 9043 + - uid: 2233 components: - type: Transform pos: 5.5,-243.5 parent: 2 - - uid: 9049 + - uid: 2234 components: - type: Transform pos: 3.5,-243.5 parent: 2 - - uid: 9061 + - uid: 2235 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 9170 + - uid: 2236 components: - type: Transform pos: 5.5,-284.5 parent: 2 - - uid: 9171 + - uid: 2237 components: - type: Transform pos: 5.5,-285.5 parent: 2 - - uid: 9172 + - uid: 2238 components: - type: Transform pos: 4.5,-284.5 parent: 2 - - uid: 9173 + - uid: 2239 components: - type: Transform pos: 6.5,-284.5 parent: 2 - - uid: 9215 + - uid: 2240 components: - type: Transform pos: -1.5,-272.5 parent: 2 - - uid: 9216 + - uid: 2241 components: - type: Transform pos: -1.5,-271.5 parent: 2 - - uid: 9217 + - uid: 2242 components: - type: Transform pos: -2.5,-271.5 parent: 2 - - uid: 9218 + - uid: 2243 components: - type: Transform pos: -3.5,-271.5 parent: 2 - - uid: 9219 + - uid: 2244 components: - type: Transform pos: -4.5,-271.5 parent: 2 - - uid: 9220 + - uid: 2245 components: - type: Transform pos: -5.5,-271.5 parent: 2 - - uid: 9221 + - uid: 2246 components: - type: Transform pos: -6.5,-271.5 parent: 2 - - uid: 9222 + - uid: 2247 components: - type: Transform pos: -6.5,-270.5 parent: 2 - - uid: 9223 + - uid: 2248 components: - type: Transform pos: -6.5,-272.5 parent: 2 - - uid: 9224 + - uid: 2249 components: - type: Transform pos: -7.5,-272.5 parent: 2 - - uid: 9225 + - uid: 2250 components: - type: Transform pos: -8.5,-272.5 parent: 2 - - uid: 9226 + - uid: 2251 components: - type: Transform pos: -6.5,-273.5 parent: 2 - - uid: 9227 + - uid: 2252 components: - type: Transform pos: -6.5,-274.5 parent: 2 - - uid: 9228 + - uid: 2253 components: - type: Transform pos: -6.5,-275.5 parent: 2 - - uid: 9229 + - uid: 2254 components: - type: Transform pos: -5.5,-275.5 parent: 2 - - uid: 9230 + - uid: 2255 components: - type: Transform pos: -5.5,-276.5 parent: 2 - - uid: 9231 + - uid: 2256 components: - type: Transform pos: 7.5,-272.5 parent: 2 - - uid: 9232 + - uid: 2257 components: - type: Transform pos: 6.5,-272.5 parent: 2 - - uid: 9233 + - uid: 2258 components: - type: Transform pos: 5.5,-272.5 parent: 2 - - uid: 9234 + - uid: 2259 components: - type: Transform pos: 4.5,-272.5 parent: 2 - - uid: 9235 + - uid: 2260 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 9236 + - uid: 2261 components: - type: Transform pos: 5.5,-271.5 parent: 2 - - uid: 9237 + - uid: 2262 components: - type: Transform pos: 5.5,-270.5 parent: 2 - - uid: 9238 + - uid: 2263 components: - type: Transform pos: 5.5,-269.5 parent: 2 - - uid: 9239 + - uid: 2264 components: - type: Transform pos: 3.5,-271.5 parent: 2 - - uid: 9240 + - uid: 2265 components: - type: Transform pos: 3.5,-270.5 parent: 2 - - uid: 9241 + - uid: 2266 components: - type: Transform pos: 2.5,-272.5 parent: 2 - - uid: 9242 + - uid: 2267 components: - type: Transform pos: 5.5,-273.5 parent: 2 - - uid: 9243 + - uid: 2268 components: - type: Transform pos: 5.5,-274.5 parent: 2 - - uid: 9244 + - uid: 2269 components: - type: Transform pos: 5.5,-275.5 parent: 2 - - uid: 9245 + - uid: 2270 components: - type: Transform pos: 5.5,-276.5 parent: 2 - - uid: 9246 + - uid: 2271 components: - type: Transform pos: 5.5,-277.5 parent: 2 - - uid: 9247 + - uid: 2272 components: - type: Transform pos: 5.5,-278.5 parent: 2 - - uid: 9248 + - uid: 2273 components: - type: Transform pos: 5.5,-279.5 parent: 2 - - uid: 9249 + - uid: 2274 components: - type: Transform pos: 5.5,-280.5 parent: 2 - - uid: 9250 + - uid: 2275 components: - type: Transform pos: 5.5,-281.5 parent: 2 - - uid: 9251 + - uid: 2276 components: - type: Transform pos: 4.5,-277.5 parent: 2 - - uid: 9252 + - uid: 2277 components: - type: Transform pos: 3.5,-277.5 parent: 2 - - uid: 9253 + - uid: 2278 components: - type: Transform pos: 2.5,-277.5 parent: 2 - - uid: 9254 + - uid: 2279 components: - type: Transform pos: 1.5,-277.5 parent: 2 - - uid: 9255 + - uid: 2280 components: - type: Transform pos: 0.5,-277.5 parent: 2 - - uid: 9256 + - uid: 2281 components: - type: Transform pos: 0.5,-278.5 parent: 2 - - uid: 9257 + - uid: 2282 components: - type: Transform pos: 0.5,-279.5 parent: 2 - - uid: 9258 + - uid: 2283 components: - type: Transform pos: 0.5,-280.5 parent: 2 - - uid: 9259 + - uid: 2284 components: - type: Transform pos: 0.5,-281.5 parent: 2 - - uid: 9260 + - uid: 2285 components: - type: Transform pos: 0.5,-282.5 parent: 2 - - uid: 9261 + - uid: 2286 components: - type: Transform pos: -0.5,-281.5 parent: 2 - - uid: 9262 + - uid: 2287 components: - type: Transform pos: -0.5,-277.5 parent: 2 - - uid: 9263 + - uid: 2288 components: - type: Transform pos: 0.5,-276.5 parent: 2 - - uid: 9264 + - uid: 2289 components: - type: Transform pos: 6.5,-277.5 parent: 2 - - uid: 9265 + - uid: 2290 components: - type: Transform pos: 7.5,-277.5 parent: 2 - - uid: 9266 + - uid: 2291 components: - type: Transform pos: 8.5,-277.5 parent: 2 - - uid: 9267 + - uid: 2292 components: - type: Transform pos: 9.5,-277.5 parent: 2 - - uid: 9268 + - uid: 2293 components: - type: Transform pos: 10.5,-277.5 parent: 2 - - uid: 9269 + - uid: 2294 components: - type: Transform pos: 11.5,-277.5 parent: 2 - - uid: 9270 + - uid: 2295 components: - type: Transform pos: 11.5,-281.5 parent: 2 - - uid: 9271 + - uid: 2296 components: - type: Transform pos: 10.5,-281.5 parent: 2 - - uid: 9272 + - uid: 2297 components: - type: Transform pos: 9.5,-281.5 parent: 2 - - uid: 9273 + - uid: 2298 components: - type: Transform pos: 8.5,-281.5 parent: 2 - - uid: 9274 + - uid: 2299 components: - type: Transform pos: 7.5,-281.5 parent: 2 - - uid: 9275 + - uid: 2300 components: - type: Transform pos: 6.5,-281.5 parent: 2 - - uid: 9276 + - uid: 2301 components: - type: Transform pos: 4.5,-281.5 parent: 2 - - uid: 9277 + - uid: 2302 components: - type: Transform pos: 3.5,-281.5 parent: 2 - - uid: 9278 + - uid: 2303 components: - type: Transform pos: 2.5,-281.5 parent: 2 - - uid: 9279 + - uid: 2304 components: - type: Transform pos: 1.5,-281.5 parent: 2 - - uid: 9280 + - uid: 2305 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9281 + - uid: 2306 components: - type: Transform pos: -5.5,-277.5 parent: 2 - - uid: 9282 + - uid: 2307 components: - type: Transform pos: -5.5,-278.5 parent: 2 - - uid: 9283 + - uid: 2308 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 9284 + - uid: 2309 components: - type: Transform pos: -5.5,-280.5 parent: 2 - - uid: 9285 + - uid: 2310 components: - type: Transform pos: -5.5,-281.5 parent: 2 - - uid: 9286 + - uid: 2311 components: - type: Transform pos: -5.5,-282.5 parent: 2 - - uid: 9287 + - uid: 2312 components: - type: Transform pos: -5.5,-283.5 parent: 2 - - uid: 9288 + - uid: 2313 components: - type: Transform pos: -5.5,-284.5 parent: 2 - - uid: 9289 + - uid: 2314 components: - type: Transform pos: -5.5,-285.5 parent: 2 - - uid: 9290 + - uid: 2315 components: - type: Transform pos: -5.5,-286.5 parent: 2 - - uid: 9291 + - uid: 2316 components: - type: Transform pos: -5.5,-287.5 parent: 2 - - uid: 9292 + - uid: 2317 components: - type: Transform pos: -4.5,-287.5 parent: 2 - - uid: 9293 + - uid: 2318 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 9294 + - uid: 2319 components: - type: Transform pos: -4.5,-279.5 parent: 2 - - uid: 9295 + - uid: 2320 components: - type: Transform pos: -3.5,-279.5 parent: 2 - - uid: 9296 + - uid: 2321 components: - type: Transform pos: -3.5,-280.5 parent: 2 - - uid: 9297 + - uid: 2322 components: - type: Transform pos: -3.5,-281.5 parent: 2 - - uid: 9298 + - uid: 2323 components: - type: Transform pos: -3.5,-282.5 parent: 2 - - uid: 9299 + - uid: 2324 components: - type: Transform pos: -3.5,-283.5 parent: 2 - - uid: 9300 + - uid: 2325 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9301 + - uid: 2326 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9302 + - uid: 2327 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9303 + - uid: 2328 components: - type: Transform pos: -0.5,-284.5 parent: 2 - - uid: 9304 + - uid: 2329 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 9305 + - uid: 2330 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9306 + - uid: 2331 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 9307 + - uid: 2332 components: - type: Transform pos: 0.5,-287.5 parent: 2 - - uid: 9308 + - uid: 2333 components: - type: Transform pos: 0.5,-288.5 parent: 2 - - uid: 9309 + - uid: 2334 components: - type: Transform pos: 0.5,-289.5 parent: 2 - - uid: 9310 + - uid: 2335 components: - type: Transform pos: 0.5,-290.5 parent: 2 - - uid: 9311 + - uid: 2336 components: - type: Transform pos: 1.5,-289.5 parent: 2 - - uid: 9312 + - uid: 2337 components: - type: Transform pos: 2.5,-289.5 parent: 2 - - uid: 9313 + - uid: 2338 components: - type: Transform pos: -0.5,-289.5 parent: 2 - - uid: 9314 + - uid: 2339 components: - type: Transform pos: -1.5,-289.5 parent: 2 - - uid: 9315 + - uid: 2340 components: - type: Transform pos: -3.5,-278.5 parent: 2 - - uid: 9316 + - uid: 2341 components: - type: Transform pos: -3.5,-277.5 parent: 2 - - uid: 9317 + - uid: 2342 components: - type: Transform pos: -3.5,-276.5 parent: 2 - - uid: 9318 + - uid: 2343 components: - type: Transform pos: -3.5,-275.5 parent: 2 - - uid: 9319 + - uid: 2344 components: - type: Transform pos: -2.5,-275.5 parent: 2 - - uid: 9320 + - uid: 2345 components: - type: Transform pos: -2.5,-274.5 parent: 2 - - uid: 9321 + - uid: 2346 components: - type: Transform pos: -1.5,-274.5 parent: 2 - - uid: 9323 + - uid: 2347 components: - type: Transform pos: -0.5,-274.5 parent: 2 - - uid: 9324 + - uid: 2348 components: - type: Transform pos: 0.5,-274.5 parent: 2 - - uid: 9325 + - uid: 2349 components: - type: Transform pos: 0.5,-273.5 parent: 2 - - uid: 9326 + - uid: 2350 components: - type: Transform pos: 0.5,-272.5 parent: 2 - - uid: 9327 + - uid: 2351 components: - type: Transform pos: 0.5,-271.5 parent: 2 - - uid: 9328 + - uid: 2352 components: - type: Transform pos: 0.5,-270.5 parent: 2 - - uid: 9329 + - uid: 2353 components: - type: Transform pos: 0.5,-269.5 parent: 2 - - uid: 9330 + - uid: 2354 components: - type: Transform pos: 0.5,-268.5 parent: 2 - - uid: 9331 + - uid: 2355 components: - type: Transform pos: 0.5,-267.5 parent: 2 - - uid: 9332 + - uid: 2356 components: - type: Transform pos: 2.5,-268.5 parent: 2 - - uid: 9333 + - uid: 2357 components: - type: Transform pos: 1.5,-268.5 parent: 2 - - uid: 9334 + - uid: 2358 components: - type: Transform pos: -0.5,-268.5 parent: 2 - - uid: 9335 + - uid: 2359 components: - type: Transform pos: -1.5,-268.5 parent: 2 - - uid: 9429 + - uid: 2360 components: - type: Transform pos: -4.5,-328.5 parent: 2 - - uid: 9457 + - uid: 2361 components: - type: Transform pos: 22.5,-311.5 parent: 2 - - uid: 9518 + - uid: 2362 components: - type: Transform pos: 22.5,-312.5 parent: 2 - - uid: 9619 + - uid: 2363 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9621 + - uid: 2364 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9622 + - uid: 2365 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9623 + - uid: 2366 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9624 + - uid: 2367 components: - type: Transform pos: 18.5,-307.5 parent: 2 - - uid: 9625 + - uid: 2368 components: - type: Transform pos: 17.5,-307.5 parent: 2 - - uid: 9626 + - uid: 2369 components: - type: Transform pos: 16.5,-307.5 parent: 2 - - uid: 9627 + - uid: 2370 components: - type: Transform pos: 15.5,-307.5 parent: 2 - - uid: 9628 + - uid: 2371 components: - type: Transform pos: 14.5,-307.5 parent: 2 - - uid: 9629 + - uid: 2372 components: - type: Transform pos: 13.5,-307.5 parent: 2 - - uid: 9630 + - uid: 2373 components: - type: Transform pos: 19.5,-309.5 parent: 2 - - uid: 9631 + - uid: 2374 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9632 + - uid: 2375 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9633 + - uid: 2376 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9634 + - uid: 2377 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9635 + - uid: 2378 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9636 + - uid: 2379 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9637 + - uid: 2380 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9639 + - uid: 2381 components: - type: Transform pos: 25.5,-309.5 parent: 2 - - uid: 9640 + - uid: 2382 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9641 + - uid: 2383 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9642 + - uid: 2384 components: - type: Transform pos: 26.5,-307.5 parent: 2 - - uid: 9643 + - uid: 2385 components: - type: Transform pos: 27.5,-307.5 parent: 2 - - uid: 9644 + - uid: 2386 components: - type: Transform pos: 28.5,-307.5 parent: 2 - - uid: 9645 + - uid: 2387 components: - type: Transform pos: 29.5,-307.5 parent: 2 - - uid: 9646 + - uid: 2388 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9647 + - uid: 2389 components: - type: Transform pos: 25.5,-305.5 parent: 2 - - uid: 9648 + - uid: 2390 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9649 + - uid: 2391 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9650 + - uid: 2392 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9651 + - uid: 2393 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 9652 + - uid: 2394 components: - type: Transform pos: 19.5,-305.5 parent: 2 - - uid: 9653 + - uid: 2395 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9654 + - uid: 2396 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9655 + - uid: 2397 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9656 + - uid: 2398 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9657 + - uid: 2399 components: - type: Transform pos: 22.5,-303.5 parent: 2 - - uid: 9658 + - uid: 2400 components: - type: Transform pos: 22.5,-302.5 parent: 2 - - uid: 9659 + - uid: 2401 components: - type: Transform pos: 22.5,-301.5 parent: 2 - - uid: 9660 + - uid: 2402 components: - type: Transform pos: 22.5,-300.5 parent: 2 - - uid: 9661 + - uid: 2403 components: - type: Transform pos: 22.5,-299.5 parent: 2 - - uid: 9662 + - uid: 2404 components: - type: Transform pos: 22.5,-298.5 parent: 2 - - uid: 9663 + - uid: 2405 components: - type: Transform pos: 23.5,-298.5 parent: 2 - - uid: 9664 + - uid: 2406 components: - type: Transform pos: 24.5,-298.5 parent: 2 - - uid: 9665 + - uid: 2407 components: - type: Transform pos: 25.5,-298.5 parent: 2 - - uid: 9666 + - uid: 2408 components: - type: Transform pos: 21.5,-298.5 parent: 2 - - uid: 9667 + - uid: 2409 components: - type: Transform pos: 20.5,-298.5 parent: 2 - - uid: 9668 + - uid: 2410 components: - type: Transform pos: 19.5,-298.5 parent: 2 - - uid: 9669 + - uid: 2411 components: - type: Transform pos: 22.5,-313.5 parent: 2 - - uid: 9670 + - uid: 2412 components: - type: Transform pos: 22.5,-314.5 parent: 2 - - uid: 9671 + - uid: 2413 components: - type: Transform pos: 22.5,-315.5 parent: 2 - - uid: 9672 + - uid: 2414 components: - type: Transform pos: 22.5,-316.5 parent: 2 - - uid: 9674 + - uid: 2415 components: - type: Transform pos: 23.5,-316.5 parent: 2 - - uid: 9675 + - uid: 2416 components: - type: Transform pos: 24.5,-316.5 parent: 2 - - uid: 9676 + - uid: 2417 components: - type: Transform pos: 25.5,-316.5 parent: 2 - - uid: 9677 + - uid: 2418 components: - type: Transform pos: 21.5,-316.5 parent: 2 - - uid: 9678 + - uid: 2419 components: - type: Transform pos: 20.5,-316.5 parent: 2 - - uid: 9679 + - uid: 2420 components: - type: Transform pos: 19.5,-316.5 parent: 2 - - uid: 9680 + - uid: 2421 components: - type: Transform pos: 22.5,-317.5 parent: 2 - - uid: 9681 + - uid: 2422 components: - type: Transform pos: 22.5,-297.5 parent: 2 - - uid: 9769 + - uid: 2423 components: - type: Transform pos: 29.5,-306.5 parent: 2 - - uid: 9770 + - uid: 2424 components: - type: Transform pos: 29.5,-305.5 parent: 2 - - uid: 9771 + - uid: 2425 components: - type: Transform pos: 29.5,-304.5 parent: 2 - - uid: 9775 + - uid: 2426 components: - type: Transform pos: 29.5,-308.5 parent: 2 - - uid: 9776 + - uid: 2427 components: - type: Transform pos: 29.5,-309.5 parent: 2 - - uid: 9777 + - uid: 2428 components: - type: Transform pos: 29.5,-310.5 parent: 2 - - uid: 9831 + - uid: 2429 components: - type: Transform pos: 5.5,-335.5 parent: 2 - - uid: 9853 + - uid: 2430 components: - type: Transform pos: 14.5,-243.5 parent: 2 - - uid: 10035 + - uid: 2431 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 10048 + - uid: 2432 components: - type: Transform pos: 7.5,-335.5 parent: 2 - - uid: 10165 + - uid: 2433 components: - type: Transform pos: 0.5,-308.5 parent: 2 - - uid: 10168 + - uid: 2434 components: - type: Transform pos: 5.5,-338.5 parent: 2 - - uid: 10353 + - uid: 2435 components: - type: Transform pos: -9.5,-303.5 parent: 2 - - uid: 10354 + - uid: 2436 components: - type: Transform pos: -9.5,-304.5 parent: 2 - - uid: 10355 + - uid: 2437 components: - type: Transform pos: -9.5,-305.5 parent: 2 - - uid: 10356 + - uid: 2438 components: - type: Transform pos: -8.5,-303.5 parent: 2 - - uid: 10357 + - uid: 2439 components: - type: Transform pos: -7.5,-303.5 parent: 2 - - uid: 10358 + - uid: 2440 components: - type: Transform pos: -6.5,-303.5 parent: 2 - - uid: 10359 + - uid: 2441 components: - type: Transform pos: -5.5,-303.5 parent: 2 - - uid: 10360 + - uid: 2442 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10361 + - uid: 2443 components: - type: Transform pos: -3.5,-303.5 parent: 2 - - uid: 10362 + - uid: 2444 components: - type: Transform pos: -2.5,-303.5 parent: 2 - - uid: 10363 + - uid: 2445 components: - type: Transform pos: -4.5,-302.5 parent: 2 - - uid: 10364 + - uid: 2446 components: - type: Transform pos: -4.5,-301.5 parent: 2 - - uid: 10365 + - uid: 2447 components: - type: Transform pos: -4.5,-300.5 parent: 2 - - uid: 10366 + - uid: 2448 components: - type: Transform pos: -4.5,-299.5 parent: 2 - - uid: 10367 + - uid: 2449 components: - type: Transform pos: -4.5,-304.5 parent: 2 - - uid: 10368 + - uid: 2450 components: - type: Transform pos: -4.5,-305.5 parent: 2 - - uid: 10369 + - uid: 2451 components: - type: Transform pos: -1.5,-303.5 parent: 2 - - uid: 10370 + - uid: 2452 components: - type: Transform pos: -0.5,-303.5 parent: 2 - - uid: 10371 + - uid: 2453 components: - type: Transform pos: 0.5,-303.5 parent: 2 - - uid: 10372 + - uid: 2454 components: - type: Transform pos: 0.5,-302.5 parent: 2 - - uid: 10373 + - uid: 2455 components: - type: Transform pos: 0.5,-301.5 parent: 2 - - uid: 10374 + - uid: 2456 components: - type: Transform pos: 0.5,-300.5 parent: 2 - - uid: 10375 + - uid: 2457 components: - type: Transform pos: 0.5,-299.5 parent: 2 - - uid: 10376 + - uid: 2458 components: - type: Transform pos: 0.5,-298.5 parent: 2 - - uid: 10377 - components: - - type: Transform - pos: 0.5,-297.5 - parent: 2 - - uid: 10378 + - uid: 2459 components: - type: Transform pos: 0.5,-296.5 parent: 2 - - uid: 10379 + - uid: 2460 components: - type: Transform pos: 0.5,-295.5 parent: 2 - - uid: 10380 + - uid: 2461 components: - type: Transform pos: 0.5,-294.5 parent: 2 - - uid: 10381 + - uid: 2462 components: - type: Transform pos: -0.5,-295.5 parent: 2 - - uid: 10382 + - uid: 2463 components: - type: Transform pos: -1.5,-295.5 parent: 2 - - uid: 10383 + - uid: 2464 components: - type: Transform pos: 1.5,-295.5 parent: 2 - - uid: 10384 + - uid: 2465 components: - type: Transform pos: 2.5,-295.5 parent: 2 - - uid: 10385 + - uid: 2466 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10386 + - uid: 2467 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10387 + - uid: 2468 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10388 + - uid: 2469 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10389 + - uid: 2470 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10390 + - uid: 2471 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10391 + - uid: 2472 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10392 + - uid: 2473 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10393 + - uid: 2474 components: - type: Transform pos: 0.5,-304.5 parent: 2 - - uid: 10394 + - uid: 2475 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 10395 + - uid: 2476 components: - type: Transform pos: 0.5,-305.5 parent: 2 - - uid: 10396 + - uid: 2477 components: - type: Transform pos: 0.5,-306.5 parent: 2 - - uid: 10397 + - uid: 2478 components: - type: Transform pos: -3.5,-320.5 parent: 2 - - uid: 10398 + - uid: 2479 components: - type: Transform pos: -3.5,-319.5 parent: 2 - - uid: 10399 + - uid: 2480 components: - type: Transform pos: -3.5,-318.5 parent: 2 - - uid: 10400 + - uid: 2481 components: - type: Transform pos: -3.5,-317.5 parent: 2 - - uid: 10401 + - uid: 2482 components: - type: Transform pos: -3.5,-316.5 parent: 2 - - uid: 10402 + - uid: 2483 components: - type: Transform pos: -3.5,-315.5 parent: 2 - - uid: 10407 + - uid: 2484 components: - type: Transform pos: -3.5,-314.5 parent: 2 - - uid: 10408 + - uid: 2485 components: - type: Transform pos: -3.5,-313.5 parent: 2 - - uid: 10409 + - uid: 2486 components: - type: Transform pos: -3.5,-312.5 parent: 2 - - uid: 10410 + - uid: 2487 components: - type: Transform pos: -3.5,-311.5 parent: 2 - - uid: 10411 + - uid: 2488 components: - type: Transform pos: -3.5,-310.5 parent: 2 - - uid: 10412 + - uid: 2489 components: - type: Transform pos: -3.5,-309.5 parent: 2 - - uid: 10413 + - uid: 2490 components: - type: Transform pos: -3.5,-308.5 parent: 2 - - uid: 10414 + - uid: 2491 components: - type: Transform pos: -2.5,-308.5 parent: 2 - - uid: 10415 + - uid: 2492 components: - type: Transform pos: -4.5,-308.5 parent: 2 - - uid: 10416 + - uid: 2493 components: - type: Transform pos: -3.5,-307.5 parent: 2 - - uid: 10417 + - uid: 2494 components: - type: Transform pos: -4.5,-314.5 parent: 2 - - uid: 10418 + - uid: 2495 components: - type: Transform pos: -5.5,-314.5 parent: 2 - - uid: 10419 + - uid: 2496 components: - type: Transform pos: -6.5,-314.5 parent: 2 - - uid: 10420 + - uid: 2497 components: - type: Transform pos: -7.5,-314.5 parent: 2 - - uid: 10421 + - uid: 2498 components: - type: Transform pos: -8.5,-314.5 parent: 2 - - uid: 10422 + - uid: 2499 components: - type: Transform pos: -4.5,-318.5 parent: 2 - - uid: 10423 + - uid: 2500 components: - type: Transform pos: -5.5,-318.5 parent: 2 - - uid: 10424 + - uid: 2501 components: - type: Transform pos: -6.5,-318.5 parent: 2 - - uid: 10425 + - uid: 2502 components: - type: Transform pos: -7.5,-318.5 parent: 2 - - uid: 10426 + - uid: 2503 components: - type: Transform pos: -8.5,-318.5 parent: 2 - - uid: 10427 + - uid: 2504 components: - type: Transform pos: -4.5,-316.5 parent: 2 - - uid: 10428 + - uid: 2505 components: - type: Transform pos: -5.5,-316.5 parent: 2 - - uid: 10429 + - uid: 2506 components: - type: Transform pos: -2.5,-317.5 parent: 2 - - uid: 10430 + - uid: 2507 components: - type: Transform pos: -1.5,-317.5 parent: 2 - - uid: 10431 + - uid: 2508 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 10432 + - uid: 2509 components: - type: Transform pos: 0.5,-317.5 parent: 2 - - uid: 10433 + - uid: 2510 components: - type: Transform pos: 0.5,-318.5 parent: 2 - - uid: 10434 + - uid: 2511 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10435 - components: - - type: Transform - pos: 1.5,-319.5 - parent: 2 - - uid: 10436 + - uid: 2512 components: - type: Transform pos: 1.5,-317.5 parent: 2 - - uid: 10437 + - uid: 2513 components: - type: Transform pos: 0.5,-316.5 parent: 2 - - uid: 10438 + - uid: 2514 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 10439 + - uid: 2515 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 10440 + - uid: 2516 components: - type: Transform pos: -0.5,-321.5 parent: 2 - - uid: 10441 + - uid: 2517 components: - type: Transform pos: -1.5,-321.5 parent: 2 - - uid: 10442 + - uid: 2518 components: - type: Transform pos: 1.5,-321.5 parent: 2 - - uid: 10443 + - uid: 2519 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 10444 + - uid: 2520 components: - type: Transform pos: 2.5,-321.5 parent: 2 - - uid: 10445 + - uid: 2521 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10446 + - uid: 2522 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10447 + - uid: 2523 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10448 + - uid: 2524 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10449 + - uid: 2525 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10450 + - uid: 2526 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10451 + - uid: 2527 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10452 + - uid: 2528 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10453 + - uid: 2529 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10454 + - uid: 2530 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10455 + - uid: 2531 components: - type: Transform pos: 5.5,-317.5 parent: 2 - - uid: 10456 + - uid: 2532 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 10457 + - uid: 2533 components: - type: Transform pos: 5.5,-315.5 parent: 2 - - uid: 10458 + - uid: 2534 components: - type: Transform pos: 5.5,-314.5 parent: 2 - - uid: 10459 + - uid: 2535 components: - type: Transform pos: 5.5,-313.5 parent: 2 - - uid: 10460 + - uid: 2536 components: - type: Transform pos: 5.5,-312.5 parent: 2 - - uid: 10461 + - uid: 2537 components: - type: Transform pos: 5.5,-311.5 parent: 2 - - uid: 10462 + - uid: 2538 components: - type: Transform pos: 5.5,-310.5 parent: 2 - - uid: 10463 + - uid: 2539 components: - type: Transform pos: 4.5,-313.5 parent: 2 - - uid: 10464 + - uid: 2540 components: - type: Transform pos: 3.5,-313.5 parent: 2 - - uid: 10465 + - uid: 2541 components: - type: Transform pos: 2.5,-313.5 parent: 2 - - uid: 10466 + - uid: 2542 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 10467 + - uid: 2543 components: - type: Transform pos: 7.5,-313.5 parent: 2 - - uid: 10468 + - uid: 2544 components: - type: Transform pos: 6.5,-315.5 parent: 2 - - uid: 10469 + - uid: 2545 components: - type: Transform pos: 7.5,-315.5 parent: 2 - - uid: 10470 + - uid: 2546 components: - type: Transform pos: 8.5,-315.5 parent: 2 - - uid: 10471 + - uid: 2547 components: - type: Transform pos: 4.5,-315.5 parent: 2 - - uid: 10472 + - uid: 2548 components: - type: Transform pos: 3.5,-315.5 parent: 2 - - uid: 10473 + - uid: 2549 components: - type: Transform pos: 6.5,-311.5 parent: 2 - - uid: 10474 + - uid: 2550 components: - type: Transform pos: 7.5,-311.5 parent: 2 - - uid: 10475 + - uid: 2551 components: - type: Transform pos: 4.5,-311.5 parent: 2 - - uid: 10477 + - uid: 2552 components: - type: Transform pos: 3.5,-311.5 parent: 2 - - uid: 10478 + - uid: 2553 components: - type: Transform pos: 2.5,-301.5 parent: 2 - - uid: 10479 + - uid: 2554 components: - type: Transform pos: 3.5,-301.5 parent: 2 - - uid: 10480 + - uid: 2555 components: - type: Transform pos: 4.5,-301.5 parent: 2 - - uid: 10481 + - uid: 2556 components: - type: Transform pos: 5.5,-301.5 parent: 2 - - uid: 10482 + - uid: 2557 components: - type: Transform pos: 6.5,-301.5 parent: 2 - - uid: 10483 + - uid: 2558 components: - type: Transform pos: 6.5,-302.5 parent: 2 - - uid: 10484 + - uid: 2559 components: - type: Transform pos: 6.5,-303.5 parent: 2 - - uid: 10485 + - uid: 2560 components: - type: Transform pos: 6.5,-304.5 parent: 2 - - uid: 10486 + - uid: 2561 components: - type: Transform pos: 6.5,-305.5 parent: 2 - - uid: 10487 + - uid: 2562 components: - type: Transform pos: 6.5,-306.5 parent: 2 - - uid: 10488 + - uid: 2563 components: - type: Transform pos: 6.5,-307.5 parent: 2 - - uid: 10489 + - uid: 2564 components: - type: Transform pos: 5.5,-307.5 parent: 2 - - uid: 10490 + - uid: 2565 components: - type: Transform pos: 4.5,-307.5 parent: 2 - - uid: 10491 + - uid: 2566 components: - type: Transform pos: 3.5,-307.5 parent: 2 - - uid: 10492 + - uid: 2567 components: - type: Transform pos: 2.5,-307.5 parent: 2 - - uid: 10493 + - uid: 2568 components: - type: Transform pos: 7.5,-307.5 parent: 2 - - uid: 10494 + - uid: 2569 components: - type: Transform pos: 8.5,-307.5 parent: 2 - - uid: 10495 + - uid: 2570 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10496 + - uid: 2571 components: - type: Transform pos: 10.5,-307.5 parent: 2 - - uid: 10497 + - uid: 2572 components: - type: Transform pos: 11.5,-307.5 parent: 2 - - uid: 10498 + - uid: 2573 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10499 + - uid: 2574 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10500 + - uid: 2575 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10501 + - uid: 2576 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10502 + - uid: 2577 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10503 + - uid: 2578 components: - type: Transform pos: 9.5,-313.5 parent: 2 - - uid: 10504 + - uid: 2579 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10505 + - uid: 2580 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10506 + - uid: 2581 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10507 + - uid: 2582 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10508 + - uid: 2583 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10509 + - uid: 2584 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10510 + - uid: 2585 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10511 + - uid: 2586 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10512 + - uid: 2587 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10513 + - uid: 2588 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10514 + - uid: 2589 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10515 + - uid: 2590 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10516 + - uid: 2591 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10517 + - uid: 2592 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10518 + - uid: 2593 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10519 + - uid: 2594 components: - type: Transform pos: 5.5,-303.5 parent: 2 - - uid: 10520 + - uid: 2595 components: - type: Transform pos: 4.5,-303.5 parent: 2 - - uid: 10521 + - uid: 2596 components: - type: Transform pos: 3.5,-303.5 parent: 2 - - uid: 10522 + - uid: 2597 components: - type: Transform pos: 7.5,-303.5 parent: 2 - - uid: 10523 + - uid: 2598 components: - type: Transform pos: 7.5,-301.5 parent: 2 - - uid: 10524 + - uid: 2599 components: - type: Transform pos: 4.5,-300.5 parent: 2 - - uid: 10525 + - uid: 2600 components: - type: Transform pos: 6.5,-300.5 parent: 2 - - uid: 10526 + - uid: 2601 components: - type: Transform pos: 4.5,-304.5 parent: 2 - - uid: 10527 + - uid: 2602 components: - type: Transform pos: 6.5,-308.5 parent: 2 - - uid: 10616 + - uid: 2603 components: - type: Transform pos: 0.5,-315.5 parent: 2 - - uid: 10617 + - uid: 2604 components: - type: Transform pos: 0.5,-314.5 parent: 2 - - uid: 10618 + - uid: 2605 components: - type: Transform pos: 0.5,-313.5 parent: 2 - - uid: 10619 + - uid: 2606 components: - type: Transform pos: 0.5,-312.5 parent: 2 - - uid: 10620 + - uid: 2607 components: - type: Transform pos: 0.5,-311.5 parent: 2 - - uid: 10621 + - uid: 2608 components: - type: Transform pos: 0.5,-310.5 parent: 2 - - uid: 10622 + - uid: 2609 components: - type: Transform pos: 0.5,-309.5 parent: 2 - - uid: 10707 + - uid: 2610 components: - type: Transform pos: -4.5,-329.5 parent: 2 - - uid: 10712 + - uid: 2611 components: - type: Transform pos: 7.5,-342.5 parent: 2 - - uid: 10764 + - uid: 2612 components: - type: Transform pos: -5.5,-335.5 parent: 2 - - uid: 10847 + - uid: 2613 components: - type: Transform pos: -1.5,-54.5 parent: 2 - - uid: 10861 + - uid: 2614 components: - type: Transform pos: -2.5,-330.5 parent: 2 - - uid: 10925 + - uid: 2615 components: - type: Transform pos: -17.5,-256.5 parent: 2 - - uid: 10939 + - uid: 2616 components: - type: Transform pos: 5.5,-267.5 parent: 2 - - uid: 10940 + - uid: 2617 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 10941 + - uid: 2618 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 10942 + - uid: 2619 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 10943 + - uid: 2620 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 10944 + - uid: 2621 components: - type: Transform pos: 2.5,-327.5 parent: 2 - - uid: 10945 + - uid: 2622 components: - type: Transform pos: -0.5,-327.5 parent: 2 - - uid: 10946 + - uid: 2623 components: - type: Transform pos: -1.5,-327.5 parent: 2 - - uid: 10947 + - uid: 2624 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 10948 + - uid: 2625 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10949 + - uid: 2626 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 10950 + - uid: 2627 components: - type: Transform pos: 2.5,-330.5 parent: 2 - - uid: 10951 + - uid: 2628 components: - type: Transform pos: 3.5,-330.5 parent: 2 - - uid: 10952 + - uid: 2629 components: - type: Transform pos: 4.5,-330.5 parent: 2 - - uid: 10953 + - uid: 2630 components: - type: Transform pos: 5.5,-330.5 parent: 2 - - uid: 10954 + - uid: 2631 components: - type: Transform pos: 6.5,-330.5 parent: 2 - - uid: 10955 + - uid: 2632 components: - type: Transform pos: 6.5,-329.5 parent: 2 - - uid: 10956 + - uid: 2633 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10958 + - uid: 2634 components: - type: Transform pos: 5.5,-331.5 parent: 2 - - uid: 10959 + - uid: 2635 components: - type: Transform pos: 5.5,-332.5 parent: 2 - - uid: 10960 + - uid: 2636 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10961 + - uid: 2637 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10965 + - uid: 2638 components: - type: Transform pos: -4.5,-330.5 parent: 2 - - uid: 10967 + - uid: 2639 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 10974 + - uid: 2640 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 10975 + - uid: 2641 components: - type: Transform pos: -4.5,-334.5 parent: 2 - - uid: 10978 + - uid: 2642 components: - type: Transform pos: -4.5,-335.5 parent: 2 - - uid: 10979 + - uid: 2643 components: - type: Transform pos: -4.5,-336.5 parent: 2 - - uid: 10980 + - uid: 2644 components: - type: Transform pos: -4.5,-337.5 parent: 2 - - uid: 10981 + - uid: 2645 components: - type: Transform pos: -4.5,-338.5 parent: 2 - - uid: 10982 + - uid: 2646 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10983 + - uid: 2647 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 10984 + - uid: 2648 components: - type: Transform pos: -3.5,-345.5 parent: 2 - - uid: 10985 + - uid: 2649 components: - type: Transform pos: -3.5,-344.5 parent: 2 - - uid: 10986 + - uid: 2650 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10987 + - uid: 2651 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10988 + - uid: 2652 components: - type: Transform pos: -2.5,-345.5 parent: 2 - - uid: 10989 + - uid: 2653 components: - type: Transform pos: 4.5,-347.5 parent: 2 - - uid: 10990 + - uid: 2654 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10991 + - uid: 2655 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 11004 + - uid: 2656 components: - type: Transform pos: -4.5,-326.5 parent: 2 - - uid: 11005 + - uid: 2657 components: - type: Transform pos: -4.5,-327.5 parent: 2 - - uid: 11008 + - uid: 2658 components: - type: Transform pos: 3.5,-340.5 parent: 2 - - uid: 11009 + - uid: 2659 components: - type: Transform pos: 2.5,-340.5 parent: 2 - - uid: 11010 + - uid: 2660 components: - type: Transform pos: -4.5,-339.5 parent: 2 - - uid: 11011 + - uid: 2661 components: - type: Transform pos: -4.5,-340.5 parent: 2 - - uid: 11012 + - uid: 2662 components: - type: Transform pos: -4.5,-341.5 parent: 2 - - uid: 11013 + - uid: 2663 components: - type: Transform pos: -4.5,-342.5 parent: 2 - - uid: 11015 + - uid: 2664 components: - type: Transform pos: -3.5,-338.5 parent: 2 - - uid: 11016 + - uid: 2665 components: - type: Transform pos: -2.5,-338.5 parent: 2 - - uid: 11017 + - uid: 2666 components: - type: Transform pos: -1.5,-338.5 parent: 2 - - uid: 11018 + - uid: 2667 components: - type: Transform pos: -0.5,-338.5 parent: 2 - - uid: 11019 + - uid: 2668 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 11020 + - uid: 2669 components: - type: Transform pos: -3.5,-341.5 parent: 2 - - uid: 11021 + - uid: 2670 components: - type: Transform pos: -2.5,-341.5 parent: 2 - - uid: 11022 + - uid: 2671 components: - type: Transform pos: -1.5,-341.5 parent: 2 - - uid: 11023 + - uid: 2672 components: - type: Transform pos: -0.5,-341.5 parent: 2 - - uid: 11024 + - uid: 2673 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 11025 + - uid: 2674 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 11026 + - uid: 2675 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 11027 + - uid: 2676 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 11028 + - uid: 2677 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 11029 + - uid: 2678 components: - type: Transform pos: 0.5,-346.5 parent: 2 - - uid: 11030 + - uid: 2679 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 11031 + - uid: 2680 components: - type: Transform pos: 0.5,-348.5 parent: 2 - - uid: 11032 + - uid: 2681 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 11033 + - uid: 2682 components: - type: Transform pos: 1.5,-348.5 parent: 2 - - uid: 11034 + - uid: 2683 components: - type: Transform pos: 2.5,-348.5 parent: 2 - - uid: 11035 + - uid: 2684 components: - type: Transform pos: -0.5,-348.5 parent: 2 - - uid: 11036 + - uid: 2685 components: - type: Transform pos: -1.5,-348.5 parent: 2 - - uid: 11037 + - uid: 2686 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 11038 + - uid: 2687 components: - type: Transform pos: -0.5,-337.5 parent: 2 - - uid: 11039 + - uid: 2688 components: - type: Transform pos: -0.5,-336.5 parent: 2 - - uid: 11040 + - uid: 2689 components: - type: Transform pos: -0.5,-335.5 parent: 2 - - uid: 11041 + - uid: 2690 components: - type: Transform pos: -0.5,-334.5 parent: 2 - - uid: 11042 + - uid: 2691 components: - type: Transform pos: -5.5,-341.5 parent: 2 - - uid: 11111 + - uid: 2692 components: - type: Transform pos: 7.5,-338.5 parent: 2 - - uid: 11547 + - uid: 2693 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 11553 + - uid: 2694 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 11555 + - uid: 2695 components: - type: Transform pos: 2.5,-354.5 parent: 2 - - uid: 11556 + - uid: 2696 components: - type: Transform pos: 0.5,-355.5 parent: 2 - - uid: 11558 + - uid: 2697 components: - type: Transform pos: 0.5,-354.5 parent: 2 - - uid: 11560 + - uid: 2698 components: - type: Transform pos: 1.5,-354.5 parent: 2 - - uid: 11561 + - uid: 2699 components: - type: Transform pos: -0.5,-354.5 parent: 2 - - uid: 11562 + - uid: 2700 components: - type: Transform pos: -1.5,-354.5 parent: 2 - - uid: 11564 + - uid: 2701 components: - type: Transform pos: 0.5,-356.5 parent: 2 - - uid: 11565 + - uid: 2702 components: - type: Transform pos: 0.5,-357.5 parent: 2 - - uid: 11566 + - uid: 2703 components: - type: Transform pos: 0.5,-358.5 parent: 2 - - uid: 11567 + - uid: 2704 components: - type: Transform pos: 0.5,-359.5 parent: 2 - - uid: 11568 + - uid: 2705 components: - type: Transform pos: 0.5,-360.5 parent: 2 - - uid: 11569 + - uid: 2706 components: - type: Transform pos: 0.5,-361.5 parent: 2 - - uid: 11570 + - uid: 2707 components: - type: Transform pos: 1.5,-361.5 parent: 2 - - uid: 11571 + - uid: 2708 components: - type: Transform pos: -0.5,-357.5 parent: 2 - - uid: 11572 + - uid: 2709 components: - type: Transform pos: -1.5,-357.5 parent: 2 - - uid: 11573 + - uid: 2710 components: - type: Transform pos: -2.5,-357.5 parent: 2 - - uid: 11574 + - uid: 2711 components: - type: Transform pos: -3.5,-357.5 parent: 2 - - uid: 11575 + - uid: 2712 components: - type: Transform pos: -4.5,-357.5 parent: 2 - - uid: 11576 + - uid: 2713 components: - type: Transform pos: -5.5,-357.5 parent: 2 - - uid: 11577 + - uid: 2714 components: - type: Transform pos: -6.5,-357.5 parent: 2 - - uid: 11578 + - uid: 2715 components: - type: Transform pos: -4.5,-356.5 parent: 2 - - uid: 11579 + - uid: 2716 components: - type: Transform pos: -4.5,-355.5 parent: 2 - - uid: 11580 + - uid: 2717 components: - type: Transform pos: -4.5,-358.5 parent: 2 - - uid: 11581 + - uid: 2718 components: - type: Transform pos: 1.5,-357.5 parent: 2 - - uid: 11582 + - uid: 2719 components: - type: Transform pos: 2.5,-357.5 parent: 2 - - uid: 11583 + - uid: 2720 components: - type: Transform pos: 3.5,-357.5 parent: 2 - - uid: 11584 + - uid: 2721 components: - type: Transform pos: 4.5,-357.5 parent: 2 - - uid: 11585 + - uid: 2722 components: - type: Transform pos: 5.5,-357.5 parent: 2 - - uid: 11586 + - uid: 2723 components: - type: Transform pos: 6.5,-357.5 parent: 2 - - uid: 11587 + - uid: 2724 components: - type: Transform pos: 7.5,-357.5 parent: 2 - - uid: 11588 + - uid: 2725 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11590 + - uid: 2726 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11591 + - uid: 2727 components: - type: Transform pos: 2.5,-359.5 parent: 2 - - uid: 11592 + - uid: 2728 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11593 + - uid: 2729 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11594 + - uid: 2730 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11595 + - uid: 2731 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11596 + - uid: 2732 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11597 + - uid: 2733 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 11598 + - uid: 2734 components: - type: Transform pos: 3.5,-361.5 parent: 2 - - uid: 11599 + - uid: 2735 components: - type: Transform pos: 3.5,-362.5 parent: 2 - - uid: 11600 + - uid: 2736 components: - type: Transform pos: 3.5,-363.5 parent: 2 - - uid: 11601 + - uid: 2737 components: - type: Transform pos: 3.5,-364.5 parent: 2 - - uid: 11602 + - uid: 2738 components: - type: Transform pos: 3.5,-365.5 parent: 2 - - uid: 11603 + - uid: 2739 components: - type: Transform pos: 3.5,-366.5 parent: 2 - - uid: 11604 + - uid: 2740 components: - type: Transform pos: -0.5,-359.5 parent: 2 - - uid: 11605 + - uid: 2741 components: - type: Transform pos: -1.5,-359.5 parent: 2 - - uid: 11606 + - uid: 2742 components: - type: Transform pos: -1.5,-360.5 parent: 2 - - uid: 11607 + - uid: 2743 components: - type: Transform pos: -2.5,-360.5 parent: 2 - - uid: 11608 + - uid: 2744 components: - type: Transform pos: -2.5,-361.5 parent: 2 - - uid: 11609 + - uid: 2745 components: - type: Transform pos: -2.5,-362.5 parent: 2 - - uid: 11610 + - uid: 2746 components: - type: Transform pos: -2.5,-363.5 parent: 2 - - uid: 11611 + - uid: 2747 components: - type: Transform pos: -2.5,-364.5 parent: 2 - - uid: 11612 + - uid: 2748 components: - type: Transform pos: -2.5,-365.5 parent: 2 - - uid: 11613 + - uid: 2749 components: - type: Transform pos: -2.5,-366.5 parent: 2 - - uid: 11614 + - uid: 2750 components: - type: Transform pos: -3.5,-360.5 parent: 2 - - uid: 11615 + - uid: 2751 components: - type: Transform pos: -4.5,-360.5 parent: 2 - - uid: 11616 + - uid: 2752 components: - type: Transform pos: -5.5,-360.5 parent: 2 - - uid: 11617 + - uid: 2753 components: - type: Transform pos: -3.5,-363.5 parent: 2 - - uid: 11618 + - uid: 2754 components: - type: Transform pos: -4.5,-363.5 parent: 2 - - uid: 11619 + - uid: 2755 components: - type: Transform pos: -5.5,-363.5 parent: 2 - - uid: 11620 + - uid: 2756 components: - type: Transform pos: -3.5,-366.5 parent: 2 - - uid: 11621 + - uid: 2757 components: - type: Transform pos: -4.5,-366.5 parent: 2 - - uid: 11622 + - uid: 2758 components: - type: Transform pos: -5.5,-366.5 parent: 2 - - uid: 11623 + - uid: 2759 components: - type: Transform pos: -3.5,-367.5 parent: 2 - - uid: 11624 + - uid: 2760 components: - type: Transform pos: -3.5,-368.5 parent: 2 - - uid: 11625 + - uid: 2761 components: - type: Transform pos: -3.5,-369.5 parent: 2 - - uid: 11626 + - uid: 2762 components: - type: Transform pos: -3.5,-370.5 parent: 2 - - uid: 11627 + - uid: 2763 components: - type: Transform pos: -3.5,-371.5 parent: 2 - - uid: 11628 + - uid: 2764 components: - type: Transform pos: -3.5,-372.5 parent: 2 - - uid: 11629 + - uid: 2765 components: - type: Transform pos: 4.5,-367.5 parent: 2 - - uid: 11630 + - uid: 2766 components: - type: Transform pos: 4.5,-368.5 parent: 2 - - uid: 11631 + - uid: 2767 components: - type: Transform pos: 4.5,-369.5 parent: 2 - - uid: 11632 + - uid: 2768 components: - type: Transform pos: 4.5,-370.5 parent: 2 - - uid: 11633 + - uid: 2769 components: - type: Transform pos: 4.5,-371.5 parent: 2 - - uid: 11634 + - uid: 2770 components: - type: Transform pos: 4.5,-372.5 parent: 2 - - uid: 11635 + - uid: 2771 components: - type: Transform pos: 4.5,-366.5 parent: 2 - - uid: 11636 + - uid: 2772 components: - type: Transform pos: 5.5,-366.5 parent: 2 - - uid: 11638 + - uid: 2773 components: - type: Transform pos: 6.5,-366.5 parent: 2 - - uid: 11639 + - uid: 2774 components: - type: Transform pos: 7.5,-366.5 parent: 2 - - uid: 11640 + - uid: 2775 components: - type: Transform pos: 4.5,-363.5 parent: 2 - - uid: 11641 + - uid: 2776 components: - type: Transform pos: 5.5,-363.5 parent: 2 - - uid: 11642 + - uid: 2777 components: - type: Transform pos: 6.5,-363.5 parent: 2 - - uid: 11643 + - uid: 2778 components: - type: Transform pos: 7.5,-363.5 parent: 2 - - uid: 11644 + - uid: 2779 components: - type: Transform pos: -6.5,-363.5 parent: 2 - - uid: 11645 + - uid: 2780 components: - type: Transform pos: -6.5,-366.5 parent: 2 - - uid: 11647 + - uid: 2781 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11648 + - uid: 2782 components: - type: Transform pos: -4.5,-360.5 parent: 2 - - uid: 11650 + - uid: 2783 components: - type: Transform pos: 5.5,-371.5 parent: 2 - - uid: 11651 + - uid: 2784 components: - type: Transform pos: 6.5,-371.5 parent: 2 - - uid: 11652 + - uid: 2785 components: - type: Transform pos: 4.5,-373.5 parent: 2 - - uid: 11654 + - uid: 2786 components: - type: Transform pos: 3.5,-371.5 parent: 2 - - uid: 11655 + - uid: 2787 components: - type: Transform pos: 2.5,-371.5 parent: 2 - - uid: 11656 + - uid: 2788 components: - type: Transform pos: 1.5,-371.5 parent: 2 - - uid: 11657 + - uid: 2789 components: - type: Transform pos: -2.5,-371.5 parent: 2 - - uid: 11658 + - uid: 2790 components: - type: Transform pos: -4.5,-371.5 parent: 2 - - uid: 11659 + - uid: 2791 components: - type: Transform pos: -3.5,-373.5 parent: 2 - - uid: 11660 + - uid: 2792 components: - type: Transform pos: -5.5,-371.5 parent: 2 - - uid: 11662 + - uid: 2793 components: - type: Transform pos: -1.5,-371.5 parent: 2 - - uid: 11663 + - uid: 2794 components: - type: Transform pos: -0.5,-371.5 parent: 2 - - uid: 11664 + - uid: 2795 components: - type: Transform pos: 1.5,-372.5 parent: 2 - - uid: 11665 + - uid: 2796 components: - type: Transform pos: 1.5,-373.5 parent: 2 - - uid: 11666 + - uid: 2797 components: - type: Transform pos: 1.5,-370.5 parent: 2 - - uid: 11667 + - uid: 2798 components: - type: Transform pos: -0.5,-370.5 parent: 2 - - uid: 11668 + - uid: 2799 components: - type: Transform pos: -0.5,-372.5 parent: 2 - - uid: 11669 + - uid: 2800 components: - type: Transform pos: -0.5,-373.5 parent: 2 - - uid: 11678 + - uid: 2801 components: - type: Transform pos: 0.5,-363.5 parent: 2 - - uid: 11679 + - uid: 2802 components: - type: Transform pos: 0.5,-364.5 parent: 2 - - uid: 11680 + - uid: 2803 components: - type: Transform pos: 0.5,-365.5 parent: 2 - - uid: 11681 + - uid: 2804 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 11682 + - uid: 2805 components: - type: Transform pos: 0.5,-367.5 parent: 2 - - uid: 11683 + - uid: 2806 components: - type: Transform pos: 0.5,-368.5 parent: 2 - - uid: 11951 + - uid: 2807 components: - type: Transform pos: 7.5,-344.5 parent: 2 - - uid: 12025 + - uid: 2808 components: - type: Transform pos: 4.5,-336.5 parent: 2 - - uid: 12058 + - uid: 2809 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 12061 + - uid: 2810 components: - type: Transform pos: -2.5,-314.5 parent: 2 - - uid: 12065 + - uid: 2811 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 12066 + - uid: 2812 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 12092 + - uid: 2813 components: - type: Transform pos: 5.5,-342.5 parent: 2 - - uid: 12106 + - uid: 2814 components: - type: Transform pos: 5.5,-341.5 parent: 2 - - uid: 12112 + - uid: 2815 components: - type: Transform pos: 7.5,-336.5 parent: 2 - - uid: 12167 + - uid: 2816 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 12332 + - uid: 2817 components: - type: Transform pos: 16.5,-252.5 parent: 2 - - uid: 12471 + - uid: 2818 components: - type: Transform pos: 16.5,-251.5 parent: 2 - - uid: 12495 + - uid: 2819 components: - type: Transform pos: 16.5,-253.5 parent: 2 - - uid: 13215 + - uid: 2820 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: 0.5,-297.5 + parent: 2 + - uid: 2822 components: - type: Transform pos: 19.5,-245.5 parent: 2 - - uid: 13274 + - uid: 2823 components: - type: Transform pos: 16.5,-249.5 parent: 2 - - uid: 13283 + - uid: 2824 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 13284 + - uid: 2825 components: - type: Transform pos: 16.5,-248.5 parent: 2 - - uid: 13285 + - uid: 2826 components: - type: Transform pos: 18.5,-244.5 parent: 2 - - uid: 13302 + - uid: 2827 components: - type: Transform pos: -7.5,-308.5 parent: 2 - - uid: 13436 + - uid: 2828 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 13437 + - uid: 2829 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 13438 + - uid: 2830 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 13439 + - uid: 2831 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 13440 + - uid: 2832 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 13441 + - uid: 2833 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 13442 + - uid: 2834 components: - type: Transform pos: 5.5,-134.5 parent: 2 - - uid: 14005 + - uid: 2835 components: - type: Transform pos: -6.5,-164.5 parent: 2 - - uid: 14015 + - uid: 2836 components: - type: Transform pos: 7.5,-254.5 parent: 2 - - uid: 14016 + - uid: 2837 components: - type: Transform pos: 19.5,-255.5 parent: 2 - - uid: 14017 + - uid: 2838 components: - type: Transform pos: 15.5,-256.5 parent: 2 - - uid: 14514 + - uid: 2839 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14515 + - uid: 2840 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 14516 + - uid: 2841 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 14517 + - uid: 2842 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 14518 + - uid: 2843 components: - type: Transform pos: 15.5,-83.5 parent: 2 - - uid: 14519 + - uid: 2844 components: - type: Transform pos: 15.5,-82.5 parent: 2 - - uid: 14520 + - uid: 2845 components: - type: Transform pos: 15.5,-81.5 parent: 2 - - uid: 14521 + - uid: 2846 components: - type: Transform pos: 15.5,-80.5 parent: 2 - - uid: 14522 + - uid: 2847 components: - type: Transform pos: 15.5,-79.5 parent: 2 - - uid: 14523 + - uid: 2848 components: - type: Transform pos: 15.5,-78.5 parent: 2 - - uid: 14524 + - uid: 2849 components: - type: Transform pos: 15.5,-77.5 parent: 2 - - uid: 14525 + - uid: 2850 components: - type: Transform pos: 15.5,-76.5 parent: 2 - - uid: 14526 + - uid: 2851 components: - type: Transform pos: 15.5,-75.5 parent: 2 - - uid: 14527 + - uid: 2852 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 14528 + - uid: 2853 components: - type: Transform pos: 15.5,-73.5 parent: 2 - - uid: 14529 + - uid: 2854 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 14530 + - uid: 2855 components: - type: Transform pos: 15.5,-71.5 parent: 2 - - uid: 14531 + - uid: 2856 components: - type: Transform pos: 15.5,-70.5 parent: 2 - - uid: 14532 + - uid: 2857 components: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 14533 + - uid: 2858 components: - type: Transform pos: 15.5,-68.5 parent: 2 - - uid: 14534 + - uid: 2859 components: - type: Transform pos: 15.5,-67.5 parent: 2 - - uid: 14535 + - uid: 2860 components: - type: Transform pos: 15.5,-66.5 parent: 2 - - uid: 14536 + - uid: 2861 components: - type: Transform pos: 15.5,-65.5 parent: 2 - - uid: 14537 + - uid: 2862 components: - type: Transform pos: 15.5,-64.5 parent: 2 - - uid: 14538 + - uid: 2863 components: - type: Transform pos: 15.5,-63.5 parent: 2 - - uid: 14539 + - uid: 2864 components: - type: Transform pos: 15.5,-62.5 parent: 2 - - uid: 14540 + - uid: 2865 components: - type: Transform pos: 15.5,-61.5 parent: 2 - - uid: 14541 + - uid: 2866 components: - type: Transform pos: 15.5,-60.5 parent: 2 - - uid: 14542 + - uid: 2867 components: - type: Transform pos: 14.5,-61.5 parent: 2 - - uid: 14543 + - uid: 2868 components: - type: Transform pos: 13.5,-61.5 parent: 2 - - uid: 14544 + - uid: 2869 components: - type: Transform pos: 16.5,-61.5 parent: 2 - - uid: 14545 + - uid: 2870 components: - type: Transform pos: 17.5,-61.5 parent: 2 - - uid: 14546 + - uid: 2871 components: - type: Transform pos: 14.5,-69.5 parent: 2 - - uid: 14547 + - uid: 2872 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 14548 + - uid: 2873 components: - type: Transform pos: 16.5,-69.5 parent: 2 - - uid: 14549 + - uid: 2874 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14550 + - uid: 2875 components: - type: Transform pos: 16.5,-73.5 parent: 2 - - uid: 14551 + - uid: 2876 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14552 + - uid: 2877 components: - type: Transform pos: 14.5,-73.5 parent: 2 - - uid: 14553 + - uid: 2878 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14555 + - uid: 2879 components: - type: Transform pos: 14.5,-81.5 parent: 2 - - uid: 14556 + - uid: 2880 components: - type: Transform pos: 13.5,-81.5 parent: 2 - - uid: 14557 + - uid: 2881 components: - type: Transform pos: 16.5,-81.5 parent: 2 - - uid: 14558 + - uid: 2882 components: - type: Transform pos: 17.5,-81.5 parent: 2 - - uid: 14559 + - uid: 2883 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 14560 + - uid: 2884 components: - type: Transform pos: 11.5,-81.5 parent: 2 - - uid: 14561 + - uid: 2885 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 14562 + - uid: 2886 components: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 14574 + - uid: 2887 components: - type: Transform pos: -4.5,-104.5 parent: 2 - - uid: 14623 + - uid: 2888 components: - type: Transform pos: -4.5,-325.5 parent: 2 - - uid: 14650 + - uid: 2889 components: - type: Transform pos: 4.5,-247.5 parent: 2 - - uid: 14663 + - uid: 2890 components: - type: Transform pos: -3.5,-247.5 parent: 2 - - uid: 14664 + - uid: 2891 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 14665 + - uid: 2892 components: - type: Transform pos: -1.5,-247.5 parent: 2 - - uid: 14666 + - uid: 2893 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 14667 + - uid: 2894 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 14668 + - uid: 2895 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 14669 + - uid: 2896 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 14670 + - uid: 2897 components: - type: Transform pos: 0.5,-246.5 parent: 2 - - uid: 14671 + - uid: 2898 components: - type: Transform pos: 0.5,-245.5 parent: 2 - - uid: 14672 + - uid: 2899 components: - type: Transform pos: 0.5,-244.5 parent: 2 - - uid: 14673 + - uid: 2900 components: - type: Transform pos: 0.5,-243.5 parent: 2 - - uid: 14674 + - uid: 2901 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 14675 + - uid: 2902 components: - type: Transform pos: 1.5,-243.5 parent: 2 - - uid: 14676 + - uid: 2903 components: - type: Transform pos: -1.5,-243.5 parent: 2 - - uid: 14677 + - uid: 2904 components: - type: Transform pos: -2.5,-243.5 parent: 2 - - uid: 14678 + - uid: 2905 components: - type: Transform pos: -3.5,-243.5 parent: 2 - - uid: 14679 + - uid: 2906 components: - type: Transform pos: -4.5,-243.5 parent: 2 - - uid: 14684 + - uid: 2907 components: - type: Transform pos: -16.5,-255.5 parent: 2 - - uid: 14692 + - uid: 2908 components: - type: Transform pos: -6.5,-252.5 parent: 2 - - uid: 14693 + - uid: 2909 components: - type: Transform pos: -6.5,-253.5 parent: 2 - - uid: 14694 + - uid: 2910 components: - type: Transform pos: -6.5,-254.5 parent: 2 - - uid: 14695 + - uid: 2911 components: - type: Transform pos: -6.5,-255.5 parent: 2 - - uid: 14696 + - uid: 2912 components: - type: Transform pos: -6.5,-256.5 parent: 2 - - uid: 14697 + - uid: 2913 components: - type: Transform pos: -6.5,-257.5 parent: 2 - - uid: 14698 + - uid: 2914 components: - type: Transform pos: -0.5,-248.5 parent: 2 - - uid: 14699 + - uid: 2915 components: - type: Transform pos: -0.5,-249.5 parent: 2 - - uid: 14700 + - uid: 2916 components: - type: Transform pos: -0.5,-250.5 parent: 2 - - uid: 14701 + - uid: 2917 components: - type: Transform pos: -0.5,-251.5 parent: 2 - - uid: 14702 + - uid: 2918 components: - type: Transform pos: -0.5,-252.5 parent: 2 - - uid: 14703 + - uid: 2919 components: - type: Transform pos: -0.5,-253.5 parent: 2 - - uid: 14704 + - uid: 2920 components: - type: Transform pos: -0.5,-254.5 parent: 2 - - uid: 14705 + - uid: 2921 components: - type: Transform pos: -0.5,-255.5 parent: 2 - - uid: 14706 + - uid: 2922 components: - type: Transform pos: -0.5,-256.5 parent: 2 - - uid: 14707 + - uid: 2923 components: - type: Transform pos: -0.5,-257.5 parent: 2 - - uid: 14708 + - uid: 2924 components: - type: Transform pos: -0.5,-258.5 parent: 2 - - uid: 14709 + - uid: 2925 components: - type: Transform pos: -0.5,-259.5 parent: 2 - - uid: 14710 + - uid: 2926 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 14711 + - uid: 2927 components: - type: Transform pos: 0.5,-260.5 parent: 2 - - uid: 14712 + - uid: 2928 components: - type: Transform pos: 1.5,-260.5 parent: 2 - - uid: 14713 + - uid: 2929 components: - type: Transform pos: -1.5,-260.5 parent: 2 - - uid: 14714 + - uid: 2930 components: - type: Transform pos: -2.5,-260.5 parent: 2 - - uid: 14715 + - uid: 2931 components: - type: Transform pos: -3.5,-260.5 parent: 2 - - uid: 14716 + - uid: 2932 components: - type: Transform pos: -4.5,-260.5 parent: 2 - - uid: 14717 + - uid: 2933 components: - type: Transform pos: -4.5,-261.5 parent: 2 - - uid: 14718 + - uid: 2934 components: - type: Transform pos: 0.5,-256.5 parent: 2 - - uid: 14720 + - uid: 2935 components: - type: Transform pos: -2.5,-190.5 parent: 2 - - uid: 14721 + - uid: 2936 components: - type: Transform pos: -3.5,-190.5 parent: 2 - - uid: 14722 + - uid: 2937 components: - type: Transform pos: -4.5,-190.5 parent: 2 - - uid: 14723 + - uid: 2938 components: - type: Transform pos: -5.5,-190.5 parent: 2 - - uid: 14724 + - uid: 2939 components: - type: Transform pos: -6.5,-190.5 parent: 2 - - uid: 14725 + - uid: 2940 components: - type: Transform pos: -7.5,-190.5 parent: 2 - - uid: 14763 + - uid: 2941 components: - type: Transform pos: -4.5,-26.5 parent: 2 - - uid: 14764 + - uid: 2942 components: - type: Transform pos: -4.5,-31.5 parent: 2 - - uid: 14802 + - uid: 2943 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 14906 + - uid: 2944 components: - type: Transform pos: -9.5,-132.5 parent: 2 - - uid: 14907 + - uid: 2945 components: - type: Transform pos: -10.5,-132.5 parent: 2 - - uid: 14930 + - uid: 2946 components: - type: Transform pos: -10.5,-133.5 parent: 2 - - uid: 14947 + - uid: 2947 components: - type: Transform pos: -10.5,-134.5 parent: 2 - - uid: 14951 + - uid: 2948 components: - type: Transform pos: -3.5,-133.5 parent: 2 - - uid: 14952 + - uid: 2949 components: - type: Transform pos: -4.5,-133.5 parent: 2 - - uid: 14953 + - uid: 2950 components: - type: Transform pos: -4.5,-132.5 parent: 2 - - uid: 14954 + - uid: 2951 components: - type: Transform pos: -5.5,-132.5 parent: 2 - - uid: 14955 + - uid: 2952 components: - type: Transform pos: -6.5,-132.5 parent: 2 - - uid: 14956 + - uid: 2953 components: - type: Transform pos: -7.5,-132.5 parent: 2 - - uid: 14957 + - uid: 2954 components: - type: Transform pos: -7.5,-133.5 parent: 2 - - uid: 14958 + - uid: 2955 components: - type: Transform pos: -7.5,-134.5 parent: 2 - - uid: 14959 + - uid: 2956 components: - type: Transform pos: -7.5,-135.5 parent: 2 - - uid: 14960 + - uid: 2957 components: - type: Transform pos: -7.5,-136.5 parent: 2 - - uid: 14961 + - uid: 2958 components: - type: Transform pos: -8.5,-137.5 parent: 2 - - uid: 14962 + - uid: 2959 components: - type: Transform pos: -8.5,-136.5 parent: 2 - - uid: 14963 + - uid: 2960 components: - type: Transform pos: -8.5,-138.5 parent: 2 - - uid: 14964 + - uid: 2961 components: - type: Transform pos: -8.5,-139.5 parent: 2 - - uid: 14965 + - uid: 2962 components: - type: Transform pos: -8.5,-140.5 parent: 2 - - uid: 14966 + - uid: 2963 components: - type: Transform pos: -8.5,-141.5 parent: 2 - - uid: 14967 + - uid: 2964 components: - type: Transform pos: -8.5,-142.5 parent: 2 - - uid: 14968 + - uid: 2965 components: - type: Transform pos: -8.5,-143.5 parent: 2 - - uid: 14969 + - uid: 2966 components: - type: Transform pos: -8.5,-144.5 parent: 2 - - uid: 14970 + - uid: 2967 components: - type: Transform pos: -8.5,-145.5 parent: 2 - - uid: 14971 + - uid: 2968 components: - type: Transform pos: -8.5,-146.5 parent: 2 - - uid: 14972 + - uid: 2969 components: - type: Transform pos: -8.5,-147.5 parent: 2 - - uid: 14973 + - uid: 2970 components: - type: Transform pos: -8.5,-148.5 parent: 2 - - uid: 14974 + - uid: 2971 components: - type: Transform pos: -8.5,-149.5 parent: 2 - - uid: 14975 + - uid: 2972 components: - type: Transform pos: -8.5,-150.5 parent: 2 - - uid: 14976 + - uid: 2973 components: - type: Transform pos: -8.5,-151.5 parent: 2 - - uid: 14991 + - uid: 2974 components: - type: Transform pos: -4.5,-157.5 parent: 2 - - uid: 14993 + - uid: 2975 components: - type: Transform pos: -8.5,-152.5 parent: 2 - - uid: 14994 + - uid: 2976 components: - type: Transform pos: -8.5,-153.5 parent: 2 - - uid: 14995 + - uid: 2977 components: - type: Transform pos: -8.5,-154.5 parent: 2 - - uid: 14996 + - uid: 2978 components: - type: Transform pos: -7.5,-154.5 parent: 2 - - uid: 14997 + - uid: 2979 components: - type: Transform pos: -6.5,-154.5 parent: 2 - - uid: 14998 + - uid: 2980 components: - type: Transform pos: -4.5,-155.5 parent: 2 - - uid: 14999 + - uid: 2981 components: - type: Transform pos: -4.5,-156.5 parent: 2 - - uid: 15000 + - uid: 2982 components: - type: Transform pos: -4.5,-158.5 parent: 2 - - uid: 15001 + - uid: 2983 components: - type: Transform pos: -4.5,-131.5 parent: 2 - - uid: 15002 + - uid: 2984 components: - type: Transform pos: 5.5,-126.5 parent: 2 - - uid: 15003 + - uid: 2985 components: - type: Transform pos: 5.5,-127.5 parent: 2 - - uid: 15004 + - uid: 2986 components: - type: Transform pos: 5.5,-128.5 parent: 2 - - uid: 15005 + - uid: 2987 components: - type: Transform pos: 5.5,-129.5 parent: 2 - - uid: 15006 + - uid: 2988 components: - type: Transform pos: -4.5,-100.5 parent: 2 - - uid: 15007 + - uid: 2989 components: - type: Transform pos: -4.5,-101.5 parent: 2 - - uid: 15008 + - uid: 2990 components: - type: Transform pos: -4.5,-102.5 parent: 2 - - uid: 15009 + - uid: 2991 components: - type: Transform pos: 5.5,-98.5 parent: 2 - - uid: 15010 + - uid: 2992 components: - type: Transform pos: 5.5,-99.5 parent: 2 - - uid: 15011 + - uid: 2993 components: - type: Transform pos: 5.5,-100.5 parent: 2 - - uid: 15012 + - uid: 2994 components: - type: Transform pos: 5.5,-101.5 parent: 2 - - uid: 15013 + - uid: 2995 components: - type: Transform pos: 5.5,-102.5 parent: 2 - - uid: 15014 + - uid: 2996 components: - type: Transform pos: -4.5,-80.5 parent: 2 - - uid: 15015 + - uid: 2997 components: - type: Transform pos: -4.5,-79.5 parent: 2 - - uid: 15016 + - uid: 2998 components: - type: Transform pos: -4.5,-78.5 parent: 2 - - uid: 15017 + - uid: 2999 components: - type: Transform pos: -4.5,-77.5 parent: 2 - - uid: 15018 + - uid: 3000 components: - type: Transform pos: 5.5,-79.5 parent: 2 - - uid: 15019 + - uid: 3001 components: - type: Transform pos: 5.5,-78.5 parent: 2 - - uid: 15020 + - uid: 3002 components: - type: Transform pos: 5.5,-77.5 parent: 2 - - uid: 15021 + - uid: 3003 components: - type: Transform pos: 5.5,-46.5 parent: 2 - - uid: 15022 + - uid: 3004 components: - type: Transform pos: 5.5,-47.5 parent: 2 - - uid: 15023 + - uid: 3005 components: - type: Transform pos: 5.5,-48.5 parent: 2 - - uid: 15024 + - uid: 3006 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 15025 + - uid: 3007 components: - type: Transform pos: -4.5,-20.5 parent: 2 - - uid: 15026 + - uid: 3008 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 15027 + - uid: 3009 components: - type: Transform pos: -10.5,-135.5 parent: 2 - - uid: 15127 + - uid: 3010 components: - type: Transform pos: 5.5,-160.5 parent: 2 - - uid: 15128 + - uid: 3011 components: - type: Transform pos: 5.5,-159.5 parent: 2 - - uid: 15129 + - uid: 3012 components: - type: Transform pos: 5.5,-158.5 parent: 2 - - uid: 15130 + - uid: 3013 components: - type: Transform pos: 5.5,-157.5 parent: 2 - - uid: 15131 + - uid: 3014 components: - type: Transform pos: -4.5,-182.5 parent: 2 - - uid: 15132 + - uid: 3015 components: - type: Transform pos: -4.5,-183.5 parent: 2 - - uid: 15153 + - uid: 3016 components: - type: Transform pos: 8.5,-120.5 parent: 2 - - uid: 15154 + - uid: 3017 components: - type: Transform pos: 9.5,-120.5 parent: 2 - - uid: 15235 + - uid: 3018 components: - type: Transform pos: 5.5,-247.5 parent: 2 - - uid: 15257 + - uid: 3019 components: - type: Transform pos: 3.5,-245.5 parent: 2 - - uid: 15258 + - uid: 3020 components: - type: Transform pos: 3.5,-244.5 parent: 2 - - uid: 15259 + - uid: 3021 components: - type: Transform pos: 3.5,-246.5 parent: 2 - - uid: 15587 + - uid: 3022 components: - type: Transform pos: 5.5,-266.5 parent: 2 - - uid: 15588 + - uid: 3023 components: - type: Transform pos: 5.5,-262.5 parent: 2 - - uid: 15746 + - uid: 3024 components: - type: Transform pos: 5.5,-263.5 parent: 2 - - uid: 15747 + - uid: 3025 components: - type: Transform pos: 5.5,-264.5 parent: 2 - - uid: 16561 + - uid: 3026 components: - type: Transform pos: -16.5,-265.5 parent: 2 - - uid: 16642 + - uid: 3027 components: - type: Transform pos: -18.5,-265.5 parent: 2 - - uid: 16643 + - uid: 3028 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 16644 + - uid: 3029 components: - type: Transform pos: -19.5,-265.5 parent: 2 - - uid: 16645 + - uid: 3030 components: - type: Transform pos: -20.5,-265.5 parent: 2 - - uid: 16646 + - uid: 3031 components: - type: Transform pos: -21.5,-265.5 parent: 2 - - uid: 16647 + - uid: 3032 components: - type: Transform pos: -11.5,-248.5 parent: 2 - - uid: 16648 + - uid: 3033 components: - type: Transform pos: -16.5,-262.5 parent: 2 - - uid: 16649 + - uid: 3034 components: - type: Transform pos: -17.5,-265.5 parent: 2 - - uid: 16650 + - uid: 3035 components: - type: Transform pos: -16.5,-264.5 parent: 2 - - uid: 16651 + - uid: 3036 components: - type: Transform pos: -16.5,-263.5 parent: 2 - - uid: 16652 + - uid: 3037 components: - type: Transform pos: -16.5,-261.5 parent: 2 - - uid: 16653 + - uid: 3038 components: - type: Transform pos: -16.5,-260.5 parent: 2 - - uid: 16654 + - uid: 3039 components: - type: Transform pos: -16.5,-259.5 parent: 2 - - uid: 16656 + - uid: 3040 components: - type: Transform pos: -16.5,-258.5 parent: 2 - - uid: 16657 + - uid: 3041 components: - type: Transform pos: -16.5,-257.5 parent: 2 - - uid: 16658 + - uid: 3042 components: - type: Transform pos: -16.5,-256.5 parent: 2 - - uid: 16700 + - uid: 3043 components: - type: Transform pos: -16.5,-254.5 parent: 2 - - uid: 16701 + - uid: 3044 components: - type: Transform pos: -16.5,-253.5 parent: 2 - - uid: 16702 + - uid: 3045 components: - type: Transform pos: -16.5,-252.5 parent: 2 - - uid: 16703 + - uid: 3046 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 16704 + - uid: 3047 components: - type: Transform pos: -16.5,-251.5 parent: 2 - - uid: 16705 + - uid: 3048 components: - type: Transform pos: -19.5,-256.5 parent: 2 - - uid: 16709 + - uid: 3049 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 16711 + - uid: 3050 components: - type: Transform pos: -13.5,-248.5 parent: 2 - - uid: 16713 + - uid: 3051 components: - type: Transform pos: -14.5,-248.5 parent: 2 - - uid: 16714 + - uid: 3052 components: - type: Transform pos: -16.5,-247.5 parent: 2 - - uid: 16715 + - uid: 3053 components: - type: Transform pos: -16.5,-246.5 parent: 2 - - uid: 16717 + - uid: 3054 components: - type: Transform pos: -16.5,-245.5 parent: 2 - - uid: 16718 + - uid: 3055 components: - type: Transform pos: -16.5,-244.5 parent: 2 - - uid: 16722 + - uid: 3056 components: - type: Transform pos: -16.5,-243.5 parent: 2 - - uid: 16723 + - uid: 3057 components: - type: Transform pos: -15.5,-243.5 parent: 2 - - uid: 16724 + - uid: 3058 components: - type: Transform pos: -14.5,-243.5 parent: 2 - - uid: 16725 + - uid: 3059 components: - type: Transform pos: -13.5,-243.5 parent: 2 - - uid: 16741 + - uid: 3060 components: - type: Transform pos: 5.5,-52.5 parent: 2 - - uid: 16742 + - uid: 3061 components: - type: Transform pos: 5.5,-51.5 parent: 2 - - uid: 16743 + - uid: 3062 components: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 16810 + - uid: 3063 components: - type: Transform pos: 5.5,-134.5 parent: 2 - - uid: 16815 + - uid: 3064 components: - type: Transform pos: 5.5,-133.5 parent: 2 - - uid: 16816 + - uid: 3065 components: - type: Transform pos: 5.5,-132.5 parent: 2 - - uid: 16817 + - uid: 3066 components: - type: Transform pos: 5.5,-131.5 parent: 2 - - uid: 16972 + - uid: 3067 components: - type: Transform pos: -5.5,-260.5 parent: 2 - - uid: 16973 + - uid: 3068 components: - type: Transform pos: -6.5,-260.5 parent: 2 - - uid: 16974 + - uid: 3069 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 16975 + - uid: 3070 components: - type: Transform pos: -8.5,-260.5 parent: 2 - - uid: 16976 + - uid: 3071 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 16977 + - uid: 3072 components: - type: Transform pos: -10.5,-260.5 parent: 2 - - uid: 17040 + - uid: 3073 components: - type: Transform pos: -20.5,-256.5 parent: 2 - - uid: 17041 + - uid: 3074 components: - type: Transform pos: -21.5,-256.5 parent: 2 - - uid: 17042 + - uid: 3075 components: - type: Transform pos: -17.5,-263.5 parent: 2 - - uid: 17043 + - uid: 3076 components: - type: Transform pos: -18.5,-263.5 parent: 2 - - uid: 17044 + - uid: 3077 components: - type: Transform pos: -19.5,-263.5 parent: 2 - - uid: 17045 + - uid: 3078 components: - type: Transform pos: -20.5,-263.5 parent: 2 - - uid: 17046 + - uid: 3079 components: - type: Transform pos: -21.5,-263.5 parent: 2 - - uid: 17047 + - uid: 3080 components: - type: Transform pos: -18.5,-252.5 parent: 2 - - uid: 17048 + - uid: 3081 components: - type: Transform pos: -19.5,-252.5 parent: 2 - - uid: 17049 + - uid: 3082 components: - type: Transform pos: -20.5,-252.5 parent: 2 - - uid: 17050 + - uid: 3083 components: - type: Transform pos: -21.5,-252.5 parent: 2 - - uid: 17051 + - uid: 3084 components: - type: Transform pos: -10.5,-243.5 parent: 2 - - uid: 17052 + - uid: 3085 components: - type: Transform pos: -11.5,-243.5 parent: 2 - - uid: 17053 + - uid: 3086 components: - type: Transform pos: -10.5,-248.5 parent: 2 - - uid: 17054 + - uid: 3087 components: - type: Transform pos: -12.5,-248.5 parent: 2 - - uid: 17055 + - uid: 3088 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: CableApcStack entities: - - uid: 41 + - uid: 934 + components: + - type: Transform + parent: 932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3089 components: - type: Transform pos: 15.343878,-245.76967 parent: 2 - - uid: 6897 + - uid: 3090 components: - type: Transform pos: 15.528771,-245.82246 parent: 2 - - uid: 9972 + - uid: 3091 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.460135,-300.75027 parent: 2 - - uid: 11674 + - uid: 3092 components: - type: Transform pos: -2.2538567,-7.497039 parent: 2 - - uid: 12413 + - uid: 3093 components: - type: Transform pos: 5.5776806,-310.53137 parent: 2 - - uid: 14770 - components: - - type: Transform - parent: 14755 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: CableHV entities: - - uid: 90 + - uid: 3094 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 664 + - uid: 3095 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 773 + - uid: 3096 components: - type: Transform pos: -12.5,-251.5 parent: 2 - - uid: 845 + - uid: 3097 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 917 + - uid: 3098 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 1103 + - uid: 3099 components: - type: Transform pos: -12.5,-257.5 parent: 2 - - uid: 1334 + - uid: 3100 components: - type: Transform pos: -13.5,-251.5 parent: 2 - - uid: 1450 + - uid: 3101 components: - type: Transform pos: -15.5,-251.5 parent: 2 - - uid: 1451 + - uid: 3102 components: - type: Transform pos: -14.5,-251.5 parent: 2 - - uid: 1453 + - uid: 3103 components: - type: Transform pos: -11.5,-253.5 parent: 2 - - uid: 1633 + - uid: 3104 components: - type: Transform pos: -11.5,-251.5 parent: 2 - - uid: 2228 + - uid: 3105 components: - type: Transform pos: -3.5,-260.5 parent: 2 - - uid: 2255 + - uid: 3106 components: - type: Transform pos: -2.5,-260.5 parent: 2 - - uid: 2276 + - uid: 3107 components: - type: Transform pos: -1.5,-260.5 parent: 2 - - uid: 2279 + - uid: 3108 components: - type: Transform pos: -4.5,-260.5 parent: 2 - - uid: 2339 + - uid: 3109 components: - type: Transform pos: -5.5,-260.5 parent: 2 - - uid: 2340 + - uid: 3110 components: - type: Transform pos: -6.5,-260.5 parent: 2 - - uid: 2341 + - uid: 3111 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 2342 + - uid: 3112 components: - type: Transform pos: -8.5,-260.5 parent: 2 - - uid: 2343 + - uid: 3113 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 2344 + - uid: 3114 components: - type: Transform pos: -10.5,-260.5 parent: 2 - - uid: 2345 + - uid: 3115 components: - type: Transform pos: -13.5,-257.5 parent: 2 - - uid: 2346 + - uid: 3116 components: - type: Transform pos: -13.5,-258.5 parent: 2 - - uid: 2347 + - uid: 3117 components: - type: Transform pos: -13.5,-259.5 parent: 2 - - uid: 2348 + - uid: 3118 components: - type: Transform pos: -13.5,-260.5 parent: 2 - - uid: 2349 + - uid: 3119 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 2358 + - uid: 3120 components: - type: Transform pos: -11.5,-260.5 parent: 2 - - uid: 3010 + - uid: 3121 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 3087 + - uid: 3122 components: - type: Transform pos: -3.5,-112.5 parent: 2 - - uid: 4226 + - uid: 3123 components: - type: Transform pos: 5.5,-192.5 parent: 2 - - uid: 4264 + - uid: 3124 components: - type: Transform pos: -2.5,-220.5 parent: 2 - - uid: 4277 + - uid: 3125 components: - type: Transform pos: 0.5,-262.5 parent: 2 - - uid: 4335 + - uid: 3126 components: - type: Transform pos: 0.5,-77.5 parent: 2 - - uid: 4378 + - uid: 3127 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 4403 + - uid: 3128 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 4545 + - uid: 3129 components: - type: Transform pos: -3.5,-96.5 parent: 2 - - uid: 4546 + - uid: 3130 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 4552 + - uid: 3131 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 4553 + - uid: 3132 components: - type: Transform pos: 0.5,-98.5 parent: 2 - - uid: 4557 + - uid: 3133 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 4571 + - uid: 3134 components: - type: Transform pos: -6.5,-173.5 parent: 2 - - uid: 4582 + - uid: 3135 components: - type: Transform pos: -3.5,-123.5 parent: 2 - - uid: 4584 + - uid: 3136 components: - type: Transform pos: -3.5,-111.5 parent: 2 - - uid: 4586 + - uid: 3137 components: - type: Transform pos: -3.5,-122.5 parent: 2 - - uid: 4588 + - uid: 3138 components: - type: Transform pos: -3.5,-124.5 parent: 2 - - uid: 4595 + - uid: 3139 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 4608 + - uid: 3140 components: - type: Transform pos: 1.5,-189.5 parent: 2 - - uid: 4614 + - uid: 3141 components: - type: Transform pos: -6.5,-163.5 parent: 2 - - uid: 4617 + - uid: 3142 components: - type: Transform pos: -6.5,-164.5 parent: 2 - - uid: 4622 + - uid: 3143 components: - type: Transform pos: 0.5,-76.5 parent: 2 - - uid: 4623 + - uid: 3144 components: - type: Transform pos: 6.5,-65.5 parent: 2 - - uid: 4626 + - uid: 3145 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 4642 + - uid: 3146 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 4643 + - uid: 3147 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 4644 + - uid: 3148 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 4645 + - uid: 3149 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 4646 + - uid: 3150 components: - type: Transform pos: 0.5,-156.5 parent: 2 - - uid: 4648 + - uid: 3151 components: - type: Transform pos: -5.5,-179.5 parent: 2 - - uid: 4668 + - uid: 3152 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 4672 + - uid: 3153 components: - type: Transform pos: -6.5,-178.5 parent: 2 - - uid: 4673 + - uid: 3154 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 4674 + - uid: 3155 components: - type: Transform pos: -3.5,-118.5 parent: 2 - - uid: 4676 + - uid: 3156 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 4677 + - uid: 3157 components: - type: Transform pos: 0.5,-129.5 parent: 2 - - uid: 4678 + - uid: 3158 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 4679 + - uid: 3159 components: - type: Transform pos: 0.5,-124.5 parent: 2 - - uid: 4688 + - uid: 3160 components: - type: Transform pos: 5.5,-193.5 parent: 2 - - uid: 4696 + - uid: 3161 components: - type: Transform pos: 5.5,-151.5 parent: 2 - - uid: 4697 + - uid: 3162 components: - type: Transform pos: 6.5,-151.5 parent: 2 - - uid: 4698 + - uid: 3163 components: - type: Transform pos: 5.5,-152.5 parent: 2 - - uid: 4699 + - uid: 3164 components: - type: Transform pos: -3.5,-121.5 parent: 2 - - uid: 4700 + - uid: 3165 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 4701 + - uid: 3166 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 4702 + - uid: 3167 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 4703 + - uid: 3168 components: - type: Transform pos: -3.5,-113.5 parent: 2 - - uid: 4704 + - uid: 3169 components: - type: Transform pos: -3.5,-114.5 parent: 2 - - uid: 4705 + - uid: 3170 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 4706 + - uid: 3171 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 4707 + - uid: 3172 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 4711 + - uid: 3173 components: - type: Transform pos: -0.5,-110.5 parent: 2 - - uid: 4712 + - uid: 3174 components: - type: Transform pos: 1.5,-109.5 parent: 2 - - uid: 4713 + - uid: 3175 components: - type: Transform pos: -3.5,-115.5 parent: 2 - - uid: 4716 + - uid: 3176 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 4717 + - uid: 3177 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 4718 + - uid: 3178 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 4719 + - uid: 3179 components: - type: Transform pos: 2.5,-189.5 parent: 2 - - uid: 4720 + - uid: 3180 components: - type: Transform pos: -1.5,-81.5 parent: 2 - - uid: 4721 + - uid: 3181 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 4722 + - uid: 3182 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 4724 + - uid: 3183 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 4725 + - uid: 3184 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 4727 + - uid: 3185 components: - type: Transform pos: 4.5,-189.5 parent: 2 - - uid: 4729 + - uid: 3186 components: - type: Transform pos: 0.5,-207.5 parent: 2 - - uid: 4730 + - uid: 3187 components: - type: Transform pos: 0.5,-209.5 parent: 2 - - uid: 4732 + - uid: 3188 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 4734 + - uid: 3189 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 4736 + - uid: 3190 components: - type: Transform pos: -2.5,-81.5 parent: 2 - - uid: 4737 + - uid: 3191 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 4738 + - uid: 3192 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 4742 + - uid: 3193 components: - type: Transform pos: 0.5,-240.5 parent: 2 - - uid: 4757 + - uid: 3194 components: - type: Transform pos: -10.5,-229.5 parent: 2 - - uid: 4758 + - uid: 3195 components: - type: Transform pos: -10.5,-228.5 parent: 2 - - uid: 4759 + - uid: 3196 components: - type: Transform pos: -10.5,-227.5 parent: 2 - - uid: 4760 + - uid: 3197 components: - type: Transform pos: -10.5,-226.5 parent: 2 - - uid: 4761 + - uid: 3198 components: - type: Transform pos: -10.5,-225.5 parent: 2 - - uid: 4762 + - uid: 3199 components: - type: Transform pos: -10.5,-224.5 parent: 2 - - uid: 4763 + - uid: 3200 components: - type: Transform pos: -10.5,-223.5 parent: 2 - - uid: 4764 + - uid: 3201 components: - type: Transform pos: -10.5,-222.5 parent: 2 - - uid: 4765 + - uid: 3202 components: - type: Transform pos: -10.5,-221.5 parent: 2 - - uid: 4766 + - uid: 3203 components: - type: Transform pos: -10.5,-220.5 parent: 2 - - uid: 4767 + - uid: 3204 components: - type: Transform pos: 0.5,-101.5 parent: 2 - - uid: 4768 + - uid: 3205 components: - type: Transform pos: -9.5,-220.5 parent: 2 - - uid: 4769 + - uid: 3206 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 4770 + - uid: 3207 components: - type: Transform pos: -9.5,-219.5 parent: 2 - - uid: 4771 + - uid: 3208 components: - type: Transform pos: 0.5,-104.5 parent: 2 - - uid: 4772 + - uid: 3209 components: - type: Transform pos: -9.5,-218.5 parent: 2 - - uid: 4774 + - uid: 3210 components: - type: Transform pos: -9.5,-229.5 parent: 2 - - uid: 4775 + - uid: 3211 components: - type: Transform pos: -3.5,-120.5 parent: 2 - - uid: 4776 + - uid: 3212 components: - type: Transform pos: -9.5,-230.5 parent: 2 - - uid: 4777 + - uid: 3213 components: - type: Transform pos: -9.5,-231.5 parent: 2 - - uid: 4781 + - uid: 3214 components: - type: Transform pos: 10.5,-231.5 parent: 2 - - uid: 4782 + - uid: 3215 components: - type: Transform pos: 10.5,-230.5 parent: 2 - - uid: 4783 + - uid: 3216 components: - type: Transform pos: 10.5,-229.5 parent: 2 - - uid: 4787 + - uid: 3217 components: - type: Transform pos: 11.5,-229.5 parent: 2 - - uid: 4788 + - uid: 3218 components: - type: Transform pos: 11.5,-228.5 parent: 2 - - uid: 4789 + - uid: 3219 components: - type: Transform pos: 11.5,-227.5 parent: 2 - - uid: 4790 + - uid: 3220 components: - type: Transform pos: 11.5,-226.5 parent: 2 - - uid: 4791 + - uid: 3221 components: - type: Transform pos: 11.5,-225.5 parent: 2 - - uid: 4792 + - uid: 3222 components: - type: Transform pos: 11.5,-224.5 parent: 2 - - uid: 4793 + - uid: 3223 components: - type: Transform pos: 11.5,-223.5 parent: 2 - - uid: 4794 + - uid: 3224 components: - type: Transform pos: 11.5,-222.5 parent: 2 - - uid: 4795 + - uid: 3225 components: - type: Transform pos: 11.5,-221.5 parent: 2 - - uid: 4796 + - uid: 3226 components: - type: Transform pos: 11.5,-220.5 parent: 2 - - uid: 4798 + - uid: 3227 components: - type: Transform pos: 10.5,-220.5 parent: 2 - - uid: 4799 + - uid: 3228 components: - type: Transform pos: 10.5,-219.5 parent: 2 - - uid: 4801 + - uid: 3229 components: - type: Transform pos: 10.5,-218.5 parent: 2 - - uid: 4802 + - uid: 3230 components: - type: Transform pos: 5.5,-199.5 parent: 2 - - uid: 4803 + - uid: 3231 components: - type: Transform pos: 5.5,-201.5 parent: 2 - - uid: 4804 + - uid: 3232 components: - type: Transform pos: -3.5,-215.5 parent: 2 - - uid: 4805 + - uid: 3233 components: - type: Transform pos: -3.5,-216.5 parent: 2 - - uid: 4810 + - uid: 3234 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 4811 + - uid: 3235 components: - type: Transform pos: -3.5,-214.5 parent: 2 - - uid: 4813 + - uid: 3236 components: - type: Transform pos: -4.5,-215.5 parent: 2 - - uid: 4814 + - uid: 3237 components: - type: Transform pos: 4.5,-235.5 parent: 2 - - uid: 4815 + - uid: 3238 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 4816 + - uid: 3239 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 4820 + - uid: 3240 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4821 + - uid: 3241 components: - type: Transform pos: -3.5,-218.5 parent: 2 - - uid: 4822 + - uid: 3242 components: - type: Transform pos: -6.5,-216.5 parent: 2 - - uid: 4823 + - uid: 3243 components: - type: Transform pos: 0.5,-100.5 parent: 2 - - uid: 4824 + - uid: 3244 components: - type: Transform pos: -6.5,-217.5 parent: 2 - - uid: 4825 + - uid: 3245 components: - type: Transform pos: -7.5,-217.5 parent: 2 - - uid: 4826 + - uid: 3246 components: - type: Transform pos: -7.5,-218.5 parent: 2 - - uid: 4827 + - uid: 3247 components: - type: Transform pos: -7.5,-219.5 parent: 2 - - uid: 4828 + - uid: 3248 components: - type: Transform pos: -7.5,-220.5 parent: 2 - - uid: 4829 + - uid: 3249 components: - type: Transform pos: -7.5,-221.5 parent: 2 - - uid: 4830 + - uid: 3250 components: - type: Transform pos: -7.5,-222.5 parent: 2 - - uid: 4831 + - uid: 3251 components: - type: Transform pos: -7.5,-223.5 parent: 2 - - uid: 4832 + - uid: 3252 components: - type: Transform pos: -7.5,-224.5 parent: 2 - - uid: 4833 + - uid: 3253 components: - type: Transform pos: -7.5,-225.5 parent: 2 - - uid: 4834 + - uid: 3254 components: - type: Transform pos: -7.5,-226.5 parent: 2 - - uid: 4835 + - uid: 3255 components: - type: Transform pos: -7.5,-227.5 parent: 2 - - uid: 4836 + - uid: 3256 components: - type: Transform pos: -7.5,-228.5 parent: 2 - - uid: 4837 + - uid: 3257 components: - type: Transform pos: -7.5,-229.5 parent: 2 - - uid: 4838 + - uid: 3258 components: - type: Transform pos: -7.5,-230.5 parent: 2 - - uid: 4839 + - uid: 3259 components: - type: Transform pos: -7.5,-231.5 parent: 2 - - uid: 4840 + - uid: 3260 components: - type: Transform pos: -7.5,-232.5 parent: 2 - - uid: 4841 + - uid: 3261 components: - type: Transform pos: -6.5,-232.5 parent: 2 - - uid: 4842 + - uid: 3262 components: - type: Transform pos: -6.5,-233.5 parent: 2 - - uid: 4843 + - uid: 3263 components: - type: Transform pos: -6.5,-226.5 parent: 2 - - uid: 4844 + - uid: 3264 components: - type: Transform pos: -8.5,-229.5 parent: 2 - - uid: 4845 + - uid: 3265 components: - type: Transform pos: -8.5,-220.5 parent: 2 - - uid: 4846 + - uid: 3266 components: - type: Transform pos: -6.5,-223.5 parent: 2 - - uid: 4852 + - uid: 3267 components: - type: Transform pos: -4.5,-234.5 parent: 2 - - uid: 4853 + - uid: 3268 components: - type: Transform pos: -3.5,-234.5 parent: 2 - - uid: 4854 + - uid: 3269 components: - type: Transform pos: -3.5,-235.5 parent: 2 - - uid: 4855 + - uid: 3270 components: - type: Transform pos: -3.5,-233.5 parent: 2 - - uid: 4856 + - uid: 3271 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 4857 + - uid: 3272 components: - type: Transform pos: -3.5,-231.5 parent: 2 - - uid: 4858 + - uid: 3273 components: - type: Transform pos: 3.5,-189.5 parent: 2 - - uid: 4859 + - uid: 3274 components: - type: Transform pos: 9.5,-220.5 parent: 2 - - uid: 4860 + - uid: 3275 components: - type: Transform pos: 4.5,-234.5 parent: 2 - - uid: 4861 + - uid: 3276 components: - type: Transform pos: 5.5,-234.5 parent: 2 - - uid: 4862 + - uid: 3277 components: - type: Transform pos: 4.5,-233.5 parent: 2 - - uid: 4863 + - uid: 3278 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4864 + - uid: 3279 components: - type: Transform pos: 4.5,-231.5 parent: 2 - - uid: 4866 + - uid: 3280 components: - type: Transform pos: 7.5,-233.5 parent: 2 - - uid: 4867 + - uid: 3281 components: - type: Transform pos: 7.5,-232.5 parent: 2 - - uid: 4871 + - uid: 3282 components: - type: Transform pos: 9.5,-229.5 parent: 2 - - uid: 4874 + - uid: 3283 components: - type: Transform pos: 8.5,-232.5 parent: 2 - - uid: 4875 + - uid: 3284 components: - type: Transform pos: 8.5,-231.5 parent: 2 - - uid: 4876 + - uid: 3285 components: - type: Transform pos: 8.5,-230.5 parent: 2 - - uid: 4877 + - uid: 3286 components: - type: Transform pos: 8.5,-229.5 parent: 2 - - uid: 4878 + - uid: 3287 components: - type: Transform pos: 8.5,-228.5 parent: 2 - - uid: 4879 + - uid: 3288 components: - type: Transform pos: 8.5,-227.5 parent: 2 - - uid: 4880 + - uid: 3289 components: - type: Transform pos: 8.5,-226.5 parent: 2 - - uid: 4881 + - uid: 3290 components: - type: Transform pos: 8.5,-225.5 parent: 2 - - uid: 4882 + - uid: 3291 components: - type: Transform pos: 8.5,-224.5 parent: 2 - - uid: 4883 + - uid: 3292 components: - type: Transform pos: 8.5,-223.5 parent: 2 - - uid: 4884 + - uid: 3293 components: - type: Transform pos: 8.5,-222.5 parent: 2 - - uid: 4885 + - uid: 3294 components: - type: Transform pos: 8.5,-221.5 parent: 2 - - uid: 4886 + - uid: 3295 components: - type: Transform pos: 8.5,-220.5 parent: 2 - - uid: 4887 + - uid: 3296 components: - type: Transform pos: 8.5,-219.5 parent: 2 - - uid: 4888 + - uid: 3297 components: - type: Transform pos: 8.5,-218.5 parent: 2 - - uid: 4889 + - uid: 3298 components: - type: Transform pos: 8.5,-217.5 parent: 2 - - uid: 4891 + - uid: 3299 components: - type: Transform pos: 7.5,-217.5 parent: 2 - - uid: 4892 + - uid: 3300 components: - type: Transform pos: 7.5,-216.5 parent: 2 - - uid: 4894 + - uid: 3301 components: - type: Transform pos: 7.5,-226.5 parent: 2 - - uid: 4895 + - uid: 3302 components: - type: Transform pos: 7.5,-223.5 parent: 2 - - uid: 4906 + - uid: 3303 components: - type: Transform pos: 0.5,-130.5 parent: 2 - - uid: 4907 + - uid: 3304 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 4908 + - uid: 3305 components: - type: Transform pos: 0.5,-131.5 parent: 2 - - uid: 4909 + - uid: 3306 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 4910 + - uid: 3307 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 4911 + - uid: 3308 components: - type: Transform pos: 0.5,-102.5 parent: 2 - - uid: 4913 + - uid: 3309 components: - type: Transform pos: 0.5,-106.5 parent: 2 - - uid: 4914 + - uid: 3310 components: - type: Transform pos: 0.5,-105.5 parent: 2 - - uid: 4915 + - uid: 3311 components: - type: Transform pos: -3.5,-116.5 parent: 2 - - uid: 4916 + - uid: 3312 components: - type: Transform pos: 2.5,-152.5 parent: 2 - - uid: 4917 + - uid: 3313 components: - type: Transform pos: 4.5,-152.5 parent: 2 - - uid: 4918 + - uid: 3314 components: - type: Transform pos: -2.5,-124.5 parent: 2 - - uid: 4919 + - uid: 3315 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 4920 + - uid: 3316 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 4922 + - uid: 3317 components: - type: Transform pos: -6.5,-171.5 parent: 2 - - uid: 4923 + - uid: 3318 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 4925 + - uid: 3319 components: - type: Transform pos: -6.5,-176.5 parent: 2 - - uid: 4926 + - uid: 3320 components: - type: Transform pos: 0.5,-242.5 parent: 2 - - uid: 4927 + - uid: 3321 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 4928 + - uid: 3322 components: - type: Transform pos: -0.5,-179.5 parent: 2 - - uid: 4929 + - uid: 3323 components: - type: Transform pos: 0.5,-208.5 parent: 2 - - uid: 4930 + - uid: 3324 components: - type: Transform pos: -3.5,-117.5 parent: 2 - - uid: 4931 + - uid: 3325 components: - type: Transform pos: -3.5,-119.5 parent: 2 - - uid: 4932 + - uid: 3326 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 4933 + - uid: 3327 components: - type: Transform pos: -3.5,-95.5 parent: 2 - - uid: 4934 + - uid: 3328 components: - type: Transform pos: -2.5,-110.5 parent: 2 - - uid: 4935 + - uid: 3329 components: - type: Transform pos: -3.5,-179.5 parent: 2 - - uid: 4936 + - uid: 3330 components: - type: Transform pos: -1.5,-179.5 parent: 2 - - uid: 4937 + - uid: 3331 components: - type: Transform pos: -2.5,-179.5 parent: 2 - - uid: 4938 + - uid: 3332 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 4939 + - uid: 3333 components: - type: Transform pos: 0.5,-183.5 parent: 2 - - uid: 4940 + - uid: 3334 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 4944 + - uid: 3335 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 4946 + - uid: 3336 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 4953 + - uid: 3337 components: - type: Transform pos: 3.5,-152.5 parent: 2 - - uid: 4954 + - uid: 3338 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 4955 + - uid: 3339 components: - type: Transform pos: -6.5,-174.5 parent: 2 - - uid: 4956 + - uid: 3340 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 4957 + - uid: 3341 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 4958 + - uid: 3342 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 4959 + - uid: 3343 components: - type: Transform pos: -0.5,-81.5 parent: 2 - - uid: 4960 + - uid: 3344 components: - type: Transform pos: 5.5,-202.5 parent: 2 - - uid: 4961 + - uid: 3345 components: - type: Transform pos: 0.5,-241.5 parent: 2 - - uid: 4962 + - uid: 3346 components: - type: Transform pos: -6.5,-177.5 parent: 2 - - uid: 4963 + - uid: 3347 components: - type: Transform pos: -6.5,-172.5 parent: 2 - - uid: 4964 + - uid: 3348 components: - type: Transform pos: -6.5,-170.5 parent: 2 - - uid: 4966 + - uid: 3349 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 4968 + - uid: 3350 components: - type: Transform pos: 0.5,-75.5 parent: 2 - - uid: 4969 + - uid: 3351 components: - type: Transform pos: 6.5,-66.5 parent: 2 - - uid: 4970 + - uid: 3352 components: - type: Transform pos: 0.5,-210.5 parent: 2 - - uid: 4971 + - uid: 3353 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 4972 + - uid: 3354 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 4974 + - uid: 3355 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 4975 + - uid: 3356 components: - type: Transform pos: -6.5,-179.5 parent: 2 - - uid: 5041 + - uid: 3357 components: - type: Transform pos: -3.5,-110.5 parent: 2 - - uid: 5066 + - uid: 3358 components: - type: Transform pos: -1.5,-110.5 parent: 2 - - uid: 5067 + - uid: 3359 components: - type: Transform pos: -6.5,-175.5 parent: 2 - - uid: 5086 + - uid: 3360 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 5093 + - uid: 3361 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 5094 + - uid: 3362 components: - type: Transform pos: -3.5,-94.5 parent: 2 - - uid: 5095 + - uid: 3363 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 5096 + - uid: 3364 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 5097 + - uid: 3365 components: - type: Transform pos: 0.5,-103.5 parent: 2 - - uid: 5100 + - uid: 3366 components: - type: Transform pos: 5.5,-190.5 parent: 2 - - uid: 5102 + - uid: 3367 components: - type: Transform pos: 5.5,-191.5 parent: 2 - - uid: 5132 + - uid: 3368 components: - type: Transform pos: 5.5,-194.5 parent: 2 - - uid: 5149 + - uid: 3369 components: - type: Transform pos: 0.5,-99.5 parent: 2 - - uid: 5150 + - uid: 3370 components: - type: Transform pos: 0.5,-107.5 parent: 2 - - uid: 5151 + - uid: 3371 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 5152 + - uid: 3372 components: - type: Transform pos: 5.5,-200.5 parent: 2 - - uid: 5154 + - uid: 3373 components: - type: Transform pos: -0.5,-124.5 parent: 2 - - uid: 5155 + - uid: 3374 components: - type: Transform pos: -1.5,-124.5 parent: 2 - - uid: 5157 + - uid: 3375 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 5158 + - uid: 3376 components: - type: Transform pos: 4.5,-206.5 parent: 2 - - uid: 5159 + - uid: 3377 components: - type: Transform pos: 5.5,-205.5 parent: 2 - - uid: 5202 + - uid: 3378 components: - type: Transform pos: 5.5,-203.5 parent: 2 - - uid: 5203 + - uid: 3379 components: - type: Transform pos: 5.5,-204.5 parent: 2 - - uid: 5204 + - uid: 3380 components: - type: Transform pos: 5.5,-206.5 parent: 2 - - uid: 5205 + - uid: 3381 components: - type: Transform pos: 2.5,-206.5 parent: 2 - - uid: 5206 + - uid: 3382 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 5207 + - uid: 3383 components: - type: Transform pos: 1.5,-206.5 parent: 2 - - uid: 5208 + - uid: 3384 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 5217 + - uid: 3385 components: - type: Transform pos: 0.5,-239.5 parent: 2 - - uid: 5218 + - uid: 3386 components: - type: Transform pos: 0.5,-238.5 parent: 2 - - uid: 5219 + - uid: 3387 components: - type: Transform pos: 0.5,-237.5 parent: 2 - - uid: 5220 + - uid: 3388 components: - type: Transform pos: 0.5,-236.5 parent: 2 - - uid: 5221 + - uid: 3389 components: - type: Transform pos: 0.5,-235.5 parent: 2 - - uid: 5222 + - uid: 3390 components: - type: Transform pos: 0.5,-234.5 parent: 2 - - uid: 5223 + - uid: 3391 components: - type: Transform pos: 0.5,-233.5 parent: 2 - - uid: 5224 + - uid: 3392 components: - type: Transform pos: 0.5,-232.5 parent: 2 - - uid: 5226 + - uid: 3393 components: - type: Transform pos: 0.5,-231.5 parent: 2 - - uid: 5227 + - uid: 3394 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 5228 + - uid: 3395 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 5229 + - uid: 3396 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 5230 + - uid: 3397 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 5231 + - uid: 3398 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 5232 + - uid: 3399 components: - type: Transform pos: 0.5,-225.5 parent: 2 - - uid: 5233 + - uid: 3400 components: - type: Transform pos: 0.5,-224.5 parent: 2 - - uid: 5234 + - uid: 3401 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 5235 + - uid: 3402 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 5236 + - uid: 3403 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 5237 + - uid: 3404 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 5238 + - uid: 3405 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 5239 + - uid: 3406 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 5240 + - uid: 3407 components: - type: Transform pos: 0.5,-217.5 parent: 2 - - uid: 5241 + - uid: 3408 components: - type: Transform pos: 0.5,-216.5 parent: 2 - - uid: 5242 + - uid: 3409 components: - type: Transform pos: 0.5,-215.5 parent: 2 - - uid: 5243 + - uid: 3410 components: - type: Transform pos: 0.5,-214.5 parent: 2 - - uid: 5244 + - uid: 3411 components: - type: Transform pos: 0.5,-213.5 parent: 2 - - uid: 5245 + - uid: 3412 components: - type: Transform pos: 0.5,-212.5 parent: 2 - - uid: 5246 + - uid: 3413 components: - type: Transform pos: 0.5,-211.5 parent: 2 - - uid: 5303 + - uid: 3414 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 5328 + - uid: 3415 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 5332 + - uid: 3416 components: - type: Transform pos: 5.5,-197.5 parent: 2 - - uid: 5338 + - uid: 3417 components: - type: Transform pos: 0.5,-185.5 parent: 2 - - uid: 5343 + - uid: 3418 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 5344 + - uid: 3419 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 5347 + - uid: 3420 components: - type: Transform pos: 0.5,-261.5 parent: 2 - - uid: 5348 + - uid: 3421 components: - type: Transform pos: 0.5,-184.5 parent: 2 - - uid: 5349 + - uid: 3422 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 5350 + - uid: 3423 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 5353 + - uid: 3424 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 5358 + - uid: 3425 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 5364 + - uid: 3426 components: - type: Transform pos: 5.5,-110.5 parent: 2 - - uid: 5365 + - uid: 3427 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 5366 + - uid: 3428 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 5384 + - uid: 3429 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 5386 + - uid: 3430 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 5388 + - uid: 3431 components: - type: Transform pos: 5.5,-196.5 parent: 2 - - uid: 5389 + - uid: 3432 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 5390 + - uid: 3433 components: - type: Transform pos: 0.5,-158.5 parent: 2 - - uid: 5391 + - uid: 3434 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 5392 + - uid: 3435 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 5393 + - uid: 3436 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 5394 + - uid: 3437 components: - type: Transform pos: 0.5,-157.5 parent: 2 - - uid: 5395 + - uid: 3438 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 5396 + - uid: 3439 components: - type: Transform pos: 5.5,-195.5 parent: 2 - - uid: 5397 + - uid: 3440 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 5398 + - uid: 3441 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 5399 + - uid: 3442 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 5406 + - uid: 3443 components: - type: Transform pos: 0.5,-110.5 parent: 2 - - uid: 5408 + - uid: 3444 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 5412 + - uid: 3445 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 5413 + - uid: 3446 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 5414 + - uid: 3447 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 5437 + - uid: 3448 components: - type: Transform pos: -3.5,-219.5 parent: 2 - - uid: 5438 + - uid: 3449 components: - type: Transform pos: -3.5,-220.5 parent: 2 - - uid: 5439 + - uid: 3450 components: - type: Transform pos: -3.5,-221.5 parent: 2 - - uid: 5440 + - uid: 3451 components: - type: Transform pos: -3.5,-222.5 parent: 2 - - uid: 5441 + - uid: 3452 components: - type: Transform pos: -3.5,-230.5 parent: 2 - - uid: 5442 + - uid: 3453 components: - type: Transform pos: -3.5,-229.5 parent: 2 - - uid: 5443 + - uid: 3454 components: - type: Transform pos: -3.5,-228.5 parent: 2 - - uid: 5444 + - uid: 3455 components: - type: Transform pos: -3.5,-227.5 parent: 2 - - uid: 5445 + - uid: 3456 components: - type: Transform pos: 4.5,-228.5 parent: 2 - - uid: 5446 + - uid: 3457 components: - type: Transform pos: 4.5,-227.5 parent: 2 - - uid: 5447 + - uid: 3458 components: - type: Transform pos: 4.5,-229.5 parent: 2 - - uid: 5448 + - uid: 3459 components: - type: Transform pos: 4.5,-230.5 parent: 2 - - uid: 5453 + - uid: 3460 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 5454 + - uid: 3461 components: - type: Transform pos: 3.5,-229.5 parent: 2 - - uid: 5455 + - uid: 3462 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 5456 + - uid: 3463 components: - type: Transform pos: 1.5,-229.5 parent: 2 - - uid: 5457 + - uid: 3464 components: - type: Transform pos: -1.5,-220.5 parent: 2 - - uid: 5458 + - uid: 3465 components: - type: Transform pos: -0.5,-220.5 parent: 2 - - uid: 5469 + - uid: 3466 components: - type: Transform pos: -17.5,-247.5 parent: 2 - - uid: 5471 + - uid: 3467 components: - type: Transform pos: -17.5,-245.5 parent: 2 - - uid: 5472 + - uid: 3468 components: - type: Transform pos: -16.5,-247.5 parent: 2 - - uid: 5473 + - uid: 3469 components: - type: Transform pos: -17.5,-244.5 parent: 2 - - uid: 5475 + - uid: 3470 components: - type: Transform pos: -17.5,-246.5 parent: 2 - - uid: 5476 + - uid: 3471 components: - type: Transform pos: -15.5,-247.5 parent: 2 - - uid: 5481 + - uid: 3472 components: - type: Transform pos: 19.5,-263.5 parent: 2 - - uid: 5482 + - uid: 3473 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 5483 + - uid: 3474 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 5487 + - uid: 3475 components: - type: Transform pos: 15.5,-256.5 parent: 2 - - uid: 5488 + - uid: 3476 components: - type: Transform pos: 15.5,-257.5 parent: 2 - - uid: 5491 + - uid: 3477 components: - type: Transform pos: 15.5,-258.5 parent: 2 - - uid: 5493 + - uid: 3478 components: - type: Transform pos: 15.5,-260.5 parent: 2 - - uid: 5494 + - uid: 3479 components: - type: Transform pos: 15.5,-261.5 parent: 2 - - uid: 5495 + - uid: 3480 components: - type: Transform pos: 9.5,-248.5 parent: 2 - - uid: 5496 + - uid: 3481 components: - type: Transform pos: 8.5,-248.5 parent: 2 - - uid: 5498 + - uid: 3482 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 5506 + - uid: 3483 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 5507 + - uid: 3484 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 5508 + - uid: 3485 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 5509 + - uid: 3486 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 5510 + - uid: 3487 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 5511 + - uid: 3488 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 5512 + - uid: 3489 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 5513 + - uid: 3490 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 5514 + - uid: 3491 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 5515 + - uid: 3492 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 5516 + - uid: 3493 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 5517 + - uid: 3494 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 5518 + - uid: 3495 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 5519 + - uid: 3496 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 5520 + - uid: 3497 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 5521 + - uid: 3498 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 5522 + - uid: 3499 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 5523 + - uid: 3500 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 5524 + - uid: 3501 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 5525 + - uid: 3502 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 5526 + - uid: 3503 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 5527 + - uid: 3504 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 5528 + - uid: 3505 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 5529 + - uid: 3506 components: - type: Transform pos: 0.5,-50.5 parent: 2 - - uid: 5530 + - uid: 3507 components: - type: Transform pos: 0.5,-49.5 parent: 2 - - uid: 5531 + - uid: 3508 components: - type: Transform pos: 0.5,-48.5 parent: 2 - - uid: 5532 + - uid: 3509 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 5533 + - uid: 3510 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 5534 + - uid: 3511 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 5535 + - uid: 3512 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 5536 + - uid: 3513 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 5537 + - uid: 3514 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5538 + - uid: 3515 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5539 + - uid: 3516 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5540 + - uid: 3517 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5541 + - uid: 3518 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5542 + - uid: 3519 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5543 + - uid: 3520 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5544 + - uid: 3521 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5545 + - uid: 3522 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 5546 + - uid: 3523 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5547 + - uid: 3524 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5548 + - uid: 3525 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5549 + - uid: 3526 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 5550 + - uid: 3527 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5551 + - uid: 3528 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5552 + - uid: 3529 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5553 + - uid: 3530 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5554 + - uid: 3531 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5555 + - uid: 3532 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5556 + - uid: 3533 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5557 + - uid: 3534 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5558 + - uid: 3535 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5559 + - uid: 3536 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5560 + - uid: 3537 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5561 + - uid: 3538 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 5562 + - uid: 3539 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 5563 + - uid: 3540 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 5564 + - uid: 3541 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 5565 + - uid: 3542 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5566 + - uid: 3543 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5567 + - uid: 3544 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 5568 + - uid: 3545 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 5569 + - uid: 3546 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 5570 + - uid: 3547 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 5571 + - uid: 3548 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 5572 + - uid: 3549 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 5573 + - uid: 3550 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 5574 + - uid: 3551 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 5575 + - uid: 3552 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 5576 + - uid: 3553 components: - type: Transform pos: 0.5,-21.5 parent: 2 - - uid: 5577 + - uid: 3554 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 5578 + - uid: 3555 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 5579 + - uid: 3556 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 5580 + - uid: 3557 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 5581 + - uid: 3558 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 5582 + - uid: 3559 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 5583 + - uid: 3560 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 5584 + - uid: 3561 components: - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 5585 + - uid: 3562 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 5586 + - uid: 3563 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 5587 + - uid: 3564 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 5588 + - uid: 3565 components: - type: Transform pos: -5.5,-15.5 parent: 2 - - uid: 5589 + - uid: 3566 components: - type: Transform pos: -5.5,-14.5 parent: 2 - - uid: 5590 + - uid: 3567 components: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 5591 + - uid: 3568 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 5592 + - uid: 3569 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 5593 + - uid: 3570 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 5594 + - uid: 3571 components: - type: Transform pos: -5.5,-9.5 parent: 2 - - uid: 5595 + - uid: 3572 components: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 5596 + - uid: 3573 components: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 5597 + - uid: 3574 components: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 5598 + - uid: 3575 components: - type: Transform pos: -5.5,-5.5 parent: 2 - - uid: 5599 + - uid: 3576 components: - type: Transform pos: -5.5,-4.5 parent: 2 - - uid: 5600 + - uid: 3577 components: - type: Transform pos: -5.5,-3.5 parent: 2 - - uid: 5601 + - uid: 3578 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 5602 + - uid: 3579 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 5603 + - uid: 3580 components: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 5604 + - uid: 3581 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 5605 + - uid: 3582 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 5606 + - uid: 3583 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 5607 + - uid: 3584 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 5608 + - uid: 3585 components: - type: Transform pos: -2.5,1.5 parent: 2 - - uid: 5609 + - uid: 3586 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 5610 + - uid: 3587 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 5611 + - uid: 3588 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 5612 + - uid: 3589 components: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 5613 + - uid: 3590 components: - type: Transform pos: 1.5,0.5 parent: 2 - - uid: 5614 + - uid: 3591 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 5615 + - uid: 3592 components: - type: Transform pos: 1.5,-1.5 parent: 2 - - uid: 5616 + - uid: 3593 components: - type: Transform pos: 1.5,-2.5 parent: 2 - - uid: 5617 + - uid: 3594 components: - type: Transform pos: 1.5,-3.5 parent: 2 - - uid: 5618 + - uid: 3595 components: - type: Transform pos: 1.5,-4.5 parent: 2 - - uid: 5619 + - uid: 3596 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5620 + - uid: 3597 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5621 + - uid: 3598 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5622 + - uid: 3599 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5623 + - uid: 3600 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 5624 + - uid: 3601 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 5625 + - uid: 3602 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 5626 + - uid: 3603 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 5627 + - uid: 3604 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 5628 + - uid: 3605 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 5629 + - uid: 3606 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 5630 + - uid: 3607 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 5631 + - uid: 3608 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 5632 + - uid: 3609 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 5633 + - uid: 3610 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 5634 + - uid: 3611 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 5635 + - uid: 3612 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 5636 + - uid: 3613 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 5637 + - uid: 3614 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 5638 + - uid: 3615 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 5639 + - uid: 3616 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 5640 + - uid: 3617 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 5641 + - uid: 3618 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 5642 + - uid: 3619 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 5643 + - uid: 3620 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 5644 + - uid: 3621 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 5645 + - uid: 3622 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 5646 + - uid: 3623 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 5647 + - uid: 3624 components: - type: Transform pos: 4.5,-135.5 parent: 2 - - uid: 5648 + - uid: 3625 components: - type: Transform pos: 3.5,-135.5 parent: 2 - - uid: 5649 + - uid: 3626 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 5650 + - uid: 3627 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 5651 + - uid: 3628 components: - type: Transform pos: -6.5,-169.5 parent: 2 - - uid: 5652 + - uid: 3629 components: - type: Transform pos: -6.5,-168.5 parent: 2 - - uid: 5658 + - uid: 3630 components: - type: Transform pos: -5.5,-163.5 parent: 2 - - uid: 5659 + - uid: 3631 components: - type: Transform pos: -4.5,-163.5 parent: 2 - - uid: 5660 + - uid: 3632 components: - type: Transform pos: -3.5,-163.5 parent: 2 - - uid: 6549 + - uid: 3633 components: - type: Transform pos: 14.5,-253.5 parent: 2 - - uid: 6551 + - uid: 3634 components: - type: Transform pos: 17.5,-252.5 parent: 2 - - uid: 6679 + - uid: 3635 components: - type: Transform pos: -6.5,-167.5 parent: 2 - - uid: 6681 + - uid: 3636 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 6683 + - uid: 3637 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 6771 + - uid: 3638 components: - type: Transform pos: -11.5,-256.5 parent: 2 - - uid: 6774 + - uid: 3639 components: - type: Transform pos: -11.5,-257.5 parent: 2 - - uid: 6782 + - uid: 3640 components: - type: Transform pos: 13.5,-255.5 parent: 2 - - uid: 6798 + - uid: 3641 components: - type: Transform pos: -11.5,-255.5 parent: 2 - - uid: 6799 + - uid: 3642 components: - type: Transform pos: -11.5,-254.5 parent: 2 - - uid: 6827 + - uid: 3643 components: - type: Transform pos: 2.5,-251.5 parent: 2 - - uid: 6841 + - uid: 3644 components: - type: Transform pos: 0.5,-295.5 parent: 2 - - uid: 6843 + - uid: 3645 components: - type: Transform pos: 0.5,-296.5 parent: 2 - - uid: 6852 + - uid: 3646 components: - type: Transform pos: 2.5,-252.5 parent: 2 - - uid: 6869 + - uid: 3647 components: - type: Transform pos: 13.5,-251.5 parent: 2 - - uid: 6870 + - uid: 3648 components: - type: Transform pos: 13.5,-256.5 parent: 2 - - uid: 6871 + - uid: 3649 components: - type: Transform pos: 13.5,-253.5 parent: 2 - - uid: 6872 + - uid: 3650 components: - type: Transform pos: 13.5,-252.5 parent: 2 - - uid: 6873 + - uid: 3651 components: - type: Transform pos: 13.5,-254.5 parent: 2 - - uid: 7452 + - uid: 3652 components: - type: Transform pos: 20.5,-256.5 parent: 2 - - uid: 7455 + - uid: 3653 components: - type: Transform pos: 19.5,-250.5 parent: 2 - - uid: 7492 + - uid: 3654 components: - type: Transform pos: 15.5,-259.5 parent: 2 - - uid: 7543 + - uid: 3655 components: - type: Transform pos: 19.5,-253.5 parent: 2 - - uid: 7585 + - uid: 3656 components: - type: Transform pos: 19.5,-252.5 parent: 2 - - uid: 7770 + - uid: 3657 components: - type: Transform pos: 7.5,-255.5 parent: 2 - - uid: 7793 + - uid: 3658 components: - type: Transform pos: 5.5,-250.5 parent: 2 - - uid: 7794 + - uid: 3659 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 7805 + - uid: 3660 components: - type: Transform pos: 0.5,-246.5 parent: 2 - - uid: 7806 + - uid: 3661 components: - type: Transform pos: 0.5,-251.5 parent: 2 - - uid: 7807 + - uid: 3662 components: - type: Transform pos: 8.5,-257.5 parent: 2 - - uid: 7810 + - uid: 3663 components: - type: Transform pos: 19.5,-247.5 parent: 2 - - uid: 7811 + - uid: 3664 components: - type: Transform pos: 0.5,-253.5 parent: 2 - - uid: 7828 + - uid: 3665 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 7832 + - uid: 3666 components: - type: Transform pos: 14.5,-251.5 parent: 2 - - uid: 7833 + - uid: 3667 components: - type: Transform pos: 14.5,-252.5 parent: 2 - - uid: 7846 + - uid: 3668 components: - type: Transform pos: 14.5,-256.5 parent: 2 - - uid: 7847 + - uid: 3669 components: - type: Transform pos: 16.5,-261.5 parent: 2 - - uid: 7850 + - uid: 3670 components: - type: Transform pos: 9.5,-252.5 parent: 2 - - uid: 7851 + - uid: 3671 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 7852 + - uid: 3672 components: - type: Transform pos: 11.5,-251.5 parent: 2 - - uid: 7853 + - uid: 3673 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 7855 + - uid: 3674 components: - type: Transform pos: 21.5,-256.5 parent: 2 - - uid: 7862 + - uid: 3675 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 7865 + - uid: 3676 components: - type: Transform pos: 10.5,-248.5 parent: 2 - - uid: 7866 + - uid: 3677 components: - type: Transform pos: 8.5,-256.5 parent: 2 - - uid: 7867 + - uid: 3678 components: - type: Transform pos: 0.5,-255.5 parent: 2 - - uid: 7888 + - uid: 3679 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 7889 + - uid: 3680 components: - type: Transform pos: 10.5,-252.5 parent: 2 - - uid: 7890 + - uid: 3681 components: - type: Transform pos: 22.5,-256.5 parent: 2 - - uid: 7894 + - uid: 3682 components: - type: Transform pos: 10.5,-256.5 parent: 2 - - uid: 7908 + - uid: 3683 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 7928 + - uid: 3684 components: - type: Transform pos: 0.5,-243.5 parent: 2 - - uid: 7933 + - uid: 3685 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 7935 + - uid: 3686 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 7941 + - uid: 3687 components: - type: Transform pos: 19.5,-246.5 parent: 2 - - uid: 7945 + - uid: 3688 components: - type: Transform pos: 0.5,-257.5 parent: 2 - - uid: 7948 + - uid: 3689 components: - type: Transform pos: 16.5,-252.5 parent: 2 - - uid: 7951 + - uid: 3690 components: - type: Transform pos: 13.5,-249.5 parent: 2 - - uid: 7953 + - uid: 3691 components: - type: Transform pos: 9.5,-256.5 parent: 2 - - uid: 7955 + - uid: 3692 components: - type: Transform pos: 7.5,-256.5 parent: 2 - - uid: 7957 + - uid: 3693 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 7958 + - uid: 3694 components: - type: Transform pos: 17.5,-261.5 parent: 2 - - uid: 7959 + - uid: 3695 components: - type: Transform pos: 18.5,-263.5 parent: 2 - - uid: 7960 + - uid: 3696 components: - type: Transform pos: 18.5,-262.5 parent: 2 - - uid: 7961 + - uid: 3697 components: - type: Transform pos: 23.5,-256.5 parent: 2 - - uid: 7962 + - uid: 3698 components: - type: Transform pos: 0.5,-248.5 parent: 2 - - uid: 7963 + - uid: 3699 components: - type: Transform pos: 0.5,-250.5 parent: 2 - - uid: 7971 + - uid: 3700 components: - type: Transform pos: 0.5,-256.5 parent: 2 - - uid: 7973 + - uid: 3701 components: - type: Transform pos: 0.5,-258.5 parent: 2 - - uid: 7975 + - uid: 3702 components: - type: Transform pos: 0.5,-254.5 parent: 2 - - uid: 7976 + - uid: 3703 components: - type: Transform pos: 0.5,-252.5 parent: 2 - - uid: 7978 + - uid: 3704 components: - type: Transform pos: 2.5,-250.5 parent: 2 - - uid: 7979 + - uid: 3705 components: - type: Transform pos: 6.5,-250.5 parent: 2 - - uid: 7981 + - uid: 3706 components: - type: Transform pos: 4.5,-250.5 parent: 2 - - uid: 7982 + - uid: 3707 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 7984 + - uid: 3708 components: - type: Transform pos: 2.5,-248.5 parent: 2 - - uid: 7991 + - uid: 3709 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 7999 + - uid: 3710 components: - type: Transform pos: 19.5,-251.5 parent: 2 - - uid: 8007 + - uid: 3711 components: - type: Transform pos: 18.5,-261.5 parent: 2 - - uid: 8101 + - uid: 3712 components: - type: Transform pos: 19.5,-249.5 parent: 2 - - uid: 8115 + - uid: 3713 components: - type: Transform pos: 15.5,-252.5 parent: 2 - - uid: 8132 + - uid: 3714 components: - type: Transform pos: 0.5,-245.5 parent: 2 - - uid: 8145 + - uid: 3715 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 8183 + - uid: 3716 components: - type: Transform pos: 0.5,-263.5 parent: 2 - - uid: 8184 + - uid: 3717 components: - type: Transform pos: 0.5,-264.5 parent: 2 - - uid: 8185 + - uid: 3718 components: - type: Transform pos: 0.5,-265.5 parent: 2 - - uid: 8186 + - uid: 3719 components: - type: Transform pos: 0.5,-266.5 parent: 2 - - uid: 8187 + - uid: 3720 components: - type: Transform pos: 0.5,-267.5 parent: 2 - - uid: 8198 + - uid: 3721 components: - type: Transform pos: 0.5,-249.5 parent: 2 - - uid: 8205 + - uid: 3722 components: - type: Transform pos: 0.5,-244.5 parent: 2 - - uid: 8230 + - uid: 3723 components: - type: Transform pos: 19.5,-254.5 parent: 2 - - uid: 8452 + - uid: 3724 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 8454 + - uid: 3725 components: - type: Transform pos: 11.5,-256.5 parent: 2 - - uid: 8823 + - uid: 3726 components: - type: Transform pos: 19.5,-256.5 parent: 2 - - uid: 8838 + - uid: 3727 components: - type: Transform pos: 18.5,-252.5 parent: 2 - - uid: 8842 + - uid: 3728 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 8844 + - uid: 3729 components: - type: Transform pos: 8.5,-252.5 parent: 2 - - uid: 8863 + - uid: 3730 components: - type: Transform pos: 13.5,-250.5 parent: 2 - - uid: 8936 + - uid: 3731 components: - type: Transform pos: 2.5,-256.5 parent: 2 - - uid: 8937 + - uid: 3732 components: - type: Transform pos: 1.5,-256.5 parent: 2 - - uid: 8943 + - uid: 3733 components: - type: Transform pos: 5.5,-256.5 parent: 2 - - uid: 8944 + - uid: 3734 components: - type: Transform pos: 4.5,-256.5 parent: 2 - - uid: 9098 + - uid: 3735 components: - type: Transform pos: -2.5,-275.5 parent: 2 - - uid: 9100 + - uid: 3736 components: - type: Transform pos: -0.5,-274.5 parent: 2 - - uid: 9101 + - uid: 3737 components: - type: Transform pos: -1.5,-274.5 parent: 2 - - uid: 9102 + - uid: 3738 components: - type: Transform pos: 0.5,-270.5 parent: 2 - - uid: 9103 + - uid: 3739 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 9104 + - uid: 3740 components: - type: Transform pos: 0.5,-269.5 parent: 2 - - uid: 9105 + - uid: 3741 components: - type: Transform pos: 0.5,-268.5 parent: 2 - - uid: 9106 + - uid: 3742 components: - type: Transform pos: 0.5,-271.5 parent: 2 - - uid: 9107 + - uid: 3743 components: - type: Transform pos: 0.5,-272.5 parent: 2 - - uid: 9108 + - uid: 3744 components: - type: Transform pos: 0.5,-273.5 parent: 2 - - uid: 9109 + - uid: 3745 components: - type: Transform pos: 0.5,-274.5 parent: 2 - - uid: 9110 + - uid: 3746 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 9111 + - uid: 3747 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 9112 + - uid: 3748 components: - type: Transform pos: -2.5,-276.5 parent: 2 - - uid: 9113 + - uid: 3749 components: - type: Transform pos: -2.5,-274.5 parent: 2 - - uid: 9114 + - uid: 3750 components: - type: Transform pos: -2.5,-277.5 parent: 2 - - uid: 9115 + - uid: 3751 components: - type: Transform pos: -2.5,-278.5 parent: 2 - - uid: 9116 + - uid: 3752 components: - type: Transform pos: -2.5,-279.5 parent: 2 - - uid: 9117 + - uid: 3753 components: - type: Transform pos: -2.5,-280.5 parent: 2 - - uid: 9118 + - uid: 3754 components: - type: Transform pos: -2.5,-281.5 parent: 2 - - uid: 9119 + - uid: 3755 components: - type: Transform pos: -2.5,-282.5 parent: 2 - - uid: 9120 + - uid: 3756 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9121 + - uid: 3757 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9122 + - uid: 3758 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9123 + - uid: 3759 components: - type: Transform pos: -0.5,-284.5 parent: 2 - - uid: 9124 + - uid: 3760 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 9125 + - uid: 3761 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9126 + - uid: 3762 components: - type: Transform pos: 1.5,-285.5 parent: 2 - - uid: 9127 + - uid: 3763 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 9130 + - uid: 3764 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 9131 + - uid: 3765 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 9133 + - uid: 3766 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 9134 + - uid: 3767 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 9135 + - uid: 3768 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 9136 + - uid: 3769 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 9137 + - uid: 3770 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 9138 + - uid: 3771 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 9139 + - uid: 3772 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9140 + - uid: 3773 components: - type: Transform pos: 0.5,-287.5 parent: 2 - - uid: 9141 + - uid: 3774 components: - type: Transform pos: 0.5,-288.5 parent: 2 - - uid: 9142 + - uid: 3775 components: - type: Transform pos: 0.5,-289.5 parent: 2 - - uid: 9143 + - uid: 3776 components: - type: Transform pos: 0.5,-290.5 parent: 2 - - uid: 9167 + - uid: 3777 components: - type: Transform pos: 3.5,-256.5 parent: 2 - - uid: 9360 + - uid: 3778 components: - type: Transform pos: 0.5,-291.5 parent: 2 - - uid: 9361 + - uid: 3779 components: - type: Transform pos: 0.5,-292.5 parent: 2 - - uid: 9362 + - uid: 3780 components: - type: Transform pos: 0.5,-293.5 parent: 2 - - uid: 9363 + - uid: 3781 components: - type: Transform pos: 0.5,-294.5 parent: 2 - - uid: 9499 + - uid: 3782 components: - type: Transform pos: 1.5,-345.5 parent: 2 - - uid: 9559 + - uid: 3783 components: - type: Transform pos: 21.5,-308.5 parent: 2 - - uid: 9560 + - uid: 3784 components: - type: Transform pos: 20.5,-308.5 parent: 2 - - uid: 9561 + - uid: 3785 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9562 + - uid: 3786 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9563 + - uid: 3787 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 9564 + - uid: 3788 components: - type: Transform pos: 20.5,-306.5 parent: 2 - - uid: 9565 + - uid: 3789 components: - type: Transform pos: 21.5,-306.5 parent: 2 - - uid: 9566 + - uid: 3790 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9567 + - uid: 3791 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9568 + - uid: 3792 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9569 + - uid: 3793 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9570 + - uid: 3794 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9571 + - uid: 3795 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9572 + - uid: 3796 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9573 + - uid: 3797 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9574 + - uid: 3798 components: - type: Transform pos: 24.5,-308.5 parent: 2 - - uid: 9575 + - uid: 3799 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9577 + - uid: 3800 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9578 + - uid: 3801 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9579 + - uid: 3802 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9580 + - uid: 3803 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9581 + - uid: 3804 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9582 + - uid: 3805 components: - type: Transform pos: 24.5,-306.5 parent: 2 - - uid: 9583 + - uid: 3806 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 9584 + - uid: 3807 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9585 + - uid: 3808 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9586 + - uid: 3809 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9587 + - uid: 3810 components: - type: Transform pos: 23.5,-308.5 parent: 2 - - uid: 9870 + - uid: 3811 components: - type: Transform pos: 0.5,-259.5 parent: 2 - - uid: 9917 + - uid: 3812 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10161 + - uid: 3813 components: - type: Transform pos: 0.5,-260.5 parent: 2 - - uid: 10172 + - uid: 3814 components: - type: Transform pos: 0.5,-297.5 parent: 2 - - uid: 10173 + - uid: 3815 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10174 + - uid: 3816 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10175 + - uid: 3817 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10176 + - uid: 3818 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10177 + - uid: 3819 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10178 + - uid: 3820 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10179 + - uid: 3821 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10180 + - uid: 3822 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10181 + - uid: 3823 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10182 + - uid: 3824 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10183 + - uid: 3825 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10184 + - uid: 3826 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10185 + - uid: 3827 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10186 + - uid: 3828 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10187 + - uid: 3829 components: - type: Transform pos: 6.5,-297.5 parent: 2 - - uid: 10188 + - uid: 3830 components: - type: Transform pos: 7.5,-297.5 parent: 2 - - uid: 10189 + - uid: 3831 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10190 + - uid: 3832 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10191 + - uid: 3833 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10192 + - uid: 3834 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10193 + - uid: 3835 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10194 + - uid: 3836 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10195 + - uid: 3837 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10196 + - uid: 3838 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10197 + - uid: 3839 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10198 + - uid: 3840 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10199 + - uid: 3841 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10200 + - uid: 3842 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10201 + - uid: 3843 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10202 + - uid: 3844 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10203 + - uid: 3845 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10204 + - uid: 3846 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10205 + - uid: 3847 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10206 + - uid: 3848 components: - type: Transform pos: 10.5,-312.5 parent: 2 - - uid: 10207 + - uid: 3849 components: - type: Transform pos: 10.5,-313.5 parent: 2 - - uid: 10208 + - uid: 3850 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10209 + - uid: 3851 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10210 + - uid: 3852 components: - type: Transform pos: 10.5,-316.5 parent: 2 - - uid: 10211 + - uid: 3853 components: - type: Transform pos: 10.5,-317.5 parent: 2 - - uid: 10212 + - uid: 3854 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10213 + - uid: 3855 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10214 + - uid: 3856 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10215 + - uid: 3857 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10216 + - uid: 3858 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10218 + - uid: 3859 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10219 + - uid: 3860 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10220 + - uid: 3861 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10221 + - uid: 3862 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10222 + - uid: 3863 components: - type: Transform pos: 1.5,-319.5 parent: 2 - - uid: 10223 + - uid: 3864 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10224 + - uid: 3865 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 10225 + - uid: 3866 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 10226 + - uid: 3867 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 10610 + - uid: 3868 components: - type: Transform pos: 0.5,-323.5 parent: 2 - - uid: 10611 + - uid: 3869 components: - type: Transform pos: 0.5,-324.5 parent: 2 - - uid: 10612 + - uid: 3870 components: - type: Transform pos: 0.5,-325.5 parent: 2 - - uid: 10613 + - uid: 3871 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 10614 + - uid: 3872 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 10615 + - uid: 3873 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 10674 + - uid: 3874 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 10801 + - uid: 3875 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 10804 + - uid: 3876 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10806 + - uid: 3877 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10807 + - uid: 3878 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 10809 + - uid: 3879 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10810 + - uid: 3880 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 10835 + - uid: 3881 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 10836 + - uid: 3882 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 10837 + - uid: 3883 components: - type: Transform pos: 0.5,-337.5 parent: 2 - - uid: 10838 + - uid: 3884 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 10839 + - uid: 3885 components: - type: Transform pos: 0.5,-339.5 parent: 2 - - uid: 10840 + - uid: 3886 components: - type: Transform pos: 0.5,-340.5 parent: 2 - - uid: 10844 + - uid: 3887 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 10866 + - uid: 3888 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10962 + - uid: 3889 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 11125 + - uid: 3890 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 11126 + - uid: 3891 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 11127 + - uid: 3892 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 11128 + - uid: 3893 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 11129 + - uid: 3894 components: - type: Transform pos: 0.5,-346.5 parent: 2 - - uid: 11130 + - uid: 3895 components: - type: Transform pos: 0.5,-347.5 parent: 2 - - uid: 11131 + - uid: 3896 components: - type: Transform pos: 0.5,-348.5 parent: 2 - - uid: 11132 + - uid: 3897 components: - type: Transform pos: 0.5,-349.5 parent: 2 - - uid: 11133 + - uid: 3898 components: - type: Transform pos: 0.5,-350.5 parent: 2 - - uid: 11134 + - uid: 3899 components: - type: Transform pos: 0.5,-351.5 parent: 2 - - uid: 11135 + - uid: 3900 components: - type: Transform pos: 0.5,-352.5 parent: 2 - - uid: 11136 + - uid: 3901 components: - type: Transform pos: 0.5,-353.5 parent: 2 - - uid: 11137 + - uid: 3902 components: - type: Transform pos: 0.5,-354.5 parent: 2 - - uid: 11138 + - uid: 3903 components: - type: Transform pos: 0.5,-355.5 parent: 2 - - uid: 11139 + - uid: 3904 components: - type: Transform pos: 0.5,-356.5 parent: 2 - - uid: 11264 + - uid: 3905 components: - type: Transform pos: 0.5,-357.5 parent: 2 - - uid: 11265 + - uid: 3906 components: - type: Transform pos: 0.5,-358.5 parent: 2 - - uid: 11266 + - uid: 3907 components: - type: Transform pos: 0.5,-359.5 parent: 2 - - uid: 11269 + - uid: 3908 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11270 + - uid: 3909 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11271 + - uid: 3910 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11272 + - uid: 3911 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11273 + - uid: 3912 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11274 + - uid: 3913 components: - type: Transform pos: 6.5,-361.5 parent: 2 - - uid: 11411 + - uid: 3914 components: - type: Transform pos: 2.5,-359.5 parent: 2 - - uid: 11412 + - uid: 3915 components: - type: Transform pos: 1.5,-359.5 parent: 2 - - uid: 11844 + - uid: 3916 components: - type: Transform pos: 0.5,-381.5 parent: 2 - - uid: 11845 + - uid: 3917 components: - type: Transform pos: 4.5,-361.5 parent: 2 - - uid: 11846 + - uid: 3918 components: - type: Transform pos: 4.5,-362.5 parent: 2 - - uid: 11847 + - uid: 3919 components: - type: Transform pos: 4.5,-363.5 parent: 2 - - uid: 11848 + - uid: 3920 components: - type: Transform pos: 4.5,-364.5 parent: 2 - - uid: 11849 + - uid: 3921 components: - type: Transform pos: 4.5,-365.5 parent: 2 - - uid: 11850 + - uid: 3922 components: - type: Transform pos: 4.5,-366.5 parent: 2 - - uid: 11851 + - uid: 3923 components: - type: Transform pos: 4.5,-367.5 parent: 2 - - uid: 11852 + - uid: 3924 components: - type: Transform pos: 4.5,-368.5 parent: 2 - - uid: 11853 + - uid: 3925 components: - type: Transform pos: 4.5,-369.5 parent: 2 - - uid: 11854 + - uid: 3926 components: - type: Transform pos: 4.5,-370.5 parent: 2 - - uid: 11855 + - uid: 3927 components: - type: Transform pos: 4.5,-371.5 parent: 2 - - uid: 11856 + - uid: 3928 components: - type: Transform pos: 4.5,-372.5 parent: 2 - - uid: 11857 + - uid: 3929 components: - type: Transform pos: 4.5,-373.5 parent: 2 - - uid: 11858 + - uid: 3930 components: - type: Transform pos: 3.5,-373.5 parent: 2 - - uid: 11859 + - uid: 3931 components: - type: Transform pos: 2.5,-373.5 parent: 2 - - uid: 11860 + - uid: 3932 components: - type: Transform pos: 1.5,-373.5 parent: 2 - - uid: 11861 + - uid: 3933 components: - type: Transform pos: 0.5,-373.5 parent: 2 - - uid: 11862 + - uid: 3934 components: - type: Transform pos: 0.5,-374.5 parent: 2 - - uid: 11863 + - uid: 3935 components: - type: Transform pos: 0.5,-375.5 parent: 2 - - uid: 11864 + - uid: 3936 components: - type: Transform pos: 0.5,-378.5 parent: 2 - - uid: 11865 + - uid: 3937 components: - type: Transform pos: 0.5,-379.5 parent: 2 - - uid: 11866 + - uid: 3938 components: - type: Transform pos: 0.5,-382.5 parent: 2 - - uid: 11917 + - uid: 3939 components: - type: Transform pos: 0.5,-383.5 parent: 2 - - uid: 11999 + - uid: 3940 components: - type: Transform pos: 6.5,-386.5 parent: 2 - - uid: 12004 + - uid: 3941 components: - type: Transform pos: 6.5,-384.5 parent: 2 - - uid: 12015 + - uid: 3942 components: - type: Transform pos: 2.5,-384.5 parent: 2 - - uid: 12018 + - uid: 3943 components: - type: Transform pos: 3.5,-384.5 parent: 2 - - uid: 12019 + - uid: 3944 components: - type: Transform pos: 0.5,-384.5 parent: 2 - - uid: 12022 + - uid: 3945 components: - type: Transform pos: 6.5,-385.5 parent: 2 - - uid: 13988 + - uid: 3946 components: - type: Transform pos: 7.5,-253.5 parent: 2 - - uid: 13999 + - uid: 3947 components: - type: Transform pos: 6.5,-256.5 parent: 2 - - uid: 14002 + - uid: 3948 components: - type: Transform pos: 7.5,-254.5 parent: 2 - - uid: 14007 + - uid: 3949 components: - type: Transform pos: 19.5,-248.5 parent: 2 - - uid: 14013 + - uid: 3950 components: - type: Transform pos: 19.5,-255.5 parent: 2 - - uid: 16695 + - uid: 3951 components: - type: Transform pos: -15.5,-250.5 parent: 2 - - uid: 16696 + - uid: 3952 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 16918 + - uid: 3953 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 16938 + - uid: 3954 components: - type: Transform pos: -0.5,-248.5 parent: 2 - proto: CableHVStack entities: - - uid: 42 + - uid: 3955 components: - type: Transform pos: 15.409912,-245.26797 parent: 2 - - uid: 896 + - uid: 3956 components: - type: Transform pos: 15.568392,-245.34718 parent: 2 - - uid: 11672 + - uid: 3957 components: - type: Transform pos: -2.0963848,-7.519528 parent: 2 - - uid: 16801 + - uid: 3959 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CableMV entities: - - uid: 81 + - uid: 3962 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 191 + - uid: 3963 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 479 + - uid: 3964 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 572 + - uid: 3965 components: - type: Transform pos: 0.5,-345.5 parent: 2 - - uid: 582 + - uid: 3966 components: - type: Transform pos: 1.5,-5.5 parent: 2 - - uid: 587 + - uid: 3967 components: - type: Transform pos: 2.5,-345.5 parent: 2 - - uid: 916 + - uid: 3968 components: - type: Transform pos: 7.5,-335.5 parent: 2 - - uid: 1119 + - uid: 3969 components: - type: Transform pos: -3.5,-44.5 parent: 2 - - uid: 1127 + - uid: 3970 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 1144 + - uid: 3971 components: - type: Transform pos: 5.5,-3.5 parent: 2 - - uid: 1250 + - uid: 3972 components: - type: Transform pos: 4.5,-340.5 parent: 2 - - uid: 1462 + - uid: 3973 components: - type: Transform pos: -1.5,-247.5 parent: 2 - - uid: 1497 + - uid: 3974 components: - type: Transform pos: 1.5,-360.5 parent: 2 - - uid: 1675 + - uid: 3975 components: - type: Transform pos: -12.5,-252.5 parent: 2 - - uid: 1676 + - uid: 3976 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 2001 + - uid: 3977 components: - type: Transform pos: -1.5,-10.5 parent: 2 - - uid: 2062 + - uid: 3978 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 2068 + - uid: 3979 components: - type: Transform pos: -2.5,-71.5 parent: 2 - - uid: 2069 + - uid: 3980 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 2070 + - uid: 3981 components: - type: Transform pos: 6.5,-65.5 parent: 2 - - uid: 2071 + - uid: 3982 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 2097 + - uid: 3983 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 2191 + - uid: 3984 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 2305 + - uid: 3985 components: - type: Transform pos: -14.5,-253.5 parent: 2 - - uid: 2477 + - uid: 3986 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 2847 + - uid: 3987 components: - type: Transform pos: -14.5,-251.5 parent: 2 - - uid: 2848 + - uid: 3988 components: - type: Transform pos: -15.5,-251.5 parent: 2 - - uid: 2851 + - uid: 3989 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 3172 + - uid: 3990 components: - type: Transform pos: -0.5,-109.5 parent: 2 - - uid: 3173 + - uid: 3991 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 3218 + - uid: 3992 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 3242 + - uid: 3993 components: - type: Transform pos: -1.5,-109.5 parent: 2 - - uid: 3245 + - uid: 3994 components: - type: Transform pos: 1.5,-109.5 parent: 2 - - uid: 3248 + - uid: 3995 components: - type: Transform pos: 2.5,-109.5 parent: 2 - - uid: 3557 + - uid: 3996 components: - type: Transform pos: -5.5,-336.5 parent: 2 - - uid: 3576 + - uid: 3997 components: - type: Transform pos: 7.5,-338.5 parent: 2 - - uid: 3678 + - uid: 3998 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 3701 + - uid: 3999 components: - type: Transform pos: 0.5,-230.5 parent: 2 - - uid: 3838 + - uid: 4000 components: - type: Transform pos: 15.5,-137.5 parent: 2 - - uid: 3839 + - uid: 4001 components: - type: Transform pos: 15.5,-136.5 parent: 2 - - uid: 3879 + - uid: 4002 components: - type: Transform pos: 7.5,-342.5 parent: 2 - - uid: 4046 + - uid: 4003 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 4163 + - uid: 4004 components: - type: Transform pos: 0.5,-341.5 parent: 2 - - uid: 4235 + - uid: 4005 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 4345 + - uid: 4006 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 4346 + - uid: 4007 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 4349 + - uid: 4008 components: - type: Transform pos: 3.5,-109.5 parent: 2 - - uid: 4354 + - uid: 4009 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 4555 + - uid: 4010 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 4681 + - uid: 4011 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 4784 + - uid: 4012 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 4898 + - uid: 4013 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 5002 + - uid: 4014 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 5003 + - uid: 4015 components: - type: Transform pos: 3.5,-252.5 parent: 2 - - uid: 5004 + - uid: 4016 components: - type: Transform pos: 3.5,-253.5 parent: 2 - - uid: 5005 + - uid: 4017 components: - type: Transform pos: 3.5,-254.5 parent: 2 - - uid: 5354 + - uid: 4018 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 5387 + - uid: 4019 components: - type: Transform pos: 19.5,-264.5 parent: 2 - - uid: 5490 + - uid: 4020 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 5492 + - uid: 4021 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 5657 + - uid: 4022 components: - type: Transform pos: 7.5,-250.5 parent: 2 - - uid: 5663 + - uid: 4023 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 5664 + - uid: 4024 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 5665 + - uid: 4025 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 5666 + - uid: 4026 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 5667 + - uid: 4027 components: - type: Transform pos: 1.5,-2.5 parent: 2 - - uid: 5668 + - uid: 4028 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 5669 + - uid: 4029 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 5670 + - uid: 4030 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 5671 + - uid: 4031 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 5672 + - uid: 4032 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 5673 + - uid: 4033 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 5674 + - uid: 4034 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 5675 + - uid: 4035 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 5678 + - uid: 4036 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 5679 + - uid: 4037 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 5680 + - uid: 4038 components: - type: Transform pos: 1.5,-6.5 parent: 2 - - uid: 5681 + - uid: 4039 components: - type: Transform pos: -1.5,-6.5 parent: 2 - - uid: 5682 + - uid: 4040 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 5683 + - uid: 4041 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 5684 + - uid: 4042 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 5686 + - uid: 4043 components: - type: Transform pos: 1.5,-7.5 parent: 2 - - uid: 5687 + - uid: 4044 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 5688 + - uid: 4045 components: - type: Transform pos: 1.5,-9.5 parent: 2 - - uid: 5689 + - uid: 4046 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 5690 + - uid: 4047 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 5691 + - uid: 4048 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 5692 + - uid: 4049 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 5693 + - uid: 4050 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 5741 + - uid: 4051 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 5784 + - uid: 4052 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 5785 + - uid: 4053 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 5786 + - uid: 4054 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 5787 + - uid: 4055 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 5788 + - uid: 4056 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 5789 + - uid: 4057 components: - type: Transform pos: -4.5,-40.5 parent: 2 - - uid: 5790 + - uid: 4058 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 5791 + - uid: 4059 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 5792 + - uid: 4060 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 5793 + - uid: 4061 components: - type: Transform pos: -4.5,-36.5 parent: 2 - - uid: 5794 + - uid: 4062 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 5795 + - uid: 4063 components: - type: Transform pos: -4.5,-34.5 parent: 2 - - uid: 5796 + - uid: 4064 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 5797 + - uid: 4065 components: - type: Transform pos: -1.5,-34.5 parent: 2 - - uid: 5798 + - uid: 4066 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 5799 + - uid: 4067 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 5800 + - uid: 4068 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 5801 + - uid: 4069 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 5802 + - uid: 4070 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 5803 + - uid: 4071 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 5804 + - uid: 4072 components: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 5806 + - uid: 4073 components: - type: Transform pos: 3.5,-31.5 parent: 2 - - uid: 5807 + - uid: 4074 components: - type: Transform pos: 3.5,-30.5 parent: 2 - - uid: 5808 + - uid: 4075 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 5809 + - uid: 4076 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 5810 + - uid: 4077 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 5811 + - uid: 4078 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 5812 + - uid: 4079 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 5813 + - uid: 4080 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 5814 + - uid: 4081 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 5815 + - uid: 4082 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 5816 + - uid: 4083 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 5817 + - uid: 4084 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 5960 + - uid: 4085 components: - type: Transform pos: 11.5,-251.5 parent: 2 - - uid: 5972 + - uid: 4086 components: - type: Transform pos: 4.5,-54.5 parent: 2 - - uid: 5973 + - uid: 4087 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 5974 + - uid: 4088 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 5975 + - uid: 4089 components: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 5976 + - uid: 4090 components: - type: Transform pos: 5.5,-57.5 parent: 2 - - uid: 5977 + - uid: 4091 components: - type: Transform pos: 6.5,-57.5 parent: 2 - - uid: 5978 + - uid: 4092 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 5979 + - uid: 4093 components: - type: Transform pos: 6.5,-59.5 parent: 2 - - uid: 5980 + - uid: 4094 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 5981 + - uid: 4095 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 5982 + - uid: 4096 components: - type: Transform pos: 6.5,-62.5 parent: 2 - - uid: 5983 + - uid: 4097 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 5984 + - uid: 4098 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 5985 + - uid: 4099 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 5986 + - uid: 4100 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 5987 + - uid: 4101 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 5988 + - uid: 4102 components: - type: Transform pos: 6.5,-66.5 parent: 2 - - uid: 5989 + - uid: 4103 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 5990 + - uid: 4104 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 5992 + - uid: 4105 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 5993 + - uid: 4106 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 5994 + - uid: 4107 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 5995 + - uid: 4108 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 5996 + - uid: 4109 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 5997 + - uid: 4110 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 5998 + - uid: 4111 components: - type: Transform pos: -0.5,-68.5 parent: 2 - - uid: 5999 + - uid: 4112 components: - type: Transform pos: -1.5,-68.5 parent: 2 - - uid: 6000 + - uid: 4113 components: - type: Transform pos: -2.5,-68.5 parent: 2 - - uid: 6001 + - uid: 4114 components: - type: Transform pos: -3.5,-68.5 parent: 2 - - uid: 6002 + - uid: 4115 components: - type: Transform pos: -4.5,-68.5 parent: 2 - - uid: 6004 + - uid: 4116 components: - type: Transform pos: -4.5,-69.5 parent: 2 - - uid: 6005 + - uid: 4117 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 6006 + - uid: 4118 components: - type: Transform pos: -4.5,-71.5 parent: 2 - - uid: 6007 + - uid: 4119 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 6008 + - uid: 4120 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 6009 + - uid: 4121 components: - type: Transform pos: 3.5,-57.5 parent: 2 - - uid: 6010 + - uid: 4122 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 6011 + - uid: 4123 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 6012 + - uid: 4124 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 6013 + - uid: 4125 components: - type: Transform pos: -0.5,-57.5 parent: 2 - - uid: 6014 + - uid: 4126 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 6130 + - uid: 4127 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 6131 + - uid: 4128 components: - type: Transform pos: -2.5,-98.5 parent: 2 - - uid: 6132 + - uid: 4129 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 6133 + - uid: 4130 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 6134 + - uid: 4131 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 6135 + - uid: 4132 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 6136 + - uid: 4133 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 6137 + - uid: 4134 components: - type: Transform pos: 1.5,-97.5 parent: 2 - - uid: 6138 + - uid: 4135 components: - type: Transform pos: 2.5,-97.5 parent: 2 - - uid: 6139 + - uid: 4136 components: - type: Transform pos: 3.5,-97.5 parent: 2 - - uid: 6140 + - uid: 4137 components: - type: Transform pos: 4.5,-97.5 parent: 2 - - uid: 6141 + - uid: 4138 components: - type: Transform pos: 5.5,-97.5 parent: 2 - - uid: 6142 + - uid: 4139 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 6143 + - uid: 4140 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 6144 + - uid: 4141 components: - type: Transform pos: -3.5,-96.5 parent: 2 - - uid: 6145 + - uid: 4142 components: - type: Transform pos: -3.5,-95.5 parent: 2 - - uid: 6146 + - uid: 4143 components: - type: Transform pos: -3.5,-94.5 parent: 2 - - uid: 6147 + - uid: 4144 components: - type: Transform pos: -3.5,-93.5 parent: 2 - - uid: 6148 + - uid: 4145 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 6149 + - uid: 4146 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 6150 + - uid: 4147 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 6151 + - uid: 4148 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 6152 + - uid: 4149 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 6153 + - uid: 4150 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 6154 + - uid: 4151 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 6155 + - uid: 4152 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 6156 + - uid: 4153 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 6157 + - uid: 4154 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 6158 + - uid: 4155 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 6159 + - uid: 4156 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 6160 + - uid: 4157 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 6186 + - uid: 4158 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 6285 + - uid: 4159 components: - type: Transform pos: 7.5,-249.5 parent: 2 - - uid: 6287 + - uid: 4160 components: - type: Transform pos: 7.5,-252.5 parent: 2 - - uid: 6288 + - uid: 4161 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 6289 + - uid: 4162 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 6290 + - uid: 4163 components: - type: Transform pos: 5.5,-110.5 parent: 2 - - uid: 6291 + - uid: 4164 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 6292 + - uid: 4165 components: - type: Transform pos: 3.5,-110.5 parent: 2 - - uid: 6293 + - uid: 4166 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 6294 + - uid: 4167 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 6295 + - uid: 4168 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 6296 + - uid: 4169 components: - type: Transform pos: 3.5,-114.5 parent: 2 - - uid: 6297 + - uid: 4170 components: - type: Transform pos: 3.5,-115.5 parent: 2 - - uid: 6298 + - uid: 4171 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 6299 + - uid: 4172 components: - type: Transform pos: 2.5,-116.5 parent: 2 - - uid: 6300 + - uid: 4173 components: - type: Transform pos: 1.5,-116.5 parent: 2 - - uid: 6301 + - uid: 4174 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 6305 + - uid: 4175 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 6446 + - uid: 4176 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 6447 + - uid: 4177 components: - type: Transform pos: 7.5,-152.5 parent: 2 - - uid: 6448 + - uid: 4178 components: - type: Transform pos: 7.5,-151.5 parent: 2 - - uid: 6449 + - uid: 4179 components: - type: Transform pos: 8.5,-151.5 parent: 2 - - uid: 6450 + - uid: 4180 components: - type: Transform pos: 8.5,-150.5 parent: 2 - - uid: 6451 + - uid: 4181 components: - type: Transform pos: 8.5,-149.5 parent: 2 - - uid: 6452 + - uid: 4182 components: - type: Transform pos: 8.5,-148.5 parent: 2 - - uid: 6453 + - uid: 4183 components: - type: Transform pos: 8.5,-147.5 parent: 2 - - uid: 6454 + - uid: 4184 components: - type: Transform pos: 8.5,-146.5 parent: 2 - - uid: 6455 + - uid: 4185 components: - type: Transform pos: 8.5,-145.5 parent: 2 - - uid: 6456 + - uid: 4186 components: - type: Transform pos: 8.5,-144.5 parent: 2 - - uid: 6457 + - uid: 4187 components: - type: Transform pos: 8.5,-143.5 parent: 2 - - uid: 6458 + - uid: 4188 components: - type: Transform pos: 8.5,-142.5 parent: 2 - - uid: 6459 + - uid: 4189 components: - type: Transform pos: 8.5,-141.5 parent: 2 - - uid: 6460 + - uid: 4190 components: - type: Transform pos: 8.5,-140.5 parent: 2 - - uid: 6461 + - uid: 4191 components: - type: Transform pos: 8.5,-139.5 parent: 2 - - uid: 6462 + - uid: 4192 components: - type: Transform pos: 8.5,-138.5 parent: 2 - - uid: 6463 + - uid: 4193 components: - type: Transform pos: 7.5,-138.5 parent: 2 - - uid: 6464 + - uid: 4194 components: - type: Transform pos: 6.5,-138.5 parent: 2 - - uid: 6465 + - uid: 4195 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 6466 + - uid: 4196 components: - type: Transform pos: 8.5,-137.5 parent: 2 - - uid: 6467 + - uid: 4197 components: - type: Transform pos: 8.5,-136.5 parent: 2 - - uid: 6468 + - uid: 4198 components: - type: Transform pos: 7.5,-136.5 parent: 2 - - uid: 6469 + - uid: 4199 components: - type: Transform pos: 7.5,-135.5 parent: 2 - - uid: 6470 + - uid: 4200 components: - type: Transform pos: 6.5,-135.5 parent: 2 - - uid: 6471 + - uid: 4201 components: - type: Transform pos: 5.5,-135.5 parent: 2 - - uid: 6472 + - uid: 4202 components: - type: Transform pos: 4.5,-135.5 parent: 2 - - uid: 6473 + - uid: 4203 components: - type: Transform pos: 3.5,-135.5 parent: 2 - - uid: 6474 + - uid: 4204 components: - type: Transform pos: 2.5,-135.5 parent: 2 - - uid: 6475 + - uid: 4205 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 6476 + - uid: 4206 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 6477 + - uid: 4207 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 6478 + - uid: 4208 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 6479 + - uid: 4209 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 6480 + - uid: 4210 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 6481 + - uid: 4211 components: - type: Transform pos: 0.5,-140.5 parent: 2 - - uid: 6482 + - uid: 4212 components: - type: Transform pos: -0.5,-140.5 parent: 2 - - uid: 6483 + - uid: 4213 components: - type: Transform pos: -1.5,-140.5 parent: 2 - - uid: 6484 + - uid: 4214 components: - type: Transform pos: -2.5,-140.5 parent: 2 - - uid: 6485 + - uid: 4215 components: - type: Transform pos: -3.5,-140.5 parent: 2 - - uid: 6486 + - uid: 4216 components: - type: Transform pos: -4.5,-140.5 parent: 2 - - uid: 6487 + - uid: 4217 components: - type: Transform pos: -4.5,-139.5 parent: 2 - - uid: 6488 + - uid: 4218 components: - type: Transform pos: -4.5,-138.5 parent: 2 - - uid: 6489 + - uid: 4219 components: - type: Transform pos: -4.5,-137.5 parent: 2 - - uid: 6490 + - uid: 4220 components: - type: Transform pos: -4.5,-136.5 parent: 2 - - uid: 6491 + - uid: 4221 components: - type: Transform pos: -4.5,-135.5 parent: 2 - - uid: 6492 + - uid: 4222 components: - type: Transform pos: -3.5,-135.5 parent: 2 - - uid: 6493 + - uid: 4223 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 6511 + - uid: 4224 components: - type: Transform pos: 7.5,-251.5 parent: 2 - - uid: 6552 + - uid: 4225 components: - type: Transform pos: 7.5,-248.5 parent: 2 - - uid: 6553 + - uid: 4226 components: - type: Transform pos: 8.5,-248.5 parent: 2 - - uid: 6628 + - uid: 4227 components: - type: Transform pos: 9.5,-252.5 parent: 2 - - uid: 6629 + - uid: 4228 components: - type: Transform pos: 8.5,-252.5 parent: 2 - - uid: 6632 + - uid: 4229 components: - type: Transform pos: 10.5,-252.5 parent: 2 - - uid: 6651 + - uid: 4230 components: - type: Transform pos: -15.5,-249.5 parent: 2 - - uid: 6670 + - uid: 4231 components: - type: Transform pos: -15.5,-250.5 parent: 2 - - uid: 6737 + - uid: 4232 components: - type: Transform pos: 9.5,-248.5 parent: 2 - - uid: 6754 + - uid: 4233 components: - type: Transform pos: 14.5,-248.5 parent: 2 - - uid: 6755 + - uid: 4234 components: - type: Transform pos: 11.5,-248.5 parent: 2 - - uid: 6756 + - uid: 4235 components: - type: Transform pos: 12.5,-248.5 parent: 2 - - uid: 6757 + - uid: 4236 components: - type: Transform pos: 13.5,-248.5 parent: 2 - - uid: 6758 + - uid: 4237 components: - type: Transform pos: 15.5,-249.5 parent: 2 - - uid: 6761 + - uid: 4238 components: - type: Transform pos: 10.5,-248.5 parent: 2 - - uid: 6762 + - uid: 4239 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 6764 + - uid: 4240 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 6920 + - uid: 4241 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 6921 + - uid: 4242 components: - type: Transform pos: -2.5,-162.5 parent: 2 - - uid: 6922 + - uid: 4243 components: - type: Transform pos: -2.5,-163.5 parent: 2 - - uid: 6923 + - uid: 4244 components: - type: Transform pos: -1.5,-163.5 parent: 2 - - uid: 6924 + - uid: 4245 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 6925 + - uid: 4246 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 6926 + - uid: 4247 components: - type: Transform pos: 1.5,-163.5 parent: 2 - - uid: 6927 + - uid: 4248 components: - type: Transform pos: 1.5,-164.5 parent: 2 - - uid: 6928 + - uid: 4249 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 6929 + - uid: 4250 components: - type: Transform pos: 1.5,-165.5 parent: 2 - - uid: 6930 + - uid: 4251 components: - type: Transform pos: 1.5,-166.5 parent: 2 - - uid: 6931 + - uid: 4252 components: - type: Transform pos: 1.5,-167.5 parent: 2 - - uid: 6932 + - uid: 4253 components: - type: Transform pos: 1.5,-168.5 parent: 2 - - uid: 6933 + - uid: 4254 components: - type: Transform pos: 1.5,-169.5 parent: 2 - - uid: 6934 + - uid: 4255 components: - type: Transform pos: 1.5,-170.5 parent: 2 - - uid: 6935 + - uid: 4256 components: - type: Transform pos: 1.5,-171.5 parent: 2 - - uid: 6936 + - uid: 4257 components: - type: Transform pos: 1.5,-172.5 parent: 2 - - uid: 6937 + - uid: 4258 components: - type: Transform pos: 1.5,-173.5 parent: 2 - - uid: 6938 + - uid: 4259 components: - type: Transform pos: 1.5,-174.5 parent: 2 - - uid: 6939 + - uid: 4260 components: - type: Transform pos: 1.5,-175.5 parent: 2 - - uid: 6940 + - uid: 4261 components: - type: Transform pos: 1.5,-176.5 parent: 2 - - uid: 6941 + - uid: 4262 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 6942 + - uid: 4263 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 7064 + - uid: 4264 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 7065 + - uid: 4265 components: - type: Transform pos: 5.5,-188.5 parent: 2 - - uid: 7066 + - uid: 4266 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 7067 + - uid: 4267 components: - type: Transform pos: 5.5,-189.5 parent: 2 - - uid: 7068 + - uid: 4268 components: - type: Transform pos: 5.5,-190.5 parent: 2 - - uid: 7069 + - uid: 4269 components: - type: Transform pos: 5.5,-191.5 parent: 2 - - uid: 7070 + - uid: 4270 components: - type: Transform pos: 5.5,-192.5 parent: 2 - - uid: 7071 + - uid: 4271 components: - type: Transform pos: 5.5,-193.5 parent: 2 - - uid: 7072 + - uid: 4272 components: - type: Transform pos: 5.5,-194.5 parent: 2 - - uid: 7073 + - uid: 4273 components: - type: Transform pos: 5.5,-195.5 parent: 2 - - uid: 7074 + - uid: 4274 components: - type: Transform pos: 5.5,-196.5 parent: 2 - - uid: 7075 + - uid: 4275 components: - type: Transform pos: 5.5,-197.5 parent: 2 - - uid: 7076 + - uid: 4276 components: - type: Transform pos: 5.5,-198.5 parent: 2 - - uid: 7077 + - uid: 4277 components: - type: Transform pos: 4.5,-198.5 parent: 2 - - uid: 7078 + - uid: 4278 components: - type: Transform pos: 3.5,-198.5 parent: 2 - - uid: 7079 + - uid: 4279 components: - type: Transform pos: 2.5,-198.5 parent: 2 - - uid: 7080 + - uid: 4280 components: - type: Transform pos: 1.5,-198.5 parent: 2 - - uid: 7081 + - uid: 4281 components: - type: Transform pos: 0.5,-198.5 parent: 2 - - uid: 7082 + - uid: 4282 components: - type: Transform pos: -0.5,-198.5 parent: 2 - - uid: 7083 + - uid: 4283 components: - type: Transform pos: -1.5,-198.5 parent: 2 - - uid: 7084 + - uid: 4284 components: - type: Transform pos: -2.5,-198.5 parent: 2 - - uid: 7085 + - uid: 4285 components: - type: Transform pos: -2.5,-199.5 parent: 2 - - uid: 7086 + - uid: 4286 components: - type: Transform pos: -2.5,-200.5 parent: 2 - - uid: 7087 + - uid: 4287 components: - type: Transform pos: -2.5,-201.5 parent: 2 - - uid: 7088 + - uid: 4288 components: - type: Transform pos: -2.5,-202.5 parent: 2 - - uid: 7089 + - uid: 4289 components: - type: Transform pos: -2.5,-203.5 parent: 2 - - uid: 7090 + - uid: 4290 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 7243 + - uid: 4291 components: - type: Transform pos: -15.5,-248.5 parent: 2 - - uid: 7262 + - uid: 4292 components: - type: Transform pos: 7.5,-337.5 parent: 2 - - uid: 7263 + - uid: 4293 components: - type: Transform pos: 7.5,-340.5 parent: 2 - - uid: 7481 + - uid: 4294 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 7575 + - uid: 4295 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 7576 + - uid: 4296 components: - type: Transform pos: 1.5,-229.5 parent: 2 - - uid: 7577 + - uid: 4297 components: - type: Transform pos: 0.5,-229.5 parent: 2 - - uid: 7584 + - uid: 4298 components: - type: Transform pos: -0.5,-230.5 parent: 2 - - uid: 7586 + - uid: 4299 components: - type: Transform pos: -1.5,-230.5 parent: 2 - - uid: 7587 + - uid: 4300 components: - type: Transform pos: -2.5,-230.5 parent: 2 - - uid: 7589 + - uid: 4301 components: - type: Transform pos: -2.5,-229.5 parent: 2 - - uid: 7590 + - uid: 4302 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 7608 + - uid: 4303 components: - type: Transform pos: 0.5,-228.5 parent: 2 - - uid: 7609 + - uid: 4304 components: - type: Transform pos: 0.5,-227.5 parent: 2 - - uid: 7610 + - uid: 4305 components: - type: Transform pos: 0.5,-226.5 parent: 2 - - uid: 7611 + - uid: 4306 components: - type: Transform pos: 0.5,-225.5 parent: 2 - - uid: 7612 + - uid: 4307 components: - type: Transform pos: 0.5,-224.5 parent: 2 - - uid: 7613 + - uid: 4308 components: - type: Transform pos: 0.5,-223.5 parent: 2 - - uid: 7614 + - uid: 4309 components: - type: Transform pos: 0.5,-222.5 parent: 2 - - uid: 7615 + - uid: 4310 components: - type: Transform pos: 0.5,-221.5 parent: 2 - - uid: 7616 + - uid: 4311 components: - type: Transform pos: 0.5,-220.5 parent: 2 - - uid: 7617 + - uid: 4312 components: - type: Transform pos: 0.5,-219.5 parent: 2 - - uid: 7618 + - uid: 4313 components: - type: Transform pos: 1.5,-219.5 parent: 2 - - uid: 7619 + - uid: 4314 components: - type: Transform pos: 2.5,-219.5 parent: 2 - - uid: 7880 + - uid: 4315 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 7965 + - uid: 4316 components: - type: Transform pos: 6.5,-250.5 parent: 2 - - uid: 7966 + - uid: 4317 components: - type: Transform pos: 4.5,-250.5 parent: 2 - - uid: 7968 + - uid: 4318 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 7969 + - uid: 4319 components: - type: Transform pos: 5.5,-250.5 parent: 2 - - uid: 7970 + - uid: 4320 components: - type: Transform pos: 2.5,-248.5 parent: 2 - - uid: 8102 + - uid: 4321 components: - type: Transform pos: 3.5,-250.5 parent: 2 - - uid: 8114 + - uid: 4322 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 8140 + - uid: 4323 components: - type: Transform pos: 0.5,-247.5 parent: 2 - - uid: 8179 + - uid: 4324 components: - type: Transform pos: 2.5,-250.5 parent: 2 - - uid: 8203 + - uid: 4325 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 8316 + - uid: 4326 components: - type: Transform pos: 15.5,-138.5 parent: 2 - - uid: 8317 + - uid: 4327 components: - type: Transform pos: 16.5,-138.5 parent: 2 - - uid: 8318 + - uid: 4328 components: - type: Transform pos: 17.5,-138.5 parent: 2 - - uid: 8319 + - uid: 4329 components: - type: Transform pos: 17.5,-137.5 parent: 2 - - uid: 8321 + - uid: 4330 components: - type: Transform pos: 15.5,-139.5 parent: 2 - - uid: 8322 + - uid: 4331 components: - type: Transform pos: 15.5,-140.5 parent: 2 - - uid: 8324 + - uid: 4332 components: - type: Transform pos: 15.5,-142.5 parent: 2 - - uid: 8325 + - uid: 4333 components: - type: Transform pos: 15.5,-143.5 parent: 2 - - uid: 8326 + - uid: 4334 components: - type: Transform pos: 15.5,-144.5 parent: 2 - - uid: 8327 + - uid: 4335 components: - type: Transform pos: 15.5,-145.5 parent: 2 - - uid: 8328 + - uid: 4336 components: - type: Transform pos: 15.5,-147.5 parent: 2 - - uid: 8329 + - uid: 4337 components: - type: Transform pos: 15.5,-148.5 parent: 2 - - uid: 8330 + - uid: 4338 components: - type: Transform pos: 15.5,-149.5 parent: 2 - - uid: 8331 + - uid: 4339 components: - type: Transform pos: 15.5,-150.5 parent: 2 - - uid: 8332 + - uid: 4340 components: - type: Transform pos: 15.5,-151.5 parent: 2 - - uid: 8333 + - uid: 4341 components: - type: Transform pos: 15.5,-153.5 parent: 2 - - uid: 8334 + - uid: 4342 components: - type: Transform pos: 15.5,-154.5 parent: 2 - - uid: 8335 + - uid: 4343 components: - type: Transform pos: 15.5,-155.5 parent: 2 - - uid: 8336 + - uid: 4344 components: - type: Transform pos: 15.5,-156.5 parent: 2 - - uid: 8337 + - uid: 4345 components: - type: Transform pos: 15.5,-157.5 parent: 2 - - uid: 8338 + - uid: 4346 components: - type: Transform pos: 15.5,-158.5 parent: 2 - - uid: 8339 + - uid: 4347 components: - type: Transform pos: 15.5,-159.5 parent: 2 - - uid: 8340 + - uid: 4348 components: - type: Transform pos: 15.5,-160.5 parent: 2 - - uid: 8341 + - uid: 4349 components: - type: Transform pos: 15.5,-162.5 parent: 2 - - uid: 8342 + - uid: 4350 components: - type: Transform pos: 15.5,-163.5 parent: 2 - - uid: 8343 + - uid: 4351 components: - type: Transform pos: 15.5,-164.5 parent: 2 - - uid: 8344 + - uid: 4352 components: - type: Transform pos: 15.5,-165.5 parent: 2 - - uid: 8501 + - uid: 4353 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 8795 + - uid: 4354 components: - type: Transform pos: -3.5,-247.5 parent: 2 - - uid: 9144 + - uid: 4355 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9145 + - uid: 4356 components: - type: Transform pos: 8.5,-285.5 parent: 2 - - uid: 9146 + - uid: 4357 components: - type: Transform pos: 8.5,-286.5 parent: 2 - - uid: 9147 + - uid: 4358 components: - type: Transform pos: 8.5,-287.5 parent: 2 - - uid: 9148 + - uid: 4359 components: - type: Transform pos: 7.5,-287.5 parent: 2 - - uid: 9149 + - uid: 4360 components: - type: Transform pos: 6.5,-287.5 parent: 2 - - uid: 9150 + - uid: 4361 components: - type: Transform pos: 5.5,-287.5 parent: 2 - - uid: 9151 + - uid: 4362 components: - type: Transform pos: 4.5,-287.5 parent: 2 - - uid: 9152 + - uid: 4363 components: - type: Transform pos: 3.5,-287.5 parent: 2 - - uid: 9153 + - uid: 4364 components: - type: Transform pos: 2.5,-287.5 parent: 2 - - uid: 9154 + - uid: 4365 components: - type: Transform pos: 2.5,-286.5 parent: 2 - - uid: 9155 + - uid: 4366 components: - type: Transform pos: 2.5,-285.5 parent: 2 - - uid: 9156 + - uid: 4367 components: - type: Transform pos: 2.5,-284.5 parent: 2 - - uid: 9157 + - uid: 4368 components: - type: Transform pos: 2.5,-283.5 parent: 2 - - uid: 9158 + - uid: 4369 components: - type: Transform pos: 2.5,-282.5 parent: 2 - - uid: 9159 + - uid: 4370 components: - type: Transform pos: 2.5,-281.5 parent: 2 - - uid: 9160 + - uid: 4371 components: - type: Transform pos: 3.5,-281.5 parent: 2 - - uid: 9161 + - uid: 4372 components: - type: Transform pos: 4.5,-281.5 parent: 2 - - uid: 9162 + - uid: 4373 components: - type: Transform pos: 5.5,-281.5 parent: 2 - - uid: 9163 + - uid: 4374 components: - type: Transform pos: 1.5,-285.5 parent: 2 - - uid: 9168 + - uid: 4375 components: - type: Transform pos: 5.5,-283.5 parent: 2 - - uid: 9169 + - uid: 4376 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9175 + - uid: 4377 components: - type: Transform pos: 5.5,-280.5 parent: 2 - - uid: 9176 + - uid: 4378 components: - type: Transform pos: 5.5,-279.5 parent: 2 - - uid: 9177 + - uid: 4379 components: - type: Transform pos: 5.5,-278.5 parent: 2 - - uid: 9178 + - uid: 4380 components: - type: Transform pos: 5.5,-277.5 parent: 2 - - uid: 9179 + - uid: 4381 components: - type: Transform pos: 5.5,-276.5 parent: 2 - - uid: 9180 + - uid: 4382 components: - type: Transform pos: 5.5,-275.5 parent: 2 - - uid: 9181 + - uid: 4383 components: - type: Transform pos: 5.5,-274.5 parent: 2 - - uid: 9182 + - uid: 4384 components: - type: Transform pos: 5.5,-273.5 parent: 2 - - uid: 9183 + - uid: 4385 components: - type: Transform pos: 5.5,-272.5 parent: 2 - - uid: 9184 + - uid: 4386 components: - type: Transform pos: 6.5,-272.5 parent: 2 - - uid: 9186 + - uid: 4387 components: - type: Transform pos: 7.5,-272.5 parent: 2 - - uid: 9188 + - uid: 4388 components: - type: Transform pos: 0.5,-285.5 parent: 2 - - uid: 9189 + - uid: 4389 components: - type: Transform pos: -0.5,-285.5 parent: 2 - - uid: 9190 + - uid: 4390 components: - type: Transform pos: -1.5,-285.5 parent: 2 - - uid: 9191 + - uid: 4391 components: - type: Transform pos: -1.5,-284.5 parent: 2 - - uid: 9192 + - uid: 4392 components: - type: Transform pos: -2.5,-284.5 parent: 2 - - uid: 9193 + - uid: 4393 components: - type: Transform pos: -2.5,-283.5 parent: 2 - - uid: 9194 + - uid: 4394 components: - type: Transform pos: -2.5,-282.5 parent: 2 - - uid: 9195 + - uid: 4395 components: - type: Transform pos: -2.5,-281.5 parent: 2 - - uid: 9196 + - uid: 4396 components: - type: Transform pos: -2.5,-280.5 parent: 2 - - uid: 9197 + - uid: 4397 components: - type: Transform pos: -2.5,-279.5 parent: 2 - - uid: 9198 + - uid: 4398 components: - type: Transform pos: -3.5,-279.5 parent: 2 - - uid: 9199 + - uid: 4399 components: - type: Transform pos: -4.5,-279.5 parent: 2 - - uid: 9200 + - uid: 4400 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 9201 + - uid: 4401 components: - type: Transform pos: -5.5,-278.5 parent: 2 - - uid: 9202 + - uid: 4402 components: - type: Transform pos: -5.5,-277.5 parent: 2 - - uid: 9203 + - uid: 4403 components: - type: Transform pos: -5.5,-276.5 parent: 2 - - uid: 9204 + - uid: 4404 components: - type: Transform pos: -5.5,-275.5 parent: 2 - - uid: 9205 + - uid: 4405 components: - type: Transform pos: -5.5,-274.5 parent: 2 - - uid: 9206 + - uid: 4406 components: - type: Transform pos: -5.5,-273.5 parent: 2 - - uid: 9207 + - uid: 4407 components: - type: Transform pos: -5.5,-272.5 parent: 2 - - uid: 9208 + - uid: 4408 components: - type: Transform pos: -5.5,-271.5 parent: 2 - - uid: 9210 + - uid: 4409 components: - type: Transform pos: -4.5,-271.5 parent: 2 - - uid: 9211 + - uid: 4410 components: - type: Transform pos: -3.5,-271.5 parent: 2 - - uid: 9212 + - uid: 4411 components: - type: Transform pos: -2.5,-271.5 parent: 2 - - uid: 9213 + - uid: 4412 components: - type: Transform pos: -1.5,-271.5 parent: 2 - - uid: 9214 + - uid: 4413 components: - type: Transform pos: -1.5,-272.5 parent: 2 - - uid: 9502 + - uid: 4414 components: - type: Transform pos: 3.5,-340.5 parent: 2 - - uid: 9588 + - uid: 4415 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 9589 + - uid: 4416 components: - type: Transform pos: 19.5,-305.5 parent: 2 - - uid: 9590 + - uid: 4417 components: - type: Transform pos: 24.5,-306.5 parent: 2 - - uid: 9591 + - uid: 4418 components: - type: Transform pos: 25.5,-306.5 parent: 2 - - uid: 9592 + - uid: 4419 components: - type: Transform pos: 25.5,-307.5 parent: 2 - - uid: 9593 + - uid: 4420 components: - type: Transform pos: 25.5,-308.5 parent: 2 - - uid: 9594 + - uid: 4421 components: - type: Transform pos: 24.5,-308.5 parent: 2 - - uid: 9595 + - uid: 4422 components: - type: Transform pos: 23.5,-308.5 parent: 2 - - uid: 9596 + - uid: 4423 components: - type: Transform pos: 20.5,-304.5 parent: 2 - - uid: 9597 + - uid: 4424 components: - type: Transform pos: 24.5,-309.5 parent: 2 - - uid: 9598 + - uid: 4425 components: - type: Transform pos: 24.5,-310.5 parent: 2 - - uid: 9599 + - uid: 4426 components: - type: Transform pos: 24.5,-304.5 parent: 2 - - uid: 9600 + - uid: 4427 components: - type: Transform pos: 23.5,-310.5 parent: 2 - - uid: 9601 + - uid: 4428 components: - type: Transform pos: 22.5,-310.5 parent: 2 - - uid: 9602 + - uid: 4429 components: - type: Transform pos: 21.5,-310.5 parent: 2 - - uid: 9603 + - uid: 4430 components: - type: Transform pos: 20.5,-310.5 parent: 2 - - uid: 9604 + - uid: 4431 components: - type: Transform pos: 20.5,-309.5 parent: 2 - - uid: 9605 + - uid: 4432 components: - type: Transform pos: 21.5,-304.5 parent: 2 - - uid: 9606 + - uid: 4433 components: - type: Transform pos: 22.5,-304.5 parent: 2 - - uid: 9607 + - uid: 4434 components: - type: Transform pos: 24.5,-305.5 parent: 2 - - uid: 9608 + - uid: 4435 components: - type: Transform pos: 19.5,-308.5 parent: 2 - - uid: 9609 + - uid: 4436 components: - type: Transform pos: 19.5,-307.5 parent: 2 - - uid: 9610 + - uid: 4437 components: - type: Transform pos: 20.5,-307.5 parent: 2 - - uid: 9611 + - uid: 4438 components: - type: Transform pos: 23.5,-304.5 parent: 2 - - uid: 9612 + - uid: 4439 components: - type: Transform pos: 19.5,-309.5 parent: 2 - - uid: 9614 + - uid: 4440 components: - type: Transform pos: 20.5,-305.5 parent: 2 - - uid: 9615 + - uid: 4441 components: - type: Transform pos: 19.5,-306.5 parent: 2 - - uid: 10217 + - uid: 4442 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10227 + - uid: 4443 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 10228 + - uid: 4444 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10229 + - uid: 4445 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10230 + - uid: 4446 components: - type: Transform pos: -6.5,-297.5 parent: 2 - - uid: 10231 + - uid: 4447 components: - type: Transform pos: -5.5,-297.5 parent: 2 - - uid: 10232 + - uid: 4448 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10233 + - uid: 4449 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10234 + - uid: 4450 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10235 + - uid: 4451 components: - type: Transform pos: -1.5,-297.5 parent: 2 - - uid: 10236 + - uid: 4452 components: - type: Transform pos: -0.5,-297.5 parent: 2 - - uid: 10237 + - uid: 4453 components: - type: Transform pos: 0.5,-297.5 parent: 2 - - uid: 10238 + - uid: 4454 components: - type: Transform pos: 2.5,-297.5 parent: 2 - - uid: 10239 + - uid: 4455 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10240 + - uid: 4456 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10241 + - uid: 4457 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10242 + - uid: 4458 components: - type: Transform pos: 6.5,-297.5 parent: 2 - - uid: 10243 + - uid: 4459 components: - type: Transform pos: 7.5,-297.5 parent: 2 - - uid: 10244 + - uid: 4460 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10245 + - uid: 4461 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10246 + - uid: 4462 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10247 + - uid: 4463 components: - type: Transform pos: 9.5,-299.5 parent: 2 - - uid: 10248 + - uid: 4464 components: - type: Transform pos: 9.5,-300.5 parent: 2 - - uid: 10249 + - uid: 4465 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10250 + - uid: 4466 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10251 + - uid: 4467 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10252 + - uid: 4468 components: - type: Transform pos: 9.5,-304.5 parent: 2 - - uid: 10253 + - uid: 4469 components: - type: Transform pos: 9.5,-305.5 parent: 2 - - uid: 10254 + - uid: 4470 components: - type: Transform pos: 9.5,-306.5 parent: 2 - - uid: 10255 + - uid: 4471 components: - type: Transform pos: 9.5,-307.5 parent: 2 - - uid: 10256 + - uid: 4472 components: - type: Transform pos: 8.5,-307.5 parent: 2 - - uid: 10257 + - uid: 4473 components: - type: Transform pos: 7.5,-307.5 parent: 2 - - uid: 10258 + - uid: 4474 components: - type: Transform pos: 6.5,-307.5 parent: 2 - - uid: 10259 + - uid: 4475 components: - type: Transform pos: 6.5,-306.5 parent: 2 - - uid: 10260 + - uid: 4476 components: - type: Transform pos: 6.5,-305.5 parent: 2 - - uid: 10261 + - uid: 4477 components: - type: Transform pos: 6.5,-304.5 parent: 2 - - uid: 10262 + - uid: 4478 components: - type: Transform pos: 6.5,-303.5 parent: 2 - - uid: 10263 + - uid: 4479 components: - type: Transform pos: 6.5,-302.5 parent: 2 - - uid: 10264 + - uid: 4480 components: - type: Transform pos: 6.5,-301.5 parent: 2 - - uid: 10265 + - uid: 4481 components: - type: Transform pos: 5.5,-301.5 parent: 2 - - uid: 10266 + - uid: 4482 components: - type: Transform pos: 4.5,-301.5 parent: 2 - - uid: 10267 + - uid: 4483 components: - type: Transform pos: 3.5,-301.5 parent: 2 - - uid: 10268 + - uid: 4484 components: - type: Transform pos: 2.5,-301.5 parent: 2 - - uid: 10269 + - uid: 4485 components: - type: Transform pos: 6.5,-308.5 parent: 2 - - uid: 10270 + - uid: 4486 components: - type: Transform pos: 6.5,-309.5 parent: 2 - - uid: 10271 + - uid: 4487 components: - type: Transform pos: 6.5,-310.5 parent: 2 - - uid: 10272 + - uid: 4488 components: - type: Transform pos: 6.5,-311.5 parent: 2 - - uid: 10273 + - uid: 4489 components: - type: Transform pos: 6.5,-312.5 parent: 2 - - uid: 10274 + - uid: 4490 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 10275 + - uid: 4491 components: - type: Transform pos: 6.5,-314.5 parent: 2 - - uid: 10279 + - uid: 4492 components: - type: Transform pos: 9.5,-308.5 parent: 2 - - uid: 10280 + - uid: 4493 components: - type: Transform pos: 9.5,-309.5 parent: 2 - - uid: 10281 + - uid: 4494 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10282 + - uid: 4495 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10283 + - uid: 4496 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10284 + - uid: 4497 components: - type: Transform pos: 10.5,-312.5 parent: 2 - - uid: 10285 + - uid: 4498 components: - type: Transform pos: 10.5,-313.5 parent: 2 - - uid: 10286 + - uid: 4499 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10287 + - uid: 4500 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10288 + - uid: 4501 components: - type: Transform pos: 10.5,-316.5 parent: 2 - - uid: 10289 + - uid: 4502 components: - type: Transform pos: 10.5,-317.5 parent: 2 - - uid: 10290 + - uid: 4503 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10291 + - uid: 4504 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10292 + - uid: 4505 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10293 + - uid: 4506 components: - type: Transform pos: 7.5,-318.5 parent: 2 - - uid: 10294 + - uid: 4507 components: - type: Transform pos: 6.5,-318.5 parent: 2 - - uid: 10295 + - uid: 4508 components: - type: Transform pos: 5.5,-317.5 parent: 2 - - uid: 10296 + - uid: 4509 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10297 + - uid: 4510 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10298 + - uid: 4511 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10299 + - uid: 4512 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - uid: 10300 - components: - - type: Transform - pos: 1.5,-319.5 - parent: 2 - - uid: 10301 + - uid: 4513 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 10302 + - uid: 4514 components: - type: Transform pos: 0.5,-318.5 parent: 2 - - uid: 10303 + - uid: 4515 components: - type: Transform pos: 0.5,-317.5 parent: 2 - - uid: 10304 + - uid: 4516 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 10305 + - uid: 4517 components: - type: Transform pos: -1.5,-317.5 parent: 2 - - uid: 10306 + - uid: 4518 components: - type: Transform pos: -2.5,-317.5 parent: 2 - - uid: 10307 + - uid: 4519 components: - type: Transform pos: -3.5,-317.5 parent: 2 - - uid: 10308 + - uid: 4520 components: - type: Transform pos: -3.5,-318.5 parent: 2 - - uid: 10309 + - uid: 4521 components: - type: Transform pos: -3.5,-319.5 parent: 2 - - uid: 10310 + - uid: 4522 components: - type: Transform pos: -3.5,-320.5 parent: 2 - - uid: 10311 + - uid: 4523 components: - type: Transform pos: 0.5,-298.5 parent: 2 - - uid: 10312 + - uid: 4524 components: - type: Transform pos: 0.5,-299.5 parent: 2 - - uid: 10313 + - uid: 4525 components: - type: Transform pos: 0.5,-300.5 parent: 2 - - uid: 10314 + - uid: 4526 components: - type: Transform pos: 0.5,-301.5 parent: 2 - - uid: 10315 + - uid: 4527 components: - type: Transform pos: 0.5,-302.5 parent: 2 - - uid: 10316 + - uid: 4528 components: - type: Transform pos: 0.5,-303.5 parent: 2 - - uid: 10317 + - uid: 4529 components: - type: Transform pos: 0.5,-304.5 parent: 2 - - uid: 10318 + - uid: 4530 components: - type: Transform pos: 0.5,-305.5 parent: 2 - - uid: 10319 + - uid: 4531 components: - type: Transform pos: 0.5,-306.5 parent: 2 - - uid: 10320 + - uid: 4532 components: - type: Transform pos: 0.5,-307.5 parent: 2 - - uid: 10321 + - uid: 4533 components: - type: Transform pos: 0.5,-308.5 parent: 2 - - uid: 10322 + - uid: 4534 components: - type: Transform pos: -0.5,-308.5 parent: 2 - - uid: 10323 + - uid: 4535 components: - type: Transform pos: -1.5,-308.5 parent: 2 - - uid: 10324 + - uid: 4536 components: - type: Transform pos: -2.5,-308.5 parent: 2 - - uid: 10325 + - uid: 4537 components: - type: Transform pos: -3.5,-308.5 parent: 2 - - uid: 10332 + - uid: 4538 components: - type: Transform pos: 5.5,-314.5 parent: 2 - - uid: 10336 + - uid: 4539 components: - type: Transform pos: 5.5,-315.5 parent: 2 - - uid: 10337 + - uid: 4540 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 10339 + - uid: 4541 components: - type: Transform pos: -3.5,-303.5 parent: 2 - - uid: 10340 + - uid: 4542 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10341 + - uid: 4543 components: - type: Transform pos: -5.5,-303.5 parent: 2 - - uid: 10342 + - uid: 4544 components: - type: Transform pos: -6.5,-303.5 parent: 2 - - uid: 10343 + - uid: 4545 components: - type: Transform pos: -7.5,-303.5 parent: 2 - - uid: 10348 + - uid: 4546 components: - type: Transform pos: -3.5,-307.5 parent: 2 - - uid: 10349 + - uid: 4547 components: - type: Transform pos: -3.5,-306.5 parent: 2 - - uid: 10350 + - uid: 4548 components: - type: Transform pos: -3.5,-305.5 parent: 2 - - uid: 10351 + - uid: 4549 components: - type: Transform pos: -3.5,-304.5 parent: 2 - - uid: 10634 + - uid: 4550 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 10657 + - uid: 4551 components: - type: Transform pos: 7.5,-336.5 parent: 2 - - uid: 10673 + - uid: 4552 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 10763 + - uid: 4553 components: - type: Transform pos: 0.5,-344.5 parent: 2 - - uid: 10853 + - uid: 4554 components: - type: Transform pos: 7.5,-344.5 parent: 2 - - uid: 10856 + - uid: 4555 components: - type: Transform pos: 2.5,-340.5 parent: 2 - - uid: 10857 + - uid: 4556 components: - type: Transform pos: 1.5,-340.5 parent: 2 - - uid: 10858 + - uid: 4557 components: - type: Transform pos: 0.5,-340.5 parent: 2 - - uid: 10859 + - uid: 4558 components: - type: Transform pos: -0.5,-340.5 parent: 2 - - uid: 10865 + - uid: 4559 components: - type: Transform pos: 0.5,-342.5 parent: 2 - - uid: 10871 + - uid: 4560 components: - type: Transform pos: -5.5,-335.5 parent: 2 - - uid: 10876 + - uid: 4561 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 10877 + - uid: 4562 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 10878 + - uid: 4563 components: - type: Transform pos: 4.5,-347.5 parent: 2 - - uid: 10879 + - uid: 4564 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 10880 + - uid: 4565 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 10881 + - uid: 4566 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 10882 + - uid: 4567 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 10883 + - uid: 4568 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 10884 + - uid: 4569 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 10885 + - uid: 4570 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 10886 + - uid: 4571 components: - type: Transform pos: 0.5,-337.5 parent: 2 - - uid: 10887 + - uid: 4572 components: - type: Transform pos: 0.5,-338.5 parent: 2 - - uid: 10888 + - uid: 4573 components: - type: Transform pos: 0.5,-339.5 parent: 2 - - uid: 10889 + - uid: 4574 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 10890 + - uid: 4575 components: - type: Transform pos: 2.5,-330.5 parent: 2 - - uid: 10891 + - uid: 4576 components: - type: Transform pos: 3.5,-330.5 parent: 2 - - uid: 10892 + - uid: 4577 components: - type: Transform pos: 4.5,-330.5 parent: 2 - - uid: 10893 + - uid: 4578 components: - type: Transform pos: 5.5,-330.5 parent: 2 - - uid: 10894 + - uid: 4579 components: - type: Transform pos: 5.5,-329.5 parent: 2 - - uid: 10895 + - uid: 4580 components: - type: Transform pos: 6.5,-329.5 parent: 2 - - uid: 10896 + - uid: 4581 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10897 + - uid: 4582 components: - type: Transform pos: -1.5,-340.5 parent: 2 - - uid: 10898 + - uid: 4583 components: - type: Transform pos: -2.5,-340.5 parent: 2 - - uid: 10899 + - uid: 4584 components: - type: Transform pos: -3.5,-340.5 parent: 2 - - uid: 10900 + - uid: 4585 components: - type: Transform pos: -4.5,-340.5 parent: 2 - - uid: 10901 + - uid: 4586 components: - type: Transform pos: -4.5,-341.5 parent: 2 - - uid: 10902 + - uid: 4587 components: - type: Transform pos: -4.5,-342.5 parent: 2 - - uid: 10903 + - uid: 4588 components: - type: Transform pos: -4.5,-343.5 parent: 2 - - uid: 10904 + - uid: 4589 components: - type: Transform pos: -4.5,-344.5 parent: 2 - - uid: 10905 + - uid: 4590 components: - type: Transform pos: -4.5,-345.5 parent: 2 - - uid: 10906 + - uid: 4591 components: - type: Transform pos: -4.5,-346.5 parent: 2 - - uid: 10907 + - uid: 4592 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 10908 + - uid: 4593 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10909 + - uid: 4594 components: - type: Transform pos: -4.5,-339.5 parent: 2 - - uid: 10910 + - uid: 4595 components: - type: Transform pos: -4.5,-338.5 parent: 2 - - uid: 10911 + - uid: 4596 components: - type: Transform pos: -4.5,-337.5 parent: 2 - - uid: 10912 + - uid: 4597 components: - type: Transform pos: -4.5,-336.5 parent: 2 - - uid: 10916 + - uid: 4598 components: - type: Transform pos: 1.5,-345.5 parent: 2 - - uid: 10968 + - uid: 4599 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 11541 + - uid: 4600 components: - type: Transform pos: 6.5,-361.5 parent: 2 - - uid: 11542 + - uid: 4601 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 11543 + - uid: 4602 components: - type: Transform pos: 5.5,-360.5 parent: 2 - - uid: 11544 + - uid: 4603 components: - type: Transform pos: 4.5,-360.5 parent: 2 - - uid: 11545 + - uid: 4604 components: - type: Transform pos: 3.5,-360.5 parent: 2 - - uid: 11546 + - uid: 4605 components: - type: Transform pos: 2.5,-360.5 parent: 2 - - uid: 11552 + - uid: 4606 components: - type: Transform pos: 1.5,-361.5 parent: 2 - - uid: 11920 + - uid: 4607 components: - type: Transform pos: 2.5,-389.5 parent: 2 - - uid: 11923 + - uid: 4608 components: - type: Transform pos: 1.5,-389.5 parent: 2 - - uid: 11932 + - uid: 4609 components: - type: Transform pos: 0.5,-387.5 parent: 2 - - uid: 11934 + - uid: 4610 components: - type: Transform pos: 0.5,-388.5 parent: 2 - - uid: 11935 + - uid: 4611 components: - type: Transform pos: 0.5,-389.5 parent: 2 - - uid: 11964 + - uid: 4612 components: - type: Transform pos: 7.5,-334.5 parent: 2 - - uid: 11969 + - uid: 4613 components: - type: Transform pos: 0.5,-343.5 parent: 2 - - uid: 12996 + - uid: 4614 components: - type: Transform pos: 7.5,-341.5 parent: 2 - - uid: 13398 + - uid: 4615 + components: + - type: Transform + pos: 1.5,-319.5 + parent: 2 + - uid: 4616 components: - type: Transform pos: -7.5,-335.5 parent: 2 - - uid: 13400 + - uid: 4617 components: - type: Transform pos: 5.5,-340.5 parent: 2 - - uid: 13403 + - uid: 4618 components: - type: Transform pos: 6.5,-340.5 parent: 2 - - uid: 13467 + - uid: 4619 components: - type: Transform pos: 6.5,-114.5 parent: 2 - - uid: 13514 + - uid: 4620 components: - type: Transform pos: 7.5,-114.5 parent: 2 - - uid: 13515 + - uid: 4621 components: - type: Transform pos: 8.5,-114.5 parent: 2 - - uid: 13516 + - uid: 4622 components: - type: Transform pos: 8.5,-115.5 parent: 2 - - uid: 13517 + - uid: 4623 components: - type: Transform pos: 8.5,-116.5 parent: 2 - - uid: 14482 + - uid: 4624 components: - type: Transform pos: 5.5,-96.5 parent: 2 - - uid: 14483 + - uid: 4625 components: - type: Transform pos: 5.5,-95.5 parent: 2 - - uid: 14484 + - uid: 4626 components: - type: Transform pos: 5.5,-94.5 parent: 2 - - uid: 14485 + - uid: 4627 components: - type: Transform pos: 5.5,-93.5 parent: 2 - - uid: 14486 + - uid: 4628 components: - type: Transform pos: 5.5,-92.5 parent: 2 - - uid: 14487 + - uid: 4629 components: - type: Transform pos: 5.5,-91.5 parent: 2 - - uid: 14488 + - uid: 4630 components: - type: Transform pos: 5.5,-90.5 parent: 2 - - uid: 14489 + - uid: 4631 components: - type: Transform pos: 5.5,-89.5 parent: 2 - - uid: 14490 + - uid: 4632 components: - type: Transform pos: 5.5,-88.5 parent: 2 - - uid: 14491 + - uid: 4633 components: - type: Transform pos: 5.5,-87.5 parent: 2 - - uid: 14492 + - uid: 4634 components: - type: Transform pos: 5.5,-86.5 parent: 2 - - uid: 14493 + - uid: 4635 components: - type: Transform pos: 5.5,-85.5 parent: 2 - - uid: 14494 + - uid: 4636 components: - type: Transform pos: 5.5,-84.5 parent: 2 - - uid: 14495 + - uid: 4637 components: - type: Transform pos: 5.5,-83.5 parent: 2 - - uid: 14496 + - uid: 4638 components: - type: Transform pos: 5.5,-82.5 parent: 2 - - uid: 14497 + - uid: 4639 components: - type: Transform pos: 5.5,-81.5 parent: 2 - - uid: 14498 + - uid: 4640 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 14499 + - uid: 4641 components: - type: Transform pos: 7.5,-81.5 parent: 2 - - uid: 14500 + - uid: 4642 components: - type: Transform pos: 8.5,-81.5 parent: 2 - - uid: 14501 + - uid: 4643 components: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 14502 + - uid: 4644 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 14503 + - uid: 4645 components: - type: Transform pos: 11.5,-81.5 parent: 2 - - uid: 14504 + - uid: 4646 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 14505 + - uid: 4647 components: - type: Transform pos: 13.5,-81.5 parent: 2 - - uid: 14506 + - uid: 4648 components: - type: Transform pos: 14.5,-81.5 parent: 2 - - uid: 14507 + - uid: 4649 components: - type: Transform pos: 15.5,-81.5 parent: 2 - - uid: 14508 + - uid: 4650 components: - type: Transform pos: 15.5,-82.5 parent: 2 - - uid: 14509 + - uid: 4651 components: - type: Transform pos: 15.5,-83.5 parent: 2 - - uid: 14510 + - uid: 4652 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 14511 + - uid: 4653 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 14512 + - uid: 4654 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 14513 + - uid: 4655 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14603 + - uid: 4656 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 15133 + - uid: 4657 components: - type: Transform pos: 8.5,-117.5 parent: 2 - - uid: 15137 + - uid: 4658 components: - type: Transform pos: 8.5,-118.5 parent: 2 - - uid: 15139 + - uid: 4659 components: - type: Transform pos: 8.5,-119.5 parent: 2 - - uid: 15140 + - uid: 4660 components: - type: Transform pos: 8.5,-120.5 parent: 2 - - uid: 15141 + - uid: 4661 components: - type: Transform pos: 7.5,-120.5 parent: 2 - - uid: 15142 + - uid: 4662 components: - type: Transform pos: 6.5,-120.5 parent: 2 - - uid: 15143 + - uid: 4663 components: - type: Transform pos: 5.5,-120.5 parent: 2 - - uid: 15144 + - uid: 4664 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 15145 + - uid: 4665 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 15146 + - uid: 4666 components: - type: Transform pos: 5.5,-117.5 parent: 2 - - uid: 15147 + - uid: 4667 components: - type: Transform pos: 5.5,-118.5 parent: 2 - - uid: 15148 + - uid: 4668 components: - type: Transform pos: 5.5,-119.5 parent: 2 - - uid: 15298 + - uid: 4669 components: - type: Transform pos: 7.5,-339.5 parent: 2 - - uid: 16538 + - uid: 4670 components: - type: Transform pos: -13.5,-251.5 parent: 2 - - uid: 16659 + - uid: 4671 components: - type: Transform pos: -13.5,-250.5 parent: 2 - - uid: 16661 + - uid: 4672 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 16662 + - uid: 4673 components: - type: Transform pos: -18.5,-265.5 parent: 2 - - uid: 16663 + - uid: 4674 components: - type: Transform pos: -18.5,-264.5 parent: 2 - - uid: 16664 + - uid: 4675 components: - type: Transform pos: -18.5,-263.5 parent: 2 - - uid: 16665 + - uid: 4676 components: - type: Transform pos: -18.5,-262.5 parent: 2 - - uid: 16666 + - uid: 4677 components: - type: Transform pos: -18.5,-261.5 parent: 2 - - uid: 16667 + - uid: 4678 components: - type: Transform pos: -18.5,-260.5 parent: 2 - - uid: 16668 + - uid: 4679 components: - type: Transform pos: -18.5,-259.5 parent: 2 - - uid: 16669 + - uid: 4680 components: - type: Transform pos: -18.5,-258.5 parent: 2 - - uid: 16670 + - uid: 4681 components: - type: Transform pos: -18.5,-257.5 parent: 2 - - uid: 16671 + - uid: 4682 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 16672 + - uid: 4683 components: - type: Transform pos: -18.5,-255.5 parent: 2 - - uid: 16673 + - uid: 4684 components: - type: Transform pos: -18.5,-254.5 parent: 2 - - uid: 16674 + - uid: 4685 components: - type: Transform pos: -17.5,-254.5 parent: 2 - - uid: 16675 + - uid: 4686 components: - type: Transform pos: -16.5,-254.5 parent: 2 - - uid: 16676 + - uid: 4687 components: - type: Transform pos: -15.5,-254.5 parent: 2 - - uid: 16677 + - uid: 4688 components: - type: Transform pos: -14.5,-254.5 parent: 2 - - uid: 16688 + - uid: 4689 components: - type: Transform pos: -13.5,-253.5 parent: 2 - - uid: 16691 + - uid: 4690 components: - type: Transform pos: -13.5,-252.5 parent: 2 - proto: CableMVStack entities: - - uid: 6898 + - uid: 4691 components: - type: Transform pos: 15.528771,-245.63763 parent: 2 - - uid: 6900 + - uid: 4692 components: - type: Transform pos: 15.357085,-245.58482 parent: 2 - - uid: 11673 + - uid: 4693 components: - type: Transform pos: -2.1301281,-7.3508615 parent: 2 - - uid: 16814 + - uid: 4695 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CableTerminal entities: - - uid: 713 + - uid: 4698 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-251.5 parent: 2 - - uid: 5435 + - uid: 4699 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-229.5 parent: 2 - - uid: 5436 + - uid: 4700 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-220.5 parent: 2 - - uid: 6203 + - uid: 4701 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-251.5 parent: 2 - - uid: 6205 + - uid: 4702 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-252.5 parent: 2 - - uid: 6231 + - uid: 4703 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-253.5 parent: 2 - - uid: 9468 + - uid: 4704 components: - type: Transform pos: 3.5,-345.5 parent: 2 - proto: CandleBlackInfinite entities: - - uid: 606 + - uid: 4705 components: - type: Transform pos: -2.3014371,-58.2566 parent: 2 - - uid: 631 + - uid: 4706 components: - type: Transform pos: -6.6172776,-58.79888 parent: 2 - - uid: 3029 + - uid: 4707 components: - type: Transform pos: -6.420355,-62.382744 parent: 2 - - uid: 4186 + - uid: 4708 components: - type: Transform pos: -3.5704029,-67.32645 parent: 2 - proto: CandleBlackSmallInfinite entities: - - uid: 613 + - uid: 4709 components: - type: Transform pos: -6.6172776,-59.064507 parent: 2 - - uid: 653 + - uid: 4710 components: - type: Transform pos: -6.3516526,-58.86138 parent: 2 - - uid: 661 + - uid: 4711 components: - type: Transform pos: -6.6172776,-67.4827 parent: 2 - - uid: 2254 + - uid: 4712 components: - type: Transform pos: 1.7255144,-66.4996 parent: 2 - - uid: 3022 + - uid: 4713 components: - type: Transform pos: -6.639105,-62.570244 parent: 2 - - uid: 3202 + - uid: 4714 components: - type: Transform pos: -3.7858121,-58.522224 parent: 2 - - uid: 4183 + - uid: 4715 components: - type: Transform pos: -6.3829026,-67.3577 parent: 2 - - uid: 4185 + - uid: 4716 components: - type: Transform pos: -2.320403,-67.43582 parent: 2 - proto: CandyBucket entities: - - uid: 2369 + - uid: 4717 components: - type: Transform pos: 5.735499,-30.78203 parent: 2 - proto: CannabisSeeds entities: - - uid: 1079 + - uid: 4718 components: - type: Transform pos: -7.3107276,-91.34308 parent: 2 - proto: CapacitorStockPart entities: - - uid: 12432 + - uid: 4719 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5550447,-304.56104 parent: 2 - - uid: 12434 + - uid: 4720 components: - type: Transform pos: -6.343737,-304.3674 parent: 2 - - uid: 12435 + - uid: 4721 components: - type: Transform rot: 3.141592653589793 rad @@ -31551,279 +31299,279 @@ entities: parent: 2 - proto: CaptainIDCard entities: - - uid: 316 + - uid: 4722 components: - type: Transform pos: -0.49034405,-11.254525 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 6719 + - uid: 4723 components: - type: Transform pos: -21.5,-253.5 parent: 2 - - uid: 7195 + - uid: 4724 components: - type: Transform pos: -21.5,-241.5 parent: 2 - - uid: 9993 + - uid: 4725 components: - type: Transform pos: -4.5,-312.5 parent: 2 - - uid: 11221 + - uid: 4726 components: - type: Transform pos: 4.5,-355.5 parent: 2 - proto: Carpet entities: - - uid: 1888 + - uid: 4727 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-111.5 parent: 2 - - uid: 1889 + - uid: 4728 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-112.5 parent: 2 - - uid: 1890 + - uid: 4729 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-113.5 parent: 2 - - uid: 1891 + - uid: 4730 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-114.5 parent: 2 - - uid: 1892 + - uid: 4731 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-115.5 parent: 2 - - uid: 1893 + - uid: 4732 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-116.5 parent: 2 - - uid: 1894 + - uid: 4733 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-117.5 parent: 2 - - uid: 1895 + - uid: 4734 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-118.5 parent: 2 - - uid: 1896 + - uid: 4735 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-119.5 parent: 2 - - uid: 1897 + - uid: 4736 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-120.5 parent: 2 - - uid: 1898 + - uid: 4737 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-121.5 parent: 2 - - uid: 1899 + - uid: 4738 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-122.5 parent: 2 - - uid: 1900 + - uid: 4739 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-123.5 parent: 2 - - uid: 1901 + - uid: 4740 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-124.5 parent: 2 - - uid: 1902 + - uid: 4741 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-125.5 parent: 2 - - uid: 1903 + - uid: 4742 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-111.5 parent: 2 - - uid: 1904 + - uid: 4743 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-112.5 parent: 2 - - uid: 1905 + - uid: 4744 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-113.5 parent: 2 - - uid: 1906 + - uid: 4745 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-114.5 parent: 2 - - uid: 1907 + - uid: 4746 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-115.5 parent: 2 - - uid: 1908 + - uid: 4747 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-116.5 parent: 2 - - uid: 1909 + - uid: 4748 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-117.5 parent: 2 - - uid: 1910 + - uid: 4749 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-118.5 parent: 2 - - uid: 1911 + - uid: 4750 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-119.5 parent: 2 - - uid: 1912 + - uid: 4751 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-120.5 parent: 2 - - uid: 1913 + - uid: 4752 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-121.5 parent: 2 - - uid: 1914 + - uid: 4753 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-122.5 parent: 2 - - uid: 1915 + - uid: 4754 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-123.5 parent: 2 - - uid: 1916 + - uid: 4755 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-124.5 parent: 2 - - uid: 1948 + - uid: 4756 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-110.5 parent: 2 - - uid: 1949 + - uid: 4757 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-109.5 parent: 2 - - uid: 1950 + - uid: 4758 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-109.5 parent: 2 - - uid: 1951 + - uid: 4759 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-110.5 parent: 2 - - uid: 2169 + - uid: 4760 components: - type: Transform pos: -2.5,-110.5 parent: 2 - - uid: 2209 + - uid: 4761 components: - type: Transform pos: -2.5,-109.5 parent: 2 - - uid: 2425 + - uid: 4762 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 2426 + - uid: 4763 components: - type: Transform pos: 5.5,-124.5 parent: 2 - - uid: 2427 + - uid: 4764 components: - type: Transform pos: 4.5,-124.5 parent: 2 - - uid: 2428 + - uid: 4765 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 2429 + - uid: 4766 components: - type: Transform pos: 5.5,-123.5 parent: 2 - - uid: 2430 + - uid: 4767 components: - type: Transform pos: 4.5,-123.5 parent: 2 - - uid: 2431 + - uid: 4768 components: - type: Transform pos: -3.5,-125.5 parent: 2 - - uid: 7550 + - uid: 4769 components: - type: Transform rot: 3.141592653589793 rad @@ -31831,339 +31579,329 @@ entities: parent: 2 - proto: CarpetBlack entities: - - uid: 161 + - uid: 4770 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 2 - - uid: 193 + - uid: 4771 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 2 - - uid: 196 + - uid: 4772 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 2 - - uid: 200 + - uid: 4773 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 2 - - uid: 211 + - uid: 4774 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 - - uid: 214 + - uid: 4775 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-12.5 parent: 2 - - uid: 980 + - uid: 4776 components: - type: Transform pos: -5.5,-72.5 parent: 2 - - uid: 1017 + - uid: 4777 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 1555 + - uid: 4778 components: - type: Transform pos: -0.5,-71.5 parent: 2 - - uid: 1556 + - uid: 4779 components: - type: Transform pos: -0.5,-70.5 parent: 2 - - uid: 1557 + - uid: 4780 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 1558 + - uid: 4781 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 1559 + - uid: 4782 components: - type: Transform pos: 1.5,-71.5 parent: 2 - - uid: 1560 + - uid: 4783 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 1564 + - uid: 4784 components: - type: Transform pos: 1.5,-55.5 parent: 2 - - uid: 1565 + - uid: 4785 components: - type: Transform pos: 1.5,-54.5 parent: 2 - - uid: 1566 + - uid: 4786 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 1567 + - uid: 4787 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 1568 + - uid: 4788 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 1569 + - uid: 4789 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 2730 + - uid: 4790 components: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 3704 + - uid: 4791 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-10.5 parent: 2 - - uid: 5839 + - uid: 4792 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 11173 + - uid: 4793 components: - type: Transform pos: -2.5,-344.5 parent: 2 - - uid: 11174 + - uid: 4794 components: - type: Transform pos: -2.5,-345.5 parent: 2 - - uid: 11175 + - uid: 4795 components: - type: Transform pos: -3.5,-344.5 parent: 2 - - uid: 11176 + - uid: 4796 components: - type: Transform pos: -3.5,-345.5 parent: 2 - - uid: 11177 - components: - - type: Transform - pos: -4.5,-344.5 - parent: 2 - - uid: 11178 - components: - - type: Transform - pos: -4.5,-345.5 - parent: 2 - - uid: 14343 + - uid: 4797 components: - type: Transform pos: 14.5,-70.5 parent: 2 - - uid: 14360 + - uid: 4798 components: - type: Transform pos: 14.5,-68.5 parent: 2 - - uid: 14362 + - uid: 4799 components: - type: Transform pos: 13.5,-70.5 parent: 2 - - uid: 14364 + - uid: 4800 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 14370 + - uid: 4801 components: - type: Transform pos: 15.5,-68.5 parent: 2 - - uid: 14377 + - uid: 4802 components: - type: Transform pos: 13.5,-68.5 parent: 2 - - uid: 14383 + - uid: 4803 components: - type: Transform pos: 14.5,-69.5 parent: 2 - - uid: 14390 + - uid: 4804 components: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 14391 + - uid: 4805 components: - type: Transform pos: 15.5,-70.5 parent: 2 - - uid: 14392 + - uid: 4806 components: - type: Transform pos: 16.5,-68.5 parent: 2 - - uid: 14393 + - uid: 4807 components: - type: Transform pos: 16.5,-69.5 parent: 2 - - uid: 14394 + - uid: 4808 components: - type: Transform pos: 16.5,-70.5 parent: 2 - - uid: 14395 + - uid: 4809 components: - type: Transform pos: 17.5,-68.5 parent: 2 - - uid: 14396 + - uid: 4810 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14397 + - uid: 4811 components: - type: Transform pos: 17.5,-70.5 parent: 2 - - uid: 14398 + - uid: 4812 components: - type: Transform pos: 13.5,-72.5 parent: 2 - - uid: 14399 + - uid: 4813 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14400 + - uid: 4814 components: - type: Transform pos: 13.5,-74.5 parent: 2 - - uid: 14401 + - uid: 4815 components: - type: Transform pos: 14.5,-72.5 parent: 2 - - uid: 14402 + - uid: 4816 components: - type: Transform pos: 14.5,-73.5 parent: 2 - - uid: 14403 + - uid: 4817 components: - type: Transform pos: 14.5,-74.5 parent: 2 - - uid: 14404 + - uid: 4818 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 14405 + - uid: 4819 components: - type: Transform pos: 15.5,-73.5 parent: 2 - - uid: 14406 + - uid: 4820 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 14407 + - uid: 4821 components: - type: Transform pos: 16.5,-72.5 parent: 2 - - uid: 14408 + - uid: 4822 components: - type: Transform pos: 16.5,-73.5 parent: 2 - - uid: 14409 + - uid: 4823 components: - type: Transform pos: 16.5,-74.5 parent: 2 - - uid: 14410 + - uid: 4824 components: - type: Transform pos: 17.5,-72.5 parent: 2 - - uid: 14411 + - uid: 4825 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14412 + - uid: 4826 components: - type: Transform pos: 17.5,-74.5 parent: 2 - - uid: 14790 + - uid: 4827 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-73.5 parent: 2 - - uid: 14791 + - uid: 4828 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-72.5 parent: 2 - - uid: 14792 + - uid: 4829 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-72.5 parent: 2 - - uid: 14793 + - uid: 4830 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-73.5 parent: 2 - - uid: 14794 + - uid: 4831 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-73.5 parent: 2 - - uid: 14795 + - uid: 4832 components: - type: Transform rot: 1.5707963267948966 rad @@ -32171,128 +31909,128 @@ entities: parent: 2 - proto: CarpetBlue entities: - - uid: 194 + - uid: 4833 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-11.5 parent: 2 - - uid: 285 + - uid: 4834 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-14.5 parent: 2 - - uid: 286 + - uid: 4835 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 2 - - uid: 287 + - uid: 4836 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 2 - - uid: 288 + - uid: 4837 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-13.5 parent: 2 - - uid: 290 + - uid: 4838 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-14.5 parent: 2 - - uid: 292 + - uid: 4839 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 parent: 2 - - uid: 305 + - uid: 4840 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 2 - - uid: 306 + - uid: 4841 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-11.5 parent: 2 - - uid: 307 + - uid: 4842 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-10.5 parent: 2 - - uid: 1264 + - uid: 4843 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 2 - - uid: 2260 + - uid: 4844 components: - type: Transform pos: -1.5,-117.5 parent: 2 - - uid: 2262 + - uid: 4845 components: - type: Transform pos: -1.5,-116.5 parent: 2 - - uid: 2263 + - uid: 4846 components: - type: Transform pos: -0.5,-117.5 parent: 2 - - uid: 2264 + - uid: 4847 components: - type: Transform pos: -0.5,-116.5 parent: 2 - - uid: 2265 + - uid: 4848 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 2266 + - uid: 4849 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 12166 + - uid: 4850 components: - type: Transform pos: -1.5,-11.5 parent: 2 - proto: CarpetOrange entities: - - uid: 9099 + - uid: 4851 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-284.5 parent: 2 - - uid: 9128 + - uid: 4852 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-285.5 parent: 2 - - uid: 9129 + - uid: 4853 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-285.5 parent: 2 - - uid: 9132 + - uid: 4854 components: - type: Transform rot: -1.5707963267948966 rad @@ -32300,2050 +32038,2017 @@ entities: parent: 2 - proto: CarpetPurple entities: - - uid: 2762 + - uid: 4855 components: - type: Transform pos: -4.5,-144.5 parent: 2 - - uid: 2763 + - uid: 4856 components: - type: Transform pos: -3.5,-144.5 parent: 2 - - uid: 2764 + - uid: 4857 components: - type: Transform pos: -3.5,-145.5 parent: 2 - - uid: 2765 + - uid: 4858 components: - type: Transform pos: -3.5,-146.5 parent: 2 - - uid: 2766 + - uid: 4859 components: - type: Transform pos: -4.5,-146.5 parent: 2 - - uid: 2767 + - uid: 4860 components: - type: Transform pos: -4.5,-147.5 parent: 2 - - uid: 2768 + - uid: 4861 components: - type: Transform pos: -4.5,-148.5 parent: 2 - - uid: 2769 + - uid: 4862 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 2770 + - uid: 4863 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 2771 + - uid: 4864 components: - type: Transform pos: -4.5,-142.5 parent: 2 - - uid: 2772 + - uid: 4865 components: - type: Transform pos: -3.5,-142.5 parent: 2 - - uid: 12040 + - uid: 4866 components: - type: Transform pos: -9.5,-302.5 parent: 2 - - uid: 12041 + - uid: 4867 components: - type: Transform pos: -9.5,-303.5 parent: 2 - - uid: 12042 + - uid: 4868 components: - type: Transform pos: -9.5,-304.5 parent: 2 - - uid: 12043 + - uid: 4869 components: - type: Transform pos: -8.5,-302.5 parent: 2 - - uid: 12044 + - uid: 4870 components: - type: Transform pos: -8.5,-303.5 parent: 2 - - uid: 12045 + - uid: 4871 components: - type: Transform pos: -8.5,-304.5 parent: 2 - proto: CarvedPumpkin entities: - - uid: 2651 + - uid: 4872 components: - type: Transform pos: 5.409307,-30.231054 parent: 2 - proto: Catwalk entities: - - uid: 10 + - uid: 4873 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-252.5 parent: 2 - - uid: 51 + - uid: 4874 components: - type: Transform pos: 3.5,-345.5 parent: 2 - - uid: 150 + - uid: 4875 components: - type: Transform pos: 5.5,-2.5 parent: 2 - - uid: 369 + - uid: 4876 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 379 + - uid: 4877 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 380 + - uid: 4878 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 407 + - uid: 4879 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 408 + - uid: 4880 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 410 + - uid: 4881 components: - type: Transform pos: -6.5,-16.5 parent: 2 - - uid: 411 + - uid: 4882 components: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 412 + - uid: 4883 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 413 + - uid: 4884 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 414 + - uid: 4885 components: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 415 + - uid: 4886 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 416 + - uid: 4887 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 417 + - uid: 4888 components: - type: Transform pos: -4.5,1.5 parent: 2 - - uid: 418 + - uid: 4889 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 463 + - uid: 4890 components: - type: Transform pos: -5.5,-36.5 parent: 2 - - uid: 774 + - uid: 4891 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-221.5 parent: 2 - - uid: 777 + - uid: 4892 components: - type: Transform pos: -2.5,-34.5 parent: 2 - - uid: 778 + - uid: 4893 components: - type: Transform pos: -4.5,-35.5 parent: 2 - - uid: 779 + - uid: 4894 components: - type: Transform pos: -4.5,-37.5 parent: 2 - - uid: 780 + - uid: 4895 components: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 781 + - uid: 4896 components: - type: Transform pos: -4.5,-39.5 parent: 2 - - uid: 782 + - uid: 4897 components: - type: Transform pos: -5.5,-43.5 parent: 2 - - uid: 783 + - uid: 4898 components: - type: Transform pos: -4.5,-43.5 parent: 2 - - uid: 784 + - uid: 4899 components: - type: Transform pos: -4.5,-41.5 parent: 2 - - uid: 799 + - uid: 4900 components: - type: Transform pos: -4.5,-44.5 parent: 2 - - uid: 803 + - uid: 4901 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 808 + - uid: 4902 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-233.5 parent: 2 - - uid: 889 + - uid: 4903 components: - type: Transform pos: -7.5,-94.5 parent: 2 - - uid: 935 + - uid: 4904 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 1091 + - uid: 4905 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 1092 + - uid: 4906 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 1094 + - uid: 4907 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 1096 + - uid: 4908 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 1097 + - uid: 4909 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 1098 + - uid: 4910 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 1099 + - uid: 4911 components: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 1100 + - uid: 4912 components: - type: Transform pos: 6.5,-28.5 parent: 2 - - uid: 1101 + - uid: 4913 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 1142 + - uid: 4914 components: - type: Transform pos: 5.5,-18.5 parent: 2 - - uid: 1177 + - uid: 4915 components: - type: Transform pos: 5.5,-54.5 parent: 2 - - uid: 1248 + - uid: 4916 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 1259 + - uid: 4917 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 1423 + - uid: 4918 components: - type: Transform pos: 4.5,-57.5 parent: 2 - - uid: 1437 + - uid: 4919 components: - type: Transform pos: 6.5,-58.5 parent: 2 - - uid: 1438 + - uid: 4920 components: - type: Transform pos: 5.5,-55.5 parent: 2 - - uid: 1439 - components: - - type: Transform - pos: 5.5,-56.5 - parent: 2 - - uid: 1441 + - uid: 4921 components: - type: Transform pos: 6.5,-60.5 parent: 2 - - uid: 1442 + - uid: 4922 components: - type: Transform pos: 6.5,-61.5 parent: 2 - - uid: 1443 + - uid: 4923 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 1444 + - uid: 4924 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 1445 + - uid: 4925 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 1446 + - uid: 4926 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 1447 + - uid: 4927 components: - type: Transform pos: 6.5,-70.5 parent: 2 - - uid: 1448 + - uid: 4928 components: - type: Transform pos: 6.5,-69.5 parent: 2 - - uid: 1449 + - uid: 4929 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 1456 + - uid: 4930 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 1457 + - uid: 4931 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 1619 + - uid: 4932 components: - type: Transform pos: -8.5,-95.5 parent: 2 - - uid: 1620 + - uid: 4933 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-95.5 parent: 2 - - uid: 1621 + - uid: 4934 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-96.5 parent: 2 - - uid: 1622 + - uid: 4935 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-97.5 parent: 2 - - uid: 1623 + - uid: 4936 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-98.5 parent: 2 - - uid: 1625 + - uid: 4937 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-96.5 parent: 2 - - uid: 1755 + - uid: 4938 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-252.5 parent: 2 - - uid: 1757 + - uid: 4939 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-35.5 parent: 2 - - uid: 2020 + - uid: 4940 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-83.5 parent: 2 - - uid: 2021 + - uid: 4941 components: - type: Transform pos: 5.5,-108.5 parent: 2 - - uid: 2022 + - uid: 4942 components: - type: Transform pos: 4.5,-108.5 parent: 2 - - uid: 2023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-81.5 - parent: 2 - - uid: 2024 + - uid: 4943 components: - type: Transform pos: 3.5,-108.5 parent: 2 - - uid: 2026 + - uid: 4944 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-84.5 parent: 2 - - uid: 2432 + - uid: 4945 components: - type: Transform pos: 3.5,-111.5 parent: 2 - - uid: 2433 + - uid: 4946 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 2434 + - uid: 4947 components: - type: Transform pos: 3.5,-113.5 parent: 2 - - uid: 2798 + - uid: 4948 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-135.5 parent: 2 - - uid: 2799 + - uid: 4949 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-135.5 parent: 2 - - uid: 2800 + - uid: 4950 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-135.5 parent: 2 - - uid: 2801 + - uid: 4951 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-136.5 parent: 2 - - uid: 2802 + - uid: 4952 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-136.5 parent: 2 - - uid: 2803 + - uid: 4953 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-138.5 parent: 2 - - uid: 2804 + - uid: 4954 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-139.5 parent: 2 - - uid: 2805 + - uid: 4955 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-140.5 parent: 2 - - uid: 2806 + - uid: 4956 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-143.5 parent: 2 - - uid: 2807 + - uid: 4957 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-144.5 parent: 2 - - uid: 2808 + - uid: 4958 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-145.5 parent: 2 - - uid: 2809 + - uid: 4959 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-150.5 parent: 2 - - uid: 2810 + - uid: 4960 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-151.5 parent: 2 - - uid: 2811 + - uid: 4961 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-151.5 parent: 2 - - uid: 2812 + - uid: 4962 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-151.5 parent: 2 - - uid: 3196 + - uid: 4963 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-299.5 parent: 2 - - uid: 3263 + - uid: 4964 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-217.5 parent: 2 - - uid: 3271 + - uid: 4965 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-223.5 parent: 2 - - uid: 3272 + - uid: 4966 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-222.5 parent: 2 - - uid: 3274 + - uid: 4967 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-221.5 parent: 2 - - uid: 3354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-220.5 - parent: 2 - - uid: 3484 + - uid: 4968 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-163.5 parent: 2 - - uid: 3485 + - uid: 4969 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-163.5 parent: 2 - - uid: 3486 + - uid: 4970 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-163.5 parent: 2 - - uid: 3490 + - uid: 4971 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-169.5 parent: 2 - - uid: 3491 + - uid: 4972 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-170.5 parent: 2 - - uid: 3492 + - uid: 4973 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-171.5 parent: 2 - - uid: 3493 + - uid: 4974 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-173.5 parent: 2 - - uid: 3494 + - uid: 4975 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-174.5 parent: 2 - - uid: 3495 + - uid: 4976 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-176.5 parent: 2 - - uid: 3496 + - uid: 4977 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-177.5 parent: 2 - - uid: 3497 + - uid: 4978 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-179.5 parent: 2 - - uid: 3498 + - uid: 4979 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-179.5 parent: 2 - - uid: 3499 + - uid: 4980 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-179.5 parent: 2 - - uid: 3501 + - uid: 4981 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-180.5 parent: 2 - - uid: 3502 + - uid: 4982 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-179.5 parent: 2 - - uid: 3556 + - uid: 4983 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 3605 + - uid: 4984 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-251.5 parent: 2 - - uid: 3714 + - uid: 4985 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-162.5 parent: 2 - - uid: 3715 + - uid: 4986 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-162.5 parent: 2 - - uid: 3716 + - uid: 4987 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-162.5 parent: 2 - - uid: 4041 + - uid: 4988 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-263.5 parent: 2 - - uid: 4212 + - uid: 4989 components: - type: Transform pos: 26.5,-259.5 parent: 2 - - uid: 4244 + - uid: 4990 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-234.5 parent: 2 - - uid: 4276 + - uid: 4991 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-233.5 parent: 2 - - uid: 4284 + - uid: 4992 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-234.5 parent: 2 - - uid: 4292 + - uid: 4993 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-218.5 parent: 2 - - uid: 4293 + - uid: 4994 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-219.5 parent: 2 - - uid: 4344 + - uid: 4995 components: - type: Transform pos: -8.5,-97.5 parent: 2 - - uid: 4356 + - uid: 4996 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-220.5 parent: 2 - - uid: 4361 + - uid: 4997 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-225.5 parent: 2 - - uid: 4371 + - uid: 4998 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-226.5 parent: 2 - - uid: 4385 + - uid: 4999 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-222.5 parent: 2 - - uid: 4394 + - uid: 5000 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-223.5 parent: 2 - - uid: 4401 + - uid: 5001 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-224.5 parent: 2 - - uid: 4410 + - uid: 5002 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-224.5 parent: 2 - - uid: 4434 + - uid: 5003 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-227.5 parent: 2 - - uid: 4435 + - uid: 5004 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-227.5 parent: 2 - - uid: 4436 + - uid: 5005 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-226.5 parent: 2 - - uid: 4437 + - uid: 5006 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-225.5 parent: 2 - - uid: 4438 + - uid: 5007 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-224.5 parent: 2 - - uid: 4441 + - uid: 5008 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-219.5 parent: 2 - - uid: 4442 + - uid: 5009 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-218.5 parent: 2 - - uid: 4443 + - uid: 5010 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-217.5 parent: 2 - - uid: 4444 + - uid: 5011 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-225.5 parent: 2 - - uid: 4445 + - uid: 5012 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-226.5 parent: 2 - - uid: 4446 + - uid: 5013 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-227.5 parent: 2 - - uid: 4447 + - uid: 5014 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-228.5 parent: 2 - - uid: 4448 + - uid: 5015 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-229.5 parent: 2 - - uid: 4449 + - uid: 5016 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-230.5 parent: 2 - - uid: 4450 + - uid: 5017 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-231.5 parent: 2 - - uid: 4451 + - uid: 5018 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-232.5 parent: 2 - - uid: 4452 + - uid: 5019 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-226.5 parent: 2 - - uid: 4453 + - uid: 5020 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-226.5 parent: 2 - - uid: 4455 + - uid: 5021 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-229.5 parent: 2 - - uid: 4456 + - uid: 5022 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-229.5 parent: 2 - - uid: 4457 + - uid: 5023 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-229.5 parent: 2 - - uid: 4458 + - uid: 5024 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-228.5 parent: 2 - - uid: 4459 + - uid: 5025 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-227.5 parent: 2 - - uid: 4460 + - uid: 5026 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-226.5 parent: 2 - - uid: 4461 + - uid: 5027 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-225.5 parent: 2 - - uid: 4462 + - uid: 5028 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-224.5 parent: 2 - - uid: 4463 + - uid: 5029 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-223.5 parent: 2 - - uid: 4464 + - uid: 5030 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-222.5 parent: 2 - - uid: 4465 + - uid: 5031 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-221.5 parent: 2 - - uid: 4466 + - uid: 5032 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-220.5 parent: 2 - - uid: 4467 + - uid: 5033 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-220.5 parent: 2 - - uid: 4468 + - uid: 5034 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-220.5 parent: 2 - - uid: 4470 + - uid: 5035 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-229.5 parent: 2 - - uid: 4471 + - uid: 5036 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-229.5 parent: 2 - - uid: 4472 + - uid: 5037 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-229.5 parent: 2 - - uid: 4473 + - uid: 5038 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-229.5 parent: 2 - - uid: 4474 + - uid: 5039 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-228.5 parent: 2 - - uid: 4475 + - uid: 5040 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-227.5 parent: 2 - - uid: 4476 + - uid: 5041 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-226.5 parent: 2 - - uid: 4477 + - uid: 5042 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-225.5 parent: 2 - - uid: 4478 + - uid: 5043 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-224.5 parent: 2 - - uid: 4479 + - uid: 5044 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-223.5 parent: 2 - - uid: 4480 + - uid: 5045 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-222.5 parent: 2 - - uid: 4481 + - uid: 5046 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-221.5 parent: 2 - - uid: 4482 + - uid: 5047 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-220.5 parent: 2 - - uid: 4483 + - uid: 5048 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-220.5 parent: 2 - - uid: 4484 + - uid: 5049 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-220.5 parent: 2 - - uid: 4485 + - uid: 5050 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-220.5 parent: 2 - - uid: 4486 + - uid: 5051 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-221.5 parent: 2 - - uid: 4487 + - uid: 5052 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-222.5 parent: 2 - - uid: 4488 + - uid: 5053 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-223.5 parent: 2 - - uid: 4489 + - uid: 5054 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-224.5 parent: 2 - - uid: 4490 + - uid: 5055 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-225.5 parent: 2 - - uid: 4491 + - uid: 5056 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-226.5 parent: 2 - - uid: 4492 + - uid: 5057 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-227.5 parent: 2 - - uid: 4493 + - uid: 5058 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-228.5 parent: 2 - - uid: 4495 + - uid: 5059 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-230.5 parent: 2 - - uid: 4496 + - uid: 5060 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-231.5 parent: 2 - - uid: 4497 + - uid: 5061 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-232.5 parent: 2 - - uid: 4498 + - uid: 5062 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-219.5 parent: 2 - - uid: 4499 + - uid: 5063 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-218.5 parent: 2 - - uid: 4500 + - uid: 5064 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-217.5 parent: 2 - - uid: 4501 + - uid: 5065 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-223.5 parent: 2 - - uid: 4502 + - uid: 5066 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-223.5 parent: 2 - - uid: 4503 + - uid: 5067 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-226.5 parent: 2 - - uid: 4504 + - uid: 5068 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-226.5 parent: 2 - - uid: 4521 + - uid: 5069 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-225.5 parent: 2 - - uid: 4522 + - uid: 5070 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-226.5 parent: 2 - - uid: 4523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-227.5 - parent: 2 - - uid: 4524 + - uid: 5071 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-230.5 parent: 2 - - uid: 4525 + - uid: 5072 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-231.5 parent: 2 - - uid: 4865 + - uid: 5073 components: - type: Transform pos: 28.5,-258.5 parent: 2 - - uid: 5021 + - uid: 5074 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-253.5 parent: 2 - - uid: 6573 + - uid: 5075 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-253.5 parent: 2 - - uid: 6636 + - uid: 5076 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-287.5 parent: 2 - - uid: 6657 + - uid: 5077 components: - type: Transform pos: 27.5,-258.5 parent: 2 - - uid: 6686 + - uid: 5078 components: - type: Transform pos: 24.5,-257.5 parent: 2 - - uid: 6688 + - uid: 5079 components: - type: Transform pos: 30.5,-260.5 parent: 2 - - uid: 6690 + - uid: 5080 components: - type: Transform pos: 31.5,-255.5 parent: 2 - - uid: 6691 + - uid: 5081 components: - type: Transform pos: 23.5,-256.5 parent: 2 - - uid: 6692 + - uid: 5082 components: - type: Transform pos: 24.5,-255.5 parent: 2 - - uid: 6697 + - uid: 5083 components: - type: Transform pos: 23.5,-262.5 parent: 2 - - uid: 6699 + - uid: 5084 components: - type: Transform pos: 23.5,-263.5 parent: 2 - - uid: 6720 + - uid: 5085 components: - type: Transform pos: 28.5,-259.5 parent: 2 - - uid: 6721 + - uid: 5086 components: - type: Transform pos: 28.5,-260.5 parent: 2 - - uid: 6723 + - uid: 5087 components: - type: Transform pos: 26.5,-257.5 parent: 2 - - uid: 6725 + - uid: 5088 components: - type: Transform pos: 28.5,-257.5 parent: 2 - - uid: 6731 + - uid: 5089 components: - type: Transform pos: 26.5,-262.5 parent: 2 - - uid: 6751 + - uid: 5090 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-250.5 parent: 2 - - uid: 6752 + - uid: 5091 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-252.5 parent: 2 - - uid: 6753 + - uid: 5092 components: - type: Transform pos: 26.5,-260.5 parent: 2 - - uid: 6760 + - uid: 5093 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-251.5 parent: 2 - - uid: 6765 + - uid: 5094 components: - type: Transform pos: 3.5,-117.5 parent: 2 - - uid: 6775 + - uid: 5095 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-254.5 parent: 2 - - uid: 6783 + - uid: 5096 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-251.5 parent: 2 - - uid: 6785 + - uid: 5097 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-251.5 parent: 2 - - uid: 6786 + - uid: 5098 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-253.5 parent: 2 - - uid: 6834 + - uid: 5099 components: - type: Transform pos: 26.5,-256.5 parent: 2 - - uid: 6863 + - uid: 5100 components: - type: Transform pos: 30.5,-256.5 parent: 2 - - uid: 6865 + - uid: 5101 components: - type: Transform pos: 24.5,-256.5 parent: 2 - - uid: 6866 + - uid: 5102 components: - type: Transform pos: 24.5,-262.5 parent: 2 - - uid: 6867 + - uid: 5103 components: - type: Transform pos: 24.5,-263.5 parent: 2 - - uid: 6868 + - uid: 5104 components: - type: Transform pos: 23.5,-255.5 parent: 2 - - uid: 7532 + - uid: 5105 components: - type: Transform pos: 28.5,-262.5 parent: 2 - - uid: 7538 + - uid: 5106 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-251.5 parent: 2 - - uid: 7569 + - uid: 5107 components: - type: Transform pos: 28.5,-256.5 parent: 2 - - uid: 7780 + - uid: 5108 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-265.5 parent: 2 - - uid: 7790 + - uid: 5109 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-252.5 parent: 2 - - uid: 7893 + - uid: 5110 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-252.5 parent: 2 - - uid: 8017 + - uid: 5111 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-253.5 parent: 2 - - uid: 8048 + - uid: 5112 components: - type: Transform pos: 27.5,-260.5 parent: 2 - - uid: 8049 + - uid: 5113 components: - type: Transform pos: 30.5,-258.5 parent: 2 - - uid: 8051 + - uid: 5114 components: - type: Transform pos: 28.5,-261.5 parent: 2 - - uid: 8092 + - uid: 5115 components: - type: Transform pos: 30.5,-257.5 parent: 2 - - uid: 8093 + - uid: 5116 components: - type: Transform pos: 30.5,-259.5 parent: 2 - - uid: 8094 + - uid: 5117 components: - type: Transform pos: 26.5,-261.5 parent: 2 - - uid: 8191 + - uid: 5118 components: - type: Transform pos: 30.5,-255.5 parent: 2 - - uid: 8192 + - uid: 5119 components: - type: Transform pos: 24.5,-260.5 parent: 2 - - uid: 8208 + - uid: 5120 components: - type: Transform pos: 31.5,-256.5 parent: 2 - - uid: 8211 + - uid: 5121 components: - type: Transform pos: 24.5,-261.5 parent: 2 - - uid: 8473 + - uid: 5122 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-264.5 parent: 2 - - uid: 8496 + - uid: 5123 components: - type: Transform pos: 3.5,-116.5 parent: 2 - - uid: 8527 + - uid: 5124 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-288.5 parent: 2 - - uid: 8662 + - uid: 5125 components: - type: Transform pos: 26.5,-258.5 parent: 2 - - uid: 8694 + - uid: 5126 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-286.5 parent: 2 - - uid: 8798 + - uid: 5127 components: - type: Transform pos: 24.5,-258.5 parent: 2 - - uid: 9029 + - uid: 5128 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-287.5 parent: 2 - - uid: 9033 + - uid: 5129 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-287.5 parent: 2 - - uid: 9034 + - uid: 5130 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-287.5 parent: 2 - - uid: 9036 + - uid: 5131 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9045 + - uid: 5132 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-286.5 parent: 2 - - uid: 9047 + - uid: 5133 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-285.5 parent: 2 - - uid: 9543 + - uid: 5134 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 9791 + - uid: 5135 components: - type: Transform pos: 7.5,-16.5 parent: 2 - - uid: 9857 + - uid: 5136 components: - type: Transform pos: 24.5,-259.5 parent: 2 - - uid: 10025 + - uid: 5137 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-314.5 parent: 2 - - uid: 10542 + - uid: 5138 components: - type: Transform pos: -2.5,-297.5 parent: 2 - - uid: 10544 + - uid: 5139 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10545 + - uid: 5140 components: - type: Transform pos: -4.5,-297.5 parent: 2 - - uid: 10546 + - uid: 5141 components: - type: Transform pos: 3.5,-297.5 parent: 2 - - uid: 10547 + - uid: 5142 components: - type: Transform pos: 4.5,-297.5 parent: 2 - - uid: 10548 + - uid: 5143 components: - type: Transform pos: 5.5,-297.5 parent: 2 - - uid: 10549 + - uid: 5144 components: - type: Transform pos: 5.5,-296.5 parent: 2 - - uid: 10550 + - uid: 5145 components: - type: Transform pos: 8.5,-297.5 parent: 2 - - uid: 10551 + - uid: 5146 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 10552 + - uid: 5147 components: - type: Transform pos: 9.5,-298.5 parent: 2 - - uid: 10554 + - uid: 5148 components: - type: Transform pos: 9.5,-301.5 parent: 2 - - uid: 10555 + - uid: 5149 components: - type: Transform pos: 9.5,-302.5 parent: 2 - - uid: 10556 + - uid: 5150 components: - type: Transform pos: 9.5,-303.5 parent: 2 - - uid: 10557 + - uid: 5151 components: - type: Transform pos: 9.5,-310.5 parent: 2 - - uid: 10558 + - uid: 5152 components: - type: Transform pos: 9.5,-311.5 parent: 2 - - uid: 10559 + - uid: 5153 components: - type: Transform pos: 9.5,-312.5 parent: 2 - - uid: 10560 + - uid: 5154 components: - type: Transform pos: 10.5,-314.5 parent: 2 - - uid: 10561 + - uid: 5155 components: - type: Transform pos: 10.5,-315.5 parent: 2 - - uid: 10562 + - uid: 5156 components: - type: Transform pos: 10.5,-318.5 parent: 2 - - uid: 10563 + - uid: 5157 components: - type: Transform pos: 9.5,-318.5 parent: 2 - - uid: 10564 + - uid: 5158 components: - type: Transform pos: 8.5,-318.5 parent: 2 - - uid: 10565 + - uid: 5159 components: - type: Transform pos: 5.5,-319.5 parent: 2 - - uid: 10566 + - uid: 5160 components: - type: Transform pos: 4.5,-319.5 parent: 2 - - uid: 10567 + - uid: 5161 components: - type: Transform pos: 3.5,-319.5 parent: 2 - - uid: 10644 + - uid: 5162 components: - type: Transform pos: 6.5,-18.5 parent: 2 - - uid: 10655 + - uid: 5163 components: - type: Transform pos: 7.5,-18.5 parent: 2 - - uid: 10683 + - uid: 5164 components: - type: Transform pos: 5.5,-345.5 parent: 2 - - uid: 12649 + - uid: 5165 components: - type: Transform pos: 4.5,-117.5 parent: 2 - - uid: 12900 + - uid: 5166 components: - type: Transform pos: 7.5,-361.5 parent: 2 - - uid: 12901 + - uid: 5167 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 12902 + - uid: 5168 components: - type: Transform pos: 6.5,-360.5 parent: 2 - - uid: 13303 + - uid: 5169 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-300.5 parent: 2 - - uid: 13393 + - uid: 5170 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 13404 + - uid: 5171 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 14022 + - uid: 5172 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-253.5 parent: 2 - - uid: 14571 + - uid: 5173 components: - type: Transform pos: -2.5,-243.5 parent: 2 - - uid: 14572 + - uid: 5174 components: - type: Transform pos: -4.5,-243.5 parent: 2 - - uid: 14573 + - uid: 5175 components: - type: Transform pos: -3.5,-243.5 parent: 2 - - uid: 14582 + - uid: 5176 components: - type: Transform pos: -6.5,-252.5 parent: 2 - - uid: 14583 + - uid: 5177 components: - type: Transform pos: -6.5,-254.5 parent: 2 - - uid: 14584 + - uid: 5178 components: - type: Transform pos: -6.5,-255.5 parent: 2 - - uid: 14585 + - uid: 5179 components: - type: Transform pos: -6.5,-256.5 parent: 2 - - uid: 14586 + - uid: 5180 components: - type: Transform pos: -5.5,-258.5 parent: 2 - - uid: 14587 + - uid: 5181 components: - type: Transform pos: -4.5,-258.5 parent: 2 - - uid: 14588 + - uid: 5182 components: - type: Transform pos: -4.5,-259.5 parent: 2 - - uid: 14589 - components: - - type: Transform - pos: -3.5,-260.5 - parent: 2 - - uid: 14590 - components: - - type: Transform - pos: -4.5,-260.5 - parent: 2 - - uid: 14591 + - uid: 5183 components: - type: Transform pos: -4.5,-261.5 parent: 2 - - uid: 14592 + - uid: 5184 components: - type: Transform pos: 3.5,-260.5 parent: 2 - - uid: 14593 + - uid: 5185 components: - type: Transform pos: 4.5,-260.5 parent: 2 - - uid: 14594 + - uid: 5186 components: - type: Transform pos: 5.5,-260.5 parent: 2 - - uid: 14595 + - uid: 5187 components: - type: Transform pos: 7.5,-260.5 parent: 2 - - uid: 15721 + - uid: 5188 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-222.5 parent: 2 - - uid: 15722 + - uid: 5189 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-222.5 parent: 2 - - uid: 15723 + - uid: 5190 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-221.5 parent: 2 - - uid: 15724 + - uid: 5191 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-219.5 parent: 2 - - uid: 15725 + - uid: 5192 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-220.5 parent: 2 - - uid: 15798 + - uid: 5193 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 16870 + - uid: 5194 components: - type: Transform pos: -7.5,-251.5 parent: 2 - - uid: 16872 + - uid: 5195 components: - type: Transform pos: -4.5,-246.5 parent: 2 - - uid: 16874 + - uid: 5196 components: - type: Transform pos: -4.5,-245.5 parent: 2 - - uid: 16875 + - uid: 5197 components: - type: Transform pos: -4.5,-245.5 parent: 2 - - uid: 16877 + - uid: 5198 components: - type: Transform pos: -4.5,-250.5 parent: 2 - - uid: 16878 + - uid: 5199 components: - type: Transform pos: -5.5,-250.5 parent: 2 - - uid: 16939 + - uid: 5200 components: - type: Transform pos: -6.5,-166.5 parent: 2 - - uid: 16942 + - uid: 5201 components: - type: Transform pos: -6.5,-165.5 parent: 2 - - uid: 16943 + - uid: 5202 components: - type: Transform pos: -6.5,-164.5 parent: 2 - proto: Chair entities: - - uid: 3705 + - uid: 5203 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-124.5 parent: 2 - - uid: 3722 + - uid: 5204 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-201.5 parent: 2 - - uid: 3767 + - uid: 5205 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-200.5 parent: 2 - - uid: 4358 + - uid: 5206 components: - type: Transform pos: -4.5,-356.5 parent: 2 - - uid: 4756 + - uid: 5207 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-252.5 parent: 2 - - uid: 4952 + - uid: 5208 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-253.5 parent: 2 - - uid: 4965 + - uid: 5209 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-252.5 parent: 2 - - uid: 7741 + - uid: 5210 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-198.5 parent: 2 - - uid: 7743 + - uid: 5211 components: - type: Transform pos: 7.5,-195.5 parent: 2 - - uid: 8440 + - uid: 5212 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-253.5 parent: 2 - - uid: 10770 + - uid: 5213 components: - type: Transform pos: -0.5,-344.5 parent: 2 - - uid: 10797 + - uid: 5214 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-346.5 parent: 2 - - uid: 12128 + - uid: 5215 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-253.5 parent: 2 - - uid: 12159 + - uid: 5216 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 - - uid: 14630 + - uid: 5217 components: - type: Transform pos: -7.5,-254.5 parent: 2 - - uid: 14631 + - uid: 5218 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-257.5 parent: 2 - - uid: 14738 + - uid: 5219 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-307.5 parent: 2 - - uid: 14920 + - uid: 5220 components: - type: Transform rot: -1.5707963267948966 rad @@ -34351,7 +34056,7 @@ entities: parent: 2 - proto: ChairCursed entities: - - uid: 2585 + - uid: 5221 components: - type: Transform rot: -1.5707963267948966 rad @@ -34359,77 +34064,77 @@ entities: parent: 2 - proto: ChairFolding entities: - - uid: 424 + - uid: 5222 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.627699,-1.5039027 parent: 2 - - uid: 1400 + - uid: 5223 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-247.5 parent: 2 - - uid: 1484 + - uid: 5224 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 1485 + - uid: 5225 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-57.5 parent: 2 - - uid: 11711 + - uid: 5226 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-262.5 parent: 2 - - uid: 16495 + - uid: 5227 components: - type: Transform pos: -13.5,-244.5 parent: 2 - proto: ChairFoldingSpawnFolded entities: - - uid: 2728 + - uid: 5228 components: - type: Transform pos: -3.0071216,-135.52832 parent: 2 - proto: ChairGreyscale entities: - - uid: 1839 + - uid: 5229 components: - type: Transform pos: 6.5,-93.5 parent: 2 - - uid: 1842 + - uid: 5230 components: - type: Transform pos: 4.5,-98.5 parent: 2 - - uid: 1843 + - uid: 5231 components: - type: Transform pos: 3.5,-98.5 parent: 2 - - uid: 1845 + - uid: 5232 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-96.5 parent: 2 - - uid: 1851 + - uid: 5233 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-94.5 parent: 2 - - uid: 1852 + - uid: 5234 components: - type: Transform rot: 1.5707963267948966 rad @@ -34437,65 +34142,65 @@ entities: parent: 2 - proto: ChairOfficeDark entities: - - uid: 3121 + - uid: 5235 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-168.5 parent: 2 - - uid: 3122 + - uid: 5236 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-166.5 parent: 2 - - uid: 4785 + - uid: 5237 components: - type: Transform pos: 2.5,-251.5 parent: 2 - - uid: 7378 + - uid: 5238 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-365.5 parent: 2 - - uid: 9057 + - uid: 5239 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 11058 + - uid: 5240 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-329.5 parent: 2 - - uid: 11093 + - uid: 5241 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-331.5 parent: 2 - - uid: 11449 + - uid: 5242 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-345.5 parent: 2 - - uid: 11974 + - uid: 5243 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-371.5 parent: 2 - - uid: 11975 + - uid: 5244 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-371.5 parent: 2 - - uid: 14789 + - uid: 5245 components: - type: Transform rot: 1.5707963267948966 rad @@ -34503,47 +34208,47 @@ entities: parent: 2 - proto: ChairOfficeLight entities: - - uid: 7451 + - uid: 5246 components: - type: Transform pos: -3.5,-165.5 parent: 2 - - uid: 8907 + - uid: 5247 components: - type: Transform pos: 0.5,-202.5 parent: 2 - - uid: 8908 + - uid: 5248 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-202.5 parent: 2 - - uid: 9984 + - uid: 5249 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-313.5 parent: 2 - - uid: 10112 + - uid: 5250 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-302.5 parent: 2 - - uid: 10114 + - uid: 5251 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-301.5 parent: 2 - - uid: 12046 + - uid: 5252 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-303.5 parent: 2 - - uid: 12051 + - uid: 5253 components: - type: Transform rot: 3.141592653589793 rad @@ -34551,7 +34256,7 @@ entities: parent: 2 - proto: ChairPilotSeat entities: - - uid: 25 + - uid: 5254 components: - type: Transform rot: 3.141592653589793 rad @@ -34559,13 +34264,13 @@ entities: parent: 2 - proto: ChairWeb entities: - - uid: 14337 + - uid: 5255 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-60.5 parent: 2 - - uid: 14340 + - uid: 5256 components: - type: Transform rot: 3.141592653589793 rad @@ -34573,115 +34278,115 @@ entities: parent: 2 - proto: ChairWood entities: - - uid: 384 + - uid: 5257 components: - type: Transform rot: 3.141592653589793 rad pos: -3.2935836,0.4495414 parent: 2 - - uid: 1015 + - uid: 5258 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 - - uid: 1315 + - uid: 5259 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-59.5 parent: 2 - - uid: 1347 + - uid: 5260 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-67.5 parent: 2 - - uid: 1348 + - uid: 5261 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-66.5 parent: 2 - - uid: 1349 + - uid: 5262 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-66.5 parent: 2 - - uid: 1350 + - uid: 5263 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-67.5 parent: 2 - - uid: 1351 + - uid: 5264 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-59.5 parent: 2 - - uid: 1352 + - uid: 5265 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-58.5 parent: 2 - - uid: 1353 + - uid: 5266 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-58.5 parent: 2 - - uid: 2586 + - uid: 5267 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-146.5 parent: 2 - - uid: 2587 + - uid: 5268 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-144.5 parent: 2 - - uid: 2588 + - uid: 5269 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-146.5 parent: 2 - - uid: 2589 + - uid: 5270 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-145.5 parent: 2 - - uid: 2590 + - uid: 5271 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-144.5 parent: 2 - - uid: 2695 + - uid: 5272 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-140.5 parent: 2 - - uid: 3151 + - uid: 5273 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-67.5 parent: 2 - - uid: 3201 + - uid: 5274 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-67.5 parent: 2 - - uid: 3604 + - uid: 5275 components: - type: Transform rot: 1.5707963267948966 rad @@ -34689,50 +34394,50 @@ entities: parent: 2 - proto: CheapRollerBedSpawnFolded entities: - - uid: 2376 + - uid: 5276 components: - type: Transform pos: 4.2730184,-180.14731 parent: 2 - - uid: 5422 + - uid: 5277 components: - type: Transform pos: 4.5698934,-180.42856 parent: 2 - proto: ChemDispenser entities: - - uid: 3112 + - uid: 5278 components: - type: Transform pos: 7.5,-169.5 parent: 2 - - uid: 3113 + - uid: 5279 components: - type: Transform pos: 3.5,-165.5 parent: 2 - proto: ChemistryHotplate entities: - - uid: 3137 + - uid: 5280 components: - type: Transform pos: 4.5,-167.5 parent: 2 - proto: ChemMaster entities: - - uid: 3116 + - uid: 5281 components: - type: Transform pos: 5.5,-165.5 parent: 2 - - uid: 3117 + - uid: 5282 components: - type: Transform pos: 7.5,-167.5 parent: 2 - proto: ChessBoard entities: - - uid: 12938 + - uid: 5283 components: - type: Transform rot: 3.141592653589793 rad @@ -34740,30 +34445,30 @@ entities: parent: 2 - proto: Cigar entities: - - uid: 219 + - uid: 5284 components: - type: Transform pos: 3.6992347,-7.328869 parent: 2 - - uid: 404 + - uid: 5285 components: - type: Transform pos: 3.82151,-7.050895 parent: 2 - proto: CigarGoldCase entities: - - uid: 99 + - uid: 5286 components: - type: Transform pos: -2.8886578,-1.2991699 parent: 2 - - uid: 2729 + - uid: 5287 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5303056,-136.50012 parent: 2 - - uid: 14388 + - uid: 5288 components: - type: Transform rot: 1.5707963267948966 rad @@ -34771,199 +34476,199 @@ entities: parent: 2 - proto: CigCartonMixed entities: - - uid: 1833 + - uid: 5289 components: - type: Transform pos: -7.317818,-81.58406 parent: 2 - - uid: 16940 + - uid: 5290 components: - type: Transform pos: -11.700207,-168.61453 parent: 2 - - uid: 16941 + - uid: 5291 components: - type: Transform pos: -11.512707,-168.23953 parent: 2 - proto: CircuitImprinter entities: - - uid: 9829 + - uid: 5292 components: - type: Transform pos: -6.5,-299.5 parent: 2 - proto: CleanerDispenser entities: - - uid: 1735 + - uid: 5293 components: - type: Transform pos: -3.5,-52.5 parent: 2 - proto: ClosetBombFilled entities: - - uid: 11991 + - uid: 5294 components: - type: Transform pos: -8.5,-317.5 parent: 2 - proto: ClosetChefFilled entities: - - uid: 1782 + - uid: 5295 components: - type: Transform pos: -1.5,-88.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: - - uid: 1052 + - uid: 5296 components: - type: Transform pos: 6.5,-34.5 parent: 2 - - uid: 1472 + - uid: 5297 components: - type: Transform pos: -5.5,-81.5 parent: 2 - - uid: 2247 + - uid: 5298 components: - type: Transform pos: -2.5,-107.5 parent: 2 - - uid: 10543 + - uid: 5299 components: - type: Transform pos: 3.5,-318.5 parent: 2 - - uid: 14641 + - uid: 5300 components: - type: Transform pos: 3.5,-259.5 parent: 2 - - uid: 16899 + - uid: 5301 components: - type: Transform pos: -5.5,-246.5 parent: 2 - proto: ClosetFireFilled entities: - - uid: 9895 + - uid: 5302 components: - type: Transform pos: 10.5,-297.5 parent: 2 - - uid: 16895 + - uid: 5303 components: - type: Transform pos: -7.5,-251.5 parent: 2 - proto: ClosetJanitorFilled entities: - - uid: 1706 + - uid: 5304 components: - type: Transform pos: -5.5,-53.5 parent: 2 - proto: ClosetL3JanitorFilled entities: - - uid: 9460 + - uid: 5305 components: - type: Transform pos: -5.5,-55.5 parent: 2 - proto: ClosetL3ScienceFilled entities: - - uid: 12126 + - uid: 5306 components: - type: Transform pos: -8.5,-318.5 parent: 2 - proto: ClosetL3VirologyFilled entities: - - uid: 3900 + - uid: 5307 components: - type: Transform pos: -2.5,-194.5 parent: 2 - - uid: 3901 + - uid: 5308 components: - type: Transform pos: -2.5,-195.5 parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - - uid: 1070 + - uid: 5309 components: - type: Transform pos: 6.5,-71.5 parent: 2 - - uid: 1073 + - uid: 5310 components: - type: Transform pos: 4.5,-69.5 parent: 2 - - uid: 1117 + - uid: 5311 components: - type: Transform pos: 5.5,-32.5 parent: 2 - - uid: 1628 + - uid: 5312 components: - type: Transform pos: -5.5,-37.5 parent: 2 - - uid: 1629 + - uid: 5313 components: - type: Transform pos: -2.5,-35.5 parent: 2 - - uid: 1630 + - uid: 5314 components: - type: Transform pos: 7.5,-69.5 parent: 2 - - uid: 1858 + - uid: 5315 components: - type: Transform pos: -5.5,-98.5 parent: 2 - - uid: 1859 + - uid: 5316 components: - type: Transform pos: -2.5,-95.5 parent: 2 - - uid: 2281 + - uid: 5317 components: - type: Transform pos: 2.5,-114.5 parent: 2 - - uid: 2698 + - uid: 5318 components: - type: Transform pos: 3.5,-153.5 parent: 2 - - uid: 2818 + - uid: 5319 components: - type: Transform pos: 3.5,-134.5 parent: 2 - - uid: 3582 + - uid: 5320 components: - type: Transform pos: -7.5,-176.5 parent: 2 - - uid: 4176 + - uid: 5321 components: - type: Transform pos: -7.5,-171.5 parent: 2 - - uid: 4579 + - uid: 5322 components: - type: Transform pos: -3.5,-180.5 parent: 2 - - uid: 7334 + - uid: 5323 components: - type: Transform pos: 17.5,-149.5 @@ -34992,106 +34697,113 @@ entities: showEnts: False occludes: True ents: - - 3621 + - 5324 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 7335 + - uid: 5325 components: - type: Transform pos: 17.5,-142.5 parent: 2 - - uid: 9052 + - uid: 5326 components: - type: Transform pos: 4.5,-288.5 parent: 2 - - uid: 9409 + - uid: 5327 components: - type: Transform pos: 3.5,-288.5 parent: 2 - - uid: 10533 + - uid: 5328 components: - type: Transform pos: 6.5,-296.5 parent: 2 - - uid: 10534 + - uid: 5329 components: - type: Transform pos: 3.5,-296.5 parent: 2 - - uid: 10535 + - uid: 5330 components: - type: Transform pos: -2.5,-296.5 parent: 2 - - uid: 10537 + - uid: 5331 components: - type: Transform pos: 10.5,-299.5 parent: 2 - - uid: 10539 + - uid: 5332 components: - type: Transform pos: 9.5,-313.5 parent: 2 - - uid: 10540 + - uid: 5333 components: - type: Transform pos: 6.5,-319.5 parent: 2 - - uid: 10541 + - uid: 5334 components: - type: Transform pos: 3.5,-320.5 parent: 2 - - uid: 14596 + - uid: 5335 components: - type: Transform pos: -4.5,-257.5 parent: 2 - - uid: 14597 + - uid: 5336 components: - type: Transform pos: -7.5,-253.5 parent: 2 - - uid: 14598 + - uid: 5337 components: - type: Transform pos: 8.5,-259.5 parent: 2 - - uid: 14642 + - uid: 5338 components: - type: Transform pos: 4.5,-259.5 parent: 2 - - uid: 16871 + - uid: 5339 components: - type: Transform pos: -7.5,-250.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 2383 + - uid: 5340 components: - type: Transform pos: 7.5,-247.5 parent: 2 - - uid: 4893 + - uid: 5341 components: - type: Transform pos: 6.5,-247.5 parent: 2 - - uid: 10090 + - uid: 5342 components: - type: Transform pos: -8.5,-319.5 parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 13571 + components: + - type: Transform + pos: -1.2892275,-170.52505 + parent: 2 - proto: ClosetWall entities: - - uid: 14476 + - uid: 624 components: - type: Transform pos: 17.5,-59.5 @@ -35102,23 +34814,23 @@ entities: showEnts: False occludes: True ents: - - 14479 - - 14478 - - 14477 - - 14480 + - 626 + - 627 + - 625 + - 628 - proto: ClosetWallAtmospherics entities: - - uid: 14755 + - uid: 862 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-266.5 + pos: -20.5,-266.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 93.465614 moles: - 0 - 0 @@ -35138,29 +34850,50 @@ entities: showEnts: False occludes: True ents: - - 14762 - - 14770 - - 14766 - - uid: 16798 + - 865 + - 868 + - 864 + - 863 + - 867 + - 866 + - uid: 932 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-266.5 + pos: -17.5,-266.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 16799 - - 16800 - - 16801 - - uid: 16811 + - 933 + - 934 + - 935 + - uid: 3958 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-266.5 + pos: -15.5,-266.5 parent: 2 - type: ContainerContainer containers: @@ -35168,66 +34901,45 @@ entities: showEnts: False occludes: True ents: - - 16813 - - 16814 - - 16812 - - uid: 17056 + - 3960 + - 3961 + - 3959 + - uid: 4694 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-266.5 + pos: -16.5,-266.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 17062 - - 17061 - - 17060 - - 17059 - - 17058 - - 17057 + - 4696 + - 4695 + - 4697 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 370 + - uid: 5343 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 parent: 2 - - uid: 383 + - uid: 5344 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 - - uid: 684 + - uid: 5345 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 - - uid: 776 + - uid: 5346 components: - type: Transform rot: -1.5707963267948966 rad @@ -35251,79 +34963,79 @@ entities: - 0 - 0 - 0 - - uid: 815 + - uid: 5347 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-45.5 parent: 2 - - uid: 834 + - uid: 5348 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-107.5 parent: 2 - - uid: 895 + - uid: 5349 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 - - uid: 2899 + - uid: 5350 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-138.5 parent: 2 - - uid: 4057 + - uid: 5351 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-52.5 parent: 2 - - uid: 4058 + - uid: 5352 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-79.5 parent: 2 - - uid: 4059 + - uid: 5353 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-73.5 parent: 2 - - uid: 4060 + - uid: 5354 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-100.5 parent: 2 - - uid: 4061 + - uid: 5355 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-106.5 parent: 2 - - uid: 4062 + - uid: 5356 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-127.5 parent: 2 - - uid: 4063 + - uid: 5357 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-133.5 parent: 2 - - uid: 4064 + - uid: 5358 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-154.5 parent: 2 - - uid: 4065 + - uid: 5359 components: - type: Transform rot: 1.5707963267948966 rad @@ -35347,31 +35059,31 @@ entities: - 0 - 0 - 0 - - uid: 4066 + - uid: 5360 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-181.5 parent: 2 - - uid: 4067 + - uid: 5361 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-187.5 parent: 2 - - uid: 4094 + - uid: 5362 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-35.5 parent: 2 - - uid: 4137 + - uid: 5363 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 - - uid: 4191 + - uid: 5364 components: - type: Transform rot: -1.5707963267948966 rad @@ -35395,78 +35107,78 @@ entities: - 0 - 0 - 0 - - uid: 4221 + - uid: 5365 components: - type: Transform pos: -6.5,-106.5 parent: 2 - - uid: 4577 + - uid: 5366 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-235.5 parent: 2 - - uid: 4650 + - uid: 5367 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-208.5 parent: 2 - - uid: 4652 + - uid: 5368 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-214.5 parent: 2 - - uid: 4656 + - uid: 5369 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-241.5 parent: 2 - - uid: 7489 + - uid: 5370 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-262.5 parent: 2 - - uid: 8889 + - uid: 5371 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-268.5 parent: 2 - - uid: 9377 + - uid: 5372 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-289.5 parent: 2 - - uid: 9378 + - uid: 5373 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-295.5 parent: 2 - - uid: 10568 + - uid: 5374 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-321.5 parent: 2 - - uid: 11140 + - uid: 5375 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-327.5 parent: 2 - - uid: 11145 + - uid: 5376 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-348.5 parent: 2 - - uid: 11146 + - uid: 5377 components: - type: Transform rot: 1.5707963267948966 rad @@ -35474,31 +35186,31 @@ entities: parent: 2 - proto: ClosetWallFireFilledRandom entities: - - uid: 321 + - uid: 5378 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 2 - - uid: 334 + - uid: 5379 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-1.5 parent: 2 - - uid: 835 + - uid: 5380 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-133.5 parent: 2 - - uid: 836 + - uid: 5381 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-154.5 parent: 2 - - uid: 839 + - uid: 5382 components: - type: Transform rot: -1.5707963267948966 rad @@ -35522,18 +35234,18 @@ entities: - 0 - 0 - 0 - - uid: 931 + - uid: 5383 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-33.5 parent: 2 - - uid: 1108 + - uid: 5384 components: - type: Transform pos: 4.5,-36.5 parent: 2 - - uid: 1819 + - uid: 5385 components: - type: Transform rot: 1.5707963267948966 rad @@ -35557,19 +35269,19 @@ entities: - 0 - 0 - 0 - - uid: 2304 + - uid: 5386 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-127.5 parent: 2 - - uid: 2898 + - uid: 5387 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-143.5 parent: 2 - - uid: 3001 + - uid: 5388 components: - type: Transform pos: -7.5,-106.5 @@ -35598,98 +35310,98 @@ entities: showEnts: False occludes: True ents: - - 3625 - - uid: 3021 + - 5389 + - uid: 5390 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-37.5 parent: 2 - - uid: 3162 + - uid: 5391 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-106.5 parent: 2 - - uid: 4068 + - uid: 5392 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-187.5 parent: 2 - - uid: 4069 + - uid: 5393 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-181.5 parent: 2 - - uid: 4227 + - uid: 5394 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-15.5 parent: 2 - - uid: 4228 + - uid: 5395 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-100.5 parent: 2 - - uid: 4229 + - uid: 5396 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-79.5 parent: 2 - - uid: 4230 + - uid: 5397 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-73.5 parent: 2 - - uid: 4231 + - uid: 5398 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-52.5 parent: 2 - - uid: 4232 + - uid: 5399 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-46.5 parent: 2 - - uid: 4238 + - uid: 5400 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-25.5 parent: 2 - - uid: 4469 + - uid: 5401 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-107.5 parent: 2 - - uid: 4651 + - uid: 5402 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-208.5 parent: 2 - - uid: 4653 + - uid: 5403 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-214.5 parent: 2 - - uid: 4654 + - uid: 5404 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-235.5 parent: 2 - - uid: 4655 + - uid: 5405 components: - type: Transform rot: -1.5707963267948966 rad @@ -35713,49 +35425,49 @@ entities: - 0 - 0 - 0 - - uid: 7498 + - uid: 5406 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-262.5 parent: 2 - - uid: 8669 + - uid: 5407 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-268.5 parent: 2 - - uid: 9376 + - uid: 5408 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-289.5 parent: 2 - - uid: 9379 + - uid: 5409 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-295.5 parent: 2 - - uid: 10569 + - uid: 5410 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-321.5 parent: 2 - - uid: 11142 + - uid: 5411 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-327.5 parent: 2 - - uid: 11143 + - uid: 5412 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-348.5 parent: 2 - - uid: 11144 + - uid: 5413 components: - type: Transform rot: -1.5707963267948966 rad @@ -35763,7 +35475,7 @@ entities: parent: 2 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 1063 + - uid: 5414 components: - type: Transform rot: 3.141592653589793 rad @@ -35787,18 +35499,18 @@ entities: - 0 - 0 - 0 - - uid: 7306 + - uid: 5415 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 2 - - uid: 7392 + - uid: 5416 components: - type: Transform pos: 13.5,-137.5 parent: 2 - - uid: 7393 + - uid: 5417 components: - type: Transform rot: 3.141592653589793 rad @@ -35806,14 +35518,14 @@ entities: parent: 2 - proto: ClothingBackpackDuffelSyndicatePyjamaBundle entities: - - uid: 12108 + - uid: 5418 components: - type: Transform pos: -11.520256,-161.46404 parent: 2 - proto: ClothingBackpackMerc entities: - - uid: 9088 + - uid: 5419 components: - type: Transform rot: 3.141592653589793 rad @@ -35821,14 +35533,14 @@ entities: parent: 2 - proto: ClothingBeltChampion entities: - - uid: 98 + - uid: 5420 components: - type: Transform pos: -1.5155509,-3.3950026 parent: 2 - proto: ClothingBeltMercWebbing entities: - - uid: 9089 + - uid: 5421 components: - type: Transform rot: 1.5707963267948966 rad @@ -35836,403 +35548,403 @@ entities: parent: 2 - proto: ClothingBeltSalvageWebbing entities: - - uid: 8632 + - uid: 5422 components: - type: Transform pos: -6.4954147,-283.40762 parent: 2 - proto: ClothingBeltUtilityEngineering entities: - - uid: 4921 + - uid: 5423 components: - type: Transform pos: 5.3335085,-253.25787 parent: 2 - - uid: 4948 + - uid: 5424 components: - type: Transform pos: 5.597643,-252.98062 parent: 2 - proto: ClothingBeltUtilityFilled entities: - - uid: 8865 + - uid: 5425 components: - type: Transform pos: -5.4843903,-272.37283 parent: 2 - - uid: 8918 + - uid: 5426 components: - type: Transform pos: -5.086961,-272.51526 parent: 2 - proto: ClothingEyesEyepatchHudBeer entities: - - uid: 6284 + - uid: 5427 components: - type: Transform pos: -5.5304284,-200.22986 parent: 2 - proto: ClothingEyesEyepatchHudMedical entities: - - uid: 3694 + - uid: 5428 components: - type: Transform pos: 8.467955,-175.3928 parent: 2 - proto: ClothingEyesEyepatchHudSecurity entities: - - uid: 6307 + - uid: 5429 components: - type: Transform pos: -7.5085177,-98.683334 parent: 2 - - uid: 10854 + - uid: 5430 components: - type: Transform pos: -6.5701137,-339.11215 parent: 2 - proto: ClothingEyesGlassesJamjar entities: - - uid: 15036 + - uid: 5431 components: - type: Transform pos: -10.441889,-133.57634 parent: 2 - proto: ClothingEyesGlassesMercenary entities: - - uid: 9096 + - uid: 5432 components: - type: Transform pos: 17.46046,-151.51154 parent: 2 - proto: ClothingEyesGlassesMeson entities: - - uid: 6639 + - uid: 5433 components: - type: Transform pos: 8.599879,-250.49686 parent: 2 - - uid: 8414 + - uid: 5434 components: - type: Transform pos: 16.374,-245.4528 parent: 2 - - uid: 8492 + - uid: 5435 components: - type: Transform pos: 16.241934,-245.58482 parent: 2 - - uid: 8982 + - uid: 5436 components: - type: Transform pos: 16.545687,-245.58482 parent: 2 - proto: ClothingEyesHudOnionBeer entities: - - uid: 14658 + - uid: 5437 components: - type: Transform pos: 17.613636,-73.25992 parent: 2 - proto: ClothingEyesHudSecurity entities: - - uid: 12714 + - uid: 5438 components: - type: Transform pos: -6.38522,-339.1782 parent: 2 - proto: ClothingHandsGlovesColorBlack entities: - - uid: 934 + - uid: 5439 components: - type: Transform pos: -6.3692145,-340.57867 parent: 2 - - uid: 9395 + - uid: 5440 components: - type: Transform pos: -6.488075,-340.47308 parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 2973 + - uid: 5441 components: - type: Transform pos: 4.7532883,-254.3202 parent: 2 - - uid: 7484 + - uid: 5442 components: - type: Transform pos: 15.620354,-246.35051 parent: 2 - - uid: 14599 + - uid: 5443 components: - type: Transform pos: 5.5004325,-245.50078 parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 5118 + - uid: 5444 components: - type: Transform pos: 5.4891844,-245.36584 parent: 2 - - uid: 15261 + - uid: 5445 components: - type: Transform pos: 5.4891844,-245.19717 parent: 2 - proto: ClothingHandsGlovesLatex entities: - - uid: 10120 + - uid: 5446 components: - type: Transform pos: -4.4184327,-302.4534 parent: 2 - proto: ClothingHandsGlovesMercFingerless entities: - - uid: 9094 + - uid: 5447 components: - type: Transform pos: 11.0250435,-142.57506 parent: 2 - proto: ClothingHandsGlovesNitrile entities: - - uid: 3905 + - uid: 5448 components: - type: Transform pos: -6.474791,-195.55786 parent: 2 - proto: ClothingHandsTacticalMaidGloves entities: - - uid: 2879 + - uid: 5449 components: - type: Transform pos: -8.44329,-15.527226 parent: 2 - proto: ClothingHeadBandMerc entities: - - uid: 9090 + - uid: 5450 components: - type: Transform pos: 16.371077,-159.35246 parent: 2 - proto: ClothingHeadHatBeretMerc entities: - - uid: 9091 + - uid: 5451 components: - type: Transform pos: 7.385122,-163.34297 parent: 2 - proto: ClothingHeadHatBeretRND entities: - - uid: 15096 + - uid: 5452 components: - type: Transform pos: 10.067849,-194.21626 parent: 2 - proto: ClothingHeadHatBrownFlatcap entities: - - uid: 14636 + - uid: 5453 components: - type: Transform pos: -7.7489276,-255.68477 parent: 2 - proto: ClothingHeadHatCowboyBountyHunter entities: - - uid: 6283 + - uid: 5454 components: - type: Transform pos: -5.4412646,-206.21022 parent: 2 - - uid: 10122 + - uid: 5455 components: - type: Transform pos: -6.5050893,-305.04108 parent: 2 - proto: ClothingHeadHatCowboyBrown entities: - - uid: 6016 + - uid: 5456 components: - type: Transform pos: -2.3394754,-148.72287 parent: 2 - proto: ClothingHeadHatCowboyGrey entities: - - uid: 15165 + - uid: 5457 components: - type: Transform pos: 9.464466,-120.1053 parent: 2 - proto: ClothingHeadHatCowboyRed entities: - - uid: 8932 + - uid: 5458 components: - type: Transform pos: 16.43729,-78.522385 parent: 2 - proto: ClothingHeadHatShrineMaidenWig entities: - - uid: 2671 + - uid: 5459 components: - type: Transform pos: 2.5369916,-142.75755 parent: 2 - proto: ClothingHeadHatSurgcapPurple entities: - - uid: 16505 + - uid: 5460 components: - type: Transform pos: -13.547984,-168.3646 parent: 2 - proto: ClothingHeadHatUshanka entities: - - uid: 1487 + - uid: 5461 components: - type: Transform pos: 7.3559012,-56.31927 parent: 2 - proto: ClothingHeadHatWelding entities: - - uid: 339 + - uid: 5462 components: - type: Transform pos: -6.7000256,-2.3430972 parent: 2 - proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 14348 + - uid: 5463 components: - type: Transform pos: 8.726893,-250.28665 parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 14349 + - uid: 5464 components: - type: Transform pos: 8.351893,-250.58353 parent: 2 - proto: ClothingHeadHelmetAtmosFire entities: - - uid: 17058 + - uid: 867 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetMerc entities: - - uid: 9086 + - uid: 5465 components: - type: Transform pos: 12.225706,-136.18898 parent: 2 - proto: ClothingMaskBreath entities: - - uid: 633 + - uid: 5466 components: - type: Transform pos: -3.5046618,-18.436672 parent: 2 - proto: ClothingMaskClown entities: - - uid: 10639 + - uid: 5468 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskGasAtmos entities: - - uid: 8253 - components: - - type: Transform - pos: 11.724084,-252.53477 - parent: 2 - - uid: 16813 + - uid: 4696 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 5477 + components: + - type: Transform + pos: 11.724084,-252.53477 + parent: 2 - proto: ClothingMaskGasMerc entities: - - uid: 9092 + - uid: 5478 components: - type: Transform pos: 7.4026275,-133.54765 parent: 2 - proto: ClothingMaskSadMime entities: - - uid: 11453 + - uid: 5480 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskScaredMime entities: - - uid: 11287 + - uid: 5481 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyClown entities: - - uid: 8788 + - uid: 5469 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyMime entities: - - uid: 11452 + - uid: 5482 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckBling entities: - - uid: 96 + - uid: 5487 components: - type: Transform pos: -0.98430085,-3.5043776 parent: 2 - proto: ClothingNeckCloakGoliathCloak entities: - - uid: 12386 + - uid: 5488 components: - type: Transform pos: 20.545477,-319.41248 parent: 2 - proto: ClothingNeckCloakMoth entities: - - uid: 4222 + - uid: 5489 components: - type: Transform pos: -7.7756677,-121.72427 parent: 2 - proto: ClothingNeckHeadphones entities: - - uid: 882 + - uid: 5490 components: - type: Transform pos: -1.4138944,-29.279722 parent: 2 - proto: ClothingNeckScarfStripedZebra entities: - - uid: 2039 + - uid: 5491 components: - type: Transform rot: -1.5707963267948966 rad @@ -36240,37 +35952,37 @@ entities: parent: 2 - proto: ClothingNeckStoleChaplain entities: - - uid: 2674 + - uid: 5492 components: - type: Transform pos: 6.5223746,-143.07793 parent: 2 - proto: ClothingNeckTieSci entities: - - uid: 15097 + - uid: 5493 components: - type: Transform pos: 10.437636,-200.83151 parent: 2 - proto: ClothingOuterSuitAtmosFire entities: - - uid: 17061 + - uid: 868 components: - type: Transform - parent: 17056 + parent: 862 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterSuitShrineMaiden entities: - - uid: 2670 + - uid: 5494 components: - type: Transform pos: 2.4225328,-143.14482 parent: 2 - proto: ClothingOuterVestWebMerc entities: - - uid: 1997 + - uid: 5495 components: - type: Transform rot: 3.141592653589793 rad @@ -36278,216 +35990,216 @@ entities: parent: 2 - proto: ClothingOuterWinterMime entities: - - uid: 11286 + - uid: 5483 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterWarden entities: - - uid: 12713 + - uid: 5496 components: - type: Transform pos: -0.49978608,-365.77002 parent: 2 - proto: ClothingShoesBootsCowboyBrown entities: - - uid: 6274 + - uid: 5497 components: - type: Transform pos: -2.9131222,-148.72287 parent: 2 - proto: ClothingShoesBootsCowboyWhite entities: - - uid: 15162 + - uid: 5498 components: - type: Transform pos: 8.722098,-120.734985 parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 406 + - uid: 5499 components: - type: Transform pos: 4.592537,2.4938912 parent: 2 - - uid: 2384 + - uid: 5500 components: - type: Transform pos: 4.400423,2.6220393 parent: 2 - - uid: 2385 + - uid: 5501 components: - type: Transform pos: 9.430661,-119.386765 parent: 2 - - uid: 2386 + - uid: 5502 components: - type: Transform pos: 9.618161,-119.543015 parent: 2 - - uid: 9015 + - uid: 5503 components: - type: Transform pos: -6.54561,-283.5363 parent: 2 - proto: ClothingShoesBootsMercFilled entities: - - uid: 8399 + - uid: 5504 components: - type: Transform pos: 7.4738736,-160.36284 parent: 2 - proto: ClothingShoesClown entities: - - uid: 10092 + - uid: 5470 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtJanimaidmini entities: - - uid: 2878 + - uid: 5505 components: - type: Transform pos: -4.636336,-20.392185 parent: 2 - proto: ClothingUniformJumpsuitChiefEngineerSyndie entities: - - uid: 734 + - uid: 5506 components: - type: Transform pos: -2.5118494,-45.422665 parent: 2 - proto: ClothingUniformJumpsuitMercenary entities: - - uid: 9097 + - uid: 5507 components: - type: Transform pos: 13.563655,-161.57042 parent: 2 - proto: ClothingUniformJumpsuitMime entities: - - uid: 11288 + - uid: 5484 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 1110 + - uid: 5508 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 1632 + - uid: 5509 components: - type: Transform pos: 4.5,-66.5 parent: 2 - - uid: 1638 + - uid: 5510 components: - type: Transform pos: 3.5,-71.5 parent: 2 - - uid: 14374 + - uid: 5511 components: - type: Transform pos: 13.5,-60.5 parent: 2 - proto: Cobweb2 entities: - - uid: 437 + - uid: 5512 components: - type: Transform pos: -2.5,-16.5 parent: 2 - - uid: 1635 + - uid: 5513 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 1636 + - uid: 5514 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 1637 + - uid: 5515 components: - type: Transform pos: -2.5,-53.5 parent: 2 - - uid: 9030 + - uid: 5516 components: - type: Transform pos: 1.5,-262.5 parent: 2 - - uid: 9031 + - uid: 5517 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9032 + - uid: 5518 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-287.5 parent: 2 - - uid: 14379 + - uid: 5519 components: - type: Transform pos: 17.5,-60.5 parent: 2 - - uid: 14773 + - uid: 5520 components: - type: Transform pos: 6.5,-28.5 parent: 2 - proto: ComfyChair entities: - - uid: 309 + - uid: 5521 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 parent: 2 - - uid: 2208 + - uid: 5522 components: - type: Transform pos: -0.5,-121.5 parent: 2 - - uid: 4143 + - uid: 5523 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-358.5 parent: 2 - - uid: 11763 + - uid: 5524 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-358.5 parent: 2 - - uid: 13452 + - uid: 5525 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-37.5 parent: 2 - - uid: 15028 + - uid: 5526 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-133.5 parent: 2 - - uid: 15029 + - uid: 5527 components: - type: Transform rot: -1.5707963267948966 rad @@ -36495,14 +36207,14 @@ entities: parent: 2 - proto: ComputerAlert entities: - - uid: 1156 + - uid: 5528 components: - type: Transform pos: -5.5,-334.5 parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 12118 + - uid: 5529 components: - type: Transform rot: 3.141592653589793 rad @@ -36510,7 +36222,7 @@ entities: parent: 2 - proto: computerBodyScanner entities: - - uid: 2398 + - uid: 5530 components: - type: Transform rot: 3.141592653589793 rad @@ -36518,7 +36230,7 @@ entities: parent: 2 - proto: ComputerBroken entities: - - uid: 9695 + - uid: 5531 components: - type: Transform rot: -1.5707963267948966 rad @@ -36526,7 +36238,7 @@ entities: parent: 2 - proto: ComputerCargoBounty entities: - - uid: 8497 + - uid: 5532 components: - type: Transform rot: 3.141592653589793 rad @@ -36534,45 +36246,45 @@ entities: parent: 2 - proto: ComputerCargoOrders entities: - - uid: 9025 + - uid: 5533 components: - type: Transform pos: 3.5,-276.5 parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 9026 + - uid: 5534 components: - type: Transform pos: 2.5,-276.5 parent: 2 - proto: ComputerComms entities: - - uid: 54 + - uid: 5535 components: - type: Transform pos: 0.5,3.5 parent: 2 - - uid: 7211 + - uid: 5536 components: - type: Transform pos: -2.5,-9.5 parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 50 + - uid: 5537 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 - - uid: 7206 + - uid: 5538 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-202.5 parent: 2 - - uid: 8408 + - uid: 5539 components: - type: Transform rot: 3.141592653589793 rad @@ -36580,12 +36292,12 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 14300 + - uid: 5540 components: - type: Transform pos: -6.5,-335.5 parent: 2 - - uid: 14804 + - uid: 5541 components: - type: Transform rot: -1.5707963267948966 rad @@ -36593,13 +36305,13 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 395 + - uid: 5542 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-10.5 parent: 2 - - uid: 9514 + - uid: 5543 components: - type: Transform rot: 1.5707963267948966 rad @@ -36607,20 +36319,20 @@ entities: parent: 2 - proto: ComputerMassMedia entities: - - uid: 9638 + - uid: 5544 components: - type: Transform pos: 21.5,-297.5 parent: 2 - proto: ComputerMedicalRecords entities: - - uid: 7205 + - uid: 5545 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-203.5 parent: 2 - - uid: 7837 + - uid: 5546 components: - type: Transform rot: 3.141592653589793 rad @@ -36628,60 +36340,60 @@ entities: parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 49 + - uid: 5547 components: - type: Transform pos: -1.5,2.5 parent: 2 - - uid: 5425 + - uid: 5548 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-231.5 parent: 2 - - uid: 5461 + - uid: 5549 components: - type: Transform pos: -3.5,-218.5 parent: 2 - - uid: 6750 + - uid: 5550 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-254.5 parent: 2 - - uid: 8182 + - uid: 5551 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-252.5 parent: 2 - - uid: 9702 + - uid: 5552 components: - type: Transform pos: 23.5,-309.5 parent: 2 - proto: ComputerRadar entities: - - uid: 52 + - uid: 5553 components: - type: Transform pos: 2.5,2.5 parent: 2 - proto: ComputerResearchAndDevelopment entities: - - uid: 9826 + - uid: 5554 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-301.5 parent: 2 - - uid: 10033 + - uid: 5555 components: - type: Transform pos: -2.5,-300.5 parent: 2 - - uid: 10037 + - uid: 5556 components: - type: Transform rot: -1.5707963267948966 rad @@ -36689,7 +36401,7 @@ entities: parent: 2 - proto: ComputerRoboticsControl entities: - - uid: 6661 + - uid: 5557 components: - type: Transform rot: 1.5707963267948966 rad @@ -36697,7 +36409,7 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 8873 + - uid: 5558 components: - type: Transform rot: 1.5707963267948966 rad @@ -36705,7 +36417,7 @@ entities: parent: 2 - proto: ComputerShuttleCargo entities: - - uid: 9022 + - uid: 5559 components: - type: Transform rot: -1.5707963267948966 rad @@ -36713,38 +36425,38 @@ entities: parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 8890 + - uid: 5560 components: - type: Transform pos: -5.5,-270.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 4912 + - uid: 5561 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-231.5 parent: 2 - - uid: 5462 + - uid: 5562 components: - type: Transform pos: -2.5,-218.5 parent: 2 - proto: ComputerStationRecords entities: - - uid: 9396 + - uid: 5563 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 2 - - uid: 10709 + - uid: 5564 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 15750 + - uid: 5565 components: - type: Transform rot: 1.5707963267948966 rad @@ -36752,17 +36464,17 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 1172 + - uid: 5566 components: - type: Transform pos: -4.5,-334.5 parent: 2 - - uid: 9682 + - uid: 5567 components: - type: Transform pos: 23.5,-315.5 parent: 2 - - uid: 14805 + - uid: 5568 components: - type: Transform rot: -1.5707963267948966 rad @@ -36770,192 +36482,150 @@ entities: parent: 2 - proto: ComputerTelevision entities: - - uid: 12694 + - uid: 5569 components: - type: Transform pos: -2.5,-61.5 parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 5182 + - uid: 5570 components: - type: Transform pos: 23.5,-255.5 parent: 2 - - uid: 6652 + - uid: 5571 components: - type: Transform pos: 31.5,-255.5 parent: 2 - - uid: 7449 + - uid: 5572 components: - type: Transform pos: 19.5,-243.5 parent: 2 - - uid: 7771 + - uid: 5573 components: - type: Transform pos: 19.5,-242.5 parent: 2 - proto: ContrabassInstrument entities: - - uid: 14363 + - uid: 5574 components: - type: Transform pos: 13.5,-62.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 4899 + - uid: 5575 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 5450 + - uid: 5576 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-217.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 6589 + - uid: 5577 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-220.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7620 + - uid: 5578 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-216.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7644 + - uid: 5579 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-221.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 7715 + - uid: 5580 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-218.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - - uid: 8990 + - uid: 5581 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8991 + - uid: 5582 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8992 + - uid: 5583 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8993 + - uid: 5584 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8994 + - uid: 5585 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8995 + - uid: 5586 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - - uid: 8996 + - uid: 5587 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-281.5 parent: 2 - - type: DeviceLinkSink - links: - - 9006 - - uid: 8997 + - uid: 5588 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-277.5 parent: 2 - - type: DeviceLinkSink - links: - - 9007 - proto: CowToolboxFilled entities: - - uid: 5403 + - uid: 5589 components: - type: Transform pos: -2.6682575,-263.44592 parent: 2 - proto: CrateArtifactContainer entities: - - uid: 9825 + - uid: 5590 components: - type: Transform pos: -2.5,-320.5 parent: 2 - proto: CrateEngineeringAMEControl entities: - - uid: 6862 + - uid: 5591 components: - type: Transform pos: 20.5,-251.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 8630 + - uid: 469 components: - type: Transform pos: 20.5,-252.5 @@ -36984,71 +36654,71 @@ entities: showEnts: False occludes: True ents: - - 8631 - - 8633 - - 8634 + - 470 + - 471 + - 472 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateEngineeringCableHV entities: - - uid: 4903 + - uid: 5592 components: - type: Transform pos: -2.5,-231.5 parent: 2 - proto: CrateFilledSpawner entities: - - uid: 2995 + - uid: 5593 components: - type: Transform pos: 6.5,-278.5 parent: 2 - - uid: 14094 + - uid: 5594 components: - type: Transform pos: 1.5,-278.5 parent: 2 - - uid: 14095 + - uid: 5595 components: - type: Transform pos: 1.5,-280.5 parent: 2 - - uid: 14096 + - uid: 5596 components: - type: Transform pos: 2.5,-280.5 parent: 2 - proto: CrateFreezer entities: - - uid: 1940 + - uid: 5597 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 6953 + - uid: 5598 components: - type: Transform pos: 0.5,-196.5 parent: 2 - proto: CrateFunPirate entities: - - uid: 14570 + - uid: 5599 components: - type: Transform pos: -11.5,-299.5 parent: 2 - proto: CrateMedicalSecure entities: - - uid: 3241 + - uid: 5600 components: - type: Transform pos: -1.5,-177.5 parent: 2 - proto: CrateMedicalSurgery entities: - - uid: 6779 + - uid: 5601 components: - type: Transform pos: -14.5,-168.5 @@ -37071,28 +36741,28 @@ entities: - 0 - 0 - 0 - - uid: 8471 + - uid: 5602 components: - type: Transform pos: -0.5,-196.5 parent: 2 - proto: CrateNPCHamlet entities: - - uid: 209 + - uid: 5603 components: - type: Transform pos: 6.5,-10.5 parent: 2 - proto: CratePlasma entities: - - uid: 9038 + - uid: 5604 components: - type: Transform pos: 6.5,-274.5 parent: 2 - proto: CrateSecure entities: - - uid: 12773 + - uid: 5605 components: - type: Transform pos: -4.5,-355.5 @@ -37121,75 +36791,75 @@ entities: showEnts: False occludes: True ents: - - 12774 - - 12775 - - 12776 - - 12777 + - 5609 + - 5608 + - 5606 + - 5607 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 7829 + - uid: 5610 components: - type: Transform pos: 8.5,-342.5 parent: 2 - proto: CrateServiceBureaucracy entities: - - uid: 9069 + - uid: 5611 components: - type: Transform pos: 6.5,-270.5 parent: 2 - proto: CrateServiceJanitorialSupplies entities: - - uid: 1066 + - uid: 5612 components: - type: Transform pos: -3.5,-55.5 parent: 2 - proto: CrateTrashCart entities: - - uid: 7622 + - uid: 5613 components: - type: Transform pos: 5.5,-220.5 parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 5451 + - uid: 5614 components: - type: Transform pos: 5.5,-218.5 parent: 2 - proto: CrateTrashCartJani entities: - - uid: 10864 + - uid: 5615 components: - type: Transform pos: -0.5,-55.5 parent: 2 - proto: CrayonBox entities: - - uid: 14730 + - uid: 5616 components: - type: Transform pos: -6.0386314,-189.32039 parent: 2 - proto: CrayonMime entities: - - uid: 11491 + - uid: 5485 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Crematorium entities: - - uid: 2692 + - uid: 5617 components: - type: Transform rot: 1.5707963267948966 rad @@ -37197,7 +36867,7 @@ entities: parent: 2 - proto: CrewMonitoringServer entities: - - uid: 9394 + - uid: 5618 components: - type: Transform pos: 3.5,-201.5 @@ -37207,73 +36877,73 @@ entities: available: False - proto: Crowbar entities: - - uid: 12231 + - uid: 5619 components: - type: Transform pos: 15.588418,-247.49165 parent: 2 - proto: CrowbarRed entities: - - uid: 867 + - uid: 5620 components: - type: Transform rot: 3.141592653589793 rad pos: 17.447252,-148.35458 parent: 2 - - uid: 5020 + - uid: 5621 components: - type: Transform pos: 7.5092626,-245.4333 parent: 2 - - uid: 14645 + - uid: 5622 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5097127,-260.45267 parent: 2 - - uid: 14646 + - uid: 5623 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.4304724,-260.42627 parent: 2 - - uid: 14649 + - uid: 5624 components: - type: Transform pos: 7.6104946,-245.51202 parent: 2 - - uid: 15266 + - uid: 5625 components: - type: Transform pos: 7.734223,-245.60197 parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 1831 + - uid: 5626 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-110.5 parent: 2 - - uid: 1987 + - uid: 5627 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-109.5 parent: 2 - - uid: 1988 + - uid: 5628 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-107.5 parent: 2 - - uid: 2075 + - uid: 5629 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-108.5 parent: 2 - - uid: 10929 + - uid: 5630 components: - type: Transform rot: 1.5707963267948966 rad @@ -37281,7 +36951,7 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawner entities: - - uid: 1205 + - uid: 5631 components: - type: Transform rot: 1.5707963267948966 rad @@ -37289,7 +36959,7 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 1242 + - uid: 5632 components: - type: Transform rot: -1.5707963267948966 rad @@ -37297,117 +36967,112 @@ entities: parent: 2 - proto: CryoPod entities: - - uid: 2924 + - uid: 5633 components: - type: Transform pos: -3.5,-168.5 parent: 2 - proto: CryoxadoneBeakerSmall entities: - - uid: 2400 - components: - - type: Transform - pos: -1.6543152,-168.36696 - parent: 2 - - uid: 11894 + - uid: 16325 components: - type: Transform - pos: -1.7246923,-168.03389 + pos: -2.2571619,-168.41248 parent: 2 - proto: CrystalBlue entities: - - uid: 6833 + - uid: 5636 components: - type: Transform pos: 23.5,-258.5 parent: 2 - - uid: 7568 + - uid: 5637 components: - type: Transform pos: 29.5,-264.5 parent: 2 - - uid: 16501 + - uid: 5638 components: - type: Transform pos: -11.5,-163.5 parent: 2 - proto: CrystalCyan entities: - - uid: 5677 + - uid: 5639 components: - type: Transform pos: 2.5,-141.5 parent: 2 - - uid: 5685 + - uid: 5640 components: - type: Transform pos: 6.5,-141.5 parent: 2 - - uid: 6836 + - uid: 5641 components: - type: Transform pos: 30.5,-258.5 parent: 2 - - uid: 6837 + - uid: 5642 components: - type: Transform pos: 27.5,-255.5 parent: 2 - - uid: 7570 + - uid: 5643 components: - type: Transform pos: 24.5,-261.5 parent: 2 - - uid: 16504 + - uid: 5644 components: - type: Transform pos: -12.5,-161.5 parent: 2 - - uid: 16529 + - uid: 5645 components: - type: Transform pos: -14.5,-166.5 parent: 2 - proto: CrystalGreen entities: - - uid: 7233 + - uid: 5646 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-144.5 parent: 2 - - uid: 7247 + - uid: 5647 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-149.5 parent: 2 - - uid: 7248 + - uid: 5648 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-147.5 parent: 2 - - uid: 7250 + - uid: 5649 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-145.5 parent: 2 - - uid: 7313 + - uid: 5650 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-153.5 parent: 2 - - uid: 7416 + - uid: 5651 components: - type: Transform pos: 17.5,-163.5 parent: 2 - proto: CyborgEndoskeleton entities: - - uid: 9949 + - uid: 5652 components: - type: Transform rot: 3.141592653589793 rad @@ -37415,14 +37080,14 @@ entities: parent: 2 - proto: d20Dice entities: - - uid: 14461 + - uid: 5653 components: - type: Transform pos: 17.02164,-78.62984 parent: 2 - proto: d4Dice entities: - - uid: 14634 + - uid: 5654 components: - type: Transform rot: -1.5707963267948966 rad @@ -37430,7 +37095,7 @@ entities: parent: 2 - proto: Dart entities: - - uid: 2207 + - uid: 5655 components: - type: Transform rot: 0.09166564047336578 rad @@ -37438,395 +37103,395 @@ entities: parent: 2 - proto: DefaultStationBeaconAISatellite entities: - - uid: 11450 + - uid: 5656 components: - type: Transform pos: 22.5,-307.5 parent: 2 - proto: DefaultStationBeaconAME entities: - - uid: 13472 + - uid: 5657 components: - type: Transform pos: 18.5,-252.5 parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 11458 + - uid: 5658 components: - type: Transform pos: 5.5,-301.5 parent: 2 - proto: DefaultStationBeaconArmory entities: - - uid: 11455 + - uid: 5659 components: - type: Transform pos: 5.5,-340.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: - - uid: 11459 + - uid: 5660 components: - type: Transform pos: 6.5,-40.5 parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 11460 + - uid: 5661 components: - type: Transform pos: -6.5,-315.5 parent: 2 - proto: DefaultStationBeaconBar entities: - - uid: 11461 + - uid: 5662 components: - type: Transform pos: -0.5,-63.5 parent: 2 - proto: DefaultStationBeaconBotany entities: - - uid: 11462 + - uid: 5663 components: - type: Transform pos: -6.5,-86.5 parent: 2 - proto: DefaultStationBeaconBridge entities: - - uid: 11466 + - uid: 5664 components: - type: Transform pos: 0.5,1.5 parent: 2 - proto: DefaultStationBeaconBrig entities: - - uid: 11463 + - uid: 5665 components: - type: Transform pos: -2.5,-338.5 parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 11476 + - uid: 5666 components: - type: Transform pos: -2.5,-14.5 parent: 2 - proto: DefaultStationBeaconCargoBay entities: - - uid: 11479 + - uid: 5667 components: - type: Transform pos: 7.5,-279.5 parent: 2 - proto: DefaultStationBeaconCargoReception entities: - - uid: 11480 + - uid: 5668 components: - type: Transform pos: 4.5,-272.5 parent: 2 - proto: DefaultStationBeaconCERoom entities: - - uid: 13992 + - uid: 5669 components: - type: Transform pos: 10.5,-252.5 parent: 2 - proto: DefaultStationBeaconChapel entities: - - uid: 11481 + - uid: 5670 components: - type: Transform pos: 4.5,-142.5 parent: 2 - proto: DefaultStationBeaconChemistry entities: - - uid: 11482 + - uid: 5671 components: - type: Transform pos: 6.5,-167.5 parent: 2 - proto: DefaultStationBeaconCryonics entities: - - uid: 8934 + - uid: 5672 components: - type: Transform pos: 4.5,-179.5 parent: 2 - - uid: 16494 + - uid: 5673 components: - type: Transform pos: -2.5,-169.5 parent: 2 - proto: DefaultStationBeaconCryosleep entities: - - uid: 11465 + - uid: 5674 components: - type: Transform pos: -7.5,-108.5 parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 11492 + - uid: 5675 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: DefaultStationBeaconDorms entities: - - uid: 11493 + - uid: 5676 components: - type: Transform pos: -7.5,-117.5 parent: 2 - proto: DefaultStationBeaconEngineering entities: - - uid: 7431 + - uid: 5677 components: - type: Transform pos: 3.5,-252.5 parent: 2 - proto: DefaultStationBeaconEvac entities: - - uid: 11329 + - uid: 5678 components: - type: Transform pos: -4.5,-30.5 parent: 2 - proto: DefaultStationBeaconEVAStorage entities: - - uid: 11494 + - uid: 5679 components: - type: Transform pos: 8.5,-114.5 parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 7434 + - uid: 5680 components: - type: Transform pos: 18.5,-264.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: - - uid: 11499 + - uid: 5681 components: - type: Transform pos: 0.5,-119.5 parent: 2 - proto: DefaultStationBeaconHOSRoom entities: - - uid: 11500 + - uid: 5682 components: - type: Transform pos: -3.5,-345.5 parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 11501 + - uid: 5683 components: - type: Transform pos: -4.5,-54.5 parent: 2 - proto: DefaultStationBeaconKitchen entities: - - uid: 11502 + - uid: 5684 components: - type: Transform pos: 0.5,-88.5 parent: 2 - proto: DefaultStationBeaconLawOffice entities: - - uid: 11503 + - uid: 5685 components: - type: Transform pos: 5.5,-330.5 parent: 2 - proto: DefaultStationBeaconLibrary entities: - - uid: 11508 + - uid: 5686 components: - type: Transform pos: -4.5,-144.5 parent: 2 - proto: DefaultStationBeaconMedical entities: - - uid: 11510 + - uid: 5687 components: - type: Transform pos: 4.5,-173.5 parent: 2 - proto: DefaultStationBeaconMorgue entities: - - uid: 11511 + - uid: 5688 components: - type: Transform pos: -3.5,-173.5 parent: 2 - proto: DefaultStationBeaconPermaBrig entities: - - uid: 11512 + - uid: 5689 components: - type: Transform pos: 0.5,-372.5 parent: 2 - proto: DefaultStationBeaconPowerBank entities: - - uid: 7432 + - uid: 5690 components: - type: Transform pos: 14.5,-252.5 parent: 2 - proto: DefaultStationBeaconQMRoom entities: - - uid: 11513 + - uid: 5691 components: - type: Transform pos: 5.5,-285.5 parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 11514 + - uid: 5692 components: - type: Transform pos: -9.5,-303.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: - - uid: 11464 + - uid: 5693 components: - type: Transform pos: -5.5,-272.5 parent: 2 - proto: DefaultStationBeaconScience entities: - - uid: 11515 + - uid: 5694 components: - type: Transform pos: 0.5,-307.5 parent: 2 - proto: DefaultStationBeaconSolars entities: - - uid: 11516 + - uid: 5695 components: - type: Transform pos: -9.5,-225.5 parent: 2 - - uid: 11518 + - uid: 5696 components: - type: Transform pos: 10.5,-225.5 parent: 2 - proto: DefaultStationBeaconSurgery entities: - - uid: 11520 + - uid: 5697 components: - type: Transform pos: 1.5,-201.5 parent: 2 - proto: DefaultStationBeaconTechVault entities: - - uid: 11531 + - uid: 5698 components: - type: Transform pos: -2.5,-6.5 parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 11523 + - uid: 5699 components: - type: Transform pos: 22.5,-298.5 parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 11526 + - uid: 5700 components: - type: Transform pos: 0.5,-364.5 parent: 2 - proto: Defibrillator entities: - - uid: 12338 + - uid: 5701 components: - type: Transform pos: 3.2889383,-173.42052 parent: 2 - proto: DefibrillatorCabinetFilled entities: - - uid: 3719 + - uid: 5702 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-177.5 parent: 2 - - uid: 3720 + - uid: 5703 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - - uid: 4181 + - uid: 5704 components: - type: Transform pos: 3.5,-170.5 parent: 2 - - uid: 11234 + - uid: 5705 components: - type: Transform pos: -4.5,-359.5 parent: 2 - proto: DeployableBarrier entities: - - uid: 1844 + - uid: 5706 components: - type: Transform pos: 4.5,-336.5 parent: 2 - - uid: 10834 + - uid: 5707 components: - type: Transform pos: 4.5,-337.5 parent: 2 - - uid: 13044 + - uid: 5708 components: - type: Transform pos: 4.5,-335.5 parent: 2 - proto: DeskBell entities: - - uid: 2271 + - uid: 5709 components: - type: Transform pos: -0.2976312,-122.56093 parent: 2 - - uid: 3103 + - uid: 5710 components: - type: Transform pos: 2.5791457,-168.03862 parent: 2 - - uid: 6647 + - uid: 5711 components: - type: Transform pos: 1.5176499,-250.74234 parent: 2 - - uid: 9051 + - uid: 5712 components: - type: Transform pos: 2.3718603,-272.5842 parent: 2 - proto: DiseaseDiagnoser entities: - - uid: 929 + - uid: 5713 components: - type: Transform pos: -4.5,-193.5 parent: 2 - proto: DiseaseSwab entities: - - uid: 3919 + - uid: 5714 components: - type: Transform rot: -1.5707963267948966 rad @@ -37834,203 +37499,203 @@ entities: parent: 2 - proto: DisposalBend entities: - - uid: 2366 + - uid: 5715 components: - type: Transform pos: 3.5,-179.5 parent: 2 - - uid: 4175 + - uid: 5716 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-287.5 parent: 2 - - uid: 5140 + - uid: 5717 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 5402 + - uid: 5718 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 - - uid: 7781 + - uid: 5719 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-287.5 parent: 2 - - uid: 7992 + - uid: 5720 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-250.5 parent: 2 - - uid: 8105 + - uid: 5721 components: - type: Transform pos: 2.5,-247.5 parent: 2 - - uid: 8241 + - uid: 5722 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-308.5 parent: 2 - - uid: 8485 + - uid: 5723 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-304.5 parent: 2 - - uid: 8773 + - uid: 5724 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-304.5 parent: 2 - - uid: 9422 + - uid: 5725 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-337.5 parent: 2 - - uid: 9873 + - uid: 5726 components: - type: Transform pos: -9.5,-194.5 parent: 2 - - uid: 9874 + - uid: 5727 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-190.5 parent: 2 - - uid: 10066 + - uid: 5728 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-194.5 parent: 2 - - uid: 12837 + - uid: 5729 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 - - uid: 13504 + - uid: 5730 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 13506 + - uid: 5731 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 - - uid: 13767 + - uid: 5732 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-149.5 parent: 2 - - uid: 13787 + - uid: 5733 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-140.5 parent: 2 - - uid: 14036 + - uid: 5734 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 14220 + - uid: 5735 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-340.5 parent: 2 - - uid: 14221 + - uid: 5736 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-340.5 parent: 2 - - uid: 14331 + - uid: 5737 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-339.5 parent: 2 - - uid: 15308 + - uid: 5738 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-4.5 parent: 2 - - uid: 15450 + - uid: 5739 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-125.5 parent: 2 - - uid: 15550 + - uid: 5740 components: - type: Transform pos: 3.5,-206.5 parent: 2 - - uid: 15565 + - uid: 5741 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-356.5 parent: 2 - - uid: 15656 + - uid: 5742 components: - type: Transform pos: 0.5,-286.5 parent: 2 - - uid: 15657 + - uid: 5743 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-286.5 parent: 2 - - uid: 15658 + - uid: 5744 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-284.5 parent: 2 - - uid: 15672 + - uid: 5745 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-274.5 parent: 2 - - uid: 15675 + - uid: 5746 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-274.5 parent: 2 - - uid: 15744 + - uid: 5747 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-221.5 parent: 2 - - uid: 15745 + - uid: 5748 components: - type: Transform pos: 3.5,-219.5 parent: 2 - - uid: 17033 + - uid: 5749 components: - type: Transform rot: 3.141592653589793 rad @@ -38038,51 +37703,51 @@ entities: parent: 2 - proto: DisposalJunction entities: - - uid: 9420 + - uid: 5750 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-337.5 parent: 2 - - uid: 15337 + - uid: 5751 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 15449 + - uid: 5752 components: - type: Transform pos: 0.5,-125.5 parent: 2 - - uid: 15479 + - uid: 5753 components: - type: Transform pos: 0.5,-150.5 parent: 2 - - uid: 15492 + - uid: 5754 components: - type: Transform pos: 0.5,-162.5 parent: 2 - - uid: 15610 + - uid: 5755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-316.5 parent: 2 - - uid: 15620 + - uid: 5756 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-308.5 parent: 2 - - uid: 15679 + - uid: 5757 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-270.5 parent: 2 - - uid: 15696 + - uid: 5758 components: - type: Transform rot: 3.141592653589793 rad @@ -38090,58 +37755,58 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 2404 + - uid: 5759 components: - type: Transform pos: 0.5,-179.5 parent: 2 - - uid: 6769 + - uid: 5760 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-259.5 parent: 2 - - uid: 15336 + - uid: 5761 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 15368 + - uid: 5762 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 15369 + - uid: 5763 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 15399 + - uid: 5764 components: - type: Transform pos: 0.5,-84.5 parent: 2 - - uid: 15413 + - uid: 5765 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 15432 + - uid: 5766 components: - type: Transform pos: 0.5,-108.5 parent: 2 - - uid: 15523 + - uid: 5767 components: - type: Transform pos: 0.5,-189.5 parent: 2 - - uid: 15547 + - uid: 5768 components: - type: Transform pos: 0.5,-206.5 parent: 2 - - uid: 15662 + - uid: 5769 components: - type: Transform rot: -1.5707963267948966 rad @@ -38149,7032 +37814,7032 @@ entities: parent: 2 - proto: DisposalPipe entities: - - uid: 1095 + - uid: 5770 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-283.5 parent: 2 - - uid: 1499 + - uid: 5771 components: - type: Transform pos: -9.5,-219.5 parent: 2 - - uid: 1519 + - uid: 5772 components: - type: Transform pos: -9.5,-202.5 parent: 2 - - uid: 1573 + - uid: 5773 components: - type: Transform pos: -9.5,-203.5 parent: 2 - - uid: 1614 + - uid: 5774 components: - type: Transform pos: -9.5,-205.5 parent: 2 - - uid: 2153 + - uid: 5775 components: - type: Transform pos: 1.5,-278.5 parent: 2 - - uid: 2167 + - uid: 5776 components: - type: Transform pos: 1.5,-280.5 parent: 2 - - uid: 2257 + - uid: 5777 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-282.5 parent: 2 - - uid: 2375 + - uid: 5778 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-179.5 parent: 2 - - uid: 2401 + - uid: 5779 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-179.5 parent: 2 - - uid: 2574 + - uid: 5780 components: - type: Transform pos: -0.5,-247.5 parent: 2 - - uid: 2733 + - uid: 5781 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - - uid: 3069 + - uid: 5782 components: - type: Transform pos: 15.5,-96.5 parent: 2 - - uid: 3070 + - uid: 5783 components: - type: Transform pos: 15.5,-115.5 parent: 2 - - uid: 3096 + - uid: 5784 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-276.5 parent: 2 - - uid: 3394 + - uid: 5785 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-274.5 parent: 2 - - uid: 3695 + - uid: 5786 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-284.5 parent: 2 - - uid: 4174 + - uid: 5787 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 - - uid: 4178 + - uid: 5788 components: - type: Transform pos: 15.5,-114.5 parent: 2 - - uid: 4526 + - uid: 5789 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 5022 + - uid: 5790 components: - type: Transform pos: -0.5,-248.5 parent: 2 - - uid: 5023 + - uid: 5791 components: - type: Transform pos: -0.5,-249.5 parent: 2 - - uid: 5025 + - uid: 5792 components: - type: Transform pos: -0.5,-250.5 parent: 2 - - uid: 5027 + - uid: 5793 components: - type: Transform pos: -0.5,-251.5 parent: 2 - - uid: 5081 + - uid: 5794 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 5087 + - uid: 5795 components: - type: Transform pos: -0.5,-244.5 parent: 2 - - uid: 5173 + - uid: 5796 components: - type: Transform pos: -0.5,-245.5 parent: 2 - - uid: 5177 + - uid: 5797 components: - type: Transform pos: -0.5,-246.5 parent: 2 - - uid: 5356 + - uid: 5798 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-341.5 parent: 2 - - uid: 5357 + - uid: 5799 components: - type: Transform pos: -0.5,-252.5 parent: 2 - - uid: 6641 + - uid: 5800 components: - type: Transform pos: 1.5,-281.5 parent: 2 - - uid: 6668 + - uid: 5801 components: - type: Transform pos: 15.5,-136.5 parent: 2 - - uid: 6669 + - uid: 5802 components: - type: Transform pos: 15.5,-119.5 parent: 2 - - uid: 6749 + - uid: 5803 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-339.5 parent: 2 - - uid: 6767 + - uid: 5804 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-244.5 parent: 2 - - uid: 6768 + - uid: 5805 components: - type: Transform pos: -0.5,-260.5 parent: 2 - - uid: 6772 + - uid: 5806 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-246.5 parent: 2 - - uid: 6773 + - uid: 5807 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-245.5 parent: 2 - - uid: 6787 + - uid: 5808 components: - type: Transform pos: -0.5,-253.5 parent: 2 - - uid: 6788 + - uid: 5809 components: - type: Transform pos: -0.5,-254.5 parent: 2 - - uid: 6789 + - uid: 5810 components: - type: Transform pos: -0.5,-259.5 parent: 2 - - uid: 6790 + - uid: 5811 components: - type: Transform pos: -0.5,-255.5 parent: 2 - - uid: 6791 + - uid: 5812 components: - type: Transform pos: -0.5,-256.5 parent: 2 - - uid: 6792 + - uid: 5813 components: - type: Transform pos: -0.5,-257.5 parent: 2 - - uid: 6793 + - uid: 5814 components: - type: Transform pos: -0.5,-258.5 parent: 2 - - uid: 6817 + - uid: 5815 components: - type: Transform pos: 15.5,-117.5 parent: 2 - - uid: 6818 + - uid: 5816 components: - type: Transform pos: 15.5,-128.5 parent: 2 - - uid: 6884 + - uid: 5817 components: - type: Transform pos: 15.5,-130.5 parent: 2 - - uid: 6885 + - uid: 5818 components: - type: Transform pos: 15.5,-131.5 parent: 2 - - uid: 7421 + - uid: 5819 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-295.5 parent: 2 - - uid: 7422 + - uid: 5820 components: - type: Transform pos: -9.5,-228.5 parent: 2 - - uid: 7424 + - uid: 5821 components: - type: Transform pos: -9.5,-229.5 parent: 2 - - uid: 7425 + - uid: 5822 components: - type: Transform pos: -9.5,-230.5 parent: 2 - - uid: 7426 + - uid: 5823 components: - type: Transform pos: -9.5,-232.5 parent: 2 - - uid: 7446 + - uid: 5824 components: - type: Transform pos: 15.5,-129.5 parent: 2 - - uid: 7447 + - uid: 5825 components: - type: Transform pos: 15.5,-135.5 parent: 2 - - uid: 7456 + - uid: 5826 components: - type: Transform pos: 15.5,-134.5 parent: 2 - - uid: 7465 + - uid: 5827 components: - type: Transform pos: -9.5,-252.5 parent: 2 - - uid: 7468 + - uid: 5828 components: - type: Transform pos: -9.5,-238.5 parent: 2 - - uid: 7469 + - uid: 5829 components: - type: Transform pos: -9.5,-249.5 parent: 2 - - uid: 7470 + - uid: 5830 components: - type: Transform pos: -9.5,-243.5 parent: 2 - - uid: 7471 + - uid: 5831 components: - type: Transform pos: -9.5,-257.5 parent: 2 - - uid: 7472 + - uid: 5832 components: - type: Transform pos: -9.5,-260.5 parent: 2 - - uid: 7473 + - uid: 5833 components: - type: Transform pos: -9.5,-231.5 parent: 2 - - uid: 7474 + - uid: 5834 components: - type: Transform pos: -9.5,-233.5 parent: 2 - - uid: 7480 + - uid: 5835 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-298.5 parent: 2 - - uid: 7486 + - uid: 5836 components: - type: Transform pos: 15.5,-116.5 parent: 2 - - uid: 7505 + - uid: 5837 components: - type: Transform pos: 15.5,-133.5 parent: 2 - - uid: 7772 + - uid: 5838 components: - type: Transform pos: -9.5,-227.5 parent: 2 - - uid: 7785 + - uid: 5839 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-256.5 parent: 2 - - uid: 7786 + - uid: 5840 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-257.5 parent: 2 - - uid: 7830 + - uid: 5841 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-250.5 parent: 2 - - uid: 7868 + - uid: 5842 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-250.5 parent: 2 - - uid: 7910 + - uid: 5843 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-255.5 parent: 2 - - uid: 7946 + - uid: 5844 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-248.5 parent: 2 - - uid: 7964 + - uid: 5845 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-252.5 parent: 2 - - uid: 7972 + - uid: 5846 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-258.5 parent: 2 - - uid: 7977 + - uid: 5847 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-260.5 parent: 2 - - uid: 7993 + - uid: 5848 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-250.5 parent: 2 - - uid: 7995 + - uid: 5849 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-250.5 parent: 2 - - uid: 7996 + - uid: 5850 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-250.5 parent: 2 - - uid: 7997 + - uid: 5851 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-243.5 parent: 2 - - uid: 8106 + - uid: 5852 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-250.5 parent: 2 - - uid: 8109 + - uid: 5853 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-249.5 parent: 2 - - uid: 8110 + - uid: 5854 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-250.5 parent: 2 - - uid: 8116 + - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-249.5 parent: 2 - - uid: 8218 + - uid: 5856 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-250.5 parent: 2 - - uid: 8221 + - uid: 5857 components: - type: Transform pos: -9.5,-207.5 parent: 2 - - uid: 8222 + - uid: 5858 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-308.5 parent: 2 - - uid: 8223 + - uid: 5859 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-303.5 parent: 2 - - uid: 8224 + - uid: 5860 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-301.5 parent: 2 - - uid: 8231 + - uid: 5861 components: - type: Transform pos: -9.5,-279.5 parent: 2 - - uid: 8233 + - uid: 5862 components: - type: Transform pos: -13.5,-305.5 parent: 2 - - uid: 8243 + - uid: 5863 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-308.5 parent: 2 - - uid: 8244 + - uid: 5864 components: - type: Transform pos: 15.5,-86.5 parent: 2 - - uid: 8245 + - uid: 5865 components: - type: Transform pos: -9.5,-262.5 parent: 2 - - uid: 8246 + - uid: 5866 components: - type: Transform pos: -9.5,-282.5 parent: 2 - - uid: 8247 + - uid: 5867 components: - type: Transform pos: -9.5,-266.5 parent: 2 - - uid: 8251 + - uid: 5868 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-299.5 parent: 2 - - uid: 8252 + - uid: 5869 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-193.5 parent: 2 - - uid: 8254 + - uid: 5870 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-190.5 parent: 2 - - uid: 8257 + - uid: 5871 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-190.5 parent: 2 - - uid: 8258 + - uid: 5872 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-191.5 parent: 2 - - uid: 8381 + - uid: 5873 components: - type: Transform pos: -9.5,-245.5 parent: 2 - - uid: 8396 + - uid: 5874 components: - type: Transform pos: 1.5,-318.5 parent: 2 - - uid: 8397 + - uid: 5875 components: - type: Transform pos: 15.5,-104.5 parent: 2 - - uid: 8398 + - uid: 5876 components: - type: Transform pos: 15.5,-110.5 parent: 2 - - uid: 8400 + - uid: 5877 components: - type: Transform pos: 15.5,-106.5 parent: 2 - - uid: 8401 + - uid: 5878 components: - type: Transform pos: 15.5,-108.5 parent: 2 - - uid: 8402 + - uid: 5879 components: - type: Transform pos: 15.5,-105.5 parent: 2 - - uid: 8403 + - uid: 5880 components: - type: Transform pos: 15.5,-123.5 parent: 2 - - uid: 8404 + - uid: 5881 components: - type: Transform pos: 15.5,-109.5 parent: 2 - - uid: 8407 + - uid: 5882 components: - type: Transform pos: -9.5,-244.5 parent: 2 - - uid: 8426 + - uid: 5883 components: - type: Transform pos: 15.5,-121.5 parent: 2 - - uid: 8429 + - uid: 5884 components: - type: Transform pos: 15.5,-122.5 parent: 2 - - uid: 8438 + - uid: 5885 components: - type: Transform pos: 15.5,-111.5 parent: 2 - - uid: 8453 + - uid: 5886 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-253.5 parent: 2 - - uid: 8460 + - uid: 5887 components: - type: Transform pos: -9.5,-251.5 parent: 2 - - uid: 8484 + - uid: 5888 components: - type: Transform pos: 15.5,-99.5 parent: 2 - - uid: 8486 + - uid: 5889 components: - type: Transform pos: -9.5,-284.5 parent: 2 - - uid: 8735 + - uid: 5890 components: - type: Transform pos: -9.5,-280.5 parent: 2 - - uid: 8737 + - uid: 5891 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-302.5 parent: 2 - - uid: 8739 + - uid: 5892 components: - type: Transform pos: -13.5,-306.5 parent: 2 - - uid: 8742 + - uid: 5893 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-300.5 parent: 2 - - uid: 8743 + - uid: 5894 components: - type: Transform pos: -13.5,-307.5 parent: 2 - - uid: 8771 + - uid: 5895 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-194.5 parent: 2 - - uid: 8772 + - uid: 5896 components: - type: Transform pos: 15.5,-87.5 parent: 2 - - uid: 8775 + - uid: 5897 components: - type: Transform pos: -9.5,-204.5 parent: 2 - - uid: 8776 + - uid: 5898 components: - type: Transform pos: -9.5,-209.5 parent: 2 - - uid: 8778 + - uid: 5899 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-190.5 parent: 2 - - uid: 8779 + - uid: 5900 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-190.5 parent: 2 - - uid: 8782 + - uid: 5901 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-194.5 parent: 2 - - uid: 8784 + - uid: 5902 components: - type: Transform pos: -9.5,-264.5 parent: 2 - - uid: 8785 + - uid: 5903 components: - type: Transform pos: -9.5,-267.5 parent: 2 - - uid: 8800 + - uid: 5904 components: - type: Transform pos: -9.5,-268.5 parent: 2 - - uid: 8813 + - uid: 5905 components: - type: Transform pos: 15.5,-124.5 parent: 2 - - uid: 8814 + - uid: 5906 components: - type: Transform pos: 15.5,-127.5 parent: 2 - - uid: 8817 + - uid: 5907 components: - type: Transform pos: 15.5,-125.5 parent: 2 - - uid: 8818 + - uid: 5908 components: - type: Transform pos: 15.5,-126.5 parent: 2 - - uid: 8827 + - uid: 5909 components: - type: Transform pos: 15.5,-118.5 parent: 2 - - uid: 8828 + - uid: 5910 components: - type: Transform pos: 15.5,-120.5 parent: 2 - - uid: 8846 + - uid: 5911 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-254.5 parent: 2 - - uid: 8847 + - uid: 5912 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-250.5 parent: 2 - - uid: 8848 + - uid: 5913 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-251.5 parent: 2 - - uid: 8849 + - uid: 5914 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-250.5 parent: 2 - - uid: 8868 + - uid: 5915 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-259.5 parent: 2 - - uid: 8869 + - uid: 5916 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-250.5 parent: 2 - - uid: 8870 + - uid: 5917 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-308.5 parent: 2 - - uid: 8871 + - uid: 5918 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-308.5 parent: 2 - - uid: 8882 + - uid: 5919 components: - type: Transform pos: 15.5,-92.5 parent: 2 - - uid: 8919 + - uid: 5920 components: - type: Transform pos: 15.5,-132.5 parent: 2 - - uid: 8920 + - uid: 5921 components: - type: Transform pos: -9.5,-275.5 parent: 2 - - uid: 8935 + - uid: 5922 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-297.5 parent: 2 - - uid: 8938 + - uid: 5923 components: - type: Transform pos: -9.5,-281.5 parent: 2 - - uid: 8948 + - uid: 5924 components: - type: Transform pos: -9.5,-248.5 parent: 2 - - uid: 8949 + - uid: 5925 components: - type: Transform pos: -9.5,-270.5 parent: 2 - - uid: 8950 + - uid: 5926 components: - type: Transform pos: -9.5,-222.5 parent: 2 - - uid: 8951 + - uid: 5927 components: - type: Transform pos: -9.5,-255.5 parent: 2 - - uid: 8952 + - uid: 5928 components: - type: Transform pos: -9.5,-253.5 parent: 2 - - uid: 8953 + - uid: 5929 components: - type: Transform pos: -9.5,-254.5 parent: 2 - - uid: 8958 + - uid: 5930 components: - type: Transform pos: -9.5,-256.5 parent: 2 - - uid: 8959 + - uid: 5931 components: - type: Transform pos: -9.5,-259.5 parent: 2 - - uid: 8960 + - uid: 5932 components: - type: Transform pos: -9.5,-261.5 parent: 2 - - uid: 8962 + - uid: 5933 components: - type: Transform pos: -9.5,-247.5 parent: 2 - - uid: 8963 + - uid: 5934 components: - type: Transform pos: -9.5,-258.5 parent: 2 - - uid: 8964 + - uid: 5935 components: - type: Transform pos: -9.5,-250.5 parent: 2 - - uid: 8989 + - uid: 5936 components: - type: Transform pos: 15.5,-113.5 parent: 2 - - uid: 9037 + - uid: 5937 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-282.5 parent: 2 - - uid: 9076 + - uid: 5938 components: - type: Transform pos: -9.5,-220.5 parent: 2 - - uid: 9079 + - uid: 5939 components: - type: Transform pos: 15.5,-93.5 parent: 2 - - uid: 9093 + - uid: 5940 components: - type: Transform pos: -9.5,-269.5 parent: 2 - - uid: 9419 + - uid: 5941 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-337.5 parent: 2 - - uid: 9421 + - uid: 5942 components: - type: Transform pos: 2.5,-336.5 parent: 2 - - uid: 9803 + - uid: 5943 components: - type: Transform pos: 15.5,-94.5 parent: 2 - - uid: 9830 + - uid: 5944 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-289.5 parent: 2 - - uid: 9851 + - uid: 5945 components: - type: Transform pos: -9.5,-283.5 parent: 2 - - uid: 9867 + - uid: 5946 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-287.5 parent: 2 - - uid: 9872 + - uid: 5947 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-287.5 parent: 2 - - uid: 9905 + - uid: 5948 components: - type: Transform pos: 15.5,-101.5 parent: 2 - - uid: 10074 + - uid: 5949 components: - type: Transform pos: -9.5,-285.5 parent: 2 - - uid: 10326 + - uid: 5950 components: - type: Transform pos: -9.5,-212.5 parent: 2 - - uid: 10327 + - uid: 5951 components: - type: Transform pos: -9.5,-210.5 parent: 2 - - uid: 10331 + - uid: 5952 components: - type: Transform pos: -9.5,-211.5 parent: 2 - - uid: 10334 + - uid: 5953 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-288.5 parent: 2 - - uid: 10335 + - uid: 5954 components: - type: Transform pos: -9.5,-217.5 parent: 2 - - uid: 10344 + - uid: 5955 components: - type: Transform pos: -9.5,-216.5 parent: 2 - - uid: 10345 + - uid: 5956 components: - type: Transform pos: -9.5,-215.5 parent: 2 - - uid: 10346 + - uid: 5957 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-290.5 parent: 2 - - uid: 10347 + - uid: 5958 components: - type: Transform pos: -9.5,-236.5 parent: 2 - - uid: 10352 + - uid: 5959 components: - type: Transform pos: -9.5,-241.5 parent: 2 - - uid: 10403 + - uid: 5960 components: - type: Transform pos: 15.5,-100.5 parent: 2 - - uid: 10404 + - uid: 5961 components: - type: Transform pos: 15.5,-97.5 parent: 2 - - uid: 10405 + - uid: 5962 components: - type: Transform pos: 15.5,-102.5 parent: 2 - - uid: 10406 + - uid: 5963 components: - type: Transform pos: 15.5,-103.5 parent: 2 - - uid: 10528 + - uid: 5964 components: - type: Transform pos: -9.5,-263.5 parent: 2 - - uid: 10570 + - uid: 5965 components: - type: Transform pos: -9.5,-265.5 parent: 2 - - uid: 10572 + - uid: 5966 components: - type: Transform pos: -9.5,-276.5 parent: 2 - - uid: 11454 + - uid: 5967 components: - type: Transform pos: 15.5,-88.5 parent: 2 - - uid: 11474 + - uid: 5968 components: - type: Transform pos: -9.5,-277.5 parent: 2 - - uid: 11490 + - uid: 5969 components: - type: Transform pos: -9.5,-278.5 parent: 2 - - uid: 11495 + - uid: 5970 components: - type: Transform pos: 15.5,-90.5 parent: 2 - - uid: 11497 + - uid: 5971 components: - type: Transform pos: 15.5,-89.5 parent: 2 - - uid: 11521 + - uid: 5972 components: - type: Transform pos: 15.5,-95.5 parent: 2 - - uid: 11525 + - uid: 5973 components: - type: Transform pos: 15.5,-98.5 parent: 2 - - uid: 11721 + - uid: 5974 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-292.5 parent: 2 - - uid: 11729 + - uid: 5975 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-293.5 parent: 2 - - uid: 11737 + - uid: 5976 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-294.5 parent: 2 - - uid: 11738 + - uid: 5977 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-291.5 parent: 2 - - uid: 11739 + - uid: 5978 components: - type: Transform pos: -9.5,-225.5 parent: 2 - - uid: 11743 + - uid: 5979 components: - type: Transform pos: -9.5,-234.5 parent: 2 - - uid: 11744 + - uid: 5980 components: - type: Transform pos: -9.5,-237.5 parent: 2 - - uid: 11745 + - uid: 5981 components: - type: Transform pos: -9.5,-239.5 parent: 2 - - uid: 11794 + - uid: 5982 components: - type: Transform pos: -9.5,-235.5 parent: 2 - - uid: 11802 + - uid: 5983 components: - type: Transform pos: -9.5,-240.5 parent: 2 - - uid: 11883 + - uid: 5984 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-296.5 parent: 2 - - uid: 11987 + - uid: 5985 components: - type: Transform pos: 15.5,-91.5 parent: 2 - - uid: 11992 + - uid: 5986 components: - type: Transform pos: -9.5,-242.5 parent: 2 - - uid: 12008 + - uid: 5987 components: - type: Transform pos: -9.5,-208.5 parent: 2 - - uid: 12115 + - uid: 5988 components: - type: Transform pos: -9.5,-197.5 parent: 2 - - uid: 12122 + - uid: 5989 components: - type: Transform pos: -9.5,-198.5 parent: 2 - - uid: 12124 + - uid: 5990 components: - type: Transform pos: -9.5,-199.5 parent: 2 - - uid: 12125 + - uid: 5991 components: - type: Transform pos: -9.5,-200.5 parent: 2 - - uid: 12129 + - uid: 5992 components: - type: Transform pos: -9.5,-195.5 parent: 2 - - uid: 12133 + - uid: 5993 components: - type: Transform pos: -9.5,-201.5 parent: 2 - - uid: 12136 + - uid: 5994 components: - type: Transform pos: -9.5,-206.5 parent: 2 - - uid: 12144 + - uid: 5995 components: - type: Transform pos: -9.5,-246.5 parent: 2 - - uid: 12145 + - uid: 5996 components: - type: Transform pos: -9.5,-221.5 parent: 2 - - uid: 12158 + - uid: 5997 components: - type: Transform pos: -0.5,-163.5 parent: 2 - - uid: 12170 + - uid: 5998 components: - type: Transform pos: 1.5,-82.5 parent: 2 - - uid: 12173 + - uid: 5999 components: - type: Transform pos: -9.5,-224.5 parent: 2 - - uid: 12174 + - uid: 6000 components: - type: Transform pos: -9.5,-226.5 parent: 2 - - uid: 12182 + - uid: 6001 components: - type: Transform pos: -9.5,-218.5 parent: 2 - - uid: 12192 + - uid: 6002 components: - type: Transform pos: -9.5,-273.5 parent: 2 - - uid: 12193 + - uid: 6003 components: - type: Transform pos: -9.5,-274.5 parent: 2 - - uid: 12194 + - uid: 6004 components: - type: Transform pos: -9.5,-214.5 parent: 2 - - uid: 12198 + - uid: 6005 components: - type: Transform pos: -9.5,-213.5 parent: 2 - - uid: 12203 + - uid: 6006 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-192.5 parent: 2 - - uid: 12206 + - uid: 6007 components: - type: Transform pos: -9.5,-196.5 parent: 2 - - uid: 12208 + - uid: 6008 components: - type: Transform pos: -9.5,-271.5 parent: 2 - - uid: 13376 + - uid: 6009 components: - type: Transform pos: -9.5,-286.5 parent: 2 - - uid: 13475 + - uid: 6010 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-28.5 parent: 2 - - uid: 13476 + - uid: 6011 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 2 - - uid: 13477 + - uid: 6012 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 13478 + - uid: 6013 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 - - uid: 13479 + - uid: 6014 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-24.5 parent: 2 - - uid: 13480 + - uid: 6015 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-23.5 parent: 2 - - uid: 13481 + - uid: 6016 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 2 - - uid: 13482 + - uid: 6017 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 2 - - uid: 13483 + - uid: 6018 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-20.5 parent: 2 - - uid: 13484 + - uid: 6019 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - - uid: 13485 + - uid: 6020 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 2 - - uid: 13486 + - uid: 6021 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-18.5 parent: 2 - - uid: 13487 + - uid: 6022 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 2 - - uid: 13488 + - uid: 6023 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-20.5 parent: 2 - - uid: 13489 + - uid: 6024 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-21.5 parent: 2 - - uid: 13490 + - uid: 6025 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-22.5 parent: 2 - - uid: 13491 + - uid: 6026 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-23.5 parent: 2 - - uid: 13492 + - uid: 6027 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-24.5 parent: 2 - - uid: 13493 + - uid: 6028 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-25.5 parent: 2 - - uid: 13494 + - uid: 6029 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-26.5 parent: 2 - - uid: 13495 + - uid: 6030 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 2 - - uid: 13496 + - uid: 6031 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-28.5 parent: 2 - - uid: 13497 + - uid: 6032 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 13498 + - uid: 6033 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-16.5 parent: 2 - - uid: 13499 + - uid: 6034 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 2 - - uid: 13500 + - uid: 6035 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - - uid: 13501 + - uid: 6036 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - - uid: 13502 + - uid: 6037 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 2 - - uid: 13505 + - uid: 6038 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - - uid: 13507 + - uid: 6039 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 13508 + - uid: 6040 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 13509 + - uid: 6041 components: - type: Transform pos: -0.5,-13.5 parent: 2 - - uid: 13510 + - uid: 6042 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 13511 + - uid: 6043 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 13512 + - uid: 6044 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 13513 + - uid: 6045 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 13519 + - uid: 6046 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 13520 + - uid: 6047 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 13521 + - uid: 6048 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 13522 + - uid: 6049 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 13523 + - uid: 6050 components: - type: Transform pos: 1.5,-33.5 parent: 2 - - uid: 13524 + - uid: 6051 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 13525 + - uid: 6052 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 13526 + - uid: 6053 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 13527 + - uid: 6054 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 13528 + - uid: 6055 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 13529 + - uid: 6056 components: - type: Transform pos: -0.5,-30.5 parent: 2 - - uid: 13530 + - uid: 6057 components: - type: Transform pos: -0.5,-31.5 parent: 2 - - uid: 13531 + - uid: 6058 components: - type: Transform pos: -0.5,-32.5 parent: 2 - - uid: 13532 + - uid: 6059 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 13533 + - uid: 6060 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 13534 + - uid: 6061 components: - type: Transform pos: -0.5,-35.5 parent: 2 - - uid: 13535 + - uid: 6062 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - uid: 13536 + - uid: 6063 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 13537 + - uid: 6064 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 13538 + - uid: 6065 components: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 13539 + - uid: 6066 components: - type: Transform pos: -0.5,-40.5 parent: 2 - - uid: 13540 + - uid: 6067 components: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 13541 + - uid: 6068 components: - type: Transform pos: -0.5,-42.5 parent: 2 - - uid: 13542 + - uid: 6069 components: - type: Transform pos: -0.5,-43.5 parent: 2 - - uid: 13543 + - uid: 6070 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 13544 + - uid: 6071 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 13545 + - uid: 6072 components: - type: Transform pos: 1.5,-39.5 parent: 2 - - uid: 13546 + - uid: 6073 components: - type: Transform pos: 1.5,-40.5 parent: 2 - - uid: 13547 + - uid: 6074 components: - type: Transform pos: 1.5,-41.5 parent: 2 - - uid: 13548 + - uid: 6075 components: - type: Transform pos: 1.5,-42.5 parent: 2 - - uid: 13549 + - uid: 6076 components: - type: Transform pos: 1.5,-43.5 parent: 2 - - uid: 13550 + - uid: 6077 components: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 13551 + - uid: 6078 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 13552 + - uid: 6079 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 13553 + - uid: 6080 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 13554 + - uid: 6081 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 13555 + - uid: 6082 components: - type: Transform pos: 1.5,-49.5 parent: 2 - - uid: 13556 + - uid: 6083 components: - type: Transform pos: 1.5,-50.5 parent: 2 - - uid: 13557 + - uid: 6084 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 13558 + - uid: 6085 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 13559 + - uid: 6086 components: - type: Transform pos: 1.5,-53.5 parent: 2 - - uid: 13560 + - uid: 6087 components: - type: Transform pos: 1.5,-54.5 parent: 2 - - uid: 13561 + - uid: 6088 components: - type: Transform pos: 1.5,-55.5 parent: 2 - - uid: 13562 + - uid: 6089 components: - type: Transform pos: 1.5,-56.5 parent: 2 - - uid: 13563 + - uid: 6090 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 13564 + - uid: 6091 components: - type: Transform pos: -0.5,-46.5 parent: 2 - - uid: 13565 + - uid: 6092 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 13566 + - uid: 6093 components: - type: Transform pos: -0.5,-48.5 parent: 2 - - uid: 13567 + - uid: 6094 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 13568 + - uid: 6095 components: - type: Transform pos: -0.5,-50.5 parent: 2 - - uid: 13569 + - uid: 6096 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 13570 + - uid: 6097 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 13571 + - uid: 6098 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 13572 + - uid: 6099 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 13573 + - uid: 6100 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 13574 + - uid: 6101 components: - type: Transform pos: -0.5,-56.5 parent: 2 - - uid: 13575 + - uid: 6102 components: - type: Transform pos: -0.5,-57.5 parent: 2 - - uid: 13576 + - uid: 6103 components: - type: Transform pos: -0.5,-58.5 parent: 2 - - uid: 13577 + - uid: 6104 components: - type: Transform pos: -0.5,-59.5 parent: 2 - - uid: 13578 + - uid: 6105 components: - type: Transform pos: -0.5,-60.5 parent: 2 - - uid: 13579 + - uid: 6106 components: - type: Transform pos: -0.5,-61.5 parent: 2 - - uid: 13580 + - uid: 6107 components: - type: Transform pos: -0.5,-62.5 parent: 2 - - uid: 13581 + - uid: 6108 components: - type: Transform pos: -0.5,-63.5 parent: 2 - - uid: 13582 + - uid: 6109 components: - type: Transform pos: -0.5,-64.5 parent: 2 - - uid: 13583 + - uid: 6110 components: - type: Transform pos: -0.5,-65.5 parent: 2 - - uid: 13584 + - uid: 6111 components: - type: Transform pos: -0.5,-66.5 parent: 2 - - uid: 13585 + - uid: 6112 components: - type: Transform pos: -0.5,-67.5 parent: 2 - - uid: 13586 + - uid: 6113 components: - type: Transform pos: -0.5,-68.5 parent: 2 - - uid: 13587 + - uid: 6114 components: - type: Transform pos: 1.5,-57.5 parent: 2 - - uid: 13588 + - uid: 6115 components: - type: Transform pos: 1.5,-58.5 parent: 2 - - uid: 13589 + - uid: 6116 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 13590 + - uid: 6117 components: - type: Transform pos: 1.5,-60.5 parent: 2 - - uid: 13592 + - uid: 6118 components: - type: Transform pos: 1.5,-62.5 parent: 2 - - uid: 13593 + - uid: 6119 components: - type: Transform pos: 1.5,-63.5 parent: 2 - - uid: 13594 + - uid: 6120 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 13595 + - uid: 6121 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 13596 + - uid: 6122 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 13597 + - uid: 6123 components: - type: Transform pos: 1.5,-67.5 parent: 2 - - uid: 13598 + - uid: 6124 components: - type: Transform pos: 1.5,-68.5 parent: 2 - - uid: 13599 + - uid: 6125 components: - type: Transform pos: 1.5,-69.5 parent: 2 - - uid: 13600 + - uid: 6126 components: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 13601 + - uid: 6127 components: - type: Transform pos: 1.5,-71.5 parent: 2 - - uid: 13602 + - uid: 6128 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 13603 + - uid: 6129 components: - type: Transform pos: 1.5,-73.5 parent: 2 - - uid: 13604 + - uid: 6130 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 13605 + - uid: 6131 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 13606 + - uid: 6132 components: - type: Transform pos: 1.5,-76.5 parent: 2 - - uid: 13607 + - uid: 6133 components: - type: Transform pos: 1.5,-77.5 parent: 2 - - uid: 13608 + - uid: 6134 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 13609 + - uid: 6135 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 13610 + - uid: 6136 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 13611 + - uid: 6137 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 13612 + - uid: 6138 components: - type: Transform pos: -0.5,-69.5 parent: 2 - - uid: 13613 + - uid: 6139 components: - type: Transform pos: -0.5,-70.5 parent: 2 - - uid: 13614 + - uid: 6140 components: - type: Transform pos: -0.5,-71.5 parent: 2 - - uid: 13615 + - uid: 6141 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 13616 + - uid: 6142 components: - type: Transform pos: -0.5,-73.5 parent: 2 - - uid: 13617 + - uid: 6143 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 13618 + - uid: 6144 components: - type: Transform pos: -0.5,-75.5 parent: 2 - - uid: 13619 + - uid: 6145 components: - type: Transform pos: -0.5,-76.5 parent: 2 - - uid: 13620 + - uid: 6146 components: - type: Transform pos: -0.5,-77.5 parent: 2 - - uid: 13621 + - uid: 6147 components: - type: Transform pos: -0.5,-78.5 parent: 2 - - uid: 13622 + - uid: 6148 components: - type: Transform pos: -0.5,-79.5 parent: 2 - - uid: 13623 + - uid: 6149 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 13624 + - uid: 6150 components: - type: Transform pos: -0.5,-81.5 parent: 2 - - uid: 13628 + - uid: 6151 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 13629 + - uid: 6152 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 13630 + - uid: 6153 components: - type: Transform pos: 1.5,-85.5 parent: 2 - - uid: 13631 + - uid: 6154 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 13632 + - uid: 6155 components: - type: Transform pos: 1.5,-87.5 parent: 2 - - uid: 13633 + - uid: 6156 components: - type: Transform pos: 1.5,-88.5 parent: 2 - - uid: 13634 + - uid: 6157 components: - type: Transform pos: 1.5,-89.5 parent: 2 - - uid: 13635 + - uid: 6158 components: - type: Transform pos: 1.5,-90.5 parent: 2 - - uid: 13638 + - uid: 6159 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-92.5 parent: 2 - - uid: 13639 + - uid: 6160 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-93.5 parent: 2 - - uid: 13640 + - uid: 6161 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-94.5 parent: 2 - - uid: 13641 + - uid: 6162 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-95.5 parent: 2 - - uid: 13642 + - uid: 6163 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-95.5 parent: 2 - - uid: 13643 + - uid: 6164 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-94.5 parent: 2 - - uid: 13644 + - uid: 6165 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-93.5 parent: 2 - - uid: 13645 + - uid: 6166 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-92.5 parent: 2 - - uid: 13646 + - uid: 6167 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-91.5 parent: 2 - - uid: 13647 + - uid: 6168 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-90.5 parent: 2 - - uid: 13648 + - uid: 6169 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-89.5 parent: 2 - - uid: 13649 + - uid: 6170 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-88.5 parent: 2 - - uid: 13650 + - uid: 6171 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-87.5 parent: 2 - - uid: 13651 + - uid: 6172 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-86.5 parent: 2 - - uid: 13652 + - uid: 6173 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-85.5 parent: 2 - - uid: 13653 + - uid: 6174 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-84.5 parent: 2 - - uid: 13654 + - uid: 6175 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-83.5 parent: 2 - - uid: 13655 + - uid: 6176 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-82.5 parent: 2 - - uid: 13656 + - uid: 6177 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-96.5 parent: 2 - - uid: 13657 + - uid: 6178 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-97.5 parent: 2 - - uid: 13658 + - uid: 6179 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-98.5 parent: 2 - - uid: 13659 + - uid: 6180 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-99.5 parent: 2 - - uid: 13660 + - uid: 6181 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-100.5 parent: 2 - - uid: 13661 + - uid: 6182 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-101.5 parent: 2 - - uid: 13662 + - uid: 6183 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-102.5 parent: 2 - - uid: 13663 + - uid: 6184 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-103.5 parent: 2 - - uid: 13664 + - uid: 6185 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-104.5 parent: 2 - - uid: 13665 + - uid: 6186 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-105.5 parent: 2 - - uid: 13666 + - uid: 6187 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-106.5 parent: 2 - - uid: 13667 + - uid: 6188 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - - uid: 13668 + - uid: 6189 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-108.5 parent: 2 - - uid: 13669 + - uid: 6190 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-109.5 parent: 2 - - uid: 13670 + - uid: 6191 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-109.5 parent: 2 - - uid: 13671 + - uid: 6192 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-108.5 parent: 2 - - uid: 13672 + - uid: 6193 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-107.5 parent: 2 - - uid: 13673 + - uid: 6194 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-106.5 parent: 2 - - uid: 13674 + - uid: 6195 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-105.5 parent: 2 - - uid: 13675 + - uid: 6196 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-104.5 parent: 2 - - uid: 13676 + - uid: 6197 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-103.5 parent: 2 - - uid: 13677 + - uid: 6198 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-102.5 parent: 2 - - uid: 13678 + - uid: 6199 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-101.5 parent: 2 - - uid: 13679 + - uid: 6200 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - - uid: 13680 + - uid: 6201 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-99.5 parent: 2 - - uid: 13681 + - uid: 6202 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-98.5 parent: 2 - - uid: 13682 + - uid: 6203 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-97.5 parent: 2 - - uid: 13683 + - uid: 6204 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-96.5 parent: 2 - - uid: 13687 + - uid: 6205 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-118.5 parent: 2 - - uid: 13688 + - uid: 6206 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-117.5 parent: 2 - - uid: 13689 + - uid: 6207 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-116.5 parent: 2 - - uid: 13690 + - uid: 6208 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-115.5 parent: 2 - - uid: 13691 + - uid: 6209 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-114.5 parent: 2 - - uid: 13692 + - uid: 6210 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-113.5 parent: 2 - - uid: 13693 + - uid: 6211 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-112.5 parent: 2 - - uid: 13694 + - uid: 6212 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-111.5 parent: 2 - - uid: 13695 + - uid: 6213 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-110.5 parent: 2 - - uid: 13696 + - uid: 6214 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-110.5 parent: 2 - - uid: 13697 + - uid: 6215 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-111.5 parent: 2 - - uid: 13698 + - uid: 6216 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-112.5 parent: 2 - - uid: 13699 + - uid: 6217 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-113.5 parent: 2 - - uid: 13700 + - uid: 6218 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-114.5 parent: 2 - - uid: 13701 + - uid: 6219 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-115.5 parent: 2 - - uid: 13702 + - uid: 6220 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-116.5 parent: 2 - - uid: 13703 + - uid: 6221 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-117.5 parent: 2 - - uid: 13704 + - uid: 6222 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-118.5 parent: 2 - - uid: 13705 + - uid: 6223 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-119.5 parent: 2 - - uid: 13706 + - uid: 6224 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-120.5 parent: 2 - - uid: 13707 + - uid: 6225 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-121.5 parent: 2 - - uid: 13708 + - uid: 6226 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-122.5 parent: 2 - - uid: 13709 + - uid: 6227 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-123.5 parent: 2 - - uid: 13710 + - uid: 6228 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-124.5 parent: 2 - - uid: 13711 + - uid: 6229 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-120.5 parent: 2 - - uid: 13712 + - uid: 6230 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-121.5 parent: 2 - - uid: 13713 + - uid: 6231 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-122.5 parent: 2 - - uid: 13714 + - uid: 6232 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-123.5 parent: 2 - - uid: 13715 + - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-124.5 parent: 2 - - uid: 13716 + - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-125.5 parent: 2 - - uid: 13717 + - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-126.5 parent: 2 - - uid: 13718 + - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-127.5 parent: 2 - - uid: 13719 + - uid: 6237 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-128.5 parent: 2 - - uid: 13720 + - uid: 6238 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-129.5 parent: 2 - - uid: 13721 + - uid: 6239 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-130.5 parent: 2 - - uid: 13722 + - uid: 6240 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-131.5 parent: 2 - - uid: 13723 + - uid: 6241 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-132.5 parent: 2 - - uid: 13724 + - uid: 6242 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-133.5 parent: 2 - - uid: 13725 + - uid: 6243 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-134.5 parent: 2 - - uid: 13726 + - uid: 6244 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-135.5 parent: 2 - - uid: 13727 + - uid: 6245 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-135.5 parent: 2 - - uid: 13728 + - uid: 6246 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-134.5 parent: 2 - - uid: 13729 + - uid: 6247 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-133.5 parent: 2 - - uid: 13730 + - uid: 6248 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-132.5 parent: 2 - - uid: 13731 + - uid: 6249 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-131.5 parent: 2 - - uid: 13732 + - uid: 6250 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-130.5 parent: 2 - - uid: 13733 + - uid: 6251 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-129.5 parent: 2 - - uid: 13734 + - uid: 6252 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-128.5 parent: 2 - - uid: 13735 + - uid: 6253 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - - uid: 13736 + - uid: 6254 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-126.5 parent: 2 - - uid: 13737 + - uid: 6255 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-125.5 parent: 2 - - uid: 13738 + - uid: 6256 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-136.5 parent: 2 - - uid: 13739 + - uid: 6257 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-137.5 parent: 2 - - uid: 13740 + - uid: 6258 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-138.5 parent: 2 - - uid: 13741 + - uid: 6259 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-139.5 parent: 2 - - uid: 13742 + - uid: 6260 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-140.5 parent: 2 - - uid: 13743 + - uid: 6261 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-141.5 parent: 2 - - uid: 13744 + - uid: 6262 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-142.5 parent: 2 - - uid: 13745 + - uid: 6263 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-143.5 parent: 2 - - uid: 13746 + - uid: 6264 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-144.5 parent: 2 - - uid: 13747 + - uid: 6265 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-145.5 parent: 2 - - uid: 13748 + - uid: 6266 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-146.5 parent: 2 - - uid: 13749 + - uid: 6267 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-147.5 parent: 2 - - uid: 13750 + - uid: 6268 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-148.5 parent: 2 - - uid: 13751 + - uid: 6269 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-148.5 parent: 2 - - uid: 13752 + - uid: 6270 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-147.5 parent: 2 - - uid: 13753 + - uid: 6271 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-146.5 parent: 2 - - uid: 13754 + - uid: 6272 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-145.5 parent: 2 - - uid: 13755 + - uid: 6273 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-144.5 parent: 2 - - uid: 13756 + - uid: 6274 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-143.5 parent: 2 - - uid: 13757 + - uid: 6275 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-142.5 parent: 2 - - uid: 13758 + - uid: 6276 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-141.5 parent: 2 - - uid: 13760 + - uid: 6277 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-139.5 parent: 2 - - uid: 13761 + - uid: 6278 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-138.5 parent: 2 - - uid: 13762 + - uid: 6279 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-137.5 parent: 2 - - uid: 13763 + - uid: 6280 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-136.5 parent: 2 - - uid: 13765 + - uid: 6281 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-149.5 parent: 2 - - uid: 13766 + - uid: 6282 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-149.5 parent: 2 - - uid: 13768 + - uid: 6283 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-148.5 parent: 2 - - uid: 13769 + - uid: 6284 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-147.5 parent: 2 - - uid: 13770 + - uid: 6285 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-146.5 parent: 2 - - uid: 13771 + - uid: 6286 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-145.5 parent: 2 - - uid: 13772 + - uid: 6287 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-144.5 parent: 2 - - uid: 13773 + - uid: 6288 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-143.5 parent: 2 - - uid: 13774 + - uid: 6289 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-142.5 parent: 2 - - uid: 13775 + - uid: 6290 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-141.5 parent: 2 - - uid: 13776 + - uid: 6291 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-140.5 parent: 2 - - uid: 13777 + - uid: 6292 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-139.5 parent: 2 - - uid: 13778 + - uid: 6293 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-138.5 parent: 2 - - uid: 13780 + - uid: 6294 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - - uid: 13781 + - uid: 6295 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-140.5 parent: 2 - - uid: 13782 + - uid: 6296 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-140.5 parent: 2 - - uid: 13783 + - uid: 6297 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-140.5 parent: 2 - - uid: 13784 + - uid: 6298 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-140.5 parent: 2 - - uid: 13786 + - uid: 6299 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-141.5 parent: 2 - - uid: 13788 + - uid: 6300 components: - type: Transform pos: 1.5,-150.5 parent: 2 - - uid: 13789 + - uid: 6301 components: - type: Transform pos: 1.5,-151.5 parent: 2 - - uid: 13790 + - uid: 6302 components: - type: Transform pos: 1.5,-152.5 parent: 2 - - uid: 13791 + - uid: 6303 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 13792 + - uid: 6304 components: - type: Transform pos: 1.5,-154.5 parent: 2 - - uid: 13793 + - uid: 6305 components: - type: Transform pos: 1.5,-155.5 parent: 2 - - uid: 13794 + - uid: 6306 components: - type: Transform pos: 1.5,-156.5 parent: 2 - - uid: 13795 + - uid: 6307 components: - type: Transform pos: 1.5,-157.5 parent: 2 - - uid: 13796 + - uid: 6308 components: - type: Transform pos: 1.5,-158.5 parent: 2 - - uid: 13797 + - uid: 6309 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 13798 + - uid: 6310 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 13799 + - uid: 6311 components: - type: Transform pos: 1.5,-161.5 parent: 2 - - uid: 13800 + - uid: 6312 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 13801 + - uid: 6313 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 13802 + - uid: 6314 components: - type: Transform pos: -0.5,-161.5 parent: 2 - - uid: 13803 + - uid: 6315 components: - type: Transform pos: -0.5,-160.5 parent: 2 - - uid: 13804 + - uid: 6316 components: - type: Transform pos: -0.5,-159.5 parent: 2 - - uid: 13805 + - uid: 6317 components: - type: Transform pos: -0.5,-158.5 parent: 2 - - uid: 13806 + - uid: 6318 components: - type: Transform pos: -0.5,-157.5 parent: 2 - - uid: 13807 + - uid: 6319 components: - type: Transform pos: -0.5,-156.5 parent: 2 - - uid: 13808 + - uid: 6320 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 13809 + - uid: 6321 components: - type: Transform pos: -0.5,-154.5 parent: 2 - - uid: 13810 + - uid: 6322 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 13811 + - uid: 6323 components: - type: Transform pos: -0.5,-152.5 parent: 2 - - uid: 13812 + - uid: 6324 components: - type: Transform pos: -0.5,-151.5 parent: 2 - - uid: 13813 + - uid: 6325 components: - type: Transform pos: -0.5,-150.5 parent: 2 - - uid: 13814 + - uid: 6326 components: - type: Transform pos: -0.5,-149.5 parent: 2 - - uid: 13815 + - uid: 6327 components: - type: Transform pos: -0.5,-278.5 parent: 2 - - uid: 13816 + - uid: 6328 components: - type: Transform pos: -0.5,-279.5 parent: 2 - - uid: 13817 + - uid: 6329 components: - type: Transform pos: -0.5,-280.5 parent: 2 - - uid: 13818 + - uid: 6330 components: - type: Transform pos: -0.5,-281.5 parent: 2 - - uid: 13822 + - uid: 6331 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-164.5 parent: 2 - - uid: 13823 + - uid: 6332 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-165.5 parent: 2 - - uid: 13824 + - uid: 6333 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-166.5 parent: 2 - - uid: 13825 + - uid: 6334 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-167.5 parent: 2 - - uid: 13826 + - uid: 6335 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-168.5 parent: 2 - - uid: 13827 + - uid: 6336 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-169.5 parent: 2 - - uid: 13828 + - uid: 6337 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-170.5 parent: 2 - - uid: 13829 + - uid: 6338 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-171.5 parent: 2 - - uid: 13830 + - uid: 6339 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-172.5 parent: 2 - - uid: 13831 + - uid: 6340 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-173.5 parent: 2 - - uid: 13832 + - uid: 6341 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-174.5 parent: 2 - - uid: 13833 + - uid: 6342 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-175.5 parent: 2 - - uid: 13834 + - uid: 6343 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-176.5 parent: 2 - - uid: 13835 + - uid: 6344 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-177.5 parent: 2 - - uid: 13836 + - uid: 6345 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-178.5 parent: 2 - - uid: 13838 + - uid: 6346 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-176.5 parent: 2 - - uid: 13839 + - uid: 6347 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-176.5 parent: 2 - - uid: 13840 + - uid: 6348 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-176.5 parent: 2 - - uid: 13841 + - uid: 6349 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-176.5 parent: 2 - - uid: 13843 + - uid: 6350 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-178.5 parent: 2 - - uid: 13844 + - uid: 6351 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-177.5 parent: 2 - - uid: 13845 + - uid: 6352 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-175.5 parent: 2 - - uid: 13846 + - uid: 6353 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-174.5 parent: 2 - - uid: 13847 + - uid: 6354 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-173.5 parent: 2 - - uid: 13848 + - uid: 6355 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-172.5 parent: 2 - - uid: 13849 + - uid: 6356 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-171.5 parent: 2 - - uid: 13850 + - uid: 6357 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-170.5 parent: 2 - - uid: 13851 + - uid: 6358 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-169.5 parent: 2 - - uid: 13852 + - uid: 6359 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-168.5 parent: 2 - - uid: 13853 + - uid: 6360 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-167.5 parent: 2 - - uid: 13854 + - uid: 6361 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-166.5 parent: 2 - - uid: 13855 + - uid: 6362 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-165.5 parent: 2 - - uid: 13856 + - uid: 6363 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-164.5 parent: 2 - - uid: 13857 + - uid: 6364 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-163.5 parent: 2 - - uid: 13858 + - uid: 6365 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - - uid: 13859 + - uid: 6366 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-180.5 parent: 2 - - uid: 13860 + - uid: 6367 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-181.5 parent: 2 - - uid: 13861 + - uid: 6368 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-182.5 parent: 2 - - uid: 13862 + - uid: 6369 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-183.5 parent: 2 - - uid: 13863 + - uid: 6370 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-184.5 parent: 2 - - uid: 13864 + - uid: 6371 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-185.5 parent: 2 - - uid: 13865 + - uid: 6372 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-186.5 parent: 2 - - uid: 13866 + - uid: 6373 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-187.5 parent: 2 - - uid: 13867 + - uid: 6374 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-188.5 parent: 2 - - uid: 13868 + - uid: 6375 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-189.5 parent: 2 - - uid: 13869 + - uid: 6376 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-189.5 parent: 2 - - uid: 13870 + - uid: 6377 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-188.5 parent: 2 - - uid: 13871 + - uid: 6378 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-187.5 parent: 2 - - uid: 13872 + - uid: 6379 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-186.5 parent: 2 - - uid: 13873 + - uid: 6380 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-185.5 parent: 2 - - uid: 13874 + - uid: 6381 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-184.5 parent: 2 - - uid: 13875 + - uid: 6382 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-183.5 parent: 2 - - uid: 13876 + - uid: 6383 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-182.5 parent: 2 - - uid: 13877 + - uid: 6384 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - - uid: 13878 + - uid: 6385 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-180.5 parent: 2 - - uid: 13879 + - uid: 6386 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-179.5 parent: 2 - - uid: 13880 + - uid: 6387 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-190.5 parent: 2 - - uid: 13881 + - uid: 6388 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-191.5 parent: 2 - - uid: 13882 + - uid: 6389 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-192.5 parent: 2 - - uid: 13883 + - uid: 6390 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-193.5 parent: 2 - - uid: 13884 + - uid: 6391 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-194.5 parent: 2 - - uid: 13885 + - uid: 6392 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-195.5 parent: 2 - - uid: 13886 + - uid: 6393 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-196.5 parent: 2 - - uid: 13887 + - uid: 6394 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-197.5 parent: 2 - - uid: 13888 + - uid: 6395 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-198.5 parent: 2 - - uid: 13889 + - uid: 6396 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-199.5 parent: 2 - - uid: 13890 + - uid: 6397 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-200.5 parent: 2 - - uid: 13891 + - uid: 6398 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-201.5 parent: 2 - - uid: 13892 + - uid: 6399 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-202.5 parent: 2 - - uid: 13893 + - uid: 6400 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-203.5 parent: 2 - - uid: 13894 + - uid: 6401 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-204.5 parent: 2 - - uid: 13895 + - uid: 6402 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-205.5 parent: 2 - - uid: 13896 + - uid: 6403 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-205.5 parent: 2 - - uid: 13897 + - uid: 6404 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-204.5 parent: 2 - - uid: 13898 + - uid: 6405 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - - uid: 13899 + - uid: 6406 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-202.5 parent: 2 - - uid: 13900 + - uid: 6407 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - - uid: 13901 + - uid: 6408 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-200.5 parent: 2 - - uid: 13902 + - uid: 6409 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-199.5 parent: 2 - - uid: 13903 + - uid: 6410 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-198.5 parent: 2 - - uid: 13904 + - uid: 6411 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-197.5 parent: 2 - - uid: 13905 + - uid: 6412 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-196.5 parent: 2 - - uid: 13906 + - uid: 6413 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - - uid: 13907 + - uid: 6414 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-194.5 parent: 2 - - uid: 13908 + - uid: 6415 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-193.5 parent: 2 - - uid: 13909 + - uid: 6416 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-192.5 parent: 2 - - uid: 13910 + - uid: 6417 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-191.5 parent: 2 - - uid: 13911 + - uid: 6418 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-190.5 parent: 2 - - uid: 13912 + - uid: 6419 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-206.5 parent: 2 - - uid: 13913 + - uid: 6420 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-207.5 parent: 2 - - uid: 13914 + - uid: 6421 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-208.5 parent: 2 - - uid: 13915 + - uid: 6422 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-209.5 parent: 2 - - uid: 13916 + - uid: 6423 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-210.5 parent: 2 - - uid: 13917 + - uid: 6424 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-211.5 parent: 2 - - uid: 13918 + - uid: 6425 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-212.5 parent: 2 - - uid: 13919 + - uid: 6426 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-213.5 parent: 2 - - uid: 13920 + - uid: 6427 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-214.5 parent: 2 - - uid: 13921 + - uid: 6428 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-215.5 parent: 2 - - uid: 13922 + - uid: 6429 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-216.5 parent: 2 - - uid: 13923 + - uid: 6430 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-217.5 parent: 2 - - uid: 13924 + - uid: 6431 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-217.5 parent: 2 - - uid: 13925 + - uid: 6432 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-216.5 parent: 2 - - uid: 13926 + - uid: 6433 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-215.5 parent: 2 - - uid: 13927 + - uid: 6434 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-214.5 parent: 2 - - uid: 13928 + - uid: 6435 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-213.5 parent: 2 - - uid: 13929 + - uid: 6436 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-212.5 parent: 2 - - uid: 13930 + - uid: 6437 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-211.5 parent: 2 - - uid: 13931 + - uid: 6438 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-210.5 parent: 2 - - uid: 13932 + - uid: 6439 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-209.5 parent: 2 - - uid: 13933 + - uid: 6440 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-208.5 parent: 2 - - uid: 13934 + - uid: 6441 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-207.5 parent: 2 - - uid: 13935 + - uid: 6442 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - - uid: 13936 + - uid: 6443 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-218.5 parent: 2 - - uid: 13937 + - uid: 6444 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-219.5 parent: 2 - - uid: 13938 + - uid: 6445 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-220.5 parent: 2 - - uid: 13939 + - uid: 6446 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-221.5 parent: 2 - - uid: 13940 + - uid: 6447 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-222.5 parent: 2 - - uid: 13941 + - uid: 6448 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-223.5 parent: 2 - - uid: 13942 + - uid: 6449 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-224.5 parent: 2 - - uid: 13943 + - uid: 6450 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-225.5 parent: 2 - - uid: 13944 + - uid: 6451 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-226.5 parent: 2 - - uid: 13945 + - uid: 6452 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-227.5 parent: 2 - - uid: 13946 + - uid: 6453 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-228.5 parent: 2 - - uid: 13947 + - uid: 6454 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-229.5 parent: 2 - - uid: 13948 + - uid: 6455 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-230.5 parent: 2 - - uid: 13949 + - uid: 6456 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-231.5 parent: 2 - - uid: 13950 + - uid: 6457 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-232.5 parent: 2 - - uid: 13951 + - uid: 6458 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - - uid: 13952 + - uid: 6459 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-234.5 parent: 2 - - uid: 13953 + - uid: 6460 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - - uid: 13954 + - uid: 6461 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-236.5 parent: 2 - - uid: 13955 + - uid: 6462 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-237.5 parent: 2 - - uid: 13956 + - uid: 6463 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-238.5 parent: 2 - - uid: 13957 + - uid: 6464 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-239.5 parent: 2 - - uid: 13958 + - uid: 6465 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-240.5 parent: 2 - - uid: 13959 + - uid: 6466 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-241.5 parent: 2 - - uid: 13960 + - uid: 6467 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-242.5 parent: 2 - - uid: 13963 + - uid: 6468 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-242.5 parent: 2 - - uid: 13964 + - uid: 6469 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-241.5 parent: 2 - - uid: 13965 + - uid: 6470 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-240.5 parent: 2 - - uid: 13966 + - uid: 6471 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-239.5 parent: 2 - - uid: 13967 + - uid: 6472 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-238.5 parent: 2 - - uid: 13968 + - uid: 6473 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-237.5 parent: 2 - - uid: 13969 + - uid: 6474 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-236.5 parent: 2 - - uid: 13970 + - uid: 6475 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-235.5 parent: 2 - - uid: 13971 + - uid: 6476 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-234.5 parent: 2 - - uid: 13972 + - uid: 6477 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-233.5 parent: 2 - - uid: 13973 + - uid: 6478 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-232.5 parent: 2 - - uid: 13974 + - uid: 6479 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-231.5 parent: 2 - - uid: 13975 + - uid: 6480 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-230.5 parent: 2 - - uid: 13976 + - uid: 6481 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-229.5 parent: 2 - - uid: 13977 + - uid: 6482 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-228.5 parent: 2 - - uid: 13978 + - uid: 6483 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-227.5 parent: 2 - - uid: 13979 + - uid: 6484 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-226.5 parent: 2 - - uid: 13980 + - uid: 6485 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-225.5 parent: 2 - - uid: 13981 + - uid: 6486 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-224.5 parent: 2 - - uid: 13982 + - uid: 6487 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-223.5 parent: 2 - - uid: 13983 + - uid: 6488 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-222.5 parent: 2 - - uid: 13984 + - uid: 6489 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-221.5 parent: 2 - - uid: 13985 + - uid: 6490 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-220.5 parent: 2 - - uid: 13986 + - uid: 6491 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-219.5 parent: 2 - - uid: 13987 + - uid: 6492 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-218.5 parent: 2 - - uid: 14011 + - uid: 6493 components: - type: Transform pos: 15.5,-107.5 parent: 2 - - uid: 14014 + - uid: 6494 components: - type: Transform pos: 15.5,-112.5 parent: 2 - - uid: 14018 + - uid: 6495 components: - type: Transform pos: -9.5,-223.5 parent: 2 - - uid: 14019 + - uid: 6496 components: - type: Transform pos: -9.5,-272.5 parent: 2 - - uid: 14028 + - uid: 6497 components: - type: Transform pos: -3.5,-286.5 parent: 2 - - uid: 14031 + - uid: 6498 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-283.5 parent: 2 - - uid: 14032 + - uid: 6499 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-284.5 parent: 2 - - uid: 14034 + - uid: 6500 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-285.5 parent: 2 - - uid: 14035 + - uid: 6501 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 14051 + - uid: 6502 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-262.5 parent: 2 - - uid: 14052 + - uid: 6503 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-263.5 parent: 2 - - uid: 14053 + - uid: 6504 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-264.5 parent: 2 - - uid: 14054 + - uid: 6505 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-265.5 parent: 2 - - uid: 14055 + - uid: 6506 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-266.5 parent: 2 - - uid: 14056 + - uid: 6507 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-267.5 parent: 2 - - uid: 14057 + - uid: 6508 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-268.5 parent: 2 - - uid: 14058 + - uid: 6509 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-269.5 parent: 2 - - uid: 14059 + - uid: 6510 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-270.5 parent: 2 - - uid: 14060 + - uid: 6511 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-271.5 parent: 2 - - uid: 14061 + - uid: 6512 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-272.5 parent: 2 - - uid: 14062 + - uid: 6513 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-273.5 parent: 2 - - uid: 14063 + - uid: 6514 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-273.5 parent: 2 - - uid: 14064 + - uid: 6515 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-272.5 parent: 2 - - uid: 14065 + - uid: 6516 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-271.5 parent: 2 - - uid: 14066 + - uid: 6517 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-270.5 parent: 2 - - uid: 14067 + - uid: 6518 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-269.5 parent: 2 - - uid: 14068 + - uid: 6519 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-268.5 parent: 2 - - uid: 14069 + - uid: 6520 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-267.5 parent: 2 - - uid: 14070 + - uid: 6521 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-266.5 parent: 2 - - uid: 14071 + - uid: 6522 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-265.5 parent: 2 - - uid: 14072 + - uid: 6523 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-264.5 parent: 2 - - uid: 14073 + - uid: 6524 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-263.5 parent: 2 - - uid: 14074 + - uid: 6525 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-262.5 parent: 2 - - uid: 14075 + - uid: 6526 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-261.5 parent: 2 - - uid: 14080 + - uid: 6527 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-277.5 parent: 2 - - uid: 14081 + - uid: 6528 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-275.5 parent: 2 - - uid: 14082 + - uid: 6529 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-276.5 parent: 2 - - uid: 14083 + - uid: 6530 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-277.5 parent: 2 - - uid: 14084 + - uid: 6531 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-274.5 parent: 2 - - uid: 14104 + - uid: 6532 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-279.5 parent: 2 - - uid: 14105 + - uid: 6533 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 14107 + - uid: 6534 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-285.5 parent: 2 - - uid: 14108 + - uid: 6535 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-286.5 parent: 2 - - uid: 14109 + - uid: 6536 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-287.5 parent: 2 - - uid: 14110 + - uid: 6537 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-288.5 parent: 2 - - uid: 14111 + - uid: 6538 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-289.5 parent: 2 - - uid: 14112 + - uid: 6539 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-290.5 parent: 2 - - uid: 14113 + - uid: 6540 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-291.5 parent: 2 - - uid: 14114 + - uid: 6541 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-292.5 parent: 2 - - uid: 14115 + - uid: 6542 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-293.5 parent: 2 - - uid: 14116 + - uid: 6543 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-294.5 parent: 2 - - uid: 14117 + - uid: 6544 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-295.5 parent: 2 - - uid: 14118 + - uid: 6545 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-296.5 parent: 2 - - uid: 14119 + - uid: 6546 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-297.5 parent: 2 - - uid: 14120 + - uid: 6547 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-298.5 parent: 2 - - uid: 14121 + - uid: 6548 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-298.5 parent: 2 - - uid: 14122 + - uid: 6549 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-297.5 parent: 2 - - uid: 14123 + - uid: 6550 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-296.5 parent: 2 - - uid: 14124 + - uid: 6551 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-295.5 parent: 2 - - uid: 14125 + - uid: 6552 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-294.5 parent: 2 - - uid: 14126 + - uid: 6553 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-293.5 parent: 2 - - uid: 14127 + - uid: 6554 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-292.5 parent: 2 - - uid: 14128 + - uid: 6555 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-291.5 parent: 2 - - uid: 14129 + - uid: 6556 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-290.5 parent: 2 - - uid: 14130 + - uid: 6557 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - - uid: 14131 + - uid: 6558 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-288.5 parent: 2 - - uid: 14132 + - uid: 6559 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-287.5 parent: 2 - - uid: 14133 + - uid: 6560 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-286.5 parent: 2 - - uid: 14135 + - uid: 6561 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-299.5 parent: 2 - - uid: 14136 + - uid: 6562 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-300.5 parent: 2 - - uid: 14137 + - uid: 6563 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-301.5 parent: 2 - - uid: 14138 + - uid: 6564 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-302.5 parent: 2 - - uid: 14140 + - uid: 6565 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - - uid: 14141 + - uid: 6566 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-303.5 parent: 2 - - uid: 14143 + - uid: 6567 components: - type: Transform pos: 1.5,-299.5 parent: 2 - - uid: 14144 + - uid: 6568 components: - type: Transform pos: 1.5,-300.5 parent: 2 - - uid: 14145 + - uid: 6569 components: - type: Transform pos: 1.5,-301.5 parent: 2 - - uid: 14146 + - uid: 6570 components: - type: Transform pos: 1.5,-302.5 parent: 2 - - uid: 14147 + - uid: 6571 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 14148 + - uid: 6572 components: - type: Transform pos: 1.5,-304.5 parent: 2 - - uid: 14149 + - uid: 6573 components: - type: Transform pos: 1.5,-305.5 parent: 2 - - uid: 14150 + - uid: 6574 components: - type: Transform pos: 1.5,-306.5 parent: 2 - - uid: 14151 + - uid: 6575 components: - type: Transform pos: 1.5,-307.5 parent: 2 - - uid: 14152 + - uid: 6576 components: - type: Transform pos: 1.5,-308.5 parent: 2 - - uid: 14153 + - uid: 6577 components: - type: Transform pos: 1.5,-309.5 parent: 2 - - uid: 14154 + - uid: 6578 components: - type: Transform pos: 1.5,-310.5 parent: 2 - - uid: 14155 + - uid: 6579 components: - type: Transform pos: 1.5,-311.5 parent: 2 - - uid: 14156 + - uid: 6580 components: - type: Transform pos: 1.5,-312.5 parent: 2 - - uid: 14157 + - uid: 6581 components: - type: Transform pos: 1.5,-313.5 parent: 2 - - uid: 14158 + - uid: 6582 components: - type: Transform pos: 1.5,-314.5 parent: 2 - - uid: 14159 + - uid: 6583 components: - type: Transform pos: 1.5,-315.5 parent: 2 - - uid: 14160 + - uid: 6584 components: - type: Transform pos: 1.5,-316.5 parent: 2 - - uid: 14161 + - uid: 6585 components: - type: Transform pos: 1.5,-317.5 parent: 2 - - uid: 14162 + - uid: 6586 components: - type: Transform pos: -0.5,-317.5 parent: 2 - - uid: 14163 + - uid: 6587 components: - type: Transform pos: -0.5,-316.5 parent: 2 - - uid: 14164 + - uid: 6588 components: - type: Transform pos: -0.5,-315.5 parent: 2 - - uid: 14165 + - uid: 6589 components: - type: Transform pos: -0.5,-314.5 parent: 2 - - uid: 14166 + - uid: 6590 components: - type: Transform pos: -0.5,-313.5 parent: 2 - - uid: 14167 + - uid: 6591 components: - type: Transform pos: -0.5,-312.5 parent: 2 - - uid: 14168 + - uid: 6592 components: - type: Transform pos: -0.5,-311.5 parent: 2 - - uid: 14169 + - uid: 6593 components: - type: Transform pos: -0.5,-310.5 parent: 2 - - uid: 14170 + - uid: 6594 components: - type: Transform pos: -0.5,-309.5 parent: 2 - - uid: 14171 + - uid: 6595 components: - type: Transform pos: -0.5,-308.5 parent: 2 - - uid: 14172 + - uid: 6596 components: - type: Transform pos: -0.5,-307.5 parent: 2 - - uid: 14173 + - uid: 6597 components: - type: Transform pos: -0.5,-306.5 parent: 2 - - uid: 14174 + - uid: 6598 components: - type: Transform pos: -0.5,-305.5 parent: 2 - - uid: 14175 + - uid: 6599 components: - type: Transform pos: -0.5,-304.5 parent: 2 - - uid: 14176 + - uid: 6600 components: - type: Transform pos: 1.5,-319.5 parent: 2 - - uid: 14177 + - uid: 6601 components: - type: Transform pos: 1.5,-320.5 parent: 2 - - uid: 14178 + - uid: 6602 components: - type: Transform pos: 1.5,-321.5 parent: 2 - - uid: 14179 + - uid: 6603 components: - type: Transform pos: 1.5,-322.5 parent: 2 - - uid: 14180 + - uid: 6604 components: - type: Transform pos: 1.5,-323.5 parent: 2 - - uid: 14181 + - uid: 6605 components: - type: Transform pos: 1.5,-324.5 parent: 2 - - uid: 14182 + - uid: 6606 components: - type: Transform pos: 1.5,-325.5 parent: 2 - - uid: 14183 + - uid: 6607 components: - type: Transform pos: 1.5,-326.5 parent: 2 - - uid: 14184 + - uid: 6608 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 14185 + - uid: 6609 components: - type: Transform pos: 1.5,-328.5 parent: 2 - - uid: 14186 + - uid: 6610 components: - type: Transform pos: 1.5,-329.5 parent: 2 - - uid: 14187 + - uid: 6611 components: - type: Transform pos: 1.5,-330.5 parent: 2 - - uid: 14188 + - uid: 6612 components: - type: Transform pos: -0.5,-330.5 parent: 2 - - uid: 14189 + - uid: 6613 components: - type: Transform pos: -0.5,-329.5 parent: 2 - - uid: 14190 + - uid: 6614 components: - type: Transform pos: -0.5,-328.5 parent: 2 - - uid: 14191 + - uid: 6615 components: - type: Transform pos: -0.5,-327.5 parent: 2 - - uid: 14192 + - uid: 6616 components: - type: Transform pos: -0.5,-326.5 parent: 2 - - uid: 14193 + - uid: 6617 components: - type: Transform pos: -0.5,-325.5 parent: 2 - - uid: 14194 + - uid: 6618 components: - type: Transform pos: -0.5,-324.5 parent: 2 - - uid: 14195 + - uid: 6619 components: - type: Transform pos: -0.5,-323.5 parent: 2 - - uid: 14196 + - uid: 6620 components: - type: Transform pos: -0.5,-322.5 parent: 2 - - uid: 14197 + - uid: 6621 components: - type: Transform pos: -0.5,-321.5 parent: 2 - - uid: 14198 + - uid: 6622 components: - type: Transform pos: -0.5,-320.5 parent: 2 - - uid: 14199 + - uid: 6623 components: - type: Transform pos: -0.5,-319.5 parent: 2 - - uid: 14200 + - uid: 6624 components: - type: Transform pos: -0.5,-318.5 parent: 2 - - uid: 14202 + - uid: 6625 components: - type: Transform pos: -0.5,-331.5 parent: 2 - - uid: 14203 + - uid: 6626 components: - type: Transform pos: -0.5,-332.5 parent: 2 - - uid: 14204 + - uid: 6627 components: - type: Transform pos: -0.5,-333.5 parent: 2 - - uid: 14205 + - uid: 6628 components: - type: Transform pos: -0.5,-334.5 parent: 2 - - uid: 14206 + - uid: 6629 components: - type: Transform pos: -0.5,-335.5 parent: 2 - - uid: 14207 + - uid: 6630 components: - type: Transform pos: -0.5,-336.5 parent: 2 - - uid: 14208 + - uid: 6631 components: - type: Transform pos: -0.5,-337.5 parent: 2 - - uid: 14209 + - uid: 6632 components: - type: Transform pos: -0.5,-338.5 parent: 2 - - uid: 14211 + - uid: 6633 components: - type: Transform pos: 1.5,-339.5 parent: 2 - - uid: 14212 + - uid: 6634 components: - type: Transform pos: 1.5,-338.5 parent: 2 - - uid: 14213 + - uid: 6635 components: - type: Transform pos: 1.5,-337.5 parent: 2 - - uid: 14214 + - uid: 6636 components: - type: Transform pos: 1.5,-336.5 parent: 2 - - uid: 14215 + - uid: 6637 components: - type: Transform pos: 1.5,-335.5 parent: 2 - - uid: 14216 + - uid: 6638 components: - type: Transform pos: 1.5,-334.5 parent: 2 - - uid: 14217 + - uid: 6639 components: - type: Transform pos: 1.5,-333.5 parent: 2 - - uid: 14218 + - uid: 6640 components: - type: Transform pos: 1.5,-332.5 parent: 2 - - uid: 14219 + - uid: 6641 components: - type: Transform pos: 1.5,-331.5 parent: 2 - - uid: 14222 + - uid: 6642 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-340.5 parent: 2 - - uid: 14224 + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-339.5 parent: 2 - - uid: 14226 + - uid: 6644 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-340.5 parent: 2 - - uid: 14719 + - uid: 6645 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-248.5 parent: 2 - - uid: 15302 + - uid: 6646 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 - - uid: 15303 + - uid: 6647 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 - - uid: 15304 + - uid: 6648 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 2 - - uid: 15305 + - uid: 6649 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 15306 + - uid: 6650 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 2 - - uid: 15309 + - uid: 6651 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 15310 + - uid: 6652 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 15311 + - uid: 6653 components: - type: Transform pos: 0.5,-7.5 parent: 2 - - uid: 15312 + - uid: 6654 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 15313 + - uid: 6655 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 15314 + - uid: 6656 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 15315 + - uid: 6657 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 15316 + - uid: 6658 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 15317 + - uid: 6659 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 15318 + - uid: 6660 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 15319 + - uid: 6661 components: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 15320 + - uid: 6662 components: - type: Transform pos: 0.5,-16.5 parent: 2 - - uid: 15321 + - uid: 6663 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 15322 + - uid: 6664 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 15323 + - uid: 6665 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 15324 + - uid: 6666 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 15325 + - uid: 6667 components: - type: Transform pos: 0.5,-21.5 parent: 2 - - uid: 15326 + - uid: 6668 components: - type: Transform pos: 0.5,-22.5 parent: 2 - - uid: 15327 + - uid: 6669 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 15328 + - uid: 6670 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 15329 + - uid: 6671 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 15330 + - uid: 6672 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 15331 + - uid: 6673 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 15332 + - uid: 6674 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 15338 + - uid: 6675 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 15339 + - uid: 6676 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 15340 + - uid: 6677 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 15341 + - uid: 6678 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 15342 + - uid: 6679 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 15343 + - uid: 6680 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 15344 + - uid: 6681 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 15345 + - uid: 6682 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 15346 + - uid: 6683 components: - type: Transform pos: 0.5,-39.5 parent: 2 - - uid: 15347 + - uid: 6684 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 15348 + - uid: 6685 components: - type: Transform pos: 0.5,-41.5 parent: 2 - - uid: 15349 + - uid: 6686 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 15350 + - uid: 6687 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 15351 + - uid: 6688 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 15352 + - uid: 6689 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 15353 + - uid: 6690 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 15354 + - uid: 6691 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 15355 + - uid: 6692 components: - type: Transform pos: 0.5,-48.5 parent: 2 - - uid: 15356 + - uid: 6693 components: - type: Transform pos: 0.5,-49.5 parent: 2 - - uid: 15357 + - uid: 6694 components: - type: Transform pos: 0.5,-50.5 parent: 2 - - uid: 15358 + - uid: 6695 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 15359 + - uid: 6696 components: - type: Transform pos: 0.5,-52.5 parent: 2 - - uid: 15360 + - uid: 6697 components: - type: Transform pos: 0.5,-53.5 parent: 2 - - uid: 15361 + - uid: 6698 components: - type: Transform pos: 0.5,-54.5 parent: 2 - - uid: 15363 + - uid: 6699 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-32.5 parent: 2 - - uid: 15366 + - uid: 6700 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-69.5 parent: 2 - - uid: 15367 + - uid: 6701 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-56.5 parent: 2 - - uid: 15370 + - uid: 6702 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 15371 + - uid: 6703 components: - type: Transform pos: 0.5,-67.5 parent: 2 - - uid: 15372 + - uid: 6704 components: - type: Transform pos: 0.5,-66.5 parent: 2 - - uid: 15373 + - uid: 6705 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 15374 + - uid: 6706 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 15375 + - uid: 6707 components: - type: Transform pos: 0.5,-63.5 parent: 2 - - uid: 15376 + - uid: 6708 components: - type: Transform pos: 0.5,-62.5 parent: 2 - - uid: 15377 + - uid: 6709 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 15378 + - uid: 6710 components: - type: Transform pos: 0.5,-60.5 parent: 2 - - uid: 15379 + - uid: 6711 components: - type: Transform pos: 0.5,-59.5 parent: 2 - - uid: 15380 + - uid: 6712 components: - type: Transform pos: 0.5,-58.5 parent: 2 - - uid: 15381 + - uid: 6713 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 15382 + - uid: 6714 components: - type: Transform pos: 0.5,-55.5 parent: 2 - - uid: 15383 + - uid: 6715 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 15384 + - uid: 6716 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 15385 + - uid: 6717 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 15386 + - uid: 6718 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 15387 + - uid: 6719 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 15388 + - uid: 6720 components: - type: Transform pos: 0.5,-75.5 parent: 2 - - uid: 15389 + - uid: 6721 components: - type: Transform pos: 0.5,-76.5 parent: 2 - - uid: 15390 + - uid: 6722 components: - type: Transform pos: 0.5,-77.5 parent: 2 - - uid: 15391 + - uid: 6723 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 15392 + - uid: 6724 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 15393 + - uid: 6725 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 15394 + - uid: 6726 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 15397 + - uid: 6727 components: - type: Transform pos: 0.5,-82.5 parent: 2 - - uid: 15398 + - uid: 6728 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 15401 + - uid: 6729 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-85.5 parent: 2 - - uid: 15402 + - uid: 6730 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-86.5 parent: 2 - - uid: 15403 + - uid: 6731 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-87.5 parent: 2 - - uid: 15404 + - uid: 6732 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-88.5 parent: 2 - - uid: 15405 + - uid: 6733 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-89.5 parent: 2 - - uid: 15406 + - uid: 6734 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-90.5 parent: 2 - - uid: 15407 + - uid: 6735 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-91.5 parent: 2 - - uid: 15408 + - uid: 6736 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-92.5 parent: 2 - - uid: 15409 + - uid: 6737 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-93.5 parent: 2 - - uid: 15410 + - uid: 6738 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-94.5 parent: 2 - - uid: 15411 + - uid: 6739 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-95.5 parent: 2 - - uid: 15412 + - uid: 6740 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-96.5 parent: 2 - - uid: 15414 + - uid: 6741 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-97.5 parent: 2 - - uid: 15415 + - uid: 6742 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-97.5 parent: 2 - - uid: 15416 + - uid: 6743 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-97.5 parent: 2 - - uid: 15417 + - uid: 6744 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-97.5 parent: 2 - - uid: 15418 + - uid: 6745 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-97.5 parent: 2 - - uid: 15420 + - uid: 6746 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-98.5 parent: 2 - - uid: 15421 + - uid: 6747 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-99.5 parent: 2 - - uid: 15422 + - uid: 6748 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-100.5 parent: 2 - - uid: 15423 + - uid: 6749 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-101.5 parent: 2 - - uid: 15424 + - uid: 6750 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-102.5 parent: 2 - - uid: 15425 + - uid: 6751 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-103.5 parent: 2 - - uid: 15426 + - uid: 6752 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-104.5 parent: 2 - - uid: 15427 + - uid: 6753 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-105.5 parent: 2 - - uid: 15428 + - uid: 6754 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-106.5 parent: 2 - - uid: 15429 + - uid: 6755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-107.5 parent: 2 - - uid: 15433 + - uid: 6756 components: - type: Transform pos: 0.5,-109.5 parent: 2 - - uid: 15434 + - uid: 6757 components: - type: Transform pos: 0.5,-110.5 parent: 2 - - uid: 15435 + - uid: 6758 components: - type: Transform pos: 0.5,-111.5 parent: 2 - - uid: 15436 + - uid: 6759 components: - type: Transform pos: 0.5,-112.5 parent: 2 - - uid: 15437 + - uid: 6760 components: - type: Transform pos: 0.5,-113.5 parent: 2 - - uid: 15438 + - uid: 6761 components: - type: Transform pos: 0.5,-114.5 parent: 2 - - uid: 15439 + - uid: 6762 components: - type: Transform pos: 0.5,-115.5 parent: 2 - - uid: 15440 + - uid: 6763 components: - type: Transform pos: 0.5,-116.5 parent: 2 - - uid: 15441 + - uid: 6764 components: - type: Transform pos: 0.5,-117.5 parent: 2 - - uid: 15442 + - uid: 6765 components: - type: Transform pos: 0.5,-118.5 parent: 2 - - uid: 15443 + - uid: 6766 components: - type: Transform pos: 0.5,-119.5 parent: 2 - - uid: 15444 + - uid: 6767 components: - type: Transform pos: 0.5,-120.5 parent: 2 - - uid: 15445 + - uid: 6768 components: - type: Transform pos: 0.5,-121.5 parent: 2 - - uid: 15446 + - uid: 6769 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 15447 + - uid: 6770 components: - type: Transform pos: 0.5,-123.5 parent: 2 - - uid: 15448 + - uid: 6771 components: - type: Transform pos: 0.5,-124.5 parent: 2 - - uid: 15452 + - uid: 6772 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-125.5 parent: 2 - - uid: 15453 + - uid: 6773 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-125.5 parent: 2 - - uid: 15454 + - uid: 6774 components: - type: Transform pos: 0.5,-126.5 parent: 2 - - uid: 15455 + - uid: 6775 components: - type: Transform pos: 0.5,-127.5 parent: 2 - - uid: 15456 + - uid: 6776 components: - type: Transform pos: 0.5,-128.5 parent: 2 - - uid: 15457 + - uid: 6777 components: - type: Transform pos: 0.5,-129.5 parent: 2 - - uid: 15458 + - uid: 6778 components: - type: Transform pos: 0.5,-130.5 parent: 2 - - uid: 15459 + - uid: 6779 components: - type: Transform pos: 0.5,-131.5 parent: 2 - - uid: 15460 + - uid: 6780 components: - type: Transform pos: 0.5,-132.5 parent: 2 - - uid: 15461 + - uid: 6781 components: - type: Transform pos: 0.5,-133.5 parent: 2 - - uid: 15462 + - uid: 6782 components: - type: Transform pos: 0.5,-134.5 parent: 2 - - uid: 15464 + - uid: 6783 components: - type: Transform pos: 0.5,-135.5 parent: 2 - - uid: 15465 + - uid: 6784 components: - type: Transform pos: 0.5,-136.5 parent: 2 - - uid: 15466 + - uid: 6785 components: - type: Transform pos: 0.5,-137.5 parent: 2 - - uid: 15467 + - uid: 6786 components: - type: Transform pos: 0.5,-138.5 parent: 2 - - uid: 15468 + - uid: 6787 components: - type: Transform pos: 0.5,-139.5 parent: 2 - - uid: 15469 + - uid: 6788 components: - type: Transform pos: 0.5,-140.5 parent: 2 - - uid: 15470 + - uid: 6789 components: - type: Transform pos: 0.5,-141.5 parent: 2 - - uid: 15471 + - uid: 6790 components: - type: Transform pos: 0.5,-142.5 parent: 2 - - uid: 15472 + - uid: 6791 components: - type: Transform pos: 0.5,-143.5 parent: 2 - - uid: 15473 + - uid: 6792 components: - type: Transform pos: 0.5,-144.5 parent: 2 - - uid: 15474 + - uid: 6793 components: - type: Transform pos: 0.5,-145.5 parent: 2 - - uid: 15475 + - uid: 6794 components: - type: Transform pos: 0.5,-146.5 parent: 2 - - uid: 15476 + - uid: 6795 components: - type: Transform pos: 0.5,-147.5 parent: 2 - - uid: 15477 + - uid: 6796 components: - type: Transform pos: 0.5,-148.5 parent: 2 - - uid: 15478 + - uid: 6797 components: - type: Transform pos: 0.5,-149.5 parent: 2 - - uid: 15481 + - uid: 6798 components: - type: Transform pos: 0.5,-151.5 parent: 2 - - uid: 15482 + - uid: 6799 components: - type: Transform pos: 0.5,-152.5 parent: 2 - - uid: 15483 + - uid: 6800 components: - type: Transform pos: 0.5,-153.5 parent: 2 - - uid: 15484 + - uid: 6801 components: - type: Transform pos: 0.5,-154.5 parent: 2 - - uid: 15485 + - uid: 6802 components: - type: Transform pos: 0.5,-155.5 parent: 2 - - uid: 15486 + - uid: 6803 components: - type: Transform pos: 0.5,-156.5 parent: 2 - - uid: 15487 + - uid: 6804 components: - type: Transform pos: 0.5,-157.5 parent: 2 - - uid: 15488 + - uid: 6805 components: - type: Transform pos: 0.5,-158.5 parent: 2 - - uid: 15489 + - uid: 6806 components: - type: Transform pos: 0.5,-159.5 parent: 2 - - uid: 15490 + - uid: 6807 components: - type: Transform pos: 0.5,-160.5 parent: 2 - - uid: 15491 + - uid: 6808 components: - type: Transform pos: 0.5,-161.5 parent: 2 - - uid: 15496 + - uid: 6809 components: - type: Transform pos: 0.5,-163.5 parent: 2 - - uid: 15497 + - uid: 6810 components: - type: Transform pos: 0.5,-164.5 parent: 2 - - uid: 15498 + - uid: 6811 components: - type: Transform pos: 0.5,-165.5 parent: 2 - - uid: 15499 + - uid: 6812 components: - type: Transform pos: 0.5,-166.5 parent: 2 - - uid: 15500 + - uid: 6813 components: - type: Transform pos: 0.5,-167.5 parent: 2 - - uid: 15501 + - uid: 6814 components: - type: Transform pos: 0.5,-168.5 parent: 2 - - uid: 15502 + - uid: 6815 components: - type: Transform pos: 0.5,-169.5 parent: 2 - - uid: 15503 + - uid: 6816 components: - type: Transform pos: 0.5,-170.5 parent: 2 - - uid: 15504 + - uid: 6817 components: - type: Transform pos: 0.5,-171.5 parent: 2 - - uid: 15505 + - uid: 6818 components: - type: Transform pos: 0.5,-172.5 parent: 2 - - uid: 15506 + - uid: 6819 components: - type: Transform pos: 0.5,-173.5 parent: 2 - - uid: 15507 + - uid: 6820 components: - type: Transform pos: 0.5,-174.5 parent: 2 - - uid: 15508 + - uid: 6821 components: - type: Transform pos: 0.5,-175.5 parent: 2 - - uid: 15509 + - uid: 6822 components: - type: Transform pos: 0.5,-176.5 parent: 2 - - uid: 15510 + - uid: 6823 components: - type: Transform pos: 0.5,-177.5 parent: 2 - - uid: 15511 + - uid: 6824 components: - type: Transform pos: 0.5,-178.5 parent: 2 - - uid: 15514 + - uid: 6825 components: - type: Transform pos: 0.5,-180.5 parent: 2 - - uid: 15515 + - uid: 6826 components: - type: Transform pos: 0.5,-181.5 parent: 2 - - uid: 15516 + - uid: 6827 components: - type: Transform pos: 0.5,-182.5 parent: 2 - - uid: 15517 + - uid: 6828 components: - type: Transform pos: 0.5,-183.5 parent: 2 - - uid: 15518 + - uid: 6829 components: - type: Transform pos: 0.5,-184.5 parent: 2 - - uid: 15519 + - uid: 6830 components: - type: Transform pos: 0.5,-185.5 parent: 2 - - uid: 15520 + - uid: 6831 components: - type: Transform pos: 0.5,-186.5 parent: 2 - - uid: 15521 + - uid: 6832 components: - type: Transform pos: 0.5,-187.5 parent: 2 - - uid: 15522 + - uid: 6833 components: - type: Transform pos: 0.5,-188.5 parent: 2 - - uid: 15524 + - uid: 6834 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-189.5 parent: 2 - - uid: 15525 + - uid: 6835 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-189.5 parent: 2 - - uid: 15526 + - uid: 6836 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-189.5 parent: 2 - - uid: 15527 + - uid: 6837 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-189.5 parent: 2 - - uid: 15528 + - uid: 6838 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-189.5 parent: 2 - - uid: 15531 + - uid: 6839 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-190.5 parent: 2 - - uid: 15532 + - uid: 6840 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-191.5 parent: 2 - - uid: 15533 + - uid: 6841 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-192.5 parent: 2 - - uid: 15534 + - uid: 6842 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-193.5 parent: 2 - - uid: 15535 + - uid: 6843 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-194.5 parent: 2 - - uid: 15536 + - uid: 6844 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - - uid: 15537 + - uid: 6845 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-196.5 parent: 2 - - uid: 15538 + - uid: 6846 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-197.5 parent: 2 - - uid: 15539 + - uid: 6847 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-198.5 parent: 2 - - uid: 15540 + - uid: 6848 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-199.5 parent: 2 - - uid: 15541 + - uid: 6849 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-200.5 parent: 2 - - uid: 15542 + - uid: 6850 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-201.5 parent: 2 - - uid: 15543 + - uid: 6851 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-202.5 parent: 2 - - uid: 15544 + - uid: 6852 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-203.5 parent: 2 - - uid: 15545 + - uid: 6853 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-204.5 parent: 2 - - uid: 15546 + - uid: 6854 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-205.5 parent: 2 - - uid: 15548 + - uid: 6855 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-206.5 parent: 2 - - uid: 15549 + - uid: 6856 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-206.5 parent: 2 - - uid: 15552 + - uid: 6857 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-207.5 parent: 2 - - uid: 15553 + - uid: 6858 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-208.5 parent: 2 - - uid: 15554 + - uid: 6859 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-209.5 parent: 2 - - uid: 15555 + - uid: 6860 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-210.5 parent: 2 - - uid: 15556 + - uid: 6861 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-211.5 parent: 2 - - uid: 15557 + - uid: 6862 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-212.5 parent: 2 - - uid: 15558 + - uid: 6863 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-213.5 parent: 2 - - uid: 15559 + - uid: 6864 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-214.5 parent: 2 - - uid: 15560 + - uid: 6865 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-215.5 parent: 2 - - uid: 15561 + - uid: 6866 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-216.5 parent: 2 - - uid: 15562 + - uid: 6867 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-217.5 parent: 2 - - uid: 15566 + - uid: 6868 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-355.5 parent: 2 - - uid: 15567 + - uid: 6869 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-354.5 parent: 2 - - uid: 15568 + - uid: 6870 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-353.5 parent: 2 - - uid: 15569 + - uid: 6871 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-352.5 parent: 2 - - uid: 15570 + - uid: 6872 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-351.5 parent: 2 - - uid: 15571 + - uid: 6873 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-350.5 parent: 2 - - uid: 15572 + - uid: 6874 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-349.5 parent: 2 - - uid: 15573 + - uid: 6875 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-348.5 parent: 2 - - uid: 15574 + - uid: 6876 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-347.5 parent: 2 - - uid: 15575 + - uid: 6877 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-346.5 parent: 2 - - uid: 15576 + - uid: 6878 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-345.5 parent: 2 - - uid: 15577 + - uid: 6879 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-344.5 parent: 2 - - uid: 15578 + - uid: 6880 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-343.5 parent: 2 - - uid: 15579 + - uid: 6881 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-342.5 parent: 2 - - uid: 15580 + - uid: 6882 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-341.5 parent: 2 - - uid: 15581 + - uid: 6883 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-340.5 parent: 2 - - uid: 15582 + - uid: 6884 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-339.5 parent: 2 - - uid: 15583 + - uid: 6885 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-338.5 parent: 2 - - uid: 15589 + - uid: 6886 components: - type: Transform pos: 0.5,-336.5 parent: 2 - - uid: 15590 + - uid: 6887 components: - type: Transform pos: 0.5,-335.5 parent: 2 - - uid: 15591 + - uid: 6888 components: - type: Transform pos: 0.5,-334.5 parent: 2 - - uid: 15592 + - uid: 6889 components: - type: Transform pos: 0.5,-333.5 parent: 2 - - uid: 15593 + - uid: 6890 components: - type: Transform pos: 0.5,-332.5 parent: 2 - - uid: 15594 + - uid: 6891 components: - type: Transform pos: 0.5,-331.5 parent: 2 - - uid: 15595 + - uid: 6892 components: - type: Transform pos: 0.5,-330.5 parent: 2 - - uid: 15596 + - uid: 6893 components: - type: Transform pos: 0.5,-329.5 parent: 2 - - uid: 15597 + - uid: 6894 components: - type: Transform pos: 0.5,-328.5 parent: 2 - - uid: 15598 + - uid: 6895 components: - type: Transform pos: 0.5,-327.5 parent: 2 - - uid: 15599 + - uid: 6896 components: - type: Transform pos: 0.5,-326.5 parent: 2 - - uid: 15600 + - uid: 6897 components: - type: Transform pos: 0.5,-325.5 parent: 2 - - uid: 15601 + - uid: 6898 components: - type: Transform pos: 0.5,-324.5 parent: 2 - - uid: 15602 + - uid: 6899 components: - type: Transform pos: 0.5,-323.5 parent: 2 - - uid: 15603 + - uid: 6900 components: - type: Transform pos: 0.5,-322.5 parent: 2 - - uid: 15604 + - uid: 6901 components: - type: Transform pos: 0.5,-321.5 parent: 2 - - uid: 15605 + - uid: 6902 components: - type: Transform pos: 0.5,-320.5 parent: 2 - - uid: 15606 + - uid: 6903 components: - type: Transform pos: 0.5,-319.5 parent: 2 - - uid: 15611 + - uid: 6904 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-317.5 parent: 2 - - uid: 15612 + - uid: 6905 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-318.5 parent: 2 - - uid: 15613 + - uid: 6906 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-315.5 parent: 2 - - uid: 15614 + - uid: 6907 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-314.5 parent: 2 - - uid: 15615 + - uid: 6908 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-313.5 parent: 2 - - uid: 15616 + - uid: 6909 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-312.5 parent: 2 - - uid: 15617 + - uid: 6910 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-311.5 parent: 2 - - uid: 15618 + - uid: 6911 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-310.5 parent: 2 - - uid: 15619 + - uid: 6912 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-309.5 parent: 2 - - uid: 15621 + - uid: 6913 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-308.5 parent: 2 - - uid: 15622 + - uid: 6914 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-308.5 parent: 2 - - uid: 15623 + - uid: 6915 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-308.5 parent: 2 - - uid: 15624 + - uid: 6916 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-308.5 parent: 2 - - uid: 15625 + - uid: 6917 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-308.5 parent: 2 - - uid: 15626 + - uid: 6918 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-308.5 parent: 2 - - uid: 15627 + - uid: 6919 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-308.5 parent: 2 - - uid: 15628 + - uid: 6920 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-308.5 parent: 2 - - uid: 15629 + - uid: 6921 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-308.5 parent: 2 - - uid: 15631 + - uid: 6922 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-307.5 parent: 2 - - uid: 15632 + - uid: 6923 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-306.5 parent: 2 - - uid: 15633 + - uid: 6924 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-305.5 parent: 2 - - uid: 15634 + - uid: 6925 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-304.5 parent: 2 - - uid: 15635 + - uid: 6926 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-303.5 parent: 2 - - uid: 15636 + - uid: 6927 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-302.5 parent: 2 - - uid: 15637 + - uid: 6928 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-301.5 parent: 2 - - uid: 15638 + - uid: 6929 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-300.5 parent: 2 - - uid: 15639 + - uid: 6930 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-299.5 parent: 2 - - uid: 15640 + - uid: 6931 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-298.5 parent: 2 - - uid: 15641 + - uid: 6932 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-297.5 parent: 2 - - uid: 15642 + - uid: 6933 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-296.5 parent: 2 - - uid: 15643 + - uid: 6934 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-295.5 parent: 2 - - uid: 15644 + - uid: 6935 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-294.5 parent: 2 - - uid: 15645 + - uid: 6936 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-293.5 parent: 2 - - uid: 15646 + - uid: 6937 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-292.5 parent: 2 - - uid: 15647 + - uid: 6938 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-291.5 parent: 2 - - uid: 15648 + - uid: 6939 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-290.5 parent: 2 - - uid: 15649 + - uid: 6940 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-289.5 parent: 2 - - uid: 15650 + - uid: 6941 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-288.5 parent: 2 - - uid: 15651 + - uid: 6942 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-287.5 parent: 2 - - uid: 15659 + - uid: 6943 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-286.5 parent: 2 - - uid: 15660 + - uid: 6944 components: - type: Transform pos: -1.5,-285.5 parent: 2 - - uid: 15661 + - uid: 6945 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-284.5 parent: 2 - - uid: 15663 + - uid: 6946 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-283.5 parent: 2 - - uid: 15664 + - uid: 6947 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-282.5 parent: 2 - - uid: 15665 + - uid: 6948 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-281.5 parent: 2 - - uid: 15666 + - uid: 6949 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-280.5 parent: 2 - - uid: 15667 + - uid: 6950 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-279.5 parent: 2 - - uid: 15668 + - uid: 6951 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-278.5 parent: 2 - - uid: 15669 + - uid: 6952 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-277.5 parent: 2 - - uid: 15670 + - uid: 6953 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-276.5 parent: 2 - - uid: 15671 + - uid: 6954 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-275.5 parent: 2 - - uid: 15673 + - uid: 6955 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-274.5 parent: 2 - - uid: 15674 + - uid: 6956 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-274.5 parent: 2 - - uid: 15676 + - uid: 6957 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-273.5 parent: 2 - - uid: 15677 + - uid: 6958 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-272.5 parent: 2 - - uid: 15678 + - uid: 6959 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-271.5 parent: 2 - - uid: 15681 + - uid: 6960 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-269.5 parent: 2 - - uid: 15682 + - uid: 6961 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-268.5 parent: 2 - - uid: 15683 + - uid: 6962 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-267.5 parent: 2 - - uid: 15684 + - uid: 6963 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-266.5 parent: 2 - - uid: 15685 + - uid: 6964 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-265.5 parent: 2 - - uid: 15686 + - uid: 6965 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-264.5 parent: 2 - - uid: 15687 + - uid: 6966 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-263.5 parent: 2 - - uid: 15688 + - uid: 6967 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-262.5 parent: 2 - - uid: 15689 + - uid: 6968 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-261.5 parent: 2 - - uid: 15690 + - uid: 6969 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-260.5 parent: 2 - - uid: 15693 + - uid: 6970 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-258.5 parent: 2 - - uid: 15694 + - uid: 6971 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-257.5 parent: 2 - - uid: 15695 + - uid: 6972 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-256.5 parent: 2 - - uid: 15698 + - uid: 6973 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-254.5 parent: 2 - - uid: 15699 + - uid: 6974 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-253.5 parent: 2 - - uid: 15700 + - uid: 6975 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-252.5 parent: 2 - - uid: 15701 + - uid: 6976 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-251.5 parent: 2 - - uid: 15702 + - uid: 6977 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-250.5 parent: 2 - - uid: 15703 + - uid: 6978 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-249.5 parent: 2 - - uid: 15704 + - uid: 6979 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-248.5 parent: 2 - - uid: 15705 + - uid: 6980 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-247.5 parent: 2 - - uid: 15706 + - uid: 6981 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-246.5 parent: 2 - - uid: 15707 + - uid: 6982 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-245.5 parent: 2 - - uid: 15708 + - uid: 6983 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-244.5 parent: 2 - - uid: 15709 + - uid: 6984 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-243.5 parent: 2 - - uid: 15710 + - uid: 6985 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-242.5 parent: 2 - - uid: 15711 + - uid: 6986 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-241.5 parent: 2 - - uid: 15712 + - uid: 6987 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-240.5 parent: 2 - - uid: 15713 + - uid: 6988 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-239.5 parent: 2 - - uid: 15714 + - uid: 6989 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-238.5 parent: 2 - - uid: 15715 + - uid: 6990 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-237.5 parent: 2 - - uid: 15716 + - uid: 6991 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-236.5 parent: 2 - - uid: 15717 + - uid: 6992 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-235.5 parent: 2 - - uid: 15718 + - uid: 6993 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-234.5 parent: 2 - - uid: 15719 + - uid: 6994 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-233.5 parent: 2 - - uid: 15720 + - uid: 6995 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-232.5 parent: 2 - - uid: 15726 + - uid: 6996 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-231.5 parent: 2 - - uid: 15727 + - uid: 6997 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-230.5 parent: 2 - - uid: 15728 + - uid: 6998 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-229.5 parent: 2 - - uid: 15729 + - uid: 6999 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-228.5 parent: 2 - - uid: 15730 + - uid: 7000 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-227.5 parent: 2 - - uid: 15731 + - uid: 7001 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-226.5 parent: 2 - - uid: 15732 + - uid: 7002 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-225.5 parent: 2 - - uid: 15733 + - uid: 7003 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-224.5 parent: 2 - - uid: 15734 + - uid: 7004 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-223.5 parent: 2 - - uid: 15735 + - uid: 7005 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-222.5 parent: 2 - - uid: 15736 + - uid: 7006 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-221.5 parent: 2 - - uid: 15737 + - uid: 7007 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-220.5 parent: 2 - - uid: 15739 + - uid: 7008 components: - type: Transform pos: 0.5,-218.5 parent: 2 - - uid: 15740 + - uid: 7009 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-219.5 parent: 2 - - uid: 15741 + - uid: 7010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - - uid: 15742 + - uid: 7011 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-220.5 parent: 2 - - uid: 17002 + - uid: 7012 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-261.5 parent: 2 - - uid: 17007 + - uid: 7013 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-261.5 parent: 2 - - uid: 17008 + - uid: 7014 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-261.5 parent: 2 - - uid: 17009 + - uid: 7015 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-261.5 parent: 2 - - uid: 17010 + - uid: 7016 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-261.5 parent: 2 - - uid: 17011 + - uid: 7017 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-261.5 parent: 2 - - uid: 17012 + - uid: 7018 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-261.5 parent: 2 - - uid: 17013 + - uid: 7019 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-261.5 parent: 2 - - uid: 17014 + - uid: 7020 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-261.5 parent: 2 - - uid: 17015 + - uid: 7021 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-261.5 parent: 2 - - uid: 17016 + - uid: 7022 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-261.5 parent: 2 - - uid: 17017 + - uid: 7023 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-261.5 parent: 2 - - uid: 17019 + - uid: 7024 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-259.5 parent: 2 - - uid: 17020 + - uid: 7025 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-259.5 parent: 2 - - uid: 17021 + - uid: 7026 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-259.5 parent: 2 - - uid: 17022 + - uid: 7027 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-259.5 parent: 2 - - uid: 17023 + - uid: 7028 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-259.5 parent: 2 - - uid: 17024 + - uid: 7029 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-259.5 parent: 2 - - uid: 17025 + - uid: 7030 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-259.5 parent: 2 - - uid: 17026 + - uid: 7031 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-259.5 parent: 2 - - uid: 17027 + - uid: 7032 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-259.5 parent: 2 - - uid: 17028 + - uid: 7033 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-259.5 parent: 2 - - uid: 17029 + - uid: 7034 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-259.5 parent: 2 - - uid: 17030 + - uid: 7035 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-259.5 parent: 2 - - uid: 17031 + - uid: 7036 components: - type: Transform rot: 1.5707963267948966 rad @@ -45182,7 +44847,7 @@ entities: parent: 2 - proto: DisposalRouter entities: - - uid: 6797 + - uid: 7037 components: - type: Transform rot: 3.141592653589793 rad @@ -45191,7 +44856,7 @@ entities: - type: DisposalRouter tags: - Engineering - - uid: 9846 + - uid: 7038 components: - type: Transform pos: -0.5,-261.5 @@ -45199,7 +44864,7 @@ entities: - type: DisposalRouter tags: - Atmos - - uid: 13503 + - uid: 7039 components: - type: Transform rot: 3.141592653589793 rad @@ -45208,7 +44873,7 @@ entities: - type: DisposalRouter tags: - Bridge - - uid: 13636 + - uid: 7040 components: - type: Transform rot: 3.141592653589793 rad @@ -45217,7 +44882,7 @@ entities: - type: DisposalRouter tags: - Kitchen - - uid: 13685 + - uid: 7041 components: - type: Transform rot: 3.141592653589793 rad @@ -45226,7 +44891,7 @@ entities: - type: DisposalRouter tags: - HoP Office - - uid: 13759 + - uid: 7042 components: - type: Transform pos: -0.5,-140.5 @@ -45234,13 +44899,13 @@ entities: - type: DisposalRouter tags: - Library - - uid: 13764 + - uid: 7043 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-149.5 parent: 2 - - uid: 13842 + - uid: 7044 components: - type: Transform rot: 3.141592653589793 rad @@ -45249,7 +44914,7 @@ entities: - type: DisposalRouter tags: - Medical - - uid: 14033 + - uid: 7045 components: - type: Transform pos: -0.5,-285.5 @@ -45257,7 +44922,7 @@ entities: - type: DisposalRouter tags: - Salvage - - uid: 14139 + - uid: 7046 components: - type: Transform pos: -0.5,-303.5 @@ -45265,7 +44930,7 @@ entities: - type: DisposalRouter tags: - Science - - uid: 14210 + - uid: 7047 components: - type: Transform pos: -0.5,-339.5 @@ -45275,7 +44940,7 @@ entities: - Brig - proto: DisposalRouterFlipped entities: - - uid: 13591 + - uid: 7048 components: - type: Transform rot: 3.141592653589793 rad @@ -45284,7 +44949,7 @@ entities: - type: DisposalRouter tags: - Bar - - uid: 14090 + - uid: 7049 components: - type: Transform rot: 3.141592653589793 rad @@ -45295,387 +44960,387 @@ entities: - Cargo - proto: DisposalTrunk entities: - - uid: 2378 + - uid: 7050 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-180.5 parent: 2 - - uid: 5417 + - uid: 7051 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-10.5 parent: 2 - - uid: 6714 + - uid: 7052 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-342.5 parent: 2 - - uid: 7831 + - uid: 7053 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-250.5 parent: 2 - - uid: 8225 + - uid: 7054 components: - type: Transform pos: 15.5,-85.5 parent: 2 - - uid: 8769 + - uid: 7055 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-137.5 parent: 2 - - uid: 8921 + - uid: 7056 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-308.5 parent: 2 - - uid: 11928 + - uid: 7057 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-261.5 parent: 2 - - uid: 13219 + - uid: 7058 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-61.5 parent: 2 - - uid: 13378 + - uid: 7059 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-190.5 parent: 2 - - uid: 13637 + - uid: 7060 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-91.5 parent: 2 - - uid: 13686 + - uid: 7061 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-119.5 parent: 2 - - uid: 13779 + - uid: 7062 components: - type: Transform pos: 4.5,-137.5 parent: 2 - - uid: 13785 + - uid: 7063 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-142.5 parent: 2 - - uid: 13837 + - uid: 7064 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-176.5 parent: 2 - - uid: 14106 + - uid: 7065 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-288.5 parent: 2 - - uid: 14142 + - uid: 7066 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-303.5 parent: 2 - - uid: 14568 + - uid: 7067 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-279.5 parent: 2 - - uid: 15307 + - uid: 7068 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 2 - - uid: 15335 + - uid: 7069 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-37.5 parent: 2 - - uid: 15362 + - uid: 7070 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-32.5 parent: 2 - - uid: 15364 + - uid: 7071 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 - - uid: 15365 + - uid: 7072 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - - uid: 15400 + - uid: 7073 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-84.5 parent: 2 - - uid: 15419 + - uid: 7074 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-97.5 parent: 2 - - uid: 15430 + - uid: 7075 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-108.5 parent: 2 - - uid: 15451 + - uid: 7076 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-126.5 parent: 2 - - uid: 15480 + - uid: 7077 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-150.5 parent: 2 - - uid: 15495 + - uid: 7078 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-162.5 parent: 2 - - uid: 15530 + - uid: 7079 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-189.5 parent: 2 - - uid: 15551 + - uid: 7080 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-207.5 parent: 2 - - uid: 15564 + - uid: 7081 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-356.5 parent: 2 - - uid: 15609 + - uid: 7082 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-316.5 parent: 2 - - uid: 15630 + - uid: 7083 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-308.5 parent: 2 - - uid: 15655 + - uid: 7084 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-284.5 parent: 2 - - uid: 15680 + - uid: 7085 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-270.5 parent: 2 - - uid: 15697 + - uid: 7086 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-255.5 parent: 2 - - uid: 15743 + - uid: 7087 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-221.5 parent: 2 - - uid: 15800 + - uid: 7088 components: - type: Transform pos: 2.5,-335.5 parent: 2 - - uid: 17034 + - uid: 7089 components: - type: Transform pos: -13.5,-258.5 parent: 2 - proto: DisposalUnit entities: - - uid: 197 + - uid: 7090 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 837 + - uid: 7091 components: - type: Transform pos: 4.5,-42.5 parent: 2 - - uid: 1421 + - uid: 7092 components: - type: Transform pos: 2.5,-69.5 parent: 2 - - uid: 1563 + - uid: 7093 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 1724 + - uid: 7094 components: - type: Transform pos: -2.5,-55.5 parent: 2 - - uid: 2374 + - uid: 7095 components: - type: Transform pos: 3.5,-180.5 parent: 2 - - uid: 2377 + - uid: 7096 components: - type: Transform pos: 1.5,-270.5 parent: 2 - - uid: 4199 + - uid: 7097 components: - type: Transform pos: 15.5,-137.5 parent: 2 - - uid: 6759 + - uid: 7098 components: - type: Transform pos: -13.5,-258.5 parent: 2 - - uid: 7759 + - uid: 7099 components: - type: Transform pos: -2.5,-126.5 parent: 2 - - uid: 7801 + - uid: 7100 components: - type: Transform pos: -8.5,-308.5 parent: 2 - - uid: 7906 + - uid: 7101 components: - type: Transform pos: 15.5,-85.5 parent: 2 - - uid: 8380 + - uid: 7102 components: - type: Transform pos: -7.5,-190.5 parent: 2 - - uid: 9050 + - uid: 7103 components: - type: Transform pos: 3.5,-207.5 parent: 2 - - uid: 11006 + - uid: 7104 components: - type: Transform pos: 2.5,-335.5 parent: 2 - - uid: 15333 + - uid: 7105 components: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 15334 + - uid: 7106 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 15395 + - uid: 7107 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 15396 + - uid: 7108 components: - type: Transform pos: 6.5,-97.5 parent: 2 - - uid: 15431 + - uid: 7109 components: - type: Transform pos: 1.5,-108.5 parent: 2 - - uid: 15463 + - uid: 7110 components: - type: Transform pos: -0.5,-150.5 parent: 2 - - uid: 15493 + - uid: 7111 components: - type: Transform pos: -0.5,-162.5 parent: 2 - - uid: 15529 + - uid: 7112 components: - type: Transform pos: 6.5,-189.5 parent: 2 - - uid: 15563 + - uid: 7113 components: - type: Transform pos: 1.5,-356.5 parent: 2 - - uid: 15607 + - uid: 7114 components: - type: Transform pos: 1.5,-316.5 parent: 2 - - uid: 15608 + - uid: 7115 components: - type: Transform pos: 10.5,-308.5 parent: 2 - - uid: 15652 + - uid: 7116 components: - type: Transform pos: 0.5,-284.5 parent: 2 - - uid: 15691 + - uid: 7117 components: - type: Transform pos: 1.5,-255.5 parent: 2 - proto: DisposalYJunction entities: - - uid: 15738 + - uid: 7118 components: - type: Transform rot: 1.5707963267948966 rad @@ -45683,81 +45348,81 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 1804 + - uid: 7119 components: - type: Transform pos: 0.5,-201.5 parent: 2 - - uid: 2235 + - uid: 7120 components: - type: Transform pos: 1.5,-117.5 parent: 2 - - uid: 2720 + - uid: 7121 components: - type: Transform pos: 5.5,-139.5 parent: 2 - - uid: 3034 + - uid: 7122 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 11968 + - uid: 7123 components: - type: Transform pos: -0.5,-363.5 parent: 2 - - uid: 12153 + - uid: 7124 components: - type: Transform pos: -1.5,-356.5 parent: 2 - - uid: 12156 + - uid: 7125 components: - type: Transform pos: -2.5,-305.5 parent: 2 - - uid: 12636 + - uid: 7126 components: - type: Transform pos: -8.5,-304.5 parent: 2 - - uid: 13397 + - uid: 7127 components: - type: Transform pos: -15.5,-265.5 parent: 2 - proto: DonkpocketBoxSpawner entities: - - uid: 5404 + - uid: 7128 components: - type: Transform pos: 7.5,-200.5 parent: 2 - - uid: 8553 + - uid: 7129 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 8558 + - uid: 7130 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 13399 + - uid: 7131 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-339.5 parent: 2 - - uid: 14564 + - uid: 7132 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-339.5 parent: 2 - - uid: 14601 + - uid: 7133 components: - type: Transform rot: 3.141592653589793 rad @@ -45765,140 +45430,140 @@ entities: parent: 2 - proto: DresserCaptainFilled entities: - - uid: 298 + - uid: 7134 components: - type: Transform pos: -0.5,-13.5 parent: 2 - proto: DresserChiefEngineerFilled entities: - - uid: 8443 + - uid: 7135 components: - type: Transform pos: 10.5,-254.5 parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 3775 + - uid: 7136 components: - type: Transform pos: -0.5,-201.5 parent: 2 - proto: DresserFilled entities: - - uid: 923 + - uid: 7137 components: - type: Transform pos: 3.5,-64.5 parent: 2 - - uid: 2368 + - uid: 7138 components: - type: Transform pos: -2.5,-138.5 parent: 2 - - uid: 2724 + - uid: 7139 components: - type: Transform pos: -5.5,-136.5 parent: 2 - proto: DresserHeadOfPersonnelFilled entities: - - uid: 2231 + - uid: 7140 components: - type: Transform pos: -1.5,-116.5 parent: 2 - proto: DresserHeadOfSecurityFilled entities: - - uid: 11097 + - uid: 7141 components: - type: Transform pos: -3.5,-344.5 parent: 2 - proto: DresserQuarterMasterFilled entities: - - uid: 9011 + - uid: 7142 components: - type: Transform pos: 4.5,-284.5 parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 8459 + - uid: 7143 components: - type: Transform pos: -9.5,-303.5 parent: 2 - proto: DresserWardenFilled entities: - - uid: 11385 + - uid: 7144 components: - type: Transform pos: 1.5,-368.5 parent: 2 - proto: DrinkAleBottleFull entities: - - uid: 3036 + - uid: 7145 components: - type: Transform pos: -0.47690427,-60.402824 parent: 2 - - uid: 3038 + - uid: 7146 components: - type: Transform pos: -0.25679237,-60.35632 parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 7891 + - uid: 7147 components: - type: Transform pos: 8.708858,-254.22014 parent: 2 - - uid: 8458 + - uid: 7148 components: - type: Transform pos: 8.616409,-254.0617 parent: 2 - proto: DrinkBeerGrowler entities: - - uid: 4800 + - uid: 7149 components: - type: Transform pos: 5.307968,-252.56429 parent: 2 - - uid: 6637 + - uid: 7150 components: - type: Transform pos: 5.6909623,-253.30362 parent: 2 - - uid: 8559 + - uid: 7151 components: - type: Transform pos: -3.847699,-286.55716 parent: 2 - - uid: 8560 + - uid: 7152 components: - type: Transform pos: -3.7202213,-286.6471 parent: 2 - proto: DrinkBlueCuracaoBottleFull entities: - - uid: 10993 + - uid: 7153 components: - type: Transform pos: -1.2898192,-65.33336 parent: 2 - proto: DrinkBottleOfNothingFull entities: - - uid: 2032 + - uid: 7154 components: - type: Transform pos: -8.723203,-122.26877 parent: 2 - proto: DrinkBottleVodka entities: - - uid: 4190 + - uid: 7155 components: - type: Transform rot: 1.5707963267948966 rad @@ -45906,587 +45571,587 @@ entities: parent: 2 - proto: DrinkBottleWhiskey entities: - - uid: 14924 + - uid: 7156 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.600952,-147.04173 parent: 2 - - uid: 14925 + - uid: 7157 components: - type: Transform pos: -6.690937,-147.61519 parent: 2 - - uid: 14927 + - uid: 7158 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.4547286,-144.36557 parent: 2 - - uid: 14928 + - uid: 7159 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4097366,-145.63618 parent: 2 - - uid: 14929 + - uid: 7160 components: - type: Transform pos: -6.679689,-145.77112 parent: 2 - proto: DrinkFlask entities: - - uid: 317 + - uid: 7161 components: - type: Transform pos: -0.34037054,-11.441932 parent: 2 - proto: DrinkGlass entities: - - uid: 4172 + - uid: 7162 components: - type: Transform pos: -1.003649,-60.552048 parent: 2 - - uid: 4173 + - uid: 7163 components: - type: Transform pos: -1.5407214,-60.51684 parent: 2 - - uid: 10802 + - uid: 7164 components: - type: Transform pos: -2.020939,-65.49077 parent: 2 - - uid: 10826 + - uid: 7165 components: - type: Transform pos: -1.6722503,-65.53575 parent: 2 - - uid: 10995 + - uid: 7166 components: - type: Transform pos: -1.7622352,-65.288376 parent: 2 - proto: DrinkGoldenCup entities: - - uid: 3749 + - uid: 7167 components: - type: Transform pos: -1.7968009,-1.2700026 parent: 2 - proto: DrinkGreenTeaGlass entities: - - uid: 12388 + - uid: 7168 components: - type: Transform pos: -4.4292135,-316.6871 parent: 2 - proto: DrinkHotCoffee entities: - - uid: 9521 + - uid: 7169 components: - type: Transform pos: 22.915377,-317.35895 parent: 2 - proto: DrinkIceCreamGlass entities: - - uid: 2989 + - uid: 7170 components: - type: Transform pos: 3.657866,-72.56517 parent: 2 - - uid: 14371 + - uid: 7171 components: - type: Transform pos: 14.69894,-63.384167 parent: 2 - - uid: 14381 + - uid: 7172 components: - type: Transform pos: 14.407273,-63.384167 parent: 2 - proto: DrinkIcedTeaGlass entities: - - uid: 12387 + - uid: 7173 components: - type: Transform pos: -4.534867,-316.51547 parent: 2 - proto: DrinkLongIslandIcedTeaGlass entities: - - uid: 14460 + - uid: 7174 components: - type: Transform pos: 17.602736,-78.352585 parent: 2 - proto: DrinkMopwataBottleRandom entities: - - uid: 1747 + - uid: 7175 components: - type: Transform pos: -5.7352834,-54.166782 parent: 2 - proto: DrinkMugDog entities: - - uid: 2234 + - uid: 7176 components: - type: Transform pos: 1.1724037,-117.232086 parent: 2 - - uid: 12838 + - uid: 7177 components: - type: Transform pos: -0.32982033,-365.28162 parent: 2 - proto: DrinkMugMetal entities: - - uid: 199 + - uid: 7178 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.952591,-12.591546 parent: 2 - - uid: 302 + - uid: 7179 components: - type: Transform pos: 5.957412,-12.479102 parent: 2 - - uid: 303 + - uid: 7180 components: - type: Transform pos: 5.8674273,-12.22423 parent: 2 - - uid: 304 + - uid: 7181 components: - type: Transform pos: 5.6124735,-12.531576 parent: 2 - proto: DrinkNothing entities: - - uid: 2033 + - uid: 7182 components: - type: Transform pos: -8.335806,-122.47121 parent: 2 - proto: DrinkShotGlass entities: - - uid: 442 + - uid: 7183 components: - type: Transform pos: -6.5079026,-63.4827 parent: 2 - - uid: 4192 + - uid: 7184 components: - type: Transform pos: -5.5391526,-63.4202 parent: 2 - - uid: 4193 + - uid: 7185 components: - type: Transform pos: -5.3672776,-62.342075 parent: 2 - proto: DrinkSodaWaterBottleFull entities: - - uid: 2787 + - uid: 7186 components: - type: Transform pos: 7.572414,-197.48143 parent: 2 - - uid: 7556 + - uid: 7187 components: - type: Transform pos: 7.766112,-197.4022 parent: 2 - proto: DrinkTeaJug entities: - - uid: 2213 + - uid: 7188 components: - type: Transform pos: -1.5308492,-120.70999 parent: 2 - - uid: 2270 + - uid: 7189 components: - type: Transform pos: -1.355068,-120.780304 parent: 2 - proto: DrinkTeapot entities: - - uid: 2267 + - uid: 7190 components: - type: Transform pos: -1.5341585,-120.30812 parent: 2 - proto: DrinkVodkaBottleFull entities: - - uid: 1486 + - uid: 7191 components: - type: Transform pos: 7.686127,-56.08689 parent: 2 - - uid: 4189 + - uid: 7192 components: - type: Transform pos: -6.1016526,-62.51395 parent: 2 - - uid: 11208 + - uid: 7193 components: - type: Transform pos: -3.0426478,-346.08514 parent: 2 - proto: DrinkVodkaGlass entities: - - uid: 11209 + - uid: 7194 components: - type: Transform pos: -3.2451503,-346.4724 parent: 2 - proto: DrinkWhiskeyBottleFull entities: - - uid: 14566 + - uid: 7195 components: - type: Transform pos: 14.124506,-63.392555 parent: 2 - - uid: 14919 + - uid: 7196 components: - type: Transform pos: -6.274761,-147.46901 parent: 2 - - uid: 14926 + - uid: 7197 components: - type: Transform pos: -6.2410164,-148.00874 parent: 2 - proto: DrinkWineBottleFull entities: - - uid: 64 + - uid: 7198 components: - type: Transform pos: 5.8253236,-7.014749 parent: 2 - - uid: 221 + - uid: 7199 components: - type: Transform pos: 5.4743247,-6.6932936 parent: 2 - proto: DrinkWineGlass entities: - - uid: 220 + - uid: 7200 components: - type: Transform pos: 4.979412,-6.412184 parent: 2 - - uid: 222 + - uid: 7201 components: - type: Transform pos: 4.0908213,-7.3229785 parent: 2 - proto: EggSpider entities: - - uid: 14780 + - uid: 7202 components: - type: Transform pos: 3.6699882,-35.680645 parent: 2 - proto: EmergencyLight entities: - - uid: 6795 + - uid: 7203 components: - type: Transform pos: 1.5,-216.5 parent: 2 - - uid: 7315 + - uid: 7204 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - - uid: 7815 + - uid: 7205 components: - type: Transform pos: 1.5,-243.5 parent: 2 - - uid: 8975 + - uid: 7206 components: - type: Transform pos: 1.5,-156.5 parent: 2 - - uid: 10705 + - uid: 7207 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-69.5 parent: 2 - - uid: 15207 + - uid: 7208 components: - type: Transform pos: 1.5,-237.5 parent: 2 - - uid: 15208 + - uid: 7209 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 - - uid: 15209 + - uid: 7210 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 2 - - uid: 15210 + - uid: 7211 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 15211 + - uid: 7212 components: - type: Transform pos: 1.5,-21.5 parent: 2 - - uid: 15212 + - uid: 7213 components: - type: Transform pos: -1.5,-27.5 parent: 2 - - uid: 15213 + - uid: 7214 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-44.5 parent: 2 - - uid: 15214 + - uid: 7215 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 15215 + - uid: 7216 components: - type: Transform pos: -1.5,-57.5 parent: 2 - - uid: 15217 + - uid: 7217 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 15218 + - uid: 7218 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-84.5 parent: 2 - - uid: 15219 + - uid: 7219 components: - type: Transform pos: 1.5,-102.5 parent: 2 - - uid: 15220 + - uid: 7220 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-92.5 parent: 2 - - uid: 15221 + - uid: 7221 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-114.5 parent: 2 - - uid: 15222 + - uid: 7222 components: - type: Transform pos: 2.5,-123.5 parent: 2 - - uid: 15223 + - uid: 7223 components: - type: Transform pos: 1.5,-129.5 parent: 2 - - uid: 15224 + - uid: 7224 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-142.5 parent: 2 - - uid: 15225 + - uid: 7225 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-151.5 parent: 2 - - uid: 15227 + - uid: 7226 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-166.5 parent: 2 - - uid: 15228 + - uid: 7227 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-177.5 parent: 2 - - uid: 15229 + - uid: 7228 components: - type: Transform pos: 1.5,-183.5 parent: 2 - - uid: 15230 + - uid: 7229 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-192.5 parent: 2 - - uid: 15231 + - uid: 7230 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-203.5 parent: 2 - - uid: 15232 + - uid: 7231 components: - type: Transform pos: 1.5,-210.5 parent: 2 - - uid: 15236 + - uid: 7232 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-259.5 parent: 2 - - uid: 15237 + - uid: 7233 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-253.5 parent: 2 - - uid: 15238 + - uid: 7234 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-250.5 parent: 2 - - uid: 15239 + - uid: 7235 components: - type: Transform pos: 1.5,-264.5 parent: 2 - - uid: 15240 + - uid: 7236 components: - type: Transform pos: 1.5,-291.5 parent: 2 - - uid: 15241 + - uid: 7237 components: - type: Transform pos: 6.5,-276.5 parent: 2 - - uid: 15243 + - uid: 7238 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-283.5 parent: 2 - - uid: 15244 + - uid: 7239 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-275.5 parent: 2 - - uid: 15245 + - uid: 7240 components: - type: Transform pos: 10.5,-306.5 parent: 2 - - uid: 15246 + - uid: 7241 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-318.5 parent: 2 - - uid: 15247 + - uid: 7242 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-298.5 parent: 2 - - uid: 15248 + - uid: 7243 components: - type: Transform pos: -2.5,-307.5 parent: 2 - - uid: 15249 + - uid: 7244 components: - type: Transform pos: 1.5,-323.5 parent: 2 - - uid: 15250 + - uid: 7245 components: - type: Transform pos: -0.5,-329.5 parent: 2 - - uid: 15251 + - uid: 7246 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-342.5 parent: 2 - - uid: 15252 + - uid: 7247 components: - type: Transform pos: 1.5,-356.5 parent: 2 - - uid: 15253 + - uid: 7248 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-366.5 parent: 2 - - uid: 15254 + - uid: 7249 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-366.5 parent: 2 - - uid: 15255 + - uid: 7250 components: - type: Transform pos: -1.5,-370.5 parent: 2 - - uid: 15256 + - uid: 7251 components: - type: Transform pos: 2.5,-370.5 parent: 2 - proto: EmergencyRollerBedSpawnFolded entities: - - uid: 5497 + - uid: 7252 components: - type: Transform pos: -4.5664425,-165.51636 parent: 2 - proto: Emitter entities: - - uid: 4991 + - uid: 7253 components: - type: Transform pos: 23.5,-253.5 parent: 2 - - uid: 6653 + - uid: 7254 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-255.5 parent: 2 - - uid: 8797 + - uid: 7255 components: - type: Transform pos: 31.5,-253.5 parent: 2 - - uid: 13034 + - uid: 7256 components: - type: Transform rot: 3.141592653589793 rad @@ -46494,288 +46159,288 @@ entities: parent: 2 - proto: EncryptionKeyCargo entities: - - uid: 1344 + - uid: 7258 components: - type: Transform - parent: 1343 + parent: 7257 - type: Physics canCollide: False - proto: EncryptionKeyCommand entities: - - uid: 3583 + - uid: 7260 components: - type: Transform - parent: 3149 + parent: 7259 - type: Physics canCollide: False - proto: EncryptionKeyCommon entities: - - uid: 1341 + - uid: 7262 components: - type: Transform - parent: 1333 + parent: 7261 - type: Physics canCollide: False - proto: EncryptionKeyEngineering entities: - - uid: 2910 + - uid: 7264 components: - type: Transform - parent: 1345 + parent: 7263 - type: Physics canCollide: False - proto: EncryptionKeyMedical entities: - - uid: 3033 + - uid: 7266 components: - type: Transform - parent: 3023 + parent: 7265 - type: Physics canCollide: False - proto: EncryptionKeyMedicalScience entities: - - uid: 9693 + - uid: 7267 components: - type: Transform pos: 21.672514,-299.37094 parent: 2 - proto: EncryptionKeyRobo entities: - - uid: 9691 + - uid: 7268 components: - type: Transform pos: 21.332075,-299.4883 parent: 2 - proto: EncryptionKeyScience entities: - - uid: 2912 + - uid: 7270 components: - type: Transform - parent: 2911 + parent: 7269 - type: Physics canCollide: False - proto: EncryptionKeySecurity entities: - - uid: 3071 + - uid: 7272 components: - type: Transform - parent: 3054 + parent: 7271 - type: Physics canCollide: False - proto: EncryptionKeyService entities: - - uid: 1285 + - uid: 7274 components: - type: Transform - parent: 1192 + parent: 7273 - type: Physics canCollide: False - proto: ExosuitFabricator entities: - - uid: 9968 + - uid: 7275 components: - type: Transform pos: 7.5,-311.5 parent: 2 - proto: ExtendedEmergencyNitrogenTankFilled entities: - - uid: 558 + - uid: 7276 components: - type: Transform pos: -6.4656725,-2.5658867 parent: 2 - - uid: 14754 + - uid: 7277 components: - type: Transform pos: -3.619395,-18.40879 parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 53 + - uid: 7278 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 2 - - uid: 918 + - uid: 7279 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 2 - - uid: 2703 + - uid: 7280 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-80.5 parent: 2 - - uid: 2868 + - uid: 7281 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-108.5 parent: 2 - - uid: 2869 + - uid: 7282 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-140.5 parent: 2 - - uid: 2870 + - uid: 7283 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-65.5 parent: 2 - - uid: 2871 + - uid: 7284 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-39.5 parent: 2 - - uid: 2890 + - uid: 7285 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-117.5 parent: 2 - - uid: 2891 + - uid: 7286 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-96.5 parent: 2 - - uid: 4004 + - uid: 7287 components: - type: Transform pos: 3.5,-204.5 parent: 2 - - uid: 4177 + - uid: 7288 components: - type: Transform pos: 1.5,-242.5 parent: 2 - - uid: 5468 + - uid: 7289 components: - type: Transform pos: -1.5,-228.5 parent: 2 - - uid: 8598 + - uid: 7290 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 8911 + - uid: 7291 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-311.5 parent: 2 - - uid: 8977 + - uid: 7292 components: - type: Transform pos: -1.5,-319.5 parent: 2 - - uid: 8978 + - uid: 7293 components: - type: Transform pos: -6.5,-281.5 parent: 2 - - uid: 9397 + - uid: 7294 components: - type: Transform pos: -0.5,-111.5 parent: 2 - - uid: 12187 + - uid: 7295 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-335.5 parent: 2 - - uid: 12250 + - uid: 7296 components: - type: Transform pos: -4.5,-276.5 parent: 2 - - uid: 12320 + - uid: 7297 components: - type: Transform pos: 3.5,-356.5 parent: 2 - - uid: 12334 + - uid: 7298 components: - type: Transform pos: 2.5,-226.5 parent: 2 - - uid: 12335 + - uid: 7299 components: - type: Transform pos: 4.5,-199.5 parent: 2 - - uid: 12336 + - uid: 7300 components: - type: Transform pos: -0.5,-171.5 parent: 2 - proto: FaxMachineBase entities: - - uid: 60 + - uid: 7301 components: - type: Transform pos: -0.5,2.5 parent: 2 - type: FaxMachine name: Bridge - - uid: 2697 + - uid: 7302 components: - type: Transform pos: -5.5,-141.5 parent: 2 - type: FaxMachine name: Library - - uid: 7202 + - uid: 7303 components: - type: Transform pos: 1.5,-201.5 parent: 2 - type: FaxMachine name: CMO Office - - uid: 8691 + - uid: 7304 components: - type: Transform pos: 10.5,-254.5 parent: 2 - type: FaxMachine name: Chief Engineer - - uid: 9164 + - uid: 7305 components: - type: Transform pos: 4.5,-284.5 parent: 2 - type: FaxMachine name: Quartermaster - - uid: 9209 + - uid: 7306 components: - type: Transform pos: -1.5,-116.5 parent: 2 - type: FaxMachine name: Head of Personnel - - uid: 10166 + - uid: 7307 components: - type: Transform pos: -9.5,-303.5 parent: 2 - type: FaxMachine name: Research Director - - uid: 11094 + - uid: 7308 components: - type: Transform pos: 6.5,-331.5 parent: 2 - type: FaxMachine name: Lawyer - - uid: 11141 + - uid: 7309 components: - type: Transform pos: -2.5,-346.5 @@ -46784,26 +46449,26 @@ entities: name: Head of Security - proto: FaxMachineCaptain entities: - - uid: 300 + - uid: 7310 components: - type: Transform pos: -1.5,-13.5 parent: 2 - proto: filingCabinetDrawerRandom entities: - - uid: 3894 + - uid: 7311 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 12869 + - uid: 7312 components: - type: Transform pos: 1.5,-364.5 parent: 2 - proto: FireAxeCabinetFilled entities: - - uid: 107 + - uid: 7313 components: - type: Transform rot: 3.141592653589793 rad @@ -46811,25 +46476,25 @@ entities: parent: 2 - proto: Firelock entities: - - uid: 17000 + - uid: 7314 components: - type: Transform pos: -3.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 + - 67 - proto: FirelockEdge entities: - - uid: 610 + - uid: 7315 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 637 + - 15 + - uid: 7316 components: - type: Transform rot: 3.141592653589793 rad @@ -46837,8 +46502,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 638 + - 14 + - uid: 7317 components: - type: Transform rot: 3.141592653589793 rad @@ -46846,16 +46511,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13109 - - uid: 639 + - 14 + - uid: 7318 components: - type: Transform pos: -0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - uid: 1725 + - 15 + - uid: 7319 components: - type: Transform rot: 1.5707963267948966 rad @@ -46863,8 +46528,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 1726 + - 23 + - uid: 7320 components: - type: Transform rot: -1.5707963267948966 rad @@ -46872,44 +46537,44 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 8242 + - 24 + - uid: 7321 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-150.5 parent: 2 - - uid: 8255 + - uid: 7322 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-162.5 parent: 2 - - uid: 8256 + - uid: 7323 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-162.5 parent: 2 - - uid: 8353 + - uid: 7324 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-150.5 parent: 2 - - uid: 8354 + - uid: 7325 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-141.5 parent: 2 - - uid: 8355 + - uid: 7326 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-141.5 parent: 2 - - uid: 9085 + - uid: 7327 components: - type: Transform rot: -1.5707963267948966 rad @@ -46917,9 +46582,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15280 - - uid: 9425 + - 67 + - 69 + - uid: 7328 components: - type: Transform rot: -1.5707963267948966 rad @@ -46927,8 +46592,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 9426 + - 61 + - uid: 7329 components: - type: Transform rot: -1.5707963267948966 rad @@ -46936,8 +46601,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 10870 + - 61 + - uid: 7330 components: - type: Transform rot: -1.5707963267948966 rad @@ -46945,8 +46610,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - uid: 12324 + - 61 + - uid: 7331 components: - type: Transform rot: -1.5707963267948966 rad @@ -46954,9 +46619,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15280 - - uid: 13111 + - 67 + - 69 + - uid: 7332 components: - type: Transform rot: -1.5707963267948966 rad @@ -46964,9 +46629,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13112 + - 16 + - 18 + - uid: 7333 components: - type: Transform rot: -1.5707963267948966 rad @@ -46974,9 +46639,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13113 + - 16 + - 18 + - uid: 7334 components: - type: Transform rot: -1.5707963267948966 rad @@ -46984,9 +46649,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13114 + - 16 + - 18 + - uid: 7335 components: - type: Transform rot: -1.5707963267948966 rad @@ -46994,9 +46659,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13117 - - uid: 13127 + - 16 + - 18 + - uid: 7336 components: - type: Transform rot: 1.5707963267948966 rad @@ -47004,9 +46669,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13128 + - 20 + - 23 + - uid: 7337 components: - type: Transform rot: 1.5707963267948966 rad @@ -47014,9 +46679,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13129 + - 20 + - 23 + - uid: 7338 components: - type: Transform rot: 1.5707963267948966 rad @@ -47024,9 +46689,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13150 - - uid: 13155 + - 20 + - 23 + - uid: 7339 components: - type: Transform rot: 1.5707963267948966 rad @@ -47034,8 +46699,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13156 + - 26 + - uid: 7340 components: - type: Transform rot: 1.5707963267948966 rad @@ -47043,8 +46708,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13157 + - 26 + - uid: 7341 components: - type: Transform rot: 1.5707963267948966 rad @@ -47052,8 +46717,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13192 + - 26 + - uid: 7342 components: - type: Transform rot: -1.5707963267948966 rad @@ -47061,9 +46726,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13193 + - 38 + - 41 + - uid: 7343 components: - type: Transform rot: -1.5707963267948966 rad @@ -47071,9 +46736,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13194 + - 38 + - 41 + - uid: 7344 components: - type: Transform rot: -1.5707963267948966 rad @@ -47081,27 +46746,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - 13218 - - uid: 13201 + - 38 + - 41 + - uid: 7345 components: - type: Transform pos: 5.5,-170.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13202 + - 7 + - 41 + - uid: 7346 components: - type: Transform pos: 4.5,-170.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13311 + - 7 + - 41 + - uid: 7347 components: - type: Transform rot: -1.5707963267948966 rad @@ -47109,9 +46774,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13312 + - 50 + - 51 + - uid: 7348 components: - type: Transform rot: -1.5707963267948966 rad @@ -47119,9 +46784,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13355 + - 50 + - 51 + - uid: 7349 components: - type: Transform rot: 1.5707963267948966 rad @@ -47129,9 +46794,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 13356 + - 55 + - 59 + - uid: 7350 components: - type: Transform rot: 1.5707963267948966 rad @@ -47139,9 +46804,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 13357 + - 55 + - 59 + - uid: 7351 components: - type: Transform rot: 1.5707963267948966 rad @@ -47149,9 +46814,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 13382 - - uid: 15285 + - 55 + - 59 + - uid: 7352 components: - type: Transform rot: -1.5707963267948966 rad @@ -47159,8 +46824,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15286 + - 70 + - uid: 7353 components: - type: Transform rot: -1.5707963267948966 rad @@ -47168,8 +46833,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 15287 + - 70 + - uid: 7354 components: - type: Transform rot: -1.5707963267948966 rad @@ -47177,8 +46842,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 16682 + - 70 + - uid: 7355 components: - type: Transform rot: 1.5707963267948966 rad @@ -47186,15 +46851,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - proto: FirelockGlass entities: - - uid: 113 + - uid: 7356 components: - type: Transform pos: 0.5,-361.5 parent: 2 - - uid: 146 + - uid: 7357 components: - type: Transform rot: 3.141592653589793 rad @@ -47202,9 +46867,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - 13105 - - uid: 387 + - 12 + - 13 + - uid: 7358 components: - type: Transform rot: 3.141592653589793 rad @@ -47212,14 +46877,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 389 + - 12 + - uid: 7359 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-12.5 parent: 2 - - uid: 390 + - uid: 7360 components: - type: Transform rot: 3.141592653589793 rad @@ -47227,8 +46892,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - uid: 391 + - 12 + - uid: 7361 components: - type: Transform rot: 3.141592653589793 rad @@ -47236,15 +46901,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 - - 12935 - - uid: 392 + - 12 + - 11 + - uid: 7362 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 2 - - uid: 393 + - uid: 7363 components: - type: Transform rot: 3.141592653589793 rad @@ -47252,8 +46917,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12935 - - uid: 396 + - 11 + - uid: 7364 components: - type: Transform rot: 3.141592653589793 rad @@ -47261,51 +46926,51 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 - - uid: 621 + - 13 + - uid: 7365 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-40.5 parent: 2 - - uid: 623 + - uid: 7366 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-35.5 parent: 2 - - uid: 707 + - uid: 7367 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-34.5 parent: 2 - - uid: 1372 + - uid: 7368 components: - type: Transform pos: -4.5,-69.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - 13124 - - uid: 1408 + - 16 + - 19 + - uid: 7369 components: - type: Transform pos: 3.5,-57.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 1427 + - 16 + - uid: 7370 components: - type: Transform pos: 3.5,-68.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13115 - - uid: 1429 + - 16 + - uid: 7371 components: - type: Transform rot: -1.5707963267948966 rad @@ -47313,16 +46978,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 1431 + - 18 + - uid: 7372 components: - type: Transform pos: 5.5,-63.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13117 - - uid: 1498 + - 18 + - uid: 7373 components: - type: Transform rot: 3.141592653589793 rad @@ -47330,8 +46995,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 1544 + - 38 + - uid: 7374 components: - type: Transform rot: -1.5707963267948966 rad @@ -47339,8 +47004,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - uid: 1701 + - 22 + - uid: 7375 components: - type: Transform rot: -1.5707963267948966 rad @@ -47348,9 +47013,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - 13150 - - uid: 1702 + - 21 + - 23 + - uid: 7376 components: - type: Transform rot: -1.5707963267948966 rad @@ -47358,14 +47023,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 - - uid: 1705 + - 21 + - uid: 7377 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-85.5 parent: 2 - - uid: 1715 + - uid: 7378 components: - type: Transform rot: 1.5707963267948966 rad @@ -47373,8 +47038,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 - - uid: 1723 + - 23 + - uid: 7379 components: - type: Transform rot: 1.5707963267948966 rad @@ -47382,8 +47047,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 - - uid: 2256 + - 24 + - uid: 7380 components: - type: Transform rot: 3.141592653589793 rad @@ -47391,8 +47056,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2405 + - 29 + - uid: 7381 components: - type: Transform rot: 3.141592653589793 rad @@ -47400,8 +47065,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2406 + - 29 + - uid: 7382 components: - type: Transform rot: 3.141592653589793 rad @@ -47409,8 +47074,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 - - uid: 2407 + - 29 + - uid: 7383 components: - type: Transform rot: 3.141592653589793 rad @@ -47418,8 +47083,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2408 + - 26 + - uid: 7384 components: - type: Transform rot: 3.141592653589793 rad @@ -47427,8 +47092,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2409 + - 26 + - uid: 7385 components: - type: Transform rot: 3.141592653589793 rad @@ -47436,8 +47101,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 2410 + - 26 + - uid: 7386 components: - type: Transform rot: 3.141592653589793 rad @@ -47445,9 +47110,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - 13168 - - uid: 2411 + - 27 + - 29 + - uid: 7387 components: - type: Transform rot: 3.141592653589793 rad @@ -47455,8 +47120,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 2412 + - 30 + - uid: 7388 components: - type: Transform rot: 3.141592653589793 rad @@ -47464,217 +47129,217 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 - - uid: 2826 + - 30 + - uid: 7389 components: - type: Transform pos: -1.5,-151.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13189 - - uid: 2827 + - 32 + - 37 + - uid: 7390 components: - type: Transform pos: 2.5,-152.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - uid: 2828 + - 32 + - uid: 7391 components: - type: Transform pos: 5.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2829 + - 32 + - 33 + - uid: 7392 components: - type: Transform pos: 4.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2830 + - 32 + - 33 + - uid: 7393 components: - type: Transform pos: 3.5,-147.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - 13180 - - uid: 2831 + - 32 + - 33 + - uid: 7394 components: - type: Transform pos: 4.5,-140.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13180 - - 13182 - - uid: 2832 + - 33 + - 34 + - uid: 7395 components: - type: Transform pos: 7.5,-138.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13182 - - uid: 2833 + - 34 + - uid: 7396 components: - type: Transform pos: 2.5,-135.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - uid: 2834 + - 31 + - uid: 7397 components: - type: Transform pos: -1.5,-139.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2835 + - 31 + - 35 + - uid: 7398 components: - type: Transform pos: -1.5,-140.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2836 + - 31 + - 35 + - uid: 7399 components: - type: Transform pos: -1.5,-141.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13185 - - uid: 2837 + - 31 + - 35 + - uid: 7400 components: - type: Transform pos: -4.5,-137.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13185 - - 13187 - - uid: 4359 + - 35 + - 36 + - uid: 7401 components: - type: Transform pos: -3.5,-201.5 parent: 2 - - uid: 5128 + - uid: 7402 components: - type: Transform pos: 4.5,-197.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13247 - - uid: 5129 + - 43 + - 46 + - uid: 7403 components: - type: Transform pos: 4.5,-198.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13247 - - uid: 5130 + - 43 + - 46 + - uid: 7404 components: - type: Transform pos: -1.5,-198.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - 13251 - - uid: 5131 + - 46 + - 48 + - uid: 7405 components: - type: Transform pos: -2.5,-199.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13251 - - 13252 - - uid: 5133 + - 48 + - 49 + - uid: 7406 components: - type: Transform pos: -3.5,-205.5 parent: 2 - - uid: 5134 + - uid: 7407 components: - type: Transform pos: 0.5,-191.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 13249 - - uid: 5135 + - 44 + - 47 + - uid: 7408 components: - type: Transform pos: 2.5,-195.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13247 - - 13249 - - uid: 6726 + - 46 + - 47 + - uid: 7409 components: - type: Transform pos: 2.5,-260.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 6855 + - 70 + - uid: 7410 components: - type: Transform pos: 18.5,-244.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 6856 + - 71 + - uid: 7411 components: - type: Transform pos: 14.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 6857 + - 71 + - uid: 7412 components: - type: Transform pos: 9.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 6858 + - 69 + - uid: 7413 components: - type: Transform pos: 9.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 7798 + - 69 + - uid: 7414 components: - type: Transform rot: -1.5707963267948966 rad @@ -47682,8 +47347,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7799 + - 8 + - uid: 7415 components: - type: Transform rot: -1.5707963267948966 rad @@ -47691,8 +47356,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7800 + - 8 + - 57 + - uid: 7416 components: - type: Transform rot: -1.5707963267948966 rad @@ -47700,24 +47366,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - uid: 7820 + - 8 + - 57 + - uid: 7417 components: - type: Transform pos: -1.5,-260.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 - - uid: 7821 + - 70 + - uid: 7418 components: - type: Transform pos: 14.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 7879 + - 71 + - uid: 7419 components: - type: Transform rot: 3.141592653589793 rad @@ -47725,9 +47392,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 7885 + - 67 + - 68 + - uid: 7420 components: - type: Transform rot: 3.141592653589793 rad @@ -47735,35 +47402,35 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 - - 15280 - - uid: 8009 + - 68 + - 69 + - uid: 7421 components: - type: Transform pos: -1.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - uid: 8012 + - 67 + - uid: 7422 components: - type: Transform pos: 0.5,-252.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15282 - - uid: 8037 + - 67 + - 70 + - uid: 7423 components: - type: Transform pos: 2.5,-256.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - 15282 - - uid: 8213 + - 69 + - 70 + - uid: 7424 components: - type: Transform rot: 3.141592653589793 rad @@ -47771,9 +47438,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 8483 + - 67 + - 68 + - uid: 7425 components: - type: Transform rot: 3.141592653589793 rad @@ -47781,27 +47448,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15279 - - uid: 8852 + - 67 + - 68 + - uid: 7426 components: - type: Transform pos: -0.5,-189.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 14727 - - uid: 9827 + - 44 + - 66 + - uid: 7427 components: - type: Transform pos: -0.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - 14727 - - uid: 10538 + - 44 + - 66 + - uid: 7428 components: - type: Transform rot: 3.141592653589793 rad @@ -47809,8 +47476,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 10757 + - 54 + - uid: 7429 components: - type: Transform rot: -1.5707963267948966 rad @@ -47818,9 +47485,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 - - 13115 - - uid: 12306 + - 17 + - 16 + - uid: 7430 components: - type: Transform rot: -1.5707963267948966 rad @@ -47828,8 +47495,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 5925 - - uid: 12954 + - 6 + - uid: 7431 components: - type: Transform rot: 1.5707963267948966 rad @@ -47837,18 +47504,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13108 + - 20 + - 21 + - uid: 7432 components: - type: Transform pos: -0.5,-252.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15278 - - 15282 - - uid: 13132 + - 67 + - 70 + - uid: 7433 components: - type: Transform rot: 1.5707963267948966 rad @@ -47856,9 +47523,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13133 + - 20 + - 21 + - uid: 7434 components: - type: Transform rot: 1.5707963267948966 rad @@ -47866,9 +47533,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13147 - - uid: 13134 + - 20 + - 21 + - uid: 7435 components: - type: Transform rot: 1.5707963267948966 rad @@ -47876,9 +47543,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13135 + - 20 + - 22 + - uid: 7436 components: - type: Transform rot: 1.5707963267948966 rad @@ -47886,9 +47553,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13136 + - 20 + - 22 + - uid: 7437 components: - type: Transform rot: 1.5707963267948966 rad @@ -47896,9 +47563,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13146 - - 13148 - - uid: 13158 + - 20 + - 22 + - uid: 7438 components: - type: Transform rot: 1.5707963267948966 rad @@ -47906,9 +47573,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - 13168 - - uid: 13159 + - 26 + - 29 + - uid: 7439 components: - type: Transform rot: 1.5707963267948966 rad @@ -47916,9 +47583,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - 13168 - - uid: 13160 + - 26 + - 29 + - uid: 7440 components: - type: Transform rot: 1.5707963267948966 rad @@ -47926,8 +47593,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 - - uid: 13163 + - 26 + - uid: 7441 components: - type: Transform rot: 3.141592653589793 rad @@ -47935,9 +47602,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 - - 13168 - - uid: 13172 + - 27 + - 29 + - uid: 7442 components: - type: Transform rot: -1.5707963267948966 rad @@ -47945,9 +47612,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13178 - - uid: 13173 + - 31 + - 32 + - uid: 7443 components: - type: Transform rot: -1.5707963267948966 rad @@ -47955,9 +47622,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 - - 13178 - - uid: 13174 + - 31 + - 32 + - uid: 7444 components: - type: Transform rot: -1.5707963267948966 rad @@ -47965,8 +47632,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13178 - - uid: 13190 + - 32 + - uid: 7445 components: - type: Transform rot: 1.5707963267948966 rad @@ -47974,8 +47641,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13191 + - 39 + - uid: 7446 components: - type: Transform rot: 1.5707963267948966 rad @@ -47983,8 +47650,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13196 + - 39 + - uid: 7447 components: - type: Transform rot: -1.5707963267948966 rad @@ -47992,8 +47659,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13197 + - 40 + - uid: 7448 components: - type: Transform rot: -1.5707963267948966 rad @@ -48001,8 +47668,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13213 - - uid: 13199 + - 40 + - uid: 7449 components: - type: Transform rot: -1.5707963267948966 rad @@ -48010,8 +47677,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13211 - - uid: 13200 + - 39 + - uid: 7450 components: - type: Transform rot: -1.5707963267948966 rad @@ -48019,33 +47686,33 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8201 - - 13218 - - uid: 13203 + - 7 + - 41 + - uid: 7451 components: - type: Transform pos: 6.5,-164.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13218 - - uid: 13204 + - 41 + - uid: 7452 components: - type: Transform pos: 2.5,-162.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13205 + - 38 + - uid: 7453 components: - type: Transform pos: -1.5,-163.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 - - uid: 13223 + - 38 + - uid: 7454 components: - type: Transform rot: 3.141592653589793 rad @@ -48053,9 +47720,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13241 - - uid: 13224 + - 43 + - 44 + - uid: 7455 components: - type: Transform rot: 3.141592653589793 rad @@ -48063,9 +47730,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13241 - - uid: 13225 + - 43 + - 44 + - uid: 7456 components: - type: Transform rot: 3.141592653589793 rad @@ -48073,9 +47740,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13244 - - uid: 13226 + - 43 + - 45 + - uid: 7457 components: - type: Transform rot: 3.141592653589793 rad @@ -48083,42 +47750,42 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 - - 13244 - - uid: 13242 + - 43 + - 45 + - uid: 7458 components: - type: Transform pos: -1.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - 13252 - - uid: 13264 + - 45 + - 49 + - uid: 7459 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - - uid: 13265 + - uid: 7460 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - - uid: 13266 + - uid: 7461 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - - uid: 13267 + - uid: 7462 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - - uid: 13310 + - uid: 7463 components: - type: Transform rot: 3.141592653589793 rad @@ -48126,9 +47793,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 2277 - - uid: 13313 + - 50 + - 5 + - uid: 7464 components: - type: Transform rot: -1.5707963267948966 rad @@ -48136,9 +47803,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13322 - - uid: 13314 + - 50 + - 51 + - uid: 7465 components: - type: Transform rot: -1.5707963267948966 rad @@ -48146,9 +47813,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13333 - - uid: 13315 + - 50 + - 52 + - uid: 7466 components: - type: Transform rot: -1.5707963267948966 rad @@ -48156,35 +47823,35 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13317 - - 13333 - - uid: 13319 + - 50 + - 52 + - uid: 7467 components: - type: Transform pos: 4.5,-275.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - 13341 - - uid: 13320 + - 51 + - 54 + - uid: 7468 components: - type: Transform pos: 5.5,-275.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - 13341 - - uid: 13321 + - 51 + - 54 + - uid: 7469 components: - type: Transform pos: 5.5,-269.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 - - uid: 13324 + - 51 + - uid: 7470 components: - type: Transform rot: 1.5707963267948966 rad @@ -48192,25 +47859,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2277 - - uid: 13328 + - 5 + - uid: 7471 components: - type: Transform pos: 1.5,-285.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - uid: 13332 + - 52 + - uid: 7472 components: - type: Transform pos: -5.5,-282.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13333 - - 13335 - - uid: 13338 + - 52 + - 53 + - uid: 7473 components: - type: Transform rot: 3.141592653589793 rad @@ -48218,8 +47885,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13339 + - 54 + - uid: 7474 components: - type: Transform rot: 3.141592653589793 rad @@ -48227,8 +47894,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13340 + - 54 + - uid: 7475 components: - type: Transform rot: 3.141592653589793 rad @@ -48236,8 +47903,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13341 - - uid: 13342 + - 54 + - uid: 7476 components: - type: Transform rot: 3.141592653589793 rad @@ -48245,9 +47912,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13343 + - 56 + - 8 + - uid: 7477 components: - type: Transform rot: 3.141592653589793 rad @@ -48255,9 +47922,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13344 + - 56 + - 8 + - uid: 7478 components: - type: Transform rot: 3.141592653589793 rad @@ -48265,9 +47932,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 8432 - - uid: 13345 + - 56 + - 8 + - uid: 7479 components: - type: Transform rot: 3.141592653589793 rad @@ -48275,9 +47942,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13346 + - 55 + - 8 + - uid: 7480 components: - type: Transform rot: 3.141592653589793 rad @@ -48285,9 +47952,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13347 + - 55 + - 8 + - uid: 7481 components: - type: Transform rot: 3.141592653589793 rad @@ -48295,9 +47962,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - 8432 - - uid: 13353 + - 55 + - 8 + - uid: 7482 components: - type: Transform rot: 3.141592653589793 rad @@ -48305,8 +47972,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 13354 + - 55 + - uid: 7483 components: - type: Transform rot: 3.141592653589793 rad @@ -48314,8 +47981,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13358 - - uid: 13360 + - 55 + - uid: 7484 components: - type: Transform rot: -1.5707963267948966 rad @@ -48323,9 +47990,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - 13383 - - uid: 13361 + - 56 + - 60 + - uid: 7485 components: - type: Transform rot: -1.5707963267948966 rad @@ -48333,8 +48000,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13362 + - 56 + - uid: 7486 components: - type: Transform rot: -1.5707963267948966 rad @@ -48342,8 +48009,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13363 + - 56 + - uid: 7487 components: - type: Transform rot: -1.5707963267948966 rad @@ -48351,8 +48018,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13364 + - 56 + - uid: 7488 components: - type: Transform rot: -1.5707963267948966 rad @@ -48360,25 +48027,22 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 - - uid: 13367 + - 56 + - uid: 7489 components: - type: Transform pos: -1.5,-317.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13370 - - 13374 - - uid: 13368 + - 57 + - 58 + - uid: 7490 components: - type: Transform pos: 2.5,-319.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - uid: 13372 + - uid: 7491 components: - type: Transform rot: 1.5707963267948966 rad @@ -48386,9 +48050,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - 8432 - - uid: 13373 + - 58 + - 8 + - uid: 7492 components: - type: Transform rot: 1.5707963267948966 rad @@ -48396,8 +48060,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13374 - - uid: 13377 + - 58 + - uid: 7493 components: - type: Transform rot: 1.5707963267948966 rad @@ -48405,9 +48069,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 - - 13382 - - uid: 13381 + - 8 + - 59 + - uid: 7494 components: - type: Transform rot: 1.5707963267948966 rad @@ -48415,8 +48079,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 - - uid: 13386 + - 59 + - uid: 7495 components: - type: Transform rot: 3.141592653589793 rad @@ -48424,10 +48088,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - 5925 - - uid: 13387 + - 61 + - 10 + - 6 + - uid: 7496 components: - type: Transform rot: 3.141592653589793 rad @@ -48435,10 +48099,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - 5925 - - uid: 13390 + - 61 + - 10 + - 6 + - uid: 7497 components: - type: Transform rot: 1.5707963267948966 rad @@ -48446,28 +48110,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 - - uid: 13395 + - 61 + - 10 + - uid: 7498 components: - type: Transform pos: 0.5,-343.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 - - uid: 13396 + - 10 + - 6 + - uid: 7499 components: - type: Transform pos: -4.5,-343.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 13402 - - 5925 - - uid: 13412 + - 10 + - 62 + - 6 + - uid: 7500 components: - type: Transform rot: 3.141592653589793 rad @@ -48475,8 +48139,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13413 + - 63 + - uid: 7501 components: - type: Transform rot: 3.141592653589793 rad @@ -48484,8 +48148,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13414 + - 63 + - uid: 7502 components: - type: Transform rot: 3.141592653589793 rad @@ -48493,8 +48157,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13415 + - 63 + - uid: 7503 components: - type: Transform rot: 3.141592653589793 rad @@ -48502,8 +48166,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13416 + - 63 + - uid: 7504 components: - type: Transform rot: 3.141592653589793 rad @@ -48511,8 +48175,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13417 + - 63 + - uid: 7505 components: - type: Transform rot: 3.141592653589793 rad @@ -48520,8 +48184,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 13418 + - 63 + - uid: 7506 components: - type: Transform rot: 3.141592653589793 rad @@ -48529,9 +48193,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - 13426 - - uid: 13419 + - 63 + - 64 + - uid: 7507 components: - type: Transform rot: 3.141592653589793 rad @@ -48539,9 +48203,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - 13426 - - uid: 13420 + - 63 + - 64 + - uid: 7508 components: - type: Transform rot: 3.141592653589793 rad @@ -48549,8 +48213,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 - - uid: 14728 + - 63 + - uid: 7509 components: - type: Transform rot: 3.141592653589793 rad @@ -48558,24 +48222,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 - - uid: 15086 + - 66 + - uid: 7510 components: - type: Transform pos: 7.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 - - uid: 15087 + - 44 + - uid: 7511 components: - type: Transform pos: 7.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 - - uid: 15281 + - 45 + - uid: 7512 components: - type: Transform rot: -1.5707963267948966 rad @@ -48583,8 +48247,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15280 - - uid: 15290 + - 69 + - uid: 7513 components: - type: Transform rot: -1.5707963267948966 rad @@ -48592,8 +48256,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 15291 + - 71 + - uid: 7514 components: - type: Transform rot: -1.5707963267948966 rad @@ -48601,62 +48265,62 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - uid: 16995 + - 71 + - uid: 7515 components: - type: Transform pos: -12.5,-260.5 parent: 2 - - uid: 16996 + - uid: 7516 components: - type: Transform pos: -12.5,-248.5 parent: 2 - type: DeviceNetwork deviceLists: - - 16971 - - uid: 16997 + - 72 + - uid: 7517 components: - type: Transform pos: -12.5,-243.5 parent: 2 - proto: Fireplace entities: - - uid: 289 + - uid: 7518 components: - type: Transform pos: -3.5,-9.5 parent: 2 - - uid: 2838 + - uid: 7519 components: - type: Transform pos: -3.5,-138.5 parent: 2 - proto: Flash entities: - - uid: 409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.435971,-12.5018215 - parent: 2 - - uid: 12776 + - uid: 5606 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.435971,-12.5018215 + parent: 2 - proto: FlashlightLantern entities: - - uid: 3675 + - uid: 7521 components: - type: Transform pos: -2.459197,-144.20804 parent: 2 - proto: FloorDrain entities: - - uid: 2316 + - uid: 7522 components: - type: Transform rot: 1.5707963267948966 rad @@ -48664,7 +48328,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 2317 + - uid: 7523 components: - type: Transform rot: 1.5707963267948966 rad @@ -48672,7 +48336,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 2926 + - uid: 7524 components: - type: Transform rot: 3.141592653589793 rad @@ -48680,7 +48344,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 3090 + - uid: 7525 components: - type: Transform rot: 1.5707963267948966 rad @@ -48688,14 +48352,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 14375 + - uid: 7526 components: - type: Transform pos: 15.5,-61.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 16519 + - uid: 7527 components: - type: Transform pos: -1.5,-172.5 @@ -48704,7 +48368,7 @@ entities: fixtures: {} - proto: FloraTree01 entities: - - uid: 11690 + - uid: 7528 components: - type: Transform rot: 3.141592653589793 rad @@ -48712,79 +48376,79 @@ entities: parent: 2 - proto: FloraTree05 entities: - - uid: 15092 + - uid: 7529 components: - type: Transform pos: 11.2466135,-200.43379 parent: 2 - proto: FloraTree06 entities: - - uid: 15094 + - uid: 7530 components: - type: Transform pos: 9.820292,-197.55566 parent: 2 - proto: FloraTreeLarge01 entities: - - uid: 15088 + - uid: 7531 components: - type: Transform pos: 10.625899,-194.5191 parent: 2 - proto: FloraTreeStump entities: - - uid: 710 + - uid: 7532 components: - type: Transform pos: 4.1898217,-41.37392 parent: 2 - proto: FoodBanana entities: - - uid: 8946 + - uid: 5471 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10018 + - uid: 5472 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10091 + - uid: 5473 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodBoxDonkpocketTeriyaki entities: - - uid: 215 + - uid: 7533 components: - type: Transform pos: 6.6280804,-11.907726 parent: 2 - proto: FoodBurgerBacon entities: - - uid: 7583 + - uid: 7534 components: - type: Transform pos: 7.422054,-197.01524 parent: 2 - proto: FoodBurgerRobot entities: - - uid: 9974 + - uid: 7535 components: - type: Transform pos: -1.5525827,-302.4798 parent: 2 - proto: FoodCarrot entities: - - uid: 2308 + - uid: 7536 components: - type: Transform rot: -1.5707963267948966 rad @@ -48792,7 +48456,7 @@ entities: parent: 2 - proto: FoodCartCold entities: - - uid: 12368 + - uid: 7537 components: - type: Transform rot: -1.5707963267948966 rad @@ -48800,7 +48464,7 @@ entities: parent: 2 - proto: FoodCartHot entities: - - uid: 2319 + - uid: 7538 components: - type: Transform rot: -1.5707963267948966 rad @@ -48808,114 +48472,114 @@ entities: parent: 2 - proto: FoodCondimentBottleEnzyme entities: - - uid: 26570 + - uid: 7539 components: - type: Transform pos: 1.0586631,-370.32172 parent: 2 - proto: FoodDonutCaramel entities: - - uid: 11522 + - uid: 7540 components: - type: Transform pos: -0.40804732,-345.55585 parent: 2 - proto: FoodDonutChaos entities: - - uid: 5382 + - uid: 7541 components: - type: Transform pos: -0.61935514,-345.2918 parent: 2 - proto: FoodEggBoiled entities: - - uid: 4194 + - uid: 7542 components: - type: Transform pos: -0.6405136,-11.597754 parent: 2 - proto: FoodEggplant entities: - - uid: 14357 + - uid: 7543 components: - type: Transform pos: 16.665325,-82.4353 parent: 2 - proto: FoodMealPotatoYaki entities: - - uid: 15037 + - uid: 7544 components: - type: Transform pos: -10.433084,-134.28047 parent: 2 - proto: FoodPieBananaCream entities: - - uid: 2006 - components: - - type: Transform - pos: -7.22454,-124.50731 - parent: 2 - - uid: 10014 + - uid: 5474 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 10781 + - uid: 5475 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 7545 + components: + - type: Transform + pos: -7.22454,-124.50731 + parent: 2 - proto: FoodPoppy entities: - - uid: 97 + - uid: 7546 components: - type: Transform pos: -1.3108504,-1.6374404 parent: 2 - - uid: 993 + - uid: 7547 components: - type: Transform rot: 3.141592653589793 rad pos: 3.308499,-40.737587 parent: 2 - - uid: 4106 + - uid: 7548 components: - type: Transform pos: -4.616196,-20.118092 parent: 2 - proto: FoodPotato entities: - - uid: 2306 + - uid: 7549 components: - type: Transform pos: 1.3938253,-87.1436 parent: 2 - - uid: 2307 + - uid: 7550 components: - type: Transform pos: 1.6579595,-87.28883 parent: 2 - proto: FoodSaladCitrus entities: - - uid: 14742 + - uid: 7551 components: - type: Transform pos: -6.285258,-307.37143 parent: 2 - proto: FoodSoupTomatoBlood entities: - - uid: 367 + - uid: 7552 components: - type: Transform pos: -3.4185836,2.6839163 parent: 2 - proto: ForkPlastic entities: - - uid: 9985 + - uid: 7553 components: - type: Transform rot: 3.141592653589793 rad @@ -48923,61 +48587,51 @@ entities: parent: 2 - proto: FuelDispenser entities: - - uid: 16898 + - uid: 7554 components: - type: Transform pos: -4.5,-306.5 parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 14639 + - uid: 7555 components: - type: Transform pos: -5.5,-259.5 parent: 2 - proto: GasFilter entities: - - uid: 8509 + - uid: 9218 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-170.5 parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 8512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-170.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - proto: GasFilterFlipped entities: - - uid: 6673 + - uid: 7558 components: - type: Transform pos: -17.5,-257.5 parent: 2 - - uid: 8816 + - uid: 7559 components: - type: Transform pos: -17.5,-253.5 parent: 2 - - uid: 8917 + - uid: 7560 components: - type: Transform pos: -17.5,-255.5 parent: 2 - - uid: 11901 + - uid: 7561 components: - type: Transform pos: -17.5,-251.5 parent: 2 - proto: GasMinerCarbonDioxide entities: - - uid: 13271 + - uid: 7562 components: - type: Transform rot: -1.5707963267948966 rad @@ -48985,21 +48639,21 @@ entities: parent: 2 - proto: GasMinerNitrogenStationLarge entities: - - uid: 7546 + - uid: 7563 components: - type: Transform pos: -20.5,-257.5 parent: 2 - proto: GasMinerOxygenStationLarge entities: - - uid: 8202 + - uid: 7564 components: - type: Transform pos: -20.5,-255.5 parent: 2 - proto: GasMixer entities: - - uid: 11211 + - uid: 7565 components: - type: Transform pos: 5.5,-356.5 @@ -49008,25 +48662,25 @@ entities: color: '#FFD800FF' - proto: GasOutletInjector entities: - - uid: 3760 + - uid: 7566 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-257.5 parent: 2 - - uid: 4021 + - uid: 7567 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-255.5 parent: 2 - - uid: 7237 + - uid: 7568 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-251.5 parent: 2 - - uid: 7924 + - uid: 7569 components: - type: Transform rot: 1.5707963267948966 rad @@ -49034,7 +48688,7 @@ entities: parent: 2 - proto: GasPassiveVent entities: - - uid: 545 + - uid: 7570 components: - type: Transform rot: -1.5707963267948966 rad @@ -49042,37 +48696,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 618 + - uid: 7571 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 938 + color: '#990000FF' + - uid: 7572 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1102 + color: '#990000FF' + - uid: 7573 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3114 + color: '#990000FF' + - uid: 7574 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-253.5 parent: 2 - - uid: 3256 + - uid: 7575 components: - type: Transform rot: 1.5707963267948966 rad @@ -49080,45 +48734,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3405 + - uid: 7576 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3500 + color: '#990000FF' + - uid: 7577 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3961 + color: '#990000FF' + - uid: 7578 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4049 + color: '#990000FF' + - uid: 7579 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-260.5 parent: 2 - - uid: 4154 + - uid: 7580 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5014 + color: '#990000FF' + - uid: 7581 components: - type: Transform rot: 1.5707963267948966 rad @@ -49126,15 +48780,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5026 + - uid: 7582 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5171 + color: '#990000FF' + - uid: 7583 components: - type: Transform rot: 1.5707963267948966 rad @@ -49142,7 +48796,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5175 + - uid: 7584 components: - type: Transform rot: 1.5707963267948966 rad @@ -49150,13 +48804,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5320 + - uid: 7585 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-249.5 parent: 2 - - uid: 5367 + - uid: 7586 components: - type: Transform rot: -1.5707963267948966 rad @@ -49164,50 +48818,50 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6796 + - uid: 7587 components: - type: Transform pos: -19.5,-257.5 parent: 2 - - uid: 8789 + - uid: 7588 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-251.5 parent: 2 - - uid: 10694 + - uid: 7589 components: - type: Transform pos: -7.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10928 + color: '#990000FF' + - uid: 7590 components: - type: Transform pos: 8.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11916 + color: '#990000FF' + - uid: 7591 components: - type: Transform pos: -19.5,-255.5 parent: 2 - - uid: 12016 + - uid: 7592 components: - type: Transform pos: -19.5,-260.5 parent: 2 - - uid: 12218 + - uid: 7593 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12389 + color: '#990000FF' + - uid: 7594 components: - type: Transform rot: 1.5707963267948966 rad @@ -49215,7 +48869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12405 + - uid: 7595 components: - type: Transform rot: 1.5707963267948966 rad @@ -49223,15 +48877,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12517 + - uid: 7596 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12907 + color: '#990000FF' + - uid: 7597 components: - type: Transform rot: -1.5707963267948966 rad @@ -49239,29 +48893,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13103 + - uid: 7598 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13104 + color: '#990000FF' + - uid: 7599 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14298 + color: '#990000FF' + - uid: 7600 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-263.5 parent: 2 - - uid: 14451 + - uid: 7601 components: - type: Transform rot: -1.5707963267948966 rad @@ -49271,443 +48925,410 @@ entities: color: '#FF0000FF' - proto: GasPipeBend entities: - - uid: 735 + - uid: 7602 components: - type: Transform pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 738 + color: '#990000FF' + - uid: 7603 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 853 + color: '#990000FF' + - uid: 7604 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 854 + color: '#0055CCFF' + - uid: 7605 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 869 + color: '#0055CCFF' + - uid: 7606 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 873 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 930 + color: '#0055CCFF' + - uid: 7607 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 981 + color: '#990000FF' + - uid: 7608 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1021 + color: '#0055CCFF' + - uid: 7609 components: - type: Transform pos: 3.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1107 + color: '#990000FF' + - uid: 7610 components: - type: Transform pos: -5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1149 + color: '#990000FF' + - uid: 7611 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1200 + color: '#990000FF' + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7613 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1202 + color: '#990000FF' + - uid: 7614 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1396 + color: '#990000FF' + - uid: 7615 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1670 + color: '#990000FF' + - uid: 7616 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1994 + color: '#0055CCFF' + - uid: 7617 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-170.5 - parent: 2 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2925 + color: '#990000FF' + - uid: 7619 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-243.5 parent: 2 - - uid: 2957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-170.5 - parent: 2 - - uid: 3361 + - uid: 7621 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3409 + color: '#0055CCFF' + - uid: 7622 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3450 + color: '#0055CCFF' + - uid: 7623 components: - type: Transform pos: 5.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3505 + color: '#0055CCFF' + - uid: 7624 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3506 + color: '#990000FF' + - uid: 7625 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3531 + color: '#990000FF' + - uid: 7626 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3562 + color: '#990000FF' + - uid: 7627 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3610 + color: '#990000FF' + - uid: 7628 components: - type: Transform pos: 6.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3636 + color: '#990000FF' + - uid: 7629 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3882 + color: '#990000FF' + - uid: 7630 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-17.5 parent: 2 - - uid: 3955 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7631 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4054 + color: '#990000FF' + - uid: 7632 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4113 + color: '#990000FF' + - uid: 7633 components: - type: Transform pos: -17.5,-249.5 parent: 2 - - uid: 4547 + - uid: 7634 components: - type: Transform pos: 4.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4984 + color: '#990000FF' + - uid: 7635 components: - type: Transform pos: 16.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5101 + color: '#990000FF' + - uid: 7636 components: - type: Transform - pos: -4.5,-197.5 + rot: 3.141592653589793 rad + pos: -2.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5311 + color: '#990000FF' + - uid: 7637 components: - type: Transform - pos: 5.5,-162.5 + pos: -4.5,-197.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5318 - components: - - type: Transform - pos: 5.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5345 + - uid: 7638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-172.5 + pos: 5.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5379 + color: '#990000FF' + - uid: 7639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-220.5 + pos: 5.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5381 + color: '#0055CCFF' + - uid: 7640 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-229.5 + pos: 4.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5502 + color: '#990000FF' + - uid: 7641 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-247.5 parent: 2 - - uid: 5959 + - uid: 7642 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-247.5 parent: 2 - - uid: 6069 + - uid: 7643 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-247.5 parent: 2 - - uid: 6630 + - uid: 7644 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-261.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6694 + color: '#0055CCFF' + - uid: 7645 components: - type: Transform pos: 17.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6888 + color: '#990000FF' + - uid: 7646 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-250.5 parent: 2 - - uid: 7197 + - uid: 7647 components: - type: Transform pos: -18.5,-243.5 parent: 2 - - uid: 7360 + - uid: 7648 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-258.5 parent: 2 - - uid: 7433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-249.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7485 + - uid: 7649 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7813 + color: '#0055CCFF' + - uid: 7650 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-256.5 parent: 2 - - uid: 7905 + - uid: 7651 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8047 + color: '#990000FF' + - uid: 7652 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8086 + color: '#990000FF' + - uid: 7653 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8090 + color: '#990000FF' + - uid: 7654 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8267 + color: '#990000FF' + - uid: 7655 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-261.5 parent: 2 - - uid: 8480 + - uid: 7656 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-247.5 parent: 2 - - uid: 9520 + - uid: 7657 components: - type: Transform pos: 5.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10079 + color: '#0055CCFF' + - uid: 7658 components: - type: Transform pos: 9.5,-114.5 parent: 2 - - uid: 11214 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7659 components: - type: Transform rot: 3.141592653589793 rad @@ -49715,101 +49336,101 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 11253 + - uid: 7660 components: - type: Transform pos: 7.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12062 + color: '#0055CCFF' + - uid: 7661 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12150 + color: '#990000FF' + - uid: 7662 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12244 + color: '#990000FF' + - uid: 7663 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12245 + color: '#990000FF' + - uid: 7664 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12383 + color: '#990000FF' + - uid: 7665 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12521 + color: '#0055CCFF' + - uid: 7666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-314.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7667 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12529 + color: '#990000FF' + - uid: 7668 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12565 + color: '#990000FF' + - uid: 7669 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12566 + color: '#0055CCFF' + - uid: 7670 components: - type: Transform pos: 8.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-298.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12623 + color: '#990000FF' + - uid: 7671 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12712 + color: '#990000FF' + - uid: 7672 components: - type: Transform rot: 3.141592653589793 rad @@ -49817,107 +49438,108 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 12807 + - uid: 7673 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12831 + color: '#990000FF' + - uid: 7674 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12842 + color: '#990000FF' + - uid: 7675 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12843 + color: '#0055CCFF' + - uid: 7676 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12844 + color: '#0055CCFF' + - uid: 7677 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12879 + color: '#0055CCFF' + - uid: 7678 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-360.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12981 + color: '#0055CCFF' + - uid: 7679 components: - type: Transform - pos: 1.5,-359.5 + rot: -1.5707963267948966 rad + pos: 7.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12982 + color: '#990000FF' + - uid: 7680 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-359.5 + pos: 1.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13035 + color: '#0055CCFF' + - uid: 7681 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13143 + color: '#990000FF' + - uid: 7682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14306 + color: '#0055CCFF' + - uid: 7683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7684 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-263.5 parent: 2 - - uid: 14423 + - uid: 7685 components: - type: Transform pos: 18.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14425 + - uid: 7686 components: - type: Transform rot: 3.141592653589793 rad @@ -49925,7 +49547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14437 + - uid: 7687 components: - type: Transform rot: 3.141592653589793 rad @@ -49933,7 +49555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14442 + - uid: 7688 components: - type: Transform rot: 3.141592653589793 rad @@ -49941,1069 +49563,1074 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14607 + - uid: 7689 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-252.5 parent: 2 - - uid: 14815 + - uid: 7690 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14816 + color: '#0055CCFF' + - uid: 7691 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14836 + color: '#0055CCFF' + - uid: 7692 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14864 + color: '#0055CCFF' + - uid: 7693 components: - type: Transform pos: -3.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14865 + color: '#0055CCFF' + - uid: 7694 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14895 + color: '#0055CCFF' + - uid: 7695 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15042 + color: '#0055CCFF' + - uid: 7696 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15101 + color: '#0055CCFF' + - uid: 7697 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15102 + color: '#0055CCFF' + - uid: 7698 components: - type: Transform pos: 5.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15111 + color: '#0055CCFF' + - uid: 7699 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15126 + color: '#0055CCFF' + - uid: 7700 components: - type: Transform pos: 5.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-273.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15200 + color: '#0055CCFF' + - uid: 7701 components: - type: Transform pos: 5.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16488 + color: '#0055CCFF' + - uid: 7702 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16489 + color: '#990000FF' + - uid: 7703 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16687 + color: '#990000FF' + - uid: 7704 components: - type: Transform pos: -3.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 8124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-124.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8138 + components: + - type: Transform + pos: -2.5,-169.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-170.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-170.5 + parent: 2 - proto: GasPipeFourway entities: - - uid: 615 + - uid: 7705 components: - type: Transform pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 846 + color: '#990000FF' + - uid: 7706 components: - type: Transform pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 860 + color: '#0055CCFF' + - uid: 7707 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1261 + color: '#0055CCFF' + - uid: 7708 components: - type: Transform pos: 0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1302 + color: '#0055CCFF' + - uid: 7709 components: - type: Transform pos: -0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1370 + color: '#990000FF' + - uid: 7710 components: - type: Transform pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3273 + color: '#0055CCFF' + - uid: 7711 components: - type: Transform pos: -3.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3335 + color: '#990000FF' + - uid: 7712 components: - type: Transform pos: 0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3350 + color: '#0055CCFF' + - uid: 7713 components: - type: Transform pos: 0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3375 + color: '#0055CCFF' + - uid: 7714 components: - type: Transform pos: 0.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3419 + color: '#0055CCFF' + - uid: 7715 components: - type: Transform pos: 1.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3957 + color: '#0055CCFF' + - uid: 7716 components: - type: Transform pos: 4.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4011 + color: '#990000FF' + - uid: 7717 components: - type: Transform pos: -0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4119 + color: '#990000FF' + - uid: 7718 components: - type: Transform pos: 0.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4529 + color: '#0055CCFF' + - uid: 7719 components: - type: Transform pos: 0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4615 + color: '#0055CCFF' + - uid: 7720 components: - type: Transform pos: 0.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4666 + color: '#0055CCFF' + - uid: 7721 components: - type: Transform pos: 0.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4748 + color: '#0055CCFF' + - uid: 7722 components: - type: Transform pos: -4.5,-200.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5052 + - uid: 7723 components: - type: Transform pos: 0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5084 + color: '#0055CCFF' + - uid: 7724 components: - type: Transform pos: 1.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5263 + color: '#990000FF' + - uid: 7725 components: - type: Transform pos: 1.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5304 + color: '#990000FF' + - uid: 7726 components: - type: Transform pos: 0.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5926 + color: '#0055CCFF' + - uid: 7727 components: - type: Transform pos: 0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6693 + color: '#0055CCFF' + - uid: 7728 components: - type: Transform pos: 0.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7204 + color: '#0055CCFF' + - uid: 7729 components: - type: Transform pos: 0.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7822 + color: '#0055CCFF' + - uid: 7730 + components: + - type: Transform + pos: 1.5,-168.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7731 components: - type: Transform pos: 0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7956 + color: '#0055CCFF' + - uid: 7732 components: - type: Transform pos: -3.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9809 + color: '#990000FF' + - uid: 7733 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7734 components: - type: Transform pos: 0.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9816 + color: '#0055CCFF' + - uid: 7735 components: - type: Transform pos: -3.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12441 + color: '#0055CCFF' + - uid: 7736 + components: + - type: Transform + pos: 17.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7737 components: - type: Transform pos: -0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12722 + color: '#990000FF' + - uid: 7738 components: - type: Transform pos: 1.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12746 + color: '#990000FF' + - uid: 7739 components: - type: Transform pos: 0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12755 + color: '#0055CCFF' + - uid: 7740 components: - type: Transform pos: 1.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12768 + color: '#990000FF' + - uid: 7741 components: - type: Transform pos: -4.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12796 + color: '#990000FF' + - uid: 7742 components: - type: Transform pos: 1.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12797 + color: '#990000FF' + - uid: 7743 components: - type: Transform pos: -4.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12949 + color: '#990000FF' + - uid: 7744 components: - type: Transform pos: 4.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12968 + color: '#0055CCFF' + - uid: 7745 components: - type: Transform pos: 1.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeStraight entities: - - uid: 444 + - uid: 7618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-171.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: 1.5,-359.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7747 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 533 + color: '#990000FF' + - uid: 7748 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 594 + color: '#990000FF' + - uid: 7749 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 595 + color: '#990000FF' + - uid: 7750 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 602 + color: '#990000FF' + - uid: 7751 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 612 + color: '#990000FF' + - uid: 7752 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 624 + color: '#990000FF' + - uid: 7753 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 628 + color: '#990000FF' + - uid: 7754 components: - type: Transform pos: 6.5,-16.5 parent: 2 - - uid: 629 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7755 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 630 + color: '#990000FF' + - uid: 7756 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 635 + color: '#990000FF' + - uid: 7757 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 660 + color: '#990000FF' + - uid: 7758 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 673 + color: '#990000FF' + - uid: 7759 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 685 + color: '#990000FF' + - uid: 7760 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 686 + color: '#990000FF' + - uid: 7761 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 709 + color: '#990000FF' + - uid: 7762 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 715 + color: '#990000FF' + - uid: 7763 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 717 + color: '#990000FF' + - uid: 7764 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 718 + color: '#990000FF' + - uid: 7765 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 719 + color: '#990000FF' + - uid: 7766 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 721 + color: '#990000FF' + - uid: 7767 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 722 + color: '#990000FF' + - uid: 7768 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 723 + color: '#990000FF' + - uid: 7769 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 724 + color: '#990000FF' + - uid: 7770 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 725 + color: '#990000FF' + - uid: 7771 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 731 + color: '#990000FF' + - uid: 7772 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 732 + color: '#990000FF' + - uid: 7773 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 733 + color: '#990000FF' + - uid: 7774 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 736 + color: '#990000FF' + - uid: 7775 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 739 + color: '#990000FF' + - uid: 7776 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 740 + color: '#990000FF' + - uid: 7777 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 743 + color: '#990000FF' + - uid: 7778 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 744 + color: '#990000FF' + - uid: 7779 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 748 + color: '#990000FF' + - uid: 7780 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 749 + color: '#990000FF' + - uid: 7781 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 765 + color: '#990000FF' + - uid: 7782 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 766 + color: '#990000FF' + - uid: 7783 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 767 + color: '#990000FF' + - uid: 7784 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 768 + color: '#990000FF' + - uid: 7785 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 789 + color: '#990000FF' + - uid: 7786 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 794 + color: '#0055CCFF' + - uid: 7787 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 812 + color: '#0055CCFF' + - uid: 7788 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 813 + color: '#0055CCFF' + - uid: 7789 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 814 + color: '#0055CCFF' + - uid: 7790 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 818 + color: '#0055CCFF' + - uid: 7791 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 819 + color: '#0055CCFF' + - uid: 7792 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 820 + color: '#0055CCFF' + - uid: 7793 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 823 + color: '#0055CCFF' + - uid: 7794 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 840 + color: '#0055CCFF' + - uid: 7795 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 841 + color: '#0055CCFF' + - uid: 7796 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 842 + color: '#0055CCFF' + - uid: 7797 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 847 + color: '#0055CCFF' + - uid: 7798 components: - type: Transform pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 848 + color: '#0055CCFF' + - uid: 7799 components: - type: Transform pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 849 + color: '#0055CCFF' + - uid: 7800 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 850 + color: '#0055CCFF' + - uid: 7801 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 851 + color: '#0055CCFF' + - uid: 7802 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 852 + color: '#0055CCFF' + - uid: 7803 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 858 + color: '#0055CCFF' + - uid: 7804 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 859 + color: '#0055CCFF' + - uid: 7805 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 861 + color: '#0055CCFF' + - uid: 7806 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 862 + color: '#0055CCFF' + - uid: 7807 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 863 + color: '#0055CCFF' + - uid: 7808 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 864 + color: '#0055CCFF' + - uid: 7809 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 865 + color: '#0055CCFF' + - uid: 7810 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 868 + color: '#0055CCFF' + - uid: 7811 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 872 + color: '#0055CCFF' + - uid: 7812 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 874 + color: '#0055CCFF' + - uid: 7813 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 877 + color: '#0055CCFF' + - uid: 7814 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 878 + color: '#0055CCFF' + - uid: 7815 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 920 + color: '#0055CCFF' + - uid: 7816 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 922 + color: '#990000FF' + - uid: 7817 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 933 + color: '#0055CCFF' + - uid: 7818 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 973 + color: '#990000FF' + - uid: 7819 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 988 + color: '#990000FF' + - uid: 7820 components: - type: Transform - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: 0.5,-220.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 990 + - uid: 7821 components: - type: Transform - pos: 0.5,-23.5 + rot: 3.141592653589793 rad + pos: 0.5,-228.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 992 + color: '#0055CCFF' + - uid: 7822 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 995 + color: '#0055CCFF' + - uid: 7823 components: - type: Transform pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1005 + color: '#0055CCFF' + - uid: 7824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-271.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7825 components: - type: Transform rot: -1.5707963267948966 rad @@ -51011,3989 +50638,3749 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1038 + - uid: 7826 components: - type: Transform pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1039 + color: '#0055CCFF' + - uid: 7827 components: - type: Transform pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1040 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1041 + color: '#0055CCFF' + - uid: 7828 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1042 + color: '#990000FF' + - uid: 7829 components: - type: Transform pos: 0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1043 - components: - - type: Transform - pos: 0.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1044 + color: '#0055CCFF' + - uid: 7830 components: - type: Transform - pos: 0.5,-34.5 + rot: -1.5707963267948966 rad + pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1045 + color: '#0055CCFF' + - uid: 7831 components: - type: Transform pos: 0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1046 + color: '#0055CCFF' + - uid: 7832 components: - type: Transform pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1047 + color: '#0055CCFF' + - uid: 7833 components: - type: Transform pos: 0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1048 + color: '#0055CCFF' + - uid: 7834 components: - type: Transform pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1049 + color: '#0055CCFF' + - uid: 7835 components: - type: Transform pos: 0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1051 + color: '#0055CCFF' + - uid: 7836 components: - type: Transform pos: 0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1054 + color: '#0055CCFF' + - uid: 7837 components: - type: Transform pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1055 + color: '#0055CCFF' + - uid: 7838 components: - type: Transform pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1056 + color: '#0055CCFF' + - uid: 7839 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1058 + color: '#0055CCFF' + - uid: 7840 components: - type: Transform pos: 0.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1059 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1060 + color: '#0055CCFF' + - uid: 7841 components: - type: Transform pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1061 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1062 + color: '#0055CCFF' + - uid: 7842 components: - type: Transform pos: 0.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1065 + color: '#0055CCFF' + - uid: 7843 components: - type: Transform pos: 0.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1069 + color: '#0055CCFF' + - uid: 7844 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1109 + color: '#990000FF' + - uid: 7845 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1118 + color: '#990000FF' + - uid: 7846 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1135 + color: '#0055CCFF' + - uid: 7847 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1136 + color: '#990000FF' + - uid: 7848 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1137 + color: '#990000FF' + - uid: 7849 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1147 + color: '#0055CCFF' + - uid: 7850 components: - type: Transform pos: -0.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1150 + color: '#990000FF' + - uid: 7851 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1151 + color: '#990000FF' + - uid: 7852 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1152 + color: '#990000FF' + - uid: 7853 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1153 + color: '#990000FF' + - uid: 7854 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1154 + color: '#990000FF' + - uid: 7855 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1157 + color: '#990000FF' + - uid: 7856 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1159 + color: '#990000FF' + - uid: 7857 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1160 + color: '#990000FF' + - uid: 7858 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1161 + color: '#990000FF' + - uid: 7859 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1162 + color: '#990000FF' + - uid: 7860 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1163 + color: '#0055CCFF' + - uid: 7861 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1164 + color: '#0055CCFF' + - uid: 7862 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1165 + color: '#0055CCFF' + - uid: 7863 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1166 + color: '#0055CCFF' + - uid: 7864 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1168 + color: '#0055CCFF' + - uid: 7865 components: - type: Transform pos: -0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1170 + color: '#990000FF' + - uid: 7866 components: - type: Transform pos: -0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1171 + color: '#990000FF' + - uid: 7867 components: - type: Transform pos: -0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1173 + color: '#990000FF' + - uid: 7868 components: - type: Transform pos: -0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1175 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1176 + color: '#990000FF' + - uid: 7869 components: - type: Transform pos: -0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1182 + color: '#990000FF' + - uid: 7870 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1183 + color: '#0055CCFF' + - uid: 7871 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1184 + color: '#0055CCFF' + - uid: 7872 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1185 + color: '#0055CCFF' + - uid: 7873 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1187 + color: '#0055CCFF' + - uid: 7874 components: - type: Transform pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1189 + color: '#0055CCFF' + - uid: 7875 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1190 + color: '#990000FF' + - uid: 7876 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1193 + color: '#990000FF' + - uid: 7877 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1194 + color: '#990000FF' + - uid: 7878 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1195 + color: '#990000FF' + - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1196 + color: '#990000FF' + - uid: 7880 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1197 + color: '#990000FF' + - uid: 7881 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1198 + color: '#990000FF' + - uid: 7882 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1199 + color: '#990000FF' + - uid: 7883 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1203 + color: '#990000FF' + - uid: 7884 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1204 + color: '#990000FF' + - uid: 7885 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1206 + color: '#990000FF' + - uid: 7886 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1208 + color: '#990000FF' + - uid: 7887 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1214 + color: '#990000FF' + - uid: 7888 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1217 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1219 + color: '#990000FF' + - uid: 7889 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1220 + color: '#990000FF' + - uid: 7890 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1232 + color: '#990000FF' + - uid: 7891 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1233 + color: '#0055CCFF' + - uid: 7892 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1234 + color: '#0055CCFF' + - uid: 7893 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1235 + color: '#0055CCFF' + - uid: 7894 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1236 + color: '#0055CCFF' + - uid: 7895 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1251 + color: '#990000FF' + - uid: 7896 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1252 + color: '#990000FF' + - uid: 7897 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1253 + color: '#990000FF' + - uid: 7898 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1254 + color: '#990000FF' + - uid: 7899 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1255 + color: '#990000FF' + - uid: 7900 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1258 + color: '#990000FF' + - uid: 7901 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1260 + color: '#990000FF' + - uid: 7902 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1263 + color: '#990000FF' + - uid: 7903 components: - type: Transform pos: -4.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1265 + color: '#990000FF' + - uid: 7904 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1268 + color: '#0055CCFF' + - uid: 7905 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1271 + color: '#990000FF' + - uid: 7906 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1275 + color: '#990000FF' + - uid: 7907 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1280 + color: '#0055CCFF' + - uid: 7908 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1281 + color: '#990000FF' + - uid: 7909 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1282 + color: '#0055CCFF' + - uid: 7910 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1284 + color: '#0055CCFF' + - uid: 7911 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1287 + color: '#990000FF' + - uid: 7912 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1290 + color: '#990000FF' + - uid: 7913 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1291 + color: '#990000FF' + - uid: 7914 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1293 + color: '#0055CCFF' + - uid: 7915 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1294 + color: '#990000FF' + - uid: 7916 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1295 + color: '#990000FF' + - uid: 7917 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1296 + color: '#990000FF' + - uid: 7918 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1297 + color: '#990000FF' + - uid: 7919 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1298 + color: '#990000FF' + - uid: 7920 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1300 + color: '#990000FF' + - uid: 7921 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1303 + color: '#990000FF' + - uid: 7922 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1304 + color: '#990000FF' + - uid: 7923 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1305 + color: '#990000FF' + - uid: 7924 components: - type: Transform pos: 0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1306 - components: - - type: Transform - pos: 0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1307 + color: '#0055CCFF' + - uid: 7925 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1308 + color: '#0055CCFF' + - uid: 7926 components: - type: Transform pos: 0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1309 + color: '#0055CCFF' + - uid: 7927 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1310 + color: '#990000FF' + - uid: 7928 components: - type: Transform pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1311 + color: '#0055CCFF' + - uid: 7929 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1312 + color: '#0055CCFF' + - uid: 7930 components: - type: Transform pos: 0.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1313 + color: '#0055CCFF' + - uid: 7931 components: - type: Transform pos: 0.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1314 + color: '#0055CCFF' + - uid: 7932 components: - type: Transform pos: 0.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1317 + color: '#0055CCFF' + - uid: 7933 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1318 + color: '#0055CCFF' + - uid: 7934 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1319 + color: '#0055CCFF' + - uid: 7935 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1320 + color: '#0055CCFF' + - uid: 7936 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1321 + color: '#990000FF' + - uid: 7937 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1322 + color: '#990000FF' + - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1330 + color: '#990000FF' + - uid: 7939 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1331 + color: '#990000FF' + - uid: 7940 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1338 + color: '#990000FF' + - uid: 7941 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1340 + color: '#990000FF' + - uid: 7942 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1346 + color: '#0055CCFF' + - uid: 7943 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1356 + color: '#990000FF' + - uid: 7944 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1357 + color: '#990000FF' + - uid: 7945 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1361 + color: '#990000FF' + - uid: 7946 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1363 + color: '#0055CCFF' + - uid: 7947 components: - type: Transform pos: 0.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1364 + color: '#0055CCFF' + - uid: 7948 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1366 + color: '#0055CCFF' + - uid: 7949 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1371 + color: '#0055CCFF' + - uid: 7950 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1376 + color: '#0055CCFF' + - uid: 7951 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1377 + color: '#990000FF' + - uid: 7952 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1379 + color: '#0055CCFF' + - uid: 7953 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1387 + color: '#0055CCFF' + - uid: 7954 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1388 + color: '#990000FF' + - uid: 7955 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1390 + color: '#990000FF' + - uid: 7956 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1391 + color: '#990000FF' + - uid: 7957 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1392 + color: '#990000FF' + - uid: 7958 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1393 + color: '#0055CCFF' + - uid: 7959 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1395 + color: '#0055CCFF' + - uid: 7960 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1397 + color: '#0055CCFF' + - uid: 7961 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1404 + color: '#0055CCFF' + - uid: 7962 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1405 + color: '#990000FF' + - uid: 7963 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1410 + color: '#990000FF' + - uid: 7964 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1411 + color: '#0055CCFF' + - uid: 7965 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1412 + color: '#0055CCFF' + - uid: 7966 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1414 + color: '#0055CCFF' + - uid: 7967 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1424 + color: '#0055CCFF' + - uid: 7968 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1512 + color: '#0055CCFF' + - uid: 7969 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7970 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1575 + color: '#0055CCFF' + - uid: 7971 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1680 + color: '#990000FF' + - uid: 7972 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1770 + color: '#0055CCFF' + - uid: 7973 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1841 + color: '#0055CCFF' + - uid: 7974 components: - type: Transform pos: -4.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1961 + color: '#0055CCFF' + - uid: 7975 components: - type: Transform pos: -4.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2170 + color: '#0055CCFF' + - uid: 7976 components: - type: Transform pos: -4.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2357 + color: '#0055CCFF' + - uid: 7977 components: - type: Transform pos: -17.5,-258.5 parent: 2 - - uid: 2399 + - uid: 7978 components: - type: Transform pos: -17.5,-239.5 parent: 2 - - uid: 2403 + - uid: 7979 components: - type: Transform pos: -16.5,-239.5 parent: 2 - - uid: 2481 + - uid: 7980 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-245.5 parent: 2 - - uid: 2919 + - uid: 7981 components: - type: Transform pos: -17.5,-250.5 parent: 2 - - uid: 3025 + - uid: 7982 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3028 + color: '#990000FF' + - uid: 7983 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-258.5 parent: 2 - - uid: 3039 + - uid: 7984 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3041 + color: '#990000FF' + - uid: 7985 components: - type: Transform pos: -4.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3135 + color: '#990000FF' + - uid: 7986 components: - type: Transform - pos: -9.5,-253.5 + rot: 3.141592653589793 rad + pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3144 + color: '#0055CCFF' + - uid: 7987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-260.5 + pos: -9.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3145 + color: '#990000FF' + - uid: 7988 components: - type: Transform - pos: 0.5,-168.5 + rot: -1.5707963267948966 rad + pos: -2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3165 + color: '#0055CCFF' + - uid: 7989 components: - type: Transform pos: -18.5,-239.5 parent: 2 - - uid: 3197 + - uid: 7990 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-251.5 parent: 2 - - uid: 3198 + - uid: 7991 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 3215 + - uid: 7992 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-251.5 parent: 2 - - uid: 3251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3258 + - uid: 7993 components: - type: Transform pos: -4.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3265 + color: '#990000FF' + - uid: 7994 components: - type: Transform pos: -7.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3266 + color: '#990000FF' + - uid: 7995 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3267 + color: '#990000FF' + - uid: 7996 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3268 + color: '#990000FF' + - uid: 7997 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3269 + color: '#990000FF' + - uid: 7998 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3275 + color: '#990000FF' + - uid: 7999 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3276 + color: '#990000FF' + - uid: 8000 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3277 + color: '#990000FF' + - uid: 8001 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3280 + color: '#990000FF' + - uid: 8002 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3282 + color: '#990000FF' + - uid: 8003 components: - type: Transform pos: -4.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3286 + color: '#990000FF' + - uid: 8004 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3287 + color: '#990000FF' + - uid: 8005 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3289 + color: '#990000FF' + - uid: 8006 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3290 + color: '#990000FF' + - uid: 8007 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3291 + color: '#990000FF' + - uid: 8008 components: - type: Transform pos: 1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3292 + color: '#990000FF' + - uid: 8009 components: - type: Transform pos: 1.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3294 + color: '#990000FF' + - uid: 8010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3295 + color: '#990000FF' + - uid: 8011 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3296 + color: '#990000FF' + - uid: 8012 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3297 + color: '#990000FF' + - uid: 8013 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3298 + color: '#990000FF' + - uid: 8014 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3299 + color: '#990000FF' + - uid: 8015 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3300 + color: '#990000FF' + - uid: 8016 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3301 + color: '#990000FF' + - uid: 8017 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3302 + color: '#990000FF' + - uid: 8018 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3303 + color: '#990000FF' + - uid: 8019 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3304 + color: '#990000FF' + - uid: 8020 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3305 + color: '#990000FF' + - uid: 8021 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-86.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-85.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3308 + color: '#990000FF' + - uid: 8022 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3312 + color: '#990000FF' + - uid: 8023 components: - type: Transform pos: -4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3313 + color: '#990000FF' + - uid: 8024 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3315 + color: '#990000FF' + - uid: 8025 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3316 + color: '#990000FF' + - uid: 8026 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3317 + color: '#990000FF' + - uid: 8027 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3318 + color: '#990000FF' + - uid: 8028 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3320 + color: '#990000FF' + - uid: 8029 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3321 + color: '#990000FF' + - uid: 8030 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3322 + color: '#990000FF' + - uid: 8031 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3324 + color: '#990000FF' + - uid: 8032 components: - type: Transform pos: -0.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3325 + color: '#990000FF' + - uid: 8033 components: - type: Transform pos: -0.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3327 + color: '#990000FF' + - uid: 8034 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3328 + color: '#0055CCFF' + - uid: 8035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-77.5 + pos: 4.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3329 + color: '#990000FF' + - uid: 8036 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3330 + color: '#0055CCFF' + - uid: 8037 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3336 + color: '#0055CCFF' + - uid: 8038 components: - type: Transform pos: 0.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3337 + color: '#0055CCFF' + - uid: 8039 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3338 + color: '#0055CCFF' + - uid: 8040 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3339 + color: '#0055CCFF' + - uid: 8041 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3340 + color: '#0055CCFF' + - uid: 8042 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3341 + color: '#0055CCFF' + - uid: 8043 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3342 + color: '#0055CCFF' + - uid: 8044 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3343 + color: '#0055CCFF' + - uid: 8045 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3344 + color: '#0055CCFF' + - uid: 8046 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3345 + color: '#0055CCFF' + - uid: 8047 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-84.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3346 + color: '#0055CCFF' + - uid: 8048 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3347 + color: '#0055CCFF' + - uid: 8049 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3348 + color: '#0055CCFF' + - uid: 8050 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3349 + color: '#0055CCFF' + - uid: 8051 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3356 + color: '#0055CCFF' + - uid: 8052 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3357 + color: '#0055CCFF' + - uid: 8053 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3358 + color: '#0055CCFF' + - uid: 8054 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3359 + color: '#0055CCFF' + - uid: 8055 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3360 + color: '#0055CCFF' + - uid: 8056 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3362 + color: '#0055CCFF' + - uid: 8057 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3365 + color: '#0055CCFF' + - uid: 8058 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3366 + color: '#0055CCFF' + - uid: 8059 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3367 + color: '#0055CCFF' + - uid: 8060 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3368 + color: '#0055CCFF' + - uid: 8061 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3369 + color: '#0055CCFF' + - uid: 8062 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3370 + color: '#0055CCFF' + - uid: 8063 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3376 + color: '#0055CCFF' + - uid: 8064 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3377 + color: '#0055CCFF' + - uid: 8065 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3378 + color: '#0055CCFF' + - uid: 8066 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3379 + color: '#0055CCFF' + - uid: 8067 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3380 + color: '#0055CCFF' + - uid: 8068 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3381 + color: '#0055CCFF' + - uid: 8069 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3382 + color: '#0055CCFF' + - uid: 8070 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-102.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3384 + color: '#0055CCFF' + - uid: 8071 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-104.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3387 + color: '#0055CCFF' + - uid: 8072 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3388 + color: '#0055CCFF' + - uid: 8073 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3389 + color: '#0055CCFF' + - uid: 8074 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3390 + color: '#0055CCFF' + - uid: 8075 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3402 + color: '#0055CCFF' + - uid: 8076 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3404 + color: '#0055CCFF' + - uid: 8077 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3406 + color: '#0055CCFF' + - uid: 8078 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3411 + color: '#0055CCFF' + - uid: 8079 components: - type: Transform pos: 1.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3412 + color: '#0055CCFF' + - uid: 8080 components: - type: Transform pos: 1.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3413 + color: '#0055CCFF' + - uid: 8081 components: - type: Transform pos: 1.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3414 + color: '#0055CCFF' + - uid: 8082 components: - type: Transform pos: 1.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3416 + color: '#0055CCFF' + - uid: 8083 components: - type: Transform pos: 1.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3417 + color: '#0055CCFF' + - uid: 8084 components: - type: Transform pos: 1.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3418 + color: '#0055CCFF' + - uid: 8085 components: - type: Transform pos: 1.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3420 + color: '#0055CCFF' + - uid: 8086 components: - type: Transform pos: 1.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3421 + color: '#0055CCFF' + - uid: 8087 components: - type: Transform pos: 1.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3422 + color: '#0055CCFF' + - uid: 8088 components: - type: Transform pos: 1.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3423 + color: '#0055CCFF' + - uid: 8089 components: - type: Transform pos: 1.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3424 + color: '#0055CCFF' + - uid: 8090 components: - type: Transform pos: 1.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3425 + color: '#0055CCFF' + - uid: 8091 components: - type: Transform pos: 1.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3427 + color: '#0055CCFF' + - uid: 8092 components: - type: Transform pos: 0.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3428 - components: - - type: Transform - pos: 0.5,-129.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3429 + color: '#0055CCFF' + - uid: 8093 components: - type: Transform pos: 0.5,-128.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3430 + color: '#0055CCFF' + - uid: 8094 components: - type: Transform pos: 0.5,-130.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3431 - components: - - type: Transform - pos: 0.5,-131.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3432 + color: '#0055CCFF' + - uid: 8095 components: - type: Transform pos: 0.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3433 + color: '#0055CCFF' + - uid: 8096 components: - type: Transform pos: 0.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3434 + color: '#0055CCFF' + - uid: 8097 components: - type: Transform pos: 0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3440 + color: '#0055CCFF' + - uid: 8098 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3442 + color: '#0055CCFF' + - uid: 8099 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3443 + color: '#0055CCFF' + - uid: 8100 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3445 + color: '#0055CCFF' + - uid: 8101 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3446 + color: '#0055CCFF' + - uid: 8102 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3447 + color: '#0055CCFF' + - uid: 8103 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3449 + color: '#0055CCFF' + - uid: 8104 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3453 + color: '#0055CCFF' + - uid: 8105 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3454 + color: '#0055CCFF' + - uid: 8106 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3455 + color: '#0055CCFF' + - uid: 8107 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3456 + color: '#0055CCFF' + - uid: 8108 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3458 + color: '#0055CCFF' + - uid: 8109 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3459 + color: '#0055CCFF' + - uid: 8110 components: - type: Transform pos: -6.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3460 + color: '#0055CCFF' + - uid: 8111 components: - type: Transform pos: -6.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3461 - components: - - type: Transform - pos: -6.5,-112.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3462 + color: '#0055CCFF' + - uid: 8113 components: - type: Transform pos: -6.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3463 + color: '#0055CCFF' + - uid: 8114 components: - type: Transform pos: -6.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3464 - components: - - type: Transform - pos: -6.5,-115.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3465 + color: '#0055CCFF' + - uid: 8116 components: - type: Transform pos: -6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3466 + color: '#0055CCFF' + - uid: 8117 components: - type: Transform pos: -6.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3467 - components: - - type: Transform - pos: -6.5,-118.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3468 + color: '#0055CCFF' + - uid: 8119 components: - type: Transform pos: -6.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3469 + color: '#0055CCFF' + - uid: 8120 components: - type: Transform pos: -6.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3470 - components: - - type: Transform - pos: -6.5,-121.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3471 + color: '#0055CCFF' + - uid: 8122 components: - type: Transform pos: -6.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3472 + color: '#0055CCFF' + - uid: 8123 components: - type: Transform pos: -6.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3473 - components: - - type: Transform - pos: -6.5,-124.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3479 - components: - - type: Transform - pos: 1.5,-167.5 - parent: 2 - - uid: 3488 + color: '#0055CCFF' + - uid: 8125 components: - type: Transform pos: 15.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3510 + color: '#0055CCFF' + - uid: 8126 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3511 + color: '#990000FF' + - uid: 8127 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3512 + color: '#990000FF' + - uid: 8128 components: - type: Transform pos: -8.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3514 + color: '#990000FF' + - uid: 8129 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3516 + color: '#990000FF' + - uid: 8130 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3517 + color: '#990000FF' + - uid: 8131 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3519 + color: '#990000FF' + - uid: 8132 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3520 + color: '#990000FF' + - uid: 8133 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3522 + color: '#990000FF' + - uid: 8134 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3523 + color: '#990000FF' + - uid: 8135 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3528 + color: '#990000FF' + - uid: 8136 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3529 + color: '#990000FF' + - uid: 8137 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-169.5 - parent: 2 - - uid: 3558 + color: '#990000FF' + - uid: 8139 components: - type: Transform pos: 15.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3563 + color: '#0055CCFF' + - uid: 8140 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3564 + color: '#990000FF' + - uid: 8141 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-124.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3565 + color: '#990000FF' + - uid: 8142 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3567 + color: '#990000FF' + - uid: 8143 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3569 + color: '#990000FF' + - uid: 8144 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3570 + color: '#990000FF' + - uid: 8145 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3572 + color: '#990000FF' + - uid: 8146 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-117.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3574 + color: '#990000FF' + - uid: 8147 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3575 + color: '#990000FF' + - uid: 8148 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3577 + color: '#990000FF' + - uid: 8149 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3578 + color: '#990000FF' + - uid: 8150 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-112.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3579 + color: '#990000FF' + - uid: 8151 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-111.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3580 + color: '#990000FF' + - uid: 8152 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3581 + color: '#990000FF' + - uid: 8153 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3587 + color: '#990000FF' + - uid: 8154 components: - type: Transform pos: -0.5,-121.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3588 + color: '#990000FF' + - uid: 8155 components: - type: Transform pos: -0.5,-123.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3589 - components: - - type: Transform - pos: -0.5,-124.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3590 + color: '#990000FF' + - uid: 8156 components: - type: Transform pos: -0.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3591 + color: '#990000FF' + - uid: 8157 components: - type: Transform pos: -0.5,-126.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3592 + color: '#990000FF' + - uid: 8158 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3593 + color: '#990000FF' + - uid: 8159 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3594 + color: '#990000FF' + - uid: 8160 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3595 + color: '#990000FF' + - uid: 8161 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3596 + color: '#990000FF' + - uid: 8162 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3597 + color: '#990000FF' + - uid: 8163 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3607 + color: '#990000FF' + - uid: 8164 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3609 + color: '#990000FF' + - uid: 8165 components: - type: Transform pos: -9.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3611 + color: '#990000FF' + - uid: 8166 components: - type: Transform pos: -9.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3612 + color: '#990000FF' + - uid: 8167 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3613 + color: '#990000FF' + - uid: 8168 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3614 + color: '#990000FF' + - uid: 8169 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3615 + color: '#990000FF' + - uid: 8170 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3617 + color: '#990000FF' + - uid: 8171 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3618 + color: '#990000FF' + - uid: 8172 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3620 + color: '#990000FF' + - uid: 8173 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3624 + color: '#990000FF' + - uid: 8174 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-119.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3628 + color: '#990000FF' + - uid: 8175 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-118.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3629 + color: '#990000FF' + - uid: 8176 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3634 + color: '#990000FF' + - uid: 8177 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3635 + color: '#990000FF' + - uid: 8178 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3638 + color: '#990000FF' + - uid: 8179 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3642 + color: '#990000FF' + - uid: 8180 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3643 + color: '#0055CCFF' + - uid: 8181 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3644 + color: '#990000FF' + - uid: 8182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-260.5 + rot: 1.5707963267948966 rad + pos: 2.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3648 + color: '#0055CCFF' + - uid: 8183 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-138.5 + pos: 3.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3649 + color: '#0055CCFF' + - uid: 8184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-138.5 + rot: 3.141592653589793 rad + pos: 0.5,-168.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3663 + color: '#0055CCFF' + - uid: 8185 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3670 + color: '#0055CCFF' + - uid: 8186 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3766 + color: '#0055CCFF' + - uid: 8187 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3789 + color: '#990000FF' + - uid: 8188 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3790 + color: '#0055CCFF' + - uid: 8189 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-260.5 parent: 2 - - uid: 3849 + - uid: 8190 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3875 + color: '#0055CCFF' + - uid: 8191 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3921 + color: '#990000FF' + - uid: 8192 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3922 + color: '#0055CCFF' + - uid: 8193 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-144.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3924 + color: '#990000FF' + - uid: 8194 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3925 + color: '#0055CCFF' + - uid: 8195 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-141.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3926 + color: '#0055CCFF' + - uid: 8196 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-142.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3927 + color: '#0055CCFF' + - uid: 8197 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-143.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3928 + color: '#0055CCFF' + - uid: 8198 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-144.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3929 + color: '#0055CCFF' + - uid: 8199 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-145.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3931 + color: '#0055CCFF' + - uid: 8200 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-147.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3932 + color: '#0055CCFF' + - uid: 8201 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3934 + color: '#0055CCFF' + - uid: 8202 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3935 + color: '#0055CCFF' + - uid: 8203 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-150.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3937 + color: '#0055CCFF' + - uid: 8204 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3939 + color: '#0055CCFF' + - uid: 8205 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-155.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-156.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3941 + color: '#0055CCFF' + - uid: 8206 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-158.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3943 + color: '#0055CCFF' + - uid: 8207 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-159.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3945 + color: '#0055CCFF' + - uid: 8208 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3946 + color: '#0055CCFF' + - uid: 8209 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3951 + color: '#0055CCFF' + - uid: 8210 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3956 + color: '#990000FF' + - uid: 8211 components: - type: Transform pos: 4.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3958 + color: '#990000FF' + - uid: 8212 components: - type: Transform pos: 4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3959 + color: '#990000FF' + - uid: 8213 components: - type: Transform pos: 4.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3960 + color: '#990000FF' + - uid: 8214 components: - type: Transform pos: 4.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3963 + color: '#990000FF' + - uid: 8215 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3964 + color: '#990000FF' + - uid: 8216 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3965 + color: '#990000FF' + - uid: 8217 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3966 + color: '#990000FF' + - uid: 8218 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3967 + color: '#990000FF' + - uid: 8219 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3968 + color: '#990000FF' + - uid: 8220 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3969 + color: '#990000FF' + - uid: 8221 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3974 + color: '#990000FF' + - uid: 8222 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-134.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3975 + color: '#990000FF' + - uid: 8223 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3976 + color: '#990000FF' + - uid: 8224 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3979 + color: '#990000FF' + - uid: 8225 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-145.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3983 + color: '#990000FF' + - uid: 8226 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3985 + color: '#990000FF' + - uid: 8227 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3986 + color: '#990000FF' + - uid: 8228 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3989 + color: '#0055CCFF' + - uid: 8229 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3990 + color: '#990000FF' + - uid: 8230 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-141.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3991 + color: '#990000FF' + - uid: 8231 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-142.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3992 + color: '#990000FF' + - uid: 8232 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-143.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3995 + color: '#990000FF' + - uid: 8233 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-147.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3997 + color: '#990000FF' + - uid: 8234 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3999 + color: '#990000FF' + - uid: 8235 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-150.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4001 + color: '#990000FF' + - uid: 8236 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4002 + color: '#990000FF' + - uid: 8237 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4005 + color: '#990000FF' + - uid: 8238 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4006 + color: '#990000FF' + - uid: 8239 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4007 + color: '#990000FF' + - uid: 8240 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4008 + color: '#990000FF' + - uid: 8241 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4010 + color: '#990000FF' + - uid: 8242 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4014 + color: '#990000FF' + - uid: 8243 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4015 + color: '#990000FF' + - uid: 8244 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-136.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4019 + color: '#990000FF' + - uid: 8245 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 4024 + - uid: 8246 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4025 + color: '#0055CCFF' + - uid: 8247 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4026 + color: '#0055CCFF' + - uid: 8248 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4027 + color: '#0055CCFF' + - uid: 8249 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4028 + color: '#0055CCFF' + - uid: 8250 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4029 + color: '#0055CCFF' + - uid: 8251 components: - type: Transform pos: -9.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4030 + color: '#990000FF' + - uid: 8252 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4032 + color: '#0055CCFF' + - uid: 8253 components: - type: Transform pos: -4.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4034 + color: '#0055CCFF' + - uid: 8254 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4035 + color: '#990000FF' + - uid: 8255 components: - type: Transform pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4036 + color: '#0055CCFF' + - uid: 8256 components: - type: Transform pos: -5.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4038 + color: '#990000FF' + - uid: 8257 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4039 + color: '#0055CCFF' + - uid: 8258 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4052 + color: '#990000FF' + - uid: 8259 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4116 + color: '#0055CCFF' + - uid: 8260 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-171.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4117 + color: '#0055CCFF' + - uid: 8261 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4118 + color: '#0055CCFF' + - uid: 8262 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4120 + color: '#0055CCFF' + - uid: 8263 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4121 + color: '#0055CCFF' + - uid: 8264 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4122 + color: '#0055CCFF' + - uid: 8265 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-177.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-178.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4124 + color: '#0055CCFF' + - uid: 8266 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4125 + color: '#0055CCFF' + - uid: 8267 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4126 + color: '#0055CCFF' + - uid: 8268 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-182.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-183.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4128 + color: '#0055CCFF' + - uid: 8269 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-184.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-185.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4130 + color: '#0055CCFF' + - uid: 8270 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-186.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4132 + color: '#0055CCFF' + - uid: 8271 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4135 + color: '#0055CCFF' + - uid: 8272 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4151 + color: '#0055CCFF' + - uid: 8273 components: - type: Transform pos: 1.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4152 + color: '#990000FF' + - uid: 8274 components: - type: Transform pos: 1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4153 + color: '#990000FF' + - uid: 8275 components: - type: Transform pos: -0.5,-180.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4156 + color: '#990000FF' + - uid: 8276 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4157 + color: '#990000FF' + - uid: 8277 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4158 + color: '#990000FF' + - uid: 8278 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4159 + color: '#990000FF' + - uid: 8279 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4160 + color: '#990000FF' + - uid: 8280 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4180 + color: '#990000FF' + - uid: 8281 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-245.5 parent: 2 - - uid: 4200 + - uid: 8282 components: - type: Transform pos: 15.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4201 + color: '#0055CCFF' + - uid: 8283 components: - type: Transform pos: 15.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4214 + color: '#0055CCFF' + - uid: 8284 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-164.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4215 + color: '#990000FF' + - uid: 8285 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-166.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4225 + color: '#990000FF' + - uid: 8286 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-164.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4305 + color: '#0055CCFF' + - uid: 8287 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4307 + color: '#990000FF' + - uid: 8288 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4357 + color: '#0055CCFF' + - uid: 8289 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4420 + color: '#0055CCFF' + - uid: 8290 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4514 + color: '#990000FF' + - uid: 8291 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4531 + color: '#990000FF' + - uid: 8292 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4532 + color: '#0055CCFF' + - uid: 8293 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4534 + color: '#0055CCFF' + - uid: 8294 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4536 + color: '#0055CCFF' + - uid: 8295 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4537 + color: '#990000FF' + - uid: 8296 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4538 + color: '#990000FF' + - uid: 8297 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-207.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4539 + color: '#990000FF' + - uid: 8298 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4540 + color: '#990000FF' + - uid: 8299 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-151.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4560 + color: '#990000FF' + - uid: 8300 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4561 + color: '#0055CCFF' + - uid: 8301 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4562 + color: '#0055CCFF' + - uid: 8302 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4563 + color: '#0055CCFF' + - uid: 8303 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-149.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4565 + color: '#0055CCFF' + - uid: 8304 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad pos: 3.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4566 + color: '#0055CCFF' + - uid: 8305 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4569 + color: '#0055CCFF' + - uid: 8306 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4578 + color: '#990000FF' + - uid: 8307 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-198.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4580 + color: '#990000FF' + - uid: 8308 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4581 + color: '#990000FF' + - uid: 8309 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-199.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4583 + color: '#990000FF' + - uid: 8310 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4585 + color: '#990000FF' + - uid: 8311 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4589 + color: '#990000FF' + - uid: 8312 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-194.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4590 + color: '#990000FF' + - uid: 8313 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-217.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4591 + color: '#0055CCFF' + - uid: 8314 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-218.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4592 + color: '#0055CCFF' + - uid: 8315 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-221.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4598 + color: '#990000FF' + - uid: 8316 components: - type: Transform rot: -1.5707963267948966 rad @@ -55001,7 +54388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4599 + - uid: 8317 components: - type: Transform rot: -1.5707963267948966 rad @@ -55009,7 +54396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4600 + - uid: 8318 components: - type: Transform rot: -1.5707963267948966 rad @@ -55017,132 +54404,132 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4601 + - uid: 8319 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-213.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4602 + color: '#0055CCFF' + - uid: 8320 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-207.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4603 + color: '#0055CCFF' + - uid: 8321 components: - type: Transform pos: -19.5,-239.5 parent: 2 - - uid: 4604 + - uid: 8322 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-196.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4605 + color: '#0055CCFF' + - uid: 8323 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-193.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4606 + color: '#0055CCFF' + - uid: 8324 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4607 + color: '#0055CCFF' + - uid: 8325 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4609 + color: '#0055CCFF' + - uid: 8326 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-191.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4610 + color: '#0055CCFF' + - uid: 8327 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-204.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4611 + color: '#0055CCFF' + - uid: 8328 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4613 + color: '#0055CCFF' + - uid: 8329 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-209.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4639 + color: '#0055CCFF' + - uid: 8330 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4659 + color: '#990000FF' + - uid: 8331 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-196.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4660 + color: '#990000FF' + - uid: 8332 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-195.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4661 + color: '#990000FF' + - uid: 8333 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-192.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4663 + color: '#990000FF' + - uid: 8334 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-191.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4664 + color: '#990000FF' + - uid: 8335 components: - type: Transform anchored: False @@ -55154,111 +54541,103 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 4665 + - uid: 8336 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4667 + color: '#990000FF' + - uid: 8337 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4669 + color: '#990000FF' + - uid: 8338 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4671 + color: '#990000FF' + - uid: 8339 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4708 + color: '#990000FF' + - uid: 8340 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4709 + color: '#0055CCFF' + - uid: 8341 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4740 + color: '#990000FF' + - uid: 8342 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4741 + color: '#0055CCFF' + - uid: 8343 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4743 + color: '#0055CCFF' + - uid: 8344 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4744 + color: '#0055CCFF' + - uid: 8345 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-192.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-194.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4746 + color: '#0055CCFF' + - uid: 8346 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-211.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4747 + color: '#0055CCFF' + - uid: 8347 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-212.5 + pos: 0.5,-220.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4749 + color: '#0055CCFF' + - uid: 8348 components: - type: Transform rot: -1.5707963267948966 rad @@ -55266,83 +54645,61 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4778 + - uid: 8349 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4779 + color: '#0055CCFF' + - uid: 8350 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4849 + color: '#990000FF' + - uid: 8351 components: - type: Transform pos: 17.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4896 + color: '#0055CCFF' + - uid: 8352 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-198.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4924 - components: - - type: Transform - pos: 1.5,-193.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4945 + color: '#0055CCFF' + - uid: 8353 components: - type: Transform pos: 0.5,-170.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4947 - components: - - type: Transform - pos: 0.5,-167.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-210.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4983 + color: '#0055CCFF' + - uid: 8354 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-201.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4999 + color: '#0055CCFF' + - uid: 8355 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-204.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5033 + color: '#990000FF' + - uid: 8356 components: - type: Transform rot: -1.5707963267948966 rad @@ -55350,7 +54707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5034 + - uid: 8357 components: - type: Transform rot: -1.5707963267948966 rad @@ -55358,7 +54715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5035 + - uid: 8358 components: - type: Transform rot: -1.5707963267948966 rad @@ -55366,371 +54723,331 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5038 + - uid: 8359 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-215.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5039 + color: '#0055CCFF' + - uid: 8360 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-216.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5044 + color: '#0055CCFF' + - uid: 8361 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-222.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5045 + color: '#0055CCFF' + - uid: 8362 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-223.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5046 + color: '#0055CCFF' + - uid: 8363 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-224.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5047 + color: '#0055CCFF' + - uid: 8364 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-225.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5048 + color: '#0055CCFF' + - uid: 8365 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-226.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-227.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-228.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5051 + color: '#0055CCFF' + - uid: 8366 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5053 + color: '#0055CCFF' + - uid: 8367 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-231.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5054 + color: '#0055CCFF' + - uid: 8368 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-232.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5055 + color: '#0055CCFF' + - uid: 8369 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-233.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5056 + color: '#0055CCFF' + - uid: 8370 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-234.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5058 + color: '#0055CCFF' + - uid: 8371 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-236.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-237.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5060 + color: '#0055CCFF' + - uid: 8372 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-238.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-239.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5062 + color: '#0055CCFF' + - uid: 8373 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-240.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5064 + color: '#0055CCFF' + - uid: 8374 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-242.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5074 + color: '#0055CCFF' + - uid: 8375 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5075 + color: '#0055CCFF' + - uid: 8376 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5076 + color: '#0055CCFF' + - uid: 8377 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5078 + color: '#0055CCFF' + - uid: 8378 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-190.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5090 + color: '#990000FF' + - uid: 8379 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5091 + color: '#0055CCFF' + - uid: 8380 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5098 + color: '#0055CCFF' + - uid: 8381 components: - type: Transform pos: -4.5,-199.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5099 + - uid: 8382 components: - type: Transform pos: -4.5,-198.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5104 + - uid: 8383 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5105 + color: '#0055CCFF' + - uid: 8384 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5106 + color: '#0055CCFF' + - uid: 8385 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5109 + color: '#0055CCFF' + - uid: 8386 components: - type: Transform pos: 17.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5113 + color: '#0055CCFF' + - uid: 8387 components: - type: Transform pos: -4.5,-203.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5114 + color: '#0055CCFF' + - uid: 8388 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5115 + color: '#0055CCFF' + - uid: 8389 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5116 + color: '#0055CCFF' + - uid: 8390 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5117 + color: '#0055CCFF' + - uid: 8391 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5138 + color: '#0055CCFF' + - uid: 8392 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5139 + color: '#0055CCFF' + - uid: 8393 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5141 + color: '#0055CCFF' + - uid: 8394 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5142 + color: '#0055CCFF' + - uid: 8395 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5143 + color: '#0055CCFF' + - uid: 8396 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5145 + color: '#0055CCFF' + - uid: 8397 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5146 + color: '#0055CCFF' + - uid: 8398 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5147 + color: '#0055CCFF' + - uid: 8399 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5166 + color: '#0055CCFF' + - uid: 8400 components: - type: Transform rot: -1.5707963267948966 rad @@ -55738,15 +55055,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5167 + - uid: 8401 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5168 + color: '#990000FF' + - uid: 8402 components: - type: Transform rot: -1.5707963267948966 rad @@ -55754,7 +55071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5169 + - uid: 8403 components: - type: Transform rot: -1.5707963267948966 rad @@ -55762,7 +55079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5191 + - uid: 8404 components: - type: Transform rot: -1.5707963267948966 rad @@ -55770,7 +55087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5192 + - uid: 8405 components: - type: Transform rot: -1.5707963267948966 rad @@ -55778,7 +55095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5193 + - uid: 8406 components: - type: Transform rot: -1.5707963267948966 rad @@ -55786,383 +55103,343 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5195 + - uid: 8407 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5196 + color: '#990000FF' + - uid: 8408 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5197 + color: '#990000FF' + - uid: 8409 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-229.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5248 + color: '#990000FF' + - uid: 8410 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5250 + color: '#990000FF' + - uid: 8411 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-177.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5254 + color: '#990000FF' + - uid: 8412 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5255 + color: '#0055CCFF' + - uid: 8413 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5257 + color: '#0055CCFF' + - uid: 8414 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5258 + color: '#0055CCFF' + - uid: 8415 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5264 + color: '#0055CCFF' + - uid: 8416 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5265 + color: '#990000FF' + - uid: 8417 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5266 + color: '#990000FF' + - uid: 8418 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5267 + color: '#990000FF' + - uid: 8419 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5268 + color: '#990000FF' + - uid: 8420 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5269 + color: '#990000FF' + - uid: 8421 components: - type: Transform pos: 1.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5270 + color: '#990000FF' + - uid: 8422 components: - type: Transform pos: 1.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5271 + color: '#990000FF' + - uid: 8423 components: - type: Transform pos: 1.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5272 + color: '#990000FF' + - uid: 8424 components: - type: Transform pos: 1.5,-171.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5273 + color: '#990000FF' + - uid: 8425 components: - type: Transform pos: 1.5,-170.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5285 + color: '#990000FF' + - uid: 8426 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5286 + color: '#0055CCFF' + - uid: 8427 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5287 + color: '#0055CCFF' + - uid: 8428 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5292 + color: '#0055CCFF' + - uid: 8429 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5297 + color: '#0055CCFF' + - uid: 8430 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5298 + color: '#0055CCFF' + - uid: 8431 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5299 + color: '#0055CCFF' + - uid: 8432 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-168.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5305 + color: '#990000FF' + - uid: 8433 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5306 + color: '#0055CCFF' + - uid: 8434 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5308 + color: '#0055CCFF' + - uid: 8435 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5309 + color: '#990000FF' + - uid: 8436 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5310 + color: '#990000FF' + - uid: 8437 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5314 + color: '#990000FF' + - uid: 8438 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-175.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5316 + color: '#0055CCFF' + - uid: 8439 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-176.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5336 + color: '#0055CCFF' + - uid: 8440 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5339 + color: '#990000FF' + - uid: 8441 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-260.5 parent: 2 - - uid: 5341 + - uid: 8442 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5342 + color: '#990000FF' + - uid: 8443 components: - type: Transform pos: 4.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5368 + color: '#990000FF' + - uid: 8444 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-229.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5369 + color: '#990000FF' + - uid: 8445 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-234.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5370 + color: '#990000FF' + - uid: 8446 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-233.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5371 + color: '#990000FF' + - uid: 8447 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-232.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5372 + color: '#990000FF' + - uid: 8448 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5373 + color: '#990000FF' + - uid: 8449 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-231.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5374 + color: '#990000FF' + - uid: 8450 components: - type: Transform rot: 3.141592653589793 rad @@ -56170,7 +55447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5375 + - uid: 8451 components: - type: Transform rot: 3.141592653589793 rad @@ -56178,7 +55455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5376 + - uid: 8452 components: - type: Transform rot: 3.141592653589793 rad @@ -56186,7 +55463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5377 + - uid: 8453 components: - type: Transform rot: 3.141592653589793 rad @@ -56194,7 +55471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5378 + - uid: 8454 components: - type: Transform rot: 3.141592653589793 rad @@ -56202,1228 +55479,1146 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-220.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5401 + - uid: 8455 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5418 + color: '#0055CCFF' + - uid: 8456 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-249.5 parent: 2 - - uid: 5486 + - uid: 8457 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5662 + color: '#990000FF' + - uid: 8458 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-244.5 parent: 2 - - uid: 6046 + - uid: 8459 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-245.5 parent: 2 - - uid: 6061 + - uid: 8460 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-245.5 parent: 2 - - uid: 6255 + - uid: 8461 components: - type: Transform pos: -15.5,-244.5 parent: 2 - - uid: 6389 + - uid: 8462 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-114.5 parent: 2 - - uid: 6677 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-366.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8464 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6696 + color: '#0055CCFF' + - uid: 8465 components: - type: Transform pos: 0.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6698 + color: '#0055CCFF' + - uid: 8466 components: - type: Transform pos: 0.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6700 + color: '#0055CCFF' + - uid: 8467 components: - type: Transform pos: 0.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6702 + color: '#0055CCFF' + - uid: 8468 components: - type: Transform pos: 0.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6705 + color: '#0055CCFF' + - uid: 8469 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6708 + color: '#0055CCFF' + - uid: 8470 components: - type: Transform pos: 0.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6709 + color: '#0055CCFF' + - uid: 8471 components: - type: Transform pos: 0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6710 + color: '#0055CCFF' + - uid: 8472 components: - type: Transform pos: 16.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6715 + color: '#990000FF' + - uid: 8473 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6716 + color: '#0055CCFF' + - uid: 8474 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6717 + color: '#990000FF' + - uid: 8475 components: - type: Transform pos: 0.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6718 + color: '#0055CCFF' + - uid: 8476 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6724 + color: '#990000FF' + - uid: 8477 components: - type: Transform pos: -0.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-256.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6729 + color: '#990000FF' + - uid: 8478 components: - type: Transform pos: -0.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6730 - components: - - type: Transform - pos: 0.5,-253.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6742 + color: '#990000FF' + - uid: 8479 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6744 + color: '#990000FF' + - uid: 8480 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6800 + color: '#990000FF' + - uid: 8481 components: - type: Transform pos: -9.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6812 + color: '#990000FF' + - uid: 8482 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6820 + color: '#990000FF' + - uid: 8483 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6824 - components: - - type: Transform - pos: -0.5,-255.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6825 + color: '#990000FF' + - uid: 8484 components: - type: Transform pos: -0.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6826 + color: '#990000FF' + - uid: 8485 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6830 + color: '#990000FF' + - uid: 8486 components: - type: Transform pos: -0.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6832 + color: '#990000FF' + - uid: 8487 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6835 + color: '#990000FF' + - uid: 8488 components: - type: Transform pos: 0.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6838 + color: '#0055CCFF' + - uid: 8489 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6839 + color: '#0055CCFF' + - uid: 8490 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-248.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6844 + color: '#0055CCFF' + - uid: 8491 components: - type: Transform pos: 0.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6846 + color: '#0055CCFF' + - uid: 8492 components: - type: Transform pos: 16.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6847 + color: '#990000FF' + - uid: 8493 components: - type: Transform pos: 16.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6848 + color: '#990000FF' + - uid: 8494 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6849 + color: '#0055CCFF' + - uid: 8495 components: - type: Transform pos: 0.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6850 + color: '#0055CCFF' + - uid: 8496 components: - type: Transform pos: 0.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6851 + color: '#0055CCFF' + - uid: 8497 components: - type: Transform pos: 0.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6854 + color: '#0055CCFF' + - uid: 8498 components: - type: Transform pos: 16.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6859 + color: '#990000FF' + - uid: 8499 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6860 + color: '#990000FF' + - uid: 8500 components: - type: Transform pos: 15.5,-252.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6890 + color: '#0055CCFF' + - uid: 8501 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-253.5 parent: 2 - - uid: 6891 + - uid: 8502 components: - type: Transform pos: -9.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6910 + color: '#990000FF' + - uid: 8503 components: - type: Transform pos: -9.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-171.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7203 + color: '#990000FF' + - uid: 8505 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-199.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7213 + color: '#0055CCFF' + - uid: 8506 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-245.5 parent: 2 - - uid: 7239 + - uid: 8507 components: - type: Transform pos: 16.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7361 + color: '#990000FF' + - uid: 8508 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7376 + color: '#990000FF' + - uid: 8509 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7417 + color: '#0055CCFF' + - uid: 8510 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7429 + color: '#990000FF' + - uid: 8511 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-253.5 parent: 2 - - uid: 7442 + - uid: 8512 components: - type: Transform pos: 17.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7448 + color: '#0055CCFF' + - uid: 8513 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7460 + color: '#990000FF' + - uid: 8514 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7482 + color: '#990000FF' + - uid: 8515 components: - type: Transform pos: 0.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7491 + color: '#0055CCFF' + - uid: 8516 components: - type: Transform pos: 4.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7493 + color: '#990000FF' + - uid: 8517 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7495 + color: '#990000FF' + - uid: 8518 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7501 + color: '#0055CCFF' + - uid: 8519 components: - type: Transform pos: 0.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7502 - components: - - type: Transform - pos: 0.5,-264.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7559 + color: '#0055CCFF' + - uid: 8520 components: - type: Transform pos: 15.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7561 + color: '#0055CCFF' + - uid: 8521 components: - type: Transform pos: -0.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7564 + color: '#990000FF' + - uid: 8522 components: - type: Transform pos: 16.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7565 + color: '#990000FF' + - uid: 8523 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7567 + color: '#990000FF' + - uid: 8524 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7571 + color: '#0055CCFF' + - uid: 8525 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7573 + color: '#0055CCFF' + - uid: 8526 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7574 + color: '#0055CCFF' + - uid: 8527 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7578 + color: '#0055CCFF' + - uid: 8528 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7582 + color: '#0055CCFF' + - uid: 8529 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7768 + color: '#0055CCFF' + - uid: 8530 components: - type: Transform pos: 0.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7774 + color: '#0055CCFF' + - uid: 8531 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7816 + color: '#0055CCFF' + - uid: 8532 components: - type: Transform pos: 15.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7819 + color: '#0055CCFF' + - uid: 8533 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7825 + color: '#990000FF' + - uid: 8534 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7826 + color: '#0055CCFF' + - uid: 8535 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7845 + color: '#0055CCFF' + - uid: 8536 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7849 + color: '#0055CCFF' + - uid: 8537 components: - type: Transform pos: -9.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7854 + color: '#990000FF' + - uid: 8538 components: - type: Transform pos: -9.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7856 + color: '#990000FF' + - uid: 8539 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7870 + color: '#990000FF' + - uid: 8540 components: - type: Transform pos: -9.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7872 + color: '#990000FF' + - uid: 8541 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7887 + color: '#990000FF' + - uid: 8542 components: - type: Transform pos: 5.5,-177.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7907 + color: '#0055CCFF' + - uid: 8543 components: - type: Transform pos: -17.5,-256.5 parent: 2 - - uid: 7911 + - uid: 8544 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7944 + color: '#990000FF' + - uid: 8545 components: - type: Transform pos: -15.5,-246.5 parent: 2 - - uid: 7947 + - uid: 8546 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-260.5 parent: 2 - - uid: 7949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-171.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7952 + - uid: 8548 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-245.5 parent: 2 - - uid: 8010 + - uid: 8549 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8013 + color: '#0055CCFF' + - uid: 8550 components: - type: Transform pos: 16.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8014 + color: '#990000FF' + - uid: 8551 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8015 + color: '#0055CCFF' + - uid: 8552 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8016 + color: '#990000FF' + - uid: 8553 components: - type: Transform pos: 17.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8027 + color: '#0055CCFF' + - uid: 8554 components: - type: Transform pos: 16.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8029 + color: '#990000FF' + - uid: 8555 components: - type: Transform pos: -0.5,-245.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8031 + color: '#990000FF' + - uid: 8556 components: - type: Transform pos: -0.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8032 + color: '#990000FF' + - uid: 8557 components: - type: Transform pos: -0.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8035 + color: '#990000FF' + - uid: 8558 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8039 + color: '#990000FF' + - uid: 8559 components: - type: Transform pos: 4.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8040 + color: '#990000FF' + - uid: 8560 components: - type: Transform pos: -0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-261.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8042 + color: '#990000FF' + - uid: 8561 components: - type: Transform pos: 4.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8043 + color: '#990000FF' + - uid: 8562 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8044 + color: '#990000FF' + - uid: 8563 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8046 + color: '#990000FF' + - uid: 8564 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8060 - components: - - type: Transform - pos: 15.5,-255.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8061 + color: '#990000FF' + - uid: 8565 components: - type: Transform pos: 15.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8062 + color: '#0055CCFF' + - uid: 8566 components: - type: Transform pos: 15.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8067 + color: '#0055CCFF' + - uid: 8567 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8068 + color: '#0055CCFF' + - uid: 8568 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8069 + color: '#0055CCFF' + - uid: 8569 components: - type: Transform pos: -0.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8077 + color: '#990000FF' + - uid: 8570 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8079 + color: '#0055CCFF' + - uid: 8571 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8082 + color: '#990000FF' + - uid: 8572 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-255.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8084 + color: '#990000FF' + - uid: 8573 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-250.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8085 + color: '#0055CCFF' + - uid: 8574 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8087 + color: '#990000FF' + - uid: 8575 components: - type: Transform pos: 15.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8088 + color: '#0055CCFF' + - uid: 8576 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8099 + color: '#990000FF' + - uid: 8577 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8126 + color: '#0055CCFF' + - uid: 8578 components: - type: Transform pos: 1.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8148 + color: '#990000FF' + - uid: 8579 components: - type: Transform pos: -19.5,-245.5 parent: 2 - - uid: 8160 + - uid: 8580 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8161 + color: '#990000FF' + - uid: 8581 components: - type: Transform pos: -0.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8162 + color: '#990000FF' + - uid: 8582 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8164 + color: '#0055CCFF' + - uid: 8583 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8181 + color: '#990000FF' + - uid: 8584 components: - type: Transform pos: 15.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8189 + color: '#0055CCFF' + - uid: 8585 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-254.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8190 + color: '#990000FF' + - uid: 8586 components: - type: Transform pos: 15.5,-253.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8207 + color: '#0055CCFF' + - uid: 8587 components: - type: Transform pos: 15.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8210 + color: '#0055CCFF' + - uid: 8588 components: - type: Transform pos: -17.5,-261.5 parent: 2 - - uid: 8212 + - uid: 8589 components: - type: Transform pos: -0.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-257.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8249 + color: '#990000FF' + - uid: 8590 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8250 + color: '#990000FF' + - uid: 8591 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-258.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8375 + color: '#990000FF' + - uid: 8592 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8419 + color: '#0055CCFF' + - uid: 8593 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8487 + color: '#0055CCFF' + - uid: 8594 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8643 + color: '#990000FF' + - uid: 8595 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8747 + color: '#0055CCFF' + - uid: 8596 components: - type: Transform pos: 0.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8783 + color: '#0055CCFF' + - uid: 8597 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-266.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8853 + color: '#990000FF' + - uid: 8598 components: - type: Transform pos: 1.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8858 + color: '#990000FF' + - uid: 8599 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8861 + color: '#0055CCFF' + - uid: 8600 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8862 + color: '#0055CCFF' + - uid: 8601 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8872 + color: '#0055CCFF' + - uid: 8602 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-265.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8875 + color: '#0055CCFF' + - uid: 8603 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-267.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8884 + color: '#0055CCFF' + - uid: 8604 components: - type: Transform pos: 1.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8886 + color: '#990000FF' + - uid: 8605 components: - type: Transform pos: 1.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8887 + color: '#990000FF' + - uid: 8606 components: - type: Transform pos: 0.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8893 + color: '#0055CCFF' + - uid: 8607 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8899 + color: '#0055CCFF' + - uid: 8608 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-252.5 parent: 2 - - uid: 8903 + - uid: 8609 components: - type: Transform pos: 16.5,-247.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8909 + color: '#990000FF' + - uid: 8610 components: - type: Transform pos: 16.5,-246.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8922 + color: '#990000FF' + - uid: 8611 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-254.5 parent: 2 - - uid: 8967 + - uid: 8612 components: - type: Transform rot: 3.141592653589793 rad @@ -57431,231 +56626,229 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 9477 + - uid: 8613 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-14.5 parent: 2 - - uid: 9847 - components: + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8614 + components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9848 + color: '#0055CCFF' + - uid: 8615 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10012 + color: '#0055CCFF' + - uid: 8616 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10082 + color: '#0055CCFF' + - uid: 8617 components: - type: Transform pos: 9.5,-115.5 parent: 2 - - uid: 10087 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8618 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-114.5 parent: 2 - - uid: 10571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-345.5 - parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10711 + color: '#990000FF' + - uid: 8619 components: - type: Transform pos: 6.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10714 + color: '#990000FF' + - uid: 8620 components: - type: Transform pos: 6.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10715 + color: '#990000FF' + - uid: 8621 components: - type: Transform pos: 6.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10756 + color: '#990000FF' + - uid: 8622 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10760 + color: '#0055CCFF' + - uid: 8623 components: - type: Transform pos: -17.5,-262.5 parent: 2 - - uid: 10800 + - uid: 8624 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10963 + color: '#0055CCFF' + - uid: 8625 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10971 + color: '#0055CCFF' + - uid: 8626 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10996 + color: '#0055CCFF' + - uid: 8627 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11121 + color: '#0055CCFF' + - uid: 8628 components: - type: Transform pos: 0.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11187 + color: '#0055CCFF' + - uid: 8629 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11222 + color: '#0055CCFF' + - uid: 8630 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-313.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11425 + color: '#990000FF' + - uid: 8631 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11433 + color: '#0055CCFF' + - uid: 8632 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11550 + color: '#0055CCFF' + - uid: 8633 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11551 + color: '#0055CCFF' + - uid: 8634 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-250.5 parent: 2 - - uid: 11885 + - uid: 8635 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11888 + color: '#0055CCFF' + - uid: 8636 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-257.5 parent: 2 - - uid: 11889 + - uid: 8637 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 11890 + - uid: 8638 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-255.5 parent: 2 - - uid: 11891 + - uid: 8639 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-255.5 parent: 2 - - uid: 11938 + - uid: 8640 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-256.5 parent: 2 - - uid: 11939 + - uid: 8641 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 11946 + - uid: 8642 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-257.5 parent: 2 - - uid: 12031 + - uid: 8643 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-261.5 parent: 2 - - uid: 12052 + - uid: 8644 components: - type: Transform rot: -1.5707963267948966 rad @@ -57663,752 +56856,681 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 12135 + - uid: 8645 components: - type: Transform pos: 1.5,-242.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12141 + color: '#990000FF' + - uid: 8646 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12234 + color: '#0055CCFF' + - uid: 8647 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12235 + color: '#990000FF' + - uid: 8648 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12238 + color: '#990000FF' + - uid: 8649 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12248 + color: '#990000FF' + - uid: 8650 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-272.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-274.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12252 + color: '#0055CCFF' + - uid: 8651 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12253 + color: '#0055CCFF' + - uid: 8652 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12255 + color: '#0055CCFF' + - uid: 8653 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12256 + color: '#0055CCFF' + - uid: 8654 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12257 + color: '#0055CCFF' + - uid: 8655 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12258 + color: '#0055CCFF' + - uid: 8656 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12259 + color: '#0055CCFF' + - uid: 8657 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12260 + color: '#0055CCFF' + - uid: 8658 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12262 + color: '#0055CCFF' + - uid: 8659 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-286.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12265 + color: '#0055CCFF' + - uid: 8660 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12267 + color: '#0055CCFF' + - uid: 8661 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-290.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-291.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12269 + color: '#0055CCFF' + - uid: 8662 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-292.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-293.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12271 + color: '#0055CCFF' + - uid: 8663 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-294.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12272 + color: '#0055CCFF' + - uid: 8664 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12274 + color: '#990000FF' + - uid: 8665 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-296.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12277 + color: '#0055CCFF' + - uid: 8666 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12278 + color: '#990000FF' + - uid: 8667 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12279 + color: '#990000FF' + - uid: 8668 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12280 + color: '#990000FF' + - uid: 8669 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12281 + color: '#990000FF' + - uid: 8670 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12283 + color: '#990000FF' + - uid: 8671 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12284 + color: '#990000FF' + - uid: 8672 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12285 + color: '#990000FF' + - uid: 8673 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12286 + color: '#990000FF' + - uid: 8674 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12288 + color: '#990000FF' + - uid: 8675 components: - type: Transform pos: -5.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12289 + color: '#990000FF' + - uid: 8676 components: - type: Transform pos: -5.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12290 + color: '#990000FF' + - uid: 8677 components: - type: Transform pos: -5.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12291 + color: '#990000FF' + - uid: 8678 components: - type: Transform pos: -5.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12292 + color: '#990000FF' + - uid: 8679 components: - type: Transform pos: -5.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12293 + color: '#990000FF' + - uid: 8680 components: - type: Transform pos: -5.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12294 + color: '#990000FF' + - uid: 8681 components: - type: Transform pos: -5.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12295 + color: '#990000FF' + - uid: 8682 components: - type: Transform pos: -5.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12299 + color: '#990000FF' + - uid: 8683 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12300 + color: '#0055CCFF' + - uid: 8684 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12301 + color: '#0055CCFF' + - uid: 8685 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12302 + color: '#0055CCFF' + - uid: 8686 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12303 + color: '#0055CCFF' + - uid: 8687 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12304 + color: '#0055CCFF' + - uid: 8688 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12307 + color: '#0055CCFF' + - uid: 8689 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-281.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12308 + color: '#990000FF' + - uid: 8690 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-280.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12309 + color: '#990000FF' + - uid: 8691 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-279.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12310 + color: '#990000FF' + - uid: 8692 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-278.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12311 + color: '#990000FF' + - uid: 8693 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12312 + color: '#990000FF' + - uid: 8694 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-276.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12313 + color: '#990000FF' + - uid: 8695 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12314 + color: '#990000FF' + - uid: 8696 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-274.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12315 + color: '#990000FF' + - uid: 8697 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-272.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12318 + color: '#990000FF' + - uid: 8698 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12319 + color: '#990000FF' + - uid: 8699 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12321 + color: '#990000FF' + - uid: 8700 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12323 + color: '#990000FF' + - uid: 8701 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12327 + color: '#0055CCFF' + - uid: 8702 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12328 + color: '#0055CCFF' + - uid: 8703 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12329 + color: '#0055CCFF' + - uid: 8704 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12330 + color: '#0055CCFF' + - uid: 8705 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12337 + color: '#0055CCFF' + - uid: 8706 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12344 + color: '#0055CCFF' + - uid: 8707 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12346 + color: '#0055CCFF' + - uid: 8708 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12347 + color: '#0055CCFF' + - uid: 8709 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12348 + color: '#0055CCFF' + - uid: 8710 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12350 + color: '#0055CCFF' + - uid: 8711 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12351 + color: '#990000FF' + - uid: 8712 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-285.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12353 + color: '#990000FF' + - uid: 8713 components: - type: Transform pos: -0.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12354 + color: '#990000FF' + - uid: 8714 components: - type: Transform pos: -0.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12357 + color: '#990000FF' + - uid: 8715 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12358 + color: '#0055CCFF' + - uid: 8716 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12359 + color: '#0055CCFF' + - uid: 8717 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12360 + color: '#0055CCFF' + - uid: 8718 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12361 + color: '#0055CCFF' + - uid: 8719 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12365 + color: '#0055CCFF' + - uid: 8720 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12366 + color: '#0055CCFF' + - uid: 8721 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12370 + color: '#0055CCFF' + - uid: 8722 components: - type: Transform pos: 1.5,-296.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12377 + color: '#990000FF' + - uid: 8723 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12378 + color: '#0055CCFF' + - uid: 8724 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-297.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12380 + color: '#990000FF' + - uid: 8725 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12384 + color: '#0055CCFF' + - uid: 8726 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12392 + color: '#0055CCFF' + - uid: 8727 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12396 + color: '#990000FF' + - uid: 8728 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-320.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-318.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12401 + color: '#990000FF' + - uid: 8729 components: - type: Transform pos: 0.5,-320.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12402 + color: '#0055CCFF' + - uid: 8730 components: - type: Transform pos: 0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12403 - components: - - type: Transform - pos: 0.5,-318.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12406 + color: '#0055CCFF' + - uid: 8731 components: - type: Transform rot: 1.5707963267948966 rad @@ -58416,7 +57538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12407 + - uid: 8732 components: - type: Transform rot: 1.5707963267948966 rad @@ -58424,2550 +57546,2421 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12414 + - uid: 8733 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12417 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-315.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12418 + color: '#0055CCFF' + - uid: 8734 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12419 + color: '#0055CCFF' + - uid: 8735 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12420 + color: '#0055CCFF' + - uid: 8736 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-317.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12421 + color: '#990000FF' + - uid: 8737 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-316.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12424 + color: '#990000FF' + - uid: 8738 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12425 + color: '#0055CCFF' + - uid: 8739 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12426 + color: '#990000FF' + - uid: 8740 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-316.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12427 + color: '#0055CCFF' + - uid: 8741 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-317.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12431 + color: '#0055CCFF' + - uid: 8742 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12436 + color: '#990000FF' + - uid: 8743 + components: + - type: Transform + pos: -0.5,-318.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8744 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12437 + color: '#990000FF' + - uid: 8745 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12438 + color: '#990000FF' + - uid: 8746 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12443 + color: '#990000FF' + - uid: 8747 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-312.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12445 + color: '#990000FF' + - uid: 8748 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12446 + color: '#990000FF' + - uid: 8749 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12447 + color: '#990000FF' + - uid: 8750 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12448 + color: '#990000FF' + - uid: 8751 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12449 + color: '#0055CCFF' + - uid: 8752 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12450 + color: '#0055CCFF' + - uid: 8753 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12451 + color: '#0055CCFF' + - uid: 8754 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12452 + color: '#0055CCFF' + - uid: 8755 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-312.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12454 + color: '#0055CCFF' + - uid: 8756 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-313.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12455 + color: '#0055CCFF' + - uid: 8757 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12456 + color: '#0055CCFF' + - uid: 8758 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12457 + color: '#990000FF' + - uid: 8759 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12458 + color: '#990000FF' + - uid: 8760 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12459 + color: '#990000FF' + - uid: 8761 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12461 + color: '#990000FF' + - uid: 8762 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12462 + color: '#990000FF' + - uid: 8763 components: - type: Transform pos: -0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12463 + color: '#990000FF' + - uid: 8764 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12464 + color: '#0055CCFF' + - uid: 8765 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12465 + color: '#0055CCFF' + - uid: 8766 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12466 + color: '#0055CCFF' + - uid: 8767 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12467 + color: '#0055CCFF' + - uid: 8768 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12468 + color: '#0055CCFF' + - uid: 8769 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12477 + color: '#0055CCFF' + - uid: 8770 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12478 + color: '#0055CCFF' + - uid: 8771 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12479 + color: '#990000FF' + - uid: 8772 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12480 + color: '#990000FF' + - uid: 8773 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12481 + color: '#990000FF' + - uid: 8774 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12482 + color: '#0055CCFF' + - uid: 8775 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12483 + color: '#0055CCFF' + - uid: 8776 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12484 + color: '#990000FF' + - uid: 8777 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12485 + color: '#990000FF' + - uid: 8778 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12487 + color: '#990000FF' + - uid: 8779 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12488 + color: '#0055CCFF' + - uid: 8780 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12492 + color: '#0055CCFF' + - uid: 8781 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12493 + color: '#0055CCFF' + - uid: 8782 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12497 + color: '#990000FF' + - uid: 8783 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12499 + color: '#990000FF' + - uid: 8784 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12505 + color: '#990000FF' + - uid: 8785 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12506 + color: '#0055CCFF' + - uid: 8786 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12511 + color: '#990000FF' + - uid: 8787 components: - type: Transform pos: -0.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12512 + color: '#990000FF' + - uid: 8788 components: - type: Transform pos: -0.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12513 + color: '#990000FF' + - uid: 8789 components: - type: Transform pos: 0.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12519 + color: '#0055CCFF' + - uid: 8790 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-319.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12526 + color: '#990000FF' + - uid: 8791 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12527 + color: '#990000FF' + - uid: 8792 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12533 + color: '#990000FF' + - uid: 8793 components: - type: Transform pos: 10.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12534 + color: '#0055CCFF' + - uid: 8794 components: - type: Transform pos: 10.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12536 + color: '#0055CCFF' + - uid: 8795 components: - type: Transform pos: 10.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12537 + color: '#0055CCFF' + - uid: 8796 components: - type: Transform pos: 10.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12547 + color: '#0055CCFF' + - uid: 8797 components: - type: Transform pos: 7.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12548 + color: '#0055CCFF' + - uid: 8798 components: - type: Transform pos: 7.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12549 + color: '#0055CCFF' + - uid: 8799 components: - type: Transform pos: 7.5,-309.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12551 + color: '#0055CCFF' + - uid: 8800 components: - type: Transform pos: 8.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12552 + color: '#990000FF' + - uid: 8801 components: - type: Transform pos: 8.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12553 + color: '#990000FF' + - uid: 8802 components: - type: Transform pos: 8.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12555 + color: '#990000FF' + - uid: 8803 components: - type: Transform pos: 8.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12556 + color: '#990000FF' + - uid: 8804 components: - type: Transform pos: 8.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12557 + color: '#990000FF' + - uid: 8805 components: - type: Transform pos: 8.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12559 + color: '#990000FF' + - uid: 8806 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12561 + color: '#990000FF' + - uid: 8807 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12574 + color: '#0055CCFF' + - uid: 8808 components: - type: Transform pos: -0.5,-299.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12575 + color: '#990000FF' + - uid: 8809 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-305.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12583 + color: '#0055CCFF' + - uid: 8810 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12584 + color: '#0055CCFF' + - uid: 8811 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12586 + color: '#990000FF' + - uid: 8812 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12589 + color: '#0055CCFF' + - uid: 8813 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12590 + color: '#0055CCFF' + - uid: 8814 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12591 + color: '#990000FF' + - uid: 8815 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12592 + color: '#990000FF' + - uid: 8816 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-302.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12593 + color: '#0055CCFF' + - uid: 8817 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12594 + color: '#0055CCFF' + - uid: 8818 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-300.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12595 + color: '#0055CCFF' + - uid: 8819 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-299.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12596 + color: '#0055CCFF' + - uid: 8820 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12600 + color: '#0055CCFF' + - uid: 8821 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-301.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12601 + color: '#990000FF' + - uid: 8822 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-300.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12616 + color: '#990000FF' + - uid: 8823 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12617 + color: '#990000FF' + - uid: 8824 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12619 + color: '#990000FF' + - uid: 8825 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12620 + color: '#990000FF' + - uid: 8826 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12622 + color: '#990000FF' + - uid: 8827 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12642 + color: '#990000FF' + - uid: 8828 components: - type: Transform pos: 0.5,-322.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12643 - components: - - type: Transform - pos: 0.5,-323.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12644 + color: '#0055CCFF' + - uid: 8829 components: - type: Transform pos: 0.5,-324.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12645 - components: - - type: Transform - pos: 0.5,-325.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12646 - components: - - type: Transform - pos: 0.5,-329.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12647 + color: '#0055CCFF' + - uid: 8830 components: - type: Transform pos: 0.5,-326.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12656 + color: '#0055CCFF' + - uid: 8831 components: - type: Transform pos: 1.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12657 - components: - - type: Transform - pos: 1.5,-329.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12715 + color: '#990000FF' + - uid: 8832 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12716 + color: '#0055CCFF' + - uid: 8833 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12717 + color: '#0055CCFF' + - uid: 8834 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12719 + color: '#0055CCFF' + - uid: 8835 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12723 + color: '#990000FF' + - uid: 8836 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12724 + color: '#990000FF' + - uid: 8837 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12725 + color: '#990000FF' + - uid: 8838 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12726 + color: '#990000FF' + - uid: 8839 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12727 + color: '#990000FF' + - uid: 8840 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12728 + color: '#990000FF' + - uid: 8841 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12729 + color: '#990000FF' + - uid: 8842 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12730 + color: '#990000FF' + - uid: 8843 components: - type: Transform pos: 0.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12732 + color: '#0055CCFF' + - uid: 8844 components: - type: Transform pos: 0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12733 + color: '#0055CCFF' + - uid: 8845 components: - type: Transform pos: 0.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12734 + color: '#0055CCFF' + - uid: 8846 components: - type: Transform pos: 0.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12735 + color: '#0055CCFF' + - uid: 8847 components: - type: Transform pos: 0.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12736 + color: '#0055CCFF' + - uid: 8848 components: - type: Transform pos: 0.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12737 + color: '#0055CCFF' + - uid: 8849 components: - type: Transform pos: 0.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12738 + color: '#0055CCFF' + - uid: 8850 components: - type: Transform pos: 0.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12739 + color: '#0055CCFF' + - uid: 8851 components: - type: Transform pos: 0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12740 + color: '#0055CCFF' + - uid: 8852 components: - type: Transform pos: 0.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12741 - components: - - type: Transform - pos: 0.5,-342.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12742 + color: '#0055CCFF' + - uid: 8853 components: - type: Transform pos: 0.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12743 - components: - - type: Transform - pos: 0.5,-344.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12744 + color: '#0055CCFF' + - uid: 8854 components: - type: Transform pos: 0.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12745 + color: '#0055CCFF' + - uid: 8855 components: - type: Transform pos: 0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12747 + color: '#0055CCFF' + - uid: 8856 components: - type: Transform pos: 0.5,-349.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12748 + color: '#0055CCFF' + - uid: 8857 components: - type: Transform pos: 0.5,-350.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12749 + color: '#0055CCFF' + - uid: 8858 components: - type: Transform pos: 0.5,-351.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12750 + color: '#0055CCFF' + - uid: 8859 components: - type: Transform pos: 0.5,-352.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12751 + color: '#0055CCFF' + - uid: 8860 components: - type: Transform pos: 0.5,-353.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12753 + color: '#0055CCFF' + - uid: 8861 components: - type: Transform pos: 0.5,-355.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12756 + color: '#0055CCFF' + - uid: 8862 components: - type: Transform pos: 1.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12757 + color: '#990000FF' + - uid: 8863 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12758 + color: '#990000FF' + - uid: 8864 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12759 + color: '#990000FF' + - uid: 8865 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12760 + color: '#990000FF' + - uid: 8866 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12761 + color: '#990000FF' + - uid: 8867 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12762 + color: '#990000FF' + - uid: 8868 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12763 + color: '#990000FF' + - uid: 8869 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12764 + color: '#990000FF' + - uid: 8870 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12765 + color: '#990000FF' + - uid: 8871 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12766 + color: '#990000FF' + - uid: 8872 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12767 + color: '#990000FF' + - uid: 8873 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12769 + color: '#990000FF' + - uid: 8874 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12770 + color: '#990000FF' + - uid: 8875 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12778 + color: '#990000FF' + - uid: 8876 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12779 + color: '#990000FF' + - uid: 8877 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12780 + color: '#990000FF' + - uid: 8878 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12781 + color: '#990000FF' + - uid: 8879 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12783 + color: '#990000FF' + - uid: 8880 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12784 + color: '#990000FF' + - uid: 8881 components: - type: Transform pos: 1.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12785 + color: '#990000FF' + - uid: 8882 components: - type: Transform pos: 1.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12786 + color: '#990000FF' + - uid: 8883 components: - type: Transform pos: 1.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12787 + color: '#990000FF' + - uid: 8884 components: - type: Transform pos: 1.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12788 + color: '#990000FF' + - uid: 8885 components: - type: Transform pos: 1.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12789 + color: '#990000FF' + - uid: 8886 components: - type: Transform pos: 1.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12790 + color: '#990000FF' + - uid: 8887 components: - type: Transform pos: -4.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12791 + color: '#990000FF' + - uid: 8888 components: - type: Transform pos: -4.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12792 + color: '#990000FF' + - uid: 8889 components: - type: Transform pos: -4.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12793 + color: '#990000FF' + - uid: 8890 components: - type: Transform pos: -4.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12794 + color: '#990000FF' + - uid: 8891 components: - type: Transform pos: -4.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12795 + color: '#990000FF' + - uid: 8892 components: - type: Transform pos: -4.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12799 + color: '#990000FF' + - uid: 8893 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12800 + color: '#990000FF' + - uid: 8894 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12802 + color: '#990000FF' + - uid: 8895 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12803 + color: '#990000FF' + - uid: 8896 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12804 + color: '#990000FF' + - uid: 8897 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12805 + color: '#990000FF' + - uid: 8898 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-345.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12809 + color: '#990000FF' + - uid: 8899 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12810 + color: '#990000FF' + - uid: 8900 components: - type: Transform pos: -0.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12814 + color: '#990000FF' + - uid: 8901 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12815 + color: '#990000FF' + - uid: 8902 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12816 + color: '#990000FF' + - uid: 8903 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12826 + color: '#990000FF' + - uid: 8904 components: - type: Transform pos: 6.5,-15.5 parent: 2 - - uid: 12827 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8905 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12828 + color: '#990000FF' + - uid: 8906 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12829 + color: '#990000FF' + - uid: 8907 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12830 + color: '#990000FF' + - uid: 8908 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12832 + color: '#990000FF' + - uid: 8909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-344.5 + pos: 1.5,-167.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12833 + color: '#990000FF' + - uid: 8910 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12834 + color: '#0055CCFF' + - uid: 8911 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12835 + color: '#0055CCFF' + - uid: 8912 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12836 + color: '#0055CCFF' + - uid: 8913 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12839 + color: '#0055CCFF' + - uid: 8914 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12840 + color: '#0055CCFF' + - uid: 8915 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12845 + color: '#0055CCFF' + - uid: 8916 components: - type: Transform pos: -6.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12846 + color: '#0055CCFF' + - uid: 8917 components: - type: Transform pos: -6.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12847 + color: '#0055CCFF' + - uid: 8918 components: - type: Transform pos: -6.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12848 + color: '#0055CCFF' + - uid: 8919 components: - type: Transform pos: -6.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12849 + color: '#0055CCFF' + - uid: 8920 components: - type: Transform pos: -6.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12850 + color: '#0055CCFF' + - uid: 8921 components: - type: Transform pos: 7.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12851 + color: '#0055CCFF' + - uid: 8922 components: - type: Transform pos: 7.5,-332.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12852 + color: '#0055CCFF' + - uid: 8923 components: - type: Transform pos: 7.5,-333.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12853 + color: '#0055CCFF' + - uid: 8924 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-334.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12856 + color: '#0055CCFF' + - uid: 8925 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-336.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12857 + color: '#0055CCFF' + - uid: 8926 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12858 + color: '#0055CCFF' + - uid: 8927 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-338.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12859 + color: '#0055CCFF' + - uid: 8928 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-339.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12860 + color: '#0055CCFF' + - uid: 8929 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12861 + color: '#0055CCFF' + - uid: 8930 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-341.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12862 + color: '#0055CCFF' + - uid: 8931 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12863 + color: '#0055CCFF' + - uid: 8932 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12865 + color: '#0055CCFF' + - uid: 8933 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12867 + color: '#0055CCFF' + - uid: 8934 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-335.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-336.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12876 + color: '#0055CCFF' + - uid: 8935 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-344.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12877 + color: '#0055CCFF' + - uid: 8936 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12878 + color: '#0055CCFF' + - uid: 8937 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12882 + color: '#0055CCFF' + - uid: 8938 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12883 + color: '#0055CCFF' + - uid: 8939 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12884 + color: '#0055CCFF' + - uid: 8940 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12885 + color: '#0055CCFF' + - uid: 8941 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12888 + color: '#0055CCFF' + - uid: 8942 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12889 + color: '#0055CCFF' + - uid: 8943 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12890 + color: '#0055CCFF' + - uid: 8944 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12891 + color: '#0055CCFF' + - uid: 8945 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12892 + color: '#0055CCFF' + - uid: 8946 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12894 + color: '#0055CCFF' + - uid: 8947 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-347.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12899 + color: '#0055CCFF' + - uid: 8948 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12903 + color: '#0055CCFF' + - uid: 8949 components: - type: Transform pos: 7.5,-329.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12904 + color: '#0055CCFF' + - uid: 8950 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12905 + color: '#0055CCFF' + - uid: 8951 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12909 + color: '#0055CCFF' + - uid: 8952 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12916 + color: '#0055CCFF' + - uid: 8953 components: - type: Transform pos: 1.5,-355.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12917 + color: '#990000FF' + - uid: 8954 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12921 + color: '#990000FF' + - uid: 8955 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-356.5 + pos: -0.5,-220.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12922 + - uid: 8956 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-358.5 + pos: -0.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12923 + color: '#0055CCFF' + - uid: 8957 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-358.5 + pos: 3.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12924 + color: '#0055CCFF' + - uid: 8958 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-358.5 + pos: 2.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12925 + color: '#0055CCFF' + - uid: 8959 components: - type: Transform pos: 1.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12927 + color: '#990000FF' + - uid: 8960 components: - type: Transform pos: 0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12930 + color: '#0055CCFF' + - uid: 8961 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12931 + color: '#990000FF' + - uid: 8962 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12936 + color: '#990000FF' + - uid: 8963 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12937 + color: '#0055CCFF' + - uid: 8964 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12939 + color: '#0055CCFF' + - uid: 8965 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12940 + color: '#990000FF' + - uid: 8966 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12942 + color: '#990000FF' + - uid: 8967 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12950 + color: '#990000FF' + - uid: 8968 components: - type: Transform pos: -3.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12955 + color: '#0055CCFF' + - uid: 8969 components: - type: Transform pos: -3.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12956 + color: '#0055CCFF' + - uid: 8970 components: - type: Transform pos: -3.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12957 - components: - - type: Transform - pos: -3.5,-368.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12958 + color: '#0055CCFF' + - uid: 8971 components: - type: Transform pos: -3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12959 + color: '#0055CCFF' + - uid: 8972 components: - type: Transform pos: 4.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12960 - components: - - type: Transform - pos: 4.5,-368.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12961 + color: '#0055CCFF' + - uid: 8973 components: - type: Transform pos: 4.5,-367.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12962 + color: '#0055CCFF' + - uid: 8974 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12963 + color: '#0055CCFF' + - uid: 8975 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12964 + color: '#0055CCFF' + - uid: 8976 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12965 + color: '#0055CCFF' + - uid: 8977 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12966 + color: '#0055CCFF' + - uid: 8978 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12967 + color: '#0055CCFF' + - uid: 8979 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12969 + color: '#0055CCFF' + - uid: 8980 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12970 + color: '#0055CCFF' + - uid: 8981 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12971 + color: '#0055CCFF' + - uid: 8982 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12972 + color: '#0055CCFF' + - uid: 8983 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12973 + color: '#0055CCFF' + - uid: 8984 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12974 + color: '#0055CCFF' + - uid: 8985 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12975 + color: '#0055CCFF' + - uid: 8986 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12976 + color: '#0055CCFF' + - uid: 8987 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12977 + color: '#0055CCFF' + - uid: 8988 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12978 + color: '#0055CCFF' + - uid: 8989 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12979 + color: '#0055CCFF' + - uid: 8990 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13009 + color: '#0055CCFF' + - uid: 8991 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13010 + color: '#990000FF' + - uid: 8992 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-359.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13011 + color: '#990000FF' + - uid: 8993 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13013 + color: '#990000FF' + - uid: 8994 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13015 + color: '#990000FF' + - uid: 8995 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13016 + color: '#990000FF' + - uid: 8996 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13018 + color: '#990000FF' + - uid: 8997 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13019 + color: '#990000FF' + - uid: 8998 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13020 + color: '#990000FF' + - uid: 8999 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13023 + color: '#990000FF' + - uid: 9000 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-361.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13025 + color: '#990000FF' + - uid: 9001 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13028 + color: '#990000FF' + - uid: 9002 components: - type: Transform pos: -6.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13030 + color: '#990000FF' + - uid: 9003 components: - type: Transform pos: 7.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13046 + color: '#990000FF' + - uid: 9004 components: - type: Transform pos: 0.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13048 + color: '#990000FF' + - uid: 9005 components: - type: Transform pos: 0.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13049 + color: '#990000FF' + - uid: 9006 components: - type: Transform pos: 0.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13050 - components: - - type: Transform - pos: 0.5,-365.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13051 + color: '#990000FF' + - uid: 9007 components: - type: Transform pos: 0.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13058 + color: '#990000FF' + - uid: 9008 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-364.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13060 + color: '#990000FF' + - uid: 9009 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13062 + color: '#990000FF' + - uid: 9010 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-364.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13065 + color: '#990000FF' + - uid: 9011 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13070 + color: '#990000FF' + - uid: 9012 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-367.5 + pos: 7.5,-366.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13071 + color: '#990000FF' + - uid: 9013 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-368.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13084 + color: '#990000FF' + - uid: 9014 components: - type: Transform pos: -4.5,-370.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13085 + color: '#990000FF' + - uid: 9015 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13086 + color: '#990000FF' + - uid: 9016 components: - type: Transform pos: 5.5,-370.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13089 + color: '#990000FF' + - uid: 9017 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13090 + color: '#990000FF' + - uid: 9018 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13091 + color: '#990000FF' + - uid: 9019 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13092 + color: '#990000FF' + - uid: 9020 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13095 + color: '#990000FF' + - uid: 9021 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13096 + color: '#990000FF' + - uid: 9022 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13097 + color: '#990000FF' + - uid: 9023 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13098 + color: '#990000FF' + - uid: 9024 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13099 + color: '#990000FF' + - uid: 9025 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13101 + color: '#990000FF' + - uid: 9026 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13102 + color: '#990000FF' + - uid: 9027 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-369.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13138 + color: '#990000FF' + - uid: 9028 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13139 + color: '#0055CCFF' + - uid: 9029 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13140 + color: '#0055CCFF' + - uid: 9030 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13141 + color: '#0055CCFF' + - uid: 9031 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13142 + color: '#0055CCFF' + - uid: 9032 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13144 + color: '#0055CCFF' + - uid: 9033 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13228 + color: '#0055CCFF' + - uid: 9034 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13229 + color: '#990000FF' + - uid: 9035 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13230 + color: '#990000FF' + - uid: 9036 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13231 + color: '#990000FF' + - uid: 9037 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-200.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13232 + color: '#990000FF' + - uid: 9038 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13233 + color: '#0055CCFF' + - uid: 9039 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13234 + color: '#0055CCFF' + - uid: 9040 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13235 + color: '#0055CCFF' + - uid: 9041 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13245 + color: '#0055CCFF' + - uid: 9042 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-197.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13273 + color: '#0055CCFF' + - uid: 9043 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-263.5 parent: 2 - - uid: 13296 + - uid: 9044 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13428 + color: '#990000FF' + - uid: 9045 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 13470 + - uid: 9046 components: - type: Transform rot: 3.141592653589793 rad @@ -60975,7 +59968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 13473 + - uid: 9047 components: - type: Transform rot: 3.141592653589793 rad @@ -60983,7 +59976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 13997 + - uid: 9048 components: - type: Transform rot: 3.141592653589793 rad @@ -60991,28 +59984,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFD800FF' - - uid: 14299 + - uid: 9049 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14302 + color: '#990000FF' + - uid: 9050 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-263.5 parent: 2 - - uid: 14304 + - uid: 9051 components: - type: Transform pos: 16.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14424 + color: '#990000FF' + - uid: 9052 components: - type: Transform rot: -1.5707963267948966 rad @@ -61020,7 +60013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14444 + - uid: 9053 components: - type: Transform rot: -1.5707963267948966 rad @@ -61028,311 +60021,295 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14577 + - uid: 9054 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 14579 + - uid: 9055 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 14580 + - uid: 9056 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14581 + color: '#0055CCFF' + - uid: 9057 components: - type: Transform pos: -17.5,-252.5 parent: 2 - - uid: 14807 + - uid: 9058 + components: + - type: Transform + pos: 1.5,-166.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9059 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14808 + color: '#0055CCFF' + - uid: 9060 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14809 + color: '#0055CCFF' + - uid: 9061 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14810 + color: '#0055CCFF' + - uid: 9062 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14811 + color: '#0055CCFF' + - uid: 9063 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14812 + color: '#0055CCFF' + - uid: 9064 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14813 + color: '#0055CCFF' + - uid: 9065 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14814 + color: '#0055CCFF' + - uid: 9066 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14817 + color: '#0055CCFF' + - uid: 9067 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14818 + color: '#0055CCFF' + - uid: 9068 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14819 + color: '#0055CCFF' + - uid: 9069 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14820 + color: '#0055CCFF' + - uid: 9070 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14821 + color: '#0055CCFF' + - uid: 9071 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14822 + color: '#0055CCFF' + - uid: 9072 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14823 + color: '#0055CCFF' + - uid: 9073 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14824 + color: '#0055CCFF' + - uid: 9074 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14829 + color: '#0055CCFF' + - uid: 9075 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14830 + color: '#0055CCFF' + - uid: 9076 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14831 + color: '#0055CCFF' + - uid: 9077 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14832 + color: '#0055CCFF' + - uid: 9078 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14833 + color: '#0055CCFF' + - uid: 9079 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14834 + color: '#0055CCFF' + - uid: 9080 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14838 + color: '#0055CCFF' + - uid: 9081 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14839 + color: '#0055CCFF' + - uid: 9082 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14840 + color: '#0055CCFF' + - uid: 9083 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14841 + color: '#0055CCFF' + - uid: 9084 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14843 + color: '#0055CCFF' + - uid: 9085 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14844 + color: '#0055CCFF' + - uid: 9086 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14845 + color: '#0055CCFF' + - uid: 9087 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14846 + color: '#0055CCFF' + - uid: 9088 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14863 - components: - - type: Transform - pos: -3.5,-107.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14866 + color: '#0055CCFF' + - uid: 9089 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14867 + color: '#0055CCFF' + - uid: 9090 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14868 + color: '#0055CCFF' + - uid: 9091 components: - type: Transform rot: 3.141592653589793 rad @@ -61340,7 +60317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14869 + - uid: 9092 components: - type: Transform rot: 3.141592653589793 rad @@ -61348,7 +60325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14870 + - uid: 9093 components: - type: Transform rot: 3.141592653589793 rad @@ -61356,7 +60333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14871 + - uid: 9094 components: - type: Transform rot: 3.141592653589793 rad @@ -61364,7 +60341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14872 + - uid: 9095 components: - type: Transform rot: 3.141592653589793 rad @@ -61372,7 +60349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14873 + - uid: 9096 components: - type: Transform anchored: False @@ -61384,21 +60361,21 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 14892 + - uid: 9097 components: - type: Transform pos: -4.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14894 + color: '#0055CCFF' + - uid: 9098 components: - type: Transform pos: -4.5,-131.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14896 + color: '#0055CCFF' + - uid: 9099 components: - type: Transform rot: 3.141592653589793 rad @@ -61406,7 +60383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14897 + - uid: 9100 components: - type: Transform rot: 3.141592653589793 rad @@ -61414,7 +60391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14898 + - uid: 9101 components: - type: Transform rot: 3.141592653589793 rad @@ -61422,7 +60399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14899 + - uid: 9102 components: - type: Transform rot: 3.141592653589793 rad @@ -61430,7 +60407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14900 + - uid: 9103 components: - type: Transform rot: 3.141592653589793 rad @@ -61438,7 +60415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14901 + - uid: 9104 components: - type: Transform rot: 3.141592653589793 rad @@ -61446,7 +60423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14902 + - uid: 9105 components: - type: Transform rot: 3.141592653589793 rad @@ -61454,1987 +60431,2701 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 15043 + - uid: 9106 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-189.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15045 + color: '#0055CCFF' + - uid: 9107 components: - type: Transform pos: -4.5,-188.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15046 + color: '#0055CCFF' + - uid: 9108 components: - type: Transform pos: -4.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15047 + color: '#0055CCFF' + - uid: 9109 components: - type: Transform pos: -4.5,-186.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15048 + color: '#0055CCFF' + - uid: 9110 components: - type: Transform pos: -4.5,-185.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15099 + color: '#0055CCFF' + - uid: 9111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-190.5 + rot: 1.5707963267948966 rad + pos: 5.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15100 + color: '#990000FF' + - uid: 9112 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-190.5 + pos: 7.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15103 + color: '#0055CCFF' + - uid: 9113 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-189.5 + pos: 6.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15104 + color: '#0055CCFF' + - uid: 9114 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-158.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15105 + color: '#0055CCFF' + - uid: 9115 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-159.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15106 + color: '#0055CCFF' + - uid: 9116 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15107 + color: '#0055CCFF' + - uid: 9117 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-161.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15108 + color: '#0055CCFF' + - uid: 9118 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-162.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15109 + color: '#0055CCFF' + - uid: 9119 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15110 + color: '#0055CCFF' + - uid: 9120 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15120 + color: '#0055CCFF' + - uid: 9121 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-156.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15121 + color: '#0055CCFF' + - uid: 9122 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-155.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15122 + color: '#0055CCFF' + - uid: 9123 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15123 + color: '#0055CCFF' + - uid: 9124 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-153.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15124 + color: '#0055CCFF' + - uid: 9125 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-152.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15166 + color: '#0055CCFF' + - uid: 9126 components: - type: Transform pos: 5.5,-272.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15179 + color: '#0055CCFF' + - uid: 9127 components: - type: Transform pos: 5.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15180 + color: '#0055CCFF' + - uid: 9128 components: - type: Transform pos: 5.5,-270.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15181 + color: '#0055CCFF' + - uid: 9129 components: - type: Transform pos: 5.5,-269.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15182 + color: '#0055CCFF' + - uid: 9130 components: - type: Transform pos: 5.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15183 + color: '#0055CCFF' + - uid: 9131 components: - type: Transform pos: 5.5,-267.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15184 + color: '#0055CCFF' + - uid: 9132 components: - type: Transform pos: 5.5,-266.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15196 + color: '#0055CCFF' + - uid: 9133 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15197 + color: '#0055CCFF' + - uid: 9134 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15198 + color: '#0055CCFF' + - uid: 9135 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15199 + color: '#0055CCFF' + - uid: 9136 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15201 + color: '#0055CCFF' + - uid: 9137 components: - type: Transform pos: 5.5,-288.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15202 + color: '#0055CCFF' + - uid: 9138 components: - type: Transform pos: 5.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15203 + color: '#0055CCFF' + - uid: 9139 components: - type: Transform pos: 5.5,-290.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15204 + color: '#0055CCFF' + - uid: 9140 components: - type: Transform pos: 5.5,-291.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15205 + color: '#0055CCFF' + - uid: 9141 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-326.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15206 + color: '#0055CCFF' + - uid: 9142 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-325.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16480 + color: '#0055CCFF' + - uid: 9143 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16481 + color: '#990000FF' + - uid: 9144 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16485 + color: '#990000FF' + - uid: 9145 components: - type: Transform pos: -3.5,-173.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16486 + color: '#990000FF' + - uid: 9146 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-174.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16503 + color: '#990000FF' + - uid: 9147 components: - type: Transform pos: 1.5,-169.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16684 + color: '#990000FF' + - uid: 9148 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16685 + color: '#0055CCFF' + - uid: 9149 components: - type: Transform pos: -3.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16686 + color: '#0055CCFF' + - uid: 9150 components: - type: Transform pos: -3.5,-362.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16868 + color: '#0055CCFF' + - uid: 9151 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16978 + color: '#0055CCFF' + - uid: 9152 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16980 + color: '#990000FF' + - uid: 9153 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16982 + color: '#990000FF' + - uid: 9154 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16983 + color: '#990000FF' + - uid: 9155 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16984 + color: '#0055CCFF' + - uid: 9156 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16985 + color: '#0055CCFF' + - uid: 9157 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16986 + color: '#0055CCFF' + - uid: 9158 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16987 + color: '#0055CCFF' + - uid: 9159 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16989 + color: '#0055CCFF' + - uid: 9160 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16992 + color: '#0055CCFF' + - uid: 9161 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16993 + color: '#0055CCFF' + - uid: 9162 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16994 + color: '#0055CCFF' + - uid: 9163 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 9220 + components: + - type: Transform + pos: 0.5,-169.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 438 + - uid: 7620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-169.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-112.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-115.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-118.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-121.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9164 + components: + - type: Transform + pos: 1.5,-358.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-124.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-119.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9167 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 584 + color: '#990000FF' + - uid: 9168 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 714 + color: '#0055CCFF' + - uid: 9169 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 741 + color: '#990000FF' + - uid: 9170 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 760 + color: '#990000FF' + - uid: 9171 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 785 + color: '#990000FF' + - uid: 9172 components: - type: Transform pos: 0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 809 + color: '#0055CCFF' + - uid: 9173 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 816 + color: '#0055CCFF' + - uid: 9174 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1008 + color: '#0055CCFF' + - uid: 9175 + components: + - type: Transform + pos: -0.5,-297.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-319.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-318.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9179 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1026 + color: '#990000FF' + - uid: 9180 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1053 + color: '#0055CCFF' + - uid: 9181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-220.5 + parent: 2 + - uid: 9182 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1067 + color: '#0055CCFF' + - uid: 9183 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1148 + color: '#0055CCFF' + - uid: 9184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-249.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9185 components: - type: Transform pos: -0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1174 + color: '#990000FF' + - uid: 9186 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1180 + color: '#990000FF' + - uid: 9187 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1181 + color: '#0055CCFF' + - uid: 9188 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1188 + color: '#0055CCFF' + - uid: 9189 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1209 + color: '#990000FF' + - uid: 9190 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1256 + color: '#990000FF' + - uid: 9191 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1262 + color: '#0055CCFF' + - uid: 9192 components: - type: Transform pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1267 + color: '#990000FF' + - uid: 9193 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1269 + color: '#990000FF' + - uid: 9194 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1273 + color: '#990000FF' + - uid: 9195 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1289 + color: '#0055CCFF' + - uid: 9196 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1301 + color: '#990000FF' + - uid: 9197 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1337 + color: '#990000FF' + - uid: 9198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9199 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1355 + color: '#990000FF' + - uid: 9200 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1360 + color: '#0055CCFF' + - uid: 9201 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1362 + color: '#990000FF' + - uid: 9202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-68.5 + pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1365 + color: '#990000FF' + - uid: 9203 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1374 + color: '#0055CCFF' + - uid: 9204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-138.5 + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1386 + color: '#0055CCFF' + - uid: 9205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9206 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1418 + color: '#990000FF' + - uid: 9207 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1660 + color: '#0055CCFF' + - uid: 9208 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1679 + color: '#0055CCFF' + - uid: 9209 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1738 + color: '#0055CCFF' + - uid: 9210 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1857 + color: '#0055CCFF' + - uid: 9211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9212 components: - type: Transform pos: -0.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2098 + color: '#990000FF' + - uid: 9213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9214 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2243 + color: '#0055CCFF' + - uid: 9215 components: - type: Transform pos: -3.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2892 + color: '#990000FF' + - uid: 9216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-289.5 + rot: -1.5707963267948966 rad + pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2913 + color: '#0055CCFF' + - uid: 9217 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-169.5 + pos: 0.5,-289.5 parent: 2 - - uid: 2916 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9219 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-200.5 parent: 2 - - uid: 2923 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-169.5 + rot: 3.141592653589793 rad + pos: -2.5,-170.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2938 + - uid: 9223 components: - type: Transform - pos: -1.5,-169.5 + rot: -1.5707963267948966 rad + pos: 0.5,-48.5 parent: 2 - - uid: 3009 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-169.5 + rot: 1.5707963267948966 rad + pos: 0.5,-50.5 parent: 2 - - uid: 3264 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9225 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3283 + color: '#990000FF' + - uid: 9226 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3288 + color: '#990000FF' + - uid: 9227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9228 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3293 + color: '#990000FF' + - uid: 9229 components: - type: Transform pos: 4.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3311 + color: '#990000FF' + - uid: 9230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-86.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9232 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3319 + color: '#990000FF' + - uid: 9233 components: - type: Transform pos: -0.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3323 + color: '#990000FF' + - uid: 9234 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3331 + color: '#990000FF' + - uid: 9235 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3334 + color: '#0055CCFF' + - uid: 9236 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3363 + color: '#0055CCFF' + - uid: 9237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-102.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-104.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-131.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9240 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3386 + color: '#0055CCFF' + - uid: 9241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-129.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9242 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3401 + color: '#0055CCFF' + - uid: 9243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-260.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9244 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3407 + color: '#0055CCFF' + - uid: 9245 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3408 + color: '#0055CCFF' + - uid: 9246 components: - type: Transform pos: 1.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3410 + color: '#0055CCFF' + - uid: 9247 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3415 + color: '#0055CCFF' + - uid: 9248 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3426 + color: '#0055CCFF' + - uid: 9249 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-127.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3435 + color: '#0055CCFF' + - uid: 9250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-158.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-156.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9252 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3439 + color: '#0055CCFF' + - uid: 9253 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3441 + color: '#0055CCFF' + - uid: 9254 components: - type: Transform pos: -6.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3444 + color: '#0055CCFF' + - uid: 9255 components: - type: Transform pos: -0.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3448 + color: '#0055CCFF' + - uid: 9256 components: - type: Transform pos: 3.5,-109.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3509 + color: '#0055CCFF' + - uid: 9257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-183.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9258 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-125.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3515 + color: '#990000FF' + - uid: 9259 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-113.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3518 + color: '#990000FF' + - uid: 9260 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-116.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3521 + color: '#990000FF' + - uid: 9261 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-119.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3554 + color: '#990000FF' + - uid: 9262 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3568 + color: '#990000FF' + - uid: 9263 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-120.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3585 + color: '#990000FF' + - uid: 9264 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3586 + color: '#990000FF' + - uid: 9265 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-122.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3616 + color: '#990000FF' + - uid: 9266 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3633 + color: '#990000FF' + - uid: 9267 components: - type: Transform pos: -1.5,-108.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3646 + color: '#990000FF' + - uid: 9268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-185.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9269 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-137.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3671 + color: '#990000FF' + - uid: 9270 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-138.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3759 + color: '#0055CCFF' + - uid: 9271 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3930 + color: '#0055CCFF' + - uid: 9272 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-146.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3933 + color: '#0055CCFF' + - uid: 9273 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3938 + color: '#0055CCFF' + - uid: 9274 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3962 + color: '#0055CCFF' + - uid: 9275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-221.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9276 components: - type: Transform pos: 4.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3970 + color: '#990000FF' + - uid: 9277 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3973 + color: '#990000FF' + - uid: 9278 components: - type: Transform pos: -0.5,-135.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3984 + color: '#990000FF' + - uid: 9279 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-140.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3996 + color: '#990000FF' + - uid: 9280 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4023 + color: '#990000FF' + - uid: 9281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-194.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9283 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4053 + color: '#0055CCFF' + - uid: 9284 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4070 + color: '#990000FF' + - uid: 9285 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4111 + color: '#0055CCFF' + - uid: 9286 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-166.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4131 + color: '#0055CCFF' + - uid: 9287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-210.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-227.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9289 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4134 + color: '#0055CCFF' + - uid: 9290 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4141 + color: '#0055CCFF' + - uid: 9291 components: - type: Transform pos: -0.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4155 + color: '#990000FF' + - uid: 9292 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4454 + color: '#990000FF' + - uid: 9293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-229.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-237.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9295 components: - type: Transform pos: -4.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4640 + color: '#990000FF' + - uid: 9296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-239.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9297 + components: + - type: Transform + pos: 4.5,-229.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9298 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4683 + color: '#990000FF' + - uid: 9299 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4733 + color: '#0055CCFF' + - uid: 9300 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-114.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5000 + color: '#990000FF' + - uid: 9301 + components: + - type: Transform + pos: 3.5,-175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-256.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9303 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5037 + color: '#990000FF' + - uid: 9304 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-214.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5040 + color: '#0055CCFF' + - uid: 9305 components: - type: Transform pos: -0.5,-206.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5112 + color: '#990000FF' + - uid: 9306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-274.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-291.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9308 components: - type: Transform pos: -4.5,-202.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5122 + color: '#0055CCFF' + - uid: 9309 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-208.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5124 + color: '#0055CCFF' + - uid: 9310 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-205.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5200 + color: '#0055CCFF' + - uid: 9311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-293.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-272.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9313 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5201 + color: '#0055CCFF' + - uid: 9314 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-235.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5249 + color: '#0055CCFF' + - uid: 9315 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5276 + color: '#990000FF' + - uid: 9316 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-162.5 + pos: 0.5,-323.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5333 + color: '#0055CCFF' + - uid: 9317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-174.5 + pos: 0.5,-325.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5352 + color: '#0055CCFF' + - uid: 9318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-342.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-162.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-344.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-345.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-344.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9323 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-259.5 parent: 2 - - uid: 5499 + - uid: 9324 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-243.5 parent: 2 - - uid: 5894 + - uid: 9325 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6041 + color: '#0055CCFF' + - uid: 9326 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-243.5 parent: 2 - - uid: 6654 + - uid: 9327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-248.5 + rot: 1.5707963267948966 rad + pos: 0.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6707 + color: '#0055CCFF' + - uid: 9328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9329 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-248.5 + pos: 5.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6831 + color: '#0055CCFF' + - uid: 9330 components: - type: Transform pos: -0.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6853 + color: '#990000FF' + - uid: 9331 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9332 components: - type: Transform pos: 4.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6902 + color: '#990000FF' + - uid: 9333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-363.5 + pos: -2.5,-189.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6907 + color: '#0055CCFF' + - uid: 9334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-168.5 + rot: -1.5707963267948966 rad + pos: -3.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7199 + color: '#0055CCFF' + - uid: 9335 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-246.5 parent: 2 - - uid: 7466 + - uid: 9336 + components: + - type: Transform + pos: -1.5,-175.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9337 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7500 + color: '#990000FF' + - uid: 9338 + components: + - type: Transform + pos: 5.5,-138.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9339 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7549 + color: '#0055CCFF' + - uid: 9340 components: - type: Transform pos: 15.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7566 + color: '#0055CCFF' + - uid: 9341 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8011 + color: '#990000FF' + - uid: 9342 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8020 + color: '#990000FF' + - uid: 9343 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-261.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8038 + color: '#990000FF' + - uid: 9344 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-249.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8081 + color: '#990000FF' + - uid: 9345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9347 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-244.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8119 + color: '#990000FF' + - uid: 9348 components: - type: Transform pos: -6.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8151 + color: '#990000FF' + - uid: 9349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9350 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-245.5 parent: 2 - - uid: 8163 + - uid: 9351 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-256.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8365 + color: '#990000FF' + - uid: 9352 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8366 + color: '#0055CCFF' + - uid: 9353 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8777 + color: '#0055CCFF' + - uid: 9354 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8876 + color: '#0055CCFF' + - uid: 9355 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10151 + color: '#0055CCFF' + - uid: 9356 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10691 + color: '#0055CCFF' + - uid: 9357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9358 components: - type: Transform pos: 6.5,-14.5 parent: 2 - - uid: 10863 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9359 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-340.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12237 + color: '#990000FF' + - uid: 9360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-136.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-255.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-152.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9363 + components: + - type: Transform + pos: 4.5,-189.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9364 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-283.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12239 + color: '#990000FF' + - uid: 9365 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12242 + color: '#990000FF' + - uid: 9366 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12247 + color: '#990000FF' + - uid: 9367 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12249 + color: '#0055CCFF' + - uid: 9368 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12254 + color: '#990000FF' + - uid: 9369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-193.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9370 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-277.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12266 + color: '#0055CCFF' + - uid: 9371 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-295.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12276 + color: '#0055CCFF' + - uid: 9372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-177.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9373 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12282 + color: '#990000FF' + - uid: 9374 components: - type: Transform pos: -0.5,-282.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12317 + color: '#990000FF' + - uid: 9375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-174.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9376 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-271.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12325 + color: '#990000FF' + - uid: 9377 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-273.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12331 + color: '#0055CCFF' + - uid: 9378 components: - type: Transform pos: 10.5,-248.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12381 + color: '#0055CCFF' + - uid: 9379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-266.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9381 + components: + - type: Transform + pos: 5.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9382 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-348.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12397 + color: '#0055CCFF' + - uid: 9383 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-319.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12400 + color: '#990000FF' + - uid: 9384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-336.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9385 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-321.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12422 + color: '#0055CCFF' + - uid: 9386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-273.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9387 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12439 + color: '#0055CCFF' + - uid: 9388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-286.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9389 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-314.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12442 + color: '#990000FF' + - uid: 9390 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-307.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12476 + color: '#0055CCFF' + - uid: 9391 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12486 + color: '#0055CCFF' + - uid: 9392 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12489 + color: '#0055CCFF' + - uid: 9393 components: - type: Transform pos: 6.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12494 + color: '#990000FF' + - uid: 9394 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-308.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12498 + color: '#990000FF' + - uid: 9395 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12531 + color: '#0055CCFF' + - uid: 9396 components: - type: Transform pos: 10.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12546 + color: '#0055CCFF' + - uid: 9397 components: - type: Transform pos: 7.5,-306.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12573 + color: '#0055CCFF' + - uid: 9398 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12587 + color: '#990000FF' + - uid: 9399 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12588 + color: '#990000FF' + - uid: 9400 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-303.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12615 + color: '#0055CCFF' + - uid: 9401 components: - type: Transform pos: -0.5,-298.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12648 + color: '#990000FF' + - uid: 9402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-298.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-329.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9404 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-328.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12650 + color: '#0055CCFF' + - uid: 9405 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12720 + color: '#0055CCFF' + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-368.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-368.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9408 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12752 + color: '#990000FF' + - uid: 9409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-255.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9410 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-354.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12808 + color: '#0055CCFF' + - uid: 9411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9412 components: - type: Transform pos: -0.5,-346.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12841 + color: '#990000FF' + - uid: 9413 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12866 + color: '#0055CCFF' + - uid: 9414 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-345.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12873 + color: '#0055CCFF' + - uid: 9415 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12928 + color: '#0055CCFF' + - uid: 9416 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12934 + color: '#0055CCFF' + - uid: 9417 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-356.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12941 + color: '#0055CCFF' + - uid: 9418 components: - type: Transform pos: -1.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12951 + color: '#990000FF' + - uid: 9419 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-363.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12953 + color: '#0055CCFF' + - uid: 9420 components: - type: Transform pos: 4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12991 + color: '#0055CCFF' + - uid: 9421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-357.5 + rot: 1.5707963267948966 rad + pos: 0.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13008 + color: '#0055CCFF' + - uid: 9422 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-361.5 + pos: -1.5,-174.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13014 + color: '#990000FF' + - uid: 9423 components: - type: Transform - pos: 0.5,-361.5 + rot: 3.141592653589793 rad + pos: 1.5,-357.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13032 + color: '#990000FF' + - uid: 9424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-361.5 + rot: 3.141592653589793 rad + pos: -1.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13087 + color: '#990000FF' + - uid: 9425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-369.5 + pos: 0.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13093 + color: '#990000FF' + - uid: 9426 components: - type: Transform - pos: 5.5,-369.5 + rot: -1.5707963267948966 rad + pos: 16.5,-257.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13100 + color: '#990000FF' + - uid: 9427 components: - type: Transform - pos: -4.5,-369.5 + rot: -1.5707963267948966 rad + pos: 7.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14448 + color: '#990000FF' + - uid: 9428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-62.5 + rot: 1.5707963267948966 rad + pos: 0.5,-264.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16981 + color: '#0055CCFF' + - uid: 9429 components: - type: Transform - pos: -9.5,-248.5 + rot: 3.141592653589793 rad + pos: -4.5,-361.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPort - entities: - - uid: 5656 + color: '#990000FF' + - uid: 9430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-246.5 + pos: -0.5,-285.5 parent: 2 - - uid: 7217 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9431 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-245.5 + pos: 1.5,-329.5 parent: 2 - - uid: 11217 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9432 components: - type: Transform - pos: 5.5,-355.5 + rot: 1.5707963267948966 rad + pos: -6.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 11218 + color: '#990000FF' + - uid: 9433 components: - type: Transform - pos: 4.5,-355.5 + rot: -1.5707963267948966 rad + pos: 0.5,-365.5 parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 11927 + color: '#990000FF' + - uid: 9434 components: - type: Transform - anchored: False + rot: 3.141592653589793 rad + pos: 0.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9435 + components: + - type: Transform + pos: 5.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9436 + components: + - type: Transform + pos: -4.5,-369.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9437 + components: + - type: Transform + pos: -2.5,-361.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9439 + components: + - type: Transform + pos: 3.5,-361.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-253.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-315.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-364.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9443 + components: + - type: Transform + pos: -9.5,-248.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-169.5 + parent: 2 +- proto: GasPort + entities: + - uid: 5634 + components: + - type: Transform + pos: -1.5,-168.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-246.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-245.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: 5.5,-355.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 9447 + components: + - type: Transform + pos: 4.5,-355.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 9448 + components: + - type: Transform + anchored: False rot: -1.5707963267948966 rad pos: -20.5,-263.5 parent: 2 - type: Physics canCollide: True bodyType: Dynamic - - uid: 11930 + - uid: 9449 components: - type: Transform anchored: False @@ -63444,7 +63135,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 12412 + - uid: 9450 components: - type: Transform rot: -1.5707963267948966 rad @@ -63454,13 +63145,20 @@ entities: color: '#FEF101FF' - proto: GasPressurePump entities: - - uid: 2355 + - uid: 5635 + components: + - type: Transform + pos: -1.5,-169.5 + parent: 2 + - uid: 9451 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-260.5 parent: 2 - - uid: 2372 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9452 components: - type: MetaData name: Plasma Pump @@ -63468,7 +63166,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-250.5 parent: 2 - - uid: 2447 + - uid: 9453 components: - type: MetaData name: O2 pump @@ -63476,7 +63174,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-256.5 parent: 2 - - uid: 2450 + - uid: 9454 components: - type: MetaData name: N2 pump @@ -63484,7 +63182,7 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-258.5 parent: 2 - - uid: 2452 + - uid: 9455 components: - type: MetaData name: Co2 pump @@ -63492,21 +63190,15 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-252.5 parent: 2 - - uid: 2463 + - uid: 9456 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-259.5 parent: 2 - - uid: 3052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-169.5 - parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4108 + color: '#990000FF' + - uid: 9458 components: - type: Transform rot: 3.141592653589793 rad @@ -63515,20 +63207,20 @@ entities: - type: GasPressurePump targetPressure: 4500 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5500 + color: '#990000FF' + - uid: 9459 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-246.5 parent: 2 - - uid: 7747 + - uid: 9460 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-245.5 parent: 2 - - uid: 12409 + - uid: 9461 components: - type: Transform rot: -1.5707963267948966 rad @@ -63536,32 +63228,32 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 12410 + - uid: 9462 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-315.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12908 + color: '#0055CCFF' + - uid: 9463 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-358.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasThermoMachineFreezer entities: - - uid: 3143 + - uid: 9464 components: - type: Transform pos: -4.5,-168.5 parent: 2 - proto: GasValve entities: - - uid: 5420 + - uid: 9465 components: - type: Transform rot: 1.5707963267948966 rad @@ -63569,49 +63261,67 @@ entities: parent: 2 - proto: GasVentPump entities: - - uid: 576 + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-359.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9467 components: - type: Transform pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 807 + color: '#0055CCFF' + - uid: 9468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 + rot: -1.5707963267948966 rad + pos: 1.5,-344.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 838 + color: '#0055CCFF' + - uid: 9469 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-157.5 + rot: -1.5707963267948966 rad + pos: 1.5,-210.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 855 + color: '#0055CCFF' + - uid: 9470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9471 components: - type: Transform pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 856 + color: '#0055CCFF' + - uid: 9472 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 857 + color: '#0055CCFF' + - uid: 9473 components: - type: Transform rot: -1.5707963267948966 rad @@ -63619,53 +63329,37 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13080 + - 12 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 870 + color: '#0055CCFF' + - uid: 9474 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 884 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12935 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 905 + color: '#0055CCFF' + - uid: 9475 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 921 + color: '#0055CCFF' + - uid: 9476 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 5.5,-57.5 + pos: 6.5,-56.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 954 + color: '#0055CCFF' + - uid: 9477 components: - type: Transform rot: -1.5707963267948966 rad @@ -63673,72 +63367,71 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 + - 15 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 977 + color: '#0055CCFF' + - uid: 9478 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-30.5 + rot: -1.5707963267948966 rad + pos: 1.5,-291.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13109 + - 55 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1004 + color: '#0055CCFF' + - uid: 9479 components: - type: Transform - anchored: False - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: -0.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1057 + color: '#0055CCFF' + - uid: 9480 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-160.5 + pos: -0.5,-227.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1123 + color: '#0055CCFF' + - uid: 9481 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-49.5 + pos: -3.5,-259.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1138 + color: '#0055CCFF' + - uid: 9482 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1141 + color: '#0055CCFF' + - uid: 9483 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1238 + color: '#0055CCFF' + - uid: 9484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-298.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9485 components: - type: Transform rot: -1.5707963267948966 rad @@ -63746,10 +63439,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 + - 18 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1278 + color: '#0055CCFF' + - uid: 9486 components: - type: Transform rot: -1.5707963267948966 rad @@ -63757,68 +63450,49 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1279 + color: '#0055CCFF' + - uid: 9487 components: - type: Transform pos: -2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1323 + color: '#0055CCFF' + - uid: 9488 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1325 + color: '#0055CCFF' + - uid: 9489 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1373 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1375 + color: '#0055CCFF' + - uid: 9490 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -2.5,-189.5 + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14727 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1382 + color: '#0055CCFF' + - uid: 9491 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1415 + color: '#0055CCFF' + - uid: 9492 components: - type: Transform rot: 1.5707963267948966 rad @@ -63826,29 +63500,29 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 + - 19 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 1769 + color: '#0055CCFF' + - uid: 9493 components: - type: Transform - anchored: False - pos: 0.5,-68.5 + rot: -1.5707963267948966 rad + pos: 1.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1806 + color: '#0055CCFF' + - uid: 9494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-73.5 + rot: 1.5707963267948966 rad + pos: -0.5,-30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2076 + color: '#0055CCFF' + - uid: 9495 components: - type: Transform rot: 1.5707963267948966 rad @@ -63856,109 +63530,81 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13116 + - 17 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2415 + color: '#0055CCFF' + - uid: 9496 components: - type: Transform pos: -4.5,-324.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 2638 + color: '#0055CCFF' + - uid: 9497 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3011 + color: '#0055CCFF' + - uid: 9498 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3018 + color: '#0055CCFF' + - uid: 9499 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3040 - components: - - type: Transform - anchored: False - pos: 0.5,-184.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3110 + color: '#0055CCFF' + - uid: 9500 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3333 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3351 + color: '#0055CCFF' + - uid: 9501 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 4.5,-81.5 + pos: 1.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13147 + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3352 + color: '#0055CCFF' + - uid: 9502 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -4.5,-81.5 + rot: -1.5707963267948966 rad + pos: 1.5,-77.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3371 + color: '#0055CCFF' + - uid: 9503 components: - type: Transform pos: -5.5,-86.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3372 + color: '#0055CCFF' + - uid: 9504 components: - type: Transform rot: 1.5707963267948966 rad @@ -63966,10 +63612,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 + - 25 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3373 + color: '#0055CCFF' + - uid: 9505 components: - type: Transform anchored: False @@ -63981,23 +63627,23 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3374 + - uid: 9506 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3391 + color: '#0055CCFF' + - uid: 9507 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3392 + color: '#0055CCFF' + - uid: 9508 components: - type: Transform rot: -1.5707963267948966 rad @@ -64005,30 +63651,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3393 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-103.5 - parent: 2 + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3403 + color: '#0055CCFF' + - uid: 9509 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3436 + color: '#0055CCFF' + - uid: 9510 components: - type: Transform rot: 3.141592653589793 rad @@ -64036,10 +63670,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3437 + color: '#0055CCFF' + - uid: 9511 components: - type: Transform rot: 1.5707963267948966 rad @@ -64047,37 +63681,34 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3438 + color: '#0055CCFF' + - uid: 9512 components: - type: Transform - anchored: False - pos: -3.5,-107.5 + rot: 1.5707963267948966 rad + pos: -0.5,-136.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3451 + color: '#0055CCFF' + - uid: 9513 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3452 + color: '#0055CCFF' + - uid: 9514 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-110.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3457 + color: '#0055CCFF' + - uid: 9515 components: - type: Transform rot: 1.5707963267948966 rad @@ -64085,106 +63716,94 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13171 + - 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3474 + color: '#0055CCFF' + - uid: 9516 components: - type: Transform - anchored: False - pos: -6.5,-113.5 + rot: 1.5707963267948966 rad + pos: -7.5,-112.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3475 + color: '#0055CCFF' + - uid: 9517 components: - type: Transform - anchored: False - pos: -6.5,-116.5 + rot: 1.5707963267948966 rad + pos: -7.5,-115.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3476 + color: '#0055CCFF' + - uid: 9518 components: - type: Transform - anchored: False - pos: -6.5,-119.5 + rot: 1.5707963267948966 rad + pos: -7.5,-118.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3477 + color: '#0055CCFF' + - uid: 9519 components: - type: Transform - anchored: False - pos: -6.5,-122.5 + rot: 1.5707963267948966 rad + pos: -7.5,-121.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3478 + color: '#0055CCFF' + - uid: 9520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-125.5 + rot: 1.5707963267948966 rad + pos: -7.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 26 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3480 + color: '#0055CCFF' + - uid: 9521 components: - type: Transform - pos: 0.5,-124.5 + rot: -1.5707963267948966 rad + pos: 1.5,-178.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 39 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3481 + color: '#0055CCFF' + - uid: 9522 components: - type: Transform - anchored: False - pos: 0.5,-130.5 + pos: 0.5,-124.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3482 + color: '#0055CCFF' + - uid: 9523 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3483 + color: '#0055CCFF' + - uid: 9524 components: - type: Transform rot: 1.5707963267948966 rad @@ -64192,10 +63811,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13165 + - 27 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3626 + color: '#0055CCFF' + - uid: 9525 components: - type: Transform rot: -1.5707963267948966 rad @@ -64203,52 +63822,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13166 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3650 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 5.5,-138.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13182 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4016 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-136.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13176 + - 28 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4018 + color: '#0055CCFF' + - uid: 9526 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 3.5,-138.5 + pos: 1.5,-194.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4020 + color: '#0055CCFF' + - uid: 9527 components: - type: Transform anchored: False @@ -64260,7 +63845,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 4031 + - uid: 9528 components: - type: Transform anchored: False @@ -64268,13 +63853,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 + - 36 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 4033 + - uid: 9529 components: - type: Transform rot: 3.141592653589793 rad @@ -64282,95 +63867,95 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13185 + - 35 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4051 + color: '#0055CCFF' + - uid: 9530 components: - type: Transform pos: -4.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4072 + color: '#0055CCFF' + - uid: 9531 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4146 + color: '#0055CCFF' + - uid: 9532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-167.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9533 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4148 + color: '#0055CCFF' + - uid: 9534 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4195 + color: '#0055CCFF' + - uid: 9535 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4202 + color: '#0055CCFF' + - uid: 9536 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 15.5,-256.5 + rot: -1.5707963267948966 rad + pos: 1.5,-127.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15292 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4234 + color: '#0055CCFF' + - uid: 9537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-127.5 + pos: 2.5,-88.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 23 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4360 + color: '#0055CCFF' + - uid: 9538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-88.5 + rot: 3.141592653589793 rad + pos: 4.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13150 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4558 + color: '#0055CCFF' + - uid: 9539 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-152.5 + rot: 1.5707963267948966 rad + pos: -0.5,-221.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4559 + color: '#0055CCFF' + - uid: 9540 components: - type: Transform rot: 1.5707963267948966 rad @@ -64378,18 +63963,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 + - 37 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4567 + color: '#0055CCFF' + - uid: 9541 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-149.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4568 + color: '#0055CCFF' + - uid: 9542 components: - type: Transform rot: -1.5707963267948966 rad @@ -64397,10 +63982,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 + - 33 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4905 + color: '#0055CCFF' + - uid: 9543 components: - type: Transform rot: 3.141592653589793 rad @@ -64408,25 +63993,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4950 + color: '#0055CCFF' + - uid: 9544 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 17.5,-248.5 + pos: -0.5,-253.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4967 + color: '#0055CCFF' + - uid: 9545 components: - type: Transform rot: -1.5707963267948966 rad @@ -64434,64 +64015,78 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13244 + - 45 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 4992 + color: '#0055CCFF' + - uid: 9546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-249.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9547 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5057 + color: '#0055CCFF' + - uid: 9548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-241.5 + pos: -0.5,-266.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5063 + color: '#0055CCFF' + - uid: 9549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-235.5 + rot: 1.5707963267948966 rad + pos: -0.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5082 + color: '#0055CCFF' + - uid: 9550 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 4.5,-189.5 + pos: 16.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 + - 71 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5083 + color: '#0055CCFF' + - uid: 9551 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-194.5 + rot: -1.5707963267948966 rad + pos: 1.5,-235.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-264.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13249 + - 70 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5108 + color: '#0055CCFF' + - uid: 9553 components: - type: Transform rot: 1.5707963267948966 rad @@ -64499,10 +64094,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13251 + - 48 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5110 + color: '#0055CCFF' + - uid: 9554 components: - type: Transform rot: 1.5707963267948966 rad @@ -64510,10 +64105,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5121 + color: '#0055CCFF' + - uid: 9555 components: - type: Transform anchored: False @@ -64522,21 +64117,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 5126 + - uid: 9556 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-208.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5127 + color: '#0055CCFF' + - uid: 9557 components: - type: Transform rot: -1.5707963267948966 rad @@ -64544,126 +64139,95 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13247 + - 46 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5153 + color: '#0055CCFF' + - uid: 9558 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-214.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5156 + color: '#0055CCFF' + - uid: 9559 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5160 + color: '#0055CCFF' + - uid: 9560 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-219.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5161 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-221.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5163 + color: '#0055CCFF' + - uid: 9561 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5164 + color: '#0055CCFF' + - uid: 9562 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5199 + color: '#0055CCFF' + - uid: 9563 components: - type: Transform - anchored: False - pos: 0.5,-228.5 + rot: 1.5707963267948966 rad + pos: -0.5,-286.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5251 + color: '#0055CCFF' + - uid: 9564 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-178.5 + rot: 1.5707963267948966 rad + pos: -0.5,-318.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13211 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5260 + color: '#0055CCFF' + - uid: 9565 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-175.5 + pos: -3.5,-314.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8201 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5261 + color: '#0055CCFF' + - uid: 9566 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: -1.5,-175.5 + pos: -0.5,-329.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13213 + - 61 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5288 + color: '#0055CCFF' + - uid: 9567 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-175.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5293 + color: '#0055CCFF' + - uid: 9568 components: - type: Transform anchored: False @@ -64675,7 +64239,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 5302 + - uid: 9569 components: - type: Transform rot: -1.5707963267948966 rad @@ -64683,112 +64247,136 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13218 + - 41 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 5307 + color: '#0055CCFF' + - uid: 9570 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-163.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6036 + color: '#0055CCFF' + - uid: 9571 components: - type: Transform - anchored: False - pos: 0.5,-34.5 + rot: 1.5707963267948966 rad + pos: 6.5,-336.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-368.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13110 - - 13109 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 6727 + color: '#0055CCFF' + - uid: 9573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-368.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9574 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-251.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6904 + color: '#0055CCFF' + - uid: 9575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-107.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9576 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6905 + color: '#0055CCFF' + - uid: 9577 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 6915 + color: '#0055CCFF' + - uid: 9578 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 1.5,-15.5 + pos: 3.5,-151.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-68.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13105 + - 16 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7504 + color: '#0055CCFF' + - uid: 9580 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-262.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7506 + color: '#0055CCFF' + - uid: 9581 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 0.5,-265.5 + pos: 17.5,-249.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7769 + color: '#0055CCFF' + - uid: 9582 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8066 + color: '#0055CCFF' + - uid: 9583 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -2.5,-260.5 + rot: -1.5707963267948966 rad + pos: 1.5,-156.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8070 + color: '#0055CCFF' + - uid: 9584 components: - type: Transform anchored: False @@ -64800,7 +64388,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 8071 + - uid: 9585 components: - type: Transform rot: -1.5707963267948966 rad @@ -64808,502 +64396,470 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15279 + - 68 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8113 + color: '#0055CCFF' + - uid: 9586 components: - type: Transform - anchored: False - pos: 0.5,-238.5 + rot: 1.5707963267948966 rad + pos: -0.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8123 + color: '#0055CCFF' + - uid: 9587 components: - type: Transform - anchored: False - pos: 0.5,-211.5 + rot: -1.5707963267948966 rad + pos: 1.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8157 + color: '#0055CCFF' + - uid: 9588 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8314 + color: '#0055CCFF' + - uid: 9589 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 8.5,-248.5 + rot: 3.141592653589793 rad + pos: -2.5,-190.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8431 + color: '#0055CCFF' + - uid: 9590 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-165.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8877 + color: '#0055CCFF' + - uid: 9591 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-268.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10658 - components: - - type: Transform - anchored: False - pos: -6.5,-338.5 + pos: -0.5,-185.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5925 + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 10811 + color: '#0055CCFF' + - uid: 9592 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-354.5 + pos: -0.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10869 + color: '#0055CCFF' + - uid: 9593 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-343.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10976 - components: - - type: Transform - anchored: False - pos: 7.5,-337.5 + pos: -0.5,-75.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12142 + color: '#0055CCFF' + - uid: 9594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + rot: 3.141592653589793 rad + pos: 4.5,-82.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 21 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12273 + color: '#0055CCFF' + - uid: 9595 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-295.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-348.5 + pos: -5.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12305 + color: '#0055CCFF' + - uid: 9596 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-277.5 + pos: 1.5,-104.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13341 + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12333 + color: '#0055CCFF' + - uid: 9597 components: - type: Transform anchored: False - rot: -1.5707963267948966 rad - pos: 5.5,-273.5 + pos: -6.5,-338.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 + - 6 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 12341 + - uid: 9598 components: - type: Transform - anchored: False - pos: 0.5,-274.5 + rot: 1.5707963267948966 rad + pos: -0.5,-131.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13317 + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12345 + color: '#0055CCFF' + - uid: 9599 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 2.5,-284.5 + rot: 1.5707963267948966 rad + pos: -0.5,-354.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12349 + color: '#0055CCFF' + - uid: 9600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-284.5 + rot: 1.5707963267948966 rad + pos: 6.5,-343.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12356 + color: '#0055CCFF' + - uid: 9601 components: - type: Transform - anchored: False - pos: 0.5,-286.5 + rot: 3.141592653589793 rad + pos: 5.5,-139.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13333 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12362 + color: '#0055CCFF' + - uid: 9602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-287.5 + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13335 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12367 + color: '#0055CCFF' + - uid: 9603 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-271.5 + pos: -0.5,-295.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-348.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-277.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2277 + - 54 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12382 + color: '#0055CCFF' + - uid: 9606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-176.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-297.5 + pos: -0.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12428 + color: '#0055CCFF' + - uid: 9608 components: - type: Transform anchored: False rot: -1.5707963267948966 rad - pos: -4.5,-315.5 + pos: 2.5,-284.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13374 - type: AtmosPipeColor color: '#0335FCFF' - type: Physics canCollide: True bodyType: Dynamic - - uid: 12429 + - uid: 9609 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-321.5 + pos: 5.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12430 + color: '#0055CCFF' + - uid: 9610 components: - type: Transform - anchored: False - pos: 0.5,-318.5 + rot: -1.5707963267948966 rad + pos: 1.5,-239.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13370 + - 67 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12470 + color: '#0055CCFF' + - uid: 9611 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-307.5 + pos: -0.5,-212.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-287.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8432 + - 53 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12474 + color: '#0055CCFF' + - uid: 9613 components: - type: Transform - pos: 5.5,-265.5 + rot: 1.5707963267948966 rad + pos: -5.5,-271.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12501 + color: '#0055CCFF' + - uid: 9614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-297.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9615 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-306.5 + pos: 1.5,-321.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13365 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12508 + color: '#0055CCFF' + - uid: 9616 components: - type: Transform - pos: 6.5,-304.5 + rot: 1.5707963267948966 rad + pos: -6.5,-307.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13383 + - 8 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12540 + color: '#0055CCFF' + - uid: 9617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-311.5 + pos: 5.5,-265.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12568 + color: '#0055CCFF' + - uid: 9618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-311.5 + rot: -1.5707963267948966 rad + pos: 11.5,-306.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12577 + color: '#0055CCFF' + - uid: 9619 components: - type: Transform - pos: 9.5,-304.5 + pos: 6.5,-304.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12580 + color: '#0055CCFF' + - uid: 9620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-303.5 + pos: -0.5,-293.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13382 + - 55 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12603 + color: '#0055CCFF' + - uid: 9621 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-330.5 + pos: -0.5,-325.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12637 + color: '#0055CCFF' + - uid: 9622 components: - type: Transform - anchored: False - pos: 0.5,-292.5 + rot: 3.141592653589793 rad + pos: 10.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12641 + color: '#0055CCFF' + - uid: 9623 components: - type: Transform - anchored: False - pos: 0.5,-324.5 + rot: 1.5707963267948966 rad + pos: 6.5,-311.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12652 + color: '#0055CCFF' + - uid: 9624 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -0.5,-327.5 + pos: 9.5,-304.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12705 + color: '#0055CCFF' + - uid: 9625 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-297.5 + rot: 1.5707963267948966 rad + pos: -2.5,-303.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 + - 59 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12718 + color: '#0055CCFF' + - uid: 9626 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-330.5 + pos: 4.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12754 + color: '#0055CCFF' + - uid: 9627 components: - type: Transform - anchored: False rot: -1.5707963267948966 rad - pos: 0.5,-356.5 + pos: 1.5,-342.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12895 + color: '#0055CCFF' + - uid: 9628 components: - type: Transform - anchored: False - pos: 0.5,-344.5 + rot: -1.5707963267948966 rad + pos: 1.5,-183.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12897 + color: '#0055CCFF' + - uid: 9629 components: - type: Transform - anchored: False - pos: 0.5,-340.5 + rot: 1.5707963267948966 rad + pos: -3.5,-330.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 11906 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12898 + color: '#0055CCFF' + - uid: 9630 components: - type: Transform - anchored: False - pos: 0.5,-329.5 + pos: 1.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 + - 11 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12918 + color: '#0055CCFF' + - uid: 9631 components: - type: Transform - anchored: False - pos: 0.5,-351.5 + rot: 1.5707963267948966 rad + pos: -0.5,-237.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12920 + color: '#0055CCFF' + - uid: 9632 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-345.5 + pos: 1.5,-323.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13402 + - 61 + - 57 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12932 + color: '#0055CCFF' + - uid: 9633 components: - type: Transform pos: 4.5,-357.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12943 + color: '#0055CCFF' + - uid: 9634 components: - type: Transform rot: 1.5707963267948966 rad @@ -65311,10 +64867,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12984 + color: '#0055CCFF' + - uid: 9635 components: - type: Transform rot: -1.5707963267948966 rad @@ -65322,10 +64878,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12985 + color: '#0055CCFF' + - uid: 9636 components: - type: Transform rot: -1.5707963267948966 rad @@ -65333,10 +64889,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12986 + color: '#0055CCFF' + - uid: 9637 components: - type: Transform rot: 3.141592653589793 rad @@ -65344,10 +64900,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12987 + color: '#0055CCFF' + - uid: 9638 components: - type: Transform rot: 3.141592653589793 rad @@ -65355,10 +64911,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12988 + color: '#0055CCFF' + - uid: 9639 components: - type: Transform rot: 1.5707963267948966 rad @@ -65366,10 +64922,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12989 + color: '#0055CCFF' + - uid: 9640 components: - type: Transform rot: 1.5707963267948966 rad @@ -65377,74 +64933,71 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12994 + color: '#0055CCFF' + - uid: 9641 components: - type: Transform pos: 1.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13429 + - 65 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12997 + color: '#0055CCFF' + - uid: 9642 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-367.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13077 + color: '#0055CCFF' + - uid: 9643 components: - type: Transform - anchored: False - pos: -3.5,-368.5 + rot: 3.141592653589793 rad + pos: 3.5,-176.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13079 + color: '#0055CCFF' + - uid: 9644 components: - type: Transform - anchored: False - pos: 4.5,-368.5 + rot: -1.5707963267948966 rad + pos: 6.5,-273.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13145 + color: '#0055CCFF' + - uid: 9645 components: - type: Transform - pos: 6.5,-88.5 + rot: -1.5707963267948966 rad + pos: 1.5,-274.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13146 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13207 + color: '#0055CCFF' + - uid: 9646 components: - type: Transform - anchored: False - pos: 0.5,-167.5 + pos: 6.5,-88.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13209 + - 20 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13237 + color: '#0055CCFF' + - uid: 9647 components: - type: Transform rot: -1.5707963267948966 rad @@ -65452,134 +65005,182 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 + - 43 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14825 + color: '#0055CCFF' + - uid: 9648 components: - type: Transform pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14826 + color: '#0055CCFF' + - uid: 9649 components: - type: Transform pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14835 + color: '#0055CCFF' + - uid: 9650 components: - type: Transform pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14847 + color: '#0055CCFF' + - uid: 9651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-345.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9652 components: - type: Transform pos: -4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14848 + color: '#0055CCFF' + - uid: 9653 components: - type: Transform pos: 5.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14861 + color: '#0055CCFF' + - uid: 9654 components: - type: Transform pos: 5.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14862 + - uid: 9655 components: - type: Transform pos: -4.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14885 + color: '#0055CCFF' + - uid: 9656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-158.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9657 components: - type: Transform pos: -4.5,-130.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 14889 + color: '#0055CCFF' + - uid: 9658 components: - type: Transform pos: 5.5,-130.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14950 + - uid: 9659 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-132.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15049 + color: '#0055CCFF' + - uid: 9660 components: - type: Transform pos: -4.5,-184.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15098 + color: '#0055CCFF' + - uid: 9661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9662 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-190.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15112 + color: '#0055CCFF' + - uid: 9663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9664 components: - type: Transform pos: -4.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15119 + color: '#0055CCFF' + - uid: 9665 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-157.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15195 + color: '#0055CCFF' + - uid: 9666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-292.5 + rot: 1.5707963267948966 rad + pos: -0.5,-102.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 22 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15284 + color: '#0055CCFF' + - uid: 9667 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-254.5 + rot: -1.5707963267948966 rad + pos: 1.5,-129.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15282 + - 29 - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 16679 + color: '#0055CCFF' + - uid: 9668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-292.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9669 components: - type: Transform rot: 1.5707963267948966 rad @@ -65587,10 +65188,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 16990 + color: '#0055CCFF' + - uid: 9670 components: - type: Transform rot: 1.5707963267948966 rad @@ -65598,20 +65199,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 16971 + - 72 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 583 + - uid: 9671 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 611 + color: '#990000FF' + - uid: 9672 components: - type: Transform rot: 3.141592653589793 rad @@ -65619,149 +65220,152 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13105 + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 620 + color: '#990000FF' + - uid: 9673 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 645 + color: '#990000FF' + - uid: 9674 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 665 + color: '#990000FF' + - uid: 9675 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 742 + color: '#990000FF' + - uid: 9676 components: - type: Transform - pos: 5.5,1.5 + rot: 3.141592653589793 rad + pos: 4.5,-230.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 747 + color: '#990000FF' + - uid: 9677 components: - type: Transform - anchored: False - pos: 2.5,-6.5 + pos: 5.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13080 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 751 + color: '#990000FF' + - uid: 9678 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 769 + color: '#990000FF' + - uid: 9679 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 770 + color: '#990000FF' + - uid: 9680 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1022 + color: '#990000FF' + - uid: 9681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-73.5 + rot: -1.5707963267948966 rad + pos: -5.5,-367.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1139 + color: '#990000FF' + - uid: 9682 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-29.5 + pos: -5.5,-364.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1155 + color: '#990000FF' + - uid: 9683 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: -0.5,-30.5 + pos: -0.5,-73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13109 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1191 + color: '#990000FF' + - uid: 9684 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-34.5 + rot: -1.5707963267948966 rad + pos: 6.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13110 - - 13109 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 1201 + color: '#990000FF' + - uid: 9685 + components: + - type: Transform + pos: -3.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9686 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1207 + color: '#990000FF' + - uid: 9687 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1222 + color: '#990000FF' + - uid: 9688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-271.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9689 components: - type: Transform pos: 1.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1239 + color: '#990000FF' + - uid: 9690 components: - type: Transform rot: -1.5707963267948966 rad @@ -65769,40 +65373,40 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13110 + - 15 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1283 + color: '#990000FF' + - uid: 9691 components: - type: Transform pos: 6.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1292 + color: '#990000FF' + - uid: 9692 components: - type: Transform pos: 1.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1299 + color: '#990000FF' + - uid: 9693 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1324 + color: '#990000FF' + - uid: 9694 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1326 + color: '#990000FF' + - uid: 9695 components: - type: Transform rot: -1.5707963267948966 rad @@ -65810,18 +65414,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13117 + - 18 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1332 + color: '#990000FF' + - uid: 9696 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1378 + color: '#990000FF' + - uid: 9697 components: - type: Transform rot: 3.141592653589793 rad @@ -65829,18 +65433,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14727 + - 66 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1383 + color: '#990000FF' + - uid: 9698 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1409 + color: '#990000FF' + - uid: 9699 components: - type: Transform rot: 1.5707963267948966 rad @@ -65848,41 +65452,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13124 + - 19 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1612 + color: '#990000FF' + - uid: 9700 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-263.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1825 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12935 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 2797 + color: '#990000FF' + - uid: 9701 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3027 + color: '#990000FF' + - uid: 9702 components: - type: Transform rot: 3.141592653589793 rad @@ -65890,29 +65479,31 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8432 + - 8 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3120 + color: '#990000FF' + - uid: 9703 components: - type: Transform - anchored: False - pos: 1.5,-167.5 + rot: -1.5707963267948966 rad + pos: 0.5,-29.5 parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3261 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9704 components: - type: Transform pos: -7.5,-84.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3262 + color: '#990000FF' + - uid: 9705 components: - type: Transform rot: 3.141592653589793 rad @@ -65920,26 +65511,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13151 + - 24 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3279 + color: '#990000FF' + - uid: 9706 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3281 + color: '#990000FF' + - uid: 9707 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3284 + color: '#990000FF' + - uid: 9708 components: - type: Transform rot: -1.5707963267948966 rad @@ -65947,24 +65538,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13152 + - 25 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3285 - components: - - type: Transform - pos: -3.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3309 + color: '#990000FF' + - uid: 9709 components: - type: Transform pos: 1.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3310 + color: '#990000FF' + - uid: 9710 components: - type: Transform rot: -1.5707963267948966 rad @@ -65972,10 +65556,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13147 + - 21 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3314 + color: '#990000FF' + - uid: 9711 components: - type: Transform rot: -1.5707963267948966 rad @@ -65983,18 +65567,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13148 + - 22 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3326 + color: '#990000FF' + - uid: 9712 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3513 + color: '#990000FF' + - uid: 9713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-168.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9714 components: - type: Transform rot: -1.5707963267948966 rad @@ -66002,10 +65594,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3549 + color: '#990000FF' + - uid: 9715 components: - type: Transform rot: -1.5707963267948966 rad @@ -66013,10 +65605,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3550 + color: '#990000FF' + - uid: 9716 components: - type: Transform rot: -1.5707963267948966 rad @@ -66024,10 +65616,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3551 + color: '#990000FF' + - uid: 9717 components: - type: Transform rot: -1.5707963267948966 rad @@ -66035,10 +65627,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3552 + color: '#990000FF' + - uid: 9718 components: - type: Transform rot: -1.5707963267948966 rad @@ -66046,10 +65638,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3553 + color: '#990000FF' + - uid: 9719 components: - type: Transform rot: -1.5707963267948966 rad @@ -66057,57 +65649,50 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3598 + color: '#990000FF' + - uid: 9720 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3599 + color: '#990000FF' + - uid: 9721 components: - type: Transform pos: -0.5,-117.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13171 + - 30 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3600 + color: '#990000FF' + - uid: 9722 components: - type: Transform - anchored: False - pos: -0.5,-120.5 + rot: -1.5707963267948966 rad + pos: 0.5,-119.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13165 + - 27 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3603 + color: '#990000FF' + - uid: 9723 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-123.5 + rot: 1.5707963267948966 rad + pos: -1.5,-124.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 3608 + color: '#990000FF' + - uid: 9724 components: - type: Transform rot: 1.5707963267948966 rad @@ -66115,10 +65700,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13168 + - 29 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3622 + color: '#990000FF' + - uid: 9725 components: - type: Transform anchored: False @@ -66130,15 +65715,15 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3623 + - uid: 9726 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-115.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3630 + color: '#990000FF' + - uid: 9727 components: - type: Transform rot: 3.141592653589793 rad @@ -66146,24 +65731,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13161 + - 26 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3631 + color: '#990000FF' + - uid: 9728 components: - type: Transform pos: 1.5,-106.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3632 + color: '#990000FF' + - uid: 9729 components: - type: Transform pos: -4.5,-107.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3637 + color: '#990000FF' + - uid: 9730 components: - type: Transform anchored: False @@ -66175,7 +65760,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3647 + - uid: 9731 components: - type: Transform rot: -1.5707963267948966 rad @@ -66183,42 +65768,48 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13176 + - 31 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3672 + color: '#990000FF' + - uid: 9732 components: - type: Transform pos: 1.5,-133.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3874 + color: '#990000FF' + - uid: 9733 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-139.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3944 + color: '#990000FF' + - uid: 9734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-221.5 + parent: 2 + - uid: 9735 components: - type: Transform pos: 1.5,-160.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3954 + color: '#990000FF' + - uid: 9736 components: - type: Transform pos: 6.5,-138.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13182 + - 34 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3980 + color: '#990000FF' + - uid: 9737 components: - type: Transform rot: 3.141592653589793 rad @@ -66226,10 +65817,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13180 + - 33 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3982 + color: '#990000FF' + - uid: 9738 components: - type: Transform anchored: False @@ -66241,7 +65832,7 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 3993 + - uid: 9739 components: - type: Transform rot: 1.5707963267948966 rad @@ -66249,26 +65840,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13185 + - 35 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4012 + color: '#990000FF' + - uid: 9740 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-148.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4013 + color: '#990000FF' + - uid: 9741 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-154.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4037 + color: '#990000FF' + - uid: 9742 components: - type: Transform rot: 1.5707963267948966 rad @@ -66276,72 +65867,59 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13187 + - 36 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4050 + color: '#990000FF' + - uid: 9743 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4055 + color: '#990000FF' + - uid: 9744 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4056 + color: '#990000FF' + - uid: 9745 components: - type: Transform pos: -4.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13116 + - 17 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4149 + color: '#990000FF' + - uid: 9746 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4150 + color: '#990000FF' + - uid: 9747 components: - type: Transform pos: 1.5,-187.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4171 + color: '#990000FF' + - uid: 9748 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - - uid: 4508 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 4.5,-88.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13146 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 4509 + color: '#990000FF' + - uid: 9749 components: - type: Transform rot: -1.5707963267948966 rad @@ -66349,18 +65927,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13150 + - 23 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4554 + color: '#990000FF' + - uid: 9750 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-152.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4556 + color: '#990000FF' + - uid: 9751 components: - type: Transform rot: 1.5707963267948966 rad @@ -66368,10 +65946,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13189 + - 37 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4670 + color: '#990000FF' + - uid: 9752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-177.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9753 + components: + - type: Transform + pos: -1.5,-173.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9754 components: - type: Transform rot: 3.141592653589793 rad @@ -66379,134 +65975,125 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4942 + - uid: 9755 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4943 + color: '#990000FF' + - uid: 9756 components: - type: Transform pos: 1.5,-214.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4981 + - uid: 9757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-205.5 + rot: -1.5707963267948966 rad + pos: 0.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 70 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5068 + color: '#990000FF' + - uid: 9758 components: - type: Transform - pos: -2.5,-204.5 + rot: 1.5707963267948966 rad + pos: -4.5,-205.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13252 + - 49 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5069 + color: '#990000FF' + - uid: 9759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-208.5 + rot: 1.5707963267948966 rad + pos: 15.5,-257.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5070 + color: '#990000FF' + - uid: 9760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-206.5 + pos: -2.5,-204.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13244 + - 49 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5072 + color: '#990000FF' + - uid: 9761 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 1.5,-194.5 + pos: -0.5,-208.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13249 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5073 + color: '#990000FF' + - uid: 9762 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-190.5 + pos: 4.5,-206.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13241 + - 45 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5107 + color: '#990000FF' + - uid: 9763 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-197.5 + pos: -5.5,-344.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13251 + - 62 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5178 + color: '#990000FF' + - uid: 9764 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-229.5 + pos: 0.5,-285.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5179 + color: '#990000FF' + - uid: 9765 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 4.5,-229.5 + pos: -5.5,-197.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 48 - type: AtmosPipeColor color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5185 + - uid: 9766 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 0.5,-229.5 + rot: -1.5707963267948966 rad + pos: -3.5,-229.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5188 + - uid: 9767 components: - type: Transform rot: 1.5707963267948966 rad @@ -66514,7 +66101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5189 + - uid: 9768 components: - type: Transform anchored: False @@ -66526,382 +66113,352 @@ entities: - type: Physics canCollide: True bodyType: Dynamic - - uid: 5190 + - uid: 9769 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-220.5 + rot: 3.141592653589793 rad + pos: 1.5,-299.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 55 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5225 + color: '#990000FF' + - uid: 9770 components: - type: Transform pos: -6.5,-178.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5252 + color: '#990000FF' + - uid: 9771 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 1.5,-178.5 + pos: 1.5,-318.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13211 + - 57 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5275 + color: '#990000FF' + - uid: 9772 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -1.5,-174.5 + rot: -1.5707963267948966 rad + pos: 2.5,-329.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13213 + - 61 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 5277 + color: '#990000FF' + - uid: 9773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-175.5 + rot: -1.5707963267948966 rad + pos: 3.5,-168.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 + - 41 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5301 + color: '#990000FF' + - uid: 9774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-163.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9775 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-168.5 + pos: 7.5,-172.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13218 + - 7 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5312 + color: '#990000FF' + - uid: 9776 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-163.5 + pos: -2.5,-362.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5346 + color: '#990000FF' + - uid: 9777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-172.5 + rot: 3.141592653589793 rad + pos: 3.5,-362.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8201 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6198 + color: '#990000FF' + - uid: 9778 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7453 + color: '#990000FF' + - uid: 9779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-262.5 + pos: -4.5,-360.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7476 + color: '#990000FF' + - uid: 9780 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 16.5,-256.5 + rot: 1.5707963267948966 rad + pos: -0.5,-365.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 65 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7563 + color: '#990000FF' + - uid: 9781 components: - type: Transform - pos: 10.5,-253.5 + rot: 1.5707963267948966 rad + pos: 6.5,-364.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7776 + color: '#990000FF' + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-190.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9783 components: - type: Transform - anchored: False rot: 3.141592653589793 rad - pos: 18.5,-249.5 + pos: -0.5,-262.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-175.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15292 + - 7 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 7823 + color: '#990000FF' + - uid: 9785 + components: + - type: Transform + pos: 10.5,-253.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9786 components: - type: Transform pos: -3.5,-243.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7881 + color: '#990000FF' + - uid: 9787 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-172.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7882 + color: '#990000FF' + - uid: 9788 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-179.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8063 - components: - - type: Transform - pos: -3.5,-260.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8089 + color: '#990000FF' + - uid: 9789 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 8.5,-256.5 + rot: 3.141592653589793 rad + pos: -0.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15280 + - 11 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 8091 + color: '#990000FF' + - uid: 9790 components: - type: Transform pos: 4.5,-243.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15279 + - 68 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8209 + color: '#990000FF' + - uid: 9791 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-260.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8883 + color: '#990000FF' + - uid: 9792 components: - type: Transform pos: 1.5,-268.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9953 + color: '#990000FF' + - uid: 9793 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10972 + color: '#990000FF' + - uid: 9794 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-342.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10973 + color: '#990000FF' + - uid: 9795 components: - type: Transform pos: 6.5,-337.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11912 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -5.5,-361.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12134 + color: '#990000FF' + - uid: 9796 components: - type: Transform pos: 1.5,-241.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12224 + color: '#990000FF' + - uid: 9797 components: - type: Transform pos: 7.5,-281.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13341 + - 54 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12240 + color: '#990000FF' + - uid: 9798 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-284.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12246 + color: '#990000FF' + - uid: 9799 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-287.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12297 - components: - - type: Transform - pos: -5.5,-274.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2277 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12298 + color: '#990000FF' + - uid: 9800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-284.5 + pos: -0.5,-228.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13335 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12322 + color: '#990000FF' + - uid: 9801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-271.5 + pos: -5.5,-274.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13322 + - 5 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12340 + color: '#990000FF' + - uid: 9802 components: - type: Transform - anchored: False - pos: 1.5,-274.5 + rot: 3.141592653589793 rad + pos: -5.5,-284.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13317 + - 53 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12355 + color: '#990000FF' + - uid: 9803 components: - type: Transform - anchored: False - pos: -0.5,-286.5 + pos: -2.5,-260.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13333 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12375 + color: '#990000FF' + - uid: 9804 components: - type: Transform pos: 1.5,-295.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12399 + color: '#990000FF' + - uid: 9805 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-321.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12433 + color: '#990000FF' + - uid: 9806 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-314.5 + pos: 0.5,-272.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13374 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12444 + color: '#990000FF' + - uid: 9807 components: - type: Transform pos: 4.5,-318.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12502 + color: '#990000FF' + - uid: 9808 components: - type: Transform rot: -1.5707963267948966 rad @@ -66909,33 +66466,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13365 + - 56 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12507 + color: '#990000FF' + - uid: 9809 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-310.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12530 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-319.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13370 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12564 + color: '#990000FF' + - uid: 9810 components: - type: Transform rot: 1.5707963267948966 rad @@ -66943,10 +66485,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13383 + - 60 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12581 + color: '#990000FF' + - uid: 9811 components: - type: Transform rot: 1.5707963267948966 rad @@ -66954,263 +66496,190 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13382 + - 59 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12621 + color: '#990000FF' + - uid: 9812 components: - type: Transform pos: -5.5,-297.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12653 - components: - - type: Transform - pos: 1.5,-327.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12704 + color: '#990000FF' + - uid: 9813 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 0.5,-298.5 + rot: 1.5707963267948966 rad + pos: 0.5,-345.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13358 + - 9 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12721 + color: '#990000FF' + - uid: 9814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-331.5 + pos: 1.5,-327.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12782 + color: '#990000FF' + - uid: 9815 components: - type: Transform - pos: -4.5,-330.5 + rot: -1.5707963267948966 rad + pos: 4.5,-331.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12798 + color: '#990000FF' + - uid: 9816 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-340.5 + pos: 1.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11906 - - 5925 + - 12 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12811 + color: '#990000FF' + - uid: 9817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-348.5 + pos: -4.5,-330.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12812 + color: '#990000FF' + - uid: 9818 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: 0.5,-346.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12813 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -4.5,-344.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13402 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12896 - components: - - type: Transform - anchored: False - pos: 1.5,-329.5 + pos: -5.5,-340.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13391 - - 11906 + - 10 + - 6 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 12914 + color: '#990000FF' + - uid: 9819 components: - type: Transform - pos: 1.5,-354.5 + rot: 3.141592653589793 rad + pos: -0.5,-348.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12933 + color: '#990000FF' + - uid: 9820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-357.5 + pos: 0.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 14 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12944 + color: '#990000FF' + - uid: 9821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-357.5 + rot: -1.5707963267948966 rad + pos: 6.5,-86.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 21 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13039 + color: '#990000FF' + - uid: 9822 components: - type: Transform - pos: 7.5,-360.5 + rot: 1.5707963267948966 rad + pos: 0.5,-193.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13040 + color: '#990000FF' + - uid: 9823 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -6.5,-363.5 + pos: 1.5,-354.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13421 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13041 + color: '#990000FF' + - uid: 9824 components: - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 7.5,-363.5 + rot: -1.5707963267948966 rad + pos: 5.5,-357.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13053 + color: '#990000FF' + - uid: 9825 components: - type: Transform - anchored: False - pos: 0.5,-365.5 + rot: 1.5707963267948966 rad + pos: -3.5,-357.5 parent: 2 - type: DeviceNetwork - deviceLists: - - 13429 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13055 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 0.5,-367.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13067 + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-366.5 + rot: -1.5707963267948966 rad + pos: 19.5,-249.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13068 + color: '#990000FF' + - uid: 9827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-366.5 + pos: 7.5,-360.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13081 + color: '#990000FF' + - uid: 9828 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 3.5,-361.5 + pos: 6.5,-255.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 71 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13082 + color: '#990000FF' + - uid: 9829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-315.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9830 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: -2.5,-361.5 + pos: 6.5,-367.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13421 + - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 13088 + color: '#990000FF' + - uid: 9831 components: - type: Transform rot: 3.141592653589793 rad @@ -67218,10 +66687,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13094 + color: '#990000FF' + - uid: 9832 components: - type: Transform rot: 3.141592653589793 rad @@ -67229,10 +66698,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13426 + - 64 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13236 + color: '#990000FF' + - uid: 9833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-367.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9834 components: - type: Transform rot: -1.5707963267948966 rad @@ -67240,57 +66717,32 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13239 + - 43 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14427 + color: '#990000FF' + - uid: 9835 components: - type: Transform pos: 14.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14428 + - uid: 9836 components: - type: Transform pos: 16.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15161 + - uid: 9837 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-116.5 parent: 2 - - uid: 15283 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: -0.5,-257.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15282 - - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 16999 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -5.5,-248.5 - parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 17001 + color: '#990000FF' + - uid: 9838 components: - type: Transform rot: 1.5707963267948966 rad @@ -67298,3948 +66750,3948 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 16971 + - 72 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - - uid: 2921 + - uid: 9839 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-246.5 parent: 2 - - uid: 7198 + - uid: 9840 components: - type: Transform pos: -16.5,-246.5 parent: 2 - proto: Gateway entities: - - uid: 2226 + - uid: 9841 components: - type: Transform pos: -0.5,-113.5 parent: 2 - - uid: 5317 + - uid: 9842 components: - type: Transform pos: -3.5,-254.5 parent: 2 - - uid: 10659 + - uid: 9843 components: - type: Transform pos: -4.5,-330.5 parent: 2 - - uid: 10754 + - uid: 9844 components: - type: Transform pos: 4.5,-15.5 parent: 2 - proto: Gauze entities: - - uid: 3682 + - uid: 9845 components: - type: Transform pos: 3.5643053,-171.28004 parent: 2 - - uid: 3697 + - uid: 9846 components: - type: Transform pos: 3.3926184,-171.42528 parent: 2 - proto: GeneratorBasic15kW entities: - - uid: 2465 + - uid: 9847 components: - type: Transform pos: 21.5,-308.5 parent: 2 - - uid: 2466 + - uid: 9848 components: - type: Transform pos: 21.5,-306.5 parent: 2 - proto: GravityGenerator entities: - - uid: 8925 + - uid: 9849 components: - type: Transform pos: 16.5,-264.5 parent: 2 - proto: Grille entities: - - uid: 4 + - uid: 9850 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 5 + - uid: 9851 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 6 + - uid: 9852 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 7 + - uid: 9853 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 8 + - uid: 9854 components: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 117 + - uid: 9855 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 151 + - uid: 9856 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 152 + - uid: 9857 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 234 + - uid: 9858 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 235 + - uid: 9859 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 236 + - uid: 9860 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 237 + - uid: 9861 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 238 + - uid: 9862 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 239 + - uid: 9863 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 365 + - uid: 9864 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 386 + - uid: 9865 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 388 + - uid: 9866 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 509 + - uid: 9867 components: - type: Transform pos: 7.5,-39.5 parent: 2 - - uid: 511 + - uid: 9868 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 512 + - uid: 9869 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 531 + - uid: 9870 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 586 + - uid: 9871 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 912 + - uid: 9872 components: - type: Transform pos: -7.5,-66.5 parent: 2 - - uid: 919 + - uid: 9873 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 2 - - uid: 947 + - uid: 9874 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 962 + - uid: 9875 components: - type: Transform pos: -7.5,-60.5 parent: 2 - - uid: 970 + - uid: 9876 components: - type: Transform pos: -7.5,-58.5 parent: 2 - - uid: 974 + - uid: 9877 components: - type: Transform pos: -7.5,-67.5 parent: 2 - - uid: 985 + - uid: 9878 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,14.5 parent: 2 - - uid: 1027 + - uid: 9879 components: - type: Transform pos: -7.5,-59.5 parent: 2 - - uid: 1064 + - uid: 9880 components: - type: Transform pos: -7.5,-57.5 parent: 2 - - uid: 1124 + - uid: 9881 components: - type: Transform pos: -7.5,-68.5 parent: 2 - - uid: 1143 + - uid: 9882 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 - - uid: 1225 + - uid: 9883 components: - type: Transform pos: 8.5,-68.5 parent: 2 - - uid: 1257 + - uid: 9884 components: - type: Transform pos: 5.5,-230.5 parent: 2 - - uid: 1381 + - uid: 9885 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 1422 + - uid: 9886 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 1432 + - uid: 9887 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 1460 + - uid: 9888 components: - type: Transform pos: -4.5,-231.5 parent: 2 - - uid: 1479 + - uid: 9889 components: - type: Transform pos: 7.5,-61.5 parent: 2 - - uid: 1480 + - uid: 9890 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 1481 + - uid: 9891 components: - type: Transform pos: 8.5,-56.5 parent: 2 - - uid: 1482 + - uid: 9892 components: - type: Transform pos: 8.5,-57.5 parent: 2 - - uid: 1500 + - uid: 9893 components: - type: Transform pos: -10.5,-87.5 parent: 2 - - uid: 1501 + - uid: 9894 components: - type: Transform pos: -10.5,-85.5 parent: 2 - - uid: 1503 + - uid: 9895 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 1504 + - uid: 9896 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 1520 + - uid: 9897 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 1521 + - uid: 9898 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 1522 + - uid: 9899 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 1523 + - uid: 9900 components: - type: Transform pos: 7.5,-85.5 parent: 2 - - uid: 1524 + - uid: 9901 components: - type: Transform pos: 7.5,-87.5 parent: 2 - - uid: 1525 + - uid: 9902 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 1526 + - uid: 9903 components: - type: Transform pos: 7.5,-89.5 parent: 2 - - uid: 1527 + - uid: 9904 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 1528 + - uid: 9905 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 1529 + - uid: 9906 components: - type: Transform pos: 7.5,-93.5 parent: 2 - - uid: 1530 + - uid: 9907 components: - type: Transform pos: 7.5,-94.5 parent: 2 - - uid: 1531 + - uid: 9908 components: - type: Transform pos: 7.5,-95.5 parent: 2 - - uid: 1532 + - uid: 9909 components: - type: Transform pos: 7.5,-96.5 parent: 2 - - uid: 1672 + - uid: 9910 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 1673 + - uid: 9911 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 1708 + - uid: 9912 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-74.5 parent: 2 - - uid: 1719 + - uid: 9913 components: - type: Transform pos: 0.5,-93.5 parent: 2 - - uid: 1727 + - uid: 9914 components: - type: Transform pos: 1.5,-93.5 parent: 2 - - uid: 1728 + - uid: 9915 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 1771 + - uid: 9916 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 1772 + - uid: 9917 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 1773 + - uid: 9918 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 1777 + - uid: 9919 components: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 1963 + - uid: 9920 components: - type: Transform pos: -7.5,-139.5 parent: 2 - - uid: 1973 + - uid: 9921 components: - type: Transform pos: -9.5,-108.5 parent: 2 - - uid: 1975 + - uid: 9922 components: - type: Transform pos: -9.5,-109.5 parent: 2 - - uid: 1977 + - uid: 9923 components: - type: Transform pos: -9.5,-112.5 parent: 2 - - uid: 1978 + - uid: 9924 components: - type: Transform pos: -9.5,-113.5 parent: 2 - - uid: 1979 + - uid: 9925 components: - type: Transform pos: -9.5,-115.5 parent: 2 - - uid: 1980 + - uid: 9926 components: - type: Transform pos: -9.5,-116.5 parent: 2 - - uid: 1981 + - uid: 9927 components: - type: Transform pos: -9.5,-118.5 parent: 2 - - uid: 1982 + - uid: 9928 components: - type: Transform pos: -9.5,-119.5 parent: 2 - - uid: 1983 + - uid: 9929 components: - type: Transform pos: -9.5,-121.5 parent: 2 - - uid: 1984 + - uid: 9930 components: - type: Transform pos: -9.5,-122.5 parent: 2 - - uid: 1985 + - uid: 9931 components: - type: Transform pos: -9.5,-124.5 parent: 2 - - uid: 1986 + - uid: 9932 components: - type: Transform pos: -9.5,-125.5 parent: 2 - - uid: 2131 + - uid: 9933 components: - type: Transform pos: -15.5,-167.5 parent: 2 - - uid: 2148 + - uid: 9934 components: - type: Transform pos: -2.5,-121.5 parent: 2 - - uid: 2177 + - uid: 9935 components: - type: Transform pos: -1.5,-122.5 parent: 2 - - uid: 2180 + - uid: 9936 components: - type: Transform pos: -2.5,-120.5 parent: 2 - - uid: 2182 + - uid: 9937 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 2183 + - uid: 9938 components: - type: Transform pos: 1.5,-122.5 parent: 2 - - uid: 2212 + - uid: 9939 components: - type: Transform pos: 7.5,-124.5 parent: 2 - - uid: 2215 + - uid: 9940 components: - type: Transform pos: 7.5,-123.5 parent: 2 - - uid: 2216 + - uid: 9941 components: - type: Transform pos: 7.5,-122.5 parent: 2 - - uid: 2287 + - uid: 9942 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,20.5 parent: 2 - - uid: 2360 + - uid: 9943 components: - type: Transform pos: -18.5,-249.5 parent: 2 - - uid: 2418 + - uid: 9944 components: - type: Transform pos: -9.5,-190.5 parent: 2 - - uid: 2474 + - uid: 9945 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 2507 + - uid: 9946 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-73.5 parent: 2 - - uid: 2596 + - uid: 9947 components: - type: Transform pos: -4.5,-134.5 parent: 2 - - uid: 2599 + - uid: 9948 components: - type: Transform pos: -7.5,-140.5 parent: 2 - - uid: 2600 + - uid: 9949 components: - type: Transform pos: -7.5,-141.5 parent: 2 - - uid: 2601 + - uid: 9950 components: - type: Transform pos: -7.5,-150.5 parent: 2 - - uid: 2602 + - uid: 9951 components: - type: Transform pos: -7.5,-152.5 parent: 2 - - uid: 2657 + - uid: 9952 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-114.5 parent: 2 - - uid: 2747 + - uid: 9953 components: - type: Transform pos: 1.5,-143.5 parent: 2 - - uid: 2786 + - uid: 9954 components: - type: Transform pos: 7.5,-149.5 parent: 2 - - uid: 2789 + - uid: 9955 components: - type: Transform pos: 9.5,-145.5 parent: 2 - - uid: 2790 + - uid: 9956 components: - type: Transform pos: 9.5,-144.5 parent: 2 - - uid: 2795 + - uid: 9957 components: - type: Transform pos: 9.5,-139.5 parent: 2 - - uid: 2796 + - uid: 9958 components: - type: Transform pos: 9.5,-138.5 parent: 2 - - uid: 2839 + - uid: 9959 components: - type: Transform pos: 1.5,-144.5 parent: 2 - - uid: 2840 + - uid: 9960 components: - type: Transform pos: 1.5,-145.5 parent: 2 - - uid: 2959 + - uid: 9961 components: - type: Transform pos: -8.5,-173.5 parent: 2 - - uid: 2960 + - uid: 9962 components: - type: Transform pos: -8.5,-174.5 parent: 2 - - uid: 2961 + - uid: 9963 components: - type: Transform pos: -8.5,-175.5 parent: 2 - - uid: 2962 + - uid: 9964 components: - type: Transform pos: -8.5,-176.5 parent: 2 - - uid: 2967 + - uid: 9965 components: - type: Transform pos: 9.5,-176.5 parent: 2 - - uid: 2968 + - uid: 9966 components: - type: Transform pos: 9.5,-175.5 parent: 2 - - uid: 2969 + - uid: 9967 components: - type: Transform pos: 9.5,-174.5 parent: 2 - - uid: 2970 + - uid: 9968 components: - type: Transform pos: 9.5,-173.5 parent: 2 - - uid: 2975 + - uid: 9969 components: - type: Transform pos: 8.5,-168.5 parent: 2 - - uid: 2976 + - uid: 9970 components: - type: Transform pos: 8.5,-167.5 parent: 2 - - uid: 2977 + - uid: 9971 components: - type: Transform pos: 8.5,-166.5 parent: 2 - - uid: 3007 + - uid: 9972 components: - type: Transform pos: -10.5,-308.5 parent: 2 - - uid: 3535 + - uid: 9973 components: - type: Transform pos: 2.5,-173.5 parent: 2 - - uid: 3538 + - uid: 9974 components: - type: Transform pos: 2.5,-174.5 parent: 2 - - uid: 3541 + - uid: 9975 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 3727 + - uid: 9976 components: - type: Transform pos: 4.5,-192.5 parent: 2 - - uid: 3728 + - uid: 9977 components: - type: Transform pos: 4.5,-193.5 parent: 2 - - uid: 3729 + - uid: 9978 components: - type: Transform pos: 4.5,-194.5 parent: 2 - - uid: 3741 + - uid: 9979 components: - type: Transform pos: 6.5,-339.5 parent: 2 - - uid: 3757 + - uid: 9980 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-246.5 parent: 2 - - uid: 3758 + - uid: 9981 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-245.5 parent: 2 - - uid: 3842 + - uid: 9982 components: - type: Transform pos: 9.5,-146.5 parent: 2 - - uid: 3853 + - uid: 9983 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 3854 + - uid: 9984 components: - type: Transform pos: -1.5,-197.5 parent: 2 - - uid: 3856 + - uid: 9985 components: - type: Transform pos: -6.5,-205.5 parent: 2 - - uid: 3857 + - uid: 9986 components: - type: Transform pos: -6.5,-204.5 parent: 2 - - uid: 3858 + - uid: 9987 components: - type: Transform pos: -6.5,-202.5 parent: 2 - - uid: 3859 + - uid: 9988 components: - type: Transform pos: -6.5,-201.5 parent: 2 - - uid: 3872 + - uid: 9989 components: - type: Transform pos: -3.5,-204.5 parent: 2 - - uid: 3913 + - uid: 9990 components: - type: Transform pos: -7.5,-197.5 parent: 2 - - uid: 3914 + - uid: 9991 components: - type: Transform pos: -7.5,-196.5 parent: 2 - - uid: 3915 + - uid: 9992 components: - type: Transform pos: -7.5,-195.5 parent: 2 - - uid: 3987 + - uid: 9993 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,16.5 parent: 2 - - uid: 4187 + - uid: 9994 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-247.5 parent: 2 - - uid: 4252 + - uid: 9995 components: - type: Transform pos: -1.5,-224.5 parent: 2 - - uid: 4253 + - uid: 9996 components: - type: Transform pos: -1.5,-225.5 parent: 2 - - uid: 4268 + - uid: 9997 components: - type: Transform pos: 2.5,-225.5 parent: 2 - - uid: 4269 + - uid: 9998 components: - type: Transform pos: 2.5,-224.5 parent: 2 - - uid: 4278 + - uid: 9999 components: - type: Transform pos: 5.5,-231.5 parent: 2 - - uid: 4279 + - uid: 10000 components: - type: Transform pos: -4.5,-230.5 parent: 2 - - uid: 4287 + - uid: 10001 components: - type: Transform pos: -4.5,-219.5 parent: 2 - - uid: 4288 + - uid: 10002 components: - type: Transform pos: -4.5,-218.5 parent: 2 - - uid: 4289 + - uid: 10003 components: - type: Transform pos: -4.5,-217.5 parent: 2 - - uid: 4290 + - uid: 10004 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4330 + - uid: 10005 components: - type: Transform pos: -4.5,-232.5 parent: 2 - - uid: 4333 + - uid: 10006 components: - type: Transform pos: 5.5,-232.5 parent: 2 - - uid: 4334 + - uid: 10007 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4342 + - uid: 10008 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-218.5 parent: 2 - - uid: 4343 + - uid: 10009 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-221.5 parent: 2 - - uid: 4439 + - uid: 10010 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-217.5 parent: 2 - - uid: 4505 + - uid: 10011 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-219.5 parent: 2 - - uid: 4507 + - uid: 10012 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 5079 + - uid: 10013 components: - type: Transform pos: 10.5,-119.5 parent: 2 - - uid: 5085 + - uid: 10014 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-339.5 parent: 2 - - uid: 5209 + - uid: 10015 components: - type: Transform pos: 20.5,-258.5 parent: 2 - - uid: 5282 + - uid: 10016 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-346.5 parent: 2 - - uid: 5291 + - uid: 10017 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-345.5 parent: 2 - - uid: 5501 + - uid: 10018 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-340.5 parent: 2 - - uid: 5842 + - uid: 10019 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-115.5 parent: 2 - - uid: 5852 + - uid: 10020 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-117.5 parent: 2 - - uid: 6626 + - uid: 10021 components: - type: Transform pos: 9.5,-147.5 parent: 2 - - uid: 6664 + - uid: 10022 components: - type: Transform pos: -9.5,-309.5 parent: 2 - - uid: 6665 + - uid: 10023 components: - type: Transform pos: -9.5,-308.5 parent: 2 - - uid: 6666 + - uid: 10024 components: - type: Transform pos: -9.5,-307.5 parent: 2 - - uid: 6685 + - uid: 10025 components: - type: Transform pos: -18.5,-343.5 parent: 2 - - uid: 6687 + - uid: 10026 components: - type: Transform pos: -18.5,-341.5 parent: 2 - - uid: 6695 + - uid: 10027 components: - type: Transform pos: -17.5,-347.5 parent: 2 - - uid: 6703 + - uid: 10028 components: - type: Transform pos: -19.5,-331.5 parent: 2 - - uid: 6706 + - uid: 10029 components: - type: Transform pos: -20.5,-330.5 parent: 2 - - uid: 6881 + - uid: 10030 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-301.5 parent: 2 - - uid: 6916 + - uid: 10031 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-241.5 parent: 2 - - uid: 7001 + - uid: 10032 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-242.5 parent: 2 - - uid: 7319 + - uid: 10033 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-60.5 parent: 2 - - uid: 7479 + - uid: 10034 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 2 - - uid: 7510 + - uid: 10035 components: - type: Transform pos: 12.5,-159.5 parent: 2 - - uid: 7511 + - uid: 10036 components: - type: Transform pos: 12.5,-160.5 parent: 2 - - uid: 7512 + - uid: 10037 components: - type: Transform pos: 18.5,-159.5 parent: 2 - - uid: 7513 + - uid: 10038 components: - type: Transform pos: 18.5,-160.5 parent: 2 - - uid: 7514 + - uid: 10039 components: - type: Transform pos: 18.5,-165.5 parent: 2 - - uid: 7515 + - uid: 10040 components: - type: Transform pos: 18.5,-166.5 parent: 2 - - uid: 7516 + - uid: 10041 components: - type: Transform pos: 12.5,-153.5 parent: 2 - - uid: 7517 + - uid: 10042 components: - type: Transform pos: 12.5,-152.5 parent: 2 - - uid: 7518 + - uid: 10043 components: - type: Transform pos: 18.5,-153.5 parent: 2 - - uid: 7519 + - uid: 10044 components: - type: Transform pos: 18.5,-152.5 parent: 2 - - uid: 7520 + - uid: 10045 components: - type: Transform pos: 18.5,-147.5 parent: 2 - - uid: 7523 + - uid: 10046 components: - type: Transform pos: 18.5,-144.5 parent: 2 - - uid: 7524 + - uid: 10047 components: - type: Transform pos: 12.5,-147.5 parent: 2 - - uid: 7525 + - uid: 10048 components: - type: Transform pos: 12.5,-146.5 parent: 2 - - uid: 7526 + - uid: 10049 components: - type: Transform pos: 12.5,-145.5 parent: 2 - - uid: 7527 + - uid: 10050 components: - type: Transform pos: 12.5,-144.5 parent: 2 - - uid: 7528 + - uid: 10051 components: - type: Transform pos: 12.5,-139.5 parent: 2 - - uid: 7529 + - uid: 10052 components: - type: Transform pos: 12.5,-138.5 parent: 2 - - uid: 7530 + - uid: 10053 components: - type: Transform pos: 18.5,-139.5 parent: 2 - - uid: 7531 + - uid: 10054 components: - type: Transform pos: 18.5,-138.5 parent: 2 - - uid: 7553 + - uid: 10055 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-147.5 parent: 2 - - uid: 7623 + - uid: 10056 components: - type: Transform pos: 20.5,-260.5 parent: 2 - - uid: 7667 + - uid: 10057 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-220.5 parent: 2 - - uid: 7691 + - uid: 10058 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-201.5 parent: 2 - - uid: 7692 + - uid: 10059 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-200.5 parent: 2 - - uid: 7693 + - uid: 10060 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-199.5 parent: 2 - - uid: 7694 + - uid: 10061 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-198.5 parent: 2 - - uid: 7695 + - uid: 10062 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-197.5 parent: 2 - - uid: 7696 + - uid: 10063 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-196.5 parent: 2 - - uid: 7697 + - uid: 10064 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-195.5 parent: 2 - - uid: 7698 + - uid: 10065 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-194.5 parent: 2 - - uid: 7796 + - uid: 10066 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-249.5 parent: 2 - - uid: 7844 + - uid: 10067 components: - type: Transform pos: -8.5,-191.5 parent: 2 - - uid: 7869 + - uid: 10068 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-254.5 parent: 2 - - uid: 7934 + - uid: 10069 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,20.5 parent: 2 - - uid: 8002 + - uid: 10070 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-256.5 parent: 2 - - uid: 8052 + - uid: 10071 components: - type: Transform pos: 20.5,-259.5 parent: 2 - - uid: 8096 + - uid: 10072 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,20.5 parent: 2 - - uid: 8127 + - uid: 10073 components: - type: Transform pos: -8.5,-190.5 parent: 2 - - uid: 8129 + - uid: 10074 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 8133 + - uid: 10075 components: - type: Transform pos: 14.5,-245.5 parent: 2 - - uid: 8165 + - uid: 10076 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 8166 + - uid: 10077 components: - type: Transform pos: -8.5,-189.5 parent: 2 - - uid: 8199 + - uid: 10078 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-255.5 parent: 2 - - uid: 8219 + - uid: 10079 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 8235 + - uid: 10080 components: - type: Transform pos: 16.5,-238.5 parent: 2 - - uid: 8260 + - uid: 10081 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-329.5 parent: 2 - - uid: 8394 + - uid: 10082 components: - type: Transform pos: -19.5,-336.5 parent: 2 - - uid: 8413 + - uid: 10083 components: - type: Transform pos: -17.5,-348.5 parent: 2 - - uid: 8415 + - uid: 10084 components: - type: Transform pos: -18.5,-340.5 parent: 2 - - uid: 8417 + - uid: 10085 components: - type: Transform pos: -4.5,-289.5 parent: 2 - - uid: 8425 + - uid: 10086 components: - type: Transform pos: -19.5,-334.5 parent: 2 - - uid: 8450 + - uid: 10087 components: - type: Transform pos: -18.5,-338.5 parent: 2 - - uid: 8455 + - uid: 10088 components: - type: Transform pos: -18.5,-344.5 parent: 2 - - uid: 8508 + - uid: 10089 components: - type: Transform pos: -3.5,-273.5 parent: 2 - - uid: 8510 + - uid: 10090 components: - type: Transform pos: -7.5,-286.5 parent: 2 - - uid: 8511 + - uid: 10091 components: - type: Transform pos: -7.5,-285.5 parent: 2 - - uid: 8529 + - uid: 10092 components: - type: Transform pos: -20.5,-327.5 parent: 2 - - uid: 8535 + - uid: 10093 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - uid: 8545 + - uid: 10094 components: - type: Transform pos: -20.5,-329.5 parent: 2 - - uid: 8609 + - uid: 10095 components: - type: Transform pos: -7.5,-284.5 parent: 2 - - uid: 8610 + - uid: 10096 components: - type: Transform pos: -19.5,-335.5 parent: 2 - - uid: 8613 + - uid: 10097 components: - type: Transform pos: -6.5,-280.5 parent: 2 - - uid: 8614 + - uid: 10098 components: - type: Transform pos: -6.5,-279.5 parent: 2 - - uid: 8615 + - uid: 10099 components: - type: Transform pos: -6.5,-278.5 parent: 2 - - uid: 8624 + - uid: 10100 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-286.5 parent: 2 - - uid: 8637 + - uid: 10101 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-276.5 parent: 2 - - uid: 8640 + - uid: 10102 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-275.5 parent: 2 - - uid: 8659 + - uid: 10103 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-284.5 parent: 2 - - uid: 8665 + - uid: 10104 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-272.5 parent: 2 - - uid: 8667 + - uid: 10105 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-274.5 parent: 2 - - uid: 8680 + - uid: 10106 components: - type: Transform pos: -1.5,-282.5 parent: 2 - - uid: 8695 + - uid: 10107 components: - type: Transform pos: -0.5,-283.5 parent: 2 - - uid: 8790 + - uid: 10108 components: - type: Transform pos: 10.5,-279.5 parent: 2 - - uid: 8802 + - uid: 10109 components: - type: Transform pos: 11.5,-279.5 parent: 2 - - uid: 9002 + - uid: 10110 components: - type: Transform pos: 9.5,-279.5 parent: 2 - - uid: 9016 + - uid: 10111 components: - type: Transform pos: 10.5,-118.5 parent: 2 - - uid: 9391 + - uid: 10112 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,22.5 parent: 2 - - uid: 9392 + - uid: 10113 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,23.5 parent: 2 - - uid: 9434 + - uid: 10114 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 2 - - uid: 9435 + - uid: 10115 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,25.5 parent: 2 - - uid: 9505 + - uid: 10116 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-299.5 parent: 2 - - uid: 9506 + - uid: 10117 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-298.5 parent: 2 - - uid: 9507 + - uid: 10118 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-297.5 parent: 2 - - uid: 9508 + - uid: 10119 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-298.5 parent: 2 - - uid: 9509 + - uid: 10120 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-299.5 parent: 2 - - uid: 9510 + - uid: 10121 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-297.5 parent: 2 - - uid: 9523 + - uid: 10122 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-317.5 parent: 2 - - uid: 9524 + - uid: 10123 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-316.5 parent: 2 - - uid: 9525 + - uid: 10124 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-315.5 parent: 2 - - uid: 9526 + - uid: 10125 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-315.5 parent: 2 - - uid: 9527 + - uid: 10126 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-316.5 parent: 2 - - uid: 9528 + - uid: 10127 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-317.5 parent: 2 - - uid: 9529 + - uid: 10128 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-308.5 parent: 2 - - uid: 9530 + - uid: 10129 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-306.5 parent: 2 - - uid: 9531 + - uid: 10130 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-308.5 parent: 2 - - uid: 9532 + - uid: 10131 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-307.5 parent: 2 - - uid: 9533 + - uid: 10132 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-306.5 parent: 2 - - uid: 9817 + - uid: 10133 components: - type: Transform pos: -10.5,-302.5 parent: 2 - - uid: 9859 + - uid: 10134 components: - type: Transform pos: -10.5,-303.5 parent: 2 - - uid: 9861 + - uid: 10135 components: - type: Transform pos: -10.5,-304.5 parent: 2 - - uid: 9871 + - uid: 10136 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 9957 + - uid: 10137 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-310.5 parent: 2 - - uid: 9958 + - uid: 10138 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-309.5 parent: 2 - - uid: 9959 + - uid: 10139 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-305.5 parent: 2 - - uid: 9960 + - uid: 10140 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-304.5 parent: 2 - - uid: 9999 + - uid: 10141 components: - type: Transform pos: -7.5,-312.5 parent: 2 - - uid: 10019 + - uid: 10142 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-316.5 parent: 2 - - uid: 10020 + - uid: 10143 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-316.5 parent: 2 - - uid: 10060 + - uid: 10144 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-305.5 parent: 2 - - uid: 10061 + - uid: 10145 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-309.5 parent: 2 - - uid: 10070 + - uid: 10146 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-320.5 parent: 2 - - uid: 10071 + - uid: 10147 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-319.5 parent: 2 - - uid: 10072 + - uid: 10148 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-318.5 parent: 2 - - uid: 10073 + - uid: 10149 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-317.5 parent: 2 - - uid: 10076 + - uid: 10150 components: - type: Transform pos: -8.5,-312.5 parent: 2 - - uid: 10138 + - uid: 10151 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-312.5 parent: 2 - - uid: 10139 + - uid: 10152 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-313.5 parent: 2 - - uid: 10140 + - uid: 10153 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-314.5 parent: 2 - - uid: 10141 + - uid: 10154 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-315.5 parent: 2 - - uid: 10153 + - uid: 10155 components: - type: Transform pos: 11.5,-297.5 parent: 2 - - uid: 10154 + - uid: 10156 components: - type: Transform pos: 11.5,-298.5 parent: 2 - - uid: 10155 + - uid: 10157 components: - type: Transform pos: 11.5,-299.5 parent: 2 - - uid: 10156 + - uid: 10158 components: - type: Transform pos: 11.5,-315.5 parent: 2 - - uid: 10157 + - uid: 10159 components: - type: Transform pos: 11.5,-316.5 parent: 2 - - uid: 10158 + - uid: 10160 components: - type: Transform pos: 11.5,-317.5 parent: 2 - - uid: 10701 + - uid: 10161 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,20.5 parent: 2 - - uid: 10752 + - uid: 10162 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-327.5 parent: 2 - - uid: 10828 + - uid: 10163 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-331.5 parent: 2 - - uid: 10830 + - uid: 10164 components: - type: Transform pos: 1.5,-350.5 parent: 2 - - uid: 10935 + - uid: 10165 components: - type: Transform pos: -19.5,-87.5 parent: 2 - - uid: 10977 + - uid: 10166 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 11001 + - uid: 10167 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,15.5 parent: 2 - - uid: 11052 + - uid: 10168 components: - type: Transform pos: 1.5,-351.5 parent: 2 - - uid: 11053 + - uid: 10169 components: - type: Transform pos: 1.5,-352.5 parent: 2 - - uid: 11054 + - uid: 10170 components: - type: Transform pos: -0.5,-350.5 parent: 2 - - uid: 11055 + - uid: 10171 components: - type: Transform pos: -0.5,-351.5 parent: 2 - - uid: 11056 + - uid: 10172 components: - type: Transform pos: -0.5,-352.5 parent: 2 - - uid: 11224 + - uid: 10173 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-370.5 parent: 2 - - uid: 11262 + - uid: 10174 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-365.5 parent: 2 - - uid: 11306 + - uid: 10175 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-364.5 parent: 2 - - uid: 11307 + - uid: 10176 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-367.5 parent: 2 - - uid: 11308 + - uid: 10177 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-366.5 parent: 2 - - uid: 11309 + - uid: 10178 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-364.5 parent: 2 - - uid: 11310 + - uid: 10179 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-363.5 parent: 2 - - uid: 11313 + - uid: 10180 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-371.5 parent: 2 - - uid: 11314 + - uid: 10181 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-372.5 parent: 2 - - uid: 11316 + - uid: 10182 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-372.5 parent: 2 - - uid: 11317 + - uid: 10183 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-371.5 parent: 2 - - uid: 11318 + - uid: 10184 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-370.5 parent: 2 - - uid: 11319 + - uid: 10185 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-367.5 parent: 2 - - uid: 11320 + - uid: 10186 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-366.5 parent: 2 - - uid: 11322 + - uid: 10187 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-364.5 parent: 2 - - uid: 11323 + - uid: 10188 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-364.5 parent: 2 - - uid: 11324 + - uid: 10189 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-363.5 parent: 2 - - uid: 11325 + - uid: 10190 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-361.5 parent: 2 - - uid: 11326 + - uid: 10191 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-360.5 parent: 2 - - uid: 11394 + - uid: 10192 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-364.5 parent: 2 - - uid: 11395 + - uid: 10193 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-363.5 parent: 2 - - uid: 11396 + - uid: 10194 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-363.5 parent: 2 - - uid: 11397 + - uid: 10195 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-364.5 parent: 2 - - uid: 11398 + - uid: 10196 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-365.5 parent: 2 - - uid: 11399 + - uid: 10197 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - - uid: 11400 + - uid: 10198 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-369.5 parent: 2 - - uid: 11401 + - uid: 10199 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - - uid: 11413 + - uid: 10200 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 11414 + - uid: 10201 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-329.5 parent: 2 - - uid: 11415 + - uid: 10202 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - - uid: 11416 + - uid: 10203 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-331.5 parent: 2 - - uid: 11548 + - uid: 10204 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-330.5 parent: 2 - - uid: 11880 + - uid: 10205 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-341.5 parent: 2 - - uid: 11898 + - uid: 10206 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-335.5 parent: 2 - - uid: 11981 + - uid: 10207 components: - type: Transform pos: -4.5,-381.5 parent: 2 - - uid: 12111 + - uid: 10208 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-259.5 parent: 2 - - uid: 12243 + - uid: 10209 components: - type: Transform pos: 14.5,-246.5 parent: 2 - - uid: 12473 + - uid: 10210 components: - type: Transform pos: 20.5,-245.5 parent: 2 - - uid: 12518 + - uid: 10211 components: - type: Transform pos: 20.5,-246.5 parent: 2 - - uid: 12609 + - uid: 10212 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 12692 + - uid: 10213 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-145.5 parent: 2 - - uid: 12772 + - uid: 10214 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,17.5 parent: 2 - - uid: 13272 + - uid: 10215 components: - type: Transform pos: 17.5,-238.5 parent: 2 - - uid: 13280 + - uid: 10216 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-343.5 parent: 2 - - uid: 13286 + - uid: 10217 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-348.5 parent: 2 - - uid: 13289 + - uid: 10218 components: - type: Transform pos: 14.5,-373.5 parent: 2 - - uid: 13297 + - uid: 10219 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-299.5 parent: 2 - - uid: 13298 + - uid: 10220 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-300.5 parent: 2 - - uid: 13447 + - uid: 10221 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-340.5 parent: 2 - - uid: 13455 + - uid: 10222 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-113.5 parent: 2 - - uid: 13459 + - uid: 10223 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-327.5 parent: 2 - - uid: 13474 + - uid: 10224 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-334.5 parent: 2 - - uid: 13820 + - uid: 10225 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-336.5 parent: 2 - - uid: 13989 + - uid: 10226 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-332.5 parent: 2 - - uid: 14000 + - uid: 10227 components: - type: Transform pos: 18.5,-238.5 parent: 2 - - uid: 14008 + - uid: 10228 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-330.5 parent: 2 - - uid: 14326 + - uid: 10229 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-61.5 parent: 2 - - uid: 14327 + - uid: 10230 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-62.5 parent: 2 - - uid: 14328 + - uid: 10231 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-60.5 parent: 2 - - uid: 14329 + - uid: 10232 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-61.5 parent: 2 - - uid: 14330 + - uid: 10233 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-62.5 parent: 2 - - uid: 14416 + - uid: 10234 components: - type: Transform pos: 14.5,-76.5 parent: 2 - - uid: 14417 + - uid: 10235 components: - type: Transform pos: 16.5,-76.5 parent: 2 - - uid: 14687 + - uid: 10236 components: - type: Transform pos: -14.5,-365.5 parent: 2 - - uid: 14688 + - uid: 10237 components: - type: Transform pos: -13.5,-368.5 parent: 2 - - uid: 14797 + - uid: 10238 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-74.5 parent: 2 - - uid: 14917 + - uid: 10239 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-146.5 parent: 2 - - uid: 15799 + - uid: 10240 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,12.5 parent: 2 - - uid: 15801 + - uid: 10241 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,14.5 parent: 2 - - uid: 15802 + - uid: 10242 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,17.5 parent: 2 - - uid: 15803 + - uid: 10243 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,13.5 parent: 2 - - uid: 15805 + - uid: 10244 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 2 - - uid: 15806 + - uid: 10245 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,16.5 parent: 2 - - uid: 15807 + - uid: 10246 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,13.5 parent: 2 - - uid: 15808 + - uid: 10247 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 - - uid: 15810 + - uid: 10248 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,17.5 parent: 2 - - uid: 15813 + - uid: 10249 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,17.5 parent: 2 - - uid: 15821 + - uid: 10250 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,20.5 parent: 2 - - uid: 15822 + - uid: 10251 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,12.5 parent: 2 - - uid: 15824 + - uid: 10252 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,11.5 parent: 2 - - uid: 15825 + - uid: 10253 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,11.5 parent: 2 - - uid: 15826 + - uid: 10254 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,9.5 parent: 2 - - uid: 15827 + - uid: 10255 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 2 - - uid: 15828 + - uid: 10256 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 2 - - uid: 15829 + - uid: 10257 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,9.5 parent: 2 - - uid: 15830 + - uid: 10258 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 2 - - uid: 15831 + - uid: 10259 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 2 - - uid: 15832 + - uid: 10260 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,10.5 parent: 2 - - uid: 15833 + - uid: 10261 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 2 - - uid: 15834 + - uid: 10262 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 2 - - uid: 15835 + - uid: 10263 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,8.5 parent: 2 - - uid: 15836 + - uid: 10264 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,7.5 parent: 2 - - uid: 15837 + - uid: 10265 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,7.5 parent: 2 - - uid: 15838 + - uid: 10266 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,6.5 parent: 2 - - uid: 15839 + - uid: 10267 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,6.5 parent: 2 - - uid: 15840 + - uid: 10268 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,6.5 parent: 2 - - uid: 15841 + - uid: 10269 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,6.5 parent: 2 - - uid: 15842 + - uid: 10270 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 2 - - uid: 15843 + - uid: 10271 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,7.5 parent: 2 - - uid: 15844 + - uid: 10272 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,8.5 parent: 2 - - uid: 15845 + - uid: 10273 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,9.5 parent: 2 - - uid: 15846 + - uid: 10274 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 2 - - uid: 15847 + - uid: 10275 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,10.5 parent: 2 - - uid: 15848 + - uid: 10276 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,11.5 parent: 2 - - uid: 15849 + - uid: 10277 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,11.5 parent: 2 - - uid: 15850 + - uid: 10278 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,11.5 parent: 2 - - uid: 15852 + - uid: 10279 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,11.5 parent: 2 - - uid: 15853 + - uid: 10280 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,11.5 parent: 2 - - uid: 15902 + - uid: 10281 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-0.5 parent: 2 - - uid: 15903 + - uid: 10282 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-0.5 parent: 2 - - uid: 15904 + - uid: 10283 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,0.5 parent: 2 - - uid: 15905 + - uid: 10284 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,0.5 parent: 2 - - uid: 15906 + - uid: 10285 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,1.5 parent: 2 - - uid: 15907 + - uid: 10286 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,1.5 parent: 2 - - uid: 15910 + - uid: 10287 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-0.5 parent: 2 - - uid: 15911 + - uid: 10288 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-0.5 parent: 2 - - uid: 15912 + - uid: 10289 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,0.5 parent: 2 - - uid: 15913 + - uid: 10290 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,0.5 parent: 2 - - uid: 15914 + - uid: 10291 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,1.5 parent: 2 - - uid: 15915 + - uid: 10292 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,1.5 parent: 2 - - uid: 15924 + - uid: 10293 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-27.5 parent: 2 - - uid: 15925 + - uid: 10294 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-27.5 parent: 2 - - uid: 15926 + - uid: 10295 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-27.5 parent: 2 - - uid: 15927 + - uid: 10296 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-27.5 parent: 2 - - uid: 15940 + - uid: 10297 components: - type: Transform pos: 18.5,-6.5 parent: 2 - - uid: 15943 + - uid: 10298 components: - type: Transform pos: 18.5,-4.5 parent: 2 - - uid: 15944 + - uid: 10299 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-26.5 parent: 2 - - uid: 15948 + - uid: 10300 components: - type: Transform pos: -19.5,-137.5 parent: 2 - - uid: 15961 + - uid: 10301 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-26.5 parent: 2 - - uid: 15962 + - uid: 10302 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 - - uid: 15967 + - uid: 10303 components: - type: Transform pos: -17.5,8.5 parent: 2 - - uid: 15968 + - uid: 10304 components: - type: Transform pos: -17.5,-5.5 parent: 2 - - uid: 15969 + - uid: 10305 components: - type: Transform pos: -17.5,-4.5 parent: 2 - - uid: 15975 + - uid: 10306 components: - type: Transform pos: -17.5,7.5 parent: 2 - - uid: 15976 + - uid: 10307 components: - type: Transform pos: -16.5,10.5 parent: 2 - - uid: 15977 + - uid: 10308 components: - type: Transform pos: -17.5,6.5 parent: 2 - - uid: 15978 + - uid: 10309 components: - type: Transform pos: -17.5,3.5 parent: 2 - - uid: 15979 + - uid: 10310 components: - type: Transform pos: -17.5,-7.5 parent: 2 - - uid: 15980 + - uid: 10311 components: - type: Transform pos: -17.5,2.5 parent: 2 - - uid: 15981 + - uid: 10312 components: - type: Transform pos: -17.5,-1.5 parent: 2 - - uid: 16005 + - uid: 10313 components: - type: Transform pos: -19.5,-85.5 parent: 2 - - uid: 16006 + - uid: 10314 components: - type: Transform pos: -19.5,-88.5 parent: 2 - - uid: 16007 + - uid: 10315 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 16008 + - uid: 10316 components: - type: Transform pos: -17.5,-99.5 parent: 2 - - uid: 16110 + - uid: 10317 components: - type: Transform pos: -17.5,-127.5 parent: 2 - - uid: 16111 + - uid: 10318 components: - type: Transform pos: -20.5,-107.5 parent: 2 - - uid: 16112 + - uid: 10319 components: - type: Transform pos: -17.5,-125.5 parent: 2 - - uid: 16113 + - uid: 10320 components: - type: Transform pos: -17.5,-124.5 parent: 2 - - uid: 16114 + - uid: 10321 components: - type: Transform pos: -18.5,-121.5 parent: 2 - - uid: 16115 + - uid: 10322 components: - type: Transform pos: -18.5,-120.5 parent: 2 - - uid: 16116 + - uid: 10323 components: - type: Transform pos: -18.5,-119.5 parent: 2 - - uid: 16117 + - uid: 10324 components: - type: Transform pos: -19.5,-115.5 parent: 2 - - uid: 16118 + - uid: 10325 components: - type: Transform pos: -19.5,-114.5 parent: 2 - - uid: 16119 + - uid: 10326 components: - type: Transform pos: -19.5,-113.5 parent: 2 - - uid: 16120 + - uid: 10327 components: - type: Transform pos: -19.5,-111.5 parent: 2 - - uid: 16121 + - uid: 10328 components: - type: Transform pos: -20.5,-108.5 parent: 2 - - uid: 16122 + - uid: 10329 components: - type: Transform pos: -19.5,-84.5 parent: 2 - - uid: 16123 + - uid: 10330 components: - type: Transform pos: -18.5,-91.5 parent: 2 - - uid: 16124 + - uid: 10331 components: - type: Transform pos: -18.5,-95.5 parent: 2 - - uid: 16125 + - uid: 10332 components: - type: Transform pos: -18.5,-96.5 parent: 2 - - uid: 16126 + - uid: 10333 components: - type: Transform pos: -18.5,-93.5 parent: 2 - - uid: 16127 + - uid: 10334 components: - type: Transform pos: -20.5,-80.5 parent: 2 - - uid: 16128 + - uid: 10335 components: - type: Transform pos: -20.5,-79.5 parent: 2 - - uid: 16129 + - uid: 10336 components: - type: Transform pos: -17.5,-73.5 parent: 2 - - uid: 16131 + - uid: 10337 components: - type: Transform pos: -17.5,-71.5 parent: 2 - - uid: 16133 + - uid: 10338 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 16134 + - uid: 10339 components: - type: Transform pos: -19.5,-138.5 parent: 2 - - uid: 16135 + - uid: 10340 components: - type: Transform pos: -18.5,-67.5 parent: 2 - - uid: 16138 + - uid: 10341 components: - type: Transform pos: -18.5,-64.5 parent: 2 - - uid: 16139 + - uid: 10342 components: - type: Transform pos: -19.5,-61.5 parent: 2 - - uid: 16140 + - uid: 10343 components: - type: Transform pos: -19.5,-60.5 parent: 2 - - uid: 16141 + - uid: 10344 components: - type: Transform pos: -19.5,-58.5 parent: 2 - - uid: 16142 + - uid: 10345 components: - type: Transform pos: -19.5,-57.5 parent: 2 - - uid: 16148 + - uid: 10346 components: - type: Transform pos: -20.5,-134.5 parent: 2 - - uid: 16149 + - uid: 10347 components: - type: Transform pos: -20.5,-55.5 parent: 2 - - uid: 16151 + - uid: 10348 components: - type: Transform pos: -20.5,-54.5 parent: 2 - - uid: 16153 + - uid: 10349 components: - type: Transform pos: -20.5,-52.5 parent: 2 - - uid: 16189 + - uid: 10350 components: - type: Transform pos: 18.5,8.5 parent: 2 - - uid: 16190 + - uid: 10351 components: - type: Transform pos: 18.5,7.5 parent: 2 - - uid: 16191 + - uid: 10352 components: - type: Transform pos: 18.5,6.5 parent: 2 - - uid: 16192 + - uid: 10353 components: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 16193 + - uid: 10354 components: - type: Transform pos: 18.5,1.5 parent: 2 - - uid: 16201 + - uid: 10355 components: - type: Transform pos: 18.5,-1.5 parent: 2 - - uid: 16202 + - uid: 10356 components: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 16220 + - uid: 10357 components: - type: Transform pos: 19.5,-26.5 parent: 2 - - uid: 16222 + - uid: 10358 components: - type: Transform pos: 19.5,-27.5 parent: 2 - - uid: 16224 + - uid: 10359 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 16226 + - uid: 10360 components: - type: Transform pos: 20.5,-30.5 parent: 2 - - uid: 16227 + - uid: 10361 components: - type: Transform pos: 21.5,-32.5 parent: 2 - - uid: 16228 + - uid: 10362 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 16229 + - uid: 10363 components: - type: Transform pos: 21.5,-35.5 parent: 2 - - uid: 16230 + - uid: 10364 components: - type: Transform pos: 21.5,-36.5 parent: 2 - - uid: 16231 + - uid: 10365 components: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 16232 + - uid: 10366 components: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 16233 + - uid: 10367 components: - type: Transform pos: 21.5,-40.5 parent: 2 - - uid: 16234 + - uid: 10368 components: - type: Transform pos: 20.5,-44.5 parent: 2 - - uid: 16235 + - uid: 10369 components: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 16236 + - uid: 10370 components: - type: Transform pos: 21.5,-52.5 parent: 2 - - uid: 16237 + - uid: 10371 components: - type: Transform pos: 21.5,-53.5 parent: 2 - - uid: 16238 + - uid: 10372 components: - type: Transform pos: 21.5,-54.5 parent: 2 - - uid: 16239 + - uid: 10373 components: - type: Transform pos: 20.5,-56.5 parent: 2 - - uid: 16240 + - uid: 10374 components: - type: Transform pos: 20.5,-57.5 parent: 2 - - uid: 16241 + - uid: 10375 components: - type: Transform pos: 20.5,-58.5 parent: 2 - - uid: 16242 + - uid: 10376 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 16243 + - uid: 10377 components: - type: Transform pos: 20.5,-61.5 parent: 2 - - uid: 16244 + - uid: 10378 components: - type: Transform pos: 18.5,-97.5 parent: 2 - - uid: 16245 + - uid: 10379 components: - type: Transform pos: 21.5,-81.5 parent: 2 - - uid: 16246 + - uid: 10380 components: - type: Transform pos: 19.5,-66.5 parent: 2 - - uid: 16247 + - uid: 10381 components: - type: Transform pos: 19.5,-67.5 parent: 2 - - uid: 16248 + - uid: 10382 components: - type: Transform pos: 19.5,-68.5 parent: 2 - - uid: 16249 + - uid: 10383 components: - type: Transform pos: 19.5,-72.5 parent: 2 - - uid: 16250 + - uid: 10384 components: - type: Transform pos: 19.5,-71.5 parent: 2 - - uid: 16251 + - uid: 10385 components: - type: Transform pos: 21.5,-80.5 parent: 2 - - uid: 16252 + - uid: 10386 components: - type: Transform pos: 20.5,-83.5 parent: 2 - - uid: 16253 + - uid: 10387 components: - type: Transform pos: 20.5,-84.5 parent: 2 - - uid: 16254 + - uid: 10388 components: - type: Transform pos: 20.5,-85.5 parent: 2 - - uid: 16255 + - uid: 10389 components: - type: Transform pos: 20.5,-86.5 parent: 2 - - uid: 16256 + - uid: 10390 components: - type: Transform pos: 18.5,-98.5 parent: 2 - - uid: 16257 + - uid: 10391 components: - type: Transform pos: 19.5,-91.5 parent: 2 - - uid: 16258 + - uid: 10392 components: - type: Transform pos: 19.5,-92.5 parent: 2 - - uid: 16259 + - uid: 10393 components: - type: Transform pos: 19.5,-93.5 parent: 2 - - uid: 16260 + - uid: 10394 components: - type: Transform pos: 21.5,-106.5 parent: 2 - - uid: 16261 + - uid: 10395 components: - type: Transform pos: 18.5,-124.5 parent: 2 - - uid: 16262 + - uid: 10396 components: - type: Transform pos: 20.5,-109.5 parent: 2 - - uid: 16263 + - uid: 10397 components: - type: Transform pos: 20.5,-110.5 parent: 2 - - uid: 16264 + - uid: 10398 components: - type: Transform pos: 20.5,-111.5 parent: 2 - - uid: 16265 + - uid: 10399 components: - type: Transform pos: 20.5,-113.5 parent: 2 - - uid: 16266 + - uid: 10400 components: - type: Transform pos: 19.5,-117.5 parent: 2 - - uid: 16267 + - uid: 10401 components: - type: Transform pos: 19.5,-118.5 parent: 2 - - uid: 16268 + - uid: 10402 components: - type: Transform pos: 19.5,-119.5 parent: 2 - - uid: 16269 + - uid: 10403 components: - type: Transform pos: 18.5,-125.5 parent: 2 - - uid: 16270 + - uid: 10404 components: - type: Transform pos: -20.5,-133.5 parent: 2 - - uid: 16271 + - uid: 10405 components: - type: Transform pos: -20.5,-135.5 parent: 2 - - uid: 16272 + - uid: 10406 components: - type: Transform pos: -19.5,-139.5 parent: 2 - - uid: 16273 + - uid: 10407 components: - type: Transform pos: -19.5,-140.5 parent: 2 - - uid: 16274 + - uid: 10408 components: - type: Transform pos: -19.5,-142.5 parent: 2 - - uid: 16275 + - uid: 10409 components: - type: Transform pos: -19.5,-143.5 parent: 2 - - uid: 16276 + - uid: 10410 components: - type: Transform pos: -18.5,-145.5 parent: 2 - - uid: 16277 + - uid: 10411 components: - type: Transform pos: -18.5,-146.5 parent: 2 - - uid: 16278 + - uid: 10412 components: - type: Transform pos: -18.5,-147.5 parent: 2 - - uid: 16279 + - uid: 10413 components: - type: Transform pos: -18.5,-149.5 parent: 2 - - uid: 16280 + - uid: 10414 components: - type: Transform pos: -18.5,-150.5 parent: 2 - - uid: 16281 + - uid: 10415 components: - type: Transform pos: -17.5,-151.5 parent: 2 - - uid: 16282 + - uid: 10416 components: - type: Transform pos: -17.5,-152.5 parent: 2 - - uid: 16283 + - uid: 10417 components: - type: Transform pos: -17.5,-153.5 parent: 2 - - uid: 16284 + - uid: 10418 components: - type: Transform pos: -17.5,-154.5 parent: 2 - - uid: 16295 + - uid: 10419 components: - type: Transform pos: -19.5,-164.5 parent: 2 - - uid: 16317 + - uid: 10420 components: - type: Transform pos: -20.5,-160.5 parent: 2 - - uid: 16318 + - uid: 10421 components: - type: Transform pos: -20.5,-161.5 parent: 2 - - uid: 16319 + - uid: 10422 components: - type: Transform pos: -20.5,-162.5 parent: 2 - - uid: 16320 + - uid: 10423 components: - type: Transform pos: -19.5,-165.5 parent: 2 - - uid: 16321 + - uid: 10424 components: - type: Transform pos: -19.5,-166.5 parent: 2 - - uid: 16322 + - uid: 10425 components: - type: Transform pos: -19.5,-169.5 parent: 2 - - uid: 16323 + - uid: 10426 components: - type: Transform pos: -19.5,-168.5 parent: 2 - - uid: 16324 + - uid: 10427 components: - type: Transform pos: -18.5,-172.5 parent: 2 - - uid: 16325 + - uid: 10428 components: - type: Transform pos: -18.5,-173.5 parent: 2 - - uid: 16326 + - uid: 10429 components: - type: Transform pos: -18.5,-176.5 parent: 2 - - uid: 16327 + - uid: 10430 components: - type: Transform pos: -18.5,-175.5 parent: 2 - - uid: 16328 + - uid: 10431 components: - type: Transform pos: -17.5,-180.5 parent: 2 - - uid: 16329 + - uid: 10432 components: - type: Transform pos: -17.5,-179.5 parent: 2 - - uid: 16344 + - uid: 10433 components: - type: Transform pos: 19.5,-170.5 parent: 2 - - uid: 16345 + - uid: 10434 components: - type: Transform pos: 19.5,-171.5 parent: 2 - - uid: 16364 + - uid: 10435 components: - type: Transform pos: 18.5,-179.5 parent: 2 - - uid: 16365 + - uid: 10436 components: - type: Transform pos: 18.5,-178.5 parent: 2 - - uid: 16366 + - uid: 10437 components: - type: Transform pos: 18.5,-177.5 parent: 2 - - uid: 16367 + - uid: 10438 components: - type: Transform pos: 19.5,-175.5 parent: 2 - - uid: 16368 + - uid: 10439 components: - type: Transform pos: 19.5,-174.5 parent: 2 - - uid: 16369 + - uid: 10440 components: - type: Transform pos: 19.5,-173.5 parent: 2 - - uid: 16370 + - uid: 10441 components: - type: Transform pos: 20.5,-168.5 parent: 2 - - uid: 16371 + - uid: 10442 components: - type: Transform pos: 20.5,-167.5 parent: 2 - - uid: 16372 + - uid: 10443 components: - type: Transform pos: 20.5,-164.5 parent: 2 - - uid: 16374 + - uid: 10444 components: - type: Transform pos: 20.5,-163.5 parent: 2 - - uid: 16375 + - uid: 10445 components: - type: Transform pos: 20.5,-162.5 parent: 2 - - uid: 16376 + - uid: 10446 components: - type: Transform pos: 21.5,-160.5 parent: 2 - - uid: 16377 + - uid: 10447 components: - type: Transform pos: 21.5,-159.5 parent: 2 - - uid: 16378 + - uid: 10448 components: - type: Transform pos: 21.5,-161.5 parent: 2 - - uid: 16393 + - uid: 10449 components: - type: Transform pos: 22.5,-187.5 parent: 2 - - uid: 16409 + - uid: 10450 components: - type: Transform pos: 22.5,-188.5 parent: 2 - - uid: 16410 + - uid: 10451 components: - type: Transform pos: 22.5,-189.5 parent: 2 - - uid: 16411 + - uid: 10452 components: - type: Transform pos: 21.5,-191.5 parent: 2 - - uid: 16412 + - uid: 10453 components: - type: Transform pos: 21.5,-192.5 parent: 2 - - uid: 16413 + - uid: 10454 components: - type: Transform pos: 21.5,-193.5 parent: 2 - - uid: 16414 + - uid: 10455 components: - type: Transform pos: -17.5,-207.5 parent: 2 - - uid: 16415 + - uid: 10456 components: - type: Transform pos: 20.5,-198.5 parent: 2 - - uid: 16416 + - uid: 10457 components: - type: Transform pos: 20.5,-199.5 parent: 2 - - uid: 16417 + - uid: 10458 components: - type: Transform pos: 20.5,-200.5 parent: 2 - - uid: 16418 + - uid: 10459 components: - type: Transform pos: 19.5,-204.5 parent: 2 - - uid: 16419 + - uid: 10460 components: - type: Transform pos: 19.5,-205.5 parent: 2 - - uid: 16420 + - uid: 10461 components: - type: Transform pos: 19.5,-206.5 parent: 2 - - uid: 16421 + - uid: 10462 components: - type: Transform pos: 19.5,-207.5 parent: 2 - - uid: 16422 + - uid: 10463 components: - type: Transform pos: 20.5,-203.5 parent: 2 - - uid: 16423 + - uid: 10464 components: - type: Transform pos: 20.5,-202.5 parent: 2 - - uid: 16424 + - uid: 10465 components: - type: Transform pos: 19.5,-203.5 parent: 2 - - uid: 16426 + - uid: 10466 components: - type: Transform pos: -20.5,-187.5 parent: 2 - - uid: 16456 + - uid: 10467 components: - type: Transform pos: -20.5,-188.5 parent: 2 - - uid: 16457 + - uid: 10468 components: - type: Transform pos: -20.5,-189.5 parent: 2 - - uid: 16458 + - uid: 10469 components: - type: Transform pos: -19.5,-191.5 parent: 2 - - uid: 16459 + - uid: 10470 components: - type: Transform pos: -19.5,-192.5 parent: 2 - - uid: 16460 + - uid: 10471 components: - type: Transform pos: -19.5,-193.5 parent: 2 - - uid: 16461 + - uid: 10472 components: - type: Transform pos: -18.5,-198.5 parent: 2 - - uid: 16462 + - uid: 10473 components: - type: Transform pos: -19.5,-195.5 parent: 2 - - uid: 16463 + - uid: 10474 components: - type: Transform pos: -19.5,-196.5 parent: 2 - - uid: 16464 + - uid: 10475 components: - type: Transform pos: -18.5,-199.5 parent: 2 - - uid: 16465 + - uid: 10476 components: - type: Transform pos: -18.5,-200.5 parent: 2 - - uid: 16466 + - uid: 10477 components: - type: Transform pos: -17.5,-205.5 parent: 2 - - uid: 16467 + - uid: 10478 components: - type: Transform pos: -17.5,-206.5 parent: 2 - - uid: 16468 + - uid: 10479 components: - type: Transform pos: -18.5,-203.5 parent: 2 - - uid: 16469 + - uid: 10480 components: - type: Transform pos: -18.5,-202.5 parent: 2 - - uid: 16611 + - uid: 10481 components: - type: Transform pos: -15.5,-357.5 parent: 2 - - uid: 16612 + - uid: 10482 components: - type: Transform pos: -15.5,-358.5 parent: 2 - - uid: 16613 + - uid: 10483 components: - type: Transform pos: -14.5,-361.5 parent: 2 - - uid: 16614 + - uid: 10484 components: - type: Transform pos: -14.5,-362.5 parent: 2 - - uid: 16615 + - uid: 10485 components: - type: Transform pos: -14.5,-363.5 parent: 2 - - uid: 16616 + - uid: 10486 components: - type: Transform pos: -14.5,-366.5 parent: 2 - - uid: 16617 + - uid: 10487 components: - type: Transform pos: -13.5,-369.5 parent: 2 - - uid: 16618 + - uid: 10488 components: - type: Transform pos: -13.5,-370.5 parent: 2 - - uid: 16619 + - uid: 10489 components: - type: Transform pos: -13.5,-373.5 parent: 2 - - uid: 16620 + - uid: 10490 components: - type: Transform pos: -13.5,-372.5 parent: 2 - - uid: 16621 + - uid: 10491 components: - type: Transform pos: -12.5,-375.5 parent: 2 - - uid: 16622 + - uid: 10492 components: - type: Transform pos: -12.5,-376.5 parent: 2 - - uid: 16625 + - uid: 10493 components: - type: Transform pos: 13.5,-377.5 parent: 2 - - uid: 16626 + - uid: 10494 components: - type: Transform pos: 13.5,-376.5 parent: 2 - - uid: 16627 + - uid: 10495 components: - type: Transform pos: 13.5,-375.5 parent: 2 - - uid: 16629 + - uid: 10496 components: - type: Transform pos: 14.5,-371.5 parent: 2 - - uid: 16630 + - uid: 10497 components: - type: Transform pos: 14.5,-370.5 parent: 2 - - uid: 16631 + - uid: 10498 components: - type: Transform pos: 14.5,-369.5 parent: 2 - - uid: 16632 + - uid: 10499 components: - type: Transform pos: 14.5,-367.5 parent: 2 - - uid: 16633 + - uid: 10500 components: - type: Transform pos: 15.5,-366.5 parent: 2 - - uid: 16634 + - uid: 10501 components: - type: Transform pos: 15.5,-365.5 parent: 2 - - uid: 16635 + - uid: 10502 components: - type: Transform pos: 15.5,-364.5 parent: 2 - - uid: 16636 + - uid: 10503 components: - type: Transform pos: 15.5,-361.5 parent: 2 - - uid: 16637 + - uid: 10504 components: - type: Transform pos: 15.5,-360.5 parent: 2 - - uid: 16638 + - uid: 10505 components: - type: Transform pos: 15.5,-359.5 parent: 2 - - uid: 16639 + - uid: 10506 components: - type: Transform pos: 16.5,-357.5 parent: 2 - - uid: 16640 + - uid: 10507 components: - type: Transform pos: 16.5,-356.5 parent: 2 - - uid: 16730 + - uid: 10508 components: - type: Transform pos: 20.5,-293.5 parent: 2 - - uid: 16731 + - uid: 10509 components: - type: Transform pos: 22.5,-293.5 parent: 2 - - uid: 16732 + - uid: 10510 components: - type: Transform pos: 24.5,-293.5 parent: 2 - - uid: 16733 + - uid: 10511 components: - type: Transform pos: 23.5,-294.5 parent: 2 - - uid: 16734 + - uid: 10512 components: - type: Transform pos: 21.5,-294.5 parent: 2 - - uid: 16735 + - uid: 10513 components: - type: Transform pos: 19.5,-294.5 parent: 2 - - uid: 16736 + - uid: 10514 components: - type: Transform pos: 18.5,-294.5 parent: 2 - - uid: 16737 + - uid: 10515 components: - type: Transform pos: 25.5,-294.5 parent: 2 - - uid: 16738 + - uid: 10516 components: - type: Transform pos: 26.5,-294.5 parent: 2 - - uid: 16783 + - uid: 10517 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-314.5 parent: 2 - - uid: 16784 + - uid: 10518 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-313.5 parent: 2 - - uid: 16785 + - uid: 10519 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-310.5 parent: 2 - - uid: 16786 + - uid: 10520 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-309.5 parent: 2 - - uid: 16787 + - uid: 10521 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-308.5 parent: 2 - - uid: 16788 + - uid: 10522 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-306.5 parent: 2 - - uid: 16789 + - uid: 10523 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-305.5 parent: 2 - - uid: 16790 + - uid: 10524 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-304.5 parent: 2 - - uid: 16791 + - uid: 10525 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-303.5 parent: 2 - - uid: 16792 + - uid: 10526 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-302.5 parent: 2 - - uid: 16793 + - uid: 10527 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-315.5 parent: 2 - - uid: 16794 + - uid: 10528 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-315.5 parent: 2 - - uid: 16795 + - uid: 10529 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-316.5 parent: 2 - - uid: 16796 + - uid: 10530 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-318.5 parent: 2 - - uid: 16797 + - uid: 10531 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-321.5 parent: 2 - - uid: 16802 + - uid: 10532 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-301.5 parent: 2 - - uid: 16803 + - uid: 10533 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-300.5 parent: 2 - - uid: 16804 + - uid: 10534 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-297.5 parent: 2 - - uid: 16805 + - uid: 10535 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-296.5 parent: 2 - - uid: 16806 + - uid: 10536 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-295.5 parent: 2 - - uid: 16807 + - uid: 10537 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-293.5 parent: 2 - - uid: 16808 + - uid: 10538 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-298.5 parent: 2 - - uid: 16847 + - uid: 10539 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-295.5 parent: 2 - - uid: 16848 + - uid: 10540 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-295.5 parent: 2 - - uid: 16849 + - uid: 10541 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-296.5 parent: 2 - - uid: 16850 + - uid: 10542 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-297.5 parent: 2 - - uid: 16851 + - uid: 10543 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-299.5 parent: 2 - - uid: 16852 + - uid: 10544 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-300.5 parent: 2 - - uid: 16853 + - uid: 10545 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-302.5 parent: 2 - - uid: 16854 + - uid: 10546 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-303.5 parent: 2 - - uid: 16855 + - uid: 10547 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-304.5 parent: 2 - - uid: 16856 + - uid: 10548 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-306.5 parent: 2 - - uid: 16857 + - uid: 10549 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-307.5 parent: 2 - - uid: 16858 + - uid: 10550 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-309.5 parent: 2 - - uid: 16859 + - uid: 10551 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-310.5 parent: 2 - - uid: 16860 + - uid: 10552 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-312.5 parent: 2 - - uid: 16861 + - uid: 10553 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-313.5 parent: 2 - - uid: 16862 + - uid: 10554 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-314.5 parent: 2 - - uid: 16863 + - uid: 10555 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-315.5 parent: 2 - - uid: 16864 + - uid: 10556 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-317.5 parent: 2 - - uid: 16865 + - uid: 10557 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-319.5 parent: 2 - - uid: 16866 + - uid: 10558 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-320.5 parent: 2 - - uid: 16905 + - uid: 10559 components: - type: Transform pos: -15.5,-168.5 parent: 2 - - uid: 16907 + - uid: 10560 components: - type: Transform pos: -15.5,-166.5 parent: 2 - - uid: 16908 + - uid: 10561 components: - type: Transform pos: -15.5,-165.5 parent: 2 - - uid: 16909 + - uid: 10562 components: - type: Transform pos: -15.5,-164.5 parent: 2 - - uid: 16910 + - uid: 10563 components: - type: Transform pos: -15.5,-163.5 parent: 2 - - uid: 16911 + - uid: 10564 components: - type: Transform pos: -15.5,-162.5 parent: 2 - - uid: 16912 + - uid: 10565 components: - type: Transform pos: -15.5,-161.5 parent: 2 - proto: GrilleBroken entities: - - uid: 2249 + - uid: 10566 components: - type: Transform pos: 7.5,-148.5 parent: 2 - - uid: 3030 + - uid: 10567 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-148.5 parent: 2 - - uid: 3871 + - uid: 10568 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-202.5 parent: 2 - - uid: 3873 + - uid: 10569 components: - type: Transform pos: -3.5,-202.5 parent: 2 - - uid: 8098 + - uid: 10570 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-247.5 parent: 2 - - uid: 12091 + - uid: 10571 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-249.5 parent: 2 - - uid: 12107 + - uid: 10572 components: - type: Transform rot: -1.5707963267948966 rad @@ -71247,231 +70699,231 @@ entities: parent: 2 - proto: GrilleDiagonal entities: - - uid: 14 + - uid: 10573 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 1491 + - uid: 10574 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 1492 + - uid: 10575 components: - type: Transform pos: -10.5,-84.5 parent: 2 - - uid: 1493 + - uid: 10576 components: - type: Transform pos: -9.5,-83.5 parent: 2 - - uid: 1659 + - uid: 10577 components: - type: Transform pos: -6.5,-52.5 parent: 2 - - uid: 2791 + - uid: 10578 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 2 - - uid: 2794 + - uid: 10579 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-88.5 parent: 2 - - uid: 2842 + - uid: 10580 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-89.5 parent: 2 - - uid: 2855 + - uid: 10581 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-90.5 parent: 2 - - uid: 2907 + - uid: 10582 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 - - uid: 2942 + - uid: 10583 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-88.5 parent: 2 - - uid: 3158 + - uid: 10584 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-122.5 parent: 2 - - uid: 4511 + - uid: 10585 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-217.5 parent: 2 - - uid: 4649 + - uid: 10586 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 6879 + - uid: 10587 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-309.5 parent: 2 - - uid: 7499 + - uid: 10588 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-89.5 parent: 2 - - uid: 7547 + - uid: 10589 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-83.5 parent: 2 - - uid: 7554 + - uid: 10590 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 7679 + - uid: 10591 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 7685 + - uid: 10592 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-202.5 parent: 2 - - uid: 7754 + - uid: 10593 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-274.5 parent: 2 - - uid: 7756 + - uid: 10594 components: - type: Transform pos: -3.5,-272.5 parent: 2 - - uid: 7848 + - uid: 10595 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-191.5 parent: 2 - - uid: 7896 + - uid: 10596 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-191.5 parent: 2 - - uid: 7899 + - uid: 10597 components: - type: Transform pos: -9.5,-189.5 parent: 2 - - uid: 7900 + - uid: 10598 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-189.5 parent: 2 - - uid: 8197 + - uid: 10599 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-309.5 parent: 2 - - uid: 8217 + - uid: 10600 components: - type: Transform pos: -10.5,-307.5 parent: 2 - - uid: 8520 + - uid: 10601 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-273.5 parent: 2 - - uid: 8533 + - uid: 10602 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-284.5 parent: 2 - - uid: 8536 + - uid: 10603 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 8641 + - uid: 10604 components: - type: Transform pos: -1.5,-275.5 parent: 2 - - uid: 8657 + - uid: 10605 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-286.5 parent: 2 - - uid: 8672 + - uid: 10606 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-283.5 parent: 2 - - uid: 9955 + - uid: 10607 components: - type: Transform pos: 2.5,-309.5 parent: 2 - - uid: 9956 + - uid: 10608 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-305.5 parent: 2 - - uid: 10054 + - uid: 10609 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-309.5 parent: 2 - - uid: 10059 + - uid: 10610 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-305.5 parent: 2 - - uid: 10065 + - uid: 10611 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-320.5 parent: 2 - - uid: 13329 + - uid: 10612 components: - type: Transform rot: 3.141592653589793 rad @@ -71479,3048 +70931,3048 @@ entities: parent: 2 - proto: GrilleSpawner entities: - - uid: 1603 + - uid: 10613 components: - type: Transform pos: 22.5,-327.5 parent: 2 - - uid: 1692 + - uid: 10614 components: - type: Transform pos: 20.5,-338.5 parent: 2 - - uid: 1693 + - uid: 10615 components: - type: Transform pos: 21.5,-331.5 parent: 2 - - uid: 2939 + - uid: 10616 components: - type: Transform pos: 22.5,-326.5 parent: 2 - - uid: 8941 + - uid: 10617 components: - type: Transform pos: 20.5,-343.5 parent: 2 - - uid: 8966 + - uid: 10618 components: - type: Transform pos: 19.5,-347.5 parent: 2 - - uid: 8983 + - uid: 10619 components: - type: Transform pos: 19.5,-345.5 parent: 2 - - uid: 8985 + - uid: 10620 components: - type: Transform pos: -21.5,-327.5 parent: 2 - - uid: 8986 + - uid: 10621 components: - type: Transform pos: 20.5,-342.5 parent: 2 - - uid: 8987 + - uid: 10622 components: - type: Transform pos: 18.5,-349.5 parent: 2 - - uid: 8998 + - uid: 10623 components: - type: Transform pos: 19.5,-348.5 parent: 2 - - uid: 9035 + - uid: 10624 components: - type: Transform pos: -21.5,-326.5 parent: 2 - - uid: 9039 + - uid: 10625 components: - type: Transform pos: 18.5,-350.5 parent: 2 - - uid: 9062 + - uid: 10626 components: - type: Transform pos: -21.5,-328.5 parent: 2 - - uid: 10171 + - uid: 10627 components: - type: Transform pos: -20.5,-337.5 parent: 2 - - uid: 11953 + - uid: 10628 components: - type: Transform pos: 22.5,-330.5 parent: 2 - - uid: 11988 + - uid: 10629 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-323.5 parent: 2 - - uid: 12024 + - uid: 10630 components: - type: Transform pos: -20.5,-335.5 parent: 2 - - uid: 12026 + - uid: 10631 components: - type: Transform pos: -20.5,-333.5 parent: 2 - - uid: 12029 + - uid: 10632 components: - type: Transform pos: -20.5,-336.5 parent: 2 - - uid: 12030 + - uid: 10633 components: - type: Transform pos: -19.5,-344.5 parent: 2 - - uid: 12081 + - uid: 10634 components: - type: Transform pos: -19.5,-342.5 parent: 2 - - uid: 12087 + - uid: 10635 components: - type: Transform pos: -18.5,-347.5 parent: 2 - - uid: 12088 + - uid: 10636 components: - type: Transform pos: -17.5,-350.5 parent: 2 - - uid: 12098 + - uid: 10637 components: - type: Transform pos: -20.5,-334.5 parent: 2 - - uid: 12109 + - uid: 10638 components: - type: Transform pos: -18.5,-345.5 parent: 2 - - uid: 12113 + - uid: 10639 components: - type: Transform pos: -19.5,-343.5 parent: 2 - - uid: 12576 + - uid: 10640 components: - type: Transform pos: -19.5,-339.5 parent: 2 - - uid: 12689 + - uid: 10641 components: - type: Transform pos: -17.5,-349.5 parent: 2 - - uid: 12952 + - uid: 10642 components: - type: Transform pos: -19.5,-338.5 parent: 2 - - uid: 13007 + - uid: 10643 components: - type: Transform pos: -18.5,-346.5 parent: 2 - - uid: 13162 + - uid: 10644 components: - type: Transform pos: -19.5,-340.5 parent: 2 - - uid: 13195 + - uid: 10645 components: - type: Transform pos: -19.5,-341.5 parent: 2 - - uid: 13277 + - uid: 10646 components: - type: Transform pos: 22.5,-325.5 parent: 2 - - uid: 13279 + - uid: 10647 components: - type: Transform pos: 21.5,-332.5 parent: 2 - - uid: 13281 + - uid: 10648 components: - type: Transform pos: 21.5,-337.5 parent: 2 - - uid: 13282 + - uid: 10649 components: - type: Transform pos: -21.5,-329.5 parent: 2 - - uid: 13457 + - uid: 10650 components: - type: Transform pos: 21.5,-335.5 parent: 2 - - uid: 13821 + - uid: 10651 components: - type: Transform pos: 21.5,-333.5 parent: 2 - - uid: 13962 + - uid: 10652 components: - type: Transform pos: 22.5,-329.5 parent: 2 - - uid: 13994 + - uid: 10653 components: - type: Transform pos: 22.5,-328.5 parent: 2 - - uid: 14006 + - uid: 10654 components: - type: Transform pos: 21.5,-334.5 parent: 2 - - uid: 14012 + - uid: 10655 components: - type: Transform pos: 20.5,-339.5 parent: 2 - - uid: 14023 + - uid: 10656 components: - type: Transform pos: -18.5,-348.5 parent: 2 - - uid: 14225 + - uid: 10657 components: - type: Transform pos: 20.5,-341.5 parent: 2 - - uid: 14227 + - uid: 10658 components: - type: Transform pos: 21.5,-336.5 parent: 2 - - uid: 14612 + - uid: 10659 components: - type: Transform pos: -21.5,-325.5 parent: 2 - - uid: 14615 + - uid: 10660 components: - type: Transform pos: -20.5,-331.5 parent: 2 - - uid: 14616 + - uid: 10661 components: - type: Transform pos: -21.5,-330.5 parent: 2 - - uid: 14618 + - uid: 10662 components: - type: Transform pos: -20.5,-332.5 parent: 2 - - uid: 14685 + - uid: 10663 components: - type: Transform pos: 19.5,-346.5 parent: 2 - - uid: 14686 + - uid: 10664 components: - type: Transform pos: 20.5,-344.5 parent: 2 - - uid: 14785 + - uid: 10665 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-316.5 parent: 2 - - uid: 14874 + - uid: 10666 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-314.5 parent: 2 - - uid: 14875 + - uid: 10667 components: - type: Transform pos: 16.5,-360.5 parent: 2 - - uid: 14886 + - uid: 10668 components: - type: Transform pos: 15.5,-367.5 parent: 2 - - uid: 15692 + - uid: 10669 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-321.5 parent: 2 - - uid: 15784 + - uid: 10670 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-322.5 parent: 2 - - uid: 15851 + - uid: 10671 components: - type: Transform pos: 19.5,-18.5 parent: 2 - - uid: 15854 + - uid: 10672 components: - type: Transform pos: 19.5,-17.5 parent: 2 - - uid: 15855 + - uid: 10673 components: - type: Transform pos: 18.5,9.5 parent: 2 - - uid: 15856 + - uid: 10674 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,17.5 parent: 2 - - uid: 15857 + - uid: 10675 components: - type: Transform pos: 20.5,-68.5 parent: 2 - - uid: 15858 + - uid: 10676 components: - type: Transform pos: 20.5,-69.5 parent: 2 - - uid: 15859 + - uid: 10677 components: - type: Transform pos: 20.5,-67.5 parent: 2 - - uid: 15860 + - uid: 10678 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,18.5 parent: 2 - - uid: 15861 + - uid: 10679 components: - type: Transform pos: 19.5,-3.5 parent: 2 - - uid: 15862 + - uid: 10680 components: - type: Transform pos: 20.5,-66.5 parent: 2 - - uid: 15863 + - uid: 10681 components: - type: Transform pos: 19.5,-4.5 parent: 2 - - uid: 15864 + - uid: 10682 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,17.5 parent: 2 - - uid: 15865 + - uid: 10683 components: - type: Transform pos: 19.5,-6.5 parent: 2 - - uid: 15866 + - uid: 10684 components: - type: Transform pos: 19.5,-5.5 parent: 2 - - uid: 15867 + - uid: 10685 components: - type: Transform pos: 19.5,-8.5 parent: 2 - - uid: 15868 + - uid: 10686 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2 - - uid: 15869 + - uid: 10687 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,18.5 parent: 2 - - uid: 15870 + - uid: 10688 components: - type: Transform pos: 19.5,-7.5 parent: 2 - - uid: 15871 + - uid: 10689 components: - type: Transform pos: 19.5,-10.5 parent: 2 - - uid: 15872 + - uid: 10690 components: - type: Transform pos: 19.5,-9.5 parent: 2 - - uid: 15873 + - uid: 10691 components: - type: Transform pos: 19.5,-14.5 parent: 2 - - uid: 15874 + - uid: 10692 components: - type: Transform pos: 19.5,-11.5 parent: 2 - - uid: 15875 + - uid: 10693 components: - type: Transform pos: 19.5,-15.5 parent: 2 - - uid: 15876 + - uid: 10694 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,19.5 parent: 2 - - uid: 15877 + - uid: 10695 components: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 15878 + - uid: 10696 components: - type: Transform pos: 19.5,-16.5 parent: 2 - - uid: 15879 + - uid: 10697 components: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 15880 + - uid: 10698 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,19.5 parent: 2 - - uid: 15881 + - uid: 10699 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 2 - - uid: 15882 + - uid: 10700 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 15883 + - uid: 10701 components: - type: Transform pos: 18.5,-102.5 parent: 2 - - uid: 15884 + - uid: 10702 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,19.5 parent: 2 - - uid: 15885 + - uid: 10703 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,18.5 parent: 2 - - uid: 15886 + - uid: 10704 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,17.5 parent: 2 - - uid: 15887 + - uid: 10705 components: - type: Transform pos: 19.5,-99.5 parent: 2 - - uid: 15888 + - uid: 10706 components: - type: Transform pos: 18.5,-100.5 parent: 2 - - uid: 15889 + - uid: 10707 components: - type: Transform pos: 19.5,-100.5 parent: 2 - - uid: 15890 + - uid: 10708 components: - type: Transform pos: 19.5,-97.5 parent: 2 - - uid: 15891 + - uid: 10709 components: - type: Transform pos: 18.5,-101.5 parent: 2 - - uid: 15892 + - uid: 10710 components: - type: Transform pos: 19.5,-98.5 parent: 2 - - uid: 15893 + - uid: 10711 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 - - uid: 15894 + - uid: 10712 components: - type: Transform pos: 20.5,-93.5 parent: 2 - - uid: 15895 + - uid: 10713 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 15896 + - uid: 10714 components: - type: Transform pos: 19.5,-96.5 parent: 2 - - uid: 15897 + - uid: 10715 components: - type: Transform pos: 20.5,-92.5 parent: 2 - - uid: 15898 + - uid: 10716 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 15899 + - uid: 10717 components: - type: Transform pos: 20.5,-96.5 parent: 2 - - uid: 15900 + - uid: 10718 components: - type: Transform pos: 20.5,-94.5 parent: 2 - - uid: 15901 + - uid: 10719 components: - type: Transform pos: 20.5,-95.5 parent: 2 - - uid: 15908 + - uid: 10720 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-24.5 parent: 2 - - uid: 15909 + - uid: 10721 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 15916 + - uid: 10722 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-25.5 parent: 2 - - uid: 15917 + - uid: 10723 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-25.5 parent: 2 - - uid: 15918 + - uid: 10724 components: - type: Transform pos: 19.5,-23.5 parent: 2 - - uid: 15919 + - uid: 10725 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 15920 + - uid: 10726 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 15921 + - uid: 10727 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 15922 + - uid: 10728 components: - type: Transform pos: -18.5,-9.5 parent: 2 - - uid: 15923 + - uid: 10729 components: - type: Transform pos: -18.5,-10.5 parent: 2 - - uid: 15928 + - uid: 10730 components: - type: Transform pos: 22.5,-41.5 parent: 2 - - uid: 15929 + - uid: 10731 components: - type: Transform pos: 22.5,-40.5 parent: 2 - - uid: 15930 + - uid: 10732 components: - type: Transform pos: 22.5,-42.5 parent: 2 - - uid: 15931 + - uid: 10733 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 15932 + - uid: 10734 components: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 15933 + - uid: 10735 components: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 15934 + - uid: 10736 components: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 15935 + - uid: 10737 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 15936 + - uid: 10738 components: - type: Transform pos: -18.5,7.5 parent: 2 - - uid: 15937 + - uid: 10739 components: - type: Transform pos: 22.5,-39.5 parent: 2 - - uid: 15938 + - uid: 10740 components: - type: Transform pos: 22.5,-38.5 parent: 2 - - uid: 15939 + - uid: 10741 components: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 15941 + - uid: 10742 components: - type: Transform pos: 22.5,-36.5 parent: 2 - - uid: 15942 + - uid: 10743 components: - type: Transform pos: 22.5,-35.5 parent: 2 - - uid: 15945 + - uid: 10744 components: - type: Transform pos: -17.5,9.5 parent: 2 - - uid: 15946 + - uid: 10745 components: - type: Transform pos: 21.5,-109.5 parent: 2 - - uid: 15947 + - uid: 10746 components: - type: Transform pos: -17.5,10.5 parent: 2 - - uid: 15949 + - uid: 10747 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 15950 + - uid: 10748 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 15951 + - uid: 10749 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 15952 + - uid: 10750 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 15953 + - uid: 10751 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 15954 + - uid: 10752 components: - type: Transform pos: 19.5,3.5 parent: 2 - - uid: 15955 + - uid: 10753 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 15956 + - uid: 10754 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 15957 + - uid: 10755 components: - type: Transform pos: 19.5,0.5 parent: 2 - - uid: 15958 + - uid: 10756 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 15959 + - uid: 10757 components: - type: Transform pos: 19.5,-1.5 parent: 2 - - uid: 15960 + - uid: 10758 components: - type: Transform pos: 19.5,-2.5 parent: 2 - - uid: 15963 + - uid: 10759 components: - type: Transform pos: -18.5,-7.5 parent: 2 - - uid: 15964 + - uid: 10760 components: - type: Transform pos: -18.5,-8.5 parent: 2 - - uid: 15965 + - uid: 10761 components: - type: Transform pos: -18.5,-5.5 parent: 2 - - uid: 15966 + - uid: 10762 components: - type: Transform pos: -18.5,-6.5 parent: 2 - - uid: 15970 + - uid: 10763 components: - type: Transform pos: -11.5,2.5 parent: 2 - - uid: 15971 + - uid: 10764 components: - type: Transform pos: 22.5,-108.5 parent: 2 - - uid: 15972 + - uid: 10765 components: - type: Transform pos: 21.5,-114.5 parent: 2 - - uid: 15973 + - uid: 10766 components: - type: Transform pos: -11.5,3.5 parent: 2 - - uid: 15974 + - uid: 10767 components: - type: Transform pos: 21.5,-113.5 parent: 2 - - uid: 15982 + - uid: 10768 components: - type: Transform pos: 21.5,-112.5 parent: 2 - - uid: 15983 + - uid: 10769 components: - type: Transform pos: 21.5,-110.5 parent: 2 - - uid: 15984 + - uid: 10770 components: - type: Transform pos: 21.5,-111.5 parent: 2 - - uid: 15985 + - uid: 10771 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 15986 + - uid: 10772 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 15987 + - uid: 10773 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 15988 + - uid: 10774 components: - type: Transform pos: -18.5,-1.5 parent: 2 - - uid: 15989 + - uid: 10775 components: - type: Transform pos: 22.5,-106.5 parent: 2 - - uid: 15990 + - uid: 10776 components: - type: Transform pos: 22.5,-105.5 parent: 2 - - uid: 15991 + - uid: 10777 components: - type: Transform pos: 22.5,-107.5 parent: 2 - - uid: 15992 + - uid: 10778 components: - type: Transform pos: 22.5,-103.5 parent: 2 - - uid: 15993 + - uid: 10779 components: - type: Transform pos: -21.5,-55.5 parent: 2 - - uid: 15994 + - uid: 10780 components: - type: Transform pos: 22.5,-104.5 parent: 2 - - uid: 15995 + - uid: 10781 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 15996 + - uid: 10782 components: - type: Transform pos: 22.5,-102.5 parent: 2 - - uid: 15997 + - uid: 10783 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 15998 + - uid: 10784 components: - type: Transform pos: 20.5,-119.5 parent: 2 - - uid: 15999 + - uid: 10785 components: - type: Transform pos: 20.5,-117.5 parent: 2 - - uid: 16000 + - uid: 10786 components: - type: Transform pos: 20.5,-118.5 parent: 2 - - uid: 16001 + - uid: 10787 components: - type: Transform pos: 20.5,-116.5 parent: 2 - - uid: 16002 + - uid: 10788 components: - type: Transform pos: -21.5,-53.5 parent: 2 - - uid: 16003 + - uid: 10789 components: - type: Transform pos: -21.5,-54.5 parent: 2 - - uid: 16004 + - uid: 10790 components: - type: Transform pos: -21.5,-52.5 parent: 2 - - uid: 16009 + - uid: 10791 components: - type: Transform pos: -20.5,-116.5 parent: 2 - - uid: 16010 + - uid: 10792 components: - type: Transform pos: -21.5,-105.5 parent: 2 - - uid: 16011 + - uid: 10793 components: - type: Transform pos: -21.5,-106.5 parent: 2 - - uid: 16012 + - uid: 10794 components: - type: Transform pos: -21.5,-107.5 parent: 2 - - uid: 16013 + - uid: 10795 components: - type: Transform pos: -21.5,-109.5 parent: 2 - - uid: 16014 + - uid: 10796 components: - type: Transform pos: -21.5,-108.5 parent: 2 - - uid: 16015 + - uid: 10797 components: - type: Transform pos: -17.5,-129.5 parent: 2 - - uid: 16016 + - uid: 10798 components: - type: Transform pos: -20.5,-114.5 parent: 2 - - uid: 16017 + - uid: 10799 components: - type: Transform pos: -20.5,-115.5 parent: 2 - - uid: 16018 + - uid: 10800 components: - type: Transform pos: -20.5,-113.5 parent: 2 - - uid: 16019 + - uid: 10801 components: - type: Transform pos: -20.5,-111.5 parent: 2 - - uid: 16020 + - uid: 10802 components: - type: Transform pos: -20.5,-110.5 parent: 2 - - uid: 16021 + - uid: 10803 components: - type: Transform pos: -20.5,-112.5 parent: 2 - - uid: 16022 + - uid: 10804 components: - type: Transform pos: -18.5,-154.5 parent: 2 - - uid: 16023 + - uid: 10805 components: - type: Transform pos: -19.5,-123.5 parent: 2 - - uid: 16024 + - uid: 10806 components: - type: Transform pos: -17.5,-128.5 parent: 2 - - uid: 16025 + - uid: 10807 components: - type: Transform pos: -18.5,-125.5 parent: 2 - - uid: 16026 + - uid: 10808 components: - type: Transform pos: -18.5,-124.5 parent: 2 - - uid: 16027 + - uid: 10809 components: - type: Transform pos: -18.5,-153.5 parent: 2 - - uid: 16028 + - uid: 10810 components: - type: Transform pos: -18.5,-152.5 parent: 2 - - uid: 16029 + - uid: 10811 components: - type: Transform pos: -18.5,-151.5 parent: 2 - - uid: 16030 + - uid: 10812 components: - type: Transform pos: -18.5,-127.5 parent: 2 - - uid: 16031 + - uid: 10813 components: - type: Transform pos: -19.5,-119.5 parent: 2 - - uid: 16032 + - uid: 10814 components: - type: Transform pos: -18.5,-126.5 parent: 2 - - uid: 16033 + - uid: 10815 components: - type: Transform pos: -19.5,-121.5 parent: 2 - - uid: 16034 + - uid: 10816 components: - type: Transform pos: -19.5,-150.5 parent: 2 - - uid: 16035 + - uid: 10817 components: - type: Transform pos: -19.5,-149.5 parent: 2 - - uid: 16036 + - uid: 10818 components: - type: Transform pos: -19.5,-148.5 parent: 2 - - uid: 16037 + - uid: 10819 components: - type: Transform pos: -19.5,-147.5 parent: 2 - - uid: 16038 + - uid: 10820 components: - type: Transform pos: -19.5,-146.5 parent: 2 - - uid: 16039 + - uid: 10821 components: - type: Transform pos: -19.5,-145.5 parent: 2 - - uid: 16040 + - uid: 10822 components: - type: Transform pos: -19.5,-144.5 parent: 2 - - uid: 16041 + - uid: 10823 components: - type: Transform pos: -20.5,-143.5 parent: 2 - - uid: 16042 + - uid: 10824 components: - type: Transform pos: -20.5,-142.5 parent: 2 - - uid: 16043 + - uid: 10825 components: - type: Transform pos: -20.5,-141.5 parent: 2 - - uid: 16044 + - uid: 10826 components: - type: Transform pos: -20.5,-140.5 parent: 2 - - uid: 16045 + - uid: 10827 components: - type: Transform pos: -20.5,-139.5 parent: 2 - - uid: 16046 + - uid: 10828 components: - type: Transform pos: -20.5,-138.5 parent: 2 - - uid: 16047 + - uid: 10829 components: - type: Transform pos: -20.5,-137.5 parent: 2 - - uid: 16048 + - uid: 10830 components: - type: Transform pos: -17.5,-155.5 parent: 2 - - uid: 16049 + - uid: 10831 components: - type: Transform pos: -21.5,-136.5 parent: 2 - - uid: 16050 + - uid: 10832 components: - type: Transform pos: -21.5,-135.5 parent: 2 - - uid: 16051 + - uid: 10833 components: - type: Transform pos: -21.5,-134.5 parent: 2 - - uid: 16052 + - uid: 10834 components: - type: Transform pos: -21.5,-133.5 parent: 2 - - uid: 16053 + - uid: 10835 components: - type: Transform pos: -21.5,-132.5 parent: 2 - - uid: 16054 + - uid: 10836 components: - type: Transform pos: -21.5,-131.5 parent: 2 - - uid: 16055 + - uid: 10837 components: - type: Transform pos: -21.5,-130.5 parent: 2 - - uid: 16056 + - uid: 10838 components: - type: Transform pos: -19.5,-117.5 parent: 2 - - uid: 16057 + - uid: 10839 components: - type: Transform pos: -17.5,-156.5 parent: 2 - - uid: 16058 + - uid: 10840 components: - type: Transform pos: -19.5,-118.5 parent: 2 - - uid: 16059 + - uid: 10841 components: - type: Transform pos: -19.5,-122.5 parent: 2 - - uid: 16060 + - uid: 10842 components: - type: Transform pos: -19.5,-120.5 parent: 2 - - uid: 16061 + - uid: 10843 components: - type: Transform pos: -21.5,-104.5 parent: 2 - - uid: 16062 + - uid: 10844 components: - type: Transform pos: -17.5,-102.5 parent: 2 - - uid: 16063 + - uid: 10845 components: - type: Transform pos: -21.5,-103.5 parent: 2 - - uid: 16064 + - uid: 10846 components: - type: Transform pos: -17.5,-101.5 parent: 2 - - uid: 16065 + - uid: 10847 components: - type: Transform pos: -18.5,-100.5 parent: 2 - - uid: 16066 + - uid: 10848 components: - type: Transform pos: -18.5,-99.5 parent: 2 - - uid: 16067 + - uid: 10849 components: - type: Transform pos: -18.5,-98.5 parent: 2 - - uid: 16068 + - uid: 10850 components: - type: Transform pos: -18.5,-97.5 parent: 2 - - uid: 16069 + - uid: 10851 components: - type: Transform pos: -19.5,-96.5 parent: 2 - - uid: 16070 + - uid: 10852 components: - type: Transform pos: -19.5,-95.5 parent: 2 - - uid: 16071 + - uid: 10853 components: - type: Transform pos: -19.5,-94.5 parent: 2 - - uid: 16072 + - uid: 10854 components: - type: Transform pos: -19.5,-93.5 parent: 2 - - uid: 16073 + - uid: 10855 components: - type: Transform pos: -19.5,-92.5 parent: 2 - - uid: 16074 + - uid: 10856 components: - type: Transform pos: -19.5,-91.5 parent: 2 - - uid: 16075 + - uid: 10857 components: - type: Transform pos: -19.5,-90.5 parent: 2 - - uid: 16076 + - uid: 10858 components: - type: Transform pos: -20.5,-89.5 parent: 2 - - uid: 16077 + - uid: 10859 components: - type: Transform pos: -20.5,-88.5 parent: 2 - - uid: 16078 + - uid: 10860 components: - type: Transform pos: -20.5,-87.5 parent: 2 - - uid: 16079 + - uid: 10861 components: - type: Transform pos: -20.5,-86.5 parent: 2 - - uid: 16080 + - uid: 10862 components: - type: Transform pos: -20.5,-85.5 parent: 2 - - uid: 16081 + - uid: 10863 components: - type: Transform pos: -20.5,-84.5 parent: 2 - - uid: 16082 + - uid: 10864 components: - type: Transform pos: -20.5,-83.5 parent: 2 - - uid: 16083 + - uid: 10865 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 16084 + - uid: 10866 components: - type: Transform pos: -21.5,-81.5 parent: 2 - - uid: 16085 + - uid: 10867 components: - type: Transform pos: -21.5,-80.5 parent: 2 - - uid: 16086 + - uid: 10868 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 16087 + - uid: 10869 components: - type: Transform pos: -21.5,-78.5 parent: 2 - - uid: 16088 + - uid: 10870 components: - type: Transform pos: -21.5,-77.5 parent: 2 - - uid: 16089 + - uid: 10871 components: - type: Transform pos: -21.5,-76.5 parent: 2 - - uid: 16090 + - uid: 10872 components: - type: Transform pos: -17.5,-74.5 parent: 2 - - uid: 16091 + - uid: 10873 components: - type: Transform pos: -17.5,-75.5 parent: 2 - - uid: 16092 + - uid: 10874 components: - type: Transform pos: -18.5,-73.5 parent: 2 - - uid: 16093 + - uid: 10875 components: - type: Transform pos: -18.5,-72.5 parent: 2 - - uid: 16094 + - uid: 10876 components: - type: Transform pos: -18.5,-71.5 parent: 2 - - uid: 16095 + - uid: 10877 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 16096 + - uid: 10878 components: - type: Transform pos: -20.5,-62.5 parent: 2 - - uid: 16097 + - uid: 10879 components: - type: Transform pos: -19.5,-69.5 parent: 2 - - uid: 16098 + - uid: 10880 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 16099 + - uid: 10881 components: - type: Transform pos: -19.5,-67.5 parent: 2 - - uid: 16100 + - uid: 10882 components: - type: Transform pos: -19.5,-66.5 parent: 2 - - uid: 16101 + - uid: 10883 components: - type: Transform pos: -19.5,-65.5 parent: 2 - - uid: 16102 + - uid: 10884 components: - type: Transform pos: -19.5,-64.5 parent: 2 - - uid: 16103 + - uid: 10885 components: - type: Transform pos: -19.5,-63.5 parent: 2 - - uid: 16104 + - uid: 10886 components: - type: Transform pos: -20.5,-61.5 parent: 2 - - uid: 16105 + - uid: 10887 components: - type: Transform pos: -20.5,-60.5 parent: 2 - - uid: 16106 + - uid: 10888 components: - type: Transform pos: -20.5,-59.5 parent: 2 - - uid: 16107 + - uid: 10889 components: - type: Transform pos: -20.5,-58.5 parent: 2 - - uid: 16108 + - uid: 10890 components: - type: Transform pos: -20.5,-57.5 parent: 2 - - uid: 16109 + - uid: 10891 components: - type: Transform pos: -20.5,-56.5 parent: 2 - - uid: 16130 + - uid: 10892 components: - type: Transform pos: 18.5,-128.5 parent: 2 - - uid: 16132 + - uid: 10893 components: - type: Transform pos: 18.5,-127.5 parent: 2 - - uid: 16136 + - uid: 10894 components: - type: Transform pos: 19.5,-126.5 parent: 2 - - uid: 16137 + - uid: 10895 components: - type: Transform pos: 19.5,-125.5 parent: 2 - - uid: 16143 + - uid: 10896 components: - type: Transform pos: 20.5,-120.5 parent: 2 - - uid: 16144 + - uid: 10897 components: - type: Transform pos: -21.5,-51.5 parent: 2 - - uid: 16145 + - uid: 10898 components: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 16146 + - uid: 10899 components: - type: Transform pos: -21.5,-49.5 parent: 2 - - uid: 16147 + - uid: 10900 components: - type: Transform pos: 19.5,-123.5 parent: 2 - - uid: 16150 + - uid: 10901 components: - type: Transform pos: 20.5,-122.5 parent: 2 - - uid: 16152 + - uid: 10902 components: - type: Transform pos: 20.5,-121.5 parent: 2 - - uid: 16154 + - uid: 10903 components: - type: Transform pos: 19.5,-124.5 parent: 2 - - uid: 16155 + - uid: 10904 components: - type: Transform pos: 21.5,-115.5 parent: 2 - - uid: 16156 + - uid: 10905 components: - type: Transform pos: 21.5,-115.5 parent: 2 - - uid: 16157 + - uid: 10906 components: - type: Transform pos: -17.5,-185.5 parent: 2 - - uid: 16158 + - uid: 10907 components: - type: Transform pos: 20.5,-91.5 parent: 2 - - uid: 16159 + - uid: 10908 components: - type: Transform pos: 20.5,-90.5 parent: 2 - - uid: 16160 + - uid: 10909 components: - type: Transform pos: 20.5,-89.5 parent: 2 - - uid: 16161 + - uid: 10910 components: - type: Transform pos: 21.5,-89.5 parent: 2 - - uid: 16162 + - uid: 10911 components: - type: Transform pos: 21.5,-88.5 parent: 2 - - uid: 16163 + - uid: 10912 components: - type: Transform pos: 21.5,-87.5 parent: 2 - - uid: 16164 + - uid: 10913 components: - type: Transform pos: 21.5,-86.5 parent: 2 - - uid: 16165 + - uid: 10914 components: - type: Transform pos: 21.5,-85.5 parent: 2 - - uid: 16166 + - uid: 10915 components: - type: Transform pos: 21.5,-84.5 parent: 2 - - uid: 16167 + - uid: 10916 components: - type: Transform pos: 21.5,-83.5 parent: 2 - - uid: 16168 + - uid: 10917 components: - type: Transform pos: 21.5,-82.5 parent: 2 - - uid: 16169 + - uid: 10918 components: - type: Transform pos: 22.5,-82.5 parent: 2 - - uid: 16170 + - uid: 10919 components: - type: Transform pos: 22.5,-81.5 parent: 2 - - uid: 16171 + - uid: 10920 components: - type: Transform pos: 22.5,-80.5 parent: 2 - - uid: 16172 + - uid: 10921 components: - type: Transform pos: 22.5,-79.5 parent: 2 - - uid: 16173 + - uid: 10922 components: - type: Transform pos: 22.5,-78.5 parent: 2 - - uid: 16174 + - uid: 10923 components: - type: Transform pos: 22.5,-77.5 parent: 2 - - uid: 16175 + - uid: 10924 components: - type: Transform pos: 22.5,-76.5 parent: 2 - - uid: 16176 + - uid: 10925 components: - type: Transform pos: 20.5,-65.5 parent: 2 - - uid: 16177 + - uid: 10926 components: - type: Transform pos: 20.5,-64.5 parent: 2 - - uid: 16178 + - uid: 10927 components: - type: Transform pos: 20.5,-63.5 parent: 2 - - uid: 16179 + - uid: 10928 components: - type: Transform pos: 20.5,-62.5 parent: 2 - - uid: 16180 + - uid: 10929 components: - type: Transform pos: 18.5,10.5 parent: 2 - - uid: 16181 + - uid: 10930 components: - type: Transform pos: 21.5,-62.5 parent: 2 - - uid: 16182 + - uid: 10931 components: - type: Transform pos: 21.5,-61.5 parent: 2 - - uid: 16183 + - uid: 10932 components: - type: Transform pos: 21.5,-60.5 parent: 2 - - uid: 16184 + - uid: 10933 components: - type: Transform pos: 21.5,-59.5 parent: 2 - - uid: 16185 + - uid: 10934 components: - type: Transform pos: 21.5,-58.5 parent: 2 - - uid: 16186 + - uid: 10935 components: - type: Transform pos: 21.5,-57.5 parent: 2 - - uid: 16187 + - uid: 10936 components: - type: Transform pos: 21.5,-56.5 parent: 2 - - uid: 16188 + - uid: 10937 components: - type: Transform pos: 21.5,-55.5 parent: 2 - - uid: 16194 + - uid: 10938 components: - type: Transform pos: 22.5,-55.5 parent: 2 - - uid: 16195 + - uid: 10939 components: - type: Transform pos: 22.5,-54.5 parent: 2 - - uid: 16196 + - uid: 10940 components: - type: Transform pos: 22.5,-53.5 parent: 2 - - uid: 16197 + - uid: 10941 components: - type: Transform pos: 22.5,-52.5 parent: 2 - - uid: 16198 + - uid: 10942 components: - type: Transform pos: 22.5,-51.5 parent: 2 - - uid: 16199 + - uid: 10943 components: - type: Transform pos: 22.5,-50.5 parent: 2 - - uid: 16200 + - uid: 10944 components: - type: Transform pos: 22.5,-49.5 parent: 2 - - uid: 16203 + - uid: 10945 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 16204 + - uid: 10946 components: - type: Transform pos: 22.5,-33.5 parent: 2 - - uid: 16205 + - uid: 10947 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 16206 + - uid: 10948 components: - type: Transform pos: 22.5,-31.5 parent: 2 - - uid: 16207 + - uid: 10949 components: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 16208 + - uid: 10950 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 16209 + - uid: 10951 components: - type: Transform pos: 20.5,-47.5 parent: 2 - - uid: 16210 + - uid: 10952 components: - type: Transform pos: 20.5,-46.5 parent: 2 - - uid: 16211 + - uid: 10953 components: - type: Transform pos: 20.5,-45.5 parent: 2 - - uid: 16212 + - uid: 10954 components: - type: Transform pos: 21.5,-30.5 parent: 2 - - uid: 16213 + - uid: 10955 components: - type: Transform pos: 21.5,-45.5 parent: 2 - - uid: 16214 + - uid: 10956 components: - type: Transform pos: 21.5,-29.5 parent: 2 - - uid: 16215 + - uid: 10957 components: - type: Transform pos: 21.5,-44.5 parent: 2 - - uid: 16216 + - uid: 10958 components: - type: Transform pos: 20.5,-28.5 parent: 2 - - uid: 16217 + - uid: 10959 components: - type: Transform pos: 20.5,-27.5 parent: 2 - - uid: 16218 + - uid: 10960 components: - type: Transform pos: 20.5,-26.5 parent: 2 - - uid: 16219 + - uid: 10961 components: - type: Transform pos: 21.5,-43.5 parent: 2 - - uid: 16221 + - uid: 10962 components: - type: Transform pos: 21.5,-42.5 parent: 2 - - uid: 16223 + - uid: 10963 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 16225 + - uid: 10964 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 16285 + - uid: 10965 components: - type: Transform pos: -19.5,-177.5 parent: 2 - - uid: 16286 + - uid: 10966 components: - type: Transform pos: -17.5,-184.5 parent: 2 - - uid: 16287 + - uid: 10967 components: - type: Transform pos: -17.5,-183.5 parent: 2 - - uid: 16288 + - uid: 10968 components: - type: Transform pos: -17.5,-182.5 parent: 2 - - uid: 16289 + - uid: 10969 components: - type: Transform pos: -17.5,-181.5 parent: 2 - - uid: 16290 + - uid: 10970 components: - type: Transform pos: -18.5,-181.5 parent: 2 - - uid: 16291 + - uid: 10971 components: - type: Transform pos: -18.5,-180.5 parent: 2 - - uid: 16292 + - uid: 10972 components: - type: Transform pos: -18.5,-179.5 parent: 2 - - uid: 16293 + - uid: 10973 components: - type: Transform pos: -18.5,-178.5 parent: 2 - - uid: 16294 + - uid: 10974 components: - type: Transform pos: -18.5,-177.5 parent: 2 - - uid: 16296 + - uid: 10975 components: - type: Transform pos: -19.5,-176.5 parent: 2 - - uid: 16297 + - uid: 10976 components: - type: Transform pos: -19.5,-175.5 parent: 2 - - uid: 16298 + - uid: 10977 components: - type: Transform pos: -19.5,-174.5 parent: 2 - - uid: 16299 + - uid: 10978 components: - type: Transform pos: -19.5,-173.5 parent: 2 - - uid: 16300 + - uid: 10979 components: - type: Transform pos: -19.5,-172.5 parent: 2 - - uid: 16301 + - uid: 10980 components: - type: Transform pos: -19.5,-171.5 parent: 2 - - uid: 16302 + - uid: 10981 components: - type: Transform pos: -19.5,-170.5 parent: 2 - - uid: 16303 + - uid: 10982 components: - type: Transform pos: -20.5,-170.5 parent: 2 - - uid: 16304 + - uid: 10983 components: - type: Transform pos: -20.5,-169.5 parent: 2 - - uid: 16305 + - uid: 10984 components: - type: Transform pos: -20.5,-168.5 parent: 2 - - uid: 16306 + - uid: 10985 components: - type: Transform pos: -20.5,-167.5 parent: 2 - - uid: 16307 + - uid: 10986 components: - type: Transform pos: -20.5,-166.5 parent: 2 - - uid: 16308 + - uid: 10987 components: - type: Transform pos: -20.5,-165.5 parent: 2 - - uid: 16309 + - uid: 10988 components: - type: Transform pos: -20.5,-164.5 parent: 2 - - uid: 16310 + - uid: 10989 components: - type: Transform pos: -20.5,-163.5 parent: 2 - - uid: 16311 + - uid: 10990 components: - type: Transform pos: -21.5,-163.5 parent: 2 - - uid: 16312 + - uid: 10991 components: - type: Transform pos: -21.5,-162.5 parent: 2 - - uid: 16313 + - uid: 10992 components: - type: Transform pos: -21.5,-161.5 parent: 2 - - uid: 16314 + - uid: 10993 components: - type: Transform pos: -21.5,-160.5 parent: 2 - - uid: 16315 + - uid: 10994 components: - type: Transform pos: -21.5,-159.5 parent: 2 - - uid: 16316 + - uid: 10995 components: - type: Transform pos: -21.5,-158.5 parent: 2 - - uid: 16330 + - uid: 10996 components: - type: Transform pos: 22.5,-157.5 parent: 2 - - uid: 16331 + - uid: 10997 components: - type: Transform pos: 22.5,-158.5 parent: 2 - - uid: 16332 + - uid: 10998 components: - type: Transform pos: 22.5,-159.5 parent: 2 - - uid: 16333 + - uid: 10999 components: - type: Transform pos: 22.5,-160.5 parent: 2 - - uid: 16334 + - uid: 11000 components: - type: Transform pos: 22.5,-161.5 parent: 2 - - uid: 16335 + - uid: 11001 components: - type: Transform pos: 22.5,-162.5 parent: 2 - - uid: 16336 + - uid: 11002 components: - type: Transform pos: 21.5,-163.5 parent: 2 - - uid: 16337 + - uid: 11003 components: - type: Transform pos: 21.5,-162.5 parent: 2 - - uid: 16338 + - uid: 11004 components: - type: Transform pos: 21.5,-164.5 parent: 2 - - uid: 16339 + - uid: 11005 components: - type: Transform pos: 21.5,-165.5 parent: 2 - - uid: 16340 + - uid: 11006 components: - type: Transform pos: 21.5,-166.5 parent: 2 - - uid: 16341 + - uid: 11007 components: - type: Transform pos: 21.5,-167.5 parent: 2 - - uid: 16342 + - uid: 11008 components: - type: Transform pos: 21.5,-168.5 parent: 2 - - uid: 16343 + - uid: 11009 components: - type: Transform pos: 21.5,-169.5 parent: 2 - - uid: 16346 + - uid: 11010 components: - type: Transform pos: 20.5,-169.5 parent: 2 - - uid: 16347 + - uid: 11011 components: - type: Transform pos: 20.5,-170.5 parent: 2 - - uid: 16348 + - uid: 11012 components: - type: Transform pos: 20.5,-171.5 parent: 2 - - uid: 16349 + - uid: 11013 components: - type: Transform pos: 20.5,-172.5 parent: 2 - - uid: 16350 + - uid: 11014 components: - type: Transform pos: 20.5,-173.5 parent: 2 - - uid: 16351 + - uid: 11015 components: - type: Transform pos: 20.5,-174.5 parent: 2 - - uid: 16352 + - uid: 11016 components: - type: Transform pos: 20.5,-175.5 parent: 2 - - uid: 16353 + - uid: 11017 components: - type: Transform pos: 20.5,-176.5 parent: 2 - - uid: 16354 + - uid: 11018 components: - type: Transform pos: 19.5,-176.5 parent: 2 - - uid: 16355 + - uid: 11019 components: - type: Transform pos: 19.5,-177.5 parent: 2 - - uid: 16356 + - uid: 11020 components: - type: Transform pos: 19.5,-178.5 parent: 2 - - uid: 16357 + - uid: 11021 components: - type: Transform pos: 19.5,-179.5 parent: 2 - - uid: 16358 + - uid: 11022 components: - type: Transform pos: 19.5,-180.5 parent: 2 - - uid: 16359 + - uid: 11023 components: - type: Transform pos: 18.5,-180.5 parent: 2 - - uid: 16360 + - uid: 11024 components: - type: Transform pos: 18.5,-181.5 parent: 2 - - uid: 16361 + - uid: 11025 components: - type: Transform pos: 18.5,-182.5 parent: 2 - - uid: 16362 + - uid: 11026 components: - type: Transform pos: 18.5,-183.5 parent: 2 - - uid: 16363 + - uid: 11027 components: - type: Transform pos: 18.5,-184.5 parent: 2 - - uid: 16373 + - uid: 11028 components: - type: Transform pos: 23.5,-189.5 parent: 2 - - uid: 16379 + - uid: 11029 components: - type: Transform pos: 23.5,-185.5 parent: 2 - - uid: 16380 + - uid: 11030 components: - type: Transform pos: 23.5,-186.5 parent: 2 - - uid: 16381 + - uid: 11031 components: - type: Transform pos: 23.5,-187.5 parent: 2 - - uid: 16382 + - uid: 11032 components: - type: Transform pos: 23.5,-188.5 parent: 2 - - uid: 16383 + - uid: 11033 components: - type: Transform pos: 23.5,-190.5 parent: 2 - - uid: 16384 + - uid: 11034 components: - type: Transform pos: 22.5,-190.5 parent: 2 - - uid: 16385 + - uid: 11035 components: - type: Transform pos: 22.5,-191.5 parent: 2 - - uid: 16386 + - uid: 11036 components: - type: Transform pos: 22.5,-192.5 parent: 2 - - uid: 16387 + - uid: 11037 components: - type: Transform pos: 22.5,-193.5 parent: 2 - - uid: 16388 + - uid: 11038 components: - type: Transform pos: 22.5,-194.5 parent: 2 - - uid: 16389 + - uid: 11039 components: - type: Transform pos: 22.5,-195.5 parent: 2 - - uid: 16390 + - uid: 11040 components: - type: Transform pos: 22.5,-196.5 parent: 2 - - uid: 16391 + - uid: 11041 components: - type: Transform pos: 22.5,-197.5 parent: 2 - - uid: 16392 + - uid: 11042 components: - type: Transform pos: 21.5,-197.5 parent: 2 - - uid: 16394 + - uid: 11043 components: - type: Transform pos: 21.5,-198.5 parent: 2 - - uid: 16395 + - uid: 11044 components: - type: Transform pos: 21.5,-199.5 parent: 2 - - uid: 16396 + - uid: 11045 components: - type: Transform pos: 21.5,-200.5 parent: 2 - - uid: 16397 + - uid: 11046 components: - type: Transform pos: 21.5,-201.5 parent: 2 - - uid: 16398 + - uid: 11047 components: - type: Transform pos: 21.5,-202.5 parent: 2 - - uid: 16399 + - uid: 11048 components: - type: Transform pos: 21.5,-203.5 parent: 2 - - uid: 16400 + - uid: 11049 components: - type: Transform pos: 21.5,-204.5 parent: 2 - - uid: 16401 + - uid: 11050 components: - type: Transform pos: 20.5,-204.5 parent: 2 - - uid: 16402 + - uid: 11051 components: - type: Transform pos: 20.5,-205.5 parent: 2 - - uid: 16403 + - uid: 11052 components: - type: Transform pos: 20.5,-206.5 parent: 2 - - uid: 16404 + - uid: 11053 components: - type: Transform pos: 20.5,-207.5 parent: 2 - - uid: 16405 + - uid: 11054 components: - type: Transform pos: 20.5,-208.5 parent: 2 - - uid: 16406 + - uid: 11055 components: - type: Transform pos: 19.5,-208.5 parent: 2 - - uid: 16407 + - uid: 11056 components: - type: Transform pos: 19.5,-209.5 parent: 2 - - uid: 16408 + - uid: 11057 components: - type: Transform pos: 19.5,-210.5 parent: 2 - - uid: 16425 + - uid: 11058 components: - type: Transform pos: -17.5,-210.5 parent: 2 - - uid: 16427 + - uid: 11059 components: - type: Transform pos: -17.5,-209.5 parent: 2 - - uid: 16428 + - uid: 11060 components: - type: Transform pos: -17.5,-208.5 parent: 2 - - uid: 16429 + - uid: 11061 components: - type: Transform pos: -18.5,-208.5 parent: 2 - - uid: 16430 + - uid: 11062 components: - type: Transform pos: -18.5,-207.5 parent: 2 - - uid: 16431 + - uid: 11063 components: - type: Transform pos: -18.5,-206.5 parent: 2 - - uid: 16432 + - uid: 11064 components: - type: Transform pos: -18.5,-205.5 parent: 2 - - uid: 16433 + - uid: 11065 components: - type: Transform pos: -18.5,-204.5 parent: 2 - - uid: 16434 + - uid: 11066 components: - type: Transform pos: -19.5,-204.5 parent: 2 - - uid: 16435 + - uid: 11067 components: - type: Transform pos: -19.5,-203.5 parent: 2 - - uid: 16436 + - uid: 11068 components: - type: Transform pos: -19.5,-202.5 parent: 2 - - uid: 16437 + - uid: 11069 components: - type: Transform pos: -19.5,-201.5 parent: 2 - - uid: 16438 + - uid: 11070 components: - type: Transform pos: -19.5,-200.5 parent: 2 - - uid: 16439 + - uid: 11071 components: - type: Transform pos: -19.5,-199.5 parent: 2 - - uid: 16440 + - uid: 11072 components: - type: Transform pos: -19.5,-198.5 parent: 2 - - uid: 16441 + - uid: 11073 components: - type: Transform pos: -19.5,-197.5 parent: 2 - - uid: 16442 + - uid: 11074 components: - type: Transform pos: -20.5,-197.5 parent: 2 - - uid: 16443 + - uid: 11075 components: - type: Transform pos: -20.5,-196.5 parent: 2 - - uid: 16444 + - uid: 11076 components: - type: Transform pos: -20.5,-195.5 parent: 2 - - uid: 16445 + - uid: 11077 components: - type: Transform pos: -20.5,-194.5 parent: 2 - - uid: 16446 + - uid: 11078 components: - type: Transform pos: -20.5,-193.5 parent: 2 - - uid: 16447 + - uid: 11079 components: - type: Transform pos: -20.5,-192.5 parent: 2 - - uid: 16448 + - uid: 11080 components: - type: Transform pos: -20.5,-191.5 parent: 2 - - uid: 16449 + - uid: 11081 components: - type: Transform pos: -20.5,-190.5 parent: 2 - - uid: 16450 + - uid: 11082 components: - type: Transform pos: -21.5,-190.5 parent: 2 - - uid: 16451 + - uid: 11083 components: - type: Transform pos: -21.5,-189.5 parent: 2 - - uid: 16452 + - uid: 11084 components: - type: Transform pos: -21.5,-188.5 parent: 2 - - uid: 16453 + - uid: 11085 components: - type: Transform pos: -21.5,-187.5 parent: 2 - - uid: 16454 + - uid: 11086 components: - type: Transform pos: -21.5,-186.5 parent: 2 - - uid: 16455 + - uid: 11087 components: - type: Transform pos: -21.5,-185.5 parent: 2 - - uid: 16537 + - uid: 11088 components: - type: Transform pos: 17.5,-354.5 parent: 2 - - uid: 16556 + - uid: 11089 components: - type: Transform pos: 17.5,-355.5 parent: 2 - - uid: 16557 + - uid: 11090 components: - type: Transform pos: 17.5,-356.5 parent: 2 - - uid: 16558 + - uid: 11091 components: - type: Transform pos: 17.5,-357.5 parent: 2 - - uid: 16559 + - uid: 11092 components: - type: Transform pos: 17.5,-358.5 parent: 2 - - uid: 16560 + - uid: 11093 components: - type: Transform pos: 17.5,-359.5 parent: 2 - - uid: 16562 + - uid: 11094 components: - type: Transform pos: 16.5,-361.5 parent: 2 - - uid: 16563 + - uid: 11095 components: - type: Transform pos: 16.5,-362.5 parent: 2 - - uid: 16564 + - uid: 11096 components: - type: Transform pos: 16.5,-363.5 parent: 2 - - uid: 16565 + - uid: 11097 components: - type: Transform pos: 16.5,-364.5 parent: 2 - - uid: 16566 + - uid: 11098 components: - type: Transform pos: 16.5,-365.5 parent: 2 - - uid: 16567 + - uid: 11099 components: - type: Transform pos: 16.5,-366.5 parent: 2 - - uid: 16568 + - uid: 11100 components: - type: Transform pos: 15.5,-368.5 parent: 2 - - uid: 16569 + - uid: 11101 components: - type: Transform pos: 15.5,-369.5 parent: 2 - - uid: 16570 + - uid: 11102 components: - type: Transform pos: 15.5,-370.5 parent: 2 - - uid: 16571 + - uid: 11103 components: - type: Transform pos: 15.5,-371.5 parent: 2 - - uid: 16572 + - uid: 11104 components: - type: Transform pos: 15.5,-372.5 parent: 2 - - uid: 16573 + - uid: 11105 components: - type: Transform pos: 15.5,-373.5 parent: 2 - - uid: 16574 + - uid: 11106 components: - type: Transform pos: 14.5,-374.5 parent: 2 - - uid: 16575 + - uid: 11107 components: - type: Transform pos: 14.5,-375.5 parent: 2 - - uid: 16576 + - uid: 11108 components: - type: Transform pos: 14.5,-376.5 parent: 2 - - uid: 16577 + - uid: 11109 components: - type: Transform pos: 14.5,-377.5 parent: 2 - - uid: 16578 + - uid: 11110 components: - type: Transform pos: 13.5,-378.5 parent: 2 - - uid: 16579 + - uid: 11111 components: - type: Transform pos: 13.5,-379.5 parent: 2 - - uid: 16580 + - uid: 11112 components: - type: Transform pos: -12.5,-379.5 parent: 2 - - uid: 16582 + - uid: 11113 components: - type: Transform pos: -12.5,-378.5 parent: 2 - - uid: 16587 + - uid: 11114 components: - type: Transform pos: -13.5,-377.5 parent: 2 - - uid: 16588 + - uid: 11115 components: - type: Transform pos: -13.5,-376.5 parent: 2 - - uid: 16589 + - uid: 11116 components: - type: Transform pos: -13.5,-375.5 parent: 2 - - uid: 16590 + - uid: 11117 components: - type: Transform pos: -13.5,-374.5 parent: 2 - - uid: 16591 + - uid: 11118 components: - type: Transform pos: -14.5,-373.5 parent: 2 - - uid: 16592 + - uid: 11119 components: - type: Transform pos: -14.5,-372.5 parent: 2 - - uid: 16593 + - uid: 11120 components: - type: Transform pos: -14.5,-371.5 parent: 2 - - uid: 16594 + - uid: 11121 components: - type: Transform pos: -14.5,-370.5 parent: 2 - - uid: 16595 + - uid: 11122 components: - type: Transform pos: -14.5,-369.5 parent: 2 - - uid: 16596 + - uid: 11123 components: - type: Transform pos: -14.5,-368.5 parent: 2 - - uid: 16597 + - uid: 11124 components: - type: Transform pos: -14.5,-367.5 parent: 2 - - uid: 16598 + - uid: 11125 components: - type: Transform pos: -15.5,-366.5 parent: 2 - - uid: 16599 + - uid: 11126 components: - type: Transform pos: -15.5,-365.5 parent: 2 - - uid: 16600 + - uid: 11127 components: - type: Transform pos: -15.5,-364.5 parent: 2 - - uid: 16601 + - uid: 11128 components: - type: Transform pos: -15.5,-363.5 parent: 2 - - uid: 16602 + - uid: 11129 components: - type: Transform pos: -15.5,-362.5 parent: 2 - - uid: 16603 + - uid: 11130 components: - type: Transform pos: -15.5,-361.5 parent: 2 - - uid: 16604 + - uid: 11131 components: - type: Transform pos: -15.5,-360.5 parent: 2 - - uid: 16605 + - uid: 11132 components: - type: Transform pos: -16.5,-359.5 parent: 2 - - uid: 16606 + - uid: 11133 components: - type: Transform pos: -16.5,-358.5 parent: 2 - - uid: 16607 + - uid: 11134 components: - type: Transform pos: -16.5,-357.5 parent: 2 - - uid: 16608 + - uid: 11135 components: - type: Transform pos: -16.5,-356.5 parent: 2 - - uid: 16609 + - uid: 11136 components: - type: Transform pos: -16.5,-355.5 parent: 2 - - uid: 16610 + - uid: 11137 components: - type: Transform pos: -16.5,-354.5 parent: 2 - - uid: 16744 + - uid: 11138 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-323.5 parent: 2 - - uid: 16745 + - uid: 11139 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-322.5 parent: 2 - - uid: 16746 + - uid: 11140 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-321.5 parent: 2 - - uid: 16747 + - uid: 11141 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-320.5 parent: 2 - - uid: 16748 + - uid: 11142 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-319.5 parent: 2 - - uid: 16749 + - uid: 11143 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-318.5 parent: 2 - - uid: 16750 + - uid: 11144 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-317.5 parent: 2 - - uid: 16751 + - uid: 11145 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-316.5 parent: 2 - - uid: 16752 + - uid: 11146 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-315.5 parent: 2 - - uid: 16753 + - uid: 11147 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-314.5 parent: 2 - - uid: 16754 + - uid: 11148 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-313.5 parent: 2 - - uid: 16755 + - uid: 11149 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-312.5 parent: 2 - - uid: 16756 + - uid: 11150 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-315.5 parent: 2 - - uid: 16757 + - uid: 11151 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-313.5 parent: 2 - - uid: 16758 + - uid: 11152 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-312.5 parent: 2 - - uid: 16759 + - uid: 11153 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-311.5 parent: 2 - - uid: 16760 + - uid: 11154 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-310.5 parent: 2 - - uid: 16761 + - uid: 11155 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-309.5 parent: 2 - - uid: 16762 + - uid: 11156 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-308.5 parent: 2 - - uid: 16763 + - uid: 11157 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-307.5 parent: 2 - - uid: 16764 + - uid: 11158 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-306.5 parent: 2 - - uid: 16765 + - uid: 11159 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-305.5 parent: 2 - - uid: 16766 + - uid: 11160 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-304.5 parent: 2 - - uid: 16767 + - uid: 11161 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-303.5 parent: 2 - - uid: 16768 + - uid: 11162 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-302.5 parent: 2 - - uid: 16769 + - uid: 11163 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-301.5 parent: 2 - - uid: 16770 + - uid: 11164 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-300.5 parent: 2 - - uid: 16771 + - uid: 11165 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-299.5 parent: 2 - - uid: 16772 + - uid: 11166 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-297.5 parent: 2 - - uid: 16773 + - uid: 11167 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-296.5 parent: 2 - - uid: 16774 + - uid: 11168 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-295.5 parent: 2 - - uid: 16775 + - uid: 11169 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-294.5 parent: 2 - - uid: 16776 + - uid: 11170 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-293.5 parent: 2 - - uid: 16777 + - uid: 11171 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-292.5 parent: 2 - - uid: 16778 + - uid: 11172 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-298.5 parent: 2 - - uid: 16779 + - uid: 11173 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-299.5 parent: 2 - - uid: 16780 + - uid: 11174 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-300.5 parent: 2 - - uid: 16781 + - uid: 11175 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-301.5 parent: 2 - - uid: 16782 + - uid: 11176 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-302.5 parent: 2 - - uid: 16819 + - uid: 11177 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-317.5 parent: 2 - - uid: 16820 + - uid: 11178 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-320.5 parent: 2 - - uid: 16821 + - uid: 11179 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-319.5 parent: 2 - - uid: 16822 + - uid: 11180 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-318.5 parent: 2 - - uid: 16823 + - uid: 11181 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-316.5 parent: 2 - - uid: 16824 + - uid: 11182 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-315.5 parent: 2 - - uid: 16825 + - uid: 11183 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-314.5 parent: 2 - - uid: 16826 + - uid: 11184 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-313.5 parent: 2 - - uid: 16827 + - uid: 11185 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-312.5 parent: 2 - - uid: 16828 + - uid: 11186 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-311.5 parent: 2 - - uid: 16829 + - uid: 11187 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-310.5 parent: 2 - - uid: 16830 + - uid: 11188 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-309.5 parent: 2 - - uid: 16831 + - uid: 11189 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-308.5 parent: 2 - - uid: 16832 + - uid: 11190 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-307.5 parent: 2 - - uid: 16833 + - uid: 11191 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-306.5 parent: 2 - - uid: 16834 + - uid: 11192 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-305.5 parent: 2 - - uid: 16835 + - uid: 11193 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-304.5 parent: 2 - - uid: 16836 + - uid: 11194 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-303.5 parent: 2 - - uid: 16837 + - uid: 11195 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-302.5 parent: 2 - - uid: 16838 + - uid: 11196 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-301.5 parent: 2 - - uid: 16839 + - uid: 11197 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-300.5 parent: 2 - - uid: 16840 + - uid: 11198 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-299.5 parent: 2 - - uid: 16841 + - uid: 11199 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-298.5 parent: 2 - - uid: 16842 + - uid: 11200 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-297.5 parent: 2 - - uid: 16843 + - uid: 11201 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-296.5 parent: 2 - - uid: 16844 + - uid: 11202 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-295.5 parent: 2 - - uid: 16845 + - uid: 11203 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-294.5 parent: 2 - - uid: 16846 + - uid: 11204 components: - type: Transform rot: 1.5707963267948966 rad @@ -74528,7 +73980,7 @@ entities: parent: 2 - proto: GunSafeDisabler entities: - - uid: 12385 + - uid: 11205 components: - type: Transform pos: -0.5,-367.5 @@ -74553,70 +74005,70 @@ entities: - 0 - proto: GunSafeLaserCarbine entities: - - uid: 15797 + - uid: 11206 components: - type: Transform pos: 8.5,-338.5 parent: 2 - proto: GunSafePistolMk58 entities: - - uid: 9424 + - uid: 11207 components: - type: Transform pos: -0.5,-362.5 parent: 2 - proto: GunSafeRifleLecter entities: - - uid: 10696 + - uid: 11208 components: - type: Transform pos: 6.5,-338.5 parent: 2 - proto: GunSafeShotgunKammerer entities: - - uid: 10845 + - uid: 11209 components: - type: Transform pos: 6.5,-337.5 parent: 2 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 10992 + - uid: 11210 components: - type: Transform pos: 8.5,-337.5 parent: 2 - proto: Handcuffs entities: - - uid: 11434 - components: - - type: Transform - pos: 4.456359,-358.63803 - parent: 2 - - uid: 12777 + - uid: 5607 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 11211 + components: + - type: Transform + pos: 4.456359,-358.63803 + parent: 2 - proto: HandheldGPSBasic entities: - - uid: 14076 + - uid: 11212 components: - type: Transform pos: -1.713614,-166.57089 parent: 2 - proto: HandheldHealthAnalyzerUnpowered entities: - - uid: 3890 + - uid: 11213 components: - type: Transform pos: -5.5934877,-206.55833 parent: 2 - proto: HandheldStationMap entities: - - uid: 8420 + - uid: 11214 components: - type: Transform rot: 3.141592653589793 rad @@ -74624,107 +74076,107 @@ entities: parent: 2 - proto: HappyHonk entities: - - uid: 15812 + - uid: 11215 components: - type: Transform pos: 7.0998864,-17.75665 parent: 2 - proto: HighSecArmoryLocked entities: - - uid: 7735 + - uid: 11216 components: - type: Transform pos: 7.5,-339.5 parent: 2 - proto: HighSecCommandLocked entities: - - uid: 102 + - uid: 11217 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 266 + - uid: 11218 components: - type: Transform pos: 17.5,-307.5 parent: 2 - - uid: 7942 + - uid: 11219 components: - type: Transform pos: 22.5,-300.5 parent: 2 - - uid: 8050 + - uid: 11220 components: - type: Transform pos: 22.5,-314.5 parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 295 + - uid: 11221 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 3188 + - uid: 11222 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-178.5 parent: 2 - - uid: 3685 + - uid: 11223 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 3690 + - uid: 11224 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 3691 + - uid: 11225 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 3692 + - uid: 11226 components: - type: Transform pos: 8.5,-176.5 parent: 2 - type: Door - secondsUntilStateChange: -134439.94 + secondsUntilStateChange: -141100.73 state: Closing - - uid: 11796 + - uid: 11227 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-367.5 parent: 2 - - uid: 11797 + - uid: 11228 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-364.5 parent: 2 - - uid: 11798 + - uid: 11229 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-364.5 parent: 2 - - uid: 11799 + - uid: 11230 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-367.5 parent: 2 - - uid: 11800 + - uid: 11231 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-372.5 parent: 2 - - uid: 11801 + - uid: 11232 components: - type: Transform rot: 3.141592653589793 rad @@ -74732,43 +74184,43 @@ entities: parent: 2 - proto: hydroponicsSoil entities: - - uid: 2028 + - uid: 11233 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-95.5 parent: 2 - - uid: 11467 + - uid: 11234 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-373.5 parent: 2 - - uid: 11468 + - uid: 11235 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-373.5 parent: 2 - - uid: 11469 + - uid: 11236 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-373.5 parent: 2 - - uid: 11470 + - uid: 11237 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-373.5 parent: 2 - - uid: 11471 + - uid: 11238 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-373.5 parent: 2 - - uid: 11472 + - uid: 11239 components: - type: Transform rot: 3.141592653589793 rad @@ -74776,63 +74228,63 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 2029 + - uid: 11240 components: - type: Transform pos: -4.9444575,-95.49014 parent: 2 - - uid: 26466 + - uid: 11241 components: - type: Transform pos: -1.4858844,-371.00397 parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 26463 + - uid: 11242 components: - type: Transform pos: -1.2279739,-371.28754 parent: 2 - proto: hydroponicsTray entities: - - uid: 1730 + - uid: 11243 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 1731 + - uid: 11244 components: - type: Transform pos: -7.5,-83.5 parent: 2 - - uid: 1737 + - uid: 11245 components: - type: Transform pos: -7.5,-85.5 parent: 2 - - uid: 1739 + - uid: 11246 components: - type: Transform pos: -7.5,-86.5 parent: 2 - - uid: 1740 + - uid: 11247 components: - type: Transform pos: -7.5,-87.5 parent: 2 - - uid: 1744 + - uid: 11248 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-85.5 parent: 2 - - uid: 1745 + - uid: 11249 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-86.5 parent: 2 - - uid: 1746 + - uid: 11250 components: - type: Transform rot: -1.5707963267948966 rad @@ -74840,49 +74292,49 @@ entities: parent: 2 - proto: Igniter entities: - - uid: 17063 + - uid: 11251 components: - type: Transform pos: -13.294711,-246.58882 parent: 2 - - uid: 17064 + - uid: 11252 components: - type: Transform pos: -13.227223,-246.42015 parent: 2 - proto: InflatableWall entities: - - uid: 1860 + - uid: 11253 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-96.5 parent: 2 - - uid: 7348 + - uid: 11254 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-163.5 parent: 2 - - uid: 7350 + - uid: 11255 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-163.5 parent: 2 - - uid: 7351 + - uid: 11256 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-164.5 parent: 2 - - uid: 7352 + - uid: 11257 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-163.5 parent: 2 - - uid: 7353 + - uid: 11258 components: - type: Transform rot: -1.5707963267948966 rad @@ -74890,13 +74342,13 @@ entities: parent: 2 - proto: InflatableWallStack1 entities: - - uid: 1861 + - uid: 11259 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.53376,-97.54558 parent: 2 - - uid: 1862 + - uid: 11260 components: - type: Transform rot: 1.5707963267948966 rad @@ -74904,50 +74356,50 @@ entities: parent: 2 - proto: IngotGold1 entities: - - uid: 14450 + - uid: 11261 components: - type: Transform pos: 17.62472,-83.47914 parent: 2 - - uid: 14452 + - uid: 11262 components: - type: Transform pos: 17.334173,-83.06987 parent: 2 - - uid: 14453 + - uid: 11263 components: - type: Transform pos: 13.557059,-82.449356 parent: 2 - - uid: 14454 + - uid: 11264 components: - type: Transform pos: 13.821194,-78.3566 parent: 2 - proto: IngotSilver entities: - - uid: 89 + - uid: 11265 components: - type: Transform pos: -3.4884946,-1.3774483 parent: 2 - proto: IngotSilver1 entities: - - uid: 14455 + - uid: 11266 components: - type: Transform pos: 13.464613,-83.32071 parent: 2 - proto: IntercomCommand entities: - - uid: 69 + - uid: 11267 components: - type: Transform pos: 1.5,-13.5 parent: 2 - proto: IntercomEngineering entities: - - uid: 9078 + - uid: 11268 components: - type: Transform rot: -1.5707963267948966 rad @@ -74955,7 +74407,7 @@ entities: parent: 2 - proto: IntercomMedical entities: - - uid: 12199 + - uid: 11269 components: - type: Transform rot: -1.5707963267948966 rad @@ -74963,7 +74415,7 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 12201 + - uid: 11270 components: - type: Transform rot: 1.5707963267948966 rad @@ -74971,7 +74423,7 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 2852 + - uid: 11271 components: - type: Transform rot: 1.5707963267948966 rad @@ -74979,13 +74431,13 @@ entities: parent: 2 - proto: IntercomService entities: - - uid: 1736 + - uid: 11272 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-85.5 parent: 2 - - uid: 12202 + - uid: 11273 components: - type: Transform rot: 1.5707963267948966 rad @@ -74993,7 +74445,7 @@ entities: parent: 2 - proto: IntercomSupply entities: - - uid: 1613 + - uid: 11274 components: - type: Transform rot: -1.5707963267948966 rad @@ -75001,7 +74453,7 @@ entities: parent: 2 - proto: JanitorialTrolley entities: - - uid: 2775 + - uid: 11275 components: - type: Transform rot: -1.5707963267948966 rad @@ -75009,7 +74461,7 @@ entities: parent: 2 - proto: JetpackBlackFilled entities: - - uid: 11980 + - uid: 11276 components: - type: Transform rot: 3.141592653589793 rad @@ -75017,166 +74469,166 @@ entities: parent: 2 - proto: JetpackBlueFilled entities: - - uid: 914 + - uid: 11277 components: - type: Transform pos: 4.6285653,0.46697795 parent: 2 - - uid: 915 + - uid: 11278 components: - type: Transform pos: 4.3160653,0.73260295 parent: 2 - proto: JetpackMini entities: - - uid: 16812 + - uid: 4697 components: - type: Transform - parent: 16811 + parent: 4694 - type: Physics canCollide: False - type: InsideEntityStorage - proto: JetpackMiniFilled entities: - - uid: 5136 + - uid: 11279 components: - type: Transform pos: 9.644433,-115.42764 parent: 2 - - uid: 10822 + - uid: 11280 components: - type: Transform pos: 9.44197,-115.30394 parent: 2 - - uid: 15167 + - uid: 11281 components: - type: Transform pos: 9.644433,-115.27022 parent: 2 - proto: KitchenElectricGrill entities: - - uid: 1930 + - uid: 11282 components: - type: Transform pos: 1.5,-88.5 parent: 2 - proto: KitchenKnife entities: - - uid: 2309 + - uid: 11283 components: - type: Transform pos: -0.53435105,-85.90257 parent: 2 - proto: KitchenMicrowave entities: - - uid: 206 + - uid: 11284 components: - type: Transform pos: 6.5,-11.5 parent: 2 - - uid: 580 + - uid: 11285 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 1944 + - uid: 11286 components: - type: Transform pos: 0.5,-86.5 parent: 2 - - uid: 8638 + - uid: 11287 components: - type: Transform pos: -4.5,-285.5 parent: 2 - - uid: 8915 + - uid: 11288 components: - type: Transform pos: 8.5,-253.5 parent: 2 - - uid: 9986 + - uid: 11289 components: - type: Transform pos: 7.5,-312.5 parent: 2 - - uid: 12364 + - uid: 11290 components: - type: Transform pos: 0.5,-370.5 parent: 2 - proto: KitchenReagentGrinder entities: - - uid: 1947 + - uid: 11291 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 3128 + - uid: 11292 components: - type: Transform pos: 4.5,-169.5 parent: 2 - - uid: 10936 + - uid: 11293 components: - type: Transform pos: -5.5,-193.5 parent: 2 - proto: KitchenSpike entities: - - uid: 1781 + - uid: 11294 components: - type: Transform pos: -5.5,-92.5 parent: 2 - - uid: 1785 + - uid: 11295 components: - type: Transform pos: -5.5,-91.5 parent: 2 - proto: KoboldCubeBox entities: - - uid: 3907 + - uid: 11296 components: - type: Transform pos: -6.325115,-194.94174 parent: 2 - proto: KudzuFlowerFriendly entities: - - uid: 16531 + - uid: 11297 components: - type: Transform pos: -13.5,-165.5 parent: 2 - - uid: 16532 + - uid: 11298 components: - type: Transform pos: -13.5,-164.5 parent: 2 - - uid: 16533 + - uid: 11299 components: - type: Transform pos: -13.5,-163.5 parent: 2 - - uid: 16534 + - uid: 11300 components: - type: Transform pos: -13.5,-166.5 parent: 2 - proto: LampBanana entities: - - uid: 2013 + - uid: 11301 components: - type: Transform pos: -7.310762,-123.94716 parent: 2 - proto: LampGold entities: - - uid: 1369 + - uid: 11302 components: - type: Transform pos: -5.572312,-71.25691 parent: 2 - - uid: 10922 + - uid: 11303 components: - type: Transform rot: -1.5707963267948966 rad @@ -75184,92 +74636,92 @@ entities: parent: 2 - proto: LampInterrogator entities: - - uid: 12080 + - uid: 11304 components: - type: Transform pos: -5.6837883,-357.0308 parent: 2 - proto: LandMineExplosive entities: - - uid: 11530 + - uid: 11305 components: - type: Transform pos: -4.5384116,-351.36267 parent: 2 - proto: Lantern entities: - - uid: 2675 + - uid: 11306 components: - type: Transform pos: 3.728132,-143.36674 parent: 2 - - uid: 2676 + - uid: 11307 components: - type: Transform pos: 5.2072816,-143.33742 parent: 2 - proto: LargeBeaker entities: - - uid: 2295 + - uid: 11308 components: - type: Transform pos: 1.582355,-86.26639 parent: 2 - - uid: 3146 + - uid: 11309 components: - type: Transform pos: 4.313154,-165.64075 parent: 2 - - uid: 3918 + - uid: 11310 components: - type: Transform pos: -4.4480414,-198.16447 parent: 2 - proto: LauncherCreamPie entities: - - uid: 10163 + - uid: 5476 components: - type: Transform - parent: 2003 + parent: 5467 - type: Physics canCollide: False - type: InsideEntityStorage - proto: LeavesCannabis entities: - - uid: 14914 + - uid: 11311 components: - type: Transform rot: 3.141592653589793 rad pos: -6.4884734,-144.73663 parent: 2 - - uid: 14921 + - uid: 11312 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4209847,-144.91653 parent: 2 - - uid: 14922 + - uid: 11313 components: - type: Transform pos: -6.55596,-148.32358 parent: 2 - proto: LightImplanter entities: - - uid: 3977 + - uid: 11314 components: - type: Transform pos: -2.5364327,-207.28964 parent: 2 - proto: LightReplacer entities: - - uid: 8901 + - uid: 11315 components: - type: Transform pos: -13.643399,-246.28522 parent: 2 - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 13287 + - uid: 11316 components: - type: Transform anchored: True @@ -75277,7 +74729,7 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14009 + - uid: 11317 components: - type: Transform anchored: True @@ -75285,7 +74737,7 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14297 + - uid: 11318 components: - type: Transform anchored: True @@ -75295,59 +74747,59 @@ entities: bodyType: Static - proto: LockerBoozeFilled entities: - - uid: 1115 + - uid: 11319 components: - type: Transform pos: 4.5,-61.5 parent: 2 - proto: LockerBotanistFilled entities: - - uid: 1129 + - uid: 11320 components: - type: Transform pos: -7.5,-89.5 parent: 2 - - uid: 2058 + - uid: 11321 components: - type: Transform pos: -6.5,-89.5 parent: 2 - proto: LockerCaptainFilled entities: - - uid: 297 + - uid: 11322 components: - type: Transform pos: -3.5,-14.5 parent: 2 - proto: LockerChemistryFilled entities: - - uid: 3123 + - uid: 11323 components: - type: Transform pos: 7.5,-165.5 parent: 2 - - uid: 3124 + - uid: 11324 components: - type: Transform pos: 7.5,-166.5 parent: 2 - proto: LockerChiefEngineerFilled entities: - - uid: 8794 + - uid: 11325 components: - type: Transform pos: 11.5,-254.5 parent: 2 - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 3764 + - uid: 11326 components: - type: Transform pos: -0.5,-202.5 parent: 2 - proto: LockerClown entities: - - uid: 2003 + - uid: 5467 components: - type: Transform pos: -8.5,-124.5 @@ -75376,149 +74828,149 @@ entities: showEnts: False occludes: True ents: - - 8788 - - 8946 - - 10014 - - 10018 - - 10091 - - 10092 - - 10163 - - 10639 - - 10781 + - 5469 + - 5471 + - 5474 + - 5472 + - 5473 + - 5470 + - 5476 + - 5468 + - 5475 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerDetectiveFilled entities: - - uid: 9400 + - uid: 11327 components: - type: Transform pos: -2.5,-73.5 parent: 2 - proto: LockerElectricalSupplies entities: - - uid: 14316 + - uid: 11328 components: - type: Transform pos: -2.5,-244.5 parent: 2 - proto: LockerElectricalSuppliesFilled entities: - - uid: 3255 + - uid: 11329 components: - type: Transform pos: 3.5,-107.5 parent: 2 - - uid: 4239 + - uid: 11330 components: - type: Transform pos: -2.5,-18.5 parent: 2 - proto: LockerEngineerFilledHardsuit entities: - - uid: 4850 + - uid: 11331 components: - type: Transform pos: 6.5,-257.5 parent: 2 - - uid: 4977 + - uid: 11332 components: - type: Transform pos: 8.5,-257.5 parent: 2 - - uid: 5103 + - uid: 11333 components: - type: Transform pos: 5.5,-255.5 parent: 2 - - uid: 7779 + - uid: 11334 components: - type: Transform pos: 5.5,-257.5 parent: 2 - - uid: 7817 + - uid: 11335 components: - type: Transform pos: 4.5,-257.5 parent: 2 - - uid: 7875 + - uid: 11336 components: - type: Transform pos: 4.5,-255.5 parent: 2 - - uid: 8234 + - uid: 11337 components: - type: Transform pos: 3.5,-255.5 parent: 2 - - uid: 9869 + - uid: 11338 components: - type: Transform pos: 3.5,-257.5 parent: 2 - proto: LockerEvidence entities: - - uid: 11352 + - uid: 11339 components: - type: Transform pos: -1.5,-342.5 parent: 2 - - uid: 11353 + - uid: 11340 components: - type: Transform pos: -0.5,-342.5 parent: 2 - - uid: 11378 + - uid: 11341 components: - type: Transform pos: 3.5,-368.5 parent: 2 - - uid: 11379 + - uid: 11342 components: - type: Transform pos: -2.5,-368.5 parent: 2 - - uid: 11403 + - uid: 11343 components: - type: Transform pos: 3.5,-366.5 parent: 2 - - uid: 11404 + - uid: 11344 components: - type: Transform pos: 3.5,-365.5 parent: 2 - - uid: 11405 + - uid: 11345 components: - type: Transform pos: -2.5,-366.5 parent: 2 - - uid: 11406 + - uid: 11346 components: - type: Transform pos: -2.5,-365.5 parent: 2 - - uid: 11408 + - uid: 11347 components: - type: Transform pos: -0.5,-368.5 parent: 2 - proto: LockerFreezer entities: - - uid: 1939 + - uid: 11348 components: - type: Transform pos: -2.5,-90.5 parent: 2 - - uid: 1941 + - uid: 11349 components: - type: Transform pos: -0.5,-89.5 parent: 2 - proto: LockerFreezerVaultFilled entities: - - uid: 83 + - uid: 11350 components: - type: Transform pos: -0.5,-1.5 @@ -75547,62 +74999,62 @@ entities: showEnts: False occludes: True ents: - - 76 + - 11351 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerHeadOfPersonnelFilled entities: - - uid: 2232 + - uid: 11352 components: - type: Transform pos: -1.5,-117.5 parent: 2 - proto: LockerHeadOfSecurityFilled entities: - - uid: 11098 + - uid: 11353 components: - type: Transform pos: -5.5,-344.5 parent: 2 - proto: LockerMedicalFilled entities: - - uid: 2440 + - uid: 11354 components: - type: Transform pos: -0.5,-194.5 parent: 2 - - uid: 3175 + - uid: 11355 components: - type: Transform pos: 3.5,-193.5 parent: 2 - - uid: 3177 + - uid: 11356 components: - type: Transform pos: 3.5,-194.5 parent: 2 - proto: LockerMedicineFilled entities: - - uid: 291 + - uid: 11357 components: - type: Transform pos: 7.5,-171.5 parent: 2 - - uid: 294 + - uid: 11358 components: - type: Transform pos: 3.5,-176.5 parent: 2 - - uid: 2370 + - uid: 11359 components: - type: Transform pos: 5.5,-180.5 parent: 2 - proto: LockerMime entities: - - uid: 2019 + - uid: 5479 components: - type: Transform pos: -8.5,-121.5 @@ -75631,171 +75083,171 @@ entities: showEnts: False occludes: True ents: - - 11491 - - 11453 - - 11452 - - 11288 - - 11287 - - 11286 - - 11661 + - 5485 + - 5480 + - 5482 + - 5484 + - 5481 + - 5483 + - 5486 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerParamedicFilled entities: - - uid: 2047 + - uid: 11360 components: - type: Transform pos: -2.5,-166.5 parent: 2 - proto: LockerQuarterMasterFilled entities: - - uid: 9012 + - uid: 11361 components: - type: Transform pos: 6.5,-285.5 parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 10049 + - uid: 11362 components: - type: Transform pos: -8.5,-305.5 parent: 2 - proto: LockerSalvageSpecialistFilled entities: - - uid: 8489 + - uid: 11363 components: - type: Transform pos: -6.5,-287.5 parent: 2 - - uid: 8494 + - uid: 11364 components: - type: Transform pos: -6.5,-285.5 parent: 2 - - uid: 8507 + - uid: 11365 components: - type: Transform pos: -6.5,-286.5 parent: 2 - proto: LockerScienceFilled entities: - - uid: 10026 + - uid: 11366 components: - type: Transform pos: 7.5,-302.5 parent: 2 - - uid: 10028 + - uid: 11367 components: - type: Transform pos: 4.5,-310.5 parent: 2 - - uid: 10038 + - uid: 11368 components: - type: Transform pos: -2.5,-313.5 parent: 2 - - uid: 10039 + - uid: 11369 components: - type: Transform pos: -2.5,-314.5 parent: 2 - - uid: 10088 + - uid: 11370 components: - type: Transform pos: -2.5,-315.5 parent: 2 - - uid: 10128 + - uid: 11371 components: - type: Transform pos: -6.5,-302.5 parent: 2 - proto: LockerSecurityFilled entities: - - uid: 596 + - uid: 11372 components: - type: Transform pos: -8.5,-338.5 parent: 2 - - uid: 1145 + - uid: 11373 components: - type: Transform pos: -8.5,-339.5 parent: 2 - - uid: 7216 + - uid: 11374 components: - type: Transform pos: -8.5,-337.5 parent: 2 - - uid: 7249 + - uid: 11375 components: - type: Transform pos: -8.5,-340.5 parent: 2 - - uid: 7254 + - uid: 11376 components: - type: Transform pos: -7.5,-336.5 parent: 2 - - uid: 9416 + - uid: 11377 components: - type: Transform pos: -7.5,-342.5 parent: 2 - - uid: 10747 + - uid: 11378 components: - type: Transform pos: -8.5,-341.5 parent: 2 - proto: LockerWardenFilled entities: - - uid: 12854 + - uid: 11379 components: - type: Transform pos: 1.5,-363.5 parent: 2 - proto: LockerWeldingSuppliesFilled entities: - - uid: 3673 + - uid: 11380 components: - type: Transform pos: 5.5,-111.5 parent: 2 - - uid: 14346 + - uid: 11381 components: - type: Transform pos: -2.5,-261.5 parent: 2 - - uid: 14347 + - uid: 11382 components: - type: Transform pos: 3.5,-261.5 parent: 2 - proto: LuxuryPen entities: - - uid: 11103 + - uid: 11383 components: - type: Transform pos: 5.7372117,-332.35062 parent: 2 - proto: MachineAnomalyGenerator entities: - - uid: 9998 + - uid: 11384 components: - type: Transform pos: 6.5,-300.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 10010 + - uid: 11385 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-299.5 parent: 2 - - uid: 10011 + - uid: 11386 components: - type: Transform rot: -1.5707963267948966 rad @@ -75803,13 +75255,13 @@ entities: parent: 2 - proto: MachineAPE entities: - - uid: 10006 + - uid: 11387 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-304.5 parent: 2 - - uid: 10007 + - uid: 11388 components: - type: Transform rot: -1.5707963267948966 rad @@ -75817,143 +75269,143 @@ entities: parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 10029 + - uid: 11389 components: - type: Transform pos: -8.5,-314.5 parent: 2 - proto: MachineCentrifuge entities: - - uid: 3161 + - uid: 11390 components: - type: Transform pos: 4.5,-165.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 3698 + - uid: 11391 components: - type: Transform pos: 7.5,-168.5 parent: 2 - proto: MachineFrame entities: - - uid: 16496 + - uid: 11392 components: - type: Transform pos: -1.5,-172.5 parent: 2 - proto: MachineFrameDestroyed entities: - - uid: 6704 + - uid: 11393 components: - type: Transform pos: 31.5,-260.5 parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 10716 + - uid: 11394 components: - type: Transform pos: -3.9900005,-346.49026 parent: 2 - - uid: 10718 + - uid: 11395 components: - type: Transform pos: -4.0056252,-346.584 parent: 2 - proto: MagicDiceBag entities: - - uid: 14459 + - uid: 11396 components: - type: Transform pos: 17.444256,-79.34277 parent: 2 - proto: MailingUnit entities: - - uid: 2711 + - uid: 11397 components: - type: Transform pos: 4.5,-137.5 parent: 2 - type: MailingUnit tag: Chapel - - uid: 5864 + - uid: 11398 components: - type: Transform pos: -0.5,-279.5 parent: 2 - type: MailingUnit tag: Cargo - - uid: 6643 + - uid: 11399 components: - type: Transform pos: 6.5,-176.5 parent: 2 - type: MailingUnit tag: Medical - - uid: 8111 + - uid: 11400 components: - type: Transform pos: 13.5,-250.5 parent: 2 - type: MailingUnit tag: Engineering - - uid: 9040 + - uid: 11401 components: - type: Transform pos: -6.5,-142.5 parent: 2 - type: MailingUnit tag: Library - - uid: 12147 + - uid: 11402 components: - type: Transform pos: 2.5,-91.5 parent: 2 - type: MailingUnit tag: Kitchen - - uid: 12394 + - uid: 11403 components: - type: Transform pos: 2.5,-119.5 parent: 2 - type: MailingUnit tag: HoP Office - - uid: 13434 + - uid: 11404 components: - type: Transform pos: -3.5,-342.5 parent: 2 - - uid: 13518 + - uid: 11405 components: - type: Transform pos: 4.5,-10.5 parent: 2 - type: MailingUnit tag: Bridge - - uid: 13625 + - uid: 11406 components: - type: Transform pos: 0.5,-61.5 parent: 2 - type: MailingUnit tag: Bar - - uid: 13819 + - uid: 11407 components: - type: Transform pos: -3.5,-288.5 parent: 2 - type: MailingUnit tag: Salvage - - uid: 14134 + - uid: 11408 components: - type: Transform pos: -3.5,-303.5 parent: 2 - type: MailingUnit tag: Science - - uid: 17005 + - uid: 11409 components: - type: Transform pos: -13.5,-261.5 @@ -75962,373 +75414,373 @@ entities: tag: Atmos - proto: MaintenanceFluffSpawner entities: - - uid: 1036 + - uid: 11410 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 1133 + - uid: 11411 components: - type: Transform pos: -3.5,-38.5 parent: 2 - - uid: 1134 + - uid: 11412 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 2757 + - uid: 11413 components: - type: Transform pos: -2.5,-146.5 parent: 2 - - uid: 7403 + - uid: 11414 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-139.5 parent: 2 - - uid: 7404 + - uid: 11415 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-139.5 parent: 2 - - uid: 7405 + - uid: 11416 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-138.5 parent: 2 - - uid: 7406 + - uid: 11417 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-152.5 parent: 2 - - uid: 7407 + - uid: 11418 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-152.5 parent: 2 - - uid: 11698 + - uid: 11419 components: - type: Transform pos: -6.5,-146.5 parent: 2 - - uid: 13432 + - uid: 11420 components: - type: Transform pos: -3.5,-32.5 parent: 2 - - uid: 14651 + - uid: 11421 components: - type: Transform pos: 14.5,-82.5 parent: 2 - - uid: 14652 + - uid: 11422 components: - type: Transform pos: 17.5,-70.5 parent: 2 - - uid: 14653 + - uid: 11423 components: - type: Transform pos: 14.5,-68.5 parent: 2 - - uid: 14654 + - uid: 11424 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14681 + - uid: 11425 components: - type: Transform pos: -12.5,-168.5 parent: 2 - proto: MaintenancePlantSpawner entities: - - uid: 1033 + - uid: 11426 components: - type: Transform pos: -5.5,-34.5 parent: 2 - - uid: 1035 + - uid: 11427 components: - type: Transform pos: -3.5,-41.5 parent: 2 - - uid: 1590 + - uid: 11428 components: - type: Transform pos: 5.5,-59.5 parent: 2 - - uid: 1591 + - uid: 11429 components: - type: Transform pos: 6.5,-54.5 parent: 2 - - uid: 1596 + - uid: 11430 components: - type: Transform pos: 4.5,-66.5 parent: 2 - - uid: 1608 + - uid: 11431 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 3561 + - uid: 11432 components: - type: Transform pos: -5.5,-162.5 parent: 2 - - uid: 5256 + - uid: 11433 components: - type: Transform pos: 7.5,-162.5 parent: 2 - - uid: 7412 + - uid: 11434 components: - type: Transform pos: 16.5,-158.5 parent: 2 - - uid: 7413 + - uid: 11435 components: - type: Transform pos: 15.5,-163.5 parent: 2 - - uid: 7414 + - uid: 11436 components: - type: Transform pos: 14.5,-158.5 parent: 2 - - uid: 12117 + - uid: 11437 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 14624 + - uid: 11438 components: - type: Transform pos: -5.5,-243.5 parent: 2 - - uid: 16498 + - uid: 11439 components: - type: Transform pos: -14.5,-165.5 parent: 2 - - uid: 16499 + - uid: 11440 components: - type: Transform pos: -14.5,-164.5 parent: 2 - - uid: 16516 + - uid: 11441 components: - type: Transform pos: -11.5,-161.5 parent: 2 - - uid: 16518 + - uid: 11442 components: - type: Transform pos: -12.5,-164.5 parent: 2 - - uid: 16520 + - uid: 11443 components: - type: Transform pos: -13.5,-166.5 parent: 2 - - uid: 16521 + - uid: 11444 components: - type: Transform pos: -12.5,-167.5 parent: 2 - - uid: 16522 + - uid: 11445 components: - type: Transform pos: -12.5,-166.5 parent: 2 - - uid: 16523 + - uid: 11446 components: - type: Transform pos: -9.5,-167.5 parent: 2 - - uid: 16524 + - uid: 11447 components: - type: Transform pos: -8.5,-162.5 parent: 2 - - uid: 16884 + - uid: 11448 components: - type: Transform pos: -5.5,-250.5 parent: 2 - proto: MaintenanceToolSpawner entities: - - uid: 1169 + - uid: 11449 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 2673 + - uid: 11450 components: - type: Transform pos: 4.5,-143.5 parent: 2 - - uid: 2756 + - uid: 11451 components: - type: Transform pos: -3.5,-148.5 parent: 2 - - uid: 3639 + - uid: 11452 components: - type: Transform pos: -2.5,-180.5 parent: 2 - - uid: 7408 + - uid: 11453 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-146.5 parent: 2 - - uid: 7409 + - uid: 11454 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-153.5 parent: 2 - - uid: 7410 + - uid: 11455 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-139.5 parent: 2 - - uid: 9059 + - uid: 11456 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 9060 + - uid: 11457 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 14626 + - uid: 11458 components: - type: Transform pos: -5.5,-244.5 parent: 2 - - uid: 14680 + - uid: 11459 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16887 + - uid: 11460 components: - type: Transform pos: -4.5,-251.5 parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 1106 + - uid: 11461 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 2750 + - uid: 11462 components: - type: Transform pos: -2.5,-148.5 parent: 2 - - uid: 7411 + - uid: 11463 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-159.5 parent: 2 - - uid: 16515 + - uid: 11464 components: - type: Transform pos: -11.5,-164.5 parent: 2 - - uid: 16904 + - uid: 11465 components: - type: Transform pos: -13.5,-161.5 parent: 2 - proto: Matchbox entities: - - uid: 14413 + - uid: 11466 components: - type: Transform pos: 13.58873,-63.406937 parent: 2 - proto: MaterialBones1 entities: - - uid: 1178 + - uid: 11467 components: - type: Transform pos: -9.6216,-313.45743 parent: 2 - - uid: 1328 + - uid: 11468 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.432205,-287.74188 parent: 2 - - uid: 2268 + - uid: 11469 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.485611,-116.31554 parent: 2 - - uid: 12160 + - uid: 11470 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.70648,-164.34258 parent: 2 - - uid: 12161 + - uid: 11471 components: - type: Transform rot: 3.141592653589793 rad pos: 3.2381563,-139.7225 parent: 2 - - uid: 12162 + - uid: 11472 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.6467605,-95.3029 parent: 2 - - uid: 12163 + - uid: 11473 components: - type: Transform pos: 7.7499275,-57.722916 parent: 2 - - uid: 12164 + - uid: 11474 components: - type: Transform pos: 4.1805468,-18.559465 parent: 2 - - uid: 12165 + - uid: 11475 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.3194995,-200.24161 parent: 2 - - uid: 12168 + - uid: 11476 components: - type: Transform pos: -7.709251,-14.40967 parent: 2 - - uid: 12169 + - uid: 11477 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.665835,-223.53601 parent: 2 - - uid: 12171 + - uid: 11478 components: - type: Transform rot: 3.141592653589793 rad @@ -76336,192 +75788,192 @@ entities: parent: 2 - proto: MaterialCloth entities: - - uid: 2261 + - uid: 11479 components: - type: Transform pos: 2.2574189,-121.30031 parent: 2 - proto: MaterialDiamond1 entities: - - uid: 95 + - uid: 11480 components: - type: Transform pos: -2.44932,-1.350307 parent: 2 - proto: MaterialDurathread entities: - - uid: 2259 + - uid: 11481 components: - type: Transform pos: 2.6536188,-121.53795 parent: 2 - proto: MaterialReclaimer entities: - - uid: 9053 + - uid: 11482 components: - type: Transform pos: 6.5,-276.5 parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 6887 + - uid: 11483 components: - type: Transform pos: 19.673317,-257.24585 parent: 2 - proto: MatterBinStockPart entities: - - uid: 9979 + - uid: 11484 components: - type: Transform pos: -1.6846497,-303.9585 parent: 2 - proto: MedicalBed entities: - - uid: 477 + - uid: 11485 components: - type: Transform pos: 3.5,-172.5 parent: 2 - - uid: 478 + - uid: 11486 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 2419 + - uid: 11487 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 3136 + - uid: 11488 components: - type: Transform pos: 8.5,-176.5 parent: 2 - - uid: 3169 + - uid: 11489 components: - type: Transform pos: 3.5,-174.5 parent: 2 - - uid: 11437 + - uid: 11490 components: - type: Transform pos: -4.5,-361.5 parent: 2 - proto: MedicalTechFab entities: - - uid: 3219 + - uid: 11491 components: - type: Transform pos: -0.5,-192.5 parent: 2 - proto: MedkitAdvancedFilled entities: - - uid: 403 + - uid: 11492 components: - type: Transform pos: 1.6380901,2.7440202 parent: 2 - - uid: 11429 + - uid: 11493 components: - type: Transform pos: -6.360816,-360.66074 parent: 2 - proto: MedkitBruteFilled entities: - - uid: 3232 + - uid: 11494 components: - type: Transform pos: 1.9111176,-192.26358 parent: 2 - - uid: 3233 + - uid: 11495 components: - type: Transform pos: 2.104815,-192.52763 parent: 2 - proto: MedkitBurnFilled entities: - - uid: 3226 + - uid: 11496 components: - type: Transform pos: 3.7108743,-192.53125 parent: 2 - - uid: 3227 + - uid: 11497 components: - type: Transform pos: 3.5171762,-192.26721 parent: 2 - proto: MedkitFilled entities: - - uid: 3235 + - uid: 11498 components: - type: Transform pos: 1.6602318,-193.5479 parent: 2 - - uid: 3236 + - uid: 11499 components: - type: Transform pos: 1.4137071,-193.27406 parent: 2 - - uid: 3237 + - uid: 11500 components: - type: Transform pos: 1.6367531,-192.97285 parent: 2 - - uid: 3238 + - uid: 11501 components: - type: Transform pos: 1.4137071,-192.68338 parent: 2 - - uid: 8892 + - uid: 11502 components: - type: Transform pos: -7.402346,-271.4695 parent: 2 - - uid: 11435 + - uid: 11503 components: - type: Transform pos: -6.627599,-360.45245 parent: 2 - proto: MedkitOxygenFilled entities: - - uid: 3228 + - uid: 11504 components: - type: Transform pos: 2.9762833,-192.27135 parent: 2 - - uid: 3229 + - uid: 11505 components: - type: Transform pos: 3.1699817,-192.5354 parent: 2 - proto: MedkitRadiationFilled entities: - - uid: 3230 + - uid: 11506 components: - type: Transform pos: 2.436729,-192.26717 parent: 2 - proto: MedkitToxinFilled entities: - - uid: 2761 + - uid: 11507 components: - type: Transform pos: 6.701955,-163.31392 parent: 2 - - uid: 3231 + - uid: 11508 components: - type: Transform pos: 2.6417062,-192.53575 parent: 2 - proto: MicroManipulatorStockPart entities: - - uid: 9971 + - uid: 11509 components: - type: Transform pos: -1.635678,-304.48248 parent: 2 - - uid: 9978 + - uid: 11510 components: - type: Transform rot: -1.5707963267948966 rad @@ -76529,287 +75981,287 @@ entities: parent: 2 - proto: MiningWindow entities: - - uid: 3246 + - uid: 11511 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-136.5 parent: 2 - - uid: 4182 + - uid: 11512 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-86.5 parent: 2 - - uid: 7253 + - uid: 11513 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-144.5 parent: 2 - - uid: 7256 + - uid: 11514 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-147.5 parent: 2 - - uid: 7257 + - uid: 11515 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-144.5 parent: 2 - - uid: 7258 + - uid: 11516 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-145.5 parent: 2 - - uid: 7259 + - uid: 11517 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-146.5 parent: 2 - - uid: 7260 + - uid: 11518 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-147.5 parent: 2 - - uid: 7265 + - uid: 11519 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-138.5 parent: 2 - - uid: 7266 + - uid: 11520 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-139.5 parent: 2 - - uid: 7267 + - uid: 11521 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-139.5 parent: 2 - - uid: 7268 + - uid: 11522 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-138.5 parent: 2 - - uid: 7273 + - uid: 11523 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-153.5 parent: 2 - - uid: 7274 + - uid: 11524 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-152.5 parent: 2 - - uid: 7275 + - uid: 11525 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-153.5 parent: 2 - - uid: 7276 + - uid: 11526 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-152.5 parent: 2 - - uid: 7299 + - uid: 11527 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-160.5 parent: 2 - - uid: 7300 + - uid: 11528 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-159.5 parent: 2 - - uid: 7301 + - uid: 11529 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-159.5 parent: 2 - - uid: 7302 + - uid: 11530 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-160.5 parent: 2 - - uid: 7309 + - uid: 11531 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-166.5 parent: 2 - - uid: 7310 + - uid: 11532 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-165.5 parent: 2 - - uid: 14249 + - uid: 11533 components: - type: Transform pos: 12.5,-79.5 parent: 2 - - uid: 14250 + - uid: 11534 components: - type: Transform pos: 12.5,-78.5 parent: 2 - - uid: 14251 + - uid: 11535 components: - type: Transform pos: 12.5,-77.5 parent: 2 - - uid: 14252 + - uid: 11536 components: - type: Transform pos: 18.5,-77.5 parent: 2 - - uid: 14253 + - uid: 11537 components: - type: Transform pos: 18.5,-78.5 parent: 2 - - uid: 14254 + - uid: 11538 components: - type: Transform pos: 18.5,-79.5 parent: 2 - - uid: 14255 + - uid: 11539 components: - type: Transform pos: 18.5,-73.5 parent: 2 - - uid: 14256 + - uid: 11540 components: - type: Transform pos: 18.5,-74.5 parent: 2 - - uid: 14257 + - uid: 11541 components: - type: Transform pos: 18.5,-72.5 parent: 2 - - uid: 14258 + - uid: 11542 components: - type: Transform pos: 12.5,-72.5 parent: 2 - - uid: 14259 + - uid: 11543 components: - type: Transform pos: 12.5,-73.5 parent: 2 - - uid: 14260 + - uid: 11544 components: - type: Transform pos: 12.5,-74.5 parent: 2 - - uid: 14272 + - uid: 11545 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-87.5 parent: 2 - - uid: 14276 + - uid: 11546 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-86.5 parent: 2 - - uid: 14281 + - uid: 11547 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-86.5 parent: 2 - - uid: 14284 + - uid: 11548 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-136.5 parent: 2 - - uid: 14285 + - uid: 11549 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-136.5 parent: 2 - - uid: 14286 + - uid: 11550 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-135.5 parent: 2 - - uid: 14414 + - uid: 11551 components: - type: Transform pos: 16.5,-76.5 parent: 2 - - uid: 14415 + - uid: 11552 components: - type: Transform pos: 14.5,-76.5 parent: 2 - proto: MiningWindowDiagonal entities: - - uid: 4198 + - uid: 11553 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-137.5 parent: 2 - - uid: 7490 + - uid: 11554 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-137.5 parent: 2 - - uid: 9808 + - uid: 11555 components: - type: Transform pos: 14.5,-135.5 parent: 2 - - uid: 9814 + - uid: 11556 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-135.5 parent: 2 - - uid: 14004 + - uid: 11557 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-85.5 parent: 2 - - uid: 14097 + - uid: 11558 components: - type: Transform pos: 16.5,-85.5 parent: 2 - - uid: 14101 + - uid: 11559 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-87.5 parent: 2 - - uid: 14282 + - uid: 11560 components: - type: Transform rot: 1.5707963267948966 rad @@ -76817,19 +76269,19 @@ entities: parent: 2 - proto: Mirror entities: - - uid: 2873 + - uid: 11561 components: - type: Transform pos: -3.5,-153.5 parent: 2 - - uid: 2874 + - uid: 11562 components: - type: Transform pos: -2.5,-154.5 parent: 2 - proto: MopBucket entities: - - uid: 14774 + - uid: 11563 components: - type: Transform pos: 3.5661294,-32.585365 @@ -76843,122 +76295,122 @@ entities: shark_slot: !type:ContainerSlot showEnts: False occludes: True - ent: 14775 + ent: 11564 - proto: MopItem entities: - - uid: 1734 + - uid: 627 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11565 components: - type: Transform pos: -2.979488,-53.533066 parent: 2 - - uid: 3243 + - uid: 11566 components: - type: Transform pos: -1.3489041,-172.98175 parent: 2 - - uid: 12296 + - uid: 11567 components: - type: Transform pos: -4.5275626,-374.4991 parent: 2 - - uid: 14478 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Morgue entities: - - uid: 2693 + - uid: 7557 + components: + - type: Transform + pos: -3.5,-172.5 + parent: 2 + - uid: 11568 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-138.5 parent: 2 - - uid: 2783 + - uid: 11569 components: - type: Transform pos: -4.5,-172.5 parent: 2 - - uid: 2889 + - uid: 11570 components: - type: Transform pos: -4.5,-175.5 parent: 2 - - uid: 2903 + - uid: 11571 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-177.5 parent: 2 - - uid: 2908 + - uid: 11572 components: - type: Transform pos: -3.5,-175.5 parent: 2 - - uid: 2983 + - uid: 11573 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-174.5 parent: 2 - - uid: 2984 + - uid: 11574 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-174.5 parent: 2 - - uid: 3045 + - uid: 11575 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-177.5 parent: 2 - - uid: 3047 + - uid: 11576 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-177.5 parent: 2 - - uid: 3049 + - uid: 11577 components: - type: Transform pos: -2.5,-172.5 parent: 2 - - uid: 3076 - components: - - type: Transform - pos: -3.5,-172.5 - parent: 2 - proto: MothroachCube entities: - - uid: 13991 + - uid: 11579 components: - type: Transform pos: 20.53401,-238.32663 parent: 2 - proto: MouseTimedSpawner entities: - - uid: 8968 + - uid: 11580 components: - type: Transform pos: 9.5,-297.5 parent: 2 - - uid: 14691 + - uid: 11581 components: - type: Transform pos: -6.5,-169.5 parent: 2 - proto: Multitool entities: - - uid: 12376 + - uid: 11582 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4878173,-317.32074 parent: 2 - - uid: 15095 + - uid: 11583 components: - type: Transform rot: -1.5707963267948966 rad @@ -76966,59 +76418,59 @@ entities: parent: 2 - proto: MysteryFigureBoxTrash entities: - - uid: 14731 + - uid: 11584 components: - type: Transform pos: -6.5606046,-189.40254 parent: 2 - - uid: 14732 + - uid: 11585 components: - type: Transform pos: -6.3614616,-189.46121 parent: 2 - proto: NitrogenCanister entities: - - uid: 3602 + - uid: 11586 components: - type: Transform pos: -7.5,-175.5 parent: 2 - - uid: 9822 + - uid: 11587 components: - type: Transform pos: -4.5,-311.5 parent: 2 - - uid: 11937 + - uid: 11588 components: - type: Transform pos: -13.5,-250.5 parent: 2 - - uid: 12143 + - uid: 11589 components: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 16957 + - uid: 11590 components: - type: Transform pos: -21.5,-257.5 parent: 2 - proto: NitrousOxideCanister entities: - - uid: 11220 + - uid: 11591 components: - type: Transform pos: 5.5,-355.5 parent: 2 - proto: NoticeBoard entities: - - uid: 2785 + - uid: 11592 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-142.5 parent: 2 - - uid: 12137 + - uid: 11593 components: - type: Transform rot: 3.141592653589793 rad @@ -77026,7 +76478,7 @@ entities: parent: 2 - proto: NuclearBomb entities: - - uid: 82 + - uid: 11594 components: - type: Transform rot: 3.141592653589793 rad @@ -77034,193 +76486,193 @@ entities: parent: 2 - proto: NuclearBombKeg entities: - - uid: 1634 + - uid: 11595 components: - type: Transform pos: 5.5,-66.5 parent: 2 - proto: OperatingTable entities: - - uid: 3778 + - uid: 11596 components: - type: Transform pos: 1.5,-198.5 parent: 2 - - uid: 6913 + - uid: 11597 components: - type: Transform pos: -11.5,-165.5 parent: 2 - - uid: 6960 + - uid: 11598 components: - type: Transform pos: -11.5,-166.5 parent: 2 - - uid: 6964 + - uid: 11599 components: - type: Transform pos: -11.5,-164.5 parent: 2 - proto: OreBag entities: - - uid: 8956 + - uid: 11600 components: - type: Transform pos: -4.660206,-273.15723 parent: 2 - - uid: 8957 + - uid: 11601 components: - type: Transform pos: -4.3602595,-273.51703 parent: 2 - proto: OreProcessor entities: - - uid: 8856 + - uid: 11602 components: - type: Transform pos: -1.5,-270.5 parent: 2 - proto: OxygenCanister entities: - - uid: 7196 + - uid: 11603 components: - type: Transform pos: -21.5,-242.5 parent: 2 - - uid: 8891 + - uid: 11604 components: - type: Transform pos: -6.5,-268.5 parent: 2 - - uid: 9992 + - uid: 11605 components: - type: Transform pos: -5.5,-312.5 parent: 2 - - uid: 11914 + - uid: 11606 components: - type: Transform pos: -21.5,-255.5 parent: 2 - - uid: 12140 + - uid: 11607 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 14640 + - uid: 11608 components: - type: Transform pos: -6.5,-258.5 parent: 2 - proto: PaintingAmogusTriptych entities: - - uid: 14569 + - uid: 11609 components: - type: Transform pos: 13.5,-308.5 parent: 2 - proto: PaintingSkeletonCigarette entities: - - uid: 14384 + - uid: 11610 components: - type: Transform pos: 13.5,-59.5 parent: 2 - proto: Paper entities: - - uid: 1458 + - uid: 11611 components: - type: Transform pos: -5.538568,-72.16771 parent: 2 - - uid: 4686 + - uid: 11612 components: - type: Transform pos: -5.6735435,-72.06651 parent: 2 - - uid: 6645 + - uid: 11613 components: - type: Transform pos: 1.2017322,-250.54102 parent: 2 - - uid: 6646 + - uid: 11614 components: - type: Transform pos: 1.1885252,-250.9767 parent: 2 - - uid: 11069 + - uid: 11615 components: - type: Transform pos: 5.1001754,-328.37433 parent: 2 - - uid: 11070 + - uid: 11616 components: - type: Transform pos: 5.271862,-328.51956 parent: 2 - proto: PaperBin10 entities: - - uid: 318 + - uid: 11617 components: - type: Transform pos: -1.5,-9.5 parent: 2 - proto: PaperBin20 entities: - - uid: 216 + - uid: 11618 components: - type: Transform pos: 6.5,-6.5 parent: 2 - - uid: 2748 + - uid: 11619 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-121.5 parent: 2 - - uid: 10164 + - uid: 11620 components: - type: Transform pos: -1.5,-303.5 parent: 2 - - uid: 11067 + - uid: 11621 components: - type: Transform pos: 6.5,-332.5 parent: 2 - proto: PaperBin5 entities: - - uid: 2746 + - uid: 11622 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-139.5 parent: 2 - - uid: 14786 + - uid: 11623 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: PaperOffice entities: - - uid: 8542 + - uid: 11624 components: - type: Transform pos: 4.3584957,-272.45734 parent: 2 - - uid: 9082 + - uid: 11625 components: - type: Transform pos: 4.538463,-272.60727 parent: 2 - proto: PaperScrap entities: - - uid: 2636 + - uid: 11626 components: - type: Transform pos: -6.3057356,-152.6655 parent: 2 - - uid: 2751 + - uid: 11627 components: - type: Transform rot: 3.141592653589793 rad @@ -77228,7 +76680,7 @@ entities: parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 8939 + - uid: 11628 components: - type: Transform rot: 1.5707963267948966 rad @@ -77236,7 +76688,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 7727 + - uid: 11629 components: - type: Transform rot: 1.5707963267948966 rad @@ -77244,7 +76696,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 7581 + - uid: 11630 components: - type: Transform rot: 1.5707963267948966 rad @@ -77252,7 +76704,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 8523 + - uid: 11631 components: - type: Transform rot: 1.5707963267948966 rad @@ -77260,7 +76712,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 8100 + - uid: 11632 components: - type: Transform rot: 1.5707963267948966 rad @@ -77268,7 +76720,7 @@ entities: parent: 2 - proto: ParticleAcceleratorFuelChamber entities: - - uid: 7461 + - uid: 11633 components: - type: Transform rot: 1.5707963267948966 rad @@ -77276,7 +76728,7 @@ entities: parent: 2 - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 8488 + - uid: 11634 components: - type: Transform rot: 1.5707963267948966 rad @@ -77284,41 +76736,41 @@ entities: parent: 2 - proto: Pen entities: - - uid: 217 + - uid: 11635 components: - type: Transform pos: 6.0078807,-6.5636206 parent: 2 - - uid: 218 + - uid: 11636 components: - type: Transform pos: 6.1091127,-6.4286876 parent: 2 - - uid: 2740 + - uid: 11637 components: - type: Transform pos: -5.6306825,-140.2427 parent: 2 - - uid: 2760 + - uid: 11638 components: - type: Transform pos: -5.401766,-139.93465 parent: 2 - - uid: 9084 + - uid: 11639 components: - type: Transform pos: 4.3734927,-272.86963 parent: 2 - proto: PhoneInstrument entities: - - uid: 207 + - uid: 11640 components: - type: Transform pos: 6.5365367,-7.3394823 parent: 2 - proto: PianoInstrument entities: - - uid: 7212 + - uid: 11641 components: - type: Transform rot: -1.5707963267948966 rad @@ -77326,68 +76778,68 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 8860 + - uid: 11642 components: - type: Transform pos: -7.5629373,-271.36987 parent: 2 - - uid: 8864 + - uid: 11643 components: - type: Transform pos: -4.5245614,-272.94254 parent: 2 - - uid: 14358 + - uid: 11644 components: - type: Transform pos: 13.454053,-140.39398 parent: 2 - proto: PillCanisterIron entities: - - uid: 3696 + - uid: 11645 components: - type: Transform pos: 3.6948316,-173.37283 parent: 2 - proto: PinpointerNuclear entities: - - uid: 76 + - uid: 11351 components: - type: Transform - parent: 83 + parent: 11350 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlasmaCanister entities: - - uid: 1617 + - uid: 11646 components: - type: Transform pos: -21.5,-243.5 parent: 2 - - uid: 9821 + - uid: 11647 components: - type: Transform pos: -5.5,-311.5 parent: 2 - - uid: 11915 + - uid: 11648 components: - type: Transform pos: -21.5,-251.5 parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 2470 + - uid: 11649 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-340.5 parent: 2 - - uid: 2472 + - uid: 11650 components: - type: Transform pos: 6.5,-341.5 parent: 2 - - uid: 6889 + - uid: 11651 components: - type: Transform rot: 1.5707963267948966 rad @@ -77395,53 +76847,53 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 8763 + - uid: 11652 components: - type: Transform pos: 2.5,-273.5 parent: 2 - - uid: 11957 + - uid: 11653 components: - type: Transform pos: 9.5,-277.5 parent: 2 - - uid: 11958 + - uid: 11654 components: - type: Transform pos: 11.5,-281.5 parent: 2 - - uid: 11959 + - uid: 11655 components: - type: Transform pos: 9.5,-281.5 parent: 2 - - uid: 11970 + - uid: 11656 components: - type: Transform pos: 11.5,-277.5 parent: 2 - proto: PlasticFlapsAirtightOpaque entities: - - uid: 4416 + - uid: 11657 components: - type: Transform pos: 4.5,-217.5 parent: 2 - proto: PlushieArachind entities: - - uid: 13435 + - uid: 11658 components: - type: Transform pos: -0.6106252,-27.432035 parent: 2 - proto: PlushieCarp entities: - - uid: 3706 + - uid: 11659 components: - type: Transform pos: 6.685664,-122.428696 parent: 2 - - uid: 3708 + - uid: 11660 components: - type: Transform rot: 3.141592653589793 rad @@ -77449,45 +76901,45 @@ entities: parent: 2 - proto: PlushieDiona entities: - - uid: 2253 + - uid: 11661 components: - type: Transform pos: 1.9108882,-40.77967 parent: 2 - proto: PlushieHuman entities: - - uid: 4139 + - uid: 11662 components: - type: Transform pos: -2.1023247,-3.5538187 parent: 2 - proto: PlushieLizard entities: - - uid: 14372 + - uid: 11663 components: - type: Transform pos: 16.56339,-60.471424 parent: 2 - proto: PlushieLizardMirrored entities: - - uid: 1461 + - uid: 11664 components: - type: Transform pos: 3.2787921,-72.53624 parent: 2 - - uid: 4140 + - uid: 11665 components: - type: Transform pos: -3.6779807,-3.613141 parent: 2 - - uid: 14334 + - uid: 11666 components: - type: Transform pos: 14.486045,-60.418846 parent: 2 - proto: PlushieRGBee entities: - - uid: 9987 + - uid: 11667 components: - type: Transform rot: 3.141592653589793 rad @@ -77495,7 +76947,7 @@ entities: parent: 2 - proto: PlushieRouny entities: - - uid: 3887 + - uid: 11668 components: - type: Transform rot: 1.5707963267948966 rad @@ -77503,64 +76955,64 @@ entities: parent: 2 - proto: PlushieSharkBlue entities: - - uid: 14775 + - uid: 11564 components: - type: Transform - parent: 14774 + parent: 11563 - type: Physics canCollide: False - proto: PlushieSpaceLizard entities: - - uid: 5362 + - uid: 11669 components: - type: Transform pos: -22.266762,-264.84647 parent: 2 - proto: PortableFlasher entities: - - uid: 14602 + - uid: 11670 components: - type: Transform pos: 9.5,-340.5 parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 351 + - uid: 11671 components: - type: Transform pos: 6.5,-372.5 parent: 2 - - uid: 372 + - uid: 11672 components: - type: Transform pos: 7.5,-1.5 parent: 2 - - uid: 1050 + - uid: 11673 components: - type: Transform pos: -5.5,-35.5 parent: 2 - - uid: 2332 + - uid: 11674 components: - type: Transform pos: -2.5,-80.5 parent: 2 - - uid: 10720 + - uid: 11675 components: - type: Transform pos: -7.5,-174.5 parent: 2 - - uid: 10735 + - uid: 11676 components: - type: Transform pos: -6.5,-197.5 parent: 2 - - uid: 10848 + - uid: 11677 components: - type: Transform pos: 4.5,-67.5 parent: 2 - - uid: 14617 + - uid: 11678 components: - type: Transform anchored: True @@ -77568,100 +77020,100 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14806 + - uid: 11679 components: - type: Transform pos: 16.5,-154.5 parent: 2 - - uid: 15585 + - uid: 11680 components: - type: Transform pos: 5.5,-222.5 parent: 2 - - uid: 15787 + - uid: 11681 components: - type: Transform pos: 16.5,-142.5 parent: 2 - - uid: 15790 + - uid: 11682 components: - type: Transform pos: 5.5,-259.5 parent: 2 - - uid: 15791 + - uid: 11683 components: - type: Transform pos: -5.5,-296.5 parent: 2 - - uid: 15792 + - uid: 11684 components: - type: Transform pos: -0.5,-268.5 parent: 2 - - uid: 15793 + - uid: 11685 components: - type: Transform pos: 1.5,-348.5 parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 3745 + - uid: 11686 components: - type: Transform pos: 4.5,-346.5 parent: 2 - - uid: 3787 + - uid: 11687 components: - type: Transform pos: 18.5,-241.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 2379 + - uid: 11688 components: - type: Transform pos: 18.5,-242.5 parent: 2 - proto: PortableScrubber entities: - - uid: 3 + - uid: 11689 components: - type: Transform pos: -20.5,-263.5 parent: 2 - - uid: 2337 + - uid: 11690 components: - type: Transform pos: -11.5,-254.5 parent: 2 - - uid: 2387 + - uid: 11691 components: - type: Transform pos: -11.5,-253.5 parent: 2 - - uid: 4904 + - uid: 11692 components: - type: Transform pos: 19.5,-246.5 parent: 2 - - uid: 7436 + - uid: 11693 components: - type: Transform pos: 2.5,-112.5 parent: 2 - - uid: 12101 + - uid: 11694 components: - type: Transform pos: -19.5,-263.5 parent: 2 - - uid: 12631 + - uid: 11695 components: - type: Transform pos: 10.5,-310.5 parent: 2 - proto: PortalGatewayBlue entities: - - uid: 6620 + - uid: 11696 components: - type: Transform pos: -3.5,-254.5 @@ -77669,8 +77121,8 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 6619 - - uid: 15817 + - 11698 + - uid: 11697 components: - type: Transform pos: 4.5,-15.5 @@ -77678,10 +77130,10 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 15816 + - 11699 - proto: PortalGatewayOrange entities: - - uid: 6619 + - uid: 11698 components: - type: Transform pos: -0.5,-113.5 @@ -77689,8 +77141,8 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 6620 - - uid: 15816 + - 11696 + - uid: 11699 components: - type: Transform pos: -4.5,-330.5 @@ -77698,10 +77150,10 @@ entities: - type: LinkedEntity deleteOnEmptyLinks: True linkedEntities: - - 15817 + - 11697 - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 378 + - uid: 11700 components: - type: MetaData name: Beach Star Bratton! @@ -77711,18 +77163,18 @@ entities: parent: 2 - proto: PosterContrabandClown entities: - - uid: 875 + - uid: 11701 components: - type: Transform pos: 7.5,-14.5 parent: 2 - - uid: 1996 + - uid: 11702 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-124.5 parent: 2 - - uid: 14882 + - uid: 11703 components: - type: Transform rot: -1.5707963267948966 rad @@ -77730,41 +77182,41 @@ entities: parent: 2 - proto: PosterContrabandHighEffectEngineering entities: - - uid: 1210 + - uid: 11704 components: - type: Transform pos: 20.5,-249.5 parent: 2 - proto: PosterContrabandMissingGloves entities: - - uid: 7980 + - uid: 11705 components: - type: Transform pos: 20.5,-240.5 parent: 2 - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 3752 + - uid: 11706 components: - type: Transform pos: -3.5,-0.5 parent: 2 - proto: PosterContrabandSmoke entities: - - uid: 6624 + - uid: 11707 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-263.5 parent: 2 - - uid: 12669 + - uid: 11708 components: - type: Transform pos: 1.5,-267.5 parent: 2 - proto: PosterLegitIan entities: - - uid: 3709 + - uid: 11709 components: - type: Transform rot: 3.141592653589793 rad @@ -77772,7 +77224,7 @@ entities: parent: 2 - proto: PosterLegitLoveIan entities: - - uid: 3710 + - uid: 11710 components: - type: Transform rot: 3.141592653589793 rad @@ -77780,21 +77232,21 @@ entities: parent: 2 - proto: PosterLegitMime entities: - - uid: 2018 + - uid: 11711 components: - type: Transform pos: -5.5,-121.5 parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 3895 + - uid: 11712 components: - type: Transform pos: -1.5,-0.5 parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 2393 + - uid: 11713 components: - type: Transform rot: -1.5707963267948966 rad @@ -77802,425 +77254,425 @@ entities: parent: 2 - proto: PosterLegitSafetyMothHardhat entities: - - uid: 4223 + - uid: 11714 components: - type: Transform pos: -7.5,-111.5 parent: 2 - proto: PottedPlant16 entities: - - uid: 3909 + - uid: 11715 components: - type: Transform pos: -3.5,-198.5 parent: 2 - proto: PottedPlant7 entities: - - uid: 12408 + - uid: 11716 components: - type: Transform pos: 5.5,-316.5 parent: 2 - - uid: 12440 + - uid: 11717 components: - type: Transform pos: -3.5,-299.5 parent: 2 - proto: PottedPlantBioluminscent entities: - - uid: 65 + - uid: 11718 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 133 + - uid: 11719 components: - type: Transform pos: 2.5,-1.5 parent: 2 - proto: PottedPlantRandom entities: - - uid: 223 + - uid: 11720 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 313 + - uid: 11721 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 775 + - uid: 11722 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 2438 + - uid: 11723 components: - type: Transform pos: 6.5,-98.5 parent: 2 - - uid: 2439 + - uid: 11724 components: - type: Transform pos: -0.5,-98.5 parent: 2 - - uid: 2442 + - uid: 11725 components: - type: Transform pos: 4.5,-119.5 parent: 2 - - uid: 2509 + - uid: 11726 components: - type: Transform pos: -0.5,-135.5 parent: 2 - - uid: 2532 + - uid: 11727 components: - type: Transform pos: 6.5,-148.5 parent: 2 - - uid: 3129 + - uid: 11728 components: - type: Transform pos: -2.5,-247.5 parent: 2 - - uid: 7789 + - uid: 11729 components: - type: Transform pos: 7.5,-194.5 parent: 2 - - uid: 12701 + - uid: 11730 components: - type: Transform pos: 7.5,-306.5 parent: 2 - - uid: 12702 + - uid: 11731 components: - type: Transform pos: 1.5,-303.5 parent: 2 - - uid: 14745 + - uid: 11732 components: - type: Transform pos: -7.5,-309.5 parent: 2 - - uid: 14771 + - uid: 11733 components: - type: Transform pos: -1.5,-39.5 parent: 2 - - uid: 15032 + - uid: 11734 components: - type: Transform pos: -10.5,-132.5 parent: 2 - - uid: 15033 + - uid: 11735 components: - type: Transform pos: -7.5,-136.5 parent: 2 - - uid: 15035 + - uid: 11736 components: - type: Transform pos: 1.5,-110.5 parent: 2 - - uid: 15089 + - uid: 11737 components: - type: Transform pos: 10.5,-201.5 parent: 2 - proto: PottedPlantRandomPlastic entities: - - uid: 9046 + - uid: 11738 components: - type: Transform pos: 3.5,-269.5 parent: 2 - proto: PottedPlantRD entities: - - uid: 4045 + - uid: 11739 components: - type: Transform pos: -5.5,-305.5 parent: 2 - proto: PowerCellHigh entities: - - uid: 8833 + - uid: 11740 components: - type: Transform pos: 7.3432894,-115.48833 parent: 2 - - uid: 15160 + - uid: 11741 components: - type: Transform pos: 7.332042,-115.285934 parent: 2 - proto: PowerCellMedium entities: - - uid: 5120 + - uid: 11742 components: - type: Transform pos: 7.725722,-115.285934 parent: 2 - - uid: 15164 + - uid: 11743 components: - type: Transform pos: 7.7144737,-115.522064 parent: 2 - proto: PowerCellRecharger entities: - - uid: 1074 + - uid: 11744 components: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 9058 + - uid: 11745 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9065 + - uid: 11746 components: - type: Transform pos: 8.5,-177.5 parent: 2 - - uid: 9066 + - uid: 11747 components: - type: Transform pos: -2.5,-136.5 parent: 2 - - uid: 9067 + - uid: 11748 components: - type: Transform pos: 6.5,-122.5 parent: 2 - - uid: 10129 + - uid: 11749 components: - type: Transform pos: -1.5,-301.5 parent: 2 - - uid: 15267 + - uid: 11750 components: - type: Transform pos: 4.5,-245.5 parent: 2 - proto: Poweredlight entities: - - uid: 1244 + - uid: 11751 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-251.5 parent: 2 - - uid: 1454 + - uid: 11752 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-257.5 parent: 2 - - uid: 1805 + - uid: 11753 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-165.5 parent: 2 - - uid: 2041 + - uid: 11754 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-168.5 parent: 2 - - uid: 2467 + - uid: 11755 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-237.5 parent: 2 - - uid: 3174 + - uid: 11756 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-169.5 parent: 2 - - uid: 3204 + - uid: 11757 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-172.5 parent: 2 - - uid: 3205 + - uid: 11758 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-177.5 parent: 2 - - uid: 3209 + - uid: 11759 components: - type: Transform pos: 1.5,-162.5 parent: 2 - - uid: 3211 + - uid: 11760 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-179.5 parent: 2 - - uid: 3212 + - uid: 11761 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-179.5 parent: 2 - - uid: 3249 + - uid: 11762 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-179.5 parent: 2 - - uid: 3679 + - uid: 11763 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-172.5 parent: 2 - - uid: 3776 + - uid: 11764 components: - type: Transform pos: -18.5,-236.5 parent: 2 - - uid: 3777 + - uid: 11765 components: - type: Transform pos: -21.5,-240.5 parent: 2 - - uid: 3779 + - uid: 11766 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-194.5 parent: 2 - - uid: 3780 + - uid: 11767 components: - type: Transform pos: -0.5,-192.5 parent: 2 - - uid: 3781 + - uid: 11768 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-190.5 parent: 2 - - uid: 3785 + - uid: 11769 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-196.5 parent: 2 - - uid: 3786 + - uid: 11770 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-196.5 parent: 2 - - uid: 3828 + - uid: 11771 components: - type: Transform pos: 4.5,-205.5 parent: 2 - - uid: 3953 + - uid: 11772 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-206.5 parent: 2 - - uid: 4233 + - uid: 11773 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 4680 + - uid: 11774 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-191.5 parent: 2 - - uid: 4773 + - uid: 11775 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 4868 + - uid: 11776 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-89.5 parent: 2 - - uid: 4979 + - uid: 11777 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-86.5 parent: 2 - - uid: 5036 + - uid: 11778 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 6781 + - uid: 11779 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-203.5 parent: 2 - - uid: 7323 + - uid: 11780 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-247.5 parent: 2 - - uid: 7719 + - uid: 11781 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-201.5 parent: 2 - - uid: 7720 + - uid: 11782 components: - type: Transform pos: 7.5,-194.5 parent: 2 - - uid: 7904 + - uid: 11783 components: - type: Transform pos: -6.5,-189.5 parent: 2 - - uid: 13288 + - uid: 11784 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-261.5 parent: 2 - - uid: 16960 + - uid: 11785 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-252.5 parent: 2 - - uid: 16964 + - uid: 11786 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-265.5 parent: 2 - - uid: 16966 + - uid: 11787 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-241.5 parent: 2 - - uid: 16967 + - uid: 11788 components: - type: Transform rot: -1.5707963267948966 rad @@ -78228,7 +77680,7 @@ entities: parent: 2 - proto: PoweredlightBlue entities: - - uid: 5653 + - uid: 11789 components: - type: Transform rot: 1.5707963267948966 rad @@ -78236,22 +77688,22 @@ entities: parent: 2 - proto: PoweredlightCyan entities: - - uid: 6962 + - uid: 11790 components: - type: Transform pos: -3.5,-253.5 parent: 2 - - uid: 9692 + - uid: 11791 components: - type: Transform pos: 29.5,-306.5 parent: 2 - - uid: 10799 + - uid: 11792 components: - type: Transform pos: 4.5,-14.5 parent: 2 - - uid: 14344 + - uid: 11793 components: - type: Transform rot: 1.5707963267948966 rad @@ -78259,13 +77711,13 @@ entities: parent: 2 - proto: PoweredlightExterior entities: - - uid: 401 + - uid: 11794 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,4.5 parent: 2 - - uid: 421 + - uid: 11795 components: - type: Transform rot: 3.141592653589793 rad @@ -78273,13 +77725,13 @@ entities: parent: 2 - proto: PoweredlightGreen entities: - - uid: 4220 + - uid: 11796 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-110.5 parent: 2 - - uid: 9694 + - uid: 11797 components: - type: Transform rot: 3.141592653589793 rad @@ -78287,465 +77739,465 @@ entities: parent: 2 - proto: PoweredlightLED entities: - - uid: 202 + - uid: 11798 components: - type: Transform pos: 2.5,-249.5 parent: 2 - - uid: 757 + - uid: 11799 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-122.5 parent: 2 - - uid: 1389 + - uid: 11800 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-93.5 parent: 2 - - uid: 1394 + - uid: 11801 components: - type: Transform pos: -2.5,-90.5 parent: 2 - - uid: 1399 + - uid: 11802 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-91.5 parent: 2 - - uid: 1552 + - uid: 11803 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-85.5 parent: 2 - - uid: 1572 + - uid: 11804 components: - type: Transform pos: 2.5,-119.5 parent: 2 - - uid: 1574 + - uid: 11805 components: - type: Transform pos: -1.5,-119.5 parent: 2 - - uid: 1768 + - uid: 11806 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-113.5 parent: 2 - - uid: 2042 + - uid: 11807 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-5.5 parent: 2 - - uid: 2057 + - uid: 11808 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-176.5 parent: 2 - - uid: 2064 + - uid: 11809 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-11.5 parent: 2 - - uid: 2575 + - uid: 11810 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-252.5 parent: 2 - - uid: 3800 + - uid: 11811 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-261.5 parent: 2 - - uid: 4048 + - uid: 11812 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-299.5 parent: 2 - - uid: 4211 + - uid: 11813 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-249.5 parent: 2 - - uid: 4351 + - uid: 11814 components: - type: Transform pos: -7.5,-107.5 parent: 2 - - uid: 4415 + - uid: 11815 components: - type: Transform pos: 12.5,-256.5 parent: 2 - - uid: 5144 + - uid: 11816 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-256.5 parent: 2 - - uid: 5479 + - uid: 11817 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-249.5 parent: 2 - - uid: 5489 + - uid: 11818 components: - type: Transform pos: 8.5,-171.5 parent: 2 - - uid: 5503 + - uid: 11819 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-248.5 parent: 2 - - uid: 5504 + - uid: 11820 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-255.5 parent: 2 - - uid: 5654 + - uid: 11821 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-240.5 parent: 2 - - uid: 5661 + - uid: 11822 components: - type: Transform pos: -2.5,-165.5 parent: 2 - - uid: 5699 + - uid: 11823 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-142.5 parent: 2 - - uid: 5700 + - uid: 11824 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-142.5 parent: 2 - - uid: 5961 + - uid: 11825 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-117.5 parent: 2 - - uid: 6015 + - uid: 11826 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 - - uid: 6019 + - uid: 11827 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-9.5 parent: 2 - - uid: 6038 + - uid: 11828 components: - type: Transform pos: 4.5,2.5 parent: 2 - - uid: 6062 + - uid: 11829 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 2 - - uid: 6068 + - uid: 11830 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 - - uid: 7497 + - uid: 11831 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-240.5 parent: 2 - - uid: 7777 + - uid: 11832 components: - type: Transform pos: -7.5,-307.5 parent: 2 - - uid: 7858 + - uid: 11833 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-255.5 parent: 2 - - uid: 8193 + - uid: 11834 components: - type: Transform pos: 17.5,-245.5 parent: 2 - - uid: 8277 + - uid: 11835 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-255.5 parent: 2 - - uid: 8350 + - uid: 11836 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-249.5 parent: 2 - - uid: 8482 + - uid: 11837 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-309.5 parent: 2 - - uid: 8663 + - uid: 11838 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-253.5 parent: 2 - - uid: 9444 + - uid: 11839 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-311.5 parent: 2 - - uid: 9534 + - uid: 11840 components: - type: Transform pos: 20.5,-315.5 parent: 2 - - uid: 9535 + - uid: 11841 components: - type: Transform pos: 24.5,-315.5 parent: 2 - - uid: 9537 + - uid: 11842 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-317.5 parent: 2 - - uid: 9538 + - uid: 11843 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-317.5 parent: 2 - - uid: 9544 + - uid: 11844 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-311.5 parent: 2 - - uid: 9545 + - uid: 11845 components: - type: Transform pos: 23.5,-303.5 parent: 2 - - uid: 9546 + - uid: 11846 components: - type: Transform pos: 21.5,-303.5 parent: 2 - - uid: 9696 + - uid: 11847 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-306.5 parent: 2 - - uid: 9697 + - uid: 11848 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-308.5 parent: 2 - - uid: 9708 + - uid: 11849 components: - type: Transform pos: 24.5,-297.5 parent: 2 - - uid: 9709 + - uid: 11850 components: - type: Transform pos: 20.5,-297.5 parent: 2 - - uid: 9713 + - uid: 11851 components: - type: Transform pos: 1.5,-297.5 parent: 2 - - uid: 9714 + - uid: 11852 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-300.5 parent: 2 - - uid: 9734 + - uid: 11853 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-300.5 parent: 2 - - uid: 9988 + - uid: 11854 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-311.5 parent: 2 - - uid: 9989 + - uid: 11855 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-315.5 parent: 2 - - uid: 9990 + - uid: 11856 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-311.5 parent: 2 - - uid: 9991 + - uid: 11857 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-315.5 parent: 2 - - uid: 9994 + - uid: 11858 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-311.5 parent: 2 - - uid: 9995 + - uid: 11859 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-303.5 parent: 2 - - uid: 10030 + - uid: 11860 components: - type: Transform pos: 4.5,-306.5 parent: 2 - - uid: 10047 + - uid: 11861 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-308.5 parent: 2 - - uid: 10055 + - uid: 11862 components: - type: Transform pos: 11.5,-306.5 parent: 2 - - uid: 10056 + - uid: 11863 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-308.5 parent: 2 - - uid: 10081 + - uid: 11864 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-120.5 parent: 2 - - uid: 10094 + - uid: 11865 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-303.5 parent: 2 - - uid: 10095 + - uid: 11866 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-303.5 parent: 2 - - uid: 10109 + - uid: 11867 components: - type: Transform pos: -2.5,-299.5 parent: 2 - - uid: 10110 + - uid: 11868 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-305.5 parent: 2 - - uid: 10111 + - uid: 11869 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-305.5 parent: 2 - - uid: 10137 + - uid: 11870 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-319.5 parent: 2 - - uid: 10142 + - uid: 11871 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-318.5 parent: 2 - - uid: 10144 + - uid: 11872 components: - type: Transform pos: -6.5,-317.5 parent: 2 - - uid: 10146 + - uid: 11873 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-311.5 parent: 2 - - uid: 10147 + - uid: 11874 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-311.5 parent: 2 - - uid: 10766 + - uid: 11875 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 - - uid: 11080 + - uid: 11876 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-332.5 parent: 2 - - uid: 11349 + - uid: 11877 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-346.5 parent: 2 - - uid: 12226 + - uid: 11878 components: - type: Transform rot: -1.5707963267948966 rad @@ -78753,120 +78205,120 @@ entities: parent: 2 - proto: PoweredlightOrange entities: - - uid: 1764 + - uid: 11879 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-64.5 parent: 2 - - uid: 1803 + - uid: 11880 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 - - uid: 2290 + - uid: 11881 components: - type: Transform pos: 0.5,-61.5 parent: 2 - - uid: 2327 + - uid: 11882 components: - type: Transform pos: 6.5,-110.5 parent: 2 - - uid: 2421 + - uid: 11883 components: - type: Transform pos: -5.5,-138.5 parent: 2 - - uid: 4042 + - uid: 11884 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-252.5 parent: 2 - - uid: 4751 + - uid: 11885 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-263.5 parent: 2 - - uid: 5024 + - uid: 11886 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-45.5 parent: 2 - - uid: 5363 + - uid: 11887 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-263.5 parent: 2 - - uid: 5676 + - uid: 11888 components: - type: Transform pos: 3.5,-141.5 parent: 2 - - uid: 5781 + - uid: 11889 components: - type: Transform pos: 4.5,-137.5 parent: 2 - - uid: 5805 + - uid: 11890 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-152.5 parent: 2 - - uid: 6390 + - uid: 11891 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-220.5 parent: 2 - - uid: 6392 + - uid: 11892 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-220.5 parent: 2 - - uid: 6394 + - uid: 11893 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-229.5 parent: 2 - - uid: 6397 + - uid: 11894 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-229.5 parent: 2 - - uid: 6961 + - uid: 11895 components: - type: Transform pos: -0.5,-112.5 parent: 2 - - uid: 10136 + - uid: 11896 components: - type: Transform pos: -7.5,-297.5 parent: 2 - - uid: 10162 + - uid: 11897 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-285.5 parent: 2 - - uid: 10914 + - uid: 11898 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-331.5 parent: 2 - - uid: 11089 + - uid: 11899 components: - type: Transform rot: 1.5707963267948966 rad @@ -78874,37 +78326,37 @@ entities: parent: 2 - proto: PoweredlightPink entities: - - uid: 1687 + - uid: 11900 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-54.5 parent: 2 - - uid: 2292 + - uid: 11901 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-125.5 parent: 2 - - uid: 10089 + - uid: 11902 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-315.5 parent: 2 - - uid: 10145 + - uid: 11903 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-313.5 parent: 2 - - uid: 10530 + - uid: 11904 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-304.5 parent: 2 - - uid: 14893 + - uid: 11905 components: - type: Transform rot: 1.5707963267948966 rad @@ -78912,301 +78364,301 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 2067 + - uid: 11906 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 2793 + - uid: 11907 components: - type: Transform pos: 12.5,-244.5 parent: 2 - - uid: 4224 + - uid: 11908 components: - type: Transform pos: 12.5,-259.5 parent: 2 - - uid: 4515 + - uid: 11909 components: - type: Transform pos: -8.5,-221.5 parent: 2 - - uid: 4516 + - uid: 11910 components: - type: Transform pos: -8.5,-228.5 parent: 2 - - uid: 4517 + - uid: 11911 components: - type: Transform pos: 9.5,-221.5 parent: 2 - - uid: 4518 + - uid: 11912 components: - type: Transform pos: 9.5,-228.5 parent: 2 - - uid: 9712 + - uid: 11913 components: - type: Transform pos: 29.5,-303.5 parent: 2 - - uid: 9716 + - uid: 11914 components: - type: Transform pos: 16.5,-309.5 parent: 2 - - uid: 9717 + - uid: 11915 components: - type: Transform pos: 16.5,-305.5 parent: 2 - - uid: 9719 + - uid: 11916 components: - type: Transform pos: 17.5,-314.5 parent: 2 - - uid: 9721 + - uid: 11917 components: - type: Transform pos: 17.5,-300.5 parent: 2 - - uid: 9733 + - uid: 11918 components: - type: Transform pos: 29.5,-311.5 parent: 2 - - uid: 14904 + - uid: 11919 components: - type: Transform pos: -10.5,-131.5 parent: 2 - - uid: 14905 + - uid: 11920 components: - type: Transform pos: -10.5,-136.5 parent: 2 - - uid: 14912 + - uid: 11921 components: - type: Transform pos: -6.5,-133.5 parent: 2 - - uid: 14948 + - uid: 11922 components: - type: Transform pos: -9.5,-143.5 parent: 2 - - uid: 14949 + - uid: 11923 components: - type: Transform pos: -9.5,-148.5 parent: 2 - - uid: 14992 + - uid: 11924 components: - type: Transform pos: -9.5,-155.5 parent: 2 - - uid: 15082 + - uid: 11925 components: - type: Transform pos: 8.5,-203.5 parent: 2 - - uid: 15083 + - uid: 11926 components: - type: Transform pos: 8.5,-192.5 parent: 2 - - uid: 15084 + - uid: 11927 components: - type: Transform pos: 12.5,-194.5 parent: 2 - - uid: 15085 + - uid: 11928 components: - type: Transform pos: 12.5,-201.5 parent: 2 - - uid: 16968 + - uid: 11929 components: - type: Transform pos: -10.5,-249.5 parent: 2 - - uid: 16969 + - uid: 11930 components: - type: Transform pos: -10.5,-261.5 parent: 2 - - uid: 16970 + - uid: 11931 components: - type: Transform pos: -10.5,-242.5 parent: 2 - proto: PoweredlightRed entities: - - uid: 1766 + - uid: 11932 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-78.5 parent: 2 - - uid: 2325 + - uid: 11933 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-78.5 parent: 2 - - uid: 2352 + - uid: 11934 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-132.5 parent: 2 - - uid: 2420 + - uid: 11935 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-132.5 parent: 2 - - uid: 5428 + - uid: 11936 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-51.5 parent: 2 - - uid: 5429 + - uid: 11937 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-51.5 parent: 2 - - uid: 5749 + - uid: 11938 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-159.5 parent: 2 - - uid: 5750 + - uid: 11939 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-159.5 parent: 2 - - uid: 5761 + - uid: 11940 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-105.5 parent: 2 - - uid: 5768 + - uid: 11941 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-105.5 parent: 2 - - uid: 5991 + - uid: 11942 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-24.5 parent: 2 - - uid: 6003 + - uid: 11943 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 - - uid: 6346 + - uid: 11944 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-240.5 parent: 2 - - uid: 6348 + - uid: 11945 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-240.5 parent: 2 - - uid: 6359 + - uid: 11946 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-214.5 parent: 2 - - uid: 6361 + - uid: 11947 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-214.5 parent: 2 - - uid: 7060 + - uid: 11948 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-186.5 parent: 2 - - uid: 7061 + - uid: 11949 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-186.5 parent: 2 - - uid: 8880 + - uid: 11950 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-267.5 parent: 2 - - uid: 8881 + - uid: 11951 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-267.5 parent: 2 - - uid: 9707 + - uid: 11952 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-294.5 parent: 2 - - uid: 9718 + - uid: 11953 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-294.5 parent: 2 - - uid: 11065 + - uid: 11954 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-326.5 parent: 2 - - uid: 11066 + - uid: 11955 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-326.5 parent: 2 - - uid: 11090 + - uid: 11956 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-353.5 parent: 2 - - uid: 11091 + - uid: 11957 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-353.5 parent: 2 - - uid: 12947 + - uid: 11958 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-380.5 parent: 2 - - uid: 12948 + - uid: 11959 components: - type: Transform rot: 3.141592653589793 rad @@ -79214,7 +78666,7 @@ entities: parent: 2 - proto: PoweredlightSodium entities: - - uid: 8525 + - uid: 11960 components: - type: Transform rot: 1.5707963267948966 rad @@ -79222,1247 +78674,1247 @@ entities: parent: 2 - proto: PoweredSmallLight entities: - - uid: 62 + - uid: 11961 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 92 + - uid: 11962 components: - type: Transform pos: 8.5,-340.5 parent: 2 - - uid: 141 + - uid: 11963 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 210 + - uid: 11964 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-13.5 parent: 2 - - uid: 356 + - uid: 11965 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-114.5 parent: 2 - - uid: 419 + - uid: 11966 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 2 - - uid: 641 + - uid: 11967 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-251.5 parent: 2 - - uid: 730 + - uid: 11968 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-43.5 parent: 2 - - uid: 764 + - uid: 11969 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-35.5 parent: 2 - - uid: 821 + - uid: 11970 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-100.5 parent: 2 - - uid: 891 + - uid: 11971 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - uid: 898 + - uid: 11972 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-59.5 parent: 2 - - uid: 1104 + - uid: 11973 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-34.5 parent: 2 - - uid: 1114 + - uid: 11974 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-62.5 parent: 2 - - uid: 1226 + - uid: 11975 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 1327 + - uid: 11976 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-71.5 parent: 2 - - uid: 1467 + - uid: 11977 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-37.5 parent: 2 - - uid: 1471 + - uid: 11978 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 1488 + - uid: 11979 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-69.5 parent: 2 - - uid: 1489 + - uid: 11980 components: - type: Transform pos: 4.5,-56.5 parent: 2 - - uid: 1753 + - uid: 11981 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 1809 + - uid: 11982 components: - type: Transform pos: 2.5,-94.5 parent: 2 - - uid: 1810 + - uid: 11983 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-82.5 parent: 2 - - uid: 1918 + - uid: 11984 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-115.5 parent: 2 - - uid: 1920 + - uid: 11985 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-121.5 parent: 2 - - uid: 1923 + - uid: 11986 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-109.5 parent: 2 - - uid: 2043 + - uid: 11987 components: - type: Transform pos: -7.5,-118.5 parent: 2 - - uid: 2044 + - uid: 11988 components: - type: Transform pos: -7.5,-115.5 parent: 2 - - uid: 2045 + - uid: 11989 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2050 + - uid: 11990 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-98.5 parent: 2 - - uid: 2051 + - uid: 11991 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-98.5 parent: 2 - - uid: 2052 + - uid: 11992 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-98.5 parent: 2 - - uid: 2053 + - uid: 11993 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-92.5 parent: 2 - - uid: 2054 + - uid: 11994 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-86.5 parent: 2 - - uid: 2055 + - uid: 11995 components: - type: Transform pos: 6.5,-81.5 parent: 2 - - uid: 2072 + - uid: 11996 components: - type: Transform pos: -6.5,-31.5 parent: 2 - - uid: 2185 + - uid: 11997 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-282.5 parent: 2 - - uid: 2218 + - uid: 11998 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-279.5 parent: 2 - - uid: 2219 + - uid: 11999 components: - type: Transform pos: 3.5,-276.5 parent: 2 - - uid: 2252 + - uid: 12000 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-32.5 parent: 2 - - uid: 2272 + - uid: 12001 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-125.5 parent: 2 - - uid: 2273 + - uid: 12002 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-125.5 parent: 2 - - uid: 2274 + - uid: 12003 components: - type: Transform pos: 4.5,-119.5 parent: 2 - - uid: 2275 + - uid: 12004 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-125.5 parent: 2 - - uid: 2326 + - uid: 12005 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 2351 + - uid: 12006 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - - uid: 2423 + - uid: 12007 components: - type: Transform pos: -5.5,-95.5 parent: 2 - - uid: 2441 + - uid: 12008 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-257.5 parent: 2 - - uid: 2592 + - uid: 12009 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-136.5 parent: 2 - - uid: 2658 + - uid: 12010 components: - type: Transform pos: 2.5,-148.5 parent: 2 - - uid: 2659 + - uid: 12011 components: - type: Transform pos: 6.5,-148.5 parent: 2 - - uid: 2759 + - uid: 12012 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-142.5 parent: 2 - - uid: 2821 + - uid: 12013 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 2822 + - uid: 12014 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-152.5 parent: 2 - - uid: 2823 + - uid: 12015 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-151.5 parent: 2 - - uid: 2841 + - uid: 12016 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-142.5 parent: 2 - - uid: 2843 + - uid: 12017 components: - type: Transform pos: 1.5,-135.5 parent: 2 - - uid: 2888 + - uid: 12018 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-152.5 parent: 2 - - uid: 3016 + - uid: 12019 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 3074 + - uid: 12020 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 parent: 2 - - uid: 3252 + - uid: 12021 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-180.5 parent: 2 - - uid: 3253 + - uid: 12022 components: - type: Transform pos: -7.5,-171.5 parent: 2 - - uid: 3332 + - uid: 12023 components: - type: Transform pos: 1.5,-160.5 parent: 2 - - uid: 3395 + - uid: 12024 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-181.5 parent: 2 - - uid: 3686 + - uid: 12025 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-285.5 parent: 2 - - uid: 3711 + - uid: 12026 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-127.5 parent: 2 - - uid: 3713 + - uid: 12027 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-161.5 parent: 2 - - uid: 3837 + - uid: 12028 components: - type: Transform pos: 1.5,-344.5 parent: 2 - - uid: 3923 + - uid: 12029 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-289.5 parent: 2 - - uid: 3978 + - uid: 12030 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-208.5 parent: 2 - - uid: 3988 + - uid: 12031 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-201.5 parent: 2 - - uid: 4144 + - uid: 12032 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-154.5 parent: 2 - - uid: 4145 + - uid: 12033 components: - type: Transform pos: 1.5,-187.5 parent: 2 - - uid: 4236 + - uid: 12034 components: - type: Transform pos: 1.5,-133.5 parent: 2 - - uid: 4241 + - uid: 12035 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 - - uid: 4259 + - uid: 12036 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 4263 + - uid: 12037 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-73.5 parent: 2 - - uid: 4295 + - uid: 12038 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-221.5 parent: 2 - - uid: 4352 + - uid: 12039 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-228.5 parent: 2 - - uid: 4527 + - uid: 12040 components: - type: Transform pos: 1.5,-106.5 parent: 2 - - uid: 4684 + - uid: 12041 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-235.5 parent: 2 - - uid: 4687 + - uid: 12042 components: - type: Transform pos: 1.5,-241.5 parent: 2 - - uid: 4797 + - uid: 12043 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-253.5 parent: 2 - - uid: 5028 + - uid: 12044 components: - type: Transform pos: -0.5,-243.5 parent: 2 - - uid: 5029 + - uid: 12045 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-260.5 parent: 2 - - uid: 5071 + - uid: 12046 components: - type: Transform pos: 4.5,-345.5 parent: 2 - - uid: 5172 + - uid: 12047 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-249.5 parent: 2 - - uid: 5274 + - uid: 12048 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-255.5 parent: 2 - - uid: 5323 + - uid: 12049 components: - type: Transform pos: 6.5,-342.5 parent: 2 - - uid: 5324 + - uid: 12050 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-336.5 parent: 2 - - uid: 5340 + - uid: 12051 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-360.5 parent: 2 - - uid: 5351 + - uid: 12052 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-360.5 parent: 2 - - uid: 5355 + - uid: 12053 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-336.5 parent: 2 - - uid: 5383 + - uid: 12054 components: - type: Transform pos: 1.5,-214.5 parent: 2 - - uid: 5416 + - uid: 12055 components: - type: Transform pos: -0.5,-108.5 parent: 2 - - uid: 5884 + - uid: 12056 components: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 5963 + - uid: 12057 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 5965 + - uid: 12058 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-44.5 parent: 2 - - uid: 5970 + - uid: 12059 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 6618 + - uid: 12060 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-29.5 parent: 2 - - uid: 7483 + - uid: 12061 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-262.5 parent: 2 - - uid: 8018 + - uid: 12062 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-287.5 parent: 2 - - uid: 8357 + - uid: 12063 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-245.5 parent: 2 - - uid: 8372 + - uid: 12064 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-260.5 parent: 2 - - uid: 8442 + - uid: 12065 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-244.5 parent: 2 - - uid: 8711 + - uid: 12066 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-275.5 parent: 2 - - uid: 8728 + - uid: 12067 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-288.5 parent: 2 - - uid: 8741 + - uid: 12068 components: - type: Transform pos: -1.5,-270.5 parent: 2 - - uid: 8767 + - uid: 12069 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-282.5 parent: 2 - - uid: 8768 + - uid: 12070 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-276.5 parent: 2 - - uid: 8879 + - uid: 12071 components: - type: Transform pos: 1.5,-268.5 parent: 2 - - uid: 8885 + - uid: 12072 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-270.5 parent: 2 - - uid: 8888 + - uid: 12073 components: - type: Transform pos: -6.5,-283.5 parent: 2 - - uid: 8955 + - uid: 12074 components: - type: Transform pos: -0.5,-273.5 parent: 2 - - uid: 8961 + - uid: 12075 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-286.5 parent: 2 - - uid: 9042 + - uid: 12076 components: - type: Transform pos: 7.5,-276.5 parent: 2 - - uid: 9044 + - uid: 12077 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-282.5 parent: 2 - - uid: 9068 + - uid: 12078 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-274.5 parent: 2 - - uid: 9070 + - uid: 12079 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-274.5 parent: 2 - - uid: 9071 + - uid: 12080 components: - type: Transform pos: 6.5,-270.5 parent: 2 - - uid: 9322 + - uid: 12081 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-281.5 parent: 2 - - uid: 9336 + - uid: 12082 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-277.5 parent: 2 - - uid: 9337 + - uid: 12083 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-270.5 parent: 2 - - uid: 9430 + - uid: 12084 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-54.5 parent: 2 - - uid: 9715 + - uid: 12085 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-287.5 parent: 2 - - uid: 9932 + - uid: 12086 components: - type: Transform pos: 3.5,-296.5 parent: 2 - - uid: 10148 + - uid: 12087 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-313.5 parent: 2 - - uid: 10150 + - uid: 12088 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-319.5 parent: 2 - - uid: 10152 + - uid: 12089 components: - type: Transform pos: -3.5,-297.5 parent: 2 - - uid: 10529 + - uid: 12090 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-298.5 parent: 2 - - uid: 10740 + - uid: 12091 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-321.5 parent: 2 - - uid: 10913 + - uid: 12092 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-342.5 parent: 2 - - uid: 11063 + - uid: 12093 components: - type: Transform pos: 1.5,-329.5 parent: 2 - - uid: 11120 + - uid: 12094 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-358.5 parent: 2 - - uid: 11188 + - uid: 12095 components: - type: Transform pos: 1.5,-362.5 parent: 2 - - uid: 11498 + - uid: 12096 components: - type: Transform pos: 7.5,-363.5 parent: 2 - - uid: 11713 + - uid: 12097 components: - type: Transform pos: -1.5,-356.5 parent: 2 - - uid: 11714 + - uid: 12098 components: - type: Transform pos: 2.5,-356.5 parent: 2 - - uid: 11717 + - uid: 12099 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-362.5 parent: 2 - - uid: 11718 + - uid: 12100 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-365.5 parent: 2 - - uid: 11719 + - uid: 12101 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-368.5 parent: 2 - - uid: 11720 + - uid: 12102 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-368.5 parent: 2 - - uid: 11722 + - uid: 12103 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-365.5 parent: 2 - - uid: 11723 + - uid: 12104 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-367.5 parent: 2 - - uid: 11724 + - uid: 12105 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-367.5 parent: 2 - - uid: 11727 + - uid: 12106 components: - type: Transform pos: -2.5,-370.5 parent: 2 - - uid: 11728 + - uid: 12107 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-362.5 parent: 2 - - uid: 11730 + - uid: 12108 components: - type: Transform pos: 3.5,-370.5 parent: 2 - - uid: 11731 + - uid: 12109 components: - type: Transform pos: 7.5,-360.5 parent: 2 - - uid: 11733 + - uid: 12110 components: - type: Transform pos: 7.5,-366.5 parent: 2 - - uid: 11734 + - uid: 12111 components: - type: Transform pos: -6.5,-366.5 parent: 2 - - uid: 11735 + - uid: 12112 components: - type: Transform pos: -6.5,-363.5 parent: 2 - - uid: 11736 + - uid: 12113 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11740 + - uid: 12114 components: - type: Transform pos: 4.5,-355.5 parent: 2 - - uid: 11741 + - uid: 12115 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-358.5 parent: 2 - - uid: 11742 + - uid: 12116 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-358.5 parent: 2 - - uid: 11746 + - uid: 12117 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-374.5 parent: 2 - - uid: 11747 + - uid: 12118 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-374.5 parent: 2 - - uid: 11748 + - uid: 12119 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-374.5 parent: 2 - - uid: 11749 + - uid: 12120 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-374.5 parent: 2 - - uid: 11750 + - uid: 12121 components: - type: Transform pos: 6.5,-369.5 parent: 2 - - uid: 11751 + - uid: 12122 components: - type: Transform pos: -5.5,-369.5 parent: 2 - - uid: 12138 + - uid: 12123 components: - type: Transform pos: 1.5,-327.5 parent: 2 - - uid: 12139 + - uid: 12124 components: - type: Transform pos: 1.5,-375.5 parent: 2 - - uid: 12343 + - uid: 12125 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-327.5 parent: 2 - - uid: 12371 + - uid: 12126 components: - type: Transform pos: 1.5,-295.5 parent: 2 - - uid: 12472 + - uid: 12127 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-260.5 parent: 2 - - uid: 12855 + - uid: 12128 components: - type: Transform pos: -0.5,-362.5 parent: 2 - - uid: 12915 + - uid: 12129 components: - type: Transform pos: 1.5,-354.5 parent: 2 - - uid: 12919 + - uid: 12130 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-348.5 parent: 2 - - uid: 14321 + - uid: 12131 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-63.5 parent: 2 - - uid: 14351 + - uid: 12132 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-246.5 parent: 2 - - uid: 14353 + - uid: 12133 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-63.5 parent: 2 - - uid: 14359 + - uid: 12134 components: - type: Transform pos: 16.5,-59.5 parent: 2 - - uid: 14419 + - uid: 12135 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-80.5 parent: 2 - - uid: 14463 + - uid: 12136 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-80.5 parent: 2 - - uid: 14465 + - uid: 12137 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-84.5 parent: 2 - - uid: 14466 + - uid: 12138 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 - - uid: 14467 + - uid: 12139 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-75.5 parent: 2 - - uid: 14468 + - uid: 12140 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-71.5 parent: 2 - - uid: 14469 + - uid: 12141 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-67.5 parent: 2 - - uid: 14470 + - uid: 12142 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-67.5 parent: 2 - - uid: 14471 + - uid: 12143 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-71.5 parent: 2 - - uid: 14472 + - uid: 12144 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-75.5 parent: 2 - - uid: 14563 + - uid: 12145 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 14600 + - uid: 12146 components: - type: Transform pos: 5.5,-242.5 parent: 2 - - uid: 14606 + - uid: 12147 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-332.5 parent: 2 - - uid: 14622 + - uid: 12148 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-18.5 parent: 2 - - uid: 15293 + - uid: 12149 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-336.5 parent: 2 - - uid: 15789 + - uid: 12150 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-342.5 parent: 2 - - uid: 16660 + - uid: 12151 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-336.5 parent: 2 - - uid: 16698 + - uid: 12152 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-342.5 parent: 2 - - uid: 16699 + - uid: 12153 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 16710 + - uid: 12154 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-336.5 parent: 2 - - uid: 16712 + - uid: 12155 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-340.5 parent: 2 - - uid: 16869 + - uid: 12156 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-251.5 parent: 2 - - uid: 16876 + - uid: 12157 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-245.5 parent: 2 - - uid: 16906 + - uid: 12158 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-168.5 parent: 2 - - uid: 16913 + - uid: 12159 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-168.5 parent: 2 - - uid: 16914 + - uid: 12160 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16915 + - uid: 12161 components: - type: Transform pos: -11.5,-161.5 parent: 2 - - uid: 16916 + - uid: 12162 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-166.5 parent: 2 - - uid: 16917 + - uid: 12163 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-163.5 parent: 2 - - uid: 16944 + - uid: 12164 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-166.5 parent: 2 - - uid: 16946 + - uid: 12165 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-177.5 parent: 2 - - uid: 16958 + - uid: 12166 components: - type: Transform pos: -7.5,-260.5 parent: 2 - - uid: 16962 + - uid: 12167 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-263.5 parent: 2 - - uid: 16963 + - uid: 12168 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-265.5 parent: 2 - - uid: 17004 + - uid: 12169 components: - type: Transform pos: -6.5,-248.5 parent: 2 - proto: PoweredSmallLightEmpty entities: - - uid: 1776 + - uid: 12170 components: - type: Transform pos: 13.5,-138.5 parent: 2 - - uid: 2732 + - uid: 12171 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-148.5 parent: 2 - - uid: 3947 + - uid: 12172 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-198.5 parent: 2 - - uid: 3948 + - uid: 12173 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-194.5 parent: 2 - - uid: 3981 + - uid: 12174 components: - type: Transform pos: -4.5,-204.5 parent: 2 - - uid: 3998 + - uid: 12175 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-202.5 parent: 2 - - uid: 7380 + - uid: 12176 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-154.5 parent: 2 - - uid: 7381 + - uid: 12177 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-148.5 parent: 2 - - uid: 7382 + - uid: 12178 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-148.5 parent: 2 - - uid: 7383 + - uid: 12179 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-143.5 parent: 2 - - uid: 7384 + - uid: 12180 components: - type: Transform rot: -1.5707963267948966 rad @@ -80470,689 +79922,689 @@ entities: parent: 2 - proto: Protolathe entities: - - uid: 10027 + - uid: 12181 components: - type: Transform pos: -4.5,-299.5 parent: 2 - proto: PumpkinLantern entities: - - uid: 1703 + - uid: 12182 components: - type: Transform pos: 6.365387,-27.206318 parent: 2 - proto: Rack entities: - - uid: 105 + - uid: 12183 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 - - uid: 120 + - uid: 12184 components: - type: Transform pos: 5.5,-345.5 parent: 2 - - uid: 422 + - uid: 12185 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 - - uid: 955 + - uid: 12186 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 2 - - uid: 1111 + - uid: 12187 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 1112 + - uid: 12188 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 1113 + - uid: 12189 components: - type: Transform pos: -5.5,-44.5 parent: 2 - - uid: 1116 + - uid: 12190 components: - type: Transform pos: -5.5,-39.5 parent: 2 - - uid: 1131 + - uid: 12191 components: - type: Transform pos: -3.5,-38.5 parent: 2 - - uid: 1132 + - uid: 12192 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 1167 + - uid: 12193 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 1583 + - uid: 12194 components: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 1778 + - uid: 12195 components: - type: Transform pos: 4.5,-242.5 parent: 2 - - uid: 2381 + - uid: 12196 components: - type: Transform pos: 16.5,-242.5 parent: 2 - - uid: 2396 + - uid: 12197 components: - type: Transform pos: 20.5,-253.5 parent: 2 - - uid: 2436 + - uid: 12198 components: - type: Transform pos: 6.5,-108.5 parent: 2 - - uid: 2705 + - uid: 12199 components: - type: Transform pos: 3.5,-137.5 parent: 2 - - uid: 3571 + - uid: 12200 components: - type: Transform pos: -7.5,-177.5 parent: 2 - - uid: 3573 + - uid: 12201 components: - type: Transform pos: -2.5,-180.5 parent: 2 - - uid: 3971 + - uid: 12202 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-207.5 parent: 2 - - uid: 7791 + - uid: 12203 components: - type: Transform pos: 6.5,-242.5 parent: 2 - - uid: 8554 + - uid: 12204 components: - type: Transform pos: -5.5,-288.5 parent: 2 - - uid: 8651 + - uid: 12205 components: - type: Transform pos: -6.5,-283.5 parent: 2 - - uid: 9516 + - uid: 12206 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-18.5 parent: 2 - - uid: 10123 + - uid: 12207 components: - type: Transform pos: 7.5,-115.5 parent: 2 - - uid: 12210 + - uid: 12208 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 12411 + - uid: 12209 components: - type: Transform pos: 5.5,-310.5 parent: 2 - - uid: 12423 + - uid: 12210 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-304.5 parent: 2 - - uid: 14627 + - uid: 12211 components: - type: Transform pos: -5.5,-244.5 parent: 2 - - uid: 14637 + - uid: 12212 components: - type: Transform pos: -2.5,-259.5 parent: 2 - - uid: 14643 + - uid: 12213 components: - type: Transform pos: 6.5,-260.5 parent: 2 - - uid: 15173 + - uid: 12214 components: - type: Transform pos: 9.5,-119.5 parent: 2 - - uid: 15174 + - uid: 12215 components: - type: Transform pos: 9.5,-115.5 parent: 2 - - uid: 15301 + - uid: 12216 components: - type: Transform pos: 3.5,-163.5 parent: 2 - - uid: 16885 + - uid: 12217 components: - type: Transform pos: -4.5,-251.5 parent: 2 - proto: RadiationCollectorNoTank entities: - - uid: 3192 + - uid: 12218 components: - type: Transform pos: 19.5,-240.5 parent: 2 - - uid: 6911 + - uid: 12219 components: - type: Transform pos: 19.5,-241.5 parent: 2 - - uid: 7441 + - uid: 12220 components: - type: Transform pos: 18.5,-240.5 parent: 2 - proto: RagItem entities: - - uid: 2128 + - uid: 628 + components: + - type: Transform + parent: 624 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 935 + components: + - type: Transform + parent: 932 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12221 components: - type: Transform pos: -2.1022174,-60.36517 parent: 2 - - uid: 7427 + - uid: 12222 components: - type: Transform pos: 14.739458,-59.475845 parent: 2 - - uid: 7454 + - uid: 12223 components: - type: Transform pos: 16.746363,-59.466587 parent: 2 - - uid: 14480 - components: - - type: Transform - parent: 14476 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14766 - components: - - type: Transform - parent: 14755 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Railing entities: - - uid: 13 + - uid: 12224 components: - type: Transform pos: 2.5,-77.5 parent: 2 - - uid: 21 + - uid: 12225 components: - type: Transform pos: -1.5,-77.5 parent: 2 - - uid: 56 + - uid: 12226 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 2 - - uid: 57 + - uid: 12227 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 88 + - uid: 12228 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 2 - - uid: 91 + - uid: 12229 components: - type: Transform pos: -3.5,-1.5 parent: 2 - - uid: 786 + - uid: 12230 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 787 + - uid: 12231 components: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 788 + - uid: 12232 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 796 + - uid: 12233 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-42.5 parent: 2 - - uid: 797 + - uid: 12234 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-42.5 parent: 2 - - uid: 798 + - uid: 12235 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-42.5 parent: 2 - - uid: 800 + - uid: 12236 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-41.5 parent: 2 - - uid: 801 + - uid: 12237 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-40.5 parent: 2 - - uid: 802 + - uid: 12238 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-39.5 parent: 2 - - uid: 824 + - uid: 12239 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 826 + - uid: 12240 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-42.5 parent: 2 - - uid: 828 + - uid: 12241 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 - - uid: 829 + - uid: 12242 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-39.5 parent: 2 - - uid: 830 + - uid: 12243 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-41.5 parent: 2 - - uid: 2289 + - uid: 12244 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-280.5 parent: 2 - - uid: 2634 + - uid: 12245 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-142.5 parent: 2 - - uid: 2635 + - uid: 12246 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-142.5 parent: 2 - - uid: 2758 + - uid: 12247 components: - type: Transform pos: -0.5,-278.5 parent: 2 - - uid: 2849 + - uid: 12248 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 3107 + - uid: 12249 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-48.5 parent: 2 - - uid: 3109 + - uid: 12250 components: - type: Transform pos: -1.5,-50.5 parent: 2 - - uid: 3527 + - uid: 12251 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 - - uid: 3533 + - uid: 12252 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-21.5 parent: 2 - - uid: 6712 + - uid: 12253 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-163.5 parent: 2 - - uid: 8036 + - uid: 12254 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-75.5 parent: 2 - - uid: 8467 + - uid: 12255 components: - type: Transform pos: -11.5,-166.5 parent: 2 - - uid: 8913 + - uid: 12256 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-75.5 parent: 2 - - uid: 9340 + - uid: 12257 components: - type: Transform pos: 2.5,-50.5 parent: 2 - - uid: 9341 + - uid: 12258 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-48.5 parent: 2 - - uid: 9344 + - uid: 12259 components: - type: Transform pos: -1.5,-23.5 parent: 2 - - uid: 9687 + - uid: 12260 components: - type: Transform pos: 2.5,-104.5 parent: 2 - - uid: 9689 + - uid: 12261 components: - type: Transform pos: -1.5,-104.5 parent: 2 - - uid: 9710 + - uid: 12262 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-102.5 parent: 2 - - uid: 9711 + - uid: 12263 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-102.5 parent: 2 - - uid: 9996 + - uid: 12264 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-300.5 parent: 2 - - uid: 10000 + - uid: 12265 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-299.5 parent: 2 - - uid: 10041 + - uid: 12266 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-311.5 parent: 2 - - uid: 10043 + - uid: 12267 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-312.5 parent: 2 - - uid: 10160 + - uid: 12268 components: - type: Transform pos: 2.5,-131.5 parent: 2 - - uid: 10573 + - uid: 12269 components: - type: Transform pos: -1.5,-131.5 parent: 2 - - uid: 10577 + - uid: 12270 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-129.5 parent: 2 - - uid: 10578 + - uid: 12271 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-129.5 parent: 2 - - uid: 10602 + - uid: 12272 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-156.5 parent: 2 - - uid: 10603 + - uid: 12273 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-156.5 parent: 2 - - uid: 10604 + - uid: 12274 components: - type: Transform pos: 2.5,-158.5 parent: 2 - - uid: 10605 + - uid: 12275 components: - type: Transform pos: -1.5,-158.5 parent: 2 - - uid: 10832 + - uid: 12276 components: - type: Transform pos: 2.5,-185.5 parent: 2 - - uid: 10842 + - uid: 12277 components: - type: Transform pos: -1.5,-185.5 parent: 2 - - uid: 10843 + - uid: 12278 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-183.5 parent: 2 - - uid: 10867 + - uid: 12279 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-183.5 parent: 2 - - uid: 11559 + - uid: 12280 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-210.5 parent: 2 - - uid: 11589 + - uid: 12281 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-210.5 parent: 2 - - uid: 11637 + - uid: 12282 components: - type: Transform pos: 2.5,-212.5 parent: 2 - - uid: 11646 + - uid: 12283 components: - type: Transform pos: -1.5,-212.5 parent: 2 - - uid: 11827 + - uid: 12284 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-379.5 parent: 2 - - uid: 11828 + - uid: 12285 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-377.5 parent: 2 - - uid: 11830 + - uid: 12286 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-379.5 parent: 2 - - uid: 11836 + - uid: 12287 components: - type: Transform pos: 2.5,-239.5 parent: 2 - - uid: 11837 + - uid: 12288 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-237.5 parent: 2 - - uid: 11838 + - uid: 12289 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-237.5 parent: 2 - - uid: 11839 + - uid: 12290 components: - type: Transform pos: -1.5,-239.5 parent: 2 - - uid: 12074 + - uid: 12291 components: - type: Transform pos: 2.5,-266.5 parent: 2 - - uid: 12075 + - uid: 12292 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-264.5 parent: 2 - - uid: 12093 + - uid: 12293 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-264.5 parent: 2 - - uid: 12104 + - uid: 12294 components: - type: Transform pos: -1.5,-266.5 parent: 2 - - uid: 13198 + - uid: 12295 components: - type: Transform pos: 2.5,-293.5 parent: 2 - - uid: 13208 + - uid: 12296 components: - type: Transform pos: -1.5,-293.5 parent: 2 - - uid: 13260 + - uid: 12297 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-291.5 parent: 2 - - uid: 13261 + - uid: 12298 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-291.5 parent: 2 - - uid: 14294 + - uid: 12299 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-323.5 parent: 2 - - uid: 14295 + - uid: 12300 components: - type: Transform pos: 2.5,-325.5 parent: 2 - - uid: 14296 + - uid: 12301 components: - type: Transform pos: -1.5,-325.5 parent: 2 - - uid: 14303 + - uid: 12302 components: - type: Transform rot: 3.141592653589793 rad @@ -81160,999 +80612,999 @@ entities: parent: 2 - proto: RailingCornerSmall entities: - - uid: 11 + - uid: 12303 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 48 + - uid: 12304 components: - type: Transform pos: 1.5,2.5 parent: 2 - - uid: 55 + - uid: 12305 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 2 - - uid: 100 + - uid: 12306 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 101 + - uid: 12307 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 - - uid: 201 + - uid: 12308 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-47.5 parent: 2 - - uid: 272 + - uid: 12309 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 273 + - uid: 12310 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 - - uid: 275 + - uid: 12311 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 - - uid: 681 + - uid: 12312 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-37.5 parent: 2 - - uid: 682 + - uid: 12313 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-44.5 parent: 2 - - uid: 683 + - uid: 12314 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-42.5 parent: 2 - - uid: 696 + - uid: 12315 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 698 + - uid: 12316 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 700 + - uid: 12317 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-30.5 parent: 2 - - uid: 701 + - uid: 12318 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-28.5 parent: 2 - - uid: 793 + - uid: 12319 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-38.5 parent: 2 - - uid: 804 + - uid: 12320 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-38.5 parent: 2 - - uid: 806 + - uid: 12321 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-42.5 parent: 2 - - uid: 832 + - uid: 12322 components: - type: Transform pos: 5.5,-42.5 parent: 2 - - uid: 2181 + - uid: 12323 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-278.5 parent: 2 - - uid: 2282 + - uid: 12324 components: - type: Transform pos: 0.5,-280.5 parent: 2 - - uid: 2627 + - uid: 12325 components: - type: Transform pos: 3.5,-142.5 parent: 2 - - uid: 2637 + - uid: 12326 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-142.5 parent: 2 - - uid: 2647 + - uid: 12327 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-141.5 parent: 2 - - uid: 2648 + - uid: 12328 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-141.5 parent: 2 - - uid: 2649 + - uid: 12329 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-141.5 parent: 2 - - uid: 2650 + - uid: 12330 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-141.5 parent: 2 - - uid: 2893 + - uid: 12331 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 2894 + - uid: 12332 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-152.5 parent: 2 - - uid: 2895 + - uid: 12333 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-150.5 parent: 2 - - uid: 2896 + - uid: 12334 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 3064 + - uid: 12335 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 - - uid: 3091 + - uid: 12336 components: - type: Transform pos: 3.5,-51.5 parent: 2 - - uid: 3092 + - uid: 12337 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-21.5 parent: 2 - - uid: 3193 + - uid: 12338 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-50.5 parent: 2 - - uid: 3194 + - uid: 12339 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 - - uid: 3353 + - uid: 12340 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-47.5 parent: 2 - - uid: 3524 + - uid: 12341 components: - type: Transform pos: 3.5,-78.5 parent: 2 - - uid: 3525 + - uid: 12342 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-78.5 parent: 2 - - uid: 3526 + - uid: 12343 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-78.5 parent: 2 - - uid: 3534 + - uid: 12344 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 3543 + - uid: 12345 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-23.5 parent: 2 - - uid: 4353 + - uid: 12346 components: - type: Transform pos: -1.5,-78.5 parent: 2 - - uid: 7834 + - uid: 12347 components: - type: Transform pos: 3.5,-48.5 parent: 2 - - uid: 7871 + - uid: 12348 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-20.5 parent: 2 - - uid: 7897 + - uid: 12349 components: - type: Transform pos: -1.5,-51.5 parent: 2 - - uid: 8065 + - uid: 12350 components: - type: Transform pos: 3.5,-75.5 parent: 2 - - uid: 8107 + - uid: 12351 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-77.5 parent: 2 - - uid: 8108 + - uid: 12352 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-20.5 parent: 2 - - uid: 8134 + - uid: 12353 components: - type: Transform pos: 3.5,-24.5 parent: 2 - - uid: 8481 + - uid: 12354 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-163.5 parent: 2 - - uid: 8687 + - uid: 12355 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-166.5 parent: 2 - - uid: 8690 + - uid: 12356 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-74.5 parent: 2 - - uid: 8812 + - uid: 12357 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-48.5 parent: 2 - - uid: 8825 + - uid: 12358 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-271.5 parent: 2 - - uid: 8826 + - uid: 12359 components: - type: Transform pos: -7.5,-274.5 parent: 2 - - uid: 8866 + - uid: 12360 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-51.5 parent: 2 - - uid: 8912 + - uid: 12361 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-50.5 parent: 2 - - uid: 8914 + - uid: 12362 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-77.5 parent: 2 - - uid: 9095 + - uid: 12363 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-75.5 parent: 2 - - uid: 9338 + - uid: 12364 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-74.5 parent: 2 - - uid: 9339 + - uid: 12365 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 2 - - uid: 9342 + - uid: 12366 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-47.5 parent: 2 - - uid: 9345 + - uid: 12367 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 - - uid: 9790 + - uid: 12368 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-104.5 parent: 2 - - uid: 9813 + - uid: 12369 components: - type: Transform pos: 3.5,-105.5 parent: 2 - - uid: 9815 + - uid: 12370 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-105.5 parent: 2 - - uid: 9907 + - uid: 12371 components: - type: Transform pos: -1.5,-105.5 parent: 2 - - uid: 9913 + - uid: 12372 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-105.5 parent: 2 - - uid: 9940 + - uid: 12373 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-104.5 parent: 2 - - uid: 9943 + - uid: 12374 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-101.5 parent: 2 - - uid: 9944 + - uid: 12375 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-101.5 parent: 2 - - uid: 9945 + - uid: 12376 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-102.5 parent: 2 - - uid: 9946 + - uid: 12377 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-101.5 parent: 2 - - uid: 10002 + - uid: 12378 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-301.5 parent: 2 - - uid: 10044 + - uid: 12379 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-101.5 parent: 2 - - uid: 10133 + - uid: 12380 components: - type: Transform pos: 3.5,-102.5 parent: 2 - - uid: 10579 + - uid: 12381 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-128.5 parent: 2 - - uid: 10580 + - uid: 12382 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-128.5 parent: 2 - - uid: 10581 + - uid: 12383 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-129.5 parent: 2 - - uid: 10586 + - uid: 12384 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-128.5 parent: 2 - - uid: 10594 + - uid: 12385 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-128.5 parent: 2 - - uid: 10595 + - uid: 12386 components: - type: Transform pos: 3.5,-129.5 parent: 2 - - uid: 10596 + - uid: 12387 components: - type: Transform pos: 3.5,-132.5 parent: 2 - - uid: 10597 + - uid: 12388 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-132.5 parent: 2 - - uid: 10598 + - uid: 12389 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-131.5 parent: 2 - - uid: 10599 + - uid: 12390 components: - type: Transform pos: -1.5,-132.5 parent: 2 - - uid: 10600 + - uid: 12391 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-132.5 parent: 2 - - uid: 10601 + - uid: 12392 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-131.5 parent: 2 - - uid: 10606 + - uid: 12393 components: - type: Transform pos: 3.5,-159.5 parent: 2 - - uid: 10607 + - uid: 12394 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-159.5 parent: 2 - - uid: 10608 + - uid: 12395 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-158.5 parent: 2 - - uid: 10609 + - uid: 12396 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-155.5 parent: 2 - - uid: 10726 + - uid: 12397 components: - type: Transform pos: 3.5,-156.5 parent: 2 - - uid: 10741 + - uid: 12398 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-155.5 parent: 2 - - uid: 10749 + - uid: 12399 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-155.5 parent: 2 - - uid: 10753 + - uid: 12400 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-155.5 parent: 2 - - uid: 10761 + - uid: 12401 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-156.5 parent: 2 - - uid: 10819 + - uid: 12402 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-159.5 parent: 2 - - uid: 10820 + - uid: 12403 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-158.5 parent: 2 - - uid: 10831 + - uid: 12404 components: - type: Transform pos: -1.5,-159.5 parent: 2 - - uid: 10875 + - uid: 12405 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-185.5 parent: 2 - - uid: 10969 + - uid: 12406 components: - type: Transform pos: 3.5,-186.5 parent: 2 - - uid: 10970 + - uid: 12407 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-186.5 parent: 2 - - uid: 11081 + - uid: 12408 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-186.5 parent: 2 - - uid: 11082 + - uid: 12409 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-185.5 parent: 2 - - uid: 11092 + - uid: 12410 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-182.5 parent: 2 - - uid: 11346 + - uid: 12411 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-182.5 parent: 2 - - uid: 11350 + - uid: 12412 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-182.5 parent: 2 - - uid: 11409 + - uid: 12413 components: - type: Transform pos: 3.5,-183.5 parent: 2 - - uid: 11475 + - uid: 12414 components: - type: Transform pos: -1.5,-186.5 parent: 2 - - uid: 11527 + - uid: 12415 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-183.5 parent: 2 - - uid: 11554 + - uid: 12416 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-182.5 parent: 2 - - uid: 11649 + - uid: 12417 components: - type: Transform pos: 3.5,-213.5 parent: 2 - - uid: 11653 + - uid: 12418 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-213.5 parent: 2 - - uid: 11670 + - uid: 12419 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-212.5 parent: 2 - - uid: 11671 + - uid: 12420 components: - type: Transform pos: -1.5,-213.5 parent: 2 - - uid: 11675 + - uid: 12421 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-213.5 parent: 2 - - uid: 11676 + - uid: 12422 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-212.5 parent: 2 - - uid: 11705 + - uid: 12423 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-209.5 parent: 2 - - uid: 11831 + - uid: 12424 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-209.5 parent: 2 - - uid: 11832 + - uid: 12425 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-210.5 parent: 2 - - uid: 11833 + - uid: 12426 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-209.5 parent: 2 - - uid: 11834 + - uid: 12427 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-209.5 parent: 2 - - uid: 11835 + - uid: 12428 components: - type: Transform pos: 3.5,-210.5 parent: 2 - - uid: 11899 + - uid: 12429 components: - type: Transform pos: 3.5,-240.5 parent: 2 - - uid: 11926 + - uid: 12430 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-240.5 parent: 2 - - uid: 11936 + - uid: 12431 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-239.5 parent: 2 - - uid: 11955 + - uid: 12432 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-236.5 parent: 2 - - uid: 11967 + - uid: 12433 components: - type: Transform pos: 3.5,-237.5 parent: 2 - - uid: 11990 + - uid: 12434 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-236.5 parent: 2 - - uid: 12007 + - uid: 12435 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-236.5 parent: 2 - - uid: 12012 + - uid: 12436 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-236.5 parent: 2 - - uid: 12013 + - uid: 12437 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-237.5 parent: 2 - - uid: 12020 + - uid: 12438 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-240.5 parent: 2 - - uid: 12023 + - uid: 12439 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-239.5 parent: 2 - - uid: 12073 + - uid: 12440 components: - type: Transform pos: -1.5,-240.5 parent: 2 - - uid: 12152 + - uid: 12441 components: - type: Transform pos: 3.5,-267.5 parent: 2 - - uid: 12195 + - uid: 12442 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-267.5 parent: 2 - - uid: 12200 + - uid: 12443 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-266.5 parent: 2 - - uid: 12214 + - uid: 12444 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-263.5 parent: 2 - - uid: 12220 + - uid: 12445 components: - type: Transform pos: 3.5,-264.5 parent: 2 - - uid: 12229 + - uid: 12446 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 12230 + - uid: 12447 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-263.5 parent: 2 - - uid: 12232 + - uid: 12448 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-263.5 parent: 2 - - uid: 12339 + - uid: 12449 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-264.5 parent: 2 - - uid: 12578 + - uid: 12450 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-267.5 parent: 2 - - uid: 12633 + - uid: 12451 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-266.5 parent: 2 - - uid: 13021 + - uid: 12452 components: - type: Transform pos: -1.5,-267.5 parent: 2 - - uid: 13262 + - uid: 12453 components: - type: Transform pos: 3.5,-294.5 parent: 2 - - uid: 13263 + - uid: 12454 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-294.5 parent: 2 - - uid: 13269 + - uid: 12455 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-293.5 parent: 2 - - uid: 13299 + - uid: 12456 components: - type: Transform pos: 3.5,-291.5 parent: 2 - - uid: 13445 + - uid: 12457 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-290.5 parent: 2 - - uid: 13449 + - uid: 12458 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-290.5 parent: 2 - - uid: 13995 + - uid: 12459 components: - type: Transform pos: -1.5,-294.5 parent: 2 - - uid: 14003 + - uid: 12460 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-294.5 parent: 2 - - uid: 14024 + - uid: 12461 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-293.5 parent: 2 - - uid: 14049 + - uid: 12462 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-290.5 parent: 2 - - uid: 14292 + - uid: 12463 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-290.5 parent: 2 - - uid: 14293 + - uid: 12464 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-291.5 parent: 2 - - uid: 14307 + - uid: 12465 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-325.5 parent: 2 - - uid: 14578 + - uid: 12466 components: - type: Transform pos: 3.5,-326.5 parent: 2 - - uid: 14609 + - uid: 12467 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-326.5 parent: 2 - - uid: 14613 + - uid: 12468 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-323.5 parent: 2 - - uid: 14614 + - uid: 12469 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-322.5 parent: 2 - - uid: 14619 + - uid: 12470 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-322.5 parent: 2 - - uid: 14620 + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-322.5 parent: 2 - - uid: 14621 + - uid: 12472 components: - type: Transform pos: 3.5,-323.5 parent: 2 - - uid: 14625 + - uid: 12473 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-322.5 parent: 2 - - uid: 14638 + - uid: 12474 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-325.5 parent: 2 - - uid: 14682 + - uid: 12475 components: - type: Transform pos: -1.5,-326.5 parent: 2 - - uid: 14683 + - uid: 12476 components: - type: Transform rot: -1.5707963267948966 rad @@ -82160,19 +81612,19 @@ entities: parent: 2 - proto: RandomArcade entities: - - uid: 9469 + - uid: 12477 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-308.5 parent: 2 - - uid: 10676 + - uid: 12478 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-373.5 parent: 2 - - uid: 10874 + - uid: 12479 components: - type: Transform rot: 3.141592653589793 rad @@ -82180,163 +81632,163 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: - - uid: 9997 + - uid: 12480 components: - type: Transform pos: -8.5,-314.5 parent: 2 - proto: RandomArtifactSpawner20 entities: - - uid: 13304 + - uid: 12481 components: - type: Transform pos: -9.5,-311.5 parent: 2 - proto: RandomBoard entities: - - uid: 2364 + - uid: 12482 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 2382 + - uid: 12483 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 2391 + - uid: 12484 components: - type: Transform pos: -3.5,-5.5 parent: 2 - - uid: 3747 + - uid: 12485 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 6908 + - uid: 12486 components: - type: Transform pos: -3.5,-7.5 parent: 2 - - uid: 7191 + - uid: 12487 components: - type: Transform pos: -0.5,-7.5 parent: 2 - proto: RandomDrinkBottle entities: - - uid: 729 + - uid: 12488 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 1272 + - uid: 12489 components: - type: Transform pos: -2.5,-63.5 parent: 2 - proto: RandomDrinkGlass entities: - - uid: 1276 + - uid: 12490 components: - type: Transform pos: -2.5,-64.5 parent: 2 - - uid: 1277 + - uid: 12491 components: - type: Transform pos: -2.5,-62.5 parent: 2 - - uid: 1413 + - uid: 12492 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 1416 + - uid: 12493 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 3206 + - uid: 12494 components: - type: Transform pos: -3.5,-58.5 parent: 2 - proto: RandomFoodBakedSingle entities: - - uid: 763 + - uid: 12495 components: - type: Transform pos: 5.5,-7.5 parent: 2 - - uid: 2073 + - uid: 12496 components: - type: Transform pos: -7.5,-115.5 parent: 2 - proto: RandomFoodBakedWhole entities: - - uid: 762 + - uid: 12497 components: - type: Transform pos: 4.5,-6.5 parent: 2 - - uid: 2147 + - uid: 12498 components: - type: Transform pos: -7.5,-118.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 1671 + - uid: 12499 components: - type: Transform pos: 3.5,-89.5 parent: 2 - - uid: 1748 + - uid: 12500 components: - type: Transform pos: -0.5,-86.5 parent: 2 - - uid: 2036 + - uid: 12501 components: - type: Transform pos: 4.5,-99.5 parent: 2 - proto: RandomFoodSingle entities: - - uid: 2034 + - uid: 12502 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 2037 + - uid: 12503 components: - type: Transform pos: 0.5,-94.5 parent: 2 - - uid: 2038 + - uid: 12504 components: - type: Transform pos: 0.5,-94.5 parent: 2 - - uid: 2311 + - uid: 12505 components: - type: Transform pos: 3.5,-87.5 parent: 2 - - uid: 2312 + - uid: 12506 components: - type: Transform pos: 3.5,-90.5 parent: 2 - - uid: 4196 + - uid: 12507 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 4519 + - uid: 12508 components: - type: Transform rot: -1.5707963267948966 rad @@ -82344,55 +81796,55 @@ entities: parent: 2 - proto: RandomInstruments entities: - - uid: 7765 + - uid: 12509 components: - type: Transform pos: 7.5,-196.5 parent: 2 - - uid: 13433 + - uid: 12510 components: - type: Transform pos: -2.5,-32.5 parent: 2 - proto: RandomPosterAny entities: - - uid: 12999 + - uid: 12511 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-317.5 parent: 2 - - uid: 13000 + - uid: 12512 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-302.5 parent: 2 - - uid: 13026 + - uid: 12513 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-229.5 parent: 2 - - uid: 13038 + - uid: 12514 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-149.5 parent: 2 - - uid: 13045 + - uid: 12515 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-114.5 parent: 2 - - uid: 13047 + - uid: 12516 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-120.5 parent: 2 - - uid: 13061 + - uid: 12517 components: - type: Transform rot: 3.141592653589793 rad @@ -82400,53 +81852,53 @@ entities: parent: 2 - proto: RandomPosterContraband entities: - - uid: 598 + - uid: 12518 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 10833 + - uid: 12519 components: - type: Transform pos: -6.5,-18.5 parent: 2 - - uid: 12926 + - uid: 12520 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-374.5 parent: 2 - - uid: 12990 + - uid: 12521 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-373.5 parent: 2 - - uid: 13036 + - uid: 12522 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-180.5 parent: 2 - - uid: 13037 + - uid: 12523 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-153.5 parent: 2 - - uid: 13042 + - uid: 12524 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-109.5 parent: 2 - - uid: 13057 + - uid: 12525 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-70.5 parent: 2 - - uid: 13069 + - uid: 12526 components: - type: Transform rot: 3.141592653589793 rad @@ -82454,140 +81906,140 @@ entities: parent: 2 - proto: RandomPosterLegit entities: - - uid: 434 + - uid: 12527 components: - type: Transform pos: -4.5,3.5 parent: 2 - - uid: 771 + - uid: 12528 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 772 + - uid: 12529 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-35.5 parent: 2 - - uid: 1419 + - uid: 12530 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 4240 + - uid: 12531 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-8.5 parent: 2 - - uid: 7214 + - uid: 12532 components: - type: Transform pos: 2.5,-346.5 parent: 2 - - uid: 7753 + - uid: 12533 components: - type: Transform pos: 4.5,-207.5 parent: 2 - - uid: 10814 + - uid: 12534 components: - type: Transform pos: 2.5,-344.5 parent: 2 - - uid: 12993 + - uid: 12535 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-355.5 parent: 2 - - uid: 13001 + - uid: 12536 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-283.5 parent: 2 - - uid: 13002 + - uid: 12537 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-275.5 parent: 2 - - uid: 13012 + - uid: 12538 components: - type: Transform anchored: False rot: 3.141592653589793 rad pos: 21.5,-252.5 parent: 2 - - uid: 13029 + - uid: 12539 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-204.5 parent: 2 - - uid: 13031 + - uid: 12540 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-191.5 parent: 2 - - uid: 13033 + - uid: 12541 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-164.5 parent: 2 - - uid: 13043 + - uid: 12542 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-141.5 parent: 2 - - uid: 13052 + - uid: 12543 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-95.5 parent: 2 - - uid: 13054 + - uid: 12544 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-83.5 parent: 2 - - uid: 13056 + - uid: 12545 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-69.5 parent: 2 - - uid: 13063 + - uid: 12546 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-43.5 parent: 2 - - uid: 13066 + - uid: 12547 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-31.5 parent: 2 - - uid: 13075 + - uid: 12548 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 2 - - uid: 13076 + - uid: 12549 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-4.5 parent: 2 - - uid: 13078 + - uid: 12550 components: - type: Transform rot: 3.141592653589793 rad @@ -82595,7 +82047,7 @@ entities: parent: 2 - proto: RandomSnacks entities: - - uid: 7788 + - uid: 12551 components: - type: Transform rot: 3.141592653589793 rad @@ -82603,42 +82055,42 @@ entities: parent: 2 - proto: RandomSoap entities: - - uid: 352 + - uid: 12552 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-54.5 parent: 2 - - uid: 7818 + - uid: 12553 components: - type: Transform pos: -6.5,-150.5 parent: 2 - - uid: 9410 + - uid: 12554 components: - type: Transform pos: -6.5,-152.5 parent: 2 - - uid: 12120 + - uid: 12555 components: - type: Transform pos: -4.5,-374.5 parent: 2 - proto: RandomSpawner entities: - - uid: 14655 + - uid: 12556 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-69.5 parent: 2 - - uid: 14656 + - uid: 12557 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-68.5 parent: 2 - - uid: 14657 + - uid: 12558 components: - type: Transform rot: 3.141592653589793 rad @@ -82646,1678 +82098,1675 @@ entities: parent: 2 - proto: RandomVending entities: - - uid: 559 + - uid: 12559 components: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 2512 + - uid: 12560 components: - type: Transform pos: -0.5,-149.5 parent: 2 - - uid: 2580 + - uid: 12561 components: - type: Transform pos: 1.5,-136.5 parent: 2 - - uid: 7903 + - uid: 12562 components: - type: Transform pos: 12.5,-306.5 parent: 2 - - uid: 9017 + - uid: 12563 components: - type: Transform pos: -0.5,-287.5 parent: 2 - - uid: 10126 + - uid: 12564 components: - type: Transform pos: -0.5,-319.5 parent: 2 - - uid: 14734 + - uid: 12565 components: - type: Transform pos: -2.5,-191.5 parent: 2 - - uid: 14735 + - uid: 12566 components: - type: Transform pos: -6.5,-191.5 parent: 2 - - uid: 14741 + - uid: 12567 components: - type: Transform pos: -7.5,-307.5 parent: 2 - - uid: 15034 + - uid: 12568 components: - type: Transform pos: -7.5,-134.5 parent: 2 - - uid: 15653 + - uid: 12569 components: - type: Transform pos: -5.5,-279.5 parent: 2 - - uid: 15654 + - uid: 12570 components: - type: Transform pos: -5.5,-280.5 parent: 2 - proto: RandomVendingDrinks entities: - - uid: 752 + - uid: 12571 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 810 + - uid: 12572 components: - type: Transform pos: 3.5,-45.5 parent: 2 - - uid: 887 + - uid: 12573 components: - type: Transform pos: -1.5,-37.5 parent: 2 - proto: RandomVendingSnacks entities: - - uid: 755 + - uid: 12574 components: - type: Transform pos: 3.5,-26.5 parent: 2 - - uid: 886 + - uid: 12575 components: - type: Transform pos: -1.5,-40.5 parent: 2 - proto: RCD entities: - - uid: 13005 + - uid: 12576 components: - type: Transform pos: 11.623424,-252.29977 parent: 2 - proto: RCDAmmo entities: - - uid: 8444 + - uid: 12577 components: - type: Transform pos: 11.413898,-252.65977 parent: 2 - - uid: 13004 + - uid: 12578 components: - type: Transform pos: 11.262441,-252.55502 parent: 2 - - uid: 13006 + - uid: 12579 components: - type: Transform pos: 11.403312,-252.39659 parent: 2 - proto: Recycler entities: - - uid: 5452 + - uid: 12580 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-219.5 parent: 2 - - type: DeviceLinkSink - links: - - 7621 - proto: ReinforcedPlasmaWindow entities: - - uid: 2056 + - uid: 12581 components: - type: Transform pos: -17.5,-239.5 parent: 2 - - uid: 2211 + - uid: 12582 components: - type: Transform pos: -16.5,-239.5 parent: 2 - - uid: 2478 + - uid: 12583 components: - type: Transform pos: -19.5,-239.5 parent: 2 - - uid: 2920 + - uid: 12584 components: - type: Transform pos: -18.5,-239.5 parent: 2 - - uid: 7580 + - uid: 12585 components: - type: Transform pos: 20.5,-259.5 parent: 2 - - uid: 7739 + - uid: 12586 components: - type: Transform pos: 6.5,-339.5 parent: 2 - - uid: 7909 + - uid: 12587 components: - type: Transform pos: 20.5,-260.5 parent: 2 - - uid: 8616 + - uid: 12588 components: - type: Transform pos: 20.5,-258.5 parent: 2 - - uid: 9386 + - uid: 12589 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-299.5 parent: 2 - - uid: 9432 + - uid: 12590 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-298.5 parent: 2 - - uid: 9436 + - uid: 12591 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-306.5 parent: 2 - - uid: 9437 + - uid: 12592 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-307.5 parent: 2 - - uid: 9438 + - uid: 12593 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-308.5 parent: 2 - - uid: 9440 + - uid: 12594 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-297.5 parent: 2 - - uid: 9441 + - uid: 12595 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-297.5 parent: 2 - - uid: 9442 + - uid: 12596 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-298.5 parent: 2 - - uid: 9443 + - uid: 12597 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-299.5 parent: 2 - - uid: 9445 + - uid: 12598 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-315.5 parent: 2 - - uid: 9446 + - uid: 12599 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-316.5 parent: 2 - - uid: 9447 + - uid: 12600 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-317.5 parent: 2 - - uid: 9448 + - uid: 12601 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-315.5 parent: 2 - - uid: 9449 + - uid: 12602 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-316.5 parent: 2 - - uid: 9450 + - uid: 12603 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-317.5 parent: 2 - - uid: 11210 + - uid: 12604 components: - type: Transform pos: -7.5,-316.5 parent: 2 - - uid: 11213 + - uid: 12605 components: - type: Transform pos: -8.5,-316.5 parent: 2 - - uid: 12390 + - uid: 12606 components: - type: Transform pos: -8.5,-312.5 parent: 2 - - uid: 12404 + - uid: 12607 components: - type: Transform pos: -7.5,-312.5 parent: 2 - proto: ReinforcedWindow entities: - - uid: 15 + - uid: 12608 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 16 + - uid: 12609 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 17 + - uid: 12610 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 18 + - uid: 12611 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 19 + - uid: 12612 components: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 106 + - uid: 12613 components: - type: Transform pos: 4.5,-0.5 parent: 2 - - uid: 140 + - uid: 12614 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 143 + - uid: 12615 components: - type: Transform pos: 7.5,-6.5 parent: 2 - - uid: 144 + - uid: 12616 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 156 + - uid: 12617 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - uid: 158 + - uid: 12618 components: - type: Transform pos: 10.5,-118.5 parent: 2 - - uid: 226 + - uid: 12619 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 227 + - uid: 12620 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 228 + - uid: 12621 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 229 + - uid: 12622 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 230 + - uid: 12623 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 231 + - uid: 12624 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 264 + - uid: 12625 components: - type: Transform pos: 1.5,-351.5 parent: 2 - - uid: 315 + - uid: 12626 components: - type: Transform pos: 2.5,-173.5 parent: 2 - - uid: 322 + - uid: 12627 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 440 + - uid: 12628 components: - type: Transform pos: -6.5,-39.5 parent: 2 - - uid: 486 + - uid: 12629 components: - type: Transform pos: -7.5,-60.5 parent: 2 - - uid: 578 + - uid: 12630 components: - type: Transform pos: -7.5,-68.5 parent: 2 - - uid: 579 + - uid: 12631 components: - type: Transform pos: -6.5,-372.5 parent: 2 - - uid: 589 + - uid: 12632 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 591 + - uid: 12633 components: - type: Transform pos: 7.5,-39.5 parent: 2 - - uid: 592 + - uid: 12634 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 593 + - uid: 12635 components: - type: Transform pos: 7.5,-41.5 parent: 2 - - uid: 890 + - uid: 12636 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 893 + - uid: 12637 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 904 + - uid: 12638 components: - type: Transform pos: 8.5,-56.5 parent: 2 - - uid: 909 + - uid: 12639 components: - type: Transform pos: 7.5,-61.5 parent: 2 - - uid: 936 + - uid: 12640 components: - type: Transform pos: 8.5,-55.5 parent: 2 - - uid: 937 + - uid: 12641 components: - type: Transform pos: 8.5,-68.5 parent: 2 - - uid: 942 + - uid: 12642 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 946 + - uid: 12643 components: - type: Transform pos: -7.5,-67.5 parent: 2 - - uid: 948 + - uid: 12644 components: - type: Transform pos: -7.5,-57.5 parent: 2 - - uid: 949 + - uid: 12645 components: - type: Transform pos: -7.5,-59.5 parent: 2 - - uid: 958 + - uid: 12646 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-299.5 parent: 2 - - uid: 1016 + - uid: 12647 components: - type: Transform pos: -7.5,-58.5 parent: 2 - - uid: 1030 + - uid: 12648 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 1031 + - uid: 12649 components: - type: Transform pos: -7.5,-66.5 parent: 2 - - uid: 1034 + - uid: 12650 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 1228 + - uid: 12651 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 1440 + - uid: 12652 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-73.5 parent: 2 - - uid: 1584 + - uid: 12653 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 1586 + - uid: 12654 components: - type: Transform pos: -10.5,-85.5 parent: 2 - - uid: 1588 + - uid: 12655 components: - type: Transform pos: -10.5,-87.5 parent: 2 - - uid: 1592 + - uid: 12656 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 1593 + - uid: 12657 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 1594 + - uid: 12658 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 1595 + - uid: 12659 components: - type: Transform pos: 7.5,-85.5 parent: 2 - - uid: 1598 + - uid: 12660 components: - type: Transform pos: 7.5,-87.5 parent: 2 - - uid: 1599 + - uid: 12661 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 1600 + - uid: 12662 components: - type: Transform pos: 7.5,-89.5 parent: 2 - - uid: 1601 + - uid: 12663 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 1602 + - uid: 12664 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 1604 + - uid: 12665 components: - type: Transform pos: 7.5,-93.5 parent: 2 - - uid: 1605 + - uid: 12666 components: - type: Transform pos: 7.5,-94.5 parent: 2 - - uid: 1606 + - uid: 12667 components: - type: Transform pos: 7.5,-95.5 parent: 2 - - uid: 1607 + - uid: 12668 components: - type: Transform pos: 7.5,-96.5 parent: 2 - - uid: 1732 + - uid: 12669 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 1752 + - uid: 12670 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-74.5 parent: 2 - - uid: 1774 + - uid: 12671 components: - type: Transform pos: 8.5,-57.5 parent: 2 - - uid: 1775 + - uid: 12672 components: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 1779 + - uid: 12673 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 1807 + - uid: 12674 components: - type: Transform pos: -18.5,-249.5 parent: 2 - - uid: 1945 + - uid: 12675 components: - type: Transform pos: -9.5,-108.5 parent: 2 - - uid: 1964 + - uid: 12676 components: - type: Transform pos: -9.5,-124.5 parent: 2 - - uid: 1965 + - uid: 12677 components: - type: Transform pos: -9.5,-122.5 parent: 2 - - uid: 1966 + - uid: 12678 components: - type: Transform pos: -9.5,-121.5 parent: 2 - - uid: 1967 + - uid: 12679 components: - type: Transform pos: -9.5,-119.5 parent: 2 - - uid: 1968 + - uid: 12680 components: - type: Transform pos: -9.5,-118.5 parent: 2 - - uid: 1969 + - uid: 12681 components: - type: Transform pos: -9.5,-116.5 parent: 2 - - uid: 1970 + - uid: 12682 components: - type: Transform pos: -9.5,-115.5 parent: 2 - - uid: 1971 + - uid: 12683 components: - type: Transform pos: -9.5,-113.5 parent: 2 - - uid: 1972 + - uid: 12684 components: - type: Transform pos: -9.5,-112.5 parent: 2 - - uid: 1974 + - uid: 12685 components: - type: Transform pos: -9.5,-109.5 parent: 2 - - uid: 2124 + - uid: 12686 components: - type: Transform pos: 7.5,-124.5 parent: 2 - - uid: 2125 + - uid: 12687 components: - type: Transform pos: 7.5,-123.5 parent: 2 - - uid: 2126 + - uid: 12688 components: - type: Transform pos: 7.5,-122.5 parent: 2 - - uid: 2129 + - uid: 12689 components: - type: Transform pos: 10.5,-119.5 parent: 2 - - uid: 2149 + - uid: 12690 components: - type: Transform pos: 0.5,-122.5 parent: 2 - - uid: 2150 + - uid: 12691 components: - type: Transform pos: -1.5,-122.5 parent: 2 - - uid: 2151 + - uid: 12692 components: - type: Transform pos: -2.5,-121.5 parent: 2 - - uid: 2152 + - uid: 12693 components: - type: Transform pos: -2.5,-120.5 parent: 2 - - uid: 2168 + - uid: 12694 components: - type: Transform pos: 1.5,-122.5 parent: 2 - - uid: 2568 + - uid: 12695 components: - type: Transform pos: 9.5,-138.5 parent: 2 - - uid: 2569 + - uid: 12696 components: - type: Transform pos: 9.5,-145.5 parent: 2 - - uid: 2571 + - uid: 12697 components: - type: Transform pos: 9.5,-144.5 parent: 2 - - uid: 2572 + - uid: 12698 components: - type: Transform pos: 9.5,-147.5 parent: 2 - - uid: 2577 + - uid: 12699 components: - type: Transform pos: 9.5,-139.5 parent: 2 - - uid: 2594 + - uid: 12700 components: - type: Transform pos: -7.5,-141.5 parent: 2 - - uid: 2595 + - uid: 12701 components: - type: Transform pos: -7.5,-140.5 parent: 2 - - uid: 2597 + - uid: 12702 components: - type: Transform pos: -7.5,-150.5 parent: 2 - - uid: 2598 + - uid: 12703 components: - type: Transform pos: -7.5,-152.5 parent: 2 - - uid: 2603 + - uid: 12704 components: - type: Transform pos: -9.5,-125.5 parent: 2 - - uid: 2652 + - uid: 12705 components: - type: Transform pos: -4.5,-134.5 parent: 2 - - uid: 2655 + - uid: 12706 components: - type: Transform pos: -7.5,-139.5 parent: 2 - - uid: 2782 + - uid: 12707 components: - type: Transform pos: 7.5,-149.5 parent: 2 - - uid: 2943 + - uid: 12708 components: - type: Transform pos: -8.5,-173.5 parent: 2 - - uid: 2944 + - uid: 12709 components: - type: Transform pos: -8.5,-174.5 parent: 2 - - uid: 2945 + - uid: 12710 components: - type: Transform pos: -8.5,-175.5 parent: 2 - - uid: 2946 + - uid: 12711 components: - type: Transform pos: -8.5,-176.5 parent: 2 - - uid: 2947 + - uid: 12712 components: - type: Transform pos: 9.5,-176.5 parent: 2 - - uid: 2949 + - uid: 12713 components: - type: Transform pos: 9.5,-174.5 parent: 2 - - uid: 2950 + - uid: 12714 components: - type: Transform pos: 9.5,-173.5 parent: 2 - - uid: 2951 + - uid: 12715 components: - type: Transform pos: 8.5,-168.5 parent: 2 - - uid: 2952 + - uid: 12716 components: - type: Transform pos: 8.5,-167.5 parent: 2 - - uid: 2953 + - uid: 12717 components: - type: Transform pos: 8.5,-166.5 parent: 2 - - uid: 3060 + - uid: 12718 components: - type: Transform pos: 9.5,-175.5 parent: 2 - - uid: 3182 + - uid: 12719 components: - type: Transform pos: -9.5,-309.5 parent: 2 - - uid: 3559 + - uid: 12720 components: - type: Transform pos: -10.5,-308.5 parent: 2 - - uid: 3784 + - uid: 12721 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-242.5 parent: 2 - - uid: 3788 + - uid: 12722 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-74.5 parent: 2 - - uid: 3795 + - uid: 12723 components: - type: Transform pos: -7.5,-197.5 parent: 2 - - uid: 3796 + - uid: 12724 components: - type: Transform pos: -7.5,-196.5 parent: 2 - - uid: 3797 + - uid: 12725 components: - type: Transform pos: -7.5,-195.5 parent: 2 - - uid: 3802 + - uid: 12726 components: - type: Transform pos: -6.5,-202.5 parent: 2 - - uid: 3803 + - uid: 12727 components: - type: Transform pos: -6.5,-201.5 parent: 2 - - uid: 3805 + - uid: 12728 components: - type: Transform pos: -6.5,-204.5 parent: 2 - - uid: 3806 + - uid: 12729 components: - type: Transform pos: -6.5,-205.5 parent: 2 - - uid: 3843 + - uid: 12730 components: - type: Transform pos: 9.5,-146.5 parent: 2 - - uid: 3850 + - uid: 12731 components: - type: Transform pos: -1.5,-206.5 parent: 2 - - uid: 3870 + - uid: 12732 components: - type: Transform pos: -3.5,-204.5 parent: 2 - - uid: 4243 + - uid: 12733 components: - type: Transform pos: -4.5,-231.5 parent: 2 - - uid: 4324 + - uid: 12734 components: - type: Transform pos: -1.5,-225.5 parent: 2 - - uid: 4325 + - uid: 12735 components: - type: Transform pos: -1.5,-224.5 parent: 2 - - uid: 4326 + - uid: 12736 components: - type: Transform pos: 2.5,-225.5 parent: 2 - - uid: 4327 + - uid: 12737 components: - type: Transform pos: 2.5,-224.5 parent: 2 - - uid: 4328 + - uid: 12738 components: - type: Transform pos: 5.5,-230.5 parent: 2 - - uid: 4331 + - uid: 12739 components: - type: Transform pos: -3.5,-232.5 parent: 2 - - uid: 4332 + - uid: 12740 components: - type: Transform pos: -4.5,-230.5 parent: 2 - - uid: 4336 + - uid: 12741 components: - type: Transform pos: -4.5,-219.5 parent: 2 - - uid: 4337 + - uid: 12742 components: - type: Transform pos: -4.5,-218.5 parent: 2 - - uid: 4338 + - uid: 12743 components: - type: Transform pos: -4.5,-217.5 parent: 2 - - uid: 4339 + - uid: 12744 components: - type: Transform pos: -3.5,-217.5 parent: 2 - - uid: 4506 + - uid: 12745 components: - type: Transform pos: -4.5,-232.5 parent: 2 - - uid: 4634 + - uid: 12746 components: - type: Transform pos: -8.5,-191.5 parent: 2 - - uid: 4662 + - uid: 12747 components: - type: Transform pos: -8.5,-190.5 parent: 2 - - uid: 4739 + - uid: 12748 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-221.5 parent: 2 - - uid: 4817 + - uid: 12749 components: - type: Transform pos: 5.5,-231.5 parent: 2 - - uid: 4818 + - uid: 12750 components: - type: Transform pos: 5.5,-232.5 parent: 2 - - uid: 4819 + - uid: 12751 components: - type: Transform pos: 4.5,-232.5 parent: 2 - - uid: 4897 + - uid: 12752 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-218.5 parent: 2 - - uid: 5449 + - uid: 12753 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-220.5 parent: 2 - - uid: 6794 + - uid: 12754 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-241.5 parent: 2 - - uid: 6804 + - uid: 12755 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-255.5 parent: 2 - - uid: 6805 + - uid: 12756 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-254.5 parent: 2 - - uid: 6806 + - uid: 12757 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-256.5 parent: 2 - - uid: 6876 + - uid: 12758 components: - type: Transform pos: -9.5,-308.5 parent: 2 - - uid: 6877 + - uid: 12759 components: - type: Transform pos: -9.5,-307.5 parent: 2 - - uid: 6880 + - uid: 12760 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-301.5 parent: 2 - - uid: 6892 + - uid: 12761 components: - type: Transform pos: 18.5,-238.5 parent: 2 - - uid: 6893 + - uid: 12762 components: - type: Transform pos: -9.5,-190.5 parent: 2 - - uid: 6895 + - uid: 12763 components: - type: Transform pos: -8.5,-189.5 parent: 2 - - uid: 7190 + - uid: 12764 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - uid: 7192 + - uid: 12765 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - uid: 7419 + - uid: 12766 components: - type: Transform pos: 17.5,-238.5 parent: 2 - - uid: 7552 + - uid: 12767 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-146.5 parent: 2 - - uid: 7606 + - uid: 12768 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-217.5 parent: 2 - - uid: 7703 + - uid: 12769 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-201.5 parent: 2 - - uid: 7704 + - uid: 12770 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-200.5 parent: 2 - - uid: 7705 + - uid: 12771 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-199.5 parent: 2 - - uid: 7706 + - uid: 12772 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-198.5 parent: 2 - - uid: 7707 + - uid: 12773 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-197.5 parent: 2 - - uid: 7708 + - uid: 12774 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-196.5 parent: 2 - - uid: 7709 + - uid: 12775 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-195.5 parent: 2 - - uid: 7710 + - uid: 12776 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-194.5 parent: 2 - - uid: 7717 + - uid: 12777 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-219.5 parent: 2 - - uid: 7773 + - uid: 12778 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-60.5 parent: 2 - - uid: 7943 + - uid: 12779 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-245.5 parent: 2 - - uid: 8146 + - uid: 12780 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-246.5 parent: 2 - - uid: 8170 + - uid: 12781 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-251.5 parent: 2 - - uid: 8177 + - uid: 12782 components: - type: Transform pos: 16.5,-238.5 parent: 2 - - uid: 8232 + - uid: 12783 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-62.5 parent: 2 - - uid: 8388 + - uid: 12784 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-62.5 parent: 2 - - uid: 8395 + - uid: 12785 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-61.5 parent: 2 - - uid: 8436 + - uid: 12786 components: - type: Transform pos: -7.5,-285.5 parent: 2 - - uid: 8562 + - uid: 12787 components: - type: Transform pos: 2.5,-174.5 parent: 2 - - uid: 8602 + - uid: 12788 components: - type: Transform pos: -7.5,-286.5 parent: 2 - - uid: 8603 + - uid: 12789 components: - type: Transform pos: -7.5,-284.5 parent: 2 - - uid: 8606 + - uid: 12790 components: - type: Transform pos: -6.5,-280.5 parent: 2 - - uid: 8607 + - uid: 12791 components: - type: Transform pos: -6.5,-279.5 parent: 2 - - uid: 8608 + - uid: 12792 components: - type: Transform pos: -6.5,-278.5 parent: 2 - - uid: 8642 + - uid: 12793 components: - type: Transform pos: 2.5,-175.5 parent: 2 - - uid: 8940 + - uid: 12794 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-247.5 parent: 2 - - uid: 8999 + - uid: 12795 components: - type: Transform pos: -4.5,-381.5 parent: 2 - - uid: 9461 + - uid: 12796 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-308.5 parent: 2 - - uid: 9466 + - uid: 12797 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-306.5 parent: 2 - - uid: 9729 + - uid: 12798 components: - type: Transform pos: 11.5,-299.5 parent: 2 - - uid: 9730 + - uid: 12799 components: - type: Transform pos: 11.5,-298.5 parent: 2 - - uid: 9731 + - uid: 12800 components: - type: Transform pos: 11.5,-297.5 parent: 2 - - uid: 9747 + - uid: 12801 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-309.5 parent: 2 - - uid: 9748 + - uid: 12802 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-305.5 parent: 2 - - uid: 9755 + - uid: 12803 components: - type: Transform pos: 11.5,-315.5 parent: 2 - - uid: 9756 + - uid: 12804 components: - type: Transform pos: 11.5,-316.5 parent: 2 - - uid: 9757 + - uid: 12805 components: - type: Transform pos: 11.5,-317.5 parent: 2 - - uid: 9796 + - uid: 12806 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-317.5 parent: 2 - - uid: 9797 + - uid: 12807 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-318.5 parent: 2 - - uid: 9798 + - uid: 12808 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-319.5 parent: 2 - - uid: 9799 + - uid: 12809 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-320.5 parent: 2 - - uid: 9864 + - uid: 12810 components: - type: Transform pos: -10.5,-303.5 parent: 2 - - uid: 9899 + - uid: 12811 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-309.5 parent: 2 - - uid: 9902 + - uid: 12812 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-305.5 parent: 2 - - uid: 9903 + - uid: 12813 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-304.5 parent: 2 - - uid: 9935 + - uid: 12814 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-315.5 parent: 2 - - uid: 9936 + - uid: 12815 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-314.5 parent: 2 - - uid: 9937 + - uid: 12816 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-313.5 parent: 2 - - uid: 9938 + - uid: 12817 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-312.5 parent: 2 - - uid: 10021 + - uid: 12818 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-310.5 parent: 2 - - uid: 10031 + - uid: 12819 components: - type: Transform pos: -10.5,-302.5 parent: 2 - - uid: 10051 + - uid: 12820 components: - type: Transform pos: -10.5,-304.5 parent: 2 - - uid: 10632 + - uid: 12821 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-331.5 parent: 2 - - uid: 10719 + - uid: 12822 components: - type: Transform pos: 8.5,-366.5 parent: 2 - - uid: 10748 + - uid: 12823 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-330.5 parent: 2 - - uid: 10750 + - uid: 12824 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-329.5 parent: 2 - - uid: 10815 + - uid: 12825 components: - type: Transform pos: 8.5,-367.5 parent: 2 - - uid: 10920 + - uid: 12826 components: - type: Transform pos: 1.5,-350.5 parent: 2 - - uid: 10923 + - uid: 12827 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-327.5 parent: 2 - - uid: 11048 + - uid: 12828 components: - type: Transform pos: 1.5,-352.5 parent: 2 - - uid: 11049 + - uid: 12829 components: - type: Transform pos: -0.5,-350.5 parent: 2 - - uid: 11050 + - uid: 12830 components: - type: Transform pos: -0.5,-351.5 parent: 2 - - uid: 11051 + - uid: 12831 components: - type: Transform pos: -0.5,-352.5 parent: 2 - - uid: 11064 + - uid: 12832 components: - type: Transform pos: -7.5,-360.5 parent: 2 - - uid: 11104 + - uid: 12833 components: - type: Transform pos: -7.5,-361.5 parent: 2 - - uid: 11105 + - uid: 12834 components: - type: Transform pos: -7.5,-363.5 parent: 2 - - uid: 11106 + - uid: 12835 components: - type: Transform pos: -7.5,-364.5 parent: 2 - - uid: 11107 + - uid: 12836 components: - type: Transform pos: -7.5,-366.5 parent: 2 - - uid: 11108 + - uid: 12837 components: - type: Transform pos: -7.5,-367.5 parent: 2 - - uid: 11109 + - uid: 12838 components: - type: Transform pos: -6.5,-370.5 parent: 2 - - uid: 11110 + - uid: 12839 components: - type: Transform pos: -6.5,-371.5 parent: 2 - - uid: 11116 + - uid: 12840 components: - type: Transform pos: 7.5,-370.5 parent: 2 - - uid: 11117 + - uid: 12841 components: - type: Transform pos: 7.5,-371.5 parent: 2 - - uid: 11118 + - uid: 12842 components: - type: Transform pos: 7.5,-372.5 parent: 2 - - uid: 11123 + - uid: 12843 components: - type: Transform pos: 8.5,-364.5 parent: 2 - - uid: 11124 + - uid: 12844 components: - type: Transform pos: 8.5,-363.5 parent: 2 - - uid: 11256 + - uid: 12845 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-364.5 parent: 2 - - uid: 11367 + - uid: 12846 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-369.5 parent: 2 - - uid: 11386 + - uid: 12847 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-369.5 parent: 2 - - uid: 11387 + - uid: 12848 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-369.5 parent: 2 - - uid: 11388 + - uid: 12849 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-363.5 parent: 2 - - uid: 11389 + - uid: 12850 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-364.5 parent: 2 - - uid: 11390 + - uid: 12851 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-365.5 parent: 2 - - uid: 11391 + - uid: 12852 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-363.5 parent: 2 - - uid: 11392 + - uid: 12853 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-364.5 parent: 2 - - uid: 11393 + - uid: 12854 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-365.5 parent: 2 - - uid: 11402 + - uid: 12855 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-364.5 parent: 2 - - uid: 12021 + - uid: 12856 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-260.5 parent: 2 - - uid: 12027 + - uid: 12857 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-253.5 parent: 2 - - uid: 12028 + - uid: 12858 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-257.5 parent: 2 - - uid: 12083 + - uid: 12859 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-263.5 parent: 2 - - uid: 12606 + - uid: 12860 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-259.5 parent: 2 - - uid: 13216 + - uid: 12861 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-255.5 parent: 2 - - uid: 13300 + - uid: 12862 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-300.5 parent: 2 - - uid: 13349 + - uid: 12863 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-261.5 parent: 2 - - uid: 14313 + - uid: 12864 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-61.5 parent: 2 - - uid: 14314 + - uid: 12865 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-60.5 parent: 2 - - uid: 14913 + - uid: 12866 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-147.5 parent: 2 - - uid: 14915 + - uid: 12867 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-145.5 parent: 2 - - uid: 15134 + - uid: 12868 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-113.5 parent: 2 - - uid: 15135 + - uid: 12869 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-114.5 parent: 2 - - uid: 15136 + - uid: 12870 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-115.5 parent: 2 - - uid: 15138 + - uid: 12871 components: - type: Transform rot: -1.5707963267948966 rad @@ -84325,185 +83774,185 @@ entities: parent: 2 - proto: ReinforcedWindowDiagonal entities: - - uid: 9 + - uid: 12872 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 1237 + - uid: 12873 components: - type: Transform pos: -6.5,-52.5 parent: 2 - - uid: 1609 + - uid: 12874 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 1610 + - uid: 12875 components: - type: Transform pos: -9.5,-83.5 parent: 2 - - uid: 1611 + - uid: 12876 components: - type: Transform pos: -10.5,-84.5 parent: 2 - - uid: 2788 + - uid: 12877 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 2 - - uid: 2941 + - uid: 12878 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-84.5 parent: 2 - - uid: 4440 + - uid: 12879 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-217.5 parent: 2 - - uid: 4635 + - uid: 12880 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 4641 + - uid: 12881 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-191.5 parent: 2 - - uid: 4647 + - uid: 12882 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 2 - - uid: 4949 + - uid: 12883 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-88.5 parent: 2 - - uid: 4987 + - uid: 12884 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-83.5 parent: 2 - - uid: 4993 + - uid: 12885 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-90.5 parent: 2 - - uid: 4995 + - uid: 12886 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-88.5 parent: 2 - - uid: 4996 + - uid: 12887 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-89.5 parent: 2 - - uid: 4998 + - uid: 12888 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-89.5 parent: 2 - - uid: 6202 + - uid: 12889 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 6663 + - uid: 12890 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-307.5 parent: 2 - - uid: 6680 + - uid: 12891 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-191.5 parent: 2 - - uid: 6682 + - uid: 12892 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-189.5 parent: 2 - - uid: 6878 + - uid: 12893 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-309.5 parent: 2 - - uid: 6894 + - uid: 12894 components: - type: Transform pos: -9.5,-189.5 parent: 2 - - uid: 7677 + - uid: 12895 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-202.5 parent: 2 - - uid: 9072 + - uid: 12896 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-122.5 parent: 2 - - uid: 9743 + - uid: 12897 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-305.5 parent: 2 - - uid: 9800 + - uid: 12898 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-320.5 parent: 2 - - uid: 9904 + - uid: 12899 components: - type: Transform pos: 2.5,-309.5 parent: 2 - - uid: 9954 + - uid: 12900 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-305.5 parent: 2 - - uid: 10057 + - uid: 12901 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-309.5 parent: 2 - - uid: 13291 + - uid: 12902 components: - type: Transform pos: -10.5,-307.5 parent: 2 - - uid: 13292 + - uid: 12903 components: - type: Transform rot: 1.5707963267948966 rad @@ -84511,7 +83960,7 @@ entities: parent: 2 - proto: RemoteSignaller entities: - - uid: 17036 + - uid: 12904 components: - type: Transform rot: 1.5707963267948966 rad @@ -84519,20 +83968,20 @@ entities: parent: 2 - proto: ResearchAndDevelopmentServer entities: - - uid: 6662 + - uid: 12905 components: - type: Transform pos: -9.5,-299.5 parent: 2 - proto: RevolverCapGun entities: - - uid: 14632 + - uid: 12906 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.741016,-256.2104 parent: 2 - - uid: 14633 + - uid: 12907 components: - type: Transform rot: -1.5707963267948966 rad @@ -84540,41 +83989,41 @@ entities: parent: 2 - proto: SadTromboneImplanter entities: - - uid: 2503 + - uid: 12908 components: - type: Transform pos: 3.4744065,-18.482784 parent: 2 - proto: SalvageCanisterSpawner entities: - - uid: 7330 + - uid: 12909 components: - type: Transform pos: 17.5,-140.5 parent: 2 - - uid: 7860 + - uid: 12910 components: - type: Transform pos: -2.5,-196.5 parent: 2 - - uid: 8416 + - uid: 12911 components: - type: Transform pos: -2.5,-214.5 parent: 2 - - uid: 9418 + - uid: 12912 components: - type: Transform pos: -2.5,-193.5 parent: 2 - - uid: 16809 + - uid: 12913 components: - type: Transform pos: 6.5,-131.5 parent: 2 - proto: SalvageMagnet entities: - - uid: 8874 + - uid: 12914 components: - type: Transform rot: 1.5707963267948966 rad @@ -84582,32 +84031,32 @@ entities: parent: 2 - proto: SalvageMaterialCrateSpawner entities: - - uid: 7391 + - uid: 12915 components: - type: Transform pos: 17.5,-145.5 parent: 2 - - uid: 9048 + - uid: 12916 components: - type: Transform pos: 6.5,-279.5 parent: 2 - proto: SawElectric entities: - - uid: 3972 + - uid: 12917 components: - type: Transform pos: -2.4659972,-207.5625 parent: 2 - proto: SciFlash entities: - - uid: 12415 + - uid: 12918 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.375178,-310.24973 parent: 2 - - uid: 12416 + - uid: 12919 components: - type: Transform rot: -1.5707963267948966 rad @@ -84615,77 +84064,77 @@ entities: parent: 2 - proto: Screen entities: - - uid: 420 + - uid: 12920 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 903 + - uid: 12921 components: - type: Transform pos: -7.5,-64.5 parent: 2 - proto: Screwdriver entities: - - uid: 9519 + - uid: 12922 components: - type: Transform pos: 22.486492,-317.5223 parent: 2 - - uid: 9613 + - uid: 12923 components: - type: Transform pos: 23.43425,-299.4721 parent: 2 - - uid: 14744 + - uid: 12924 components: - type: Transform pos: -5.5653863,-307.57385 parent: 2 - proto: SecurityTechFab entities: - - uid: 2286 + - uid: 12925 components: - type: Transform pos: 4.5,-338.5 parent: 2 - proto: SeedExtractor entities: - - uid: 754 + - uid: 12926 components: - type: Transform pos: 3.5,-374.5 parent: 2 - - uid: 2330 + - uid: 12927 components: - type: Transform pos: -8.5,-84.5 parent: 2 - proto: ShardCrystalGreen entities: - - uid: 7386 + - uid: 12928 components: - type: Transform pos: 13.519403,-147.44946 parent: 2 - - uid: 7387 + - uid: 12929 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.347023,-140.45216 parent: 2 - - uid: 7388 + - uid: 12930 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.448226,-151.46065 parent: 2 - - uid: 7389 + - uid: 12931 components: - type: Transform pos: 16.276836,-137.70845 parent: 2 - - uid: 7390 + - uid: 12932 components: - type: Transform rot: 1.5707963267948966 rad @@ -84693,49 +84142,49 @@ entities: parent: 2 - proto: ShardGlass entities: - - uid: 3891 + - uid: 12933 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.7093341,-202.65921 parent: 2 - - uid: 3892 + - uid: 12934 components: - type: Transform rot: 3.141592653589793 rad pos: -2.8729095,-202.42155 parent: 2 - - uid: 3949 + - uid: 12935 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.4470973,-197.77046 parent: 2 - - uid: 3950 + - uid: 12936 components: - type: Transform pos: -5.135233,-195.4101 parent: 2 - proto: ShardGlassReinforced entities: - - uid: 11709 + - uid: 12937 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.35029945,-377.53983 parent: 2 - - uid: 11823 + - uid: 12938 components: - type: Transform pos: -0.9622005,-378.77563 parent: 2 - - uid: 11824 + - uid: 12939 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.20967445,-378.4539 parent: 2 - - uid: 11826 + - uid: 12940 components: - type: Transform rot: -1.5707963267948966 rad @@ -84743,171 +84192,171 @@ entities: parent: 2 - proto: SheetGlass entities: - - uid: 3203 + - uid: 12941 components: - type: Transform pos: 18.454567,-257.30835 parent: 2 - - uid: 8926 + - uid: 12942 components: - type: Transform pos: 18.142067,-257.4021 parent: 2 - - uid: 9970 + - uid: 12943 components: - type: Transform pos: 3.3460228,-315.99377 parent: 2 - - uid: 9973 + - uid: 12944 components: - type: Transform pos: -4.3694625,-303.88837 parent: 2 - - uid: 12369 + - uid: 12945 components: - type: Transform pos: -1.1593688,-5.49177 parent: 2 - proto: SheetPlasma entities: - - uid: 94 + - uid: 12946 components: - type: Transform pos: 5.525622,-345.48483 parent: 2 - - uid: 2365 + - uid: 12947 components: - type: Transform pos: 16.489702,-242.50365 parent: 2 - - uid: 9976 + - uid: 12948 components: - type: Transform pos: 3.5577743,-304.39993 parent: 2 - proto: SheetPlasma1 entities: - - uid: 3148 + - uid: 12949 components: - type: Transform pos: 5.3013034,-167.3674 parent: 2 - proto: SheetPlasteel entities: - - uid: 6886 + - uid: 12950 components: - type: Transform pos: 19.023344,-257.24518 parent: 2 - proto: SheetPlastic entities: - - uid: 8540 + - uid: 12951 components: - type: Transform pos: 17.492094,-257.47955 parent: 2 - - uid: 8896 + - uid: 12952 components: - type: Transform pos: 17.507719,-257.1358 parent: 2 - - uid: 10119 + - uid: 12953 components: - type: Transform pos: -4.4883227,-304.0996 parent: 2 - - uid: 12132 + - uid: 12954 components: - type: Transform pos: -1.6015537,-5.438076 parent: 2 - - uid: 15269 + - uid: 12955 components: - type: Transform pos: 4.7201986,-242.37056 parent: 2 - proto: SheetSteel entities: - - uid: 1288 + - uid: 12956 components: - type: Transform pos: -2.0033119,-5.403715 parent: 2 - - uid: 2283 + - uid: 12957 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2354 + - uid: 12958 components: - type: Transform pos: -11.540955,-257.3627 parent: 2 - - uid: 2373 + - uid: 12959 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2388 + - uid: 12960 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2389 + - uid: 12961 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 2443 + - uid: 12962 components: - type: Transform pos: -11.535454,-257.38806 parent: 2 - - uid: 8528 + - uid: 12963 components: - type: Transform pos: 19.023344,-257.5108 parent: 2 - - uid: 8894 + - uid: 12964 components: - type: Transform pos: -13.564663,-246.11655 parent: 2 - - uid: 8924 + - uid: 12965 components: - type: Transform pos: 19.23179,-257.44897 parent: 2 - - uid: 9961 + - uid: 12966 components: - type: Transform pos: 3.5573292,-315.64984 parent: 2 - - uid: 9962 + - uid: 12967 components: - type: Transform pos: 3.3460228,-315.399 parent: 2 - - uid: 10118 + - uid: 12968 components: - type: Transform pos: -4.5543566,-303.82236 parent: 2 - - uid: 15268 + - uid: 12969 components: - type: Transform pos: 4.3490157,-242.4043 parent: 2 - proto: SheetUranium entities: - - uid: 2380 + - uid: 12970 components: - type: Transform pos: 16.614702,-242.50365 parent: 2 - proto: ShipBattlemap entities: - - uid: 14457 + - uid: 12971 components: - type: Transform rot: 3.141592653589793 rad @@ -84915,39 +84364,33 @@ entities: parent: 2 - proto: ShotGunCabinetFilled entities: - - uid: 11327 + - uid: 12972 components: - type: Transform pos: -0.5,-361.5 parent: 2 - proto: ShotGunCabinetOpen entities: - - uid: 8385 + - uid: 12973 components: - type: Transform pos: 16.5,-157.5 parent: 2 - proto: ShuttersNormalOpen entities: - - uid: 2392 + - uid: 12974 components: - type: Transform pos: 1.5,-200.5 parent: 2 - - type: DeviceLinkSink - links: - - 8740 - - uid: 2397 + - uid: 12975 components: - type: Transform pos: 0.5,-200.5 parent: 2 - - type: DeviceLinkSink - links: - - 8740 - proto: SignAi entities: - - uid: 12453 + - uid: 12976 components: - type: Transform rot: 3.141592653589793 rad @@ -84955,7 +84398,7 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 9008 + - uid: 12977 components: - type: Transform rot: -1.5707963267948966 rad @@ -84963,9 +84406,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 8801: + 848: - Pressed: Toggle - - uid: 9009 + - uid: 12978 components: - type: Transform rot: -1.5707963267948966 rad @@ -84973,9 +84416,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 8803: + 849: - Pressed: Toggle - - uid: 10008 + - uid: 12979 components: - type: Transform rot: -1.5707963267948966 rad @@ -84983,13 +84426,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 9941: + 835: - Pressed: Toggle - 9908: + 834: - Pressed: Toggle - 9906: + 833: - Pressed: Toggle - - uid: 10009 + - uid: 12980 components: - type: Transform rot: 1.5707963267948966 rad @@ -84997,15 +84440,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 10003: + 837: - Pressed: Toggle - 10001: + 836: - Pressed: Toggle - 10004: + 838: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 1767 + - uid: 12981 components: - type: Transform rot: 1.5707963267948966 rad @@ -85013,11 +84456,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1749: + 828: - Pressed: Toggle - 1750: + 829: - Pressed: Toggle - - uid: 2094 + - uid: 12982 components: - type: Transform rot: -1.5707963267948966 rad @@ -85025,9 +84468,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2081: + 79: - Pressed: DoorBolt - - uid: 2095 + - uid: 12983 components: - type: Transform rot: -1.5707963267948966 rad @@ -85035,9 +84478,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2080: + 78: - Pressed: DoorBolt - - uid: 2096 + - uid: 12984 components: - type: Transform rot: -1.5707963267948966 rad @@ -85045,33 +84488,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2079: + 77: - Pressed: DoorBolt - - uid: 6906 + - uid: 12985 components: - type: Transform pos: -20.5,-239.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 3537: + 832: - Pressed: Toggle - 2972: + 831: - Pressed: Toggle - 2917: + 830: - Pressed: Toggle - - uid: 8740 + - uid: 12986 components: - type: Transform pos: -0.5,-200.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2397: + 12975: - Pressed: Toggle - 2392: + 12974: - Pressed: Toggle - - uid: 9683 + - uid: 12987 components: - type: MetaData name: Door Open Button @@ -85080,24 +84523,24 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 10746: + 89: - Pressed: Open - 10636: + 88: - Pressed: Open - - uid: 11312 + - uid: 12988 components: - type: Transform pos: -0.5,-115.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2222: + 842: - Pressed: Toggle - 2223: + 843: - Pressed: Toggle - 2224: + 844: - Pressed: Toggle - - uid: 11933 + - uid: 12989 components: - type: Transform rot: 3.141592653589793 rad @@ -85105,27 +84548,27 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2645: + 81: - Pressed: DoorBolt - - uid: 11983 + - uid: 12990 components: - type: Transform pos: -6.5,-151.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 4109: + 82: - Pressed: DoorBolt - proto: SignAnomaly entities: - - uid: 12682 + - uid: 12991 components: - type: Transform pos: -1.5,-311.5 parent: 2 - proto: SignAnomaly2 entities: - - uid: 12460 + - uid: 12992 components: - type: Transform rot: 3.141592653589793 rad @@ -85133,7 +84576,7 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 12264 + - uid: 12993 components: - type: Transform rot: -1.5707963267948966 rad @@ -85141,14 +84584,14 @@ entities: parent: 2 - proto: SignAtmosMinsky entities: - - uid: 17006 + - uid: 12994 components: - type: Transform pos: -3.5,-249.5 parent: 2 - proto: SignBar entities: - - uid: 12475 + - uid: 12995 components: - type: Transform rot: 3.141592653589793 rad @@ -85156,12 +84599,12 @@ entities: parent: 2 - proto: SignBiohazardMed entities: - - uid: 8612 + - uid: 12996 components: - type: Transform pos: -4.5,-192.5 parent: 2 - - uid: 12491 + - uid: 12997 components: - type: Transform rot: 3.141592653589793 rad @@ -85169,7 +84612,7 @@ entities: parent: 2 - proto: SignBridge entities: - - uid: 12528 + - uid: 12998 components: - type: Transform rot: 3.141592653589793 rad @@ -85177,40 +84620,40 @@ entities: parent: 2 - proto: SignCargo entities: - - uid: 12514 + - uid: 12999 components: - type: Transform pos: -1.5,-281.5 parent: 2 - proto: SignCargoDock entities: - - uid: 12515 + - uid: 13000 components: - type: Transform pos: -1.5,-277.5 parent: 2 - proto: SignChapel entities: - - uid: 2660 + - uid: 13001 components: - type: Transform pos: 2.5,-147.5 parent: 2 - - uid: 2661 + - uid: 13002 components: - type: Transform pos: 6.5,-147.5 parent: 2 - proto: SignChem entities: - - uid: 12520 + - uid: 13003 components: - type: Transform pos: 2.5,-165.5 parent: 2 - proto: SignCloning entities: - - uid: 12524 + - uid: 13004 components: - type: Transform rot: 3.141592653589793 rad @@ -85218,7 +84661,7 @@ entities: parent: 2 - proto: SignConference entities: - - uid: 12500 + - uid: 13005 components: - type: Transform rot: 3.141592653589793 rad @@ -85226,7 +84669,7 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 6239 + - uid: 13006 components: - type: Transform rot: -1.5707963267948966 rad @@ -85234,20 +84677,20 @@ entities: parent: 2 - proto: SignDirectionalBar entities: - - uid: 12509 + - uid: 13007 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-80.5 parent: 2 - - uid: 12510 + - uid: 13008 components: - type: Transform pos: -0.5,-45.5 parent: 2 - proto: SignDirectionalBridge entities: - - uid: 12503 + - uid: 13009 components: - type: Transform rot: 3.141592653589793 rad @@ -85255,12 +84698,12 @@ entities: parent: 2 - proto: SignDirectionalBrig entities: - - uid: 12504 + - uid: 13010 components: - type: Transform pos: 1.5,-320.5 parent: 2 - - uid: 12992 + - uid: 13011 components: - type: Transform rot: 3.141592653589793 rad @@ -85268,12 +84711,12 @@ entities: parent: 2 - proto: SignDirectionalChapel entities: - - uid: 12395 + - uid: 13012 components: - type: Transform pos: -0.5,-126.5 parent: 2 - - uid: 12516 + - uid: 13013 components: - type: Transform rot: 3.141592653589793 rad @@ -85281,12 +84724,12 @@ entities: parent: 2 - proto: SignDirectionalChemistry entities: - - uid: 12522 + - uid: 13014 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 12523 + - uid: 13015 components: - type: Transform rot: 3.141592653589793 rad @@ -85294,13 +84737,13 @@ entities: parent: 2 - proto: SignDirectionalCryo entities: - - uid: 11881 + - uid: 13016 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-168.5 parent: 2 - - uid: 12532 + - uid: 13017 components: - type: Transform rot: -1.5707963267948966 rad @@ -85308,12 +84751,12 @@ entities: parent: 2 - proto: SignDirectionalDorms entities: - - uid: 12541 + - uid: 13018 components: - type: Transform pos: 1.5,-99.5 parent: 2 - - uid: 12542 + - uid: 13019 components: - type: Transform rot: 3.141592653589793 rad @@ -85321,13 +84764,13 @@ entities: parent: 2 - proto: SignDirectionalEng entities: - - uid: 8463 + - uid: 13020 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-115.5 parent: 2 - - uid: 12579 + - uid: 13021 components: - type: Transform rot: 3.141592653589793 rad @@ -85335,25 +84778,25 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 12582 + - uid: 13022 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-53.5 parent: 2 - - uid: 12585 + - uid: 13023 components: - type: Transform pos: 1.5,-18.5 parent: 2 - proto: SignDirectionalFood entities: - - uid: 12597 + - uid: 13024 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 12598 + - uid: 13025 components: - type: Transform rot: 3.141592653589793 rad @@ -85361,56 +84804,56 @@ entities: parent: 2 - proto: SignDirectionalHop entities: - - uid: 7357 + - uid: 13026 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-256.5 parent: 2 - - uid: 12613 + - uid: 13027 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-134.5 parent: 2 - - uid: 12614 + - uid: 13028 components: - type: Transform pos: -0.5,-99.5 parent: 2 - proto: SignDirectionalHydro entities: - - uid: 12599 + - uid: 13029 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-85.5 parent: 2 - - uid: 12602 + - uid: 13030 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-107.5 parent: 2 - - uid: 12604 + - uid: 13031 components: - type: Transform pos: -0.5,-72.5 parent: 2 - proto: SignDirectionalJanitor entities: - - uid: 7507 + - uid: 13032 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-56.5 parent: 2 - - uid: 12625 + - uid: 13033 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 12626 + - uid: 13034 components: - type: Transform rot: 3.141592653589793 rad @@ -85418,37 +84861,37 @@ entities: parent: 2 - proto: SignDirectionalLibrary entities: - - uid: 3619 + - uid: 13035 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-161.5 parent: 2 - - uid: 12628 + - uid: 13036 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-138.5 parent: 2 - - uid: 12630 + - uid: 13037 components: - type: Transform pos: 1.5,-126.5 parent: 2 - proto: SignDirectionalMed entities: - - uid: 12627 + - uid: 13038 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 12635 + - uid: 13039 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-188.5 parent: 2 - - uid: 13307 + - uid: 13040 components: - type: Transform rot: -1.5707963267948966 rad @@ -85456,12 +84899,12 @@ entities: parent: 2 - proto: SignDirectionalSalvage entities: - - uid: 12655 + - uid: 13041 components: - type: Transform pos: -0.5,-261.5 parent: 2 - - uid: 12658 + - uid: 13042 components: - type: Transform rot: 3.141592653589793 rad @@ -85469,18 +84912,18 @@ entities: parent: 2 - proto: SignDirectionalSci entities: - - uid: 8174 + - uid: 13043 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-190.5 parent: 2 - - uid: 12659 + - uid: 13044 components: - type: Transform pos: -0.5,-288.5 parent: 2 - - uid: 12660 + - uid: 13045 components: - type: Transform rot: 3.141592653589793 rad @@ -85488,32 +84931,32 @@ entities: parent: 2 - proto: SignDirectionalSec entities: - - uid: 12661 + - uid: 13046 components: - type: Transform pos: -0.5,-347.5 parent: 2 - proto: SignDirectionalSolar entities: - - uid: 12673 + - uid: 13047 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-242.5 parent: 2 - - uid: 12674 + - uid: 13048 components: - type: Transform pos: 1.5,-207.5 parent: 2 - proto: SignDirectionalSupply entities: - - uid: 12675 + - uid: 13049 components: - type: Transform pos: 1.5,-261.5 parent: 2 - - uid: 12676 + - uid: 13050 components: - type: Transform rot: 3.141592653589793 rad @@ -85521,7 +84964,7 @@ entities: parent: 2 - proto: SignDirectionalWash entities: - - uid: 12680 + - uid: 13051 components: - type: Transform rot: -1.5707963267948966 rad @@ -85529,85 +84972,85 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 3899 + - uid: 13052 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-341.5 parent: 2 - - uid: 9388 + - uid: 13053 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-361.5 parent: 2 - - uid: 12490 + - uid: 13054 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-98.5 parent: 2 - - uid: 12543 + - uid: 13055 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 2 - - uid: 12544 + - uid: 13056 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-43.5 parent: 2 - - uid: 12545 + - uid: 13057 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-55.5 parent: 2 - - uid: 12550 + - uid: 13058 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-111.5 parent: 2 - - uid: 12554 + - uid: 13059 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-152.5 parent: 2 - - uid: 12558 + - uid: 13060 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-162.5 parent: 2 - - uid: 12560 + - uid: 13061 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-188.5 parent: 2 - - uid: 12562 + - uid: 13062 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-220.5 parent: 2 - - uid: 12563 + - uid: 13063 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-228.5 parent: 2 - - uid: 12570 + - uid: 13064 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-286.5 parent: 2 - - uid: 12571 + - uid: 13065 components: - type: Transform rot: 3.141592653589793 rad @@ -85615,7 +85058,7 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 398 + - uid: 13066 components: - type: Transform rot: 1.5707963267948966 rad @@ -85623,34 +85066,34 @@ entities: parent: 2 - proto: SignHead entities: - - uid: 12607 + - uid: 13067 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 12608 + - uid: 13068 components: - type: Transform pos: -2.5,-119.5 parent: 2 - - uid: 12610 + - uid: 13069 components: - type: Transform pos: 4.5,-283.5 parent: 2 - - uid: 12611 + - uid: 13070 components: - type: Transform pos: -7.5,-304.5 parent: 2 - - uid: 12612 + - uid: 13071 components: - type: Transform pos: -3.5,-343.5 parent: 2 - proto: SignInterrogation entities: - - uid: 12624 + - uid: 13072 components: - type: Transform rot: 3.141592653589793 rad @@ -85658,7 +85101,7 @@ entities: parent: 2 - proto: SignJanitor entities: - - uid: 539 + - uid: 13073 components: - type: Transform rot: 3.141592653589793 rad @@ -85666,7 +85109,7 @@ entities: parent: 2 - proto: SignLawyer entities: - - uid: 11212 + - uid: 13074 components: - type: Transform rot: 3.141592653589793 rad @@ -85674,7 +85117,7 @@ entities: parent: 2 - proto: SignLibrary entities: - - uid: 12629 + - uid: 13075 components: - type: Transform rot: -1.5707963267948966 rad @@ -85682,12 +85125,12 @@ entities: parent: 2 - proto: SignMedical entities: - - uid: 7194 + - uid: 13076 components: - type: Transform pos: 2.5,-177.5 parent: 2 - - uid: 12634 + - uid: 13077 components: - type: Transform rot: 3.141592653589793 rad @@ -85695,7 +85138,7 @@ entities: parent: 2 - proto: SignMorgue entities: - - uid: 12632 + - uid: 13078 components: - type: Transform rot: 3.141592653589793 rad @@ -85703,81 +85146,81 @@ entities: parent: 2 - proto: SignNosmoking entities: - - uid: 11345 + - uid: 13079 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-294.5 parent: 2 - - uid: 11370 + - uid: 13080 components: - type: Transform pos: -0.5,-290.5 parent: 2 - - uid: 11377 + - uid: 13081 components: - type: Transform pos: 1.5,-213.5 parent: 2 - - uid: 11383 + - uid: 13082 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-326.5 parent: 2 - - uid: 11384 + - uid: 13083 components: - type: Transform pos: -0.5,-236.5 parent: 2 - - uid: 11417 + - uid: 13084 components: - type: Transform pos: -0.5,-209.5 parent: 2 - - uid: 11418 + - uid: 13085 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-322.5 parent: 2 - - uid: 12638 + - uid: 13086 components: - type: Transform pos: 1.5,-353.5 parent: 2 - - uid: 12639 + - uid: 13087 components: - type: Transform pos: -0.5,-349.5 parent: 2 - - uid: 12640 + - uid: 13088 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-380.5 parent: 2 - - uid: 12679 + - uid: 13089 components: - type: Transform pos: 1.5,-240.5 parent: 2 - proto: SignPlaque entities: - - uid: 3748 + - uid: 13090 components: - type: Transform pos: -2.5,-0.5 parent: 2 - proto: SignPrison entities: - - uid: 13410 + - uid: 13091 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-367.5 parent: 2 - - uid: 13411 + - uid: 13092 components: - type: Transform rot: -1.5707963267948966 rad @@ -85785,13 +85228,13 @@ entities: parent: 2 - proto: SignRedEight entities: - - uid: 6613 + - uid: 13093 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40827185,-213.49608 parent: 2 - - uid: 6614 + - uid: 13094 components: - type: Transform rot: 3.141592653589793 rad @@ -85799,13 +85242,13 @@ entities: parent: 2 - proto: SignRedFive entities: - - uid: 1354 + - uid: 13095 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5861752,-155.49748 parent: 2 - - uid: 4105 + - uid: 13096 components: - type: Transform rot: 3.141592653589793 rad @@ -85813,19 +85256,19 @@ entities: parent: 2 - proto: SignRedFour entities: - - uid: 4101 + - uid: 13097 components: - type: Transform rot: 3.141592653589793 rad pos: -0.41395348,-105.500565 parent: 2 - - uid: 4102 + - uid: 13098 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5827098,-128.49553 parent: 2 - - uid: 7056 + - uid: 13099 components: - type: Transform rot: -1.5707963267948966 rad @@ -85833,19 +85276,19 @@ entities: parent: 2 - proto: SignRedNine entities: - - uid: 6621 + - uid: 13100 components: - type: Transform rot: 3.141592653589793 rad pos: -0.4074493,-240.49269 parent: 2 - - uid: 6622 + - uid: 13101 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5921938,-263.49698 parent: 2 - - uid: 8449 + - uid: 13102 components: - type: Transform rot: 1.5707963267948966 rad @@ -85853,79 +85296,79 @@ entities: parent: 2 - proto: SignRedOne entities: - - uid: 4078 + - uid: 13103 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5852656,-47.503147 parent: 2 - - uid: 4089 + - uid: 13104 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40152162,-24.502266 parent: 2 - - uid: 7857 + - uid: 13105 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.4400425,-190.7712 parent: 2 - - uid: 8125 + - uid: 13106 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.655262,-190.7712 parent: 2 - - uid: 8974 + - uid: 13107 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.65059656,-267.50113 parent: 2 - - uid: 10625 + - uid: 13108 components: - type: Transform pos: 1.3436816,-290.4902 parent: 2 - - uid: 10626 + - uid: 13109 components: - type: Transform pos: -0.6467193,-294.49783 parent: 2 - - uid: 10627 + - uid: 13110 components: - type: Transform pos: -0.39628136,-294.49783 parent: 2 - - uid: 10628 + - uid: 13111 components: - type: Transform pos: 1.3480468,-322.4933 parent: 2 - - uid: 10629 + - uid: 13112 components: - type: Transform pos: 1.5945721,-322.4972 parent: 2 - - uid: 10630 + - uid: 13113 components: - type: Transform pos: -0.66275233,-326.49893 parent: 2 - - uid: 11810 + - uid: 13114 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.3482165,-349.49252 parent: 2 - - uid: 11811 + - uid: 13115 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.6562117,-353.50278 parent: 2 - - uid: 11815 + - uid: 13116 components: - type: Transform rot: 1.5707963267948966 rad @@ -85933,19 +85376,19 @@ entities: parent: 2 - proto: SignRedSeven entities: - - uid: 4114 + - uid: 13117 components: - type: Transform rot: 3.141592653589793 rad pos: -0.40892178,-186.50111 parent: 2 - - uid: 6612 + - uid: 13118 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5926433,-209.5081 parent: 2 - - uid: 8933 + - uid: 13119 components: - type: Transform rot: 1.5707963267948966 rad @@ -85953,13 +85396,13 @@ entities: parent: 2 - proto: SignRedSix entities: - - uid: 737 + - uid: 13120 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5832694,-182.49539 parent: 2 - - uid: 1339 + - uid: 13121 components: - type: Transform rot: 3.141592653589793 rad @@ -85967,25 +85410,25 @@ entities: parent: 2 - proto: SignRedThree entities: - - uid: 4084 + - uid: 13122 components: - type: Transform rot: 3.141592653589793 rad pos: 1.588459,-101.49657 parent: 2 - - uid: 4093 + - uid: 13123 components: - type: Transform rot: 3.141592653589793 rad pos: -0.41010725,-78.500275 parent: 2 - - uid: 11812 + - uid: 13124 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.41125554,-353.50778 parent: 2 - - uid: 11814 + - uid: 13125 components: - type: Transform rot: 1.5707963267948966 rad @@ -85993,24 +85436,24 @@ entities: parent: 2 - proto: SignRedTwo entities: - - uid: 4081 + - uid: 13126 components: - type: Transform rot: 3.141592653589793 rad pos: -0.4081869,-51.5101 parent: 2 - - uid: 4082 + - uid: 13127 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5891788,-74.492035 parent: 2 - - uid: 10631 + - uid: 13128 components: - type: Transform pos: -0.40840113,-326.49893 parent: 2 - - uid: 11807 + - uid: 13129 components: - type: Transform rot: 1.5707963267948966 rad @@ -86018,150 +85461,150 @@ entities: parent: 2 - proto: SignRedZero entities: - - uid: 716 + - uid: 13130 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6534249,-159.49841 parent: 2 - - uid: 866 + - uid: 13131 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3433123,-182.50206 parent: 2 - - uid: 871 + - uid: 13132 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3428853,-155.49748 parent: 2 - - uid: 4073 + - uid: 13133 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5774398,-20.510248 parent: 2 - - uid: 4074 + - uid: 13134 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3465674,-20.503857 parent: 2 - - uid: 4075 + - uid: 13135 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64673156,-78.49695 parent: 2 - - uid: 4079 + - uid: 13136 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3543932,-47.503147 parent: 2 - - uid: 4080 + - uid: 13137 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6514768,-51.50535 parent: 2 - - uid: 4083 + - uid: 13138 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.3504801,-74.492035 parent: 2 - - uid: 4088 + - uid: 13139 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64814395,-24.502266 parent: 2 - - uid: 4095 + - uid: 13140 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3433409,-101.495316 parent: 2 - - uid: 4096 + - uid: 13141 components: - type: Transform rot: 3.141592653589793 rad pos: -0.64724535,-105.49722 parent: 2 - - uid: 4103 + - uid: 13142 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3494184,-128.49886 parent: 2 - - uid: 4104 + - uid: 13143 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6562591,-132.49622 parent: 2 - - uid: 4107 + - uid: 13144 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6522116,-186.49445 parent: 2 - - uid: 5423 + - uid: 13145 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6627056,-213.4963 parent: 2 - - uid: 5424 + - uid: 13146 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3530763,-209.50024 parent: 2 - - uid: 6615 + - uid: 13147 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3327662,-236.4863 parent: 2 - - uid: 6616 + - uid: 13148 components: - type: Transform rot: 3.141592653589793 rad pos: -0.6607372,-240.49602 parent: 2 - - uid: 6623 + - uid: 13149 components: - type: Transform rot: 3.141592653589793 rad pos: 1.3455713,-263.49365 parent: 2 - - uid: 7362 + - uid: 13150 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5789645,-256.74753 parent: 2 - - uid: 8130 + - uid: 13151 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.6912138,-115.74884 parent: 2 - - uid: 8971 + - uid: 13152 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.42397034,-267.50113 parent: 2 - - uid: 10624 + - uid: 13153 components: - type: Transform pos: 1.5823798,-290.49802 parent: 2 - - uid: 13306 + - uid: 13154 components: - type: Transform rot: -1.5707963267948966 rad @@ -86169,7 +85612,7 @@ entities: parent: 2 - proto: SignRND entities: - - uid: 12651 + - uid: 13155 components: - type: Transform rot: 3.141592653589793 rad @@ -86177,7 +85620,7 @@ entities: parent: 2 - proto: SignRobo entities: - - uid: 12654 + - uid: 13156 components: - type: Transform rot: 3.141592653589793 rad @@ -86185,85 +85628,85 @@ entities: parent: 2 - proto: SignSecureMed entities: - - uid: 103 + - uid: 13157 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 12662 + - uid: 13158 components: - type: Transform pos: -3.5,-326.5 parent: 2 - - uid: 12663 + - uid: 13159 components: - type: Transform pos: 4.5,-326.5 parent: 2 - - uid: 12664 + - uid: 13160 components: - type: Transform pos: -3.5,-349.5 parent: 2 - - uid: 12665 + - uid: 13161 components: - type: Transform pos: 4.5,-349.5 parent: 2 - - uid: 12666 + - uid: 13162 components: - type: Transform pos: 4.5,-353.5 parent: 2 - - uid: 12667 + - uid: 13163 components: - type: Transform pos: -3.5,-353.5 parent: 2 - - uid: 12668 + - uid: 13164 components: - type: Transform pos: -3.5,-376.5 parent: 2 - - uid: 12670 + - uid: 13165 components: - type: Transform pos: 4.5,-376.5 parent: 2 - proto: SignSecureSmallRed entities: - - uid: 12671 + - uid: 13166 components: - type: Transform pos: -3.5,-380.5 parent: 2 - - uid: 12672 + - uid: 13167 components: - type: Transform pos: 4.5,-380.5 parent: 2 - proto: SignSecurity entities: - - uid: 7721 + - uid: 13168 components: - type: Transform pos: 2.5,-334.5 parent: 2 - proto: SignShipDock entities: - - uid: 12535 + - uid: 13169 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-30.5 parent: 2 - - uid: 12538 + - uid: 13170 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-42.5 parent: 2 - - uid: 12539 + - uid: 13171 components: - type: Transform rot: -1.5707963267948966 rad @@ -86271,72 +85714,72 @@ entities: parent: 2 - proto: SignSmoking entities: - - uid: 3397 + - uid: 13172 components: - type: Transform pos: -0.5,-182.5 parent: 2 - - uid: 4071 + - uid: 13173 components: - type: Transform pos: 1.5,-132.5 parent: 2 - - uid: 4076 + - uid: 13174 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 4077 + - uid: 13175 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 4085 + - uid: 13176 components: - type: Transform pos: 1.5,-105.5 parent: 2 - - uid: 4087 + - uid: 13177 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 4090 + - uid: 13178 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 4091 + - uid: 13179 components: - type: Transform pos: -0.5,-128.5 parent: 2 - - uid: 4092 + - uid: 13180 components: - type: Transform pos: -0.5,-101.5 parent: 2 - - uid: 4097 + - uid: 13181 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 4098 + - uid: 13182 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 4099 + - uid: 13183 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 4100 + - uid: 13184 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 4142 + - uid: 13185 components: - type: Transform rot: -1.5707963267948966 rad @@ -86344,69 +85787,69 @@ entities: parent: 2 - proto: SignSpace entities: - - uid: 12695 + - uid: 13186 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-316.5 parent: 2 - - uid: 12696 + - uid: 13187 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-312.5 parent: 2 - - uid: 13444 + - uid: 13188 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 13446 + - uid: 13189 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 13448 + - uid: 13190 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 13456 + - uid: 13191 components: - type: Transform pos: 4.5,-153.5 parent: 2 - - uid: 13461 + - uid: 13192 components: - type: Transform pos: -3.5,-242.5 parent: 2 - - uid: 13463 + - uid: 13193 components: - type: Transform pos: 6.5,-269.5 parent: 2 - - uid: 13464 + - uid: 13194 components: - type: Transform pos: 6.5,-288.5 parent: 2 - - uid: 13465 + - uid: 13195 components: - type: Transform pos: 6.5,-295.5 parent: 2 - - uid: 13466 + - uid: 13196 components: - type: Transform pos: 4.5,-320.5 parent: 2 - - uid: 13468 + - uid: 13197 components: - type: Transform pos: -3.5,-327.5 parent: 2 - - uid: 15188 + - uid: 13198 components: - type: Transform rot: -1.5707963267948966 rad @@ -86414,7 +85857,7 @@ entities: parent: 2 - proto: SignTelecomms entities: - - uid: 12677 + - uid: 13199 components: - type: Transform rot: 3.141592653589793 rad @@ -86422,7 +85865,7 @@ entities: parent: 2 - proto: SignVirology entities: - - uid: 3876 + - uid: 13200 components: - type: Transform rot: 3.141592653589793 rad @@ -86430,39 +85873,39 @@ entities: parent: 2 - proto: SilverOre1 entities: - - uid: 10117 + - uid: 13201 components: - type: Transform pos: -4.418913,-304.40326 parent: 2 - proto: SingularityGenerator entities: - - uid: 7464 + - uid: 13202 components: - type: Transform pos: 19.5,-239.5 parent: 2 - proto: Sink entities: - - uid: 2865 + - uid: 13203 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-153.5 parent: 2 - - uid: 11477 + - uid: 13204 components: - type: Transform pos: 5.5,-370.5 parent: 2 - - uid: 11478 + - uid: 13205 components: - type: Transform pos: -4.5,-370.5 parent: 2 - proto: SinkStemlessWater entities: - - uid: 2867 + - uid: 13206 components: - type: Transform rot: 3.141592653589793 rad @@ -86470,101 +85913,101 @@ entities: parent: 2 - proto: SinkWide entities: - - uid: 1721 + - uid: 13207 components: - type: Transform pos: -3.5,-53.5 parent: 2 - - uid: 2288 + - uid: 13208 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-63.5 parent: 2 - - uid: 2299 + - uid: 13209 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-90.5 parent: 2 - - uid: 3031 + - uid: 13210 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-85.5 parent: 2 - - uid: 3398 + - uid: 13211 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-84.5 parent: 2 - - uid: 14369 + - uid: 13212 components: - type: Transform pos: 15.5,-59.5 parent: 2 - proto: SmartFridge entities: - - uid: 3068 + - uid: 13213 components: - type: Transform pos: 4.5,-170.5 parent: 2 - proto: SMESBasic entities: - - uid: 756 + - uid: 13214 components: - type: Transform pos: -11.5,-251.5 parent: 2 - - uid: 4169 + - uid: 13215 components: - type: Transform pos: 3.5,-346.5 parent: 2 - - uid: 5385 + - uid: 13216 components: - type: Transform pos: 3.5,-229.5 parent: 2 - - uid: 5434 + - uid: 13217 components: - type: Transform pos: -2.5,-220.5 parent: 2 - - uid: 6748 + - uid: 13218 components: - type: Transform pos: 13.5,-251.5 parent: 2 - - uid: 6815 + - uid: 13219 components: - type: Transform pos: 13.5,-252.5 parent: 2 - - uid: 6816 + - uid: 13220 components: - type: Transform pos: 13.5,-253.5 parent: 2 - proto: SmokingPipeFilledCannabis entities: - - uid: 14923 + - uid: 13221 components: - type: Transform pos: -6.578457,-148.21114 parent: 2 - proto: SmokingPipeFilledTobacco entities: - - uid: 1336 + - uid: 13222 components: - type: Transform pos: 3.2005093,-101.69577 parent: 2 - proto: SodaDispenser entities: - - uid: 1025 + - uid: 13223 components: - type: Transform rot: 3.141592653589793 rad @@ -86572,356 +86015,356 @@ entities: parent: 2 - proto: SolarAssembly entities: - - uid: 4384 + - uid: 13224 components: - type: Transform pos: 8.5,-219.5 parent: 2 - proto: SolarPanel entities: - - uid: 4242 + - uid: 13225 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-220.5 parent: 2 - - uid: 4362 + - uid: 13226 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-221.5 parent: 2 - - uid: 4363 + - uid: 13227 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-222.5 parent: 2 - - uid: 4364 + - uid: 13228 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-223.5 parent: 2 - - uid: 4365 + - uid: 13229 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-224.5 parent: 2 - - uid: 4367 + - uid: 13230 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-226.5 parent: 2 - - uid: 4368 + - uid: 13231 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-227.5 parent: 2 - - uid: 4369 + - uid: 13232 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-228.5 parent: 2 - - uid: 4370 + - uid: 13233 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-229.5 parent: 2 - - uid: 4372 + - uid: 13234 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-220.5 parent: 2 - - uid: 4373 + - uid: 13235 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-221.5 parent: 2 - - uid: 4374 + - uid: 13236 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-222.5 parent: 2 - - uid: 4375 + - uid: 13237 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-223.5 parent: 2 - - uid: 4376 + - uid: 13238 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-224.5 parent: 2 - - uid: 4377 + - uid: 13239 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-225.5 parent: 2 - - uid: 4379 + - uid: 13240 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-227.5 parent: 2 - - uid: 4380 + - uid: 13241 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-228.5 parent: 2 - - uid: 4381 + - uid: 13242 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-229.5 parent: 2 - - uid: 4382 + - uid: 13243 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-217.5 parent: 2 - - uid: 4383 + - uid: 13244 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-218.5 parent: 2 - - uid: 4386 + - uid: 13245 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-221.5 parent: 2 - - uid: 4387 + - uid: 13246 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-222.5 parent: 2 - - uid: 4388 + - uid: 13247 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-223.5 parent: 2 - - uid: 4390 + - uid: 13248 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-225.5 parent: 2 - - uid: 4391 + - uid: 13249 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-226.5 parent: 2 - - uid: 4392 + - uid: 13250 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-227.5 parent: 2 - - uid: 4393 + - uid: 13251 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-228.5 parent: 2 - - uid: 4395 + - uid: 13252 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-230.5 parent: 2 - - uid: 4396 + - uid: 13253 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-231.5 parent: 2 - - uid: 4397 + - uid: 13254 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-232.5 parent: 2 - - uid: 4398 + - uid: 13255 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-232.5 parent: 2 - - uid: 4399 + - uid: 13256 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-231.5 parent: 2 - - uid: 4400 + - uid: 13257 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-230.5 parent: 2 - - uid: 4402 + - uid: 13258 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-228.5 parent: 2 - - uid: 4404 + - uid: 13259 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-226.5 parent: 2 - - uid: 4405 + - uid: 13260 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-225.5 parent: 2 - - uid: 4406 + - uid: 13261 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-224.5 parent: 2 - - uid: 4407 + - uid: 13262 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-223.5 parent: 2 - - uid: 4408 + - uid: 13263 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-222.5 parent: 2 - - uid: 4409 + - uid: 13264 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-221.5 parent: 2 - - uid: 4411 + - uid: 13265 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-219.5 parent: 2 - - uid: 4412 + - uid: 13266 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-218.5 parent: 2 - - uid: 4413 + - uid: 13267 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-217.5 parent: 2 - - uid: 4414 + - uid: 13268 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-215.5 parent: 2 - - uid: 4418 + - uid: 13269 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-234.5 parent: 2 - - uid: 4421 + - uid: 13270 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-234.5 parent: 2 - - uid: 4422 + - uid: 13271 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-233.5 parent: 2 - - uid: 4423 + - uid: 13272 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-231.5 parent: 2 - - uid: 4424 + - uid: 13273 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-230.5 parent: 2 - - uid: 4425 + - uid: 13274 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-231.5 parent: 2 - - uid: 4426 + - uid: 13275 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-230.5 parent: 2 - - uid: 4427 + - uid: 13276 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-233.5 parent: 2 - - uid: 4428 + - uid: 13277 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-219.5 parent: 2 - - uid: 4429 + - uid: 13278 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-218.5 parent: 2 - - uid: 4430 + - uid: 13279 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-216.5 parent: 2 - - uid: 4431 + - uid: 13280 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-216.5 parent: 2 - - uid: 4432 + - uid: 13281 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-218.5 parent: 2 - - uid: 4433 + - uid: 13282 components: - type: Transform rot: 1.5707963267948966 rad @@ -86929,25 +86372,25 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 4366 + - uid: 13283 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-225.5 parent: 2 - - uid: 4389 + - uid: 13284 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-224.5 parent: 2 - - uid: 4809 + - uid: 13285 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-227.5 parent: 2 - - uid: 4812 + - uid: 13286 components: - type: Transform rot: 3.141592653589793 rad @@ -86955,74 +86398,74 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 4417 + - uid: 13287 components: - type: Transform pos: -3.5,-214.5 parent: 2 - - uid: 4807 + - uid: 13288 components: - type: Transform pos: -3.5,-235.5 parent: 2 - - uid: 4808 + - uid: 13289 components: - type: Transform pos: 4.5,-235.5 parent: 2 - proto: SolidSecretDoor entities: - - uid: 2623 + - uid: 13290 components: - type: Transform pos: -3.5,-149.5 parent: 2 - proto: SpaceCash10 entities: - - uid: 14418 + - uid: 13291 components: - type: Transform pos: 14.544594,-78.46228 parent: 2 - - uid: 14473 + - uid: 13292 components: - type: Transform pos: 14.3597,-78.22464 parent: 2 - - uid: 14474 + - uid: 13293 components: - type: Transform pos: 13.567299,-82.76628 parent: 2 - proto: SpaceCash100 entities: - - uid: 14475 + - uid: 13294 components: - type: Transform pos: 17.648165,-82.3042 parent: 2 - proto: SpaceHeater entities: - - uid: 2335 + - uid: 13295 components: - type: Transform pos: -11.5,-256.5 parent: 2 - - uid: 2390 + - uid: 13296 components: - type: Transform pos: -11.5,-255.5 parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - - uid: 15272 + - uid: 13297 components: - type: Transform pos: 6.583322,-242.507 parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 7558 + - uid: 13298 components: - type: Transform rot: -1.5707963267948966 rad @@ -87030,7 +86473,7 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 15273 + - uid: 13299 components: - type: Transform pos: 5.5,-242.5 @@ -87039,35 +86482,35 @@ entities: enabled: False - proto: SpawnMobAlexander entities: - - uid: 2310 + - uid: 13300 components: - type: Transform pos: 0.5,-87.5 parent: 2 - proto: SpawnMobBandito entities: - - uid: 12155 + - uid: 13301 components: - type: Transform pos: -2.5,-305.5 parent: 2 - proto: SpawnMobCat entities: - - uid: 7208 + - uid: 13302 components: - type: Transform pos: 0.5,-203.5 parent: 2 - proto: SpawnMobCorgi entities: - - uid: 2237 + - uid: 13303 components: - type: Transform pos: 1.5,-117.5 parent: 2 - proto: SpawnMobCow entities: - - uid: 43 + - uid: 13304 components: - type: Transform rot: 3.141592653589793 rad @@ -87075,93 +86518,79 @@ entities: parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 14576 + - uid: 13305 components: - type: Transform pos: -15.5,-265.5 parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 12121 + - uid: 13306 components: - type: Transform pos: -1.5,-11.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 6770 + - uid: 13307 components: - type: Transform pos: -0.5,-363.5 parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 3102 - components: - - type: Transform - pos: 1.5,-167.5 - parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 13626 + - uid: 13308 components: - type: Transform pos: -0.5,-61.5 parent: 2 - proto: SpawnMobMouse entities: - - uid: 4147 + - uid: 13309 components: - type: Transform pos: -3.5,-39.5 parent: 2 - - uid: 6842 + - uid: 13310 components: - type: Transform pos: 3.5,-112.5 parent: 2 - - uid: 8928 + - uid: 13311 components: - type: Transform pos: -4.5,-179.5 parent: 2 - - uid: 8970 + - uid: 13312 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 9385 + - uid: 13313 components: - type: Transform pos: 5.5,-67.5 parent: 2 - - uid: 15749 + - uid: 13314 components: - type: Transform pos: -4.5,-146.5 parent: 2 - proto: SpawnMobPossumMorty entities: - - uid: 2709 + - uid: 13315 components: - type: Transform pos: 5.5,-139.5 parent: 2 - - uid: 12154 + - uid: 13316 components: - type: Transform pos: -3.5,-176.5 parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - - uid: 5881 - components: - - type: Transform - pos: 4.5,-280.5 - parent: 2 - proto: SpawnMobShiva entities: - - uid: 8229 + - uid: 13317 components: - type: Transform rot: -1.5707963267948966 rad @@ -87169,515 +86598,515 @@ entities: parent: 2 - proto: SpawnMobSlothPaperwork entities: - - uid: 12157 + - uid: 13318 components: - type: Transform pos: -2.5,-144.5 parent: 2 - proto: SpawnMobSmile entities: - - uid: 10536 + - uid: 13319 components: - type: Transform pos: -8.5,-304.5 parent: 2 - proto: SpawnMobWalter entities: - - uid: 12148 + - uid: 13320 components: - type: Transform pos: 6.5,-166.5 parent: 2 - proto: SpawnPointAtmos entities: - - uid: 16583 + - uid: 13321 components: - type: Transform pos: -14.5,-264.5 parent: 2 - - uid: 16585 + - uid: 13322 components: - type: Transform pos: -14.5,-263.5 parent: 2 - - uid: 16586 + - uid: 13323 components: - type: Transform pos: -14.5,-262.5 parent: 2 - proto: SpawnPointBartender entities: - - uid: 11976 + - uid: 13324 components: - type: Transform pos: 4.5,-64.5 parent: 2 - proto: SpawnPointBorg entities: - - uid: 12076 + - uid: 13325 components: - type: Transform pos: 3.5,-312.5 parent: 2 - - uid: 12077 + - uid: 13326 components: - type: Transform pos: 3.5,-314.5 parent: 2 - proto: SpawnPointBotanist entities: - - uid: 11977 + - uid: 13327 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 11978 + - uid: 13328 components: - type: Transform pos: -6.5,-84.5 parent: 2 - proto: SpawnPointCaptain entities: - - uid: 11971 + - uid: 13329 components: - type: Transform pos: -0.5,-14.5 parent: 2 - proto: SpawnPointCargoTechnician entities: - - uid: 14231 + - uid: 13330 components: - type: Transform pos: 2.5,-278.5 parent: 2 - - uid: 14234 + - uid: 13331 components: - type: Transform pos: 3.5,-272.5 parent: 2 - - uid: 14235 + - uid: 13332 components: - type: Transform pos: 6.5,-280.5 parent: 2 - proto: SpawnPointChaplain entities: - - uid: 11982 + - uid: 13333 components: - type: Transform pos: 6.5,-139.5 parent: 2 - proto: SpawnPointChef entities: - - uid: 11979 + - uid: 13334 components: - type: Transform pos: 4.5,-89.5 parent: 2 - proto: SpawnPointChemist entities: - - uid: 12032 + - uid: 13335 components: - type: Transform pos: 4.5,-166.5 parent: 2 - - uid: 12033 + - uid: 13336 components: - type: Transform pos: 6.5,-168.5 parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 4806 + - uid: 13337 components: - type: Transform pos: 10.5,-250.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 4112 + - uid: 13338 components: - type: Transform pos: 0.5,-202.5 parent: 2 - proto: SpawnPointClown entities: - - uid: 12071 + - uid: 13339 components: - type: Transform pos: -6.5,-124.5 parent: 2 - proto: SpawnPointDetective entities: - - uid: 2502 + - uid: 13340 components: - type: Transform pos: -5.5,-73.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 11972 + - uid: 13341 components: - type: Transform pos: -0.5,-116.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 12054 + - uid: 13342 components: - type: Transform pos: -2.5,-344.5 parent: 2 - proto: SpawnPointJanitor entities: - - uid: 11985 + - uid: 13343 components: - type: Transform pos: -3.5,-54.5 parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 12078 + - uid: 13344 components: - type: Transform pos: -6.5,-107.5 parent: 2 - - uid: 12706 + - uid: 13345 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 12707 + - uid: 13346 components: - type: Transform pos: -3.5,-30.5 parent: 2 - - uid: 12708 + - uid: 13347 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 12709 + - uid: 13348 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 12710 + - uid: 13349 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 12711 + - uid: 13350 components: - type: Transform pos: 3.5,-42.5 parent: 2 - proto: SpawnPointLawyer entities: - - uid: 12063 + - uid: 13351 components: - type: Transform pos: 5.5,-329.5 parent: 2 - - uid: 12067 + - uid: 13352 components: - type: Transform pos: 5.5,-331.5 parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 11984 + - uid: 13353 components: - type: Transform pos: -5.5,-135.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 12034 + - uid: 13354 components: - type: Transform pos: -3.5,-173.5 parent: 2 - - uid: 12035 + - uid: 13355 components: - type: Transform pos: 8.5,-174.5 parent: 2 - - uid: 12036 + - uid: 13356 components: - type: Transform pos: 3.5,-172.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 12037 + - uid: 13357 components: - type: Transform pos: 8.5,-172.5 parent: 2 - - uid: 12038 + - uid: 13358 components: - type: Transform pos: 3.5,-174.5 parent: 2 - proto: SpawnPointMime entities: - - uid: 12072 + - uid: 13359 components: - type: Transform pos: -6.5,-121.5 parent: 2 - proto: SpawnPointMusician entities: - - uid: 8927 + - uid: 13360 components: - type: Transform pos: -5.5,-65.5 parent: 2 - proto: SpawnPointObserver entities: - - uid: 12079 + - uid: 13361 components: - type: Transform pos: -0.5,-62.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 12068 + - uid: 13362 components: - type: Transform pos: -8.5,-115.5 parent: 2 - - uid: 12069 + - uid: 13363 components: - type: Transform pos: -6.5,-118.5 parent: 2 - - uid: 12070 + - uid: 13364 components: - type: Transform pos: -6.5,-112.5 parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 14229 + - uid: 13365 components: - type: Transform pos: 4.5,-285.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 3364 + - uid: 13366 components: - type: Transform pos: -0.5,-312.5 parent: 2 - - uid: 12053 + - uid: 13367 components: - type: Transform pos: 1.5,-301.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 12039 + - uid: 13368 components: - type: Transform pos: -9.5,-302.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 14230 + - uid: 13369 components: - type: Transform pos: -3.5,-287.5 parent: 2 - - uid: 14232 + - uid: 13370 components: - type: Transform pos: -5.5,-285.5 parent: 2 - - uid: 14233 + - uid: 13371 components: - type: Transform pos: -5.5,-273.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 12047 + - uid: 13372 components: - type: Transform pos: -2.5,-302.5 parent: 2 - - uid: 12048 + - uid: 13373 components: - type: Transform pos: 4.5,-303.5 parent: 2 - - uid: 12049 + - uid: 13374 components: - type: Transform pos: 6.5,-313.5 parent: 2 - - uid: 12050 + - uid: 13375 components: - type: Transform pos: -7.5,-318.5 parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 9497 + - uid: 13376 components: - type: Transform pos: -5.5,-337.5 parent: 2 - - uid: 12874 + - uid: 13377 components: - type: Transform pos: 2.5,-337.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 1669 + - uid: 13378 components: - type: Transform pos: -7.5,-338.5 parent: 2 - - uid: 10808 + - uid: 13379 components: - type: Transform pos: -6.5,-337.5 parent: 2 - - uid: 12059 + - uid: 13380 components: - type: Transform pos: -0.5,-344.5 parent: 2 - - uid: 12060 + - uid: 13381 components: - type: Transform pos: -0.5,-346.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 11867 + - uid: 13382 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 11986 + - uid: 13383 components: - type: Transform pos: -3.5,-62.5 parent: 2 - - uid: 14325 + - uid: 13384 components: - type: Transform pos: 15.5,-61.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 4851 + - uid: 13385 components: - type: Transform pos: 6.5,-252.5 parent: 2 - - uid: 8780 + - uid: 13386 components: - type: Transform pos: 4.5,-252.5 parent: 2 - - uid: 9023 + - uid: 13387 components: - type: Transform pos: 6.5,-253.5 parent: 2 - - uid: 10931 + - uid: 13388 components: - type: Transform pos: 5.5,-251.5 parent: 2 - - uid: 12205 + - uid: 13389 components: - type: Transform pos: 4.5,-253.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 2484 + - uid: 13390 components: - type: Transform pos: -2.5,-249.5 parent: 2 - - uid: 4350 + - uid: 13391 components: - type: Transform pos: 1.5,-247.5 parent: 2 - - uid: 6660 + - uid: 13392 components: - type: Transform pos: -2.5,-250.5 parent: 2 - proto: SpawnPointWarden entities: - - uid: 12055 + - uid: 13393 components: - type: Transform pos: 0.5,-364.5 parent: 2 - proto: SpawnVendingMachineRestockDrink entities: - - uid: 1714 + - uid: 13394 components: - type: Transform pos: -5.5,-39.5 parent: 2 - proto: SpawnVendingMachineRestockFood entities: - - uid: 1585 + - uid: 13395 components: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 2437 + - uid: 13396 components: - type: Transform pos: 6.5,-108.5 parent: 2 - proto: SpeedLoaderCap entities: - - uid: 14635 + - uid: 13397 components: - type: Transform pos: -2.3873794,-259.3928 parent: 2 - proto: SpiderWeb entities: - - uid: 1548 + - uid: 13398 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-28.5 parent: 2 - - uid: 14776 + - uid: 13399 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 - - uid: 14777 + - uid: 13400 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-32.5 parent: 2 - - uid: 14778 + - uid: 13401 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-34.5 parent: 2 - - uid: 14779 + - uid: 13402 components: - type: Transform rot: -1.5707963267948966 rad @@ -87685,37 +87114,37 @@ entities: parent: 2 - proto: StairStage entities: - - uid: 510 + - uid: 13403 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-36.5 parent: 2 - - uid: 604 + - uid: 13404 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 693 + - uid: 13405 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-31.5 parent: 2 - - uid: 694 + - uid: 13406 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-29.5 parent: 2 - - uid: 8821 + - uid: 13407 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-273.5 parent: 2 - - uid: 8822 + - uid: 13408 components: - type: Transform rot: 1.5707963267948966 rad @@ -87723,107 +87152,107 @@ entities: parent: 2 - proto: StasisBed entities: - - uid: 3119 + - uid: 13409 components: - type: Transform pos: 8.5,-178.5 parent: 2 - proto: StationMap entities: - - uid: 2859 + - uid: 13410 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-118.5 parent: 2 - - uid: 2860 + - uid: 13411 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-145.5 parent: 2 - - uid: 2862 + - uid: 13412 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-55.5 parent: 2 - - uid: 2863 + - uid: 13413 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-45.5 parent: 2 - - uid: 2864 + - uid: 13414 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 2866 + - uid: 13415 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-14.5 parent: 2 - - uid: 3156 + - uid: 13416 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-170.5 parent: 2 - - uid: 4003 + - uid: 13417 components: - type: Transform pos: 1.5,-204.5 parent: 2 - - uid: 6821 + - uid: 13418 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-253.5 parent: 2 - - uid: 8664 + - uid: 13419 components: - type: Transform pos: -2.5,-306.5 parent: 2 - - uid: 11795 + - uid: 13420 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-275.5 parent: 2 - - uid: 11803 + - uid: 13421 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-222.5 parent: 2 - - uid: 11804 + - uid: 13422 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-195.5 parent: 2 - - uid: 12217 + - uid: 13423 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-337.5 parent: 2 - - uid: 14787 + - uid: 13424 components: - type: Transform pos: 6.5,-80.5 parent: 2 - proto: StationMapBroken entities: - - uid: 3186 + - uid: 13425 components: - type: Transform pos: -7.5,-170.5 parent: 2 - - uid: 9703 + - uid: 13426 components: - type: Transform rot: 1.5707963267948966 rad @@ -87831,49 +87260,49 @@ entities: parent: 2 - proto: StatueVenusBlue entities: - - uid: 2665 + - uid: 13427 components: - type: Transform pos: 3.5,-141.5 parent: 2 - proto: StatueVenusRed entities: - - uid: 2506 + - uid: 13428 components: - type: Transform pos: 5.5,-141.5 parent: 2 - proto: SteelBench entities: - - uid: 10873 + - uid: 13429 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-337.5 parent: 2 - - uid: 12697 + - uid: 13430 components: - type: Transform pos: 5.5,-306.5 parent: 2 - - uid: 12698 + - uid: 13431 components: - type: Transform pos: 4.5,-306.5 parent: 2 - - uid: 12699 + - uid: 13432 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-308.5 parent: 2 - - uid: 12700 + - uid: 13433 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-308.5 parent: 2 - - uid: 12875 + - uid: 13434 components: - type: Transform rot: -1.5707963267948966 rad @@ -87881,30 +87310,30 @@ entities: parent: 2 - proto: Stool entities: - - uid: 2338 + - uid: 13435 components: - type: Transform pos: -5.5,-337.5 parent: 2 - - uid: 2356 + - uid: 13436 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-342.5 parent: 2 - - uid: 2448 + - uid: 13437 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-339.5 parent: 2 - - uid: 2464 + - uid: 13438 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-335.5 parent: 2 - - uid: 7430 + - uid: 13439 components: - type: Transform rot: -1.5707963267948966 rad @@ -87912,37 +87341,37 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 44 + - uid: 13440 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-87.5 parent: 2 - - uid: 951 + - uid: 13441 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-62.5 parent: 2 - - uid: 1093 + - uid: 13442 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-61.5 parent: 2 - - uid: 1245 + - uid: 13443 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-63.5 parent: 2 - - uid: 1246 + - uid: 13444 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-64.5 parent: 2 - - uid: 5174 + - uid: 13445 components: - type: Transform rot: -1.5707963267948966 rad @@ -87950,115 +87379,115 @@ entities: parent: 2 - proto: StorageCanister entities: - - uid: 7200 + - uid: 13446 components: - type: Transform pos: -21.5,-240.5 parent: 2 - proto: Stunbaton entities: - - uid: 10736 - components: - - type: Transform - pos: -5.4655995,-340.5027 - parent: 2 - - uid: 12775 + - uid: 5608 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15299 + - uid: 13447 + components: + - type: Transform + pos: -5.4655995,-340.5027 + parent: 2 + - uid: 13448 components: - type: Transform pos: -5.6637,-340.33105 parent: 2 - proto: SubstationBasic entities: - - uid: 364 + - uid: 13449 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 726 + - uid: 13450 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 1430 + - uid: 13451 components: - type: Transform pos: 3.5,-53.5 parent: 2 - - uid: 1452 + - uid: 13452 components: - type: Transform pos: -11.5,-252.5 parent: 2 - - uid: 2035 + - uid: 13453 components: - type: Transform pos: -2.5,-99.5 parent: 2 - - uid: 2298 + - uid: 13454 components: - type: Transform pos: 6.5,-111.5 parent: 2 - - uid: 2815 + - uid: 13455 components: - type: Transform pos: 7.5,-153.5 parent: 2 - - uid: 4714 + - uid: 13456 components: - type: Transform pos: -2.5,-161.5 parent: 2 - - uid: 4731 + - uid: 13457 components: - type: Transform pos: 5.5,-187.5 parent: 2 - - uid: 7876 + - uid: 13458 components: - type: Transform pos: 11.5,-250.5 parent: 2 - - uid: 8474 + - uid: 13459 components: - type: Transform pos: 19.5,-265.5 parent: 2 - - uid: 8673 + - uid: 13460 components: - type: Transform pos: 8.5,-284.5 parent: 2 - - uid: 9540 + - uid: 13461 components: - type: Transform pos: 23.5,-306.5 parent: 2 - - uid: 10169 + - uid: 13462 components: - type: Transform pos: -8.5,-297.5 parent: 2 - - uid: 10710 + - uid: 13463 components: - type: Transform pos: 5.5,-346.5 parent: 2 - - uid: 11263 + - uid: 13464 components: - type: Transform pos: 6.5,-361.5 parent: 2 - proto: SubstationWallBasic entities: - - uid: 5460 + - uid: 13465 components: - type: Transform rot: -1.5707963267948966 rad @@ -88066,210 +87495,210 @@ entities: parent: 2 - proto: Sugarcane entities: - - uid: 10997 + - uid: 13466 components: - type: Transform pos: 29.942026,-307.55215 parent: 2 - proto: SuitStorageBasic entities: - - uid: 15156 + - uid: 13467 components: - type: Transform pos: 5.5,-114.5 parent: 2 - - uid: 15171 + - uid: 13468 components: - type: Transform pos: 9.5,-118.5 parent: 2 - proto: SuitStorageCaptain entities: - - uid: 299 + - uid: 13469 components: - type: Transform pos: -3.5,-13.5 parent: 2 - proto: SuitStorageCE entities: - - uid: 13003 + - uid: 13470 components: - type: Transform pos: 11.5,-251.5 parent: 2 - proto: SuitStorageCMO entities: - - uid: 2395 + - uid: 13471 components: - type: Transform pos: -0.5,-203.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 399 + - uid: 13472 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 400 + - uid: 13473 components: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 4990 + - uid: 13474 components: - type: Transform pos: 7.5,-113.5 parent: 2 - - uid: 10084 + - uid: 13475 components: - type: Transform pos: 7.5,-116.5 parent: 2 - - uid: 15155 + - uid: 13476 components: - type: Transform pos: 5.5,-113.5 parent: 2 - - uid: 15157 + - uid: 13477 components: - type: Transform pos: 5.5,-115.5 parent: 2 - - uid: 15158 + - uid: 13478 components: - type: Transform pos: 9.5,-113.5 parent: 2 - - uid: 15159 + - uid: 13479 components: - type: Transform pos: 8.5,-113.5 parent: 2 - - uid: 15168 + - uid: 13480 components: - type: Transform pos: 7.5,-117.5 parent: 2 - - uid: 15169 + - uid: 13481 components: - type: Transform pos: 9.5,-116.5 parent: 2 - - uid: 15170 + - uid: 13482 components: - type: Transform pos: 9.5,-117.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 11446 + - uid: 13483 components: - type: Transform pos: 1.5,-375.5 parent: 2 - - uid: 11447 + - uid: 13484 components: - type: Transform pos: -0.5,-375.5 parent: 2 - proto: SuitStorageHOS entities: - - uid: 11095 + - uid: 13485 components: - type: Transform pos: -5.5,-345.5 parent: 2 - proto: SuitStorageNTSRA entities: - - uid: 7607 + - uid: 13486 components: - type: Transform pos: 14.5,-154.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 9850 + - uid: 13487 components: - type: Transform pos: -9.5,-305.5 parent: 2 - proto: SuitStorageSalv entities: - - uid: 8619 + - uid: 13488 components: - type: Transform pos: -2.5,-269.5 parent: 2 - - uid: 8620 + - uid: 13489 components: - type: Transform pos: -3.5,-269.5 parent: 2 - - uid: 8621 + - uid: 13490 components: - type: Transform pos: -4.5,-269.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 3792 + - uid: 13491 components: - type: Transform pos: 4.5,-343.5 parent: 2 - - uid: 10803 + - uid: 13492 components: - type: Transform pos: 6.5,-335.5 parent: 2 - - uid: 10872 + - uid: 13493 components: - type: Transform pos: 5.5,-335.5 parent: 2 - - uid: 13388 + - uid: 13494 components: - type: Transform pos: 7.5,-343.5 parent: 2 - - uid: 13389 + - uid: 13495 components: - type: Transform pos: 5.5,-343.5 parent: 2 - - uid: 14605 + - uid: 13496 components: - type: Transform pos: 6.5,-343.5 parent: 2 - - uid: 15811 + - uid: 13497 components: - type: Transform pos: 7.5,-335.5 parent: 2 - proto: SuitStorageWarden entities: - - uid: 12864 + - uid: 13498 components: - type: Transform pos: 1.5,-362.5 parent: 2 - proto: SurveillanceCameraCommand entities: - - uid: 2127 + - uid: 13499 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-113.5 parent: 2 - - uid: 7824 + - uid: 13500 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-253.5 parent: 2 - - uid: 8923 + - uid: 13501 components: - type: Transform rot: 3.141592653589793 rad @@ -88280,45 +87709,45 @@ entities: - SurveillanceCameraCommand nameSet: True id: Telecomms - - uid: 11473 + - uid: 13502 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-10.5 parent: 2 - - uid: 11517 + - uid: 13503 components: - type: Transform pos: 0.5,0.5 parent: 2 - - uid: 11528 + - uid: 13504 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 2 - - uid: 11529 + - uid: 13505 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 11684 + - uid: 13506 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 11685 + - uid: 13507 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 parent: 2 - - uid: 11687 + - uid: 13508 components: - type: Transform pos: 4.5,-2.5 parent: 2 - - uid: 11697 + - uid: 13509 components: - type: Transform rot: 3.141592653589793 rad @@ -88326,19 +87755,19 @@ entities: parent: 2 - proto: SurveillanceCameraEngineering entities: - - uid: 8034 + - uid: 13510 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-251.5 parent: 2 - - uid: 8064 + - uid: 13511 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-255.5 parent: 2 - - uid: 8840 + - uid: 13512 components: - type: Transform rot: 3.141592653589793 rad @@ -88346,67 +87775,67 @@ entities: parent: 2 - proto: SurveillanceCameraGeneral entities: - - uid: 3832 + - uid: 13513 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-305.5 parent: 2 - - uid: 11291 + - uid: 13514 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-111.5 parent: 2 - - uid: 11688 + - uid: 13515 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-27.5 parent: 2 - - uid: 11689 + - uid: 13516 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-37.5 parent: 2 - - uid: 11699 + - uid: 13517 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-138.5 parent: 2 - - uid: 11700 + - uid: 13518 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-143.5 parent: 2 - - uid: 11701 + - uid: 13519 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-149.5 parent: 2 - - uid: 11703 + - uid: 13520 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-196.5 parent: 2 - - uid: 11706 + - uid: 13521 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-171.5 parent: 2 - - uid: 11712 + - uid: 13522 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-223.5 parent: 2 - - uid: 11754 + - uid: 13523 components: - type: Transform rot: -1.5707963267948966 rad @@ -88414,7 +87843,7 @@ entities: parent: 2 - proto: SurveillanceCameraMedical entities: - - uid: 7201 + - uid: 13524 components: - type: Transform rot: -1.5707963267948966 rad @@ -88425,104 +87854,104 @@ entities: - SurveillanceCameraMedical nameSet: True id: Morgue - - uid: 11702 + - uid: 13525 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-166.5 parent: 2 - - uid: 11704 + - uid: 13526 components: - type: Transform pos: 6.5,-176.5 parent: 2 - - uid: 11707 + - uid: 13527 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-199.5 parent: 2 - - uid: 11708 + - uid: 13528 components: - type: Transform pos: 0.5,-194.5 parent: 2 - proto: SurveillanceCameraRouterCommand entities: - - uid: 2156 + - uid: 13529 components: - type: Transform pos: 19.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 2250 + - uid: 13530 components: - type: Transform pos: 20.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 2291 + - uid: 13531 components: - type: Transform pos: 24.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 2417 + - uid: 13532 components: - type: Transform pos: 25.5,-315.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 2000 + - uid: 13533 components: - type: Transform pos: 25.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 2184 + - uid: 13534 components: - type: Transform pos: 24.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 2251 + - uid: 13535 components: - type: Transform pos: 20.5,-317.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 2416 + - uid: 13536 components: - type: Transform pos: 19.5,-317.5 parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 11759 + - uid: 13537 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-301.5 parent: 2 - - uid: 11760 + - uid: 13538 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-310.5 parent: 2 - - uid: 11761 + - uid: 13539 components: - type: Transform pos: -5.5,-319.5 parent: 2 - - uid: 11766 + - uid: 13540 components: - type: Transform rot: -1.5707963267948966 rad @@ -88530,116 +87959,115 @@ entities: parent: 2 - proto: SurveillanceCameraSecurity entities: - - uid: 2280 + - uid: 13541 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-342.5 parent: 2 - - uid: 3072 + - uid: 13542 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-336.5 parent: 2 - - uid: 8470 + - uid: 13543 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-335.5 parent: 2 - - uid: 10821 + - uid: 13544 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-335.5 parent: 2 - - uid: 11767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-331.5 - parent: 2 - - uid: 11768 + - uid: 13545 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-329.5 parent: 2 - - uid: 11778 + - uid: 13546 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-356.5 parent: 2 - - uid: 11783 + - uid: 13547 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-356.5 parent: 2 - - uid: 11784 + - uid: 13548 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-356.5 parent: 2 - - uid: 11785 + - uid: 13549 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-366.5 parent: 2 - - uid: 11786 + - uid: 13550 components: - type: Transform pos: -1.5,-373.5 parent: 2 - - uid: 11788 + - uid: 13551 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-362.5 parent: 2 - - uid: 11790 + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-362.5 parent: 2 + - uid: 13553 + components: + - type: Transform + pos: -1.5,-333.5 + parent: 2 - proto: SurveillanceCameraService entities: - - uid: 11691 + - uid: 13554 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-61.5 parent: 2 - - uid: 11692 + - uid: 13555 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-60.5 parent: 2 - - uid: 11693 + - uid: 13556 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-53.5 parent: 2 - - uid: 11694 + - uid: 13557 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-70.5 parent: 2 - - uid: 11695 + - uid: 13558 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-85.5 parent: 2 - - uid: 11696 + - uid: 13559 components: - type: Transform rot: 3.141592653589793 rad @@ -88647,49 +88075,49 @@ entities: parent: 2 - proto: SurveillanceCameraSupply entities: - - uid: 11753 + - uid: 13560 components: - type: Transform pos: 4.5,-282.5 parent: 2 - - uid: 11755 + - uid: 13561 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-270.5 parent: 2 - - uid: 11756 + - uid: 13562 components: - type: Transform pos: -3.5,-288.5 parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 632 + - uid: 13563 components: - type: Transform pos: 23.5,-317.5 parent: 2 - - uid: 8597 + - uid: 13564 components: - type: Transform pos: 21.5,-317.5 parent: 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 10677 + - uid: 13565 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-371.5 parent: 2 - - uid: 12683 + - uid: 13566 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-119.5 parent: 2 - - uid: 13451 + - uid: 13567 components: - type: Transform rot: -1.5707963267948966 rad @@ -88697,193 +88125,187 @@ entities: parent: 2 - proto: Syringe entities: - - uid: 2475 - components: - - type: Transform - pos: -1.3886902,-168.44508 - parent: 2 - - uid: 3693 + - uid: 13569 components: - type: Transform pos: 8.467955,-171.31325 parent: 2 - - uid: 12391 + - uid: 13570 components: - type: Transform pos: -4.482805,-317.1948 parent: 2 -- proto: SyringeIpecac - entities: - - uid: 3566 + - uid: 16326 components: - type: Transform - pos: -7.5644717,-177.28705 + rot: 1.5707963267948966 rad + pos: -2.6946619,-168.4281 parent: 2 - proto: Table entities: - - uid: 577 + - uid: 13572 components: - type: Transform pos: 8.5,-173.5 parent: 2 - - uid: 1072 + - uid: 13573 components: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 1483 + - uid: 13574 components: - type: Transform pos: 7.5,-56.5 parent: 2 - - uid: 1761 + - uid: 13575 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-32.5 parent: 2 - - uid: 2320 + - uid: 13576 components: - type: Transform pos: 8.5,-175.5 parent: 2 - - uid: 2350 + - uid: 13577 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-257.5 parent: 2 - - uid: 2738 + - uid: 13578 components: - type: Transform pos: 8.5,-177.5 parent: 2 - - uid: 2779 + - uid: 13579 components: - type: Transform pos: 3.5,-173.5 parent: 2 - - uid: 3075 + - uid: 13580 components: - type: Transform pos: 8.5,-171.5 parent: 2 - - uid: 3166 + - uid: 13581 components: - type: Transform pos: 3.5,-171.5 parent: 2 - - uid: 3187 + - uid: 13582 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-32.5 parent: 2 - - uid: 3920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-202.5 - parent: 2 - - uid: 6509 + - uid: 13583 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-32.5 parent: 2 - - uid: 7209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-198.5 - parent: 2 - - uid: 8855 + - uid: 13584 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-201.5 parent: 2 - - uid: 11328 + - uid: 13585 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 + - uid: 13586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-198.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-202.5 + parent: 2 - proto: TableCarpet entities: - - uid: 2696 + - uid: 13588 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-140.5 parent: 2 - - uid: 2699 + - uid: 13589 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-141.5 parent: 2 - - uid: 2704 + - uid: 13590 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-139.5 parent: 2 - - uid: 14426 + - uid: 13591 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-82.5 parent: 2 - - uid: 14429 + - uid: 13592 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 - - uid: 14430 + - uid: 13593 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-78.5 parent: 2 - - uid: 14431 + - uid: 13594 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-78.5 parent: 2 - - uid: 14432 + - uid: 13595 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-78.5 parent: 2 - - uid: 14433 + - uid: 13596 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-79.5 parent: 2 - - uid: 14434 + - uid: 13597 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-79.5 parent: 2 - - uid: 14441 + - uid: 13598 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-83.5 parent: 2 - - uid: 14445 + - uid: 13599 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-83.5 parent: 2 - - uid: 14447 + - uid: 13600 components: - type: Transform rot: 3.141592653589793 rad @@ -88891,45 +88313,45 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 1835 + - uid: 13601 components: - type: Transform pos: 3.5,-99.5 parent: 2 - - uid: 1836 + - uid: 13602 components: - type: Transform pos: 4.5,-99.5 parent: 2 - - uid: 1838 + - uid: 13603 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-94.5 parent: 2 - - uid: 1840 + - uid: 13604 components: - type: Transform pos: 6.5,-95.5 parent: 2 - - uid: 1849 + - uid: 13605 components: - type: Transform pos: 6.5,-94.5 parent: 2 - - uid: 1850 + - uid: 13606 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-94.5 parent: 2 - - uid: 7835 + - uid: 13607 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-245.5 parent: 2 - - uid: 11913 + - uid: 13608 components: - type: Transform rot: -1.5707963267948966 rad @@ -88937,1266 +88359,1267 @@ entities: parent: 2 - proto: TableCounterWood entities: - - uid: 2725 + - uid: 13609 components: - type: Transform pos: -3.5,-136.5 parent: 2 - - uid: 2726 + - uid: 13610 components: - type: Transform pos: -2.5,-136.5 parent: 2 - proto: TableFancyRed entities: - - uid: 8981 + - uid: 13611 components: - type: Transform pos: -5.5,-63.5 parent: 2 - - uid: 9075 + - uid: 13612 components: - type: Transform pos: -6.5,-62.5 parent: 2 - - uid: 9185 + - uid: 13613 components: - type: Transform pos: -3.5,-67.5 parent: 2 - - uid: 9348 + - uid: 13614 components: - type: Transform pos: -6.5,-63.5 parent: 2 - - uid: 9349 + - uid: 13615 components: - type: Transform pos: 1.5,-58.5 parent: 2 - - uid: 9350 + - uid: 13616 components: - type: Transform pos: 1.5,-59.5 parent: 2 - - uid: 9351 + - uid: 13617 components: - type: Transform pos: 1.5,-67.5 parent: 2 - - uid: 9352 + - uid: 13618 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 9353 + - uid: 13619 components: - type: Transform pos: -6.5,-67.5 parent: 2 - - uid: 9354 + - uid: 13620 components: - type: Transform pos: -2.5,-58.5 parent: 2 - - uid: 9355 + - uid: 13621 components: - type: Transform pos: -6.5,-58.5 parent: 2 - - uid: 9356 + - uid: 13622 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 9357 + - uid: 13623 components: - type: Transform pos: -6.5,-59.5 parent: 2 - - uid: 9358 + - uid: 13624 components: - type: Transform pos: -3.5,-58.5 parent: 2 - - uid: 9359 + - uid: 13625 components: - type: Transform pos: -5.5,-62.5 parent: 2 - proto: TableGlass entities: - - uid: 2083 + - uid: 7556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-168.5 + parent: 2 + - uid: 13626 components: - type: Transform pos: -7.5,-115.5 parent: 2 - - uid: 2084 + - uid: 13627 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2085 + - uid: 13628 components: - type: Transform pos: -7.5,-118.5 parent: 2 - - uid: 2752 + - uid: 13629 components: - type: Transform pos: 6.5,-123.5 parent: 2 - - uid: 2931 + - uid: 13630 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-174.5 parent: 2 - - uid: 2966 + - uid: 13631 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-175.5 parent: 2 - - uid: 3703 + - uid: 13632 components: - type: Transform pos: 6.5,-122.5 parent: 2 - - uid: 6659 - components: - - type: Transform - pos: -1.5,-168.5 - parent: 2 - - uid: 14350 + - uid: 13634 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 14355 + - uid: 13635 components: - type: Transform pos: 16.5,-59.5 parent: 2 - - uid: 14628 + - uid: 13636 components: - type: Transform pos: -7.5,-256.5 parent: 2 - - uid: 14629 + - uid: 13637 components: - type: Transform pos: -7.5,-255.5 parent: 2 - - uid: 14659 + - uid: 13638 components: - type: Transform pos: 17.5,-73.5 parent: 2 - - uid: 14660 + - uid: 13639 components: - type: Transform pos: 13.5,-73.5 parent: 2 - - uid: 14661 + - uid: 13640 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 14662 + - uid: 13641 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 16506 + - uid: 13642 components: - type: Transform pos: -13.5,-161.5 parent: 2 - - uid: 16507 + - uid: 13643 components: - type: Transform pos: -14.5,-161.5 parent: 2 - - uid: 16508 + - uid: 13644 components: - type: Transform pos: -11.5,-168.5 parent: 2 - - uid: 16509 + - uid: 13645 components: - type: Transform pos: -12.5,-168.5 parent: 2 - - uid: 16510 + - uid: 13646 components: - type: Transform pos: -13.5,-168.5 parent: 2 - proto: TablePlasmaGlass entities: - - uid: 2007 + - uid: 13647 components: - type: Transform pos: -7.5,-124.5 parent: 2 - - uid: 14739 + - uid: 13648 components: - type: Transform pos: -6.5,-307.5 parent: 2 - - uid: 14740 + - uid: 13649 components: - type: Transform pos: -5.5,-307.5 parent: 2 - proto: TableReinforced entities: - - uid: 58 + - uid: 13650 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 2 - - uid: 59 + - uid: 13651 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 - - uid: 192 + - uid: 13652 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-12.5 parent: 2 - - uid: 198 + - uid: 13653 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 2 - - uid: 213 + - uid: 13654 components: - type: Transform pos: 6.5,-12.5 parent: 2 - - uid: 924 + - uid: 13655 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-60.5 parent: 2 - - uid: 932 + - uid: 13656 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-60.5 parent: 2 - - uid: 996 + - uid: 13657 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-64.5 parent: 2 - - uid: 997 + - uid: 13658 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-62.5 parent: 2 - - uid: 998 + - uid: 13659 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-63.5 parent: 2 - - uid: 999 + - uid: 13660 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-61.5 parent: 2 - - uid: 1090 + - uid: 13661 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-60.5 parent: 2 - - uid: 1212 + - uid: 13662 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-65.5 parent: 2 - - uid: 1229 + - uid: 13663 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-65.5 parent: 2 - - uid: 1231 + - uid: 13664 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-87.5 parent: 2 - - uid: 1694 + - uid: 13665 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-85.5 parent: 2 - - uid: 1695 + - uid: 13666 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-86.5 parent: 2 - - uid: 1696 + - uid: 13667 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-87.5 parent: 2 - - uid: 1697 + - uid: 13668 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-88.5 parent: 2 - - uid: 1698 + - uid: 13669 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-89.5 parent: 2 - - uid: 1699 + - uid: 13670 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - - uid: 1700 + - uid: 13671 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 - - uid: 1928 + - uid: 13672 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-88.5 parent: 2 - - uid: 1929 + - uid: 13673 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-87.5 parent: 2 - - uid: 1934 + - uid: 13674 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-86.5 parent: 2 - - uid: 1935 + - uid: 13675 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-86.5 parent: 2 - - uid: 1936 + - uid: 13676 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-86.5 parent: 2 - - uid: 1946 + - uid: 13677 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-85.5 parent: 2 - - uid: 2239 + - uid: 13678 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-122.5 parent: 2 - - uid: 2435 + - uid: 13679 components: - type: Transform pos: 2.5,-192.5 parent: 2 - - uid: 2468 + - uid: 13680 components: - type: Transform pos: 5.5,-339.5 parent: 2 - - uid: 3042 + - uid: 13681 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 - - uid: 3097 + - uid: 13682 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-170.5 parent: 2 - - uid: 3098 + - uid: 13683 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-168.5 parent: 2 - - uid: 3099 + - uid: 13684 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-167.5 parent: 2 - - uid: 3100 + - uid: 13685 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-166.5 parent: 2 - - uid: 3159 + - uid: 13686 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-253.5 parent: 2 - - uid: 3176 + - uid: 13687 components: - type: Transform pos: 3.5,-192.5 parent: 2 - - uid: 3178 + - uid: 13688 components: - type: Transform pos: 1.5,-192.5 parent: 2 - - uid: 3234 + - uid: 13689 components: - type: Transform pos: 1.5,-193.5 parent: 2 - - uid: 3826 + - uid: 13690 components: - type: Transform pos: 7.5,-196.5 parent: 2 - - uid: 3884 + - uid: 13691 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-200.5 parent: 2 - - uid: 3885 + - uid: 13692 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-206.5 parent: 2 - - uid: 3896 + - uid: 13693 components: - type: Transform pos: -6.5,-194.5 parent: 2 - - uid: 3897 + - uid: 13694 components: - type: Transform pos: -6.5,-195.5 parent: 2 - - uid: 3911 + - uid: 13695 components: - type: Transform pos: -4.5,-198.5 parent: 2 - - uid: 3912 + - uid: 13696 components: - type: Transform pos: -3.5,-198.5 parent: 2 - - uid: 4133 + - uid: 13697 components: - type: Transform pos: -1.5,-166.5 parent: 2 - - uid: 4237 + - uid: 13698 components: - type: Transform pos: 4.5,-254.5 parent: 2 - - uid: 4576 + - uid: 13699 components: - type: Transform pos: 7.5,-245.5 parent: 2 - - uid: 4780 + - uid: 13700 components: - type: Transform pos: 8.5,-250.5 parent: 2 - - uid: 4847 + - uid: 13701 components: - type: Transform pos: 8.5,-249.5 parent: 2 - - uid: 4951 + - uid: 13702 components: - type: Transform pos: 5.5,-252.5 parent: 2 - - uid: 5019 + - uid: 13703 components: - type: Transform pos: 4.5,-245.5 parent: 2 - - uid: 5148 + - uid: 13704 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-206.5 parent: 2 - - uid: 6642 + - uid: 13705 components: - type: Transform pos: 5.5,-254.5 parent: 2 - - uid: 6644 + - uid: 13706 components: - type: Transform pos: 5.5,-253.5 parent: 2 - - uid: 7377 + - uid: 13707 components: - type: Transform pos: -5.5,-338.5 parent: 2 - - uid: 7428 + - uid: 13708 components: - type: Transform pos: -5.5,-189.5 parent: 2 - - uid: 7467 + - uid: 13709 components: - type: Transform pos: 18.5,-257.5 parent: 2 - - uid: 7475 + - uid: 13710 components: - type: Transform pos: 7.5,-244.5 parent: 2 - - uid: 7555 + - uid: 13711 components: - type: Transform pos: 7.5,-197.5 parent: 2 - - uid: 7863 + - uid: 13712 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-246.5 parent: 2 - - uid: 7864 + - uid: 13713 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-245.5 parent: 2 - - uid: 7892 + - uid: 13714 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-245.5 parent: 2 - - uid: 8261 + - uid: 13715 components: - type: Transform pos: 11.5,-252.5 parent: 2 - - uid: 8435 + - uid: 13716 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-247.5 parent: 2 - - uid: 8499 + - uid: 13717 components: - type: Transform pos: -4.5,-273.5 parent: 2 - - uid: 8516 + - uid: 13718 components: - type: Transform pos: -4.5,-272.5 parent: 2 - - uid: 8526 + - uid: 13719 components: - type: Transform pos: 17.5,-257.5 parent: 2 - - uid: 8531 + - uid: 13720 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-272.5 parent: 2 - - uid: 8532 + - uid: 13721 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - - uid: 8534 + - uid: 13722 components: - type: Transform pos: -4.5,-285.5 parent: 2 - - uid: 8661 + - uid: 13723 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-251.5 parent: 2 - - uid: 8685 + - uid: 13724 components: - type: Transform pos: -4.5,-286.5 parent: 2 - - uid: 8689 + - uid: 13725 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-250.5 parent: 2 - - uid: 8857 + - uid: 13726 components: - type: Transform pos: -7.5,-271.5 parent: 2 - - uid: 8902 + - uid: 13727 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-254.5 parent: 2 - - uid: 8954 + - uid: 13728 components: - type: Transform pos: -5.5,-272.5 parent: 2 - - uid: 9054 + - uid: 13729 components: - type: Transform pos: 3.5,-282.5 parent: 2 - - uid: 9055 + - uid: 13730 components: - type: Transform pos: 4.5,-282.5 parent: 2 - - uid: 9056 + - uid: 13731 components: - type: Transform pos: 5.5,-282.5 parent: 2 - - uid: 9080 + - uid: 13732 components: - type: Transform pos: 4.5,-273.5 parent: 2 - - uid: 9081 + - uid: 13733 components: - type: Transform pos: 4.5,-272.5 parent: 2 - - uid: 9515 + - uid: 13734 components: - type: Transform pos: 22.5,-317.5 parent: 2 - - uid: 9517 + - uid: 13735 components: - type: Transform pos: 21.5,-315.5 parent: 2 - - uid: 9576 + - uid: 13736 components: - type: Transform pos: 23.5,-297.5 parent: 2 - - uid: 9617 + - uid: 13737 components: - type: Transform pos: 23.5,-299.5 parent: 2 - - uid: 9618 + - uid: 13738 components: - type: Transform pos: 22.5,-297.5 parent: 2 - - uid: 9620 + - uid: 13739 components: - type: Transform pos: 21.5,-299.5 parent: 2 - - uid: 9698 + - uid: 13740 components: - type: Transform pos: 21.5,-309.5 parent: 2 - - uid: 9699 + - uid: 13741 components: - type: Transform pos: 23.5,-305.5 parent: 2 - - uid: 9700 + - uid: 13742 components: - type: Transform pos: 22.5,-309.5 parent: 2 - - uid: 9701 + - uid: 13743 components: - type: Transform pos: 22.5,-305.5 parent: 2 - - uid: 9963 + - uid: 13744 components: - type: Transform pos: 4.5,-316.5 parent: 2 - - uid: 9964 + - uid: 13745 components: - type: Transform pos: 7.5,-312.5 parent: 2 - - uid: 9965 + - uid: 13746 components: - type: Transform pos: 7.5,-313.5 parent: 2 - - uid: 9966 + - uid: 13747 components: - type: Transform pos: 7.5,-314.5 parent: 2 - - uid: 9967 + - uid: 13748 components: - type: Transform pos: 3.5,-316.5 parent: 2 - - uid: 9969 + - uid: 13749 components: - type: Transform pos: 6.5,-314.5 parent: 2 - - uid: 9977 + - uid: 13750 components: - type: Transform pos: 3.5,-315.5 parent: 2 - - uid: 9981 + - uid: 13751 components: - type: Transform pos: 3.5,-304.5 parent: 2 - - uid: 9982 + - uid: 13752 components: - type: Transform pos: 3.5,-303.5 parent: 2 - - uid: 9983 + - uid: 13753 components: - type: Transform pos: 4.5,-304.5 parent: 2 - - uid: 10024 + - uid: 13754 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-302.5 parent: 2 - - uid: 10077 + - uid: 13755 components: - type: Transform pos: -6.5,-317.5 parent: 2 - - uid: 10078 + - uid: 13756 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-302.5 parent: 2 - - uid: 10097 + - uid: 13757 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-303.5 parent: 2 - - uid: 10098 + - uid: 13758 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - - uid: 10100 + - uid: 13759 components: - type: Transform pos: -1.5,-301.5 parent: 2 - - uid: 10101 + - uid: 13760 components: - type: Transform pos: -1.5,-300.5 parent: 2 - - uid: 10113 + - uid: 13761 components: - type: Transform pos: -4.5,-303.5 parent: 2 - - uid: 10115 + - uid: 13762 components: - type: Transform pos: -4.5,-302.5 parent: 2 - - uid: 10116 + - uid: 13763 components: - type: Transform pos: -4.5,-304.5 parent: 2 - - uid: 10690 + - uid: 13764 components: - type: Transform pos: -6.5,-339.5 parent: 2 - - uid: 10755 + - uid: 13765 components: - type: Transform pos: -3.5,-334.5 parent: 2 - - uid: 10771 + - uid: 13766 components: - type: Transform pos: -0.5,-345.5 parent: 2 - - uid: 10849 + - uid: 13767 components: - type: Transform pos: -6.5,-338.5 parent: 2 - - uid: 10855 + - uid: 13768 components: - type: Transform pos: -6.5,-340.5 parent: 2 - - uid: 11043 + - uid: 13769 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-328.5 parent: 2 - - uid: 11045 + - uid: 13770 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-328.5 parent: 2 - - uid: 11059 + - uid: 13771 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-331.5 parent: 2 - - uid: 11060 + - uid: 13772 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-332.5 parent: 2 - - uid: 11061 + - uid: 13773 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-332.5 parent: 2 - - uid: 11062 + - uid: 13774 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-332.5 parent: 2 - - uid: 11099 + - uid: 13775 components: - type: Transform pos: -2.5,-346.5 parent: 2 - - uid: 11100 + - uid: 13776 components: - type: Transform pos: -3.5,-346.5 parent: 2 - - uid: 11101 + - uid: 13777 components: - type: Transform pos: -4.5,-346.5 parent: 2 - - uid: 11200 + - uid: 13778 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-358.5 parent: 2 - - uid: 11430 + - uid: 13779 components: - type: Transform pos: -6.5,-360.5 parent: 2 - - uid: 11431 + - uid: 13780 components: - type: Transform pos: -0.5,-365.5 parent: 2 - - uid: 11484 + - uid: 13781 components: - type: Transform pos: 2.5,-370.5 parent: 2 - - uid: 11485 + - uid: 13782 components: - type: Transform pos: 1.5,-370.5 parent: 2 - - uid: 11486 + - uid: 13783 components: - type: Transform pos: 0.5,-370.5 parent: 2 - - uid: 11487 + - uid: 13784 components: - type: Transform pos: -0.5,-370.5 parent: 2 - - uid: 11488 + - uid: 13785 components: - type: Transform pos: -1.5,-370.5 parent: 2 - - uid: 11489 + - uid: 13786 components: - type: Transform pos: -1.5,-371.5 parent: 2 - - uid: 11752 + - uid: 13787 components: - type: Transform pos: -4.5,-357.5 parent: 2 - - uid: 11757 + - uid: 13788 components: - type: Transform pos: -5.5,-357.5 parent: 2 - - uid: 11758 + - uid: 13789 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-189.5 parent: 2 - - uid: 11764 + - uid: 13790 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-357.5 parent: 2 - - uid: 11765 + - uid: 13791 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-358.5 parent: 2 - - uid: 12372 + - uid: 13792 components: - type: Transform pos: -5.5,-317.5 parent: 2 - - uid: 12373 + - uid: 13793 components: - type: Transform pos: -4.5,-317.5 parent: 2 - - uid: 12374 + - uid: 13794 components: - type: Transform pos: -4.5,-316.5 parent: 2 - - uid: 12886 + - uid: 13795 components: - type: Transform pos: -0.5,-366.5 parent: 2 - - uid: 12887 + - uid: 13796 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 14799 + - uid: 13797 components: - type: Transform pos: -5.5,-339.5 parent: 2 - - uid: 14800 + - uid: 13798 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-193.5 parent: 2 - - uid: 15030 + - uid: 13799 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-133.5 parent: 2 - - uid: 15031 + - uid: 13800 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-134.5 parent: 2 - - uid: 15187 + - uid: 13801 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-193.5 parent: 2 - - uid: 15260 + - uid: 13802 components: - type: Transform pos: 5.5,-245.5 parent: 2 - - uid: 15586 + - uid: 13803 components: - type: Transform pos: 19.5,-257.5 parent: 2 - - uid: 15788 + - uid: 13804 components: - type: Transform pos: -7.5,-172.5 parent: 2 - - uid: 15804 + - uid: 13805 components: - type: Transform pos: -5.5,-340.5 parent: 2 - proto: TableReinforcedGlass entities: - - uid: 79 + - uid: 13806 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-7.5 parent: 2 - - uid: 85 + - uid: 13807 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 2 - - uid: 86 + - uid: 13808 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 87 + - uid: 13809 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 2 - - uid: 154 + - uid: 13810 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 2 - - uid: 159 + - uid: 13811 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 - - uid: 163 + - uid: 13812 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-7.5 parent: 2 - - uid: 165 + - uid: 13813 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-7.5 parent: 2 - - uid: 166 + - uid: 13814 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-6.5 parent: 2 - - uid: 169 + - uid: 13815 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 2 - - uid: 212 + - uid: 13816 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 2 - - uid: 1917 + - uid: 13817 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-120.5 parent: 2 - - uid: 2214 + - uid: 13818 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-121.5 parent: 2 - - uid: 2217 + - uid: 13819 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-121.5 parent: 2 - - uid: 2220 + - uid: 13820 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-121.5 parent: 2 - - uid: 2666 + - uid: 13821 components: - type: Transform pos: 6.5,-142.5 parent: 2 - - uid: 2667 + - uid: 13822 components: - type: Transform pos: 6.5,-143.5 parent: 2 - - uid: 2668 + - uid: 13823 components: - type: Transform pos: 2.5,-142.5 parent: 2 - - uid: 2669 + - uid: 13824 components: - type: Transform pos: 2.5,-143.5 parent: 2 - - uid: 3127 + - uid: 13825 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-169.5 parent: 2 - - uid: 3712 + - uid: 13826 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 - - uid: 4138 + - uid: 13827 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 - - uid: 11532 + - uid: 13828 components: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 11533 + - uid: 13829 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 11534 + - uid: 13830 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 11535 + - uid: 13831 components: - type: Transform pos: -3.5,-5.5 parent: 2 - - uid: 11536 + - uid: 13832 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 11537 + - uid: 13833 components: - type: Transform pos: -3.5,-7.5 parent: 2 - - uid: 11538 + - uid: 13834 components: - type: Transform pos: -2.5,-7.5 parent: 2 - - uid: 11539 + - uid: 13835 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 11540 + - uid: 13836 components: - type: Transform pos: -0.5,-7.5 parent: 2 - proto: TableStone entities: - - uid: 2030 + - uid: 13837 components: - type: Transform pos: -8.5,-122.5 parent: 2 - - uid: 3118 + - uid: 13838 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-165.5 parent: 2 - - uid: 3133 + - uid: 13839 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-167.5 parent: 2 - - uid: 3189 + - uid: 13840 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-168.5 parent: 2 - - uid: 3190 + - uid: 13841 components: - type: Transform rot: 1.5707963267948966 rad @@ -90204,69 +89627,69 @@ entities: parent: 2 - proto: TableWeb entities: - - uid: 14354 + - uid: 13842 components: - type: Transform pos: 13.5,-63.5 parent: 2 - - uid: 14380 + - uid: 13843 components: - type: Transform pos: 14.5,-63.5 parent: 2 - proto: TableWood entities: - - uid: 301 + - uid: 13844 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-13.5 parent: 2 - - uid: 310 + - uid: 13845 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 314 + - uid: 13846 components: - type: Transform pos: -1.5,-9.5 parent: 2 - - uid: 436 + - uid: 13847 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 1126 + - uid: 13848 components: - type: Transform pos: 1.5,-64.5 parent: 2 - - uid: 1186 + - uid: 13849 components: - type: Transform pos: 0.5,-64.5 parent: 2 - - uid: 1359 + - uid: 13850 components: - type: Transform pos: -5.5,-71.5 parent: 2 - - uid: 1475 + - uid: 13851 components: - type: Transform pos: -5.5,-72.5 parent: 2 - proto: TargetDarts entities: - - uid: 14772 + - uid: 13852 components: - type: Transform pos: 2.5088735,-32.514496 parent: 2 - proto: TegCenter entities: - - uid: 3677 + - uid: 13853 components: - type: Transform rot: -1.5707963267948966 rad @@ -90274,7 +89697,7 @@ entities: parent: 2 - proto: TegCirculator entities: - - uid: 3584 + - uid: 13854 components: - type: Transform rot: 3.141592653589793 rad @@ -90282,7 +89705,7 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 6828 + - uid: 13855 components: - type: Transform pos: -16.5,-244.5 @@ -90291,10 +89714,10 @@ entities: color: '#FF3300FF' - proto: TelecomServer entities: - - uid: 1192 + - uid: 7257 components: - type: Transform - pos: 24.5,-299.5 + pos: 20.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90302,7 +89725,7 @@ entities: showEnts: False occludes: True ents: - - 1285 + - 7258 machine_board: !type:Container showEnts: False occludes: True @@ -90311,10 +89734,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1333 + - uid: 7259 components: - type: Transform - pos: 25.5,-299.5 + pos: 19.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90322,7 +89745,7 @@ entities: showEnts: False occludes: True ents: - - 1341 + - 7260 machine_board: !type:Container showEnts: False occludes: True @@ -90331,10 +89754,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1343 + - uid: 7261 components: - type: Transform - pos: 20.5,-299.5 + pos: 25.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90342,7 +89765,7 @@ entities: showEnts: False occludes: True ents: - - 1344 + - 7262 machine_board: !type:Container showEnts: False occludes: True @@ -90351,7 +89774,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1345 + - uid: 7263 components: - type: Transform pos: 19.5,-299.5 @@ -90362,7 +89785,7 @@ entities: showEnts: False occludes: True ents: - - 2910 + - 7264 machine_board: !type:Container showEnts: False occludes: True @@ -90371,10 +89794,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 2911 + - uid: 7265 components: - type: Transform - pos: 24.5,-297.5 + pos: 25.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90382,7 +89805,7 @@ entities: showEnts: False occludes: True ents: - - 2912 + - 7266 machine_board: !type:Container showEnts: False occludes: True @@ -90391,10 +89814,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3023 + - uid: 7269 components: - type: Transform - pos: 25.5,-297.5 + pos: 24.5,-297.5 parent: 2 - type: ContainerContainer containers: @@ -90402,7 +89825,7 @@ entities: showEnts: False occludes: True ents: - - 3033 + - 7270 machine_board: !type:Container showEnts: False occludes: True @@ -90411,7 +89834,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3054 + - uid: 7271 components: - type: Transform pos: 20.5,-297.5 @@ -90422,7 +89845,7 @@ entities: showEnts: False occludes: True ents: - - 3071 + - 7272 machine_board: !type:Container showEnts: False occludes: True @@ -90431,10 +89854,10 @@ entities: showEnts: False occludes: True ents: [] - - uid: 3149 + - uid: 7273 components: - type: Transform - pos: 19.5,-297.5 + pos: 24.5,-299.5 parent: 2 - type: ContainerContainer containers: @@ -90442,7 +89865,7 @@ entities: showEnts: False occludes: True ents: - - 3583 + - 7274 machine_board: !type:Container showEnts: False occludes: True @@ -90453,54 +89876,54 @@ entities: ents: [] - proto: TeslaCoil entities: - - uid: 651 + - uid: 13856 components: - type: Transform pos: 16.5,-239.5 parent: 2 - - uid: 3147 + - uid: 13857 components: - type: Transform pos: 15.5,-239.5 parent: 2 - - uid: 6780 + - uid: 13858 components: - type: Transform pos: 15.5,-240.5 parent: 2 - - uid: 7809 + - uid: 13859 components: - type: Transform pos: 15.5,-241.5 parent: 2 - proto: TeslaGenerator entities: - - uid: 11715 + - uid: 13860 components: - type: Transform pos: 18.5,-239.5 parent: 2 - proto: TeslaGroundingRod entities: - - uid: 3013 + - uid: 13861 components: - type: Transform pos: 16.5,-241.5 parent: 2 - - uid: 3164 + - uid: 13862 components: - type: Transform pos: 16.5,-240.5 parent: 2 - proto: Thruster entities: - - uid: 224 + - uid: 13863 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-4.5 parent: 2 - - uid: 225 + - uid: 13864 components: - type: Transform rot: 3.141592653589793 rad @@ -90508,7 +89931,7 @@ entities: parent: 2 - proto: ToiletDirtyWater entities: - - uid: 2641 + - uid: 13865 components: - type: Transform rot: -1.5707963267948966 rad @@ -90516,289 +89939,289 @@ entities: parent: 2 - proto: ToolboxArtisticFilled entities: - - uid: 15264 + - uid: 13866 components: - type: Transform pos: 7.491327,-244.8711 parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 2974 + - uid: 13867 components: - type: Transform pos: 5.522824,-253.77805 parent: 2 - - uid: 5162 + - uid: 13868 components: - type: Transform pos: 5.4776406,-31.552532 parent: 2 - - uid: 5405 + - uid: 13869 components: - type: Transform pos: 1.2603997,-187.48691 parent: 2 - - uid: 15265 + - uid: 13870 components: - type: Transform pos: 7.48008,-245.11847 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 3674 + - uid: 13871 components: - type: Transform pos: -7.4139504,-177.44359 parent: 2 - - uid: 5410 + - uid: 13872 components: - type: Transform pos: 5.4776406,-31.341396 parent: 2 - - uid: 9452 + - uid: 13873 components: - type: Transform pos: 21.599606,-315.52435 parent: 2 - - uid: 14644 + - uid: 13874 components: - type: Transform pos: 6.4216676,-260.47906 parent: 2 - - uid: 15263 + - uid: 13875 components: - type: Transform pos: 7.4688315,-244.61247 parent: 2 - proto: ToolboxGoldFilled entities: - - uid: 84 + - uid: 13876 components: - type: Transform pos: -0.54247516,-3.4301338 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 47 + - uid: 13877 components: - type: Transform pos: 1.4461527,2.44579 parent: 2 - - uid: 1615 + - uid: 13878 components: - type: Transform pos: -2.7865536,-5.3156295 parent: 2 - - uid: 5407 + - uid: 13879 components: - type: Transform pos: -5.2525826,-162.94519 parent: 2 - - uid: 5409 + - uid: 13880 components: - type: Transform pos: 7.516703,-56.70343 parent: 2 - - uid: 8681 + - uid: 13881 components: - type: Transform pos: -5.3442082,-288.47815 parent: 2 - - uid: 8688 + - uid: 13882 components: - type: Transform pos: -5.606662,-288.27576 parent: 2 - - uid: 9453 + - uid: 13883 components: - type: Transform pos: 21.414711,-315.2735 parent: 2 - - uid: 9980 + - uid: 13884 components: - type: Transform pos: 3.6579065,-316.43753 parent: 2 - - uid: 10124 + - uid: 13885 components: - type: Transform pos: -4.3656063,-303.19275 parent: 2 - - uid: 10125 + - uid: 13886 components: - type: Transform pos: -4.537293,-302.90228 parent: 2 - - uid: 11677 + - uid: 13887 components: - type: Transform pos: -2.539098,-5.506784 parent: 2 - - uid: 12227 + - uid: 13888 components: - type: Transform pos: 15.403523,-247.25401 parent: 2 - - uid: 15262 + - uid: 13889 components: - type: Transform pos: 7.48008,-244.32011 parent: 2 - proto: ToyAi entities: - - uid: 9478 + - uid: 13890 components: - type: Transform pos: 29.472055,-307.37292 parent: 2 - proto: ToyAmongPequeno entities: - - uid: 2749 + - uid: 13891 components: - type: Transform pos: 3.5588014,-101.58778 parent: 2 - - uid: 3191 + - uid: 13892 components: - type: Transform pos: -7.3859177,-94.83316 parent: 2 - - uid: 3250 + - uid: 13893 components: - type: Transform pos: -7.59963,-94.50708 parent: 2 - - uid: 4347 + - uid: 13894 components: - type: Transform pos: -7.7233577,-95.00183 parent: 2 - proto: ToyFigurineBartender entities: - - uid: 12179 + - uid: 13895 components: - type: Transform pos: -2.566748,-60.54726 parent: 2 - proto: ToyFigurineBotanist entities: - - uid: 12172 + - uid: 13896 components: - type: Transform pos: -4.5218763,-87.44556 parent: 2 - proto: ToyFigurineCaptain entities: - - uid: 12175 + - uid: 13897 components: - type: Transform pos: -0.56393987,3.0352368 parent: 2 - proto: ToyFigurineCargoTech entities: - - uid: 12180 + - uid: 13898 components: - type: Transform pos: 4.883979,-282.15594 parent: 2 - proto: ToyFigurineChaplain entities: - - uid: 2672 + - uid: 13899 components: - type: Transform pos: 6.4167213,-142.44421 parent: 2 - proto: ToyFigurineChef entities: - - uid: 12181 + - uid: 13900 components: - type: Transform pos: 3.5768247,-91.526825 parent: 2 - proto: ToyFigurineChemist entities: - - uid: 12177 + - uid: 13901 components: - type: Transform pos: 2.5620208,-166.28375 parent: 2 - proto: ToyFigurineClown entities: - - uid: 12178 + - uid: 13902 components: - type: Transform pos: -7.7240214,-124.14133 parent: 2 - proto: ToyFigurineDetective entities: - - uid: 2653 + - uid: 13903 components: - type: Transform pos: -5.2573676,-71.2794 parent: 2 - proto: ToyFigurineFootsoldier entities: - - uid: 2329 + - uid: 13904 components: - type: Transform pos: -4.5065055,4.5218883 parent: 2 - proto: ToyFigurineGreytider entities: - - uid: 12183 + - uid: 13905 components: - type: Transform pos: 13.608401,-144.38652 parent: 2 - proto: ToyFigurineHamlet entities: - - uid: 3621 + - uid: 5324 components: - type: MetaData desc: The sixth of thirteen collectible Hamlet figures! This one is dressed as a monk. - type: Transform - parent: 7334 + parent: 5323 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 3625 + - uid: 5389 components: - type: MetaData desc: The fifth of thirteen collectible Hamlet figures! This one looks troubled. - type: Transform - parent: 3001 + parent: 5388 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11966 + - uid: 13906 components: - type: MetaData desc: The thirteenth of thirteen collectible figurines of Hamlet. This one looks like an evil dictator - type: Transform pos: -3.6355574,-334.1145 parent: 2 - - uid: 12225 + - uid: 13907 components: - type: MetaData desc: The second of thirteen collectible Hamlet figures! This one has fallen asleep. - type: Transform pos: 2.6170347,-39.208244 parent: 2 - - uid: 12228 + - uid: 13908 components: - type: MetaData desc: The third of thirteen collectible Hamlet figurines! This one looks jolly and drunk. - type: Transform pos: -3.1984427,-67.30008 parent: 2 - - uid: 12233 + - uid: 13909 components: - type: MetaData desc: The seventh of thirteen collectible Hamlet figures! This one is holding a syringe in his teeth. - type: Transform pos: 5.5009203,-182.15453 parent: 2 - - uid: 12236 + - uid: 13910 components: - type: MetaData desc: The eighth of thirteen collectible Hamlet figures! This one is sick and bald. @@ -90806,14 +90229,14 @@ entities: rot: -1.5707963267948966 rad pos: -4.4284077,-206.78868 parent: 2 - - uid: 12241 + - uid: 13911 components: - type: MetaData desc: The ninth of thirteen collectible Hamlet figures! This one looks like an astronaut. - type: Transform pos: 10.498955,-225.02173 parent: 2 - - uid: 12287 + - uid: 13912 components: - type: MetaData desc: The twelfth of thirteen collectible Hamlet figures! This one wears glasses and looks extremely intelligent. @@ -90822,202 +90245,202 @@ entities: parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: - - uid: 12185 + - uid: 13913 components: - type: Transform pos: 1.7322779,-121.02217 parent: 2 - proto: ToyFigurineHeadOfSecurity entities: - - uid: 12186 + - uid: 13914 components: - type: Transform pos: -3.5431526,-346.0501 parent: 2 - proto: ToyFigurineLawyer entities: - - uid: 12188 + - uid: 13915 components: - type: Transform pos: 6.025828,-332.01364 parent: 2 - proto: ToyFigurineLibrarian entities: - - uid: 12189 + - uid: 13916 components: - type: Transform pos: -5.419599,-139.50743 parent: 2 - proto: ToyFigurineMedicalDoctor entities: - - uid: 12190 + - uid: 13917 components: - type: Transform pos: 8.682559,-175.29884 parent: 2 - proto: ToyFigurineMime entities: - - uid: 11661 + - uid: 5486 components: - type: Transform - parent: 2019 + parent: 5479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ToyFigurineMouse entities: - - uid: 12191 + - uid: 13918 components: - type: Transform pos: -2.4079862,-180.0877 parent: 2 - proto: ToyFigurineMusician entities: - - uid: 1754 + - uid: 13919 components: - type: Transform pos: -6.7045426,-67.02318 parent: 2 - proto: ToyFigurineParamedic entities: - - uid: 14077 + - uid: 13920 components: - type: Transform pos: -1.2981937,-166.44269 parent: 2 - proto: ToyFigurinePassenger entities: - - uid: 12196 + - uid: 13921 components: - type: Transform pos: -7.6109595,-112.14438 parent: 2 - proto: ToyFigurineQuartermaster entities: - - uid: 12197 + - uid: 13922 components: - type: Transform pos: 6.0710835,-285.60263 parent: 2 - proto: ToyFigurineRatKing entities: - - uid: 12211 + - uid: 13923 components: - type: Transform pos: -6.4882874,-17.106768 parent: 2 - proto: ToyFigurineRatServant entities: - - uid: 12123 + - uid: 13924 components: - type: Transform pos: -6.144914,-17.326809 parent: 2 - - uid: 12212 + - uid: 13925 components: - type: Transform pos: -6.726009,-17.326809 parent: 2 - - uid: 12213 + - uid: 13926 components: - type: Transform pos: -6.4354615,-17.49404 parent: 2 - proto: ToyFigurineResearchDirector entities: - - uid: 4044 + - uid: 13927 components: - type: Transform pos: -5.49094,-305.1008 parent: 2 - proto: ToyFigurineSalvage entities: - - uid: 12216 + - uid: 13928 components: - type: Transform pos: -4.4907207,-272.15012 parent: 2 - proto: ToyFigurineScientist entities: - - uid: 12207 + - uid: 13929 components: - type: Transform pos: 7.126124,-314.31253 parent: 2 - proto: ToyFigurineSecurity entities: - - uid: 13405 + - uid: 13930 components: - type: Transform pos: -3.2948563,-334.34607 parent: 2 - proto: ToyFigurineSlime entities: - - uid: 12219 + - uid: 13931 components: - type: Transform pos: -2.4844923,-219.90608 parent: 2 - proto: ToyFigurineSpaceDragon entities: - - uid: 12221 + - uid: 13932 components: - type: Transform pos: -6.453235,-181.61153 parent: 2 - proto: ToyFigurineWarden entities: - - uid: 12223 + - uid: 13933 components: - type: Transform pos: 0.62263775,-366.41714 parent: 2 - proto: ToyFigurineWizard entities: - - uid: 15038 + - uid: 13934 components: - type: Transform pos: -9.568627,-133.52042 parent: 2 - proto: ToyFigurineWizardFake entities: - - uid: 3199 + - uid: 13935 components: - type: Transform pos: -8.133195,-94.51872 parent: 2 - proto: ToyGriffin entities: - - uid: 12184 + - uid: 13936 components: - type: Transform pos: -2.8305314,-148.27542 parent: 2 - proto: ToyOwlman entities: - - uid: 3852 + - uid: 13937 components: - type: Transform pos: 1.7216189,-370.325 parent: 2 - proto: ToySpawner entities: - - uid: 2162 + - uid: 13938 components: - type: Transform pos: -7.5,-112.5 parent: 2 - - uid: 2166 + - uid: 13939 components: - type: Transform pos: -8.5,-113.5 parent: 2 - - uid: 3893 + - uid: 13940 components: - type: Transform pos: -5.5,-204.5 parent: 2 - - uid: 13430 + - uid: 13941 components: - type: Transform rot: -1.5707963267948966 rad @@ -91025,141 +90448,141 @@ entities: parent: 2 - proto: ToySword entities: - - uid: 2774 + - uid: 13942 components: - type: Transform pos: 16.54856,-152.46567 parent: 2 - proto: TrashBananaPeel entities: - - uid: 470 + - uid: 13943 components: - type: Transform pos: -4.4094033,-127.49721 parent: 2 - - uid: 521 + - uid: 13944 components: - type: Transform pos: -6.1094556,-127.684784 parent: 2 - - uid: 761 + - uid: 13945 components: - type: Transform pos: -6.493462,-127.34697 parent: 2 - proto: trayScanner entities: - - uid: 16799 + - uid: 3960 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: TrumpetInstrument entities: - - uid: 14305 + - uid: 13946 components: - type: Transform pos: -22.876137,-264.95584 parent: 2 - proto: TwoWayLever entities: - - uid: 7621 + - uid: 13947 components: - type: Transform pos: 3.5,-218.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7644: + 5579: - Left: Forward - Right: Reverse - Middle: Off - 6589: + 5577: - Left: Forward - Right: Reverse - Middle: Off - 7715: + 5580: - Left: Forward - Right: Reverse - Middle: Off - 4899: + 5575: - Left: Forward - Right: Reverse - Middle: Off - 5452: + 12580: - Left: Forward - Right: Reverse - Middle: Off - 5450: + 5576: - Left: Forward - Right: Reverse - Middle: Off - 7620: + 5578: - Left: Forward - Right: Reverse - Middle: Off - - uid: 9006 + - uid: 13948 components: - type: Transform pos: 8.5,-282.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8996: + 5587: - Left: Forward - Right: Reverse - Middle: Off - 8992: + 5583: - Left: Forward - Right: Reverse - Middle: Off - 8991: + 5582: - Left: Forward - Right: Reverse - Middle: Off - 8990: + 5581: - Left: Forward - Right: Reverse - Middle: Off - - uid: 9007 + - uid: 13949 components: - type: Transform pos: 8.5,-276.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8997: + 5588: - Left: Forward - Right: Reverse - Middle: Off - 8995: + 5586: - Left: Forward - Right: Reverse - Middle: Off - 8994: + 5585: - Left: Forward - Right: Reverse - Middle: Off - 8993: + 5584: - Left: Forward - Right: Reverse - Middle: Off - - uid: 11710 + - uid: 13950 components: - type: Transform pos: 5.5,-358.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 11201: + 839: - Left: Open - Right: Open - Middle: Toggle - proto: UniformPrinter entities: - - uid: 13684 + - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad @@ -91167,296 +90590,296 @@ entities: parent: 2 - proto: Vaccinator entities: - - uid: 3898 + - uid: 13952 components: - type: Transform pos: -6.5,-196.5 parent: 2 - proto: VariantCubeBox entities: - - uid: 8980 + - uid: 13953 components: - type: Transform pos: -6.010586,-317.41095 parent: 2 - proto: VendingBarDrobe entities: - - uid: 1023 + - uid: 13954 components: - type: Transform pos: 3.5,-61.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 14575 + - uid: 13955 components: - type: Transform pos: -14.5,-265.5 parent: 2 - proto: VendingMachineBooze entities: - - uid: 13627 + - uid: 13956 components: - type: Transform pos: 1.5,-61.5 parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 8502 + - uid: 13957 components: - type: Transform pos: 0.5,-276.5 parent: 2 - proto: VendingMachineCart entities: - - uid: 2210 + - uid: 13958 components: - type: Transform pos: -1.5,-119.5 parent: 2 - proto: VendingMachineChapel entities: - - uid: 2710 + - uid: 13959 components: - type: Transform pos: 5.5,-137.5 parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 1780 + - uid: 13960 components: - type: Transform pos: -1.5,-92.5 parent: 2 - proto: VendingMachineChefvend entities: - - uid: 1784 + - uid: 13961 components: - type: Transform pos: 0.5,-92.5 parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 3130 + - uid: 13962 components: - type: Transform pos: 6.5,-162.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 3125 + - uid: 13963 components: - type: Transform pos: 3.5,-169.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 950 + - uid: 13964 components: - type: Transform pos: 3.5,-80.5 parent: 2 - - uid: 5089 + - uid: 13965 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 5300 + - uid: 13966 components: - type: Transform pos: 3.5,-188.5 parent: 2 - proto: VendingMachineClothing entities: - - uid: 2367 + - uid: 13967 components: - type: Transform pos: 4.5,-126.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 14361 + - uid: 13968 components: - type: Transform pos: 16.5,-63.5 parent: 2 - proto: VendingMachineCondiments entities: - - uid: 2027 + - uid: 13969 components: - type: Transform pos: 3.5,-85.5 parent: 2 - proto: VendingMachineCuraDrobe entities: - - uid: 2722 + - uid: 13970 components: - type: Transform pos: -2.5,-134.5 parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 11000 + - uid: 13971 components: - type: Transform pos: -5.5,-70.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 1783 + - uid: 13972 components: - type: Transform pos: 1.5,-92.5 parent: 2 - proto: VendingMachineDonut entities: - - uid: 8878 + - uid: 13973 components: - type: Transform pos: 2.5,-356.5 parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 8476 + - uid: 13974 components: - type: Transform pos: 8.5,-255.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 4973 + - uid: 13975 components: - type: Transform pos: 5.5,-247.5 parent: 2 - - uid: 8979 + - uid: 13976 components: - type: Transform pos: 19.5,-245.5 parent: 2 - proto: VendingMachineGames entities: - - uid: 2117 + - uid: 13977 components: - type: Transform pos: -2.5,-146.5 parent: 2 - - uid: 14567 + - uid: 13978 components: - type: Transform pos: 13.5,-80.5 parent: 2 - proto: VendingMachineHappyHonk entities: - - uid: 10698 + - uid: 13979 components: - type: Transform pos: 6.5,-17.5 parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 2321 + - uid: 13980 components: - type: Transform pos: -4.5,-82.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 1718 + - uid: 13981 components: - type: Transform pos: -2.5,-53.5 parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 11046 + - uid: 13982 components: - type: Transform pos: 6.5,-329.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 2258 + - uid: 13983 components: - type: Transform pos: 7.5,-179.5 parent: 2 - - uid: 4206 + - uid: 13984 components: - type: Transform pos: 3.5,-196.5 parent: 2 - - uid: 11248 + - uid: 13985 components: - type: Transform pos: -6.5,-361.5 parent: 2 - proto: VendingMachineMediDrobe entities: - - uid: 2461 + - uid: 13986 components: - type: Transform pos: -0.5,-193.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 1743 + - uid: 13987 components: - type: Transform pos: -5.5,-88.5 parent: 2 - proto: VendingMachineRestockMedical entities: - - uid: 1270 + - uid: 13988 components: - type: Transform pos: 3.449893,-163.3618 parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 9947 + - uid: 13989 components: - type: Transform pos: 8.5,-315.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 9948 + - uid: 13990 components: - type: Transform pos: 8.5,-316.5 parent: 2 - proto: VendingMachineSalvage entities: - - uid: 8547 + - uid: 13991 components: - type: Transform pos: -2.5,-287.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 9819 + - uid: 13992 components: - type: Transform pos: -6.5,-305.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 844 + - uid: 13993 components: - type: Transform pos: -6.5,-342.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 13394 + - uid: 13994 components: - type: Transform pos: -5.5,-342.5 parent: 2 - proto: VendingMachineSeeds entities: - - uid: 1618 + - uid: 13995 components: - type: Transform anchored: False @@ -91466,755 +90889,755 @@ entities: bodyType: Dynamic - proto: VendingMachineSeedsUnlocked entities: - - uid: 11483 + - uid: 13996 components: - type: Transform pos: 6.5,-373.5 parent: 2 - proto: VendingMachineSnackOrange entities: - - uid: 6701 + - uid: 13997 components: - type: Transform pos: -2.5,-242.5 parent: 2 - - uid: 14341 + - uid: 13998 components: - type: Transform pos: 17.5,-63.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 1490 + - uid: 13999 components: - type: Transform pos: 4.5,-56.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 11456 + - uid: 14000 components: - type: Transform pos: 5.5,-374.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 2444 + - uid: 14001 components: - type: Transform pos: -13.5,-259.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 402 + - uid: 14002 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 3717 + - uid: 14003 components: - type: Transform pos: 3.5,-161.5 parent: 2 - - uid: 7730 + - uid: 14004 components: - type: Transform pos: -1.5,-257.5 parent: 2 - - uid: 8237 + - uid: 14005 components: - type: Transform pos: 8.5,-247.5 parent: 2 - - uid: 8552 + - uid: 14006 components: - type: Transform pos: -2.5,-288.5 parent: 2 - - uid: 15163 + - uid: 14007 components: - type: Transform pos: 7.5,-118.5 parent: 2 - - uid: 15172 + - uid: 14008 components: - type: Transform pos: 9.5,-120.5 parent: 2 - - uid: 16961 + - uid: 14009 components: - type: Transform pos: -14.5,-250.5 parent: 2 - proto: VendingMachineTheater entities: - - uid: 5065 + - uid: 14010 components: - type: Transform pos: 3.5,-126.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 10121 + - uid: 14011 components: - type: Transform pos: -2.5,-299.5 parent: 2 - - uid: 11003 + - uid: 14012 components: - type: Transform pos: 3.5,-242.5 parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 3902 + - uid: 14013 components: - type: Transform pos: -6.5,-198.5 parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 3702 + - uid: 14014 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-172.5 parent: 2 - - uid: 3721 + - uid: 14015 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-195.5 parent: 2 - - uid: 14308 + - uid: 14016 components: - type: Transform pos: 7.5,-170.5 parent: 2 - proto: VendingMachineWinter entities: - - uid: 7487 + - uid: 14017 components: - type: Transform pos: 6.5,-125.5 parent: 2 - proto: VendingMachineYouTool entities: - - uid: 4997 + - uid: 14018 components: - type: Transform pos: 2.5,-253.5 parent: 2 - - uid: 9077 + - uid: 14019 components: - type: Transform pos: 7.5,-242.5 parent: 2 - proto: WallMining entities: - - uid: 1998 + - uid: 14020 components: - type: Transform pos: 12.5,-82.5 parent: 2 - - uid: 3844 + - uid: 14021 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-142.5 parent: 2 - - uid: 3845 + - uid: 14022 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-140.5 parent: 2 - - uid: 5247 + - uid: 14023 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-149.5 parent: 2 - - uid: 6631 + - uid: 14024 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-157.5 parent: 2 - - uid: 6823 + - uid: 14025 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-148.5 parent: 2 - - uid: 7240 + - uid: 14026 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-136.5 parent: 2 - - uid: 7241 + - uid: 14027 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-137.5 parent: 2 - - uid: 7242 + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-137.5 parent: 2 - - uid: 7244 + - uid: 14029 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-136.5 parent: 2 - - uid: 7245 + - uid: 14030 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-137.5 parent: 2 - - uid: 7246 + - uid: 14031 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-137.5 parent: 2 - - uid: 7252 + - uid: 14032 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-143.5 parent: 2 - - uid: 7261 + - uid: 14033 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-143.5 parent: 2 - - uid: 7264 + - uid: 14034 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-140.5 parent: 2 - - uid: 7269 + - uid: 14035 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-148.5 parent: 2 - - uid: 7271 + - uid: 14036 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-151.5 parent: 2 - - uid: 7272 + - uid: 14037 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-151.5 parent: 2 - - uid: 7277 + - uid: 14038 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-154.5 parent: 2 - - uid: 7278 + - uid: 14039 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-154.5 parent: 2 - - uid: 7279 + - uid: 14040 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-155.5 parent: 2 - - uid: 7280 + - uid: 14041 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-155.5 parent: 2 - - uid: 7281 + - uid: 14042 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-155.5 parent: 2 - - uid: 7282 + - uid: 14043 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-155.5 parent: 2 - - uid: 7283 + - uid: 14044 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-154.5 parent: 2 - - uid: 7284 + - uid: 14045 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-154.5 parent: 2 - - uid: 7291 + - uid: 14046 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-157.5 parent: 2 - - uid: 7292 + - uid: 14047 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-158.5 parent: 2 - - uid: 7294 + - uid: 14048 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-158.5 parent: 2 - - uid: 7295 + - uid: 14049 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-157.5 parent: 2 - - uid: 7296 + - uid: 14050 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-157.5 parent: 2 - - uid: 7297 + - uid: 14051 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-158.5 parent: 2 - - uid: 7298 + - uid: 14052 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-158.5 parent: 2 - - uid: 7303 + - uid: 14053 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-161.5 parent: 2 - - uid: 7304 + - uid: 14054 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-161.5 parent: 2 - - uid: 7305 + - uid: 14055 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-163.5 parent: 2 - - uid: 7308 + - uid: 14056 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-164.5 parent: 2 - - uid: 7394 + - uid: 14057 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-167.5 parent: 2 - - uid: 7783 + - uid: 14058 components: - type: Transform pos: 12.5,-71.5 parent: 2 - - uid: 7836 + - uid: 14059 components: - type: Transform pos: 13.5,-59.5 parent: 2 - - uid: 7839 + - uid: 14060 components: - type: Transform pos: 12.5,-59.5 parent: 2 - - uid: 7840 + - uid: 14061 components: - type: Transform pos: 13.5,-58.5 parent: 2 - - uid: 8175 + - uid: 14062 components: - type: Transform pos: 18.5,-83.5 parent: 2 - - uid: 8226 + - uid: 14063 components: - type: Transform pos: 12.5,-69.5 parent: 2 - - uid: 8379 + - uid: 14064 components: - type: Transform pos: 17.5,-66.5 parent: 2 - - uid: 8405 + - uid: 14065 components: - type: Transform pos: 12.5,-67.5 parent: 2 - - uid: 8409 + - uid: 14066 components: - type: Transform pos: 14.5,-66.5 parent: 2 - - uid: 8439 + - uid: 14067 components: - type: Transform pos: 16.5,-58.5 parent: 2 - - uid: 8475 + - uid: 14068 components: - type: Transform pos: 12.5,-63.5 parent: 2 - - uid: 8693 + - uid: 14069 components: - type: Transform pos: 13.5,-66.5 parent: 2 - - uid: 8832 + - uid: 14070 components: - type: Transform pos: 17.5,-58.5 parent: 2 - - uid: 8972 + - uid: 14071 components: - type: Transform pos: 12.5,-68.5 parent: 2 - - uid: 9018 + - uid: 14072 components: - type: Transform pos: 15.5,-58.5 parent: 2 - - uid: 9024 + - uid: 14073 components: - type: Transform pos: 16.5,-66.5 parent: 2 - - uid: 11007 + - uid: 14074 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-150.5 parent: 2 - - uid: 11047 + - uid: 14075 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-141.5 parent: 2 - - uid: 11057 + - uid: 14076 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-162.5 parent: 2 - - uid: 11112 + - uid: 14077 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-149.5 parent: 2 - - uid: 11113 + - uid: 14078 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-142.5 parent: 2 - - uid: 11114 + - uid: 14079 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-163.5 parent: 2 - - uid: 12127 + - uid: 14080 components: - type: Transform pos: 14.5,-58.5 parent: 2 - - uid: 14078 + - uid: 14081 components: - type: Transform pos: 18.5,-67.5 parent: 2 - - uid: 14079 + - uid: 14082 components: - type: Transform pos: 18.5,-68.5 parent: 2 - - uid: 14093 + - uid: 14083 components: - type: Transform pos: 17.5,-86.5 parent: 2 - - uid: 14098 + - uid: 14084 components: - type: Transform pos: 17.5,-85.5 parent: 2 - - uid: 14099 + - uid: 14085 components: - type: Transform pos: 18.5,-85.5 parent: 2 - - uid: 14100 + - uid: 14086 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 14102 + - uid: 14087 components: - type: Transform pos: 12.5,-83.5 parent: 2 - - uid: 14103 + - uid: 14088 components: - type: Transform pos: 13.5,-86.5 parent: 2 - - uid: 14228 + - uid: 14089 components: - type: Transform pos: 13.5,-85.5 parent: 2 - - uid: 14236 + - uid: 14090 components: - type: Transform pos: 12.5,-85.5 parent: 2 - - uid: 14237 + - uid: 14091 components: - type: Transform pos: 12.5,-84.5 parent: 2 - - uid: 14238 + - uid: 14092 components: - type: Transform pos: 12.5,-80.5 parent: 2 - - uid: 14239 + - uid: 14093 components: - type: Transform pos: 18.5,-70.5 parent: 2 - - uid: 14240 + - uid: 14094 components: - type: Transform pos: 18.5,-71.5 parent: 2 - - uid: 14241 + - uid: 14095 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 14242 + - uid: 14096 components: - type: Transform pos: 12.5,-75.5 parent: 2 - - uid: 14243 + - uid: 14097 components: - type: Transform pos: 18.5,-69.5 parent: 2 - - uid: 14244 + - uid: 14098 components: - type: Transform pos: 18.5,-82.5 parent: 2 - - uid: 14245 + - uid: 14099 components: - type: Transform pos: 18.5,-81.5 parent: 2 - - uid: 14246 + - uid: 14100 components: - type: Transform pos: 18.5,-80.5 parent: 2 - - uid: 14247 + - uid: 14101 components: - type: Transform pos: 18.5,-76.5 parent: 2 - - uid: 14248 + - uid: 14102 components: - type: Transform pos: 18.5,-75.5 parent: 2 - - uid: 14311 + - uid: 14103 components: - type: Transform pos: 17.5,-59.5 parent: 2 - - uid: 14312 + - uid: 14104 components: - type: Transform pos: 18.5,-59.5 parent: 2 - - uid: 14315 + - uid: 14105 components: - type: Transform pos: 18.5,-63.5 parent: 2 - - uid: 14317 + - uid: 14106 components: - type: Transform pos: 17.5,-64.5 parent: 2 - - uid: 14318 + - uid: 14107 components: - type: Transform pos: 16.5,-64.5 parent: 2 - - uid: 14319 + - uid: 14108 components: - type: Transform pos: 14.5,-64.5 parent: 2 - - uid: 14320 + - uid: 14109 components: - type: Transform pos: 13.5,-64.5 parent: 2 - - uid: 14366 + - uid: 14110 components: - type: Transform pos: 13.5,-76.5 parent: 2 - - uid: 14386 + - uid: 14111 components: - type: Transform pos: 17.5,-76.5 parent: 2 - proto: WallMiningDiagonal entities: - - uid: 4136 + - uid: 14112 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 - - uid: 7395 + - uid: 14113 components: - type: Transform pos: 12.5,-136.5 parent: 2 - - uid: 7396 + - uid: 14114 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-136.5 parent: 2 - - uid: 7397 + - uid: 14115 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-155.5 parent: 2 - - uid: 7398 + - uid: 14116 components: - type: Transform pos: 12.5,-157.5 parent: 2 - - uid: 7399 + - uid: 14117 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-157.5 parent: 2 - - uid: 7400 + - uid: 14118 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-155.5 parent: 2 - - uid: 8581 + - uid: 14119 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-135.5 parent: 2 - - uid: 14265 + - uid: 14120 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-87.5 parent: 2 - - uid: 14277 + - uid: 14121 components: - type: Transform pos: 12.5,-66.5 parent: 2 - - uid: 14278 + - uid: 14122 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-66.5 parent: 2 - - uid: 14279 + - uid: 14123 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-86.5 parent: 2 - - uid: 14280 + - uid: 14124 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-86.5 parent: 2 - - uid: 14287 + - uid: 14125 components: - type: Transform pos: 13.5,-135.5 parent: 2 - - uid: 14310 + - uid: 14126 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-58.5 parent: 2 - - uid: 14322 + - uid: 14127 components: - type: Transform pos: 12.5,-58.5 parent: 2 - - uid: 14323 + - uid: 14128 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-64.5 parent: 2 - - uid: 14324 + - uid: 14129 components: - type: Transform rot: 1.5707963267948966 rad @@ -92222,49 +91645,49 @@ entities: parent: 2 - proto: WallmountTelevision entities: - - uid: 2723 + - uid: 14130 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-111.5 parent: 2 - - uid: 6052 + - uid: 14131 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-343.5 parent: 2 - - uid: 11205 + - uid: 14132 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 2 - - uid: 12686 + - uid: 14133 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-374.5 parent: 2 - - uid: 12688 + - uid: 14134 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-299.5 parent: 2 - - uid: 12690 + - uid: 14135 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-201.5 parent: 2 - - uid: 12691 + - uid: 14136 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-150.5 parent: 2 - - uid: 12693 + - uid: 14137 components: - type: Transform rot: -1.5707963267948966 rad @@ -92272,197 +91695,197 @@ entities: parent: 2 - proto: WallPlastitaniumDiagonal entities: - - uid: 8142 + - uid: 14138 components: - type: Transform pos: 18.5,-296.5 parent: 2 - - uid: 9398 + - uid: 14139 components: - type: Transform pos: 18.5,-314.5 parent: 2 - - uid: 9399 + - uid: 14140 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-300.5 parent: 2 - - uid: 9407 + - uid: 14141 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-296.5 parent: 2 - - uid: 9408 + - uid: 14142 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-300.5 parent: 2 - - uid: 9411 + - uid: 14143 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-314.5 parent: 2 - - uid: 9412 + - uid: 14144 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-318.5 parent: 2 - - uid: 9413 + - uid: 14145 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-318.5 parent: 2 - - uid: 9427 + - uid: 14146 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-309.5 parent: 2 - - uid: 9428 + - uid: 14147 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-305.5 parent: 2 - - uid: 9451 + - uid: 14148 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-304.5 parent: 2 - - uid: 9456 + - uid: 14149 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-303.5 parent: 2 - - uid: 9458 + - uid: 14150 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-302.5 parent: 2 - - uid: 9479 + - uid: 14151 components: - type: Transform pos: 25.5,-310.5 parent: 2 - - uid: 9480 + - uid: 14152 components: - type: Transform pos: 24.5,-311.5 parent: 2 - - uid: 9481 + - uid: 14153 components: - type: Transform pos: 26.5,-309.5 parent: 2 - - uid: 9482 + - uid: 14154 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-312.5 parent: 2 - - uid: 9483 + - uid: 14155 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-311.5 parent: 2 - - uid: 9484 + - uid: 14156 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-310.5 parent: 2 - - uid: 9485 + - uid: 14157 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-312.5 parent: 2 - - uid: 9486 + - uid: 14158 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-311.5 parent: 2 - - uid: 9487 + - uid: 14159 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-310.5 parent: 2 - - uid: 9488 + - uid: 14160 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-309.5 parent: 2 - - uid: 9489 + - uid: 14161 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-310.5 parent: 2 - - uid: 9490 + - uid: 14162 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-311.5 parent: 2 - - uid: 9491 + - uid: 14163 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-305.5 parent: 2 - - uid: 9492 + - uid: 14164 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-304.5 parent: 2 - - uid: 9493 + - uid: 14165 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-303.5 parent: 2 - - uid: 9494 + - uid: 14166 components: - type: Transform pos: 19.5,-302.5 parent: 2 - - uid: 9495 + - uid: 14167 components: - type: Transform pos: 18.5,-303.5 parent: 2 - - uid: 9496 + - uid: 14168 components: - type: Transform pos: 17.5,-304.5 parent: 2 - - uid: 9511 + - uid: 14169 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-305.5 parent: 2 - - uid: 9512 + - uid: 14170 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-304.5 parent: 2 - - uid: 9513 + - uid: 14171 components: - type: Transform rot: 1.5707963267948966 rad @@ -92470,10161 +91893,10162 @@ entities: parent: 2 - proto: WallReinforced entities: - - uid: 22 + - uid: 14172 components: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 23 + - uid: 14173 components: - type: Transform pos: -2.5,2.5 parent: 2 - - uid: 24 + - uid: 14174 components: - type: Transform pos: -3.5,3.5 parent: 2 - - uid: 27 + - uid: 14175 components: - type: Transform pos: 3.5,2.5 parent: 2 - - uid: 28 + - uid: 14176 components: - type: Transform pos: 3.5,3.5 parent: 2 - - uid: 29 + - uid: 14177 components: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 30 + - uid: 14178 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 32 + - uid: 14179 components: - type: Transform pos: -2.5,0.5 parent: 2 - - uid: 33 + - uid: 14180 components: - type: Transform pos: -2.5,-0.5 parent: 2 - - uid: 34 + - uid: 14181 components: - type: Transform pos: -1.5,-0.5 parent: 2 - - uid: 35 + - uid: 14182 components: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 36 + - uid: 14183 components: - type: Transform pos: 0.5,-0.5 parent: 2 - - uid: 37 + - uid: 14184 components: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 38 + - uid: 14185 components: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 39 + - uid: 14186 components: - type: Transform pos: 3.5,0.5 parent: 2 - - uid: 40 + - uid: 14187 components: - type: Transform pos: 3.5,1.5 parent: 2 - - uid: 63 + - uid: 14188 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 66 + - uid: 14189 components: - type: Transform pos: 0.5,-1.5 parent: 2 - - uid: 67 + - uid: 14190 components: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 68 + - uid: 14191 components: - type: Transform pos: 7.5,-9.5 parent: 2 - - uid: 70 + - uid: 14192 components: - type: Transform pos: -4.5,-2.5 parent: 2 - - uid: 71 + - uid: 14193 components: - type: Transform pos: -4.5,-3.5 parent: 2 - - uid: 72 + - uid: 14194 components: - type: Transform pos: -4.5,-4.5 parent: 2 - - uid: 73 + - uid: 14195 components: - type: Transform pos: -3.5,-4.5 parent: 2 - - uid: 75 + - uid: 14196 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-342.5 parent: 2 - - uid: 77 + - uid: 14197 components: - type: Transform pos: 0.5,-4.5 parent: 2 - - uid: 78 + - uid: 14198 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 104 + - uid: 14199 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 108 + - uid: 14200 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 109 + - uid: 14201 components: - type: Transform pos: 7.5,-3.5 parent: 2 - - uid: 110 + - uid: 14202 components: - type: Transform pos: 8.5,-3.5 parent: 2 - - uid: 111 + - uid: 14203 components: - type: Transform pos: 8.5,-2.5 parent: 2 - - uid: 112 + - uid: 14204 components: - type: Transform pos: 8.5,-1.5 parent: 2 - - uid: 114 + - uid: 14205 components: - type: Transform pos: 7.5,-0.5 parent: 2 - - uid: 115 + - uid: 14206 components: - type: Transform pos: 7.5,1.5 parent: 2 - - uid: 116 + - uid: 14207 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 118 + - uid: 14208 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 119 + - uid: 14209 components: - type: Transform pos: -4.5,3.5 parent: 2 - - uid: 127 + - uid: 14210 components: - type: Transform pos: -7.5,-1.5 parent: 2 - - uid: 128 + - uid: 14211 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 129 + - uid: 14212 components: - type: Transform pos: -7.5,-3.5 parent: 2 - - uid: 134 + - uid: 14213 components: - type: Transform pos: 7.5,-4.5 parent: 2 - - uid: 136 + - uid: 14214 components: - type: Transform pos: 7.5,-12.5 parent: 2 - - uid: 137 + - uid: 14215 components: - type: Transform pos: 7.5,-13.5 parent: 2 - - uid: 138 + - uid: 14216 components: - type: Transform pos: 6.5,-13.5 parent: 2 - - uid: 157 + - uid: 14217 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 167 + - uid: 14218 components: - type: Transform pos: 0.5,-7.5 parent: 2 - - uid: 175 + - uid: 14219 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 176 + - uid: 14220 components: - type: Transform pos: 0.5,-9.5 parent: 2 - - uid: 177 + - uid: 14221 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 178 + - uid: 14222 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 179 + - uid: 14223 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 182 + - uid: 14224 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 183 + - uid: 14225 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 184 + - uid: 14226 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 185 + - uid: 14227 components: - type: Transform pos: 4.5,-13.5 parent: 2 - - uid: 186 + - uid: 14228 components: - type: Transform pos: 3.5,-13.5 parent: 2 - - uid: 187 + - uid: 14229 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 189 + - uid: 14230 components: - type: Transform pos: -4.5,-5.5 parent: 2 - - uid: 240 + - uid: 14231 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 241 + - uid: 14232 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 242 + - uid: 14233 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 243 + - uid: 14234 components: - type: Transform pos: 7.5,-14.5 parent: 2 - - uid: 245 + - uid: 14235 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 246 + - uid: 14236 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 247 + - uid: 14237 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 248 + - uid: 14238 components: - type: Transform pos: -4.5,-13.5 parent: 2 - - uid: 251 + - uid: 14239 components: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 252 + - uid: 14240 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 253 + - uid: 14241 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 255 + - uid: 14242 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 256 + - uid: 14243 components: - type: Transform pos: -1.5,-15.5 parent: 2 - - uid: 257 + - uid: 14244 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 263 + - uid: 14245 components: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 265 + - uid: 14246 components: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 327 + - uid: 14247 components: - type: Transform pos: -7.5,-17.5 parent: 2 - - uid: 328 + - uid: 14248 components: - type: Transform pos: -7.5,-18.5 parent: 2 - - uid: 335 + - uid: 14249 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 336 + - uid: 14250 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 337 + - uid: 14251 components: - type: Transform pos: -1.5,-18.5 parent: 2 - - uid: 338 + - uid: 14252 components: - type: Transform pos: -0.5,-18.5 parent: 2 - - uid: 340 + - uid: 14253 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 341 + - uid: 14254 components: - type: Transform pos: 1.5,-20.5 parent: 2 - - uid: 343 + - uid: 14255 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 344 + - uid: 14256 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 345 + - uid: 14257 components: - type: Transform pos: 1.5,-18.5 parent: 2 - - uid: 346 + - uid: 14258 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 347 + - uid: 14259 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 348 + - uid: 14260 components: - type: Transform pos: 4.5,-20.5 parent: 2 - - uid: 353 + - uid: 14261 components: - type: Transform pos: 8.5,-18.5 parent: 2 - - uid: 354 + - uid: 14262 components: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 355 + - uid: 14263 components: - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 357 + - uid: 14264 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 358 + - uid: 14265 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 360 + - uid: 14266 components: - type: Transform pos: -1.5,-16.5 parent: 2 - - uid: 361 + - uid: 14267 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 362 + - uid: 14268 components: - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 366 + - uid: 14269 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 373 + - uid: 14270 components: - type: Transform pos: -6.5,1.5 parent: 2 - - uid: 374 + - uid: 14271 components: - type: Transform pos: -5.5,2.5 parent: 2 - - uid: 426 + - uid: 14272 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 427 + - uid: 14273 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 428 + - uid: 14274 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 429 + - uid: 14275 components: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 431 + - uid: 14276 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 432 + - uid: 14277 components: - type: Transform pos: -1.5,-26.5 parent: 2 - - uid: 433 + - uid: 14278 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 435 + - uid: 14279 components: - type: Transform pos: -2.5,-25.5 parent: 2 - - uid: 445 + - uid: 14280 components: - type: Transform pos: -6.5,-27.5 parent: 2 - - uid: 446 + - uid: 14281 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 448 + - uid: 14282 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 449 + - uid: 14283 components: - type: Transform pos: -6.5,-26.5 parent: 2 - - uid: 450 + - uid: 14284 components: - type: Transform pos: -7.5,-28.5 parent: 2 - - uid: 451 + - uid: 14285 components: - type: Transform pos: -6.5,-30.5 parent: 2 - - uid: 452 + - uid: 14286 components: - type: Transform pos: -7.5,-30.5 parent: 2 - - uid: 453 + - uid: 14287 components: - type: Transform pos: -7.5,-32.5 parent: 2 - - uid: 454 + - uid: 14288 components: - type: Transform pos: -6.5,-32.5 parent: 2 - - uid: 455 + - uid: 14289 components: - type: Transform pos: -6.5,-33.5 parent: 2 - - uid: 456 + - uid: 14290 components: - type: Transform pos: -6.5,-34.5 parent: 2 - - uid: 471 + - uid: 14291 components: - type: Transform pos: -2.5,-42.5 parent: 2 - - uid: 474 + - uid: 14292 components: - type: Transform pos: -6.5,-40.5 parent: 2 - - uid: 485 + - uid: 14293 components: - type: Transform pos: 4.5,-26.5 parent: 2 - - uid: 494 + - uid: 14294 components: - type: Transform pos: 7.5,-35.5 parent: 2 - - uid: 495 + - uid: 14295 components: - type: Transform pos: 7.5,-34.5 parent: 2 - - uid: 496 + - uid: 14296 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 498 + - uid: 14297 components: - type: Transform pos: 8.5,-32.5 parent: 2 - - uid: 499 + - uid: 14298 components: - type: Transform pos: 8.5,-30.5 parent: 2 - - uid: 500 + - uid: 14299 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 501 + - uid: 14300 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 503 + - uid: 14301 components: - type: Transform pos: 7.5,-26.5 parent: 2 - - uid: 505 + - uid: 14302 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 506 + - uid: 14303 components: - type: Transform pos: 8.5,-37.5 parent: 2 - - uid: 507 + - uid: 14304 components: - type: Transform pos: 6.5,-25.5 parent: 2 - - uid: 508 + - uid: 14305 components: - type: Transform pos: 7.5,-37.5 parent: 2 - - uid: 513 + - uid: 14306 components: - type: Transform pos: 7.5,-42.5 parent: 2 - - uid: 514 + - uid: 14307 components: - type: Transform pos: 8.5,-42.5 parent: 2 - - uid: 515 + - uid: 14308 components: - type: Transform pos: 8.5,-44.5 parent: 2 - - uid: 516 + - uid: 14309 components: - type: Transform pos: 7.5,-44.5 parent: 2 - - uid: 522 + - uid: 14310 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 523 + - uid: 14311 components: - type: Transform pos: 3.5,-46.5 parent: 2 - - uid: 524 + - uid: 14312 components: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 525 + - uid: 14313 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 526 + - uid: 14314 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 527 + - uid: 14315 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 528 + - uid: 14316 components: - type: Transform pos: 1.5,-45.5 parent: 2 - - uid: 530 + - uid: 14317 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 532 + - uid: 14318 components: - type: Transform pos: -0.5,-47.5 parent: 2 - - uid: 534 + - uid: 14319 components: - type: Transform pos: -1.5,-46.5 parent: 2 - - uid: 535 + - uid: 14320 components: - type: Transform pos: -1.5,-45.5 parent: 2 - - uid: 536 + - uid: 14321 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 537 + - uid: 14322 components: - type: Transform pos: -2.5,-46.5 parent: 2 - - uid: 538 + - uid: 14323 components: - type: Transform pos: -3.5,-46.5 parent: 2 - - uid: 542 + - uid: 14324 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 543 + - uid: 14325 components: - type: Transform pos: -6.5,-38.5 parent: 2 - - uid: 544 + - uid: 14326 components: - type: Transform pos: -6.5,-37.5 parent: 2 - - uid: 546 + - uid: 14327 components: - type: Transform pos: -7.5,-37.5 parent: 2 - - uid: 547 + - uid: 14328 components: - type: Transform pos: -5.5,-45.5 parent: 2 - - uid: 548 + - uid: 14329 components: - type: Transform pos: -6.5,-45.5 parent: 2 - - uid: 549 + - uid: 14330 components: - type: Transform pos: -6.5,-41.5 parent: 2 - - uid: 550 + - uid: 14331 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 551 + - uid: 14332 components: - type: Transform pos: -6.5,-42.5 parent: 2 - - uid: 552 + - uid: 14333 components: - type: Transform pos: -7.5,-42.5 parent: 2 - - uid: 553 + - uid: 14334 components: - type: Transform pos: -7.5,-44.5 parent: 2 - - uid: 554 + - uid: 14335 components: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 555 + - uid: 14336 components: - type: Transform pos: -1.5,-43.5 parent: 2 - - uid: 566 + - uid: 14337 components: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 567 + - uid: 14338 components: - type: Transform pos: 3.5,-25.5 parent: 2 - - uid: 585 + - uid: 14339 components: - type: Transform pos: 3.5,-55.5 parent: 2 - - uid: 603 + - uid: 14340 components: - type: Transform pos: -3.5,-42.5 parent: 2 - - uid: 608 + - uid: 14341 components: - type: Transform pos: -3.5,-101.5 parent: 2 - - uid: 626 + - uid: 14342 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-335.5 parent: 2 - - uid: 643 + - uid: 14343 components: - type: Transform pos: -18.5,-254.5 parent: 2 - - uid: 646 + - uid: 14344 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - uid: 663 + - uid: 14345 components: - type: Transform pos: -2.5,-100.5 parent: 2 - - uid: 674 + - uid: 14346 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 675 + - uid: 14347 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 676 + - uid: 14348 components: - type: Transform pos: -1.5,-52.5 parent: 2 - - uid: 677 + - uid: 14349 components: - type: Transform pos: -1.5,-53.5 parent: 2 - - uid: 678 + - uid: 14350 components: - type: Transform pos: -0.5,-53.5 parent: 2 - - uid: 679 + - uid: 14351 components: - type: Transform pos: 2.5,-53.5 parent: 2 - - uid: 680 + - uid: 14352 components: - type: Transform pos: 1.5,-53.5 parent: 2 - - uid: 712 + - uid: 14353 components: - type: Transform pos: -1.5,-44.5 parent: 2 - - uid: 727 + - uid: 14354 components: - type: Transform pos: -3.5,-43.5 parent: 2 - - uid: 883 + - uid: 14355 components: - type: Transform pos: -7.5,-64.5 parent: 2 - - uid: 892 + - uid: 14356 components: - type: Transform pos: -3.5,-52.5 parent: 2 - - uid: 894 + - uid: 14357 components: - type: Transform pos: -20.5,-250.5 parent: 2 - - uid: 899 + - uid: 14358 components: - type: Transform pos: 6.5,-53.5 parent: 2 - - uid: 901 + - uid: 14359 components: - type: Transform pos: 6.5,-52.5 parent: 2 - - uid: 902 + - uid: 14360 components: - type: Transform pos: 7.5,-54.5 parent: 2 - - uid: 907 + - uid: 14361 components: - type: Transform pos: 7.5,-53.5 parent: 2 - - uid: 910 + - uid: 14362 components: - type: Transform pos: 7.5,-60.5 parent: 2 - - uid: 911 + - uid: 14363 components: - type: Transform pos: 7.5,-59.5 parent: 2 - - uid: 913 + - uid: 14364 components: - type: Transform pos: -7.5,-62.5 parent: 2 - - uid: 926 + - uid: 14365 components: - type: Transform pos: -7.5,-63.5 parent: 2 - - uid: 939 + - uid: 14366 components: - type: Transform pos: 7.5,-65.5 parent: 2 - - uid: 940 + - uid: 14367 components: - type: Transform pos: 7.5,-66.5 parent: 2 - - uid: 944 + - uid: 14368 components: - type: Transform pos: 8.5,-54.5 parent: 2 - - uid: 952 + - uid: 14369 components: - type: Transform pos: -6.5,-55.5 parent: 2 - - uid: 953 + - uid: 14370 components: - type: Transform pos: -6.5,-54.5 parent: 2 - - uid: 957 + - uid: 14371 components: - type: Transform pos: 7.5,-67.5 parent: 2 - - uid: 975 + - uid: 14372 components: - type: Transform pos: -6.5,-70.5 parent: 2 - - uid: 989 + - uid: 14373 components: - type: Transform pos: 3.5,-228.5 parent: 2 - - uid: 1000 + - uid: 14374 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 1001 + - uid: 14375 components: - type: Transform pos: 3.5,-73.5 parent: 2 - - uid: 1003 + - uid: 14376 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 1009 + - uid: 14377 components: - type: Transform pos: -5.5,-133.5 parent: 2 - - uid: 1029 + - uid: 14378 components: - type: Transform pos: -7.5,-69.5 parent: 2 - - uid: 1083 + - uid: 14379 components: - type: Transform pos: 4.5,-74.5 parent: 2 - - uid: 1085 + - uid: 14380 components: - type: Transform pos: 4.5,-73.5 parent: 2 - - uid: 1088 + - uid: 14381 components: - type: Transform pos: 4.5,-72.5 parent: 2 - - uid: 1089 + - uid: 14382 components: - type: Transform pos: 2.5,-72.5 parent: 2 - - uid: 1122 + - uid: 14383 components: - type: Transform pos: -7.5,-61.5 parent: 2 - - uid: 1140 + - uid: 14384 components: - type: Transform pos: -6.5,-71.5 parent: 2 - - uid: 1146 + - uid: 14385 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-334.5 parent: 2 - - uid: 1158 + - uid: 14386 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 1179 + - uid: 14387 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-333.5 parent: 2 - - uid: 1215 + - uid: 14388 components: - type: Transform pos: -2.5,-52.5 parent: 2 - - uid: 1216 + - uid: 14389 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 1221 + - uid: 14390 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 1224 + - uid: 14391 components: - type: Transform pos: 7.5,-58.5 parent: 2 - - uid: 1241 + - uid: 14392 components: - type: Transform pos: -7.5,-56.5 parent: 2 - - uid: 1266 + - uid: 14393 components: - type: Transform pos: 5.5,-228.5 parent: 2 - - uid: 1316 + - uid: 14394 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-328.5 parent: 2 - - uid: 1342 + - uid: 14395 components: - type: Transform pos: 3.5,-217.5 parent: 2 - - uid: 1402 + - uid: 14396 components: - type: Transform pos: -12.5,-236.5 parent: 2 - - uid: 1407 + - uid: 14397 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-332.5 parent: 2 - - uid: 1426 + - uid: 14398 components: - type: Transform pos: 4.5,-55.5 parent: 2 - - uid: 1435 + - uid: 14399 components: - type: Transform pos: -3.5,-79.5 parent: 2 - - uid: 1436 + - uid: 14400 components: - type: Transform pos: -3.5,-99.5 parent: 2 - - uid: 1465 + - uid: 14401 components: - type: Transform pos: 1.5,-78.5 parent: 2 - - uid: 1466 + - uid: 14402 components: - type: Transform pos: -0.5,-78.5 parent: 2 - - uid: 1469 + - uid: 14403 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 1470 + - uid: 14404 components: - type: Transform pos: -1.5,-79.5 parent: 2 - - uid: 1473 + - uid: 14405 components: - type: Transform pos: -1.5,-80.5 parent: 2 - - uid: 1474 + - uid: 14406 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 1476 + - uid: 14407 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 1477 + - uid: 14408 components: - type: Transform pos: 2.5,-80.5 parent: 2 - - uid: 1502 + - uid: 14409 components: - type: Transform pos: -10.5,-86.5 parent: 2 - - uid: 1505 + - uid: 14410 components: - type: Transform pos: -2.5,-79.5 parent: 2 - - uid: 1506 + - uid: 14411 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 1507 + - uid: 14412 components: - type: Transform pos: -5.5,-79.5 parent: 2 - - uid: 1508 + - uid: 14413 components: - type: Transform pos: -5.5,-80.5 parent: 2 - - uid: 1509 + - uid: 14414 components: - type: Transform pos: -6.5,-80.5 parent: 2 - - uid: 1510 + - uid: 14415 components: - type: Transform pos: -6.5,-81.5 parent: 2 - - uid: 1511 + - uid: 14416 components: - type: Transform pos: -6.5,-82.5 parent: 2 - - uid: 1513 + - uid: 14417 components: - type: Transform pos: 3.5,-79.5 parent: 2 - - uid: 1514 + - uid: 14418 components: - type: Transform pos: 4.5,-79.5 parent: 2 - - uid: 1515 + - uid: 14419 components: - type: Transform pos: 4.5,-80.5 parent: 2 - - uid: 1533 + - uid: 14420 components: - type: Transform pos: -6.5,-90.5 parent: 2 - - uid: 1534 + - uid: 14421 components: - type: Transform pos: -6.5,-91.5 parent: 2 - - uid: 1535 + - uid: 14422 components: - type: Transform pos: -6.5,-92.5 parent: 2 - - uid: 1539 + - uid: 14423 components: - type: Transform pos: -5.5,-99.5 parent: 2 - - uid: 1540 + - uid: 14424 components: - type: Transform pos: -6.5,-98.5 parent: 2 - - uid: 1541 + - uid: 14425 components: - type: Transform pos: -6.5,-99.5 parent: 2 - - uid: 1542 + - uid: 14426 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 1543 + - uid: 14427 components: - type: Transform pos: -5.5,-100.5 parent: 2 - - uid: 1545 + - uid: 14428 components: - type: Transform pos: -3.5,-100.5 parent: 2 - - uid: 1546 + - uid: 14429 components: - type: Transform pos: -5.5,-101.5 parent: 2 - - uid: 1547 + - uid: 14430 components: - type: Transform pos: -1.5,-99.5 parent: 2 - - uid: 1550 + - uid: 14431 components: - type: Transform pos: 4.5,-101.5 parent: 2 - - uid: 1551 + - uid: 14432 components: - type: Transform pos: 6.5,-99.5 parent: 2 - - uid: 1553 + - uid: 14433 components: - type: Transform pos: 3.5,-100.5 parent: 2 - - uid: 1561 + - uid: 14434 components: - type: Transform pos: 6.5,-101.5 parent: 2 - - uid: 1562 + - uid: 14435 components: - type: Transform pos: 1.5,-101.5 parent: 2 - - uid: 1570 + - uid: 14436 components: - type: Transform pos: -0.5,-101.5 parent: 2 - - uid: 1571 + - uid: 14437 components: - type: Transform pos: 6.5,-100.5 parent: 2 - - uid: 1577 + - uid: 14438 components: - type: Transform pos: 7.5,-98.5 parent: 2 - - uid: 1578 + - uid: 14439 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 1579 + - uid: 14440 components: - type: Transform pos: 4.5,-100.5 parent: 2 - - uid: 1582 + - uid: 14441 components: - type: Transform pos: 7.5,-86.5 parent: 2 - - uid: 1587 + - uid: 14442 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-332.5 parent: 2 - - uid: 1624 + - uid: 14443 components: - type: Transform pos: -4.5,-52.5 parent: 2 - - uid: 1631 + - uid: 14444 components: - type: Transform pos: -6.5,-97.5 parent: 2 - - uid: 1674 + - uid: 14445 components: - type: Transform pos: 7.5,-99.5 parent: 2 - - uid: 1678 + - uid: 14446 components: - type: Transform pos: -1.5,-98.5 parent: 2 - - uid: 1713 + - uid: 14447 components: - type: Transform pos: -0.5,-99.5 parent: 2 - - uid: 1741 + - uid: 14448 components: - type: Transform pos: -0.5,-261.5 parent: 2 - - uid: 1811 + - uid: 14449 components: - type: Transform pos: -16.5,-249.5 parent: 2 - - uid: 1814 + - uid: 14450 components: - type: Transform pos: 1.5,-105.5 parent: 2 - - uid: 1815 + - uid: 14451 components: - type: Transform pos: 2.5,-106.5 parent: 2 - - uid: 1816 + - uid: 14452 components: - type: Transform pos: 2.5,-107.5 parent: 2 - - uid: 1817 + - uid: 14453 components: - type: Transform pos: 1.5,-107.5 parent: 2 - - uid: 1818 + - uid: 14454 components: - type: Transform pos: -0.5,-105.5 parent: 2 - - uid: 1820 + - uid: 14455 components: - type: Transform pos: -1.5,-106.5 parent: 2 - - uid: 1821 + - uid: 14456 components: - type: Transform pos: -1.5,-107.5 parent: 2 - - uid: 1822 + - uid: 14457 components: - type: Transform pos: -0.5,-107.5 parent: 2 - - uid: 1826 + - uid: 14458 components: - type: Transform pos: -2.5,-106.5 parent: 2 - - uid: 1827 + - uid: 14459 components: - type: Transform pos: -3.5,-106.5 parent: 2 - - uid: 1830 + - uid: 14460 components: - type: Transform pos: -6.5,-106.5 parent: 2 - - uid: 1846 + - uid: 14461 components: - type: Transform pos: -16.5,-235.5 parent: 2 - - uid: 1853 + - uid: 14462 components: - type: Transform pos: -3.5,-105.5 parent: 2 - - uid: 1854 + - uid: 14463 components: - type: Transform pos: -5.5,-105.5 parent: 2 - - uid: 1919 + - uid: 14464 components: - type: Transform pos: -15.5,-235.5 parent: 2 - - uid: 1922 + - uid: 14465 components: - type: Transform pos: -17.5,-235.5 parent: 2 - - uid: 1932 + - uid: 14466 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-117.5 parent: 2 - - uid: 1942 + - uid: 14467 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-116.5 parent: 2 - - uid: 1952 + - uid: 14468 components: - type: Transform pos: -9.5,-107.5 parent: 2 - - uid: 1953 + - uid: 14469 components: - type: Transform pos: -9.5,-111.5 parent: 2 - - uid: 1954 + - uid: 14470 components: - type: Transform pos: -9.5,-114.5 parent: 2 - - uid: 1956 + - uid: 14471 components: - type: Transform pos: -9.5,-120.5 parent: 2 - - uid: 1957 + - uid: 14472 components: - type: Transform pos: -9.5,-123.5 parent: 2 - - uid: 1959 + - uid: 14473 components: - type: Transform pos: -8.5,-126.5 parent: 2 - - uid: 1960 + - uid: 14474 components: - type: Transform pos: -7.5,-126.5 parent: 2 - - uid: 1962 + - uid: 14475 components: - type: Transform pos: -5.5,-126.5 parent: 2 - - uid: 1976 + - uid: 14476 components: - type: Transform pos: -9.5,-110.5 parent: 2 - - uid: 2008 + - uid: 14477 components: - type: Transform pos: -10.5,-252.5 parent: 2 - - uid: 2009 + - uid: 14478 components: - type: Transform pos: -10.5,-255.5 parent: 2 - - uid: 2010 + - uid: 14479 components: - type: Transform pos: -10.5,-256.5 parent: 2 - - uid: 2011 + - uid: 14480 components: - type: Transform pos: -10.5,-251.5 parent: 2 - - uid: 2012 + - uid: 14481 components: - type: Transform pos: -10.5,-253.5 parent: 2 - - uid: 2014 + - uid: 14482 components: - type: Transform pos: -10.5,-254.5 parent: 2 - - uid: 2031 + - uid: 14483 components: - type: Transform pos: -3.5,-98.5 parent: 2 - - uid: 2074 + - uid: 14484 components: - type: Transform pos: -5.5,-106.5 parent: 2 - - uid: 2101 + - uid: 14485 components: - type: Transform pos: -3.5,-127.5 parent: 2 - - uid: 2102 + - uid: 14486 components: - type: Transform pos: -3.5,-128.5 parent: 2 - - uid: 2103 + - uid: 14487 components: - type: Transform pos: -2.5,-127.5 parent: 2 - - uid: 2104 + - uid: 14488 components: - type: Transform pos: -3.5,-126.5 parent: 2 - - uid: 2105 + - uid: 14489 components: - type: Transform pos: -1.5,-126.5 parent: 2 - - uid: 2106 + - uid: 14490 components: - type: Transform pos: -0.5,-126.5 parent: 2 - - uid: 2107 + - uid: 14491 components: - type: Transform pos: -1.5,-127.5 parent: 2 - - uid: 2109 + - uid: 14492 components: - type: Transform pos: -0.5,-128.5 parent: 2 - - uid: 2110 + - uid: 14493 components: - type: Transform pos: 1.5,-126.5 parent: 2 - - uid: 2114 + - uid: 14494 components: - type: Transform pos: 1.5,-128.5 parent: 2 - - uid: 2118 + - uid: 14495 components: - type: Transform pos: 6.5,-127.5 parent: 2 - - uid: 2119 + - uid: 14496 components: - type: Transform pos: 6.5,-128.5 parent: 2 - - uid: 2121 + - uid: 14497 components: - type: Transform pos: 6.5,-126.5 parent: 2 - - uid: 2123 + - uid: 14498 components: - type: Transform pos: 7.5,-125.5 parent: 2 - - uid: 2130 + - uid: 14499 components: - type: Transform pos: 4.5,-132.5 parent: 2 - - uid: 2133 + - uid: 14500 components: - type: Transform pos: 8.5,-112.5 parent: 2 - - uid: 2134 + - uid: 14501 components: - type: Transform pos: 7.5,-112.5 parent: 2 - - uid: 2135 + - uid: 14502 components: - type: Transform pos: 7.5,-111.5 parent: 2 - - uid: 2136 + - uid: 14503 components: - type: Transform pos: 7.5,-110.5 parent: 2 - - uid: 2137 + - uid: 14504 components: - type: Transform pos: 7.5,-109.5 parent: 2 - - uid: 2138 + - uid: 14505 components: - type: Transform pos: 7.5,-108.5 parent: 2 - - uid: 2139 + - uid: 14506 components: - type: Transform pos: 7.5,-107.5 parent: 2 - - uid: 2140 + - uid: 14507 components: - type: Transform pos: 6.5,-107.5 parent: 2 - - uid: 2141 + - uid: 14508 components: - type: Transform pos: 4.5,-107.5 parent: 2 - - uid: 2142 + - uid: 14509 components: - type: Transform pos: 4.5,-106.5 parent: 2 - - uid: 2143 + - uid: 14510 components: - type: Transform pos: 3.5,-106.5 parent: 2 - - uid: 2144 + - uid: 14511 components: - type: Transform pos: 4.5,-105.5 parent: 2 - - uid: 2145 + - uid: 14512 components: - type: Transform pos: 6.5,-105.5 parent: 2 - - uid: 2146 + - uid: 14513 components: - type: Transform pos: 6.5,-106.5 parent: 2 - - uid: 2154 + - uid: 14514 components: - type: Transform pos: 2.5,-122.5 parent: 2 - - uid: 2155 + - uid: 14515 components: - type: Transform pos: 3.5,-121.5 parent: 2 - - uid: 2157 + - uid: 14516 components: - type: Transform pos: 3.5,-119.5 parent: 2 - - uid: 2158 + - uid: 14517 components: - type: Transform pos: 3.5,-118.5 parent: 2 - - uid: 2159 + - uid: 14518 components: - type: Transform pos: 2.5,-118.5 parent: 2 - - uid: 2160 + - uid: 14519 components: - type: Transform pos: 1.5,-118.5 parent: 2 - - uid: 2161 + - uid: 14520 components: - type: Transform pos: -0.5,-118.5 parent: 2 - - uid: 2163 + - uid: 14521 components: - type: Transform pos: -1.5,-118.5 parent: 2 - - uid: 2164 + - uid: 14522 components: - type: Transform pos: -2.5,-118.5 parent: 2 - - uid: 2171 + - uid: 14523 components: - type: Transform pos: -1.5,-115.5 parent: 2 - - uid: 2172 + - uid: 14524 components: - type: Transform pos: -0.5,-115.5 parent: 2 - - uid: 2178 + - uid: 14525 components: - type: Transform pos: 4.5,-118.5 parent: 2 - - uid: 2188 + - uid: 14526 components: - type: Transform pos: 4.5,-111.5 parent: 2 - - uid: 2190 + - uid: 14527 components: - type: Transform pos: -2.5,-119.5 parent: 2 - - uid: 2195 + - uid: 14528 components: - type: Transform pos: 1.5,-112.5 parent: 2 - - uid: 2196 + - uid: 14529 components: - type: Transform pos: 1.5,-111.5 parent: 2 - - uid: 2197 + - uid: 14530 components: - type: Transform pos: 0.5,-111.5 parent: 2 - - uid: 2198 + - uid: 14531 components: - type: Transform pos: -0.5,-111.5 parent: 2 - - uid: 2199 + - uid: 14532 components: - type: Transform pos: -1.5,-111.5 parent: 2 - - uid: 2204 + - uid: 14533 components: - type: Transform pos: -2.5,-117.5 parent: 2 - - uid: 2205 + - uid: 14534 components: - type: Transform pos: -2.5,-116.5 parent: 2 - - uid: 2206 + - uid: 14535 components: - type: Transform pos: -2.5,-115.5 parent: 2 - - uid: 2227 + - uid: 14536 components: - type: Transform pos: -20.5,-235.5 parent: 2 - - uid: 2300 + - uid: 14537 components: - type: Transform pos: 6.5,-109.5 parent: 2 - - uid: 2301 + - uid: 14538 components: - type: Transform pos: 5.5,-109.5 parent: 2 - - uid: 2302 + - uid: 14539 components: - type: Transform pos: 4.5,-109.5 parent: 2 - - uid: 2336 + - uid: 14540 components: - type: Transform pos: -11.5,-250.5 parent: 2 - - uid: 2359 + - uid: 14541 components: - type: Transform pos: -16.5,-248.5 parent: 2 - - uid: 2361 + - uid: 14542 components: - type: Transform pos: -14.5,-249.5 parent: 2 - - uid: 2362 + - uid: 14543 components: - type: Transform pos: -13.5,-249.5 parent: 2 - - uid: 2371 + - uid: 14544 components: - type: Transform pos: -12.5,-250.5 parent: 2 - - uid: 2453 + - uid: 14545 components: - type: Transform pos: -0.5,-132.5 parent: 2 - - uid: 2454 + - uid: 14546 components: - type: Transform pos: 1.5,-132.5 parent: 2 - - uid: 2455 + - uid: 14547 components: - type: Transform pos: -0.5,-134.5 parent: 2 - - uid: 2459 + - uid: 14548 components: - type: Transform pos: -1.5,-133.5 parent: 2 - - uid: 2460 + - uid: 14549 components: - type: Transform pos: -1.5,-134.5 parent: 2 - - uid: 2469 + - uid: 14550 components: - type: Transform pos: -17.5,-248.5 parent: 2 - - uid: 2480 + - uid: 14551 components: - type: Transform pos: -2.5,-133.5 parent: 2 - - uid: 2486 + - uid: 14552 components: - type: Transform pos: 4.5,-133.5 parent: 2 - - uid: 2488 + - uid: 14553 components: - type: Transform pos: 6.5,-133.5 parent: 2 - - uid: 2489 + - uid: 14554 components: - type: Transform pos: 6.5,-134.5 parent: 2 - - uid: 2490 + - uid: 14555 components: - type: Transform pos: -3.5,-133.5 parent: 2 - - uid: 2491 + - uid: 14556 components: - type: Transform pos: -3.5,-134.5 parent: 2 - - uid: 2493 + - uid: 14557 components: - type: Transform pos: -5.5,-134.5 parent: 2 - - uid: 2494 + - uid: 14558 components: - type: Transform pos: -6.5,-135.5 parent: 2 - - uid: 2495 + - uid: 14559 components: - type: Transform pos: -6.5,-136.5 parent: 2 - - uid: 2508 + - uid: 14560 components: - type: Transform pos: -6.5,-149.5 parent: 2 - - uid: 2513 + - uid: 14561 components: - type: Transform pos: -6.5,-153.5 parent: 2 - - uid: 2514 + - uid: 14562 components: - type: Transform pos: -5.5,-153.5 parent: 2 - - uid: 2515 + - uid: 14563 components: - type: Transform pos: -5.5,-154.5 parent: 2 - - uid: 2516 + - uid: 14564 components: - type: Transform pos: -5.5,-155.5 parent: 2 - - uid: 2517 + - uid: 14565 components: - type: Transform pos: -3.5,-154.5 parent: 2 - - uid: 2518 + - uid: 14566 components: - type: Transform pos: -3.5,-153.5 parent: 2 - - uid: 2519 + - uid: 14567 components: - type: Transform pos: -3.5,-155.5 parent: 2 - - uid: 2520 + - uid: 14568 components: - type: Transform pos: -2.5,-154.5 parent: 2 - - uid: 2521 + - uid: 14569 components: - type: Transform pos: -1.5,-154.5 parent: 2 - - uid: 2523 + - uid: 14570 components: - type: Transform pos: -1.5,-153.5 parent: 2 - - uid: 2524 + - uid: 14571 components: - type: Transform pos: -0.5,-153.5 parent: 2 - - uid: 2526 + - uid: 14572 components: - type: Transform pos: 1.5,-153.5 parent: 2 - - uid: 2527 + - uid: 14573 components: - type: Transform pos: 2.5,-154.5 parent: 2 - - uid: 2533 + - uid: 14574 components: - type: Transform pos: 2.5,-153.5 parent: 2 - - uid: 2545 + - uid: 14575 components: - type: Transform pos: 7.5,-154.5 parent: 2 - - uid: 2550 + - uid: 14576 components: - type: Transform pos: 6.5,-154.5 parent: 2 - - uid: 2551 + - uid: 14577 components: - type: Transform pos: 6.5,-155.5 parent: 2 - - uid: 2560 + - uid: 14578 components: - type: Transform pos: 6.5,-153.5 parent: 2 - - uid: 2561 + - uid: 14579 components: - type: Transform pos: 9.5,-152.5 parent: 2 - - uid: 2565 + - uid: 14580 components: - type: Transform pos: 9.5,-143.5 parent: 2 - - uid: 2566 + - uid: 14581 components: - type: Transform pos: 9.5,-149.5 parent: 2 - - uid: 2570 + - uid: 14582 components: - type: Transform pos: 9.5,-140.5 parent: 2 - - uid: 2573 + - uid: 14583 components: - type: Transform pos: 9.5,-142.5 parent: 2 - - uid: 2576 + - uid: 14584 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-246.5 parent: 2 - - uid: 2581 + - uid: 14585 components: - type: Transform pos: 8.5,-135.5 parent: 2 - - uid: 2583 + - uid: 14586 components: - type: Transform pos: 7.5,-134.5 parent: 2 - - uid: 2626 + - uid: 14587 components: - type: Transform pos: -5.5,-151.5 parent: 2 - - uid: 2702 + - uid: 14588 components: - type: Transform pos: 8.5,-153.5 parent: 2 - - uid: 2784 + - uid: 14589 components: - type: Transform pos: 4.5,-153.5 parent: 2 - - uid: 2813 + - uid: 14590 components: - type: Transform pos: 8.5,-154.5 parent: 2 - - uid: 2814 + - uid: 14591 components: - type: Transform pos: 8.5,-152.5 parent: 2 - - uid: 2816 + - uid: 14592 components: - type: Transform pos: 6.5,-152.5 parent: 2 - - uid: 2825 + - uid: 14593 components: - type: Transform pos: 5.5,-116.5 parent: 2 - - uid: 2856 + - uid: 14594 components: - type: Transform pos: 1.5,-159.5 parent: 2 - - uid: 2857 + - uid: 14595 components: - type: Transform pos: -0.5,-159.5 parent: 2 - - uid: 2900 + - uid: 14596 components: - type: Transform pos: 2.5,-160.5 parent: 2 - - uid: 2901 + - uid: 14597 components: - type: Transform pos: 2.5,-161.5 parent: 2 - - uid: 2902 + - uid: 14598 components: - type: Transform pos: -1.5,-160.5 parent: 2 - - uid: 2904 + - uid: 14599 components: - type: Transform pos: -0.5,-161.5 parent: 2 - - uid: 2905 + - uid: 14600 components: - type: Transform pos: 1.5,-161.5 parent: 2 - - uid: 2922 + - uid: 14601 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-239.5 parent: 2 - - uid: 2928 + - uid: 14602 components: - type: Transform pos: 2.5,-180.5 parent: 2 - - uid: 2929 + - uid: 14603 components: - type: Transform pos: 1.5,-180.5 parent: 2 - - uid: 2932 + - uid: 14604 components: - type: Transform pos: -1.5,-181.5 parent: 2 - - uid: 2933 + - uid: 14605 components: - type: Transform pos: 2.5,-181.5 parent: 2 - - uid: 2934 + - uid: 14606 components: - type: Transform pos: 1.5,-182.5 parent: 2 - - uid: 2935 + - uid: 14607 components: - type: Transform pos: -0.5,-182.5 parent: 2 - - uid: 2940 + - uid: 14608 components: - type: Transform pos: -12.5,-240.5 parent: 2 - - uid: 2956 + - uid: 14609 components: - type: Transform pos: -12.5,-239.5 parent: 2 - - uid: 2958 + - uid: 14610 components: - type: Transform pos: -5.5,-160.5 parent: 2 - - uid: 2963 + - uid: 14611 components: - type: Transform pos: -5.5,-161.5 parent: 2 - - uid: 2964 + - uid: 14612 components: - type: Transform pos: -2.5,-160.5 parent: 2 - - uid: 2965 + - uid: 14613 components: - type: Transform pos: -3.5,-160.5 parent: 2 - - uid: 2971 + - uid: 14614 components: - type: Transform pos: -6.5,-161.5 parent: 2 - - uid: 2978 + - uid: 14615 components: - type: Transform pos: -7.5,-164.5 parent: 2 - - uid: 2979 + - uid: 14616 components: - type: Transform pos: -7.5,-165.5 parent: 2 - - uid: 2980 + - uid: 14617 components: - type: Transform pos: -7.5,-169.5 parent: 2 - - uid: 2981 + - uid: 14618 components: - type: Transform pos: -7.5,-170.5 parent: 2 - - uid: 2982 + - uid: 14619 components: - type: Transform pos: -8.5,-170.5 parent: 2 - - uid: 2985 + - uid: 14620 components: - type: Transform pos: -8.5,-177.5 parent: 2 - - uid: 2988 + - uid: 14621 components: - type: Transform pos: -7.5,-179.5 parent: 2 - - uid: 2990 + - uid: 14622 components: - type: Transform pos: 8.5,-165.5 parent: 2 - - uid: 2991 + - uid: 14623 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-336.5 parent: 2 - - uid: 2992 + - uid: 14624 components: - type: Transform pos: -6.5,-180.5 parent: 2 - - uid: 2993 + - uid: 14625 components: - type: Transform pos: -5.5,-180.5 parent: 2 - - uid: 2994 + - uid: 14626 components: - type: Transform pos: 8.5,-169.5 parent: 2 - - uid: 2997 + - uid: 14627 components: - type: Transform pos: -15.5,-239.5 parent: 2 - - uid: 2998 + - uid: 14628 components: - type: Transform pos: 9.5,-170.5 parent: 2 - - uid: 2999 + - uid: 14629 components: - type: Transform pos: 9.5,-171.5 parent: 2 - - uid: 3000 + - uid: 14630 components: - type: Transform pos: 9.5,-172.5 parent: 2 - - uid: 3002 + - uid: 14631 components: - type: Transform pos: -3.5,-182.5 parent: 2 - - uid: 3003 + - uid: 14632 components: - type: Transform pos: -2.5,-181.5 parent: 2 - - uid: 3004 + - uid: 14633 components: - type: Transform pos: 9.5,-177.5 parent: 2 - - uid: 3006 + - uid: 14634 components: - type: Transform pos: 9.5,-179.5 parent: 2 - - uid: 3008 + - uid: 14635 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-338.5 parent: 2 - - uid: 3012 + - uid: 14636 components: - type: Transform pos: -12.5,-241.5 parent: 2 - - uid: 3014 + - uid: 14637 components: - type: Transform pos: -12.5,-242.5 parent: 2 - - uid: 3015 + - uid: 14638 components: - type: Transform pos: -12.5,-244.5 parent: 2 - - uid: 3019 + - uid: 14639 components: - type: Transform pos: -12.5,-262.5 parent: 2 - - uid: 3020 + - uid: 14640 components: - type: Transform pos: -12.5,-245.5 parent: 2 - - uid: 3024 + - uid: 14641 components: - type: Transform pos: -12.5,-247.5 parent: 2 - - uid: 3026 + - uid: 14642 components: - type: Transform pos: 3.5,-181.5 parent: 2 - - uid: 3037 + - uid: 14643 components: - type: Transform pos: 6.5,-182.5 parent: 2 - - uid: 3044 + - uid: 14644 components: - type: Transform pos: 6.5,-180.5 parent: 2 - - uid: 3051 + - uid: 14645 components: - type: Transform pos: 7.5,-180.5 parent: 2 - - uid: 3055 + - uid: 14646 components: - type: Transform pos: -12.5,-264.5 parent: 2 - - uid: 3058 + - uid: 14647 components: - type: Transform pos: -12.5,-246.5 parent: 2 - - uid: 3065 + - uid: 14648 components: - type: Transform pos: 7.5,-164.5 parent: 2 - - uid: 3078 + - uid: 14649 components: - type: Transform pos: 3.5,-160.5 parent: 2 - - uid: 3079 + - uid: 14650 components: - type: Transform pos: 4.5,-160.5 parent: 2 - - uid: 3080 + - uid: 14651 components: - type: Transform pos: 4.5,-161.5 parent: 2 - - uid: 3081 + - uid: 14652 components: - type: Transform pos: 6.5,-161.5 parent: 2 - - uid: 3082 + - uid: 14653 components: - type: Transform pos: 6.5,-160.5 parent: 2 - - uid: 3083 + - uid: 14654 components: - type: Transform pos: 7.5,-161.5 parent: 2 - - uid: 3101 + - uid: 14655 components: - type: Transform pos: -12.5,-249.5 parent: 2 - - uid: 3105 + - uid: 14656 components: - type: Transform pos: -12.5,-263.5 parent: 2 - - uid: 3115 + - uid: 14657 components: - type: Transform pos: -12.5,-259.5 parent: 2 - - uid: 3183 + - uid: 14658 components: - type: Transform pos: -19.5,-235.5 parent: 2 - - uid: 3195 + - uid: 14659 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 3208 + - uid: 14660 components: - type: Transform pos: -1.5,-162.5 parent: 2 - - uid: 3210 + - uid: 14661 components: - type: Transform pos: -18.5,-235.5 parent: 2 - - uid: 3220 + - uid: 14662 components: - type: Transform pos: 4.5,-187.5 parent: 2 - - uid: 3270 + - uid: 14663 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-223.5 parent: 2 - - uid: 3278 + - uid: 14664 components: - type: Transform pos: -0.5,-240.5 parent: 2 - - uid: 3539 + - uid: 14665 components: - type: Transform pos: -13.5,-239.5 parent: 2 - - uid: 3540 + - uid: 14666 components: - type: Transform pos: 4.5,-202.5 parent: 2 - - uid: 3542 + - uid: 14667 components: - type: Transform pos: 4.5,-201.5 parent: 2 - - uid: 3560 + - uid: 14668 components: - type: Transform pos: -3.5,-161.5 parent: 2 - - uid: 3606 + - uid: 14669 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-255.5 parent: 2 - - uid: 3651 + - uid: 14670 components: - type: Transform pos: -2.5,-187.5 parent: 2 - - uid: 3652 + - uid: 14671 components: - type: Transform pos: -1.5,-187.5 parent: 2 - - uid: 3654 + - uid: 14672 components: - type: Transform pos: -0.5,-186.5 parent: 2 - - uid: 3655 + - uid: 14673 components: - type: Transform pos: 1.5,-186.5 parent: 2 - - uid: 3657 + - uid: 14674 components: - type: Transform pos: 2.5,-187.5 parent: 2 - - uid: 3658 + - uid: 14675 components: - type: Transform pos: 3.5,-187.5 parent: 2 - - uid: 3659 + - uid: 14676 components: - type: Transform pos: 2.5,-188.5 parent: 2 - - uid: 3660 + - uid: 14677 components: - type: Transform pos: 1.5,-188.5 parent: 2 - - uid: 3661 + - uid: 14678 components: - type: Transform pos: -0.5,-188.5 parent: 2 - - uid: 3662 + - uid: 14679 components: - type: Transform pos: -1.5,-188.5 parent: 2 - - uid: 3667 + - uid: 14680 components: - type: Transform pos: 4.5,-188.5 parent: 2 - - uid: 3669 + - uid: 14681 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-331.5 parent: 2 - - uid: 3718 + - uid: 14682 components: - type: Transform pos: 5.5,-229.5 parent: 2 - - uid: 3753 + - uid: 14683 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-247.5 parent: 2 - - uid: 3754 + - uid: 14684 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-248.5 parent: 2 - - uid: 3755 + - uid: 14685 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-248.5 parent: 2 - - uid: 3774 + - uid: 14686 components: - type: Transform pos: -4.5,-199.5 parent: 2 - - uid: 3794 + - uid: 14687 components: - type: Transform pos: -7.5,-194.5 parent: 2 - - uid: 3798 + - uid: 14688 components: - type: Transform pos: -7.5,-198.5 parent: 2 - - uid: 3799 + - uid: 14689 components: - type: Transform pos: -7.5,-199.5 parent: 2 - - uid: 3801 + - uid: 14690 components: - type: Transform pos: -6.5,-200.5 parent: 2 - - uid: 3804 + - uid: 14691 components: - type: Transform pos: -6.5,-203.5 parent: 2 - - uid: 3807 + - uid: 14692 components: - type: Transform pos: -6.5,-206.5 parent: 2 - - uid: 3811 + - uid: 14693 components: - type: Transform pos: -3.5,-207.5 parent: 2 - - uid: 3812 + - uid: 14694 components: - type: Transform pos: -3.5,-208.5 parent: 2 - - uid: 3813 + - uid: 14695 components: - type: Transform pos: -2.5,-208.5 parent: 2 - - uid: 3814 + - uid: 14696 components: - type: Transform pos: -1.5,-208.5 parent: 2 - - uid: 3815 + - uid: 14697 components: - type: Transform pos: -1.5,-207.5 parent: 2 - - uid: 3816 + - uid: 14698 components: - type: Transform pos: -0.5,-207.5 parent: 2 - - uid: 3818 + - uid: 14699 components: - type: Transform pos: -0.5,-209.5 parent: 2 - - uid: 3820 + - uid: 14700 components: - type: Transform pos: 2.5,-208.5 parent: 2 - - uid: 3821 + - uid: 14701 components: - type: Transform pos: 2.5,-207.5 parent: 2 - - uid: 3822 + - uid: 14702 components: - type: Transform pos: 1.5,-207.5 parent: 2 - - uid: 3823 + - uid: 14703 components: - type: Transform pos: 1.5,-209.5 parent: 2 - - uid: 3824 + - uid: 14704 components: - type: Transform pos: 3.5,-208.5 parent: 2 - - uid: 3833 + - uid: 14705 components: - type: Transform pos: 7.5,-204.5 parent: 2 - - uid: 3834 + - uid: 14706 components: - type: Transform pos: 7.5,-203.5 parent: 2 - - uid: 3835 + - uid: 14707 components: - type: Transform pos: 7.5,-202.5 parent: 2 - - uid: 3841 + - uid: 14708 components: - type: Transform pos: 9.5,-148.5 parent: 2 - - uid: 3846 + - uid: 14709 components: - type: Transform pos: 7.5,-193.5 parent: 2 - - uid: 3847 + - uid: 14710 components: - type: Transform pos: 7.5,-192.5 parent: 2 - - uid: 3848 + - uid: 14711 components: - type: Transform pos: 7.5,-191.5 parent: 2 - - uid: 3855 + - uid: 14712 components: - type: Transform pos: -5.5,-203.5 parent: 2 - - uid: 3860 + - uid: 14713 components: - type: Transform pos: -4.5,-203.5 parent: 2 - - uid: 3861 + - uid: 14714 components: - type: Transform pos: -6.5,-199.5 parent: 2 - - uid: 3862 + - uid: 14715 components: - type: Transform pos: -5.5,-199.5 parent: 2 - - uid: 3863 + - uid: 14716 components: - type: Transform pos: -3.5,-199.5 parent: 2 - - uid: 3864 + - uid: 14717 components: - type: Transform pos: -3.5,-200.5 parent: 2 - - uid: 3865 + - uid: 14718 components: - type: Transform pos: -3.5,-203.5 parent: 2 - - uid: 3866 + - uid: 14719 components: - type: Transform pos: -3.5,-206.5 parent: 2 - - uid: 3868 + - uid: 14720 components: - type: Transform pos: -4.5,-207.5 parent: 2 - - uid: 3877 + - uid: 14721 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-344.5 parent: 2 - - uid: 3903 + - uid: 14722 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-337.5 parent: 2 - - uid: 3936 + - uid: 14723 components: - type: Transform pos: 1.5,-242.5 parent: 2 - - uid: 3994 + - uid: 14724 components: - type: Transform pos: 1.5,-240.5 parent: 2 - - uid: 4000 + - uid: 14725 components: - type: Transform pos: -0.5,-242.5 parent: 2 - - uid: 4022 + - uid: 14726 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-334.5 parent: 2 - - uid: 4086 + - uid: 14727 components: - type: Transform pos: -1.5,-232.5 parent: 2 - - uid: 4170 + - uid: 14728 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 parent: 2 - - uid: 4203 + - uid: 14729 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-251.5 parent: 2 - - uid: 4204 + - uid: 14730 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-246.5 parent: 2 - - uid: 4205 + - uid: 14731 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-247.5 parent: 2 - - uid: 4210 + - uid: 14732 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-249.5 parent: 2 - - uid: 4245 + - uid: 14733 components: - type: Transform pos: 3.5,-232.5 parent: 2 - - uid: 4246 + - uid: 14734 components: - type: Transform pos: 2.5,-232.5 parent: 2 - - uid: 4247 + - uid: 14735 components: - type: Transform pos: 2.5,-231.5 parent: 2 - - uid: 4248 + - uid: 14736 components: - type: Transform pos: 2.5,-229.5 parent: 2 - - uid: 4249 + - uid: 14737 components: - type: Transform pos: 2.5,-228.5 parent: 2 - - uid: 4250 + - uid: 14738 components: - type: Transform pos: 2.5,-227.5 parent: 2 - - uid: 4251 + - uid: 14739 components: - type: Transform pos: 2.5,-226.5 parent: 2 - - uid: 4254 + - uid: 14740 components: - type: Transform pos: 2.5,-223.5 parent: 2 - - uid: 4255 + - uid: 14741 components: - type: Transform pos: 2.5,-222.5 parent: 2 - - uid: 4256 + - uid: 14742 components: - type: Transform pos: 2.5,-221.5 parent: 2 - - uid: 4257 + - uid: 14743 components: - type: Transform pos: 2.5,-220.5 parent: 2 - - uid: 4258 + - uid: 14744 components: - type: Transform pos: 2.5,-218.5 parent: 2 - - uid: 4260 + - uid: 14745 components: - type: Transform pos: 2.5,-217.5 parent: 2 - - uid: 4261 + - uid: 14746 components: - type: Transform pos: -1.5,-217.5 parent: 2 - - uid: 4262 + - uid: 14747 components: - type: Transform pos: -1.5,-218.5 parent: 2 - - uid: 4265 + - uid: 14748 components: - type: Transform pos: -1.5,-221.5 parent: 2 - - uid: 4266 + - uid: 14749 components: - type: Transform pos: -1.5,-222.5 parent: 2 - - uid: 4267 + - uid: 14750 components: - type: Transform pos: -1.5,-223.5 parent: 2 - - uid: 4270 + - uid: 14751 components: - type: Transform pos: -1.5,-226.5 parent: 2 - - uid: 4271 + - uid: 14752 components: - type: Transform pos: -1.5,-227.5 parent: 2 - - uid: 4272 + - uid: 14753 components: - type: Transform pos: -1.5,-228.5 parent: 2 - - uid: 4273 + - uid: 14754 components: - type: Transform pos: -1.5,-229.5 parent: 2 - - uid: 4274 + - uid: 14755 components: - type: Transform pos: -1.5,-231.5 parent: 2 - - uid: 4275 + - uid: 14756 components: - type: Transform pos: -2.5,-232.5 parent: 2 - - uid: 4280 + - uid: 14757 components: - type: Transform pos: -4.5,-229.5 parent: 2 - - uid: 4281 + - uid: 14758 components: - type: Transform pos: -4.5,-228.5 parent: 2 - - uid: 4282 + - uid: 14759 components: - type: Transform pos: -2.5,-228.5 parent: 2 - - uid: 4283 + - uid: 14760 components: - type: Transform pos: -2.5,-221.5 parent: 2 - - uid: 4285 + - uid: 14761 components: - type: Transform pos: -4.5,-221.5 parent: 2 - - uid: 4286 + - uid: 14762 components: - type: Transform pos: -4.5,-220.5 parent: 2 - - uid: 4291 + - uid: 14763 components: - type: Transform pos: -2.5,-217.5 parent: 2 - - uid: 4296 + - uid: 14764 components: - type: Transform pos: -1.5,-233.5 parent: 2 - - uid: 4299 + - uid: 14765 components: - type: Transform pos: 2.5,-233.5 parent: 2 - - uid: 4300 + - uid: 14766 components: - type: Transform pos: 1.5,-234.5 parent: 2 - - uid: 4301 + - uid: 14767 components: - type: Transform pos: 2.5,-234.5 parent: 2 - - uid: 4302 + - uid: 14768 components: - type: Transform pos: -0.5,-234.5 parent: 2 - - uid: 4303 + - uid: 14769 components: - type: Transform pos: -1.5,-234.5 parent: 2 - - uid: 4304 + - uid: 14770 components: - type: Transform pos: -1.5,-235.5 parent: 2 - - uid: 4306 + - uid: 14771 components: - type: Transform pos: -0.5,-236.5 parent: 2 - - uid: 4308 + - uid: 14772 components: - type: Transform pos: 1.5,-236.5 parent: 2 - - uid: 4309 + - uid: 14773 components: - type: Transform pos: 2.5,-235.5 parent: 2 - - uid: 4310 + - uid: 14774 components: - type: Transform pos: 2.5,-216.5 parent: 2 - - uid: 4311 + - uid: 14775 components: - type: Transform pos: 2.5,-215.5 parent: 2 - - uid: 4313 + - uid: 14776 components: - type: Transform pos: 1.5,-215.5 parent: 2 - - uid: 4315 + - uid: 14777 components: - type: Transform pos: -0.5,-215.5 parent: 2 - - uid: 4316 + - uid: 14778 components: - type: Transform pos: -1.5,-216.5 parent: 2 - - uid: 4317 + - uid: 14779 components: - type: Transform pos: -1.5,-215.5 parent: 2 - - uid: 4318 + - uid: 14780 components: - type: Transform pos: -1.5,-214.5 parent: 2 - - uid: 4320 + - uid: 14781 components: - type: Transform pos: -0.5,-213.5 parent: 2 - - uid: 4321 + - uid: 14782 components: - type: Transform pos: 1.5,-213.5 parent: 2 - - uid: 4323 + - uid: 14783 components: - type: Transform pos: 2.5,-214.5 parent: 2 - - uid: 4329 + - uid: 14784 components: - type: Transform pos: -2.5,-262.5 parent: 2 - - uid: 4528 + - uid: 14785 components: - type: Transform pos: -20.5,-239.5 parent: 2 - - uid: 4541 + - uid: 14786 components: - type: Transform pos: -1.5,-242.5 parent: 2 - - uid: 4542 + - uid: 14787 components: - type: Transform pos: -1.5,-241.5 parent: 2 - - uid: 4543 + - uid: 14788 components: - type: Transform pos: 2.5,-241.5 parent: 2 - - uid: 4544 + - uid: 14789 components: - type: Transform pos: 2.5,-242.5 parent: 2 - - uid: 4548 + - uid: 14790 components: - type: Transform pos: -3.5,-262.5 parent: 2 - - uid: 4551 + - uid: 14791 components: - type: Transform pos: 2.5,-262.5 parent: 2 - - uid: 4572 + - uid: 14792 components: - type: Transform pos: 4.5,-241.5 parent: 2 - - uid: 4573 + - uid: 14793 components: - type: Transform pos: 3.5,-241.5 parent: 2 - - uid: 4575 + - uid: 14794 components: - type: Transform pos: 6.5,-241.5 parent: 2 - - uid: 4596 + - uid: 14795 components: - type: Transform pos: -3.5,-162.5 parent: 2 - - uid: 4616 + - uid: 14796 components: - type: Transform pos: 1.5,-263.5 parent: 2 - - uid: 4618 + - uid: 14797 components: - type: Transform pos: -5.5,-262.5 parent: 2 - - uid: 4619 + - uid: 14798 components: - type: Transform pos: -5.5,-263.5 parent: 2 - - uid: 4620 + - uid: 14799 components: - type: Transform pos: -3.5,-263.5 parent: 2 - - uid: 4621 + - uid: 14800 components: - type: Transform pos: -1.5,-262.5 parent: 2 - - uid: 4624 + - uid: 14801 components: - type: Transform pos: 3.5,-262.5 parent: 2 - - uid: 4625 + - uid: 14802 components: - type: Transform pos: 4.5,-262.5 parent: 2 - - uid: 4627 + - uid: 14803 components: - type: Transform pos: 4.5,-263.5 parent: 2 - - uid: 4628 + - uid: 14804 components: - type: Transform pos: 6.5,-263.5 parent: 2 - - uid: 4629 + - uid: 14805 components: - type: Transform pos: 6.5,-262.5 parent: 2 - - uid: 4631 + - uid: 14806 components: - type: Transform pos: -2.5,-241.5 parent: 2 - - uid: 4632 + - uid: 14807 components: - type: Transform pos: -3.5,-241.5 parent: 2 - - uid: 4633 + - uid: 14808 components: - type: Transform pos: -3.5,-242.5 parent: 2 - - uid: 4636 + - uid: 14809 components: - type: Transform pos: -5.5,-241.5 parent: 2 - - uid: 4637 + - uid: 14810 components: - type: Transform pos: -5.5,-242.5 parent: 2 - - uid: 4657 + - uid: 14811 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-121.5 parent: 2 - - uid: 4675 + - uid: 14812 components: - type: Transform pos: -0.5,-263.5 parent: 2 - - uid: 4728 + - uid: 14813 components: - type: Transform pos: 4.5,-186.5 parent: 2 - - uid: 4755 + - uid: 14814 components: - type: Transform pos: -21.5,-252.5 parent: 2 - - uid: 4869 + - uid: 14815 components: - type: Transform pos: 1.5,-261.5 parent: 2 - - uid: 4870 + - uid: 14816 components: - type: Transform pos: 5.5,-241.5 parent: 2 - - uid: 4872 + - uid: 14817 components: - type: Transform pos: -20.5,-258.5 parent: 2 - - uid: 4890 + - uid: 14818 components: - type: Transform pos: -19.5,-258.5 parent: 2 - - uid: 4902 + - uid: 14819 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-222.5 parent: 2 - - uid: 4976 + - uid: 14820 components: - type: Transform pos: -20.5,-254.5 parent: 2 - - uid: 4986 + - uid: 14821 components: - type: Transform pos: -22.5,-254.5 parent: 2 - - uid: 5007 + - uid: 14822 components: - type: Transform pos: -20.5,-256.5 parent: 2 - - uid: 5008 + - uid: 14823 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-255.5 parent: 2 - - uid: 5009 + - uid: 14824 components: - type: Transform pos: -19.5,-250.5 parent: 2 - - uid: 5010 + - uid: 14825 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-242.5 parent: 2 - - uid: 5011 + - uid: 14826 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-253.5 parent: 2 - - uid: 5013 + - uid: 14827 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-252.5 parent: 2 - - uid: 5015 + - uid: 14828 components: - type: Transform pos: -22.5,-255.5 parent: 2 - - uid: 5016 + - uid: 14829 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-257.5 parent: 2 - - uid: 5017 + - uid: 14830 components: - type: Transform pos: 19.5,-244.5 parent: 2 - - uid: 5030 + - uid: 14831 components: - type: Transform pos: -19.5,-252.5 parent: 2 - - uid: 5031 + - uid: 14832 components: - type: Transform pos: -22.5,-251.5 parent: 2 - - uid: 5032 + - uid: 14833 components: - type: Transform pos: -19.5,-256.5 parent: 2 - - uid: 5077 + - uid: 14834 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-333.5 parent: 2 - - uid: 5181 + - uid: 14835 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-336.5 parent: 2 - - uid: 5186 + - uid: 14836 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-261.5 parent: 2 - - uid: 5210 + - uid: 14837 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-261.5 parent: 2 - - uid: 5213 + - uid: 14838 components: - type: Transform pos: 6.5,-261.5 parent: 2 - - uid: 5214 + - uid: 14839 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-261.5 parent: 2 - - uid: 5278 + - uid: 14840 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-256.5 parent: 2 - - uid: 5279 + - uid: 14841 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-256.5 parent: 2 - - uid: 5280 + - uid: 14842 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-245.5 parent: 2 - - uid: 5281 + - uid: 14843 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-244.5 parent: 2 - - uid: 5283 + - uid: 14844 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-244.5 parent: 2 - - uid: 5289 + - uid: 14845 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-245.5 parent: 2 - - uid: 5290 + - uid: 14846 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-246.5 parent: 2 - - uid: 5313 + - uid: 14847 components: - type: Transform pos: 2.5,-261.5 parent: 2 - - uid: 5319 + - uid: 14848 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-242.5 parent: 2 - - uid: 5321 + - uid: 14849 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-264.5 parent: 2 - - uid: 5325 + - uid: 14850 components: - type: Transform pos: -1.5,-261.5 parent: 2 - - uid: 5326 + - uid: 14851 components: - type: Transform pos: -22.5,-257.5 parent: 2 - - uid: 5334 + - uid: 14852 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-259.5 parent: 2 - - uid: 5335 + - uid: 14853 components: - type: Transform pos: -21.5,-258.5 parent: 2 - - uid: 5360 + - uid: 14854 components: - type: Transform pos: 14.5,-255.5 parent: 2 - - uid: 5361 + - uid: 14855 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-249.5 parent: 2 - - uid: 5419 + - uid: 14856 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-334.5 parent: 2 - - uid: 5421 + - uid: 14857 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-335.5 parent: 2 - - uid: 5459 + - uid: 14858 components: - type: Transform pos: -1.5,-220.5 parent: 2 - - uid: 5694 + - uid: 14859 components: - type: Transform pos: -3.5,-12.5 parent: 2 - - uid: 5819 + - uid: 14860 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-112.5 parent: 2 - - uid: 5962 + - uid: 14861 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-240.5 parent: 2 - - uid: 6129 + - uid: 14862 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 - - uid: 6302 + - uid: 14863 components: - type: Transform pos: -10.5,-166.5 parent: 2 - - uid: 6393 + - uid: 14864 components: - type: Transform pos: 10.5,-116.5 parent: 2 - - uid: 6570 + - uid: 14865 components: - type: Transform pos: -6.5,-247.5 parent: 2 - - uid: 6674 + - uid: 14866 components: - type: Transform pos: -10.5,-257.5 parent: 2 - - uid: 6722 + - uid: 14867 components: - type: Transform pos: -22.5,-259.5 parent: 2 - - uid: 6732 + - uid: 14868 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-261.5 parent: 2 - - uid: 6733 + - uid: 14869 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-255.5 parent: 2 - - uid: 6734 + - uid: 14870 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-249.5 parent: 2 - - uid: 6735 + - uid: 14871 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-249.5 parent: 2 - - uid: 6739 + - uid: 14872 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-256.5 parent: 2 - - uid: 6740 + - uid: 14873 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-255.5 parent: 2 - - uid: 6741 + - uid: 14874 components: - type: Transform pos: 14.5,-249.5 parent: 2 - - uid: 6743 + - uid: 14875 components: - type: Transform pos: -10.5,-258.5 parent: 2 - - uid: 6763 + - uid: 14876 components: - type: Transform pos: -11.5,-258.5 parent: 2 - - uid: 6766 + - uid: 14877 components: - type: Transform pos: -12.5,-258.5 parent: 2 - - uid: 6776 + - uid: 14878 components: - type: Transform pos: -21.5,-266.5 parent: 2 - - uid: 6777 + - uid: 14879 components: - type: Transform pos: -21.5,-250.5 parent: 2 - - uid: 6801 + - uid: 14880 components: - type: Transform pos: -15.5,-236.5 parent: 2 - - uid: 6802 + - uid: 14881 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-252.5 parent: 2 - - uid: 6803 + - uid: 14882 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-253.5 parent: 2 - - uid: 6807 + - uid: 14883 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-257.5 parent: 2 - - uid: 6808 + - uid: 14884 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-258.5 parent: 2 - - uid: 6809 + - uid: 14885 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-258.5 parent: 2 - - uid: 6810 + - uid: 14886 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-259.5 parent: 2 - - uid: 6811 + - uid: 14887 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-259.5 parent: 2 - - uid: 6813 + - uid: 14888 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-250.5 parent: 2 - - uid: 6814 + - uid: 14889 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-261.5 parent: 2 - - uid: 6829 + - uid: 14890 components: - type: Transform pos: -10.5,-250.5 parent: 2 - - uid: 6899 + - uid: 14891 components: - type: Transform pos: -15.5,-238.5 parent: 2 - - uid: 6901 + - uid: 14892 components: - type: Transform pos: -22.5,-258.5 parent: 2 - - uid: 6903 + - uid: 14893 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-169.5 parent: 2 - - uid: 7002 + - uid: 14894 components: - type: Transform pos: 4.5,-200.5 parent: 2 - - uid: 7189 + - uid: 14895 components: - type: Transform pos: -0.5,-200.5 parent: 2 - - uid: 7207 + - uid: 14896 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-333.5 parent: 2 - - uid: 7255 + - uid: 14897 components: - type: Transform pos: 9.5,-337.5 parent: 2 - - uid: 7270 + - uid: 14898 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 2 - - uid: 7286 + - uid: 14899 components: - type: Transform pos: 8.5,-163.5 parent: 2 - - uid: 7290 + - uid: 14900 components: - type: Transform pos: 8.5,-161.5 parent: 2 - - uid: 7307 + - uid: 14901 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-19.5 parent: 2 - - uid: 7318 + - uid: 14902 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-239.5 parent: 2 - - uid: 7418 + - uid: 14903 components: - type: Transform pos: 15.5,-238.5 parent: 2 - - uid: 7435 + - uid: 14904 components: - type: Transform pos: -19.5,-254.5 parent: 2 - - uid: 7437 + - uid: 14905 components: - type: Transform pos: -5.5,-306.5 parent: 2 - - uid: 7503 + - uid: 14906 components: - type: Transform pos: 19.5,-266.5 parent: 2 - - uid: 7535 + - uid: 14907 components: - type: Transform pos: 18.5,-266.5 parent: 2 - - uid: 7536 + - uid: 14908 components: - type: Transform pos: 14.5,-261.5 parent: 2 - - uid: 7537 + - uid: 14909 components: - type: Transform pos: 14.5,-265.5 parent: 2 - - uid: 7539 + - uid: 14910 components: - type: Transform pos: 14.5,-264.5 parent: 2 - - uid: 7540 + - uid: 14911 components: - type: Transform pos: 14.5,-257.5 parent: 2 - - uid: 7541 + - uid: 14912 components: - type: Transform pos: 14.5,-258.5 parent: 2 - - uid: 7542 + - uid: 14913 components: - type: Transform pos: 14.5,-263.5 parent: 2 - - uid: 7544 + - uid: 14914 components: - type: Transform pos: 14.5,-262.5 parent: 2 - - uid: 7545 + - uid: 14915 components: - type: Transform pos: 16.5,-244.5 parent: 2 - - uid: 7579 + - uid: 14916 components: - type: Transform pos: 20.5,-255.5 parent: 2 - - uid: 7588 + - uid: 14917 components: - type: Transform pos: 21.5,-251.5 parent: 2 - - uid: 7624 + - uid: 14918 components: - type: Transform pos: 21.5,-254.5 parent: 2 - - uid: 7668 + - uid: 14919 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-223.5 parent: 2 - - uid: 7723 + - uid: 14920 components: - type: Transform pos: 20.5,-254.5 parent: 2 - - uid: 7725 + - uid: 14921 components: - type: Transform pos: 21.5,-252.5 parent: 2 - - uid: 7726 + - uid: 14922 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-258.5 parent: 2 - - uid: 7728 + - uid: 14923 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-261.5 parent: 2 - - uid: 7736 + - uid: 14924 components: - type: Transform pos: -12.5,-237.5 parent: 2 - - uid: 7737 + - uid: 14925 components: - type: Transform pos: -12.5,-238.5 parent: 2 - - uid: 7740 + - uid: 14926 components: - type: Transform pos: -13.5,-235.5 parent: 2 - - uid: 7744 + - uid: 14927 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-244.5 parent: 2 - - uid: 7745 + - uid: 14928 components: - type: Transform pos: 20.5,-265.5 parent: 2 - - uid: 7748 + - uid: 14929 components: - type: Transform pos: 20.5,-263.5 parent: 2 - - uid: 7749 + - uid: 14930 components: - type: Transform pos: 9.5,-342.5 parent: 2 - - uid: 7750 + - uid: 14931 components: - type: Transform pos: 9.5,-341.5 parent: 2 - - uid: 7751 + - uid: 14932 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-243.5 parent: 2 - - uid: 7752 + - uid: 14933 components: - type: Transform pos: 21.5,-253.5 parent: 2 - - uid: 7757 + - uid: 14934 components: - type: Transform pos: 20.5,-244.5 parent: 2 - - uid: 7760 + - uid: 14935 components: - type: Transform pos: 21.5,-250.5 parent: 2 - - uid: 7761 + - uid: 14936 components: - type: Transform pos: 20.5,-250.5 parent: 2 - - uid: 7762 + - uid: 14937 components: - type: Transform pos: 20.5,-243.5 parent: 2 - - uid: 7763 + - uid: 14938 components: - type: Transform pos: 20.5,-247.5 parent: 2 - - uid: 7766 + - uid: 14939 components: - type: Transform pos: 20.5,-242.5 parent: 2 - - uid: 7767 + - uid: 14940 components: - type: Transform pos: 19.5,-262.5 parent: 2 - - uid: 7784 + - uid: 14941 components: - type: Transform pos: -8.5,-188.5 parent: 2 - - uid: 7787 + - uid: 14942 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-255.5 parent: 2 - - uid: 7803 + - uid: 14943 components: - type: Transform pos: 20.5,-249.5 parent: 2 - - uid: 7808 + - uid: 14944 components: - type: Transform pos: -22.5,-253.5 parent: 2 - - uid: 7838 + - uid: 14945 components: - type: Transform pos: 14.5,-239.5 parent: 2 - - uid: 7841 + - uid: 14946 components: - type: Transform pos: 19.5,-238.5 parent: 2 - - uid: 7859 + - uid: 14947 components: - type: Transform pos: -21.5,-254.5 parent: 2 - - uid: 7861 + - uid: 14948 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-244.5 parent: 2 - - uid: 7877 + - uid: 14949 components: - type: Transform pos: 14.5,-259.5 parent: 2 - - uid: 7886 + - uid: 14950 components: - type: Transform pos: -7.5,-188.5 parent: 2 - - uid: 7895 + - uid: 14951 components: - type: Transform pos: -22.5,-256.5 parent: 2 - - uid: 7901 + - uid: 14952 components: - type: Transform pos: -20.5,-252.5 parent: 2 - - uid: 7902 + - uid: 14953 components: - type: Transform pos: -7.5,-192.5 parent: 2 - - uid: 7912 + - uid: 14954 components: - type: Transform pos: 15.5,-244.5 parent: 2 - - uid: 7913 + - uid: 14955 components: - type: Transform pos: 20.5,-262.5 parent: 2 - - uid: 7914 + - uid: 14956 components: - type: Transform pos: 20.5,-264.5 parent: 2 - - uid: 7923 + - uid: 14957 components: - type: Transform pos: 14.5,-244.5 parent: 2 - - uid: 7927 + - uid: 14958 components: - type: Transform pos: 14.5,-247.5 parent: 2 - - uid: 7936 + - uid: 14959 components: - type: Transform pos: 20.5,-248.5 parent: 2 - - uid: 7950 + - uid: 14960 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-160.5 parent: 2 - - uid: 7954 + - uid: 14961 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-289.5 parent: 2 - - uid: 7967 + - uid: 14962 components: - type: Transform pos: -18.5,-248.5 parent: 2 - - uid: 7998 + - uid: 14963 components: - type: Transform pos: -7.5,-168.5 parent: 2 - - uid: 8004 + - uid: 14964 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-252.5 parent: 2 - - uid: 8005 + - uid: 14965 components: - type: Transform pos: -19.5,-248.5 parent: 2 - - uid: 8006 + - uid: 14966 components: - type: Transform pos: 20.5,-261.5 parent: 2 - - uid: 8008 + - uid: 14967 components: - type: Transform pos: -7.5,-166.5 parent: 2 - - uid: 8021 + - uid: 14968 components: - type: Transform pos: 15.5,-266.5 parent: 2 - - uid: 8024 + - uid: 14969 components: - type: Transform pos: 5.5,-181.5 parent: 2 - - uid: 8054 + - uid: 14970 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-253.5 parent: 2 - - uid: 8055 + - uid: 14971 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-252.5 parent: 2 - - uid: 8056 + - uid: 14972 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-252.5 parent: 2 - - uid: 8104 + - uid: 14973 components: - type: Transform pos: -8.5,-250.5 parent: 2 - - uid: 8118 + - uid: 14974 components: - type: Transform pos: 15.5,-262.5 parent: 2 - - uid: 8120 + - uid: 14975 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-250.5 parent: 2 - - uid: 8121 + - uid: 14976 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-249.5 parent: 2 - - uid: 8124 + - uid: 14977 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-251.5 parent: 2 - - uid: 8128 + - uid: 14978 components: - type: Transform pos: 17.5,-266.5 parent: 2 - - uid: 8131 + - uid: 14979 components: - type: Transform pos: 16.5,-266.5 parent: 2 - - uid: 8147 + - uid: 14980 components: - type: Transform pos: -20.5,-248.5 parent: 2 - - uid: 8149 + - uid: 14981 components: - type: Transform pos: 8.5,-341.5 parent: 2 - - uid: 8153 + - uid: 14982 components: - type: Transform pos: -12.5,-235.5 parent: 2 - - uid: 8154 + - uid: 14983 components: - type: Transform pos: -0.5,-204.5 parent: 2 - - uid: 8155 + - uid: 14984 components: - type: Transform pos: 1.5,-204.5 parent: 2 - - uid: 8156 + - uid: 14985 components: - type: Transform pos: 2.5,-204.5 parent: 2 - - uid: 8158 + - uid: 14986 components: - type: Transform pos: 0.5,-204.5 parent: 2 - - uid: 8180 + - uid: 14987 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-254.5 parent: 2 - - uid: 8196 + - uid: 14988 components: - type: Transform pos: -1.5,-201.5 parent: 2 - - uid: 8200 + - uid: 14989 components: - type: Transform pos: -9.5,-192.5 parent: 2 - - uid: 8215 + - uid: 14990 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-252.5 parent: 2 - - uid: 8323 + - uid: 14991 components: - type: Transform pos: -1.5,-202.5 parent: 2 - - uid: 8346 + - uid: 14992 components: - type: Transform pos: -1.5,-203.5 parent: 2 - - uid: 8347 + - uid: 14993 components: - type: Transform pos: -1.5,-204.5 parent: 2 - - uid: 8370 + - uid: 14994 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-252.5 parent: 2 - - uid: 8374 + - uid: 14995 components: - type: Transform pos: -3.5,-188.5 parent: 2 - - uid: 8376 + - uid: 14996 components: - type: Transform pos: -2.5,-188.5 parent: 2 - - uid: 8406 + - uid: 14997 components: - type: Transform pos: 14.5,-241.5 parent: 2 - - uid: 8456 + - uid: 14998 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-254.5 parent: 2 - - uid: 8461 + - uid: 14999 components: - type: Transform pos: 4.5,-203.5 parent: 2 - - uid: 8468 + - uid: 15000 components: - type: Transform pos: 4.5,-204.5 parent: 2 - - uid: 8469 + - uid: 15001 components: - type: Transform pos: 3.5,-204.5 parent: 2 - - uid: 8477 + - uid: 15002 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-310.5 parent: 2 - - uid: 8491 + - uid: 15003 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-277.5 parent: 2 - - uid: 8493 + - uid: 15004 components: - type: Transform pos: 9.5,-287.5 parent: 2 - - uid: 8513 + - uid: 15005 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-253.5 parent: 2 - - uid: 8515 + - uid: 15006 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-255.5 parent: 2 - - uid: 8524 + - uid: 15007 components: - type: Transform pos: -18.5,-262.5 parent: 2 - - uid: 8539 + - uid: 15008 components: - type: Transform pos: 9.5,-286.5 parent: 2 - - uid: 8543 + - uid: 15009 components: - type: Transform pos: -7.5,-269.5 parent: 2 - - uid: 8544 + - uid: 15010 components: - type: Transform pos: -7.5,-270.5 parent: 2 - - uid: 8548 + - uid: 15011 components: - type: Transform pos: -5.5,-269.5 parent: 2 - - uid: 8550 + - uid: 15012 components: - type: Transform pos: -8.5,-275.5 parent: 2 - - uid: 8551 + - uid: 15013 components: - type: Transform pos: -6.5,-276.5 parent: 2 - - uid: 8556 + - uid: 15014 components: - type: Transform pos: -8.5,-271.5 parent: 2 - - uid: 8557 + - uid: 15015 components: - type: Transform pos: -18.5,-252.5 parent: 2 - - uid: 8563 + - uid: 15016 components: - type: Transform pos: -7.5,-276.5 parent: 2 - - uid: 8564 + - uid: 15017 components: - type: Transform pos: -5.5,-268.5 parent: 2 - - uid: 8565 + - uid: 15018 components: - type: Transform pos: -8.5,-270.5 parent: 2 - - uid: 8567 + - uid: 15019 components: - type: Transform pos: -8.5,-276.5 parent: 2 - - uid: 8568 + - uid: 15020 components: - type: Transform pos: -4.5,-268.5 parent: 2 - - uid: 8569 + - uid: 15021 components: - type: Transform pos: -3.5,-268.5 parent: 2 - - uid: 8570 + - uid: 15022 components: - type: Transform pos: -2.5,-268.5 parent: 2 - - uid: 8571 + - uid: 15023 components: - type: Transform pos: -1.5,-268.5 parent: 2 - - uid: 8572 + - uid: 15024 components: - type: Transform pos: -1.5,-269.5 parent: 2 - - uid: 8573 + - uid: 15025 components: - type: Transform pos: -0.5,-269.5 parent: 2 - - uid: 8574 + - uid: 15026 components: - type: Transform pos: 1.5,-269.5 parent: 2 - - uid: 8575 + - uid: 15027 components: - type: Transform pos: 2.5,-269.5 parent: 2 - - uid: 8576 + - uid: 15028 components: - type: Transform pos: 2.5,-268.5 parent: 2 - - uid: 8577 + - uid: 15029 components: - type: Transform pos: 1.5,-267.5 parent: 2 - - uid: 8578 + - uid: 15030 components: - type: Transform pos: -0.5,-267.5 parent: 2 - - uid: 8588 + - uid: 15031 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-281.5 parent: 2 - - uid: 8589 + - uid: 15032 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-282.5 parent: 2 - - uid: 8590 + - uid: 15033 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-282.5 parent: 2 - - uid: 8591 + - uid: 15034 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-283.5 parent: 2 - - uid: 8592 + - uid: 15035 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-287.5 parent: 2 - - uid: 8593 + - uid: 15036 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-288.5 parent: 2 - - uid: 8594 + - uid: 15037 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-288.5 parent: 2 - - uid: 8595 + - uid: 15038 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-289.5 parent: 2 - - uid: 8596 + - uid: 15039 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-289.5 parent: 2 - - uid: 8599 + - uid: 15040 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-289.5 parent: 2 - - uid: 8600 + - uid: 15041 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-289.5 parent: 2 - - uid: 8601 + - uid: 15042 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-289.5 parent: 2 - - uid: 8604 + - uid: 15043 components: - type: Transform pos: 14.5,-242.5 parent: 2 - - uid: 8605 + - uid: 15044 components: - type: Transform pos: -7.5,-310.5 parent: 2 - - uid: 8611 + - uid: 15045 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-252.5 parent: 2 - - uid: 8617 + - uid: 15046 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-257.5 parent: 2 - - uid: 8655 + - uid: 15047 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-288.5 parent: 2 - - uid: 8677 + - uid: 15048 components: - type: Transform pos: -18.5,-250.5 parent: 2 - - uid: 8679 + - uid: 15049 components: - type: Transform pos: 3.5,-200.5 parent: 2 - - uid: 8698 + - uid: 15050 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-118.5 parent: 2 - - uid: 8700 + - uid: 15051 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-288.5 parent: 2 - - uid: 8702 + - uid: 15052 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-288.5 parent: 2 - - uid: 8703 + - uid: 15053 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-288.5 parent: 2 - - uid: 8704 + - uid: 15054 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-290.5 parent: 2 - - uid: 8705 + - uid: 15055 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-290.5 parent: 2 - - uid: 8706 + - uid: 15056 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-289.5 parent: 2 - - uid: 8707 + - uid: 15057 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-289.5 parent: 2 - - uid: 8709 + - uid: 15058 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-290.5 parent: 2 - - uid: 8710 + - uid: 15059 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-290.5 parent: 2 - - uid: 8712 + - uid: 15060 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-289.5 parent: 2 - - uid: 8713 + - uid: 15061 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-288.5 parent: 2 - - uid: 8714 + - uid: 15062 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-288.5 parent: 2 - - uid: 8715 + - uid: 15063 components: - type: Transform pos: 9.5,-285.5 parent: 2 - - uid: 8716 + - uid: 15064 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-286.5 parent: 2 - - uid: 8717 + - uid: 15065 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-285.5 parent: 2 - - uid: 8718 + - uid: 15066 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-284.5 parent: 2 - - uid: 8719 + - uid: 15067 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-283.5 parent: 2 - - uid: 8720 + - uid: 15068 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-286.5 parent: 2 - - uid: 8721 + - uid: 15069 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-286.5 parent: 2 - - uid: 8722 + - uid: 15070 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-286.5 parent: 2 - - uid: 8723 + - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-286.5 parent: 2 - - uid: 8724 + - uid: 15072 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-285.5 parent: 2 - - uid: 8725 + - uid: 15073 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-284.5 parent: 2 - - uid: 8726 + - uid: 15074 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-283.5 parent: 2 - - uid: 8727 + - uid: 15075 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-283.5 parent: 2 - - uid: 8729 + - uid: 15076 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-283.5 parent: 2 - - uid: 8732 + - uid: 15077 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-283.5 parent: 2 - - uid: 8733 + - uid: 15078 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-283.5 parent: 2 - - uid: 8734 + - uid: 15079 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-282.5 parent: 2 - - uid: 8736 + - uid: 15080 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-282.5 parent: 2 - - uid: 8738 + - uid: 15081 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-274.5 parent: 2 - - uid: 8744 + - uid: 15082 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-276.5 parent: 2 - - uid: 8745 + - uid: 15083 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-276.5 parent: 2 - - uid: 8746 + - uid: 15084 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-275.5 parent: 2 - - uid: 8748 + - uid: 15085 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-275.5 parent: 2 - - uid: 8749 + - uid: 15086 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-275.5 parent: 2 - - uid: 8750 + - uid: 15087 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-275.5 parent: 2 - - uid: 8751 + - uid: 15088 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-274.5 parent: 2 - - uid: 8752 + - uid: 15089 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-273.5 parent: 2 - - uid: 8753 + - uid: 15090 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-272.5 parent: 2 - - uid: 8754 + - uid: 15091 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-271.5 parent: 2 - - uid: 8755 + - uid: 15092 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-270.5 parent: 2 - - uid: 8756 + - uid: 15093 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-269.5 parent: 2 - - uid: 8757 + - uid: 15094 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-269.5 parent: 2 - - uid: 8758 + - uid: 15095 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-269.5 parent: 2 - - uid: 8759 + - uid: 15096 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-268.5 parent: 2 - - uid: 8760 + - uid: 15097 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-268.5 parent: 2 - - uid: 8761 + - uid: 15098 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-268.5 parent: 2 - - uid: 8770 + - uid: 15099 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-282.5 parent: 2 - - uid: 8774 + - uid: 15100 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-276.5 parent: 2 - - uid: 8781 + - uid: 15101 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-274.5 parent: 2 - - uid: 8807 + - uid: 15102 components: - type: Transform pos: -6.5,-188.5 parent: 2 - - uid: 8808 + - uid: 15103 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-271.5 parent: 2 - - uid: 8811 + - uid: 15104 components: - type: Transform pos: -5.5,-188.5 parent: 2 - - uid: 8851 + - uid: 15105 components: - type: Transform pos: -9.5,-188.5 parent: 2 - - uid: 8867 + - uid: 15106 components: - type: Transform pos: 9.5,-284.5 parent: 2 - - uid: 8898 + - uid: 15107 components: - type: Transform pos: -22.5,-250.5 parent: 2 - - uid: 8900 + - uid: 15108 components: - type: Transform pos: -12.5,-261.5 parent: 2 - - uid: 8904 + - uid: 15109 components: - type: Transform pos: -7.5,-149.5 parent: 2 - - uid: 8910 + - uid: 15110 components: - type: Transform pos: 14.5,-240.5 parent: 2 - - uid: 8942 + - uid: 15111 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-262.5 parent: 2 - - uid: 8969 + - uid: 15112 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-256.5 parent: 2 - - uid: 9020 + - uid: 15113 components: - type: Transform pos: 8.5,-288.5 parent: 2 - - uid: 9021 + - uid: 15114 components: - type: Transform pos: 9.5,-288.5 parent: 2 - - uid: 9087 + - uid: 15115 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-249.5 parent: 2 - - uid: 9366 + - uid: 15116 components: - type: Transform pos: 1.5,-294.5 parent: 2 - - uid: 9367 + - uid: 15117 components: - type: Transform pos: -0.5,-294.5 parent: 2 - - uid: 9368 + - uid: 15118 components: - type: Transform pos: 2.5,-295.5 parent: 2 - - uid: 9369 + - uid: 15119 components: - type: Transform pos: 2.5,-296.5 parent: 2 - - uid: 9370 + - uid: 15120 components: - type: Transform pos: -1.5,-296.5 parent: 2 - - uid: 9371 + - uid: 15121 components: - type: Transform pos: -1.5,-295.5 parent: 2 - - uid: 9372 + - uid: 15122 components: - type: Transform pos: -0.5,-296.5 parent: 2 - - uid: 9373 + - uid: 15123 components: - type: Transform pos: 1.5,-296.5 parent: 2 - - uid: 9380 + - uid: 15124 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-295.5 parent: 2 - - uid: 9381 + - uid: 15125 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-295.5 parent: 2 - - uid: 9382 + - uid: 15126 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-295.5 parent: 2 - - uid: 9383 + - uid: 15127 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-294.5 parent: 2 - - uid: 9384 + - uid: 15128 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-295.5 parent: 2 - - uid: 9387 + - uid: 15129 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-295.5 parent: 2 - - uid: 9389 + - uid: 15130 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-295.5 parent: 2 - - uid: 9390 + - uid: 15131 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-294.5 parent: 2 - - uid: 9401 + - uid: 15132 components: - type: Transform pos: -10.5,-338.5 parent: 2 - - uid: 9402 + - uid: 15133 components: - type: Transform pos: -10.5,-340.5 parent: 2 - - uid: 9403 + - uid: 15134 components: - type: Transform pos: -10.5,-337.5 parent: 2 - - uid: 9404 + - uid: 15135 components: - type: Transform pos: -9.5,-343.5 parent: 2 - - uid: 9405 + - uid: 15136 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-343.5 parent: 2 - - uid: 9406 + - uid: 15137 components: - type: Transform pos: -10.5,-342.5 parent: 2 - - uid: 9414 + - uid: 15138 components: - type: Transform pos: -9.5,-341.5 parent: 2 - - uid: 9415 + - uid: 15139 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-336.5 parent: 2 - - uid: 9417 + - uid: 15140 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-335.5 parent: 2 - - uid: 9463 + - uid: 15141 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-332.5 parent: 2 - - uid: 9473 + - uid: 15142 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-334.5 parent: 2 - - uid: 9475 + - uid: 15143 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-343.5 parent: 2 - - uid: 9476 + - uid: 15144 components: - type: Transform pos: 4.5,-341.5 parent: 2 - - uid: 9720 + - uid: 15145 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-296.5 parent: 2 - - uid: 9722 + - uid: 15146 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-296.5 parent: 2 - - uid: 9723 + - uid: 15147 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-295.5 parent: 2 - - uid: 9724 + - uid: 15148 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-296.5 parent: 2 - - uid: 9725 + - uid: 15149 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-296.5 parent: 2 - - uid: 9726 + - uid: 15150 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-296.5 parent: 2 - - uid: 9727 + - uid: 15151 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-296.5 parent: 2 - - uid: 9728 + - uid: 15152 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-296.5 parent: 2 - - uid: 9732 + - uid: 15153 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-300.5 parent: 2 - - uid: 9735 + - uid: 15154 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-300.5 parent: 2 - - uid: 9736 + - uid: 15155 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-301.5 parent: 2 - - uid: 9737 + - uid: 15156 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-302.5 parent: 2 - - uid: 9738 + - uid: 15157 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-303.5 parent: 2 - - uid: 9739 + - uid: 15158 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-304.5 parent: 2 - - uid: 9740 + - uid: 15159 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-305.5 parent: 2 - - uid: 9741 + - uid: 15160 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-305.5 parent: 2 - - uid: 9742 + - uid: 15161 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-262.5 parent: 2 - - uid: 9745 + - uid: 15162 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-310.5 parent: 2 - - uid: 9746 + - uid: 15163 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-308.5 parent: 2 - - uid: 9749 + - uid: 15164 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-309.5 parent: 2 - - uid: 9750 + - uid: 15165 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-309.5 parent: 2 - - uid: 9751 + - uid: 15166 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-311.5 parent: 2 - - uid: 9752 + - uid: 15167 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-312.5 parent: 2 - - uid: 9753 + - uid: 15168 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-313.5 parent: 2 - - uid: 9754 + - uid: 15169 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-314.5 parent: 2 - - uid: 9758 + - uid: 15170 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-318.5 parent: 2 - - uid: 9759 + - uid: 15171 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-319.5 parent: 2 - - uid: 9760 + - uid: 15172 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-310.5 parent: 2 - - uid: 9761 + - uid: 15173 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-319.5 parent: 2 - - uid: 9762 + - uid: 15174 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-319.5 parent: 2 - - uid: 9763 + - uid: 15175 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-319.5 parent: 2 - - uid: 9764 + - uid: 15176 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-319.5 parent: 2 - - uid: 9765 + - uid: 15177 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-320.5 parent: 2 - - uid: 9766 + - uid: 15178 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-320.5 parent: 2 - - uid: 9767 + - uid: 15179 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-321.5 parent: 2 - - uid: 9768 + - uid: 15180 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-322.5 parent: 2 - - uid: 9772 + - uid: 15181 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-320.5 parent: 2 - - uid: 9773 + - uid: 15182 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-321.5 parent: 2 - - uid: 9774 + - uid: 15183 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-322.5 parent: 2 - - uid: 9778 + - uid: 15184 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-321.5 parent: 2 - - uid: 9779 + - uid: 15185 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-321.5 parent: 2 - - uid: 9780 + - uid: 15186 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-320.5 parent: 2 - - uid: 9781 + - uid: 15187 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-320.5 parent: 2 - - uid: 9782 + - uid: 15188 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-320.5 parent: 2 - - uid: 9783 + - uid: 15189 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-320.5 parent: 2 - - uid: 9784 + - uid: 15190 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-321.5 parent: 2 - - uid: 9785 + - uid: 15191 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-322.5 parent: 2 - - uid: 9786 + - uid: 15192 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-322.5 parent: 2 - - uid: 9787 + - uid: 15193 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-321.5 parent: 2 - - uid: 9788 + - uid: 15194 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-321.5 parent: 2 - - uid: 9789 + - uid: 15195 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-320.5 parent: 2 - - uid: 9792 + - uid: 15196 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-321.5 parent: 2 - - uid: 9793 + - uid: 15197 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-320.5 parent: 2 - - uid: 9794 + - uid: 15198 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-320.5 parent: 2 - - uid: 9795 + - uid: 15199 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-320.5 parent: 2 - - uid: 9801 + - uid: 15200 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-316.5 parent: 2 - - uid: 9802 + - uid: 15201 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-316.5 parent: 2 - - uid: 9804 + - uid: 15202 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-310.5 parent: 2 - - uid: 9805 + - uid: 15203 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-311.5 parent: 2 - - uid: 9806 + - uid: 15204 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-312.5 parent: 2 - - uid: 9807 + - uid: 15205 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-312.5 parent: 2 - - uid: 9810 + - uid: 15206 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-312.5 parent: 2 - - uid: 9811 + - uid: 15207 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-316.5 parent: 2 - - uid: 9812 + - uid: 15208 components: - type: Transform pos: -8.5,-306.5 parent: 2 - - uid: 9820 + - uid: 15209 components: - type: Transform pos: -8.5,-192.5 parent: 2 - - uid: 9833 + - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-298.5 parent: 2 - - uid: 9834 + - uid: 15211 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-297.5 parent: 2 - - uid: 9835 + - uid: 15212 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-296.5 parent: 2 - - uid: 9836 + - uid: 15213 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-296.5 parent: 2 - - uid: 9837 + - uid: 15214 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-296.5 parent: 2 - - uid: 9838 + - uid: 15215 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-296.5 parent: 2 - - uid: 9839 + - uid: 15216 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-295.5 parent: 2 - - uid: 9840 + - uid: 15217 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-298.5 parent: 2 - - uid: 9841 + - uid: 15218 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-298.5 parent: 2 - - uid: 9842 + - uid: 15219 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-298.5 parent: 2 - - uid: 9843 + - uid: 15220 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-298.5 parent: 2 - - uid: 9844 + - uid: 15221 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-298.5 parent: 2 - - uid: 9845 + - uid: 15222 components: - type: Transform pos: 8.5,-241.5 parent: 2 - - uid: 9849 + - uid: 15223 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-301.5 parent: 2 - - uid: 9858 + - uid: 15224 components: - type: Transform pos: -2.5,-306.5 parent: 2 - - uid: 9860 + - uid: 15225 components: - type: Transform pos: -8.5,-251.5 parent: 2 - - uid: 9862 + - uid: 15226 components: - type: Transform pos: -6.5,-306.5 parent: 2 - - uid: 9863 + - uid: 15227 components: - type: Transform pos: -7.5,-306.5 parent: 2 - - uid: 9866 + - uid: 15228 components: - type: Transform pos: -10.5,-305.5 parent: 2 - - uid: 9868 + - uid: 15229 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-305.5 parent: 2 - - uid: 9875 + - uid: 15230 components: - type: Transform pos: -9.5,-306.5 parent: 2 - - uid: 9876 + - uid: 15231 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-305.5 parent: 2 - - uid: 9877 + - uid: 15232 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-304.5 parent: 2 - - uid: 9878 + - uid: 15233 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-303.5 parent: 2 - - uid: 9879 + - uid: 15234 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-302.5 parent: 2 - - uid: 9880 + - uid: 15235 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-301.5 parent: 2 - - uid: 9881 + - uid: 15236 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-300.5 parent: 2 - - uid: 9882 + - uid: 15237 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-299.5 parent: 2 - - uid: 9883 + - uid: 15238 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-298.5 parent: 2 - - uid: 9884 + - uid: 15239 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-298.5 parent: 2 - - uid: 9885 + - uid: 15240 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-298.5 parent: 2 - - uid: 9886 + - uid: 15241 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-298.5 parent: 2 - - uid: 9887 + - uid: 15242 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-298.5 parent: 2 - - uid: 9888 + - uid: 15243 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-298.5 parent: 2 - - uid: 9889 + - uid: 15244 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-298.5 parent: 2 - - uid: 9890 + - uid: 15245 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-299.5 parent: 2 - - uid: 9891 + - uid: 15246 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-300.5 parent: 2 - - uid: 9892 + - uid: 15247 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-301.5 parent: 2 - - uid: 9893 + - uid: 15248 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-302.5 parent: 2 - - uid: 9894 + - uid: 15249 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-303.5 parent: 2 - - uid: 9896 + - uid: 15250 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-315.5 parent: 2 - - uid: 9897 + - uid: 15251 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-305.5 parent: 2 - - uid: 9898 + - uid: 15252 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-305.5 parent: 2 - - uid: 9900 + - uid: 15253 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-309.5 parent: 2 - - uid: 9901 + - uid: 15254 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-309.5 parent: 2 - - uid: 9909 + - uid: 15255 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-315.5 parent: 2 - - uid: 9910 + - uid: 15256 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-316.5 parent: 2 - - uid: 9911 + - uid: 15257 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-317.5 parent: 2 - - uid: 9912 + - uid: 15258 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-318.5 parent: 2 - - uid: 9914 + - uid: 15259 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-317.5 parent: 2 - - uid: 9915 + - uid: 15260 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-317.5 parent: 2 - - uid: 9916 + - uid: 15261 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-317.5 parent: 2 - - uid: 9918 + - uid: 15262 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-317.5 parent: 2 - - uid: 9919 + - uid: 15263 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-317.5 parent: 2 - - uid: 9920 + - uid: 15264 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-317.5 parent: 2 - - uid: 9921 + - uid: 15265 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-316.5 parent: 2 - - uid: 9922 + - uid: 15266 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-315.5 parent: 2 - - uid: 9923 + - uid: 15267 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-314.5 parent: 2 - - uid: 9924 + - uid: 15268 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-314.5 parent: 2 - - uid: 9925 + - uid: 15269 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-313.5 parent: 2 - - uid: 9926 + - uid: 15270 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-312.5 parent: 2 - - uid: 9927 + - uid: 15271 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-311.5 parent: 2 - - uid: 9928 + - uid: 15272 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-310.5 parent: 2 - - uid: 9929 + - uid: 15273 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-309.5 parent: 2 - - uid: 9930 + - uid: 15274 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-309.5 parent: 2 - - uid: 9931 + - uid: 15275 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-319.5 parent: 2 - - uid: 9933 + - uid: 15276 components: - type: Transform pos: -1.5,-318.5 parent: 2 - - uid: 9934 + - uid: 15277 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-316.5 parent: 2 - - uid: 9939 + - uid: 15278 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-311.5 parent: 2 - - uid: 10005 + - uid: 15279 components: - type: Transform pos: -7.5,-298.5 parent: 2 - - uid: 10013 + - uid: 15280 components: - type: Transform pos: 8.5,-360.5 parent: 2 - - uid: 10015 + - uid: 15281 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-313.5 parent: 2 - - uid: 10034 + - uid: 15282 components: - type: Transform pos: -7.5,-305.5 parent: 2 - - uid: 10036 + - uid: 15283 components: - type: Transform pos: -4.5,-310.5 parent: 2 - - uid: 10040 + - uid: 15284 components: - type: Transform pos: -4.5,-306.5 parent: 2 - - uid: 10045 + - uid: 15285 components: - type: Transform pos: -2.5,-310.5 parent: 2 - - uid: 10046 + - uid: 15286 components: - type: Transform pos: -7.5,-304.5 parent: 2 - - uid: 10050 + - uid: 15287 components: - type: Transform pos: -10.5,-301.5 parent: 2 - - uid: 10052 + - uid: 15288 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-306.5 parent: 2 - - uid: 10053 + - uid: 15289 components: - type: Transform pos: -7.5,-302.5 parent: 2 - - uid: 10058 + - uid: 15290 components: - type: Transform pos: -10.5,-306.5 parent: 2 - - uid: 10086 + - uid: 15291 components: - type: Transform pos: -7.5,-346.5 parent: 2 - - uid: 10099 + - uid: 15292 components: - type: Transform pos: -1.5,-305.5 parent: 2 - - uid: 10102 + - uid: 15293 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-299.5 parent: 2 - - uid: 10135 + - uid: 15294 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-298.5 parent: 2 - - uid: 10167 + - uid: 15295 components: - type: Transform pos: -8.5,-298.5 parent: 2 - - uid: 10278 + - uid: 15296 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-317.5 parent: 2 - - uid: 10476 + - uid: 15297 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-311.5 parent: 2 - - uid: 10553 + - uid: 15298 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-327.5 parent: 2 - - uid: 10584 + - uid: 15299 components: - type: Transform pos: 1.5,-326.5 parent: 2 - - uid: 10585 + - uid: 15300 components: - type: Transform pos: -0.5,-326.5 parent: 2 - - uid: 10587 + - uid: 15301 components: - type: Transform pos: 2.5,-327.5 parent: 2 - - uid: 10588 + - uid: 15302 components: - type: Transform pos: 2.5,-328.5 parent: 2 - - uid: 10589 + - uid: 15303 components: - type: Transform pos: 1.5,-328.5 parent: 2 - - uid: 10590 + - uid: 15304 components: - type: Transform pos: -0.5,-328.5 parent: 2 - - uid: 10591 + - uid: 15305 components: - type: Transform pos: -1.5,-328.5 parent: 2 - - uid: 10592 + - uid: 15306 components: - type: Transform pos: -1.5,-327.5 parent: 2 - - uid: 10593 + - uid: 15307 components: - type: Transform pos: -0.5,-349.5 parent: 2 - - uid: 10633 + - uid: 15308 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-346.5 parent: 2 - - uid: 10635 + - uid: 15309 components: - type: Transform pos: 7.5,-332.5 parent: 2 - - uid: 10637 + - uid: 15310 components: - type: Transform pos: 4.5,-349.5 parent: 2 - - uid: 10638 + - uid: 15311 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-327.5 parent: 2 - - uid: 10640 + - uid: 15312 components: - type: Transform pos: -5.5,-328.5 parent: 2 - - uid: 10641 + - uid: 15313 components: - type: Transform pos: 1.5,-334.5 parent: 2 - - uid: 10642 + - uid: 15314 components: - type: Transform pos: -6.5,-328.5 parent: 2 - - uid: 10643 + - uid: 15315 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-327.5 parent: 2 - - uid: 10645 + - uid: 15316 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-327.5 parent: 2 - - uid: 10647 + - uid: 15317 components: - type: Transform pos: 1.5,-349.5 parent: 2 - - uid: 10648 + - uid: 15318 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-327.5 parent: 2 - - uid: 10650 + - uid: 15319 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-327.5 parent: 2 - - uid: 10652 + - uid: 15320 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-328.5 parent: 2 - - uid: 10653 + - uid: 15321 components: - type: Transform pos: 6.5,-344.5 parent: 2 - - uid: 10654 + - uid: 15322 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-326.5 parent: 2 - - uid: 10656 + - uid: 15323 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-347.5 parent: 2 - - uid: 10660 + - uid: 15324 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-334.5 parent: 2 - - uid: 10661 + - uid: 15325 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-334.5 parent: 2 - - uid: 10662 + - uid: 15326 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-333.5 parent: 2 - - uid: 10663 + - uid: 15327 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-334.5 parent: 2 - - uid: 10664 + - uid: 15328 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-333.5 parent: 2 - - uid: 10665 + - uid: 15329 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-334.5 parent: 2 - - uid: 10666 + - uid: 15330 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-333.5 parent: 2 - - uid: 10667 + - uid: 15331 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-330.5 parent: 2 - - uid: 10668 + - uid: 15332 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-333.5 parent: 2 - - uid: 10669 + - uid: 15333 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-334.5 parent: 2 - - uid: 10670 + - uid: 15334 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-333.5 parent: 2 - - uid: 10671 + - uid: 15335 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-334.5 parent: 2 - - uid: 10672 + - uid: 15336 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-329.5 parent: 2 - - uid: 10679 + - uid: 15337 components: - type: Transform pos: -9.5,-339.5 parent: 2 - - uid: 10684 + - uid: 15338 components: - type: Transform pos: -9.5,-337.5 parent: 2 - - uid: 10685 + - uid: 15339 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-344.5 parent: 2 - - uid: 10686 + - uid: 15340 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-343.5 parent: 2 - - uid: 10687 + - uid: 15341 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-344.5 parent: 2 - - uid: 10688 + - uid: 15342 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-346.5 parent: 2 - - uid: 10689 + - uid: 15343 components: - type: Transform pos: 9.5,-338.5 parent: 2 - - uid: 10693 + - uid: 15344 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-335.5 parent: 2 - - uid: 10697 + - uid: 15345 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-343.5 parent: 2 - - uid: 10699 + - uid: 15346 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-344.5 parent: 2 - - uid: 10702 + - uid: 15347 components: - type: Transform pos: -0.5,-347.5 parent: 2 - - uid: 10703 + - uid: 15348 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-347.5 parent: 2 - - uid: 10704 + - uid: 15349 components: - type: Transform pos: -3.5,-349.5 parent: 2 - - uid: 10706 + - uid: 15350 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-345.5 parent: 2 - - uid: 10713 + - uid: 15351 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-328.5 parent: 2 - - uid: 10717 + - uid: 15352 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-343.5 parent: 2 - - uid: 10721 + - uid: 15353 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-346.5 parent: 2 - - uid: 10722 + - uid: 15354 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-347.5 parent: 2 - - uid: 10723 + - uid: 15355 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-347.5 parent: 2 - - uid: 10724 + - uid: 15356 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-347.5 parent: 2 - - uid: 10725 + - uid: 15357 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-347.5 parent: 2 - - uid: 10727 + - uid: 15358 components: - type: Transform pos: -1.5,-347.5 parent: 2 - - uid: 10728 + - uid: 15359 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-348.5 parent: 2 - - uid: 10729 + - uid: 15360 components: - type: Transform pos: -6.5,-348.5 parent: 2 - - uid: 10730 + - uid: 15361 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-348.5 parent: 2 - - uid: 10731 + - uid: 15362 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-347.5 parent: 2 - - uid: 10732 + - uid: 15363 components: - type: Transform pos: -5.5,-349.5 parent: 2 - - uid: 10733 + - uid: 15364 components: - type: Transform pos: 3.5,-328.5 parent: 2 - - uid: 10734 + - uid: 15365 components: - type: Transform pos: 3.5,-329.5 parent: 2 - - uid: 10737 + - uid: 15366 components: - type: Transform pos: -2.5,-348.5 parent: 2 - - uid: 10738 + - uid: 15367 components: - type: Transform pos: -6.5,-333.5 parent: 2 - - uid: 10739 + - uid: 15368 components: - type: Transform pos: -4.5,-348.5 parent: 2 - - uid: 10743 + - uid: 15369 components: - type: Transform pos: 3.5,-332.5 parent: 2 - - uid: 10745 + - uid: 15370 components: - type: Transform pos: -9.5,-340.5 parent: 2 - - uid: 10751 + - uid: 15371 components: - type: Transform pos: 6.5,-328.5 parent: 2 - - uid: 10758 + - uid: 15372 components: - type: Transform pos: -1.5,-334.5 parent: 2 - - uid: 10762 + - uid: 15373 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-344.5 parent: 2 - - uid: 10765 + - uid: 15374 components: - type: Transform pos: -6.5,-343.5 parent: 2 - - uid: 10767 + - uid: 15375 components: - type: Transform pos: -5.5,-343.5 parent: 2 - - uid: 10768 + - uid: 15376 components: - type: Transform pos: -3.5,-343.5 parent: 2 - - uid: 10769 + - uid: 15377 components: - type: Transform pos: -2.5,-343.5 parent: 2 - - uid: 10772 + - uid: 15378 components: - type: Transform pos: -5.5,-346.5 parent: 2 - - uid: 10773 + - uid: 15379 components: - type: Transform pos: -2.5,-347.5 parent: 2 - - uid: 10774 + - uid: 15380 components: - type: Transform pos: -3.5,-347.5 parent: 2 - - uid: 10775 + - uid: 15381 components: - type: Transform pos: -4.5,-347.5 parent: 2 - - uid: 10776 + - uid: 15382 components: - type: Transform pos: -5.5,-347.5 parent: 2 - - uid: 10777 + - uid: 15383 components: - type: Transform pos: -6.5,-347.5 parent: 2 - - uid: 10778 + - uid: 15384 components: - type: Transform pos: -6.5,-346.5 parent: 2 - - uid: 10779 - components: - - type: Transform - pos: -6.5,-345.5 - parent: 2 - - uid: 10780 + - uid: 15385 components: - type: Transform pos: -6.5,-344.5 parent: 2 - - uid: 10782 + - uid: 15386 components: - type: Transform pos: -7.5,-343.5 parent: 2 - - uid: 10783 + - uid: 15387 components: - type: Transform pos: -7.5,-344.5 parent: 2 - - uid: 10784 + - uid: 15388 components: - type: Transform pos: -7.5,-345.5 parent: 2 - - uid: 10785 + - uid: 15389 components: - type: Transform pos: -1.5,-348.5 parent: 2 - - uid: 10786 + - uid: 15390 components: - type: Transform pos: -5.5,-348.5 parent: 2 - - uid: 10787 + - uid: 15391 components: - type: Transform pos: 5.5,-348.5 parent: 2 - - uid: 10788 + - uid: 15392 components: - type: Transform pos: -3.5,-348.5 parent: 2 - - uid: 10789 + - uid: 15393 components: - type: Transform pos: 3.5,-348.5 parent: 2 - - uid: 10790 + - uid: 15394 components: - type: Transform pos: 2.5,-348.5 parent: 2 - - uid: 10791 + - uid: 15395 components: - type: Transform pos: 6.5,-349.5 parent: 2 - - uid: 10793 + - uid: 15396 components: - type: Transform pos: -3.5,-326.5 parent: 2 - - uid: 10795 + - uid: 15397 components: - type: Transform pos: -5.5,-326.5 parent: 2 - - uid: 10796 + - uid: 15398 components: - type: Transform pos: 4.5,-326.5 parent: 2 - - uid: 10812 + - uid: 15399 components: - type: Transform pos: -0.5,-343.5 parent: 2 - - uid: 10813 + - uid: 15400 components: - type: Transform pos: -1.5,-343.5 parent: 2 - - uid: 10816 + - uid: 15401 components: - type: Transform pos: -1.5,-344.5 parent: 2 - - uid: 10817 + - uid: 15402 components: - type: Transform pos: -1.5,-345.5 parent: 2 - - uid: 10818 + - uid: 15403 components: - type: Transform pos: -1.5,-346.5 parent: 2 - - uid: 10823 + - uid: 15404 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-342.5 parent: 2 - - uid: 10824 + - uid: 15405 components: - type: Transform pos: -7.5,-334.5 parent: 2 - - uid: 10827 + - uid: 15406 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 10841 + - uid: 15407 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-353.5 parent: 2 - - uid: 10850 + - uid: 15408 components: - type: Transform pos: -9.5,-342.5 parent: 2 - - uid: 10851 + - uid: 15409 components: - type: Transform pos: -9.5,-338.5 parent: 2 - - uid: 10862 + - uid: 15410 components: - type: Transform pos: 8.5,-339.5 parent: 2 - - uid: 10917 + - uid: 15411 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-344.5 parent: 2 - - uid: 10918 + - uid: 15412 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-343.5 parent: 2 - - uid: 10919 + - uid: 15413 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-345.5 parent: 2 - - uid: 10921 + - uid: 15414 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-345.5 parent: 2 - - uid: 10924 + - uid: 15415 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-348.5 parent: 2 - - uid: 10926 + - uid: 15416 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-335.5 parent: 2 - - uid: 10927 + - uid: 15417 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-335.5 parent: 2 - - uid: 10930 + - uid: 15418 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-354.5 parent: 2 - - uid: 10998 + - uid: 15419 components: - type: Transform pos: -10.5,-339.5 parent: 2 - - uid: 10999 + - uid: 15420 components: - type: Transform pos: -10.5,-341.5 parent: 2 - - uid: 11044 + - uid: 15421 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-353.5 parent: 2 - - uid: 11068 + - uid: 15422 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-354.5 parent: 2 - - uid: 11071 + - uid: 15423 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-354.5 parent: 2 - - uid: 11072 + - uid: 15424 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-353.5 parent: 2 - - uid: 11079 + - uid: 15425 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-353.5 parent: 2 - - uid: 11083 + - uid: 15426 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-354.5 parent: 2 - - uid: 11084 + - uid: 15427 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-355.5 parent: 2 - - uid: 11085 + - uid: 15428 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-355.5 parent: 2 - - uid: 11086 + - uid: 15429 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-355.5 parent: 2 - - uid: 11087 + - uid: 15430 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-355.5 parent: 2 - - uid: 11088 + - uid: 15431 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-354.5 parent: 2 - - uid: 11115 + - uid: 15432 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-332.5 parent: 2 - - uid: 11119 + - uid: 15433 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-306.5 parent: 2 - - uid: 11122 + - uid: 15434 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-302.5 parent: 2 - - uid: 11147 + - uid: 15435 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-353.5 parent: 2 - - uid: 11148 + - uid: 15436 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-354.5 parent: 2 - - uid: 11149 + - uid: 15437 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-354.5 parent: 2 - - uid: 11150 + - uid: 15438 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-353.5 parent: 2 - - uid: 11151 + - uid: 15439 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-354.5 parent: 2 - - uid: 11152 + - uid: 15440 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-354.5 parent: 2 - - uid: 11153 + - uid: 15441 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-354.5 parent: 2 - - uid: 11155 + - uid: 15442 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-355.5 parent: 2 - - uid: 11156 + - uid: 15443 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-356.5 parent: 2 - - uid: 11157 + - uid: 15444 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-355.5 parent: 2 - - uid: 11158 + - uid: 15445 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-356.5 parent: 2 - - uid: 11159 + - uid: 15446 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-355.5 parent: 2 - - uid: 11160 + - uid: 15447 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-355.5 parent: 2 - - uid: 11161 + - uid: 15448 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-356.5 parent: 2 - - uid: 11162 + - uid: 15449 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-356.5 parent: 2 - - uid: 11163 + - uid: 15450 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-357.5 parent: 2 - - uid: 11164 + - uid: 15451 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-358.5 parent: 2 - - uid: 11165 + - uid: 15452 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-359.5 parent: 2 - - uid: 11166 + - uid: 15453 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-355.5 parent: 2 - - uid: 11167 + - uid: 15454 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-355.5 parent: 2 - - uid: 11168 + - uid: 15455 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-356.5 parent: 2 - - uid: 11169 + - uid: 15456 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-356.5 parent: 2 - - uid: 11170 + - uid: 15457 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-301.5 parent: 2 - - uid: 11171 + - uid: 15458 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-358.5 parent: 2 - - uid: 11172 + - uid: 15459 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-359.5 parent: 2 - - uid: 11179 + - uid: 15460 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-359.5 parent: 2 - - uid: 11180 + - uid: 15461 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-359.5 parent: 2 - - uid: 11181 + - uid: 15462 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-359.5 parent: 2 - - uid: 11182 + - uid: 15463 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-359.5 parent: 2 - - uid: 11183 + - uid: 15464 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-359.5 parent: 2 - - uid: 11184 + - uid: 15465 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-359.5 parent: 2 - - uid: 11185 + - uid: 15466 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-359.5 parent: 2 - - uid: 11186 + - uid: 15467 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-359.5 parent: 2 - - uid: 11189 + - uid: 15468 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-312.5 parent: 2 - - uid: 11190 + - uid: 15469 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-309.5 parent: 2 - - uid: 11191 + - uid: 15470 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-308.5 parent: 2 - - uid: 11192 + - uid: 15471 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-312.5 parent: 2 - - uid: 11193 + - uid: 15472 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-358.5 parent: 2 - - uid: 11196 + - uid: 15473 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-312.5 parent: 2 - - uid: 11197 + - uid: 15474 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-312.5 parent: 2 - - uid: 11198 + - uid: 15475 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-358.5 parent: 2 - - uid: 11199 + - uid: 15476 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-305.5 parent: 2 - - uid: 11202 + - uid: 15477 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-356.5 parent: 2 - - uid: 11206 + - uid: 15478 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-302.5 parent: 2 - - uid: 11207 + - uid: 15479 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-302.5 parent: 2 - - uid: 11215 + - uid: 15480 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-302.5 parent: 2 - - uid: 11216 + - uid: 15481 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-300.5 parent: 2 - - uid: 11219 + - uid: 15482 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-300.5 parent: 2 - - uid: 11223 + - uid: 15483 components: - type: Transform pos: 8.5,-361.5 parent: 2 - - uid: 11225 + - uid: 15484 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-362.5 parent: 2 - - uid: 11226 + - uid: 15485 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-362.5 parent: 2 - - uid: 11227 + - uid: 15486 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-362.5 parent: 2 - - uid: 11228 + - uid: 15487 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-362.5 parent: 2 - - uid: 11229 + - uid: 15488 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-362.5 parent: 2 - - uid: 11230 + - uid: 15489 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-365.5 parent: 2 - - uid: 11231 + - uid: 15490 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-365.5 parent: 2 - - uid: 11232 + - uid: 15491 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-365.5 parent: 2 - - uid: 11233 + - uid: 15492 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-365.5 parent: 2 - - uid: 11235 + - uid: 15493 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-368.5 parent: 2 - - uid: 11236 + - uid: 15494 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-368.5 parent: 2 - - uid: 11237 + - uid: 15495 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-368.5 parent: 2 - - uid: 11238 + - uid: 15496 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-368.5 parent: 2 - - uid: 11239 + - uid: 15497 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-367.5 parent: 2 - - uid: 11240 + - uid: 15498 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-369.5 parent: 2 - - uid: 11241 + - uid: 15499 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-369.5 parent: 2 - - uid: 11242 + - uid: 15500 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-368.5 parent: 2 - - uid: 11243 + - uid: 15501 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-368.5 parent: 2 - - uid: 11244 + - uid: 15502 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-365.5 parent: 2 - - uid: 11245 + - uid: 15503 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-365.5 parent: 2 - - uid: 11246 + - uid: 15504 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-365.5 parent: 2 - - uid: 11247 + - uid: 15505 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-365.5 parent: 2 - - uid: 11249 + - uid: 15506 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-362.5 parent: 2 - - uid: 11250 + - uid: 15507 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-362.5 parent: 2 - - uid: 11251 + - uid: 15508 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-362.5 parent: 2 - - uid: 11252 + - uid: 15509 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-362.5 parent: 2 - - uid: 11254 + - uid: 15510 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-368.5 parent: 2 - - uid: 11255 + - uid: 15511 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-368.5 parent: 2 - - uid: 11257 + - uid: 15512 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-361.5 parent: 2 - - uid: 11267 + - uid: 15513 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-301.5 parent: 2 - - uid: 11268 + - uid: 15514 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-300.5 parent: 2 - - uid: 11275 + - uid: 15515 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-373.5 parent: 2 - - uid: 11276 + - uid: 15516 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-374.5 parent: 2 - - uid: 11277 + - uid: 15517 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-374.5 parent: 2 - - uid: 11278 + - uid: 15518 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-375.5 parent: 2 - - uid: 11279 + - uid: 15519 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-376.5 parent: 2 - - uid: 11280 + - uid: 15520 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-375.5 parent: 2 - - uid: 11281 + - uid: 15521 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-376.5 parent: 2 - - uid: 11282 + - uid: 15522 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-375.5 parent: 2 - - uid: 11283 + - uid: 15523 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-374.5 parent: 2 - - uid: 11284 + - uid: 15524 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-375.5 parent: 2 - - uid: 11289 + - uid: 15525 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-374.5 parent: 2 - - uid: 11290 + - uid: 15526 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-375.5 parent: 2 - - uid: 11292 + - uid: 15527 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-376.5 parent: 2 - - uid: 11293 + - uid: 15528 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-300.5 parent: 2 - - uid: 11294 + - uid: 15529 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-376.5 parent: 2 - - uid: 11295 + - uid: 15530 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-375.5 parent: 2 - - uid: 11296 + - uid: 15531 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-375.5 parent: 2 - - uid: 11297 + - uid: 15532 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-376.5 parent: 2 - - uid: 11298 + - uid: 15533 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-374.5 parent: 2 - - uid: 11299 + - uid: 15534 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-375.5 parent: 2 - - uid: 11300 + - uid: 15535 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-375.5 parent: 2 - - uid: 11301 + - uid: 15536 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-374.5 parent: 2 - - uid: 11302 + - uid: 15537 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-376.5 parent: 2 - - uid: 11303 + - uid: 15538 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-374.5 parent: 2 - - uid: 11304 + - uid: 15539 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-373.5 parent: 2 - - uid: 11305 + - uid: 15540 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-367.5 parent: 2 - - uid: 11315 + - uid: 15541 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-296.5 parent: 2 - - uid: 11321 + - uid: 15542 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-296.5 parent: 2 - - uid: 11333 + - uid: 15543 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-296.5 parent: 2 - - uid: 11334 + - uid: 15544 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-296.5 parent: 2 - - uid: 11335 + - uid: 15545 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-296.5 parent: 2 - - uid: 11336 + - uid: 15546 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-296.5 parent: 2 - - uid: 11337 + - uid: 15547 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-296.5 parent: 2 - - uid: 11338 + - uid: 15548 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-300.5 parent: 2 - - uid: 11339 + - uid: 15549 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-300.5 parent: 2 - - uid: 11340 + - uid: 15550 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-318.5 parent: 2 - - uid: 11341 + - uid: 15551 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-318.5 parent: 2 - - uid: 11342 + - uid: 15552 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-366.5 parent: 2 - - uid: 11343 + - uid: 15553 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-366.5 parent: 2 - - uid: 11344 + - uid: 15554 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-318.5 parent: 2 - - uid: 11347 + - uid: 15555 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-318.5 parent: 2 - - uid: 11348 + - uid: 15556 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-318.5 parent: 2 - - uid: 11351 + - uid: 15557 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-318.5 parent: 2 - - uid: 11354 + - uid: 15558 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-369.5 parent: 2 - - uid: 11355 + - uid: 15559 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-369.5 parent: 2 - - uid: 11356 + - uid: 15560 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-369.5 parent: 2 - - uid: 11357 + - uid: 15561 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-368.5 parent: 2 - - uid: 11358 + - uid: 15562 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-367.5 parent: 2 - - uid: 11359 + - uid: 15563 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-367.5 parent: 2 - - uid: 11360 + - uid: 15564 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-369.5 parent: 2 - - uid: 11361 + - uid: 15565 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-369.5 parent: 2 - - uid: 11362 + - uid: 15566 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-369.5 parent: 2 - - uid: 11363 + - uid: 15567 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-368.5 parent: 2 - - uid: 11364 + - uid: 15568 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-367.5 parent: 2 - - uid: 11365 + - uid: 15569 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-367.5 parent: 2 - - uid: 11366 + - uid: 15570 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-318.5 parent: 2 - - uid: 11368 + - uid: 15571 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-314.5 parent: 2 - - uid: 11369 + - uid: 15572 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-361.5 parent: 2 - - uid: 11371 + - uid: 15573 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-362.5 parent: 2 - - uid: 11372 + - uid: 15574 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-361.5 parent: 2 - - uid: 11373 + - uid: 15575 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-314.5 parent: 2 - - uid: 11374 + - uid: 15576 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-314.5 parent: 2 - - uid: 11375 + - uid: 15577 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-314.5 parent: 2 - - uid: 11376 + - uid: 15578 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-314.5 parent: 2 - - uid: 11410 + - uid: 15579 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-314.5 parent: 2 - - uid: 11420 + - uid: 15580 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-305.5 parent: 2 - - uid: 11421 + - uid: 15581 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-305.5 parent: 2 - - uid: 11422 + - uid: 15582 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-305.5 parent: 2 - - uid: 11423 + - uid: 15583 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-309.5 parent: 2 - - uid: 11424 + - uid: 15584 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-309.5 parent: 2 - - uid: 11426 + - uid: 15585 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-309.5 parent: 2 - - uid: 11427 + - uid: 15586 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-304.5 parent: 2 - - uid: 11428 + - uid: 15587 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-303.5 parent: 2 - - uid: 11432 + - uid: 15588 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-305.5 parent: 2 - - uid: 11448 + - uid: 15589 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-374.5 parent: 2 - - uid: 11457 + - uid: 15590 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-375.5 parent: 2 - - uid: 11504 + - uid: 15591 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-309.5 parent: 2 - - uid: 11505 + - uid: 15592 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-307.5 parent: 2 - - uid: 11506 + - uid: 15593 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-306.5 parent: 2 - - uid: 11509 + - uid: 15594 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-308.5 parent: 2 - - uid: 11519 + - uid: 15595 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-307.5 parent: 2 - - uid: 11549 + - uid: 15596 components: - type: Transform pos: 6.5,-132.5 parent: 2 - - uid: 11716 + - uid: 15597 components: - type: Transform pos: 20.5,-241.5 parent: 2 - - uid: 11769 + - uid: 15598 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-307.5 parent: 2 - - uid: 11773 + - uid: 15599 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-307.5 parent: 2 - - uid: 11776 + - uid: 15600 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-311.5 parent: 2 - - uid: 11777 + - uid: 15601 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-310.5 parent: 2 - - uid: 11793 + - uid: 15602 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-311.5 parent: 2 - - uid: 11808 + - uid: 15603 components: - type: Transform pos: 1.5,-380.5 parent: 2 - - uid: 11809 + - uid: 15604 components: - type: Transform pos: -0.5,-380.5 parent: 2 - - uid: 11816 + - uid: 15605 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-310.5 parent: 2 - - uid: 11819 + - uid: 15606 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-382.5 parent: 2 - - uid: 11825 + - uid: 15607 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-304.5 parent: 2 - - uid: 11829 + - uid: 15608 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-381.5 parent: 2 - - uid: 11840 + - uid: 15609 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-382.5 parent: 2 - - uid: 11841 + - uid: 15610 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-381.5 parent: 2 - - uid: 11842 + - uid: 15611 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-382.5 parent: 2 - - uid: 11843 + - uid: 15612 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-382.5 parent: 2 - - uid: 11868 + - uid: 15613 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-381.5 parent: 2 - - uid: 11869 + - uid: 15614 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-380.5 parent: 2 - - uid: 11870 + - uid: 15615 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-381.5 parent: 2 - - uid: 11871 + - uid: 15616 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-380.5 parent: 2 - - uid: 11872 + - uid: 15617 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-381.5 parent: 2 - - uid: 11873 + - uid: 15618 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-381.5 parent: 2 - - uid: 11874 + - uid: 15619 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-380.5 parent: 2 - - uid: 11875 + - uid: 15620 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-381.5 parent: 2 - - uid: 11876 + - uid: 15621 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-381.5 parent: 2 - - uid: 11877 + - uid: 15622 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-380.5 parent: 2 - - uid: 11878 + - uid: 15623 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-381.5 parent: 2 - - uid: 11879 + - uid: 15624 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-381.5 parent: 2 - - uid: 11884 + - uid: 15625 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-382.5 parent: 2 - - uid: 11886 + - uid: 15626 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-382.5 parent: 2 - - uid: 11887 + - uid: 15627 components: - type: Transform pos: -10.5,-163.5 parent: 2 - - uid: 11895 + - uid: 15628 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-385.5 parent: 2 - - uid: 11896 + - uid: 15629 components: - type: Transform pos: -18.5,-256.5 parent: 2 - - uid: 11897 + - uid: 15630 components: - type: Transform pos: -18.5,-258.5 parent: 2 - - uid: 11900 + - uid: 15631 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-384.5 parent: 2 - - uid: 11902 + - uid: 15632 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-386.5 parent: 2 - - uid: 11909 + - uid: 15633 components: - type: Transform pos: -7.5,-161.5 parent: 2 - - uid: 11910 + - uid: 15634 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-383.5 parent: 2 - - uid: 11918 + - uid: 15635 components: - type: Transform pos: -22.5,-262.5 parent: 2 - - uid: 11919 + - uid: 15636 components: - type: Transform pos: -21.5,-262.5 parent: 2 - - uid: 11921 + - uid: 15637 components: - type: Transform pos: -12.5,-265.5 parent: 2 - - uid: 11922 + - uid: 15638 components: - type: Transform pos: -19.5,-262.5 parent: 2 - - uid: 11924 + - uid: 15639 components: - type: Transform pos: -22.5,-261.5 parent: 2 - - uid: 11925 + - uid: 15640 components: - type: Transform pos: -22.5,-260.5 parent: 2 - - uid: 11929 + - uid: 15641 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-384.5 parent: 2 - - uid: 11944 + - uid: 15642 components: - type: Transform pos: -6.5,-385.5 parent: 2 - - uid: 11954 + - uid: 15643 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-386.5 parent: 2 - - uid: 11956 + - uid: 15644 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-342.5 parent: 2 - - uid: 11960 + - uid: 15645 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-303.5 parent: 2 - - uid: 11961 + - uid: 15646 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-313.5 parent: 2 - - uid: 11962 + - uid: 15647 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-313.5 parent: 2 - - uid: 11963 + - uid: 15648 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-307.5 parent: 2 - - uid: 11965 + - uid: 15649 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-340.5 parent: 2 - - uid: 11973 + - uid: 15650 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-339.5 parent: 2 - - uid: 11989 + - uid: 15651 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-382.5 parent: 2 - - uid: 11993 + - uid: 15652 components: - type: Transform pos: -10.5,-161.5 parent: 2 - - uid: 11997 + - uid: 15653 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-383.5 parent: 2 - - uid: 12056 + - uid: 15654 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-336.5 parent: 2 - - uid: 12090 + - uid: 15655 components: - type: Transform pos: -8.5,-247.5 parent: 2 - - uid: 12095 + - uid: 15656 components: - type: Transform pos: -7.5,-247.5 parent: 2 - - uid: 12100 + - uid: 15657 components: - type: Transform pos: -14.5,-266.5 parent: 2 - - uid: 12102 + - uid: 15658 components: - type: Transform pos: -13.5,-266.5 parent: 2 - - uid: 12103 + - uid: 15659 components: - type: Transform pos: -22.5,-266.5 parent: 2 - - uid: 12105 + - uid: 15660 components: - type: Transform pos: -18.5,-266.5 parent: 2 - - uid: 12149 + - uid: 15661 components: - type: Transform pos: -6.5,-128.5 parent: 2 - - uid: 12261 + - uid: 15662 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-119.5 parent: 2 - - uid: 12326 + - uid: 15663 components: - type: Transform pos: -22.5,-252.5 parent: 2 - - uid: 12469 + - uid: 15664 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-342.5 parent: 2 - - uid: 12496 + - uid: 15665 components: - type: Transform pos: -16.5,-266.5 parent: 2 - - uid: 12678 + - uid: 15666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-345.5 + parent: 2 + - uid: 15667 components: - type: Transform pos: -19.5,-266.5 parent: 2 - - uid: 12685 + - uid: 15668 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-343.5 parent: 2 - - uid: 12687 + - uid: 15669 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-337.5 parent: 2 - - uid: 12771 + - uid: 15670 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-333.5 parent: 2 - - uid: 12801 + - uid: 15671 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-336.5 parent: 2 - - uid: 12817 + - uid: 15672 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-344.5 parent: 2 - - uid: 12818 + - uid: 15673 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-342.5 parent: 2 - - uid: 12819 + - uid: 15674 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-341.5 parent: 2 - - uid: 12820 + - uid: 15675 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-339.5 parent: 2 - - uid: 12821 + - uid: 15676 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-337.5 parent: 2 - - uid: 12824 + - uid: 15677 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-340.5 parent: 2 - - uid: 12825 + - uid: 15678 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-341.5 parent: 2 - - uid: 12870 + - uid: 15679 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-334.5 parent: 2 - - uid: 12872 + - uid: 15680 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-339.5 parent: 2 - - uid: 12910 + - uid: 15681 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-338.5 parent: 2 - - uid: 12912 + - uid: 15682 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-346.5 parent: 2 - - uid: 12913 + - uid: 15683 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-339.5 parent: 2 - - uid: 12995 + - uid: 15684 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-333.5 parent: 2 - - uid: 13074 + - uid: 15685 components: - type: Transform pos: 5.5,-344.5 parent: 2 - - uid: 13275 + - uid: 15686 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-333.5 parent: 2 - - uid: 13276 + - uid: 15687 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-340.5 parent: 2 - - uid: 13278 + - uid: 15688 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-337.5 parent: 2 - - uid: 13290 + - uid: 15689 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-264.5 parent: 2 - - uid: 13293 + - uid: 15690 components: - type: Transform pos: -9.5,-310.5 parent: 2 - - uid: 13294 + - uid: 15691 components: - type: Transform pos: -8.5,-310.5 parent: 2 - - uid: 13295 + - uid: 15692 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-298.5 parent: 2 - - uid: 13301 + - uid: 15693 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-300.5 parent: 2 - - uid: 13309 + - uid: 15694 components: - type: Transform pos: 7.5,-121.5 parent: 2 - - uid: 13327 + - uid: 15695 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-121.5 parent: 2 - - uid: 13330 + - uid: 15696 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-299.5 parent: 2 - - uid: 13331 + - uid: 15697 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-264.5 parent: 2 - - uid: 13369 + - uid: 15698 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-120.5 parent: 2 - - uid: 13375 + - uid: 15699 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-261.5 parent: 2 - - uid: 13406 + - uid: 15700 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-338.5 parent: 2 - - uid: 13408 + - uid: 15701 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-121.5 parent: 2 - - uid: 13409 + - uid: 15702 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-332.5 parent: 2 - - uid: 13460 + - uid: 15703 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-163.5 parent: 2 - - uid: 13462 + - uid: 15704 components: - type: Transform pos: 7.5,-241.5 parent: 2 - - uid: 13961 + - uid: 15705 components: - type: Transform pos: 20.5,-239.5 parent: 2 - - uid: 13993 + - uid: 15706 components: - type: Transform pos: 20.5,-240.5 parent: 2 - - uid: 14020 + - uid: 15707 components: - type: Transform pos: -17.5,-266.5 parent: 2 - - uid: 14050 + - uid: 15708 components: - type: Transform pos: -20.5,-262.5 parent: 2 - - uid: 14089 + - uid: 15709 components: - type: Transform pos: -15.5,-266.5 parent: 2 - - uid: 14091 + - uid: 15710 components: - type: Transform pos: -13.5,-265.5 parent: 2 - - uid: 14201 + - uid: 15711 components: - type: Transform pos: -20.5,-266.5 parent: 2 - - uid: 14288 + - uid: 15712 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-181.5 parent: 2 - - uid: 14290 + - uid: 15713 components: - type: Transform pos: -10.5,-168.5 parent: 2 - - uid: 14301 + - uid: 15714 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-341.5 parent: 2 - - uid: 14781 + - uid: 15715 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-24.5 parent: 2 - - uid: 14911 + - uid: 15716 components: - type: Transform pos: -7.5,-148.5 parent: 2 - - uid: 14916 + - uid: 15717 components: - type: Transform pos: -7.5,-144.5 parent: 2 - - uid: 15795 + - uid: 15718 components: - type: Transform pos: -9.5,-336.5 parent: 2 - - uid: 15796 + - uid: 15719 components: - type: Transform pos: -8.5,-336.5 parent: 2 - - uid: 16471 + - uid: 15720 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-160.5 parent: 2 - - uid: 16472 + - uid: 15721 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-160.5 parent: 2 - - uid: 16473 + - uid: 15722 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-169.5 parent: 2 - - uid: 16474 + - uid: 15723 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-169.5 parent: 2 - - uid: 16475 + - uid: 15724 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-169.5 parent: 2 - - uid: 16484 + - uid: 15725 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-160.5 parent: 2 - - uid: 16549 + - uid: 15726 components: - type: Transform pos: -21.5,-256.5 parent: 2 - - uid: 16581 + - uid: 15727 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-78.5 parent: 2 - - uid: 16584 + - uid: 15728 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-78.5 parent: 2 - - uid: 16623 + - uid: 15729 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 - - uid: 16624 + - uid: 15730 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 - - uid: 16628 + - uid: 15731 components: - type: Transform pos: -3.5,-187.5 parent: 2 - - uid: 16716 + - uid: 15732 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-24.5 parent: 2 - - uid: 16740 + - uid: 15733 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 - - uid: 16900 + - uid: 15734 components: - type: Transform pos: -3.5,-186.5 parent: 2 - - uid: 16901 + - uid: 15735 components: - type: Transform pos: -5.5,-187.5 parent: 2 - - uid: 16902 + - uid: 15736 components: - type: Transform pos: -5.5,-186.5 parent: 2 - proto: WallReinforcedDiagonal entities: - - uid: 145 + - uid: 15737 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 147 + - uid: 15738 components: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 260 + - uid: 15739 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 324 + - uid: 15740 components: - type: Transform pos: -5.5,3.5 parent: 2 - - uid: 325 + - uid: 15741 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 342 + - uid: 15742 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 2 - - uid: 359 + - uid: 15743 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 2 - - uid: 368 + - uid: 15744 components: - type: Transform pos: -5.5,3.5 parent: 2 - - uid: 375 + - uid: 15745 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 2 - - uid: 376 + - uid: 15746 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 2 - - uid: 381 + - uid: 15747 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-14.5 parent: 2 - - uid: 382 + - uid: 15748 components: - type: Transform pos: -7.5,-0.5 parent: 2 - - uid: 385 + - uid: 15749 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 - - uid: 425 + - uid: 15750 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 - - uid: 430 + - uid: 15751 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 - - uid: 571 + - uid: 15752 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 599 + - uid: 15753 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-101.5 parent: 2 - - uid: 642 + - uid: 15754 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-47.5 parent: 2 - - uid: 647 + - uid: 15755 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 - - uid: 659 + - uid: 15756 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-51.5 parent: 2 - - uid: 672 + - uid: 15757 components: - type: Transform pos: -1.5,-51.5 parent: 2 - - uid: 941 + - uid: 15758 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-223.5 parent: 2 - - uid: 943 + - uid: 15759 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-58.5 parent: 2 - - uid: 956 + - uid: 15760 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 - - uid: 978 + - uid: 15761 components: - type: Transform pos: -6.5,-25.5 parent: 2 - - uid: 979 + - uid: 15762 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 - - uid: 1002 + - uid: 15763 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-74.5 parent: 2 - - uid: 1086 + - uid: 15764 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-26.5 parent: 2 - - uid: 1240 + - uid: 15765 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 1286 + - uid: 15766 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-70.5 parent: 2 - - uid: 1463 + - uid: 15767 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-78.5 parent: 2 - - uid: 1464 + - uid: 15768 components: - type: Transform pos: -1.5,-78.5 parent: 2 - - uid: 1813 + - uid: 15769 components: - type: Transform pos: -1.5,-105.5 parent: 2 - - uid: 1823 + - uid: 15770 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-105.5 parent: 2 - - uid: 1824 + - uid: 15771 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-101.5 parent: 2 - - uid: 1927 + - uid: 15772 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-112.5 parent: 2 - - uid: 1958 + - uid: 15773 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-126.5 parent: 2 - - uid: 1992 + - uid: 15774 components: - type: Transform pos: -9.5,-106.5 parent: 2 - - uid: 1993 + - uid: 15775 components: - type: Transform pos: -6.5,-105.5 parent: 2 - - uid: 2108 + - uid: 15776 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-128.5 parent: 2 - - uid: 2113 + - uid: 15777 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-128.5 parent: 2 - - uid: 2122 + - uid: 15778 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-135.5 parent: 2 - - uid: 2165 + - uid: 15779 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-122.5 parent: 2 - - uid: 2449 + - uid: 15780 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-132.5 parent: 2 - - uid: 2451 + - uid: 15781 components: - type: Transform pos: -1.5,-132.5 parent: 2 - - uid: 2522 + - uid: 15782 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-155.5 parent: 2 - - uid: 2529 + - uid: 15783 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-155.5 parent: 2 - - uid: 2582 + - uid: 15784 components: - type: Transform pos: -6.5,-134.5 parent: 2 - - uid: 2853 + - uid: 15785 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-159.5 parent: 2 - - uid: 2854 + - uid: 15786 components: - type: Transform pos: -1.5,-159.5 parent: 2 - - uid: 2872 + - uid: 15787 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-134.5 parent: 2 - - uid: 2886 + - uid: 15788 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-126.5 parent: 2 - - uid: 2887 + - uid: 15789 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-153.5 parent: 2 - - uid: 2906 + - uid: 15790 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-116.5 parent: 2 - - uid: 2936 + - uid: 15791 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-182.5 parent: 2 - - uid: 2937 + - uid: 15792 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-182.5 parent: 2 - - uid: 3155 + - uid: 15793 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-180.5 parent: 2 - - uid: 3653 + - uid: 15794 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-186.5 parent: 2 - - uid: 3656 + - uid: 15795 components: - type: Transform pos: -1.5,-186.5 parent: 2 - - uid: 3687 + - uid: 15796 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-180.5 parent: 2 - - uid: 3817 + - uid: 15797 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-209.5 parent: 2 - - uid: 3819 + - uid: 15798 components: - type: Transform pos: -1.5,-213.5 parent: 2 - - uid: 3878 + - uid: 15799 components: - type: Transform pos: -10.5,-336.5 parent: 2 - - uid: 3883 + - uid: 15800 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-343.5 parent: 2 - - uid: 4009 + - uid: 15801 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-240.5 parent: 2 - - uid: 4319 + - uid: 15802 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-209.5 parent: 2 - - uid: 4322 + - uid: 15803 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-213.5 parent: 2 - - uid: 4530 + - uid: 15804 components: - type: Transform pos: -1.5,-240.5 parent: 2 - - uid: 4533 + - uid: 15805 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-236.5 parent: 2 - - uid: 4535 + - uid: 15806 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-236.5 parent: 2 - - uid: 4549 + - uid: 15807 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 4550 + - uid: 15808 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5088 + - uid: 15809 components: - type: Transform pos: -2.5,-111.5 parent: 2 - - uid: 5123 + - uid: 15810 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5125 + - uid: 15811 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5165 + - uid: 15812 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5170 + - uid: 15813 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5176 + - uid: 15814 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5180 + - uid: 15815 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5183 + - uid: 15816 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-263.5 parent: 2 - - uid: 5184 + - uid: 15817 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5187 + - uid: 15818 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 5359 + - uid: 15819 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-238.5 parent: 2 - - uid: 5411 + - uid: 15820 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-263.5 parent: 2 - - uid: 6676 + - uid: 15821 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-128.5 parent: 2 - - uid: 6738 + - uid: 15822 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-256.5 parent: 2 - - uid: 7379 + - uid: 15823 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-266.5 parent: 2 - - uid: 7385 + - uid: 15824 components: - type: Transform pos: 14.5,-238.5 parent: 2 - - uid: 7415 + - uid: 15825 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-266.5 parent: 2 - - uid: 7488 + - uid: 15826 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-192.5 parent: 2 - - uid: 7494 + - uid: 15827 components: - type: Transform pos: -11.5,-306.5 parent: 2 - - uid: 8384 + - uid: 15828 components: - type: Transform pos: -10.5,-188.5 parent: 2 - - uid: 8410 + - uid: 15829 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-310.5 parent: 2 - - uid: 8411 + - uid: 15830 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-290.5 parent: 2 - - uid: 8412 + - uid: 15831 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-290.5 parent: 2 - - uid: 8579 + - uid: 15832 components: - type: Transform pos: -1.5,-267.5 parent: 2 - - uid: 8580 + - uid: 15833 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-267.5 parent: 2 - - uid: 9364 + - uid: 15834 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-294.5 parent: 2 - - uid: 9365 + - uid: 15835 components: - type: Transform pos: -1.5,-294.5 parent: 2 - - uid: 9474 + - uid: 15836 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-332.5 parent: 2 - - uid: 9498 + - uid: 15837 components: - type: Transform pos: 3.5,-341.5 parent: 2 - - uid: 9542 + - uid: 15838 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-339.5 parent: 2 - - uid: 10130 + - uid: 15839 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-322.5 parent: 2 - - uid: 10131 + - uid: 15840 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-322.5 parent: 2 - - uid: 10582 + - uid: 15841 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-326.5 parent: 2 - - uid: 10583 + - uid: 15842 components: - type: Transform pos: -1.5,-326.5 parent: 2 - - uid: 10649 + - uid: 15843 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-349.5 parent: 2 - - uid: 10692 + - uid: 15844 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-344.5 parent: 2 - - uid: 10695 + - uid: 15845 components: - type: Transform pos: -7.5,-332.5 parent: 2 - - uid: 10700 + - uid: 15846 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-344.5 parent: 2 - - uid: 10792 + - uid: 15847 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-349.5 parent: 2 - - uid: 10825 + - uid: 15848 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-309.5 parent: 2 - - uid: 10994 + - uid: 15849 components: - type: Transform pos: -9.5,-335.5 parent: 2 - - uid: 11077 + - uid: 15850 components: - type: Transform pos: -1.5,-353.5 parent: 2 - - uid: 11078 + - uid: 15851 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-353.5 parent: 2 - - uid: 11285 + - uid: 15852 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-376.5 parent: 2 - - uid: 11563 + - uid: 15853 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-376.5 parent: 2 - - uid: 11725 + - uid: 15854 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-359.5 parent: 2 - - uid: 11726 + - uid: 15855 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-359.5 parent: 2 - - uid: 11762 + - uid: 15856 components: - type: Transform pos: -1.5,-361.5 parent: 2 - - uid: 11805 + - uid: 15857 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-380.5 parent: 2 - - uid: 11806 + - uid: 15858 components: - type: Transform pos: -1.5,-380.5 parent: 2 - - uid: 11813 + - uid: 15859 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-361.5 parent: 2 - - uid: 11892 + - uid: 15860 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-160.5 parent: 2 - - uid: 12057 + - uid: 15861 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-336.5 parent: 2 - - uid: 12146 + - uid: 15862 components: - type: Transform pos: -8.5,-333.5 parent: 2 - - uid: 12822 + - uid: 15863 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-333.5 parent: 2 - - uid: 12823 + - uid: 15864 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-335.5 parent: 2 - - uid: 12911 + - uid: 15865 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-343.5 parent: 2 - - uid: 13305 + - uid: 15866 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-310.5 parent: 2 - - uid: 13308 + - uid: 15867 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-306.5 parent: 2 - - uid: 13352 + - uid: 15868 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-121.5 parent: 2 - - uid: 14798 + - uid: 15869 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-74.5 parent: 2 - - uid: 15751 + - uid: 15870 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-310.5 parent: 2 - - uid: 15752 + - uid: 15871 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-311.5 parent: 2 - - uid: 15753 + - uid: 15872 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-312.5 parent: 2 - - uid: 15754 + - uid: 15873 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-311.5 parent: 2 - - uid: 15755 + - uid: 15874 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-310.5 parent: 2 - - uid: 15756 + - uid: 15875 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-312.5 parent: 2 - - uid: 15757 + - uid: 15876 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-311.5 parent: 2 - - uid: 15758 + - uid: 15877 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-310.5 parent: 2 - - uid: 15759 + - uid: 15878 components: - type: Transform pos: 26.5,-309.5 parent: 2 - - uid: 15760 + - uid: 15879 components: - type: Transform pos: 25.5,-310.5 parent: 2 - - uid: 15761 + - uid: 15880 components: - type: Transform pos: 24.5,-311.5 parent: 2 - - uid: 15762 + - uid: 15881 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-314.5 parent: 2 - - uid: 15763 + - uid: 15882 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-318.5 parent: 2 - - uid: 15764 + - uid: 15883 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-318.5 parent: 2 - - uid: 15765 + - uid: 15884 components: - type: Transform pos: 18.5,-314.5 parent: 2 - - uid: 15766 + - uid: 15885 components: - type: Transform pos: 17.5,-304.5 parent: 2 - - uid: 15767 + - uid: 15886 components: - type: Transform pos: 18.5,-303.5 parent: 2 - - uid: 15768 + - uid: 15887 components: - type: Transform pos: 19.5,-302.5 parent: 2 - - uid: 15769 + - uid: 15888 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-303.5 parent: 2 - - uid: 15770 + - uid: 15889 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-304.5 parent: 2 - - uid: 15771 + - uid: 15890 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-305.5 parent: 2 - - uid: 15772 + - uid: 15891 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-303.5 parent: 2 - - uid: 15773 + - uid: 15892 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-304.5 parent: 2 - - uid: 15774 + - uid: 15893 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-305.5 parent: 2 - - uid: 15775 + - uid: 15894 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-304.5 parent: 2 - - uid: 15776 + - uid: 15895 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-303.5 parent: 2 - - uid: 15777 + - uid: 15896 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-302.5 parent: 2 - - uid: 15778 + - uid: 15897 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-305.5 parent: 2 - - uid: 15779 + - uid: 15898 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-309.5 parent: 2 - - uid: 15780 + - uid: 15899 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-300.5 parent: 2 - - uid: 15781 + - uid: 15900 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-296.5 parent: 2 - - uid: 15782 + - uid: 15901 components: - type: Transform pos: 18.5,-296.5 parent: 2 - - uid: 15783 + - uid: 15902 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-300.5 parent: 2 - - uid: 16482 + - uid: 15903 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-169.5 parent: 2 - - uid: 16502 + - uid: 15904 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-169.5 parent: 2 - - uid: 16530 + - uid: 15905 components: - type: Transform pos: -15.5,-160.5 parent: 2 - proto: WallReinforcedRust entities: - - uid: 121 + - uid: 15906 components: - type: Transform pos: -3.5,-0.5 parent: 2 - - uid: 122 + - uid: 15907 components: - type: Transform pos: -4.5,-0.5 parent: 2 - - uid: 123 + - uid: 15908 components: - type: Transform pos: -4.5,-1.5 parent: 2 - - uid: 124 + - uid: 15909 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 125 + - uid: 15910 components: - type: Transform pos: -1.5,-4.5 parent: 2 - - uid: 126 + - uid: 15911 components: - type: Transform pos: -0.5,-4.5 parent: 2 - - uid: 130 + - uid: 15912 components: - type: Transform pos: 3.5,-2.5 parent: 2 - - uid: 135 + - uid: 15913 components: - type: Transform pos: 3.5,-3.5 parent: 2 - - uid: 139 + - uid: 15914 components: - type: Transform pos: 4.5,-3.5 parent: 2 - - uid: 148 + - uid: 15915 components: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 149 + - uid: 15916 components: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 153 + - uid: 15917 components: - type: Transform pos: -6.5,-3.5 parent: 2 - - uid: 180 + - uid: 15918 components: - type: Transform pos: 5.5,-13.5 parent: 2 - - uid: 188 + - uid: 15919 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 232 + - uid: 15920 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 233 + - uid: 15921 components: - type: Transform pos: -4.5,-7.5 parent: 2 - - uid: 244 + - uid: 15922 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 249 + - uid: 15923 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 254 + - uid: 15924 components: - type: Transform pos: -6.5,-4.5 parent: 2 - - uid: 258 + - uid: 15925 components: - type: Transform pos: -4.5,-9.5 parent: 2 - - uid: 259 + - uid: 15926 components: - type: Transform pos: -4.5,-14.5 parent: 2 - - uid: 261 + - uid: 15927 components: - type: Transform pos: -3.5,-15.5 parent: 2 - - uid: 262 + - uid: 15928 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 329 + - uid: 15929 components: - type: Transform pos: -6.5,-18.5 parent: 2 - - uid: 331 + - uid: 15930 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 332 + - uid: 15931 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 349 + - uid: 15932 components: - type: Transform pos: 6.5,-20.5 parent: 2 - - uid: 350 + - uid: 15933 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 371 + - uid: 15934 components: - type: Transform pos: -7.5,-35.5 parent: 2 - - uid: 443 + - uid: 15935 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 457 + - uid: 15936 components: - type: Transform pos: -6.5,-35.5 parent: 2 - - uid: 490 + - uid: 15937 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 497 + - uid: 15938 components: - type: Transform pos: 7.5,-32.5 parent: 2 - - uid: 502 + - uid: 15939 components: - type: Transform pos: 7.5,-28.5 parent: 2 - - uid: 504 + - uid: 15940 components: - type: Transform pos: 7.5,-27.5 parent: 2 - - uid: 517 + - uid: 15941 components: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 518 + - uid: 15942 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 519 + - uid: 15943 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 520 + - uid: 15944 components: - type: Transform pos: 6.5,-46.5 parent: 2 - - uid: 540 + - uid: 15945 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 897 + - uid: 15946 components: - type: Transform pos: 4.5,-53.5 parent: 2 - - uid: 900 + - uid: 15947 components: - type: Transform pos: 4.5,-52.5 parent: 2 - - uid: 925 + - uid: 15948 components: - type: Transform pos: 7.5,-72.5 parent: 2 - - uid: 927 + - uid: 15949 components: - type: Transform pos: 6.5,-72.5 parent: 2 - - uid: 928 + - uid: 15950 components: - type: Transform pos: 7.5,-71.5 parent: 2 - - uid: 960 + - uid: 15951 components: - type: Transform pos: 8.5,-71.5 parent: 2 - - uid: 982 + - uid: 15952 components: - type: Transform pos: 2.5,-54.5 parent: 2 - - uid: 983 + - uid: 15953 components: - type: Transform pos: 2.5,-55.5 parent: 2 - - uid: 994 + - uid: 15954 components: - type: Transform pos: -1.5,-73.5 parent: 2 - - uid: 1012 + - uid: 15955 components: - type: Transform pos: -1.5,-74.5 parent: 2 - - uid: 1014 + - uid: 15956 components: - type: Transform pos: 6.5,-74.5 parent: 2 - - uid: 1120 + - uid: 15957 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 1121 + - uid: 15958 components: - type: Transform pos: 6.5,-73.5 parent: 2 - - uid: 1213 + - uid: 15959 components: - type: Transform pos: 3.5,-52.5 parent: 2 - - uid: 1420 + - uid: 15960 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-74.5 parent: 2 - - uid: 1516 + - uid: 15961 components: - type: Transform pos: 6.5,-79.5 parent: 2 - - uid: 1517 + - uid: 15962 components: - type: Transform pos: 6.5,-80.5 parent: 2 - - uid: 1518 + - uid: 15963 components: - type: Transform pos: 7.5,-80.5 parent: 2 - - uid: 1536 + - uid: 15964 components: - type: Transform pos: -6.5,-93.5 parent: 2 - - uid: 1537 + - uid: 15965 components: - type: Transform pos: -6.5,-94.5 parent: 2 - - uid: 1538 + - uid: 15966 components: - type: Transform pos: -6.5,-95.5 parent: 2 - - uid: 1554 + - uid: 15967 components: - type: Transform pos: 2.5,-100.5 parent: 2 - - uid: 1581 + - uid: 15968 components: - type: Transform pos: 7.5,-92.5 parent: 2 - - uid: 1711 + - uid: 15969 components: - type: Transform pos: 2.5,-99.5 parent: 2 - - uid: 1712 + - uid: 15970 components: - type: Transform pos: 1.5,-99.5 parent: 2 - - uid: 1847 + - uid: 15971 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-51.5 parent: 2 - - uid: 1855 + - uid: 15972 components: - type: Transform pos: -7.5,-106.5 parent: 2 - - uid: 1856 + - uid: 15973 components: - type: Transform pos: -8.5,-106.5 parent: 2 - - uid: 1931 + - uid: 15974 components: - type: Transform pos: 6.5,-112.5 parent: 2 - - uid: 1955 + - uid: 15975 components: - type: Transform pos: -9.5,-117.5 parent: 2 - - uid: 2099 + - uid: 15976 components: - type: Transform pos: -5.5,-128.5 parent: 2 - - uid: 2111 + - uid: 15977 components: - type: Transform pos: 2.5,-126.5 parent: 2 - - uid: 2112 + - uid: 15978 components: - type: Transform pos: 2.5,-127.5 parent: 2 - - uid: 2115 + - uid: 15979 components: - type: Transform pos: 3.5,-127.5 parent: 2 - - uid: 2116 + - uid: 15980 components: - type: Transform pos: 4.5,-127.5 parent: 2 - - uid: 2120 + - uid: 15981 components: - type: Transform pos: 4.5,-128.5 parent: 2 - - uid: 2173 + - uid: 15982 components: - type: Transform pos: 0.5,-115.5 parent: 2 - - uid: 2174 + - uid: 15983 components: - type: Transform pos: 1.5,-115.5 parent: 2 - - uid: 2175 + - uid: 15984 components: - type: Transform pos: 2.5,-115.5 parent: 2 - - uid: 2176 + - uid: 15985 components: - type: Transform pos: 2.5,-117.5 parent: 2 - - uid: 2186 + - uid: 15986 components: - type: Transform pos: 4.5,-113.5 parent: 2 - - uid: 2187 + - uid: 15987 components: - type: Transform pos: 4.5,-112.5 parent: 2 - - uid: 2192 + - uid: 15988 components: - type: Transform pos: 4.5,-115.5 parent: 2 - - uid: 2193 + - uid: 15989 components: - type: Transform pos: 1.5,-114.5 parent: 2 - - uid: 2285 + - uid: 15990 components: - type: Transform pos: 5.5,-112.5 parent: 2 - - uid: 2456 + - uid: 15991 components: - type: Transform pos: 1.5,-134.5 parent: 2 - - uid: 2457 + - uid: 15992 components: - type: Transform pos: 2.5,-134.5 parent: 2 - - uid: 2458 + - uid: 15993 components: - type: Transform pos: 2.5,-133.5 parent: 2 - - uid: 2482 + - uid: 15994 components: - type: Transform pos: 3.5,-133.5 parent: 2 - - uid: 2496 + - uid: 15995 components: - type: Transform pos: -6.5,-143.5 parent: 2 - - uid: 2497 + - uid: 15996 components: - type: Transform pos: -6.5,-137.5 parent: 2 - - uid: 2498 + - uid: 15997 components: - type: Transform pos: -7.5,-137.5 parent: 2 - - uid: 2499 + - uid: 15998 components: - type: Transform pos: -7.5,-138.5 parent: 2 - - uid: 2500 + - uid: 15999 components: - type: Transform pos: -7.5,-142.5 parent: 2 - - uid: 2501 + - uid: 16000 components: - type: Transform pos: -7.5,-143.5 parent: 2 - - uid: 2510 + - uid: 16001 components: - type: Transform pos: -7.5,-151.5 parent: 2 - - uid: 2511 + - uid: 16002 components: - type: Transform pos: -6.5,-151.5 parent: 2 - - uid: 2525 + - uid: 16003 components: - type: Transform pos: -0.5,-155.5 parent: 2 - - uid: 2530 + - uid: 16004 components: - type: Transform pos: 1.5,-155.5 parent: 2 - - uid: 2534 + - uid: 16005 components: - type: Transform pos: 4.5,-154.5 parent: 2 - - uid: 2535 + - uid: 16006 components: - type: Transform pos: 4.5,-155.5 parent: 2 - - uid: 2546 + - uid: 16007 components: - type: Transform pos: 3.5,-154.5 parent: 2 - - uid: 2564 + - uid: 16008 components: - type: Transform pos: 9.5,-151.5 parent: 2 - - uid: 2578 + - uid: 16009 components: - type: Transform pos: 9.5,-137.5 parent: 2 - - uid: 2579 + - uid: 16010 components: - type: Transform pos: 9.5,-136.5 parent: 2 - - uid: 3084 + - uid: 16011 components: - type: Transform pos: -1.5,-161.5 parent: 2 - - uid: 3085 + - uid: 16012 components: - type: Transform pos: -0.5,-180.5 parent: 2 - - uid: 3086 + - uid: 16013 components: - type: Transform pos: -1.5,-180.5 parent: 2 - - uid: 3088 + - uid: 16014 components: - type: Transform pos: -8.5,-171.5 parent: 2 - - uid: 3106 + - uid: 16015 components: - type: Transform pos: -8.5,-172.5 parent: 2 - - uid: 3108 + - uid: 16016 components: - type: Transform pos: -8.5,-179.5 parent: 2 - - uid: 3111 + - uid: 16017 components: - type: Transform pos: 8.5,-164.5 parent: 2 - - uid: 3131 + - uid: 16018 components: - type: Transform pos: 8.5,-170.5 parent: 2 - - uid: 3138 + - uid: 16019 components: - type: Transform pos: -5.5,-181.5 parent: 2 - - uid: 3139 + - uid: 16020 components: - type: Transform pos: -5.5,-182.5 parent: 2 - - uid: 3140 + - uid: 16021 components: - type: Transform pos: -3.5,-181.5 parent: 2 - - uid: 3142 + - uid: 16022 components: - type: Transform pos: 9.5,-178.5 parent: 2 - - uid: 3153 + - uid: 16023 components: - type: Transform pos: 6.5,-181.5 parent: 2 - - uid: 3154 + - uid: 16024 components: - type: Transform pos: 4.5,-182.5 parent: 2 - - uid: 3157 + - uid: 16025 components: - type: Transform pos: 8.5,-179.5 parent: 2 - - uid: 3664 + - uid: 16026 components: - type: Transform pos: 6.5,-187.5 parent: 2 - - uid: 3665 + - uid: 16027 components: - type: Transform pos: 6.5,-188.5 parent: 2 - - uid: 3666 + - uid: 16028 components: - type: Transform pos: 7.5,-188.5 parent: 2 - - uid: 3668 + - uid: 16029 components: - type: Transform pos: 7.5,-189.5 parent: 2 - - uid: 3791 + - uid: 16030 components: - type: Transform pos: -6.5,-192.5 parent: 2 - - uid: 3793 + - uid: 16031 components: - type: Transform pos: -7.5,-193.5 parent: 2 - - uid: 3808 + - uid: 16032 components: - type: Transform pos: -6.5,-207.5 parent: 2 - - uid: 3809 + - uid: 16033 components: - type: Transform pos: -5.5,-207.5 parent: 2 - - uid: 3810 + - uid: 16034 components: - type: Transform pos: -5.5,-208.5 parent: 2 - - uid: 3825 + - uid: 16035 components: - type: Transform pos: 4.5,-208.5 parent: 2 - - uid: 3827 + - uid: 16036 components: - type: Transform pos: 6.5,-208.5 parent: 2 - - uid: 3829 + - uid: 16037 components: - type: Transform pos: 6.5,-207.5 parent: 2 - - uid: 3830 + - uid: 16038 components: - type: Transform pos: 7.5,-207.5 parent: 2 - - uid: 3831 + - uid: 16039 components: - type: Transform pos: 7.5,-206.5 parent: 2 - - uid: 4726 + - uid: 16040 components: - type: Transform pos: 6.5,-186.5 parent: 2 - - uid: 6306 + - uid: 16041 components: - type: Transform pos: 4.5,-114.5 parent: 2 - - uid: 6917 + - uid: 16042 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-186.5 parent: 2 - - uid: 7755 + - uid: 16043 components: - type: Transform pos: 5.5,-207.5 parent: 2 - - uid: 7764 + - uid: 16044 components: - type: Transform pos: 4.5,-207.5 parent: 2 - - uid: 7843 + - uid: 16045 components: - type: Transform pos: -4.5,-192.5 parent: 2 - - uid: 8387 + - uid: 16046 components: - type: Transform pos: -2.5,-192.5 parent: 2 - - uid: 8809 + - uid: 16047 components: - type: Transform pos: -5.5,-192.5 parent: 2 - - uid: 12684 + - uid: 16048 components: - type: Transform pos: -7.5,-127.5 parent: 2 - - uid: 14689 + - uid: 16049 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-51.5 parent: 2 - - uid: 16739 + - uid: 16050 components: - type: Transform rot: 1.5707963267948966 rad @@ -102632,2028 +102056,2037 @@ entities: parent: 2 - proto: WallSolid entities: - - uid: 439 + - uid: 8504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-171.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-171.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-171.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-171.5 + parent: 2 + - uid: 16051 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 447 + - uid: 16052 components: - type: Transform pos: 3.5,-67.5 parent: 2 - - uid: 458 + - uid: 16053 components: - type: Transform pos: -5.5,-33.5 parent: 2 - - uid: 461 + - uid: 16054 components: - type: Transform pos: -2.5,-33.5 parent: 2 - - uid: 462 + - uid: 16055 components: - type: Transform pos: -1.5,-33.5 parent: 2 - - uid: 464 + - uid: 16056 components: - type: Transform pos: -1.5,-36.5 parent: 2 - - uid: 465 + - uid: 16057 components: - type: Transform pos: -2.5,-36.5 parent: 2 - - uid: 466 + - uid: 16058 components: - type: Transform pos: -2.5,-37.5 parent: 2 - - uid: 467 + - uid: 16059 components: - type: Transform pos: -2.5,-38.5 parent: 2 - - uid: 468 + - uid: 16060 components: - type: Transform pos: -2.5,-39.5 parent: 2 - - uid: 469 + - uid: 16061 components: - type: Transform pos: -2.5,-40.5 parent: 2 - - uid: 472 + - uid: 16062 components: - type: Transform pos: -3.5,-40.5 parent: 2 - - uid: 473 + - uid: 16063 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 475 + - uid: 16064 components: - type: Transform pos: 1.5,-33.5 parent: 2 - - uid: 476 + - uid: 16065 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 480 + - uid: 16066 components: - type: Transform pos: 4.5,-31.5 parent: 2 - - uid: 481 + - uid: 16067 components: - type: Transform pos: 4.5,-30.5 parent: 2 - - uid: 482 + - uid: 16068 components: - type: Transform pos: 4.5,-29.5 parent: 2 - - uid: 483 + - uid: 16069 components: - type: Transform pos: 4.5,-28.5 parent: 2 - - uid: 484 + - uid: 16070 components: - type: Transform pos: 4.5,-27.5 parent: 2 - - uid: 487 + - uid: 16071 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 488 + - uid: 16072 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 489 + - uid: 16073 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 491 + - uid: 16074 components: - type: Transform pos: 4.5,-35.5 parent: 2 - - uid: 492 + - uid: 16075 components: - type: Transform pos: 5.5,-35.5 parent: 2 - - uid: 493 + - uid: 16076 components: - type: Transform pos: 6.5,-35.5 parent: 2 - - uid: 880 + - uid: 16077 components: - type: Transform pos: 3.5,-56.5 parent: 2 - - uid: 881 + - uid: 16078 components: - type: Transform pos: 4.5,-32.5 parent: 2 - - uid: 908 + - uid: 16079 components: - type: Transform pos: 5.5,-60.5 parent: 2 - - uid: 945 + - uid: 16080 components: - type: Transform pos: 3.5,-59.5 parent: 2 - - uid: 959 + - uid: 16081 components: - type: Transform pos: 3.5,-33.5 parent: 2 - - uid: 965 + - uid: 16082 components: - type: Transform pos: 0.5,-65.5 parent: 2 - - uid: 966 + - uid: 16083 components: - type: Transform pos: 3.5,-70.5 parent: 2 - - uid: 967 + - uid: 16084 components: - type: Transform pos: 2.5,-70.5 parent: 2 - - uid: 968 + - uid: 16085 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 969 + - uid: 16086 components: - type: Transform pos: 5.5,-62.5 parent: 2 - - uid: 971 + - uid: 16087 components: - type: Transform pos: 5.5,-64.5 parent: 2 - - uid: 972 + - uid: 16088 components: - type: Transform pos: 3.5,-58.5 parent: 2 - - uid: 976 + - uid: 16089 components: - type: Transform pos: -5.5,-69.5 parent: 2 - - uid: 984 + - uid: 16090 components: - type: Transform pos: -1.5,-55.5 parent: 2 - - uid: 987 + - uid: 16091 components: - type: Transform pos: -2.5,-56.5 parent: 2 - - uid: 1010 + - uid: 16092 components: - type: Transform pos: 5.5,-61.5 parent: 2 - - uid: 1018 + - uid: 16093 components: - type: Transform pos: 1.5,-60.5 parent: 2 - - uid: 1019 + - uid: 16094 components: - type: Transform pos: 2.5,-61.5 parent: 2 - - uid: 1020 + - uid: 16095 components: - type: Transform pos: 2.5,-60.5 parent: 2 - - uid: 1032 + - uid: 16096 components: - type: Transform pos: -1.5,-71.5 parent: 2 - - uid: 1071 + - uid: 16097 components: - type: Transform pos: 2.5,-64.5 parent: 2 - - uid: 1076 + - uid: 16098 components: - type: Transform pos: 3.5,-60.5 parent: 2 - - uid: 1077 + - uid: 16099 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 1080 + - uid: 16100 components: - type: Transform pos: 5.5,-65.5 parent: 2 - - uid: 1084 + - uid: 16101 components: - type: Transform pos: 4.5,-60.5 parent: 2 - - uid: 1087 + - uid: 16102 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-56.5 parent: 2 - - uid: 1218 + - uid: 16103 components: - type: Transform pos: 0.5,-60.5 parent: 2 - - uid: 1223 + - uid: 16104 components: - type: Transform pos: 2.5,-65.5 parent: 2 - - uid: 1243 + - uid: 16105 components: - type: Transform pos: -1.5,-93.5 parent: 2 - - uid: 1274 + - uid: 16106 components: - type: Transform pos: -6.5,-69.5 parent: 2 - - uid: 1417 + - uid: 16107 components: - type: Transform pos: -1.5,-70.5 parent: 2 - - uid: 1425 + - uid: 16108 components: - type: Transform pos: -1.5,-95.5 parent: 2 - - uid: 1428 + - uid: 16109 components: - type: Transform pos: 4.5,-70.5 parent: 2 - - uid: 1434 + - uid: 16110 components: - type: Transform pos: -3.5,-69.5 parent: 2 - - uid: 1495 + - uid: 16111 components: - type: Transform pos: -1.5,-279.5 parent: 2 - - uid: 1496 + - uid: 16112 components: - type: Transform pos: -1.5,-278.5 parent: 2 - - uid: 1549 + - uid: 16113 components: - type: Transform pos: -1.5,-96.5 parent: 2 - - uid: 1639 + - uid: 16114 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 1640 + - uid: 16115 components: - type: Transform pos: -1.5,-83.5 parent: 2 - - uid: 1642 + - uid: 16116 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 1643 + - uid: 16117 components: - type: Transform pos: -5.5,-83.5 parent: 2 - - uid: 1644 + - uid: 16118 components: - type: Transform pos: -4.5,-83.5 parent: 2 - - uid: 1645 + - uid: 16119 components: - type: Transform pos: -4.5,-84.5 parent: 2 - - uid: 1648 + - uid: 16120 components: - type: Transform pos: -2.5,-85.5 parent: 2 - - uid: 1651 + - uid: 16121 components: - type: Transform pos: -2.5,-88.5 parent: 2 - - uid: 1652 + - uid: 16122 components: - type: Transform pos: -4.5,-88.5 parent: 2 - - uid: 1653 + - uid: 16123 components: - type: Transform pos: -4.5,-89.5 parent: 2 - - uid: 1654 + - uid: 16124 components: - type: Transform pos: -5.5,-89.5 parent: 2 - - uid: 1655 + - uid: 16125 components: - type: Transform pos: -2.5,-89.5 parent: 2 - - uid: 1656 + - uid: 16126 components: - type: Transform pos: -1.5,-89.5 parent: 2 - - uid: 1657 + - uid: 16127 components: - type: Transform pos: -5.5,-90.5 parent: 2 - - uid: 1658 + - uid: 16128 components: - type: Transform pos: -1.5,-90.5 parent: 2 - - uid: 1661 + - uid: 16129 components: - type: Transform pos: -0.5,-90.5 parent: 2 - - uid: 1663 + - uid: 16130 components: - type: Transform pos: -0.5,-92.5 parent: 2 - - uid: 1664 + - uid: 16131 components: - type: Transform pos: -0.5,-93.5 parent: 2 - - uid: 1667 + - uid: 16132 components: - type: Transform pos: -1.5,-94.5 parent: 2 - - uid: 1668 + - uid: 16133 components: - type: Transform pos: -2.5,-94.5 parent: 2 - - uid: 1681 + - uid: 16134 components: - type: Transform pos: 2.5,-93.5 parent: 2 - - uid: 1682 + - uid: 16135 components: - type: Transform pos: 3.5,-92.5 parent: 2 - - uid: 1684 + - uid: 16136 components: - type: Transform pos: 3.5,-84.5 parent: 2 - - uid: 1685 + - uid: 16137 components: - type: Transform pos: 2.5,-83.5 parent: 2 - - uid: 1729 + - uid: 16138 components: - type: Transform pos: -1.5,-56.5 parent: 2 - - uid: 1751 + - uid: 16139 components: - type: Transform pos: 2.5,-92.5 parent: 2 - - uid: 1765 + - uid: 16140 components: - type: Transform pos: 2.5,-84.5 parent: 2 - - uid: 1829 + - uid: 16141 components: - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-108.5 parent: 2 - - uid: 1832 + - uid: 16142 components: - type: Transform pos: -4.5,-108.5 parent: 2 - - uid: 1848 + - uid: 16143 components: - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-109.5 parent: 2 - - uid: 1863 + - uid: 16144 components: - type: Transform - pos: -5.5,-112.5 + rot: 1.5707963267948966 rad + pos: -5.5,-111.5 parent: 2 - - uid: 1864 + - uid: 16145 components: - type: Transform - pos: -5.5,-111.5 + rot: 1.5707963267948966 rad + pos: -5.5,-112.5 parent: 2 - - uid: 1865 + - uid: 16146 components: - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-111.5 parent: 2 - - uid: 1866 + - uid: 16147 components: - type: Transform pos: -7.5,-111.5 parent: 2 - - uid: 1867 + - uid: 16148 components: - type: Transform pos: -8.5,-111.5 parent: 2 - - uid: 1868 + - uid: 16149 components: - type: Transform pos: -5.5,-115.5 parent: 2 - - uid: 1869 + - uid: 16150 components: - type: Transform pos: -5.5,-114.5 parent: 2 - - uid: 1870 + - uid: 16151 components: - type: Transform pos: -6.5,-114.5 parent: 2 - - uid: 1871 + - uid: 16152 components: - type: Transform pos: -7.5,-114.5 parent: 2 - - uid: 1872 + - uid: 16153 components: - type: Transform pos: -8.5,-114.5 parent: 2 - - uid: 1875 + - uid: 16154 components: - type: Transform pos: -6.5,-117.5 parent: 2 - - uid: 1876 + - uid: 16155 components: - type: Transform pos: -5.5,-117.5 parent: 2 - - uid: 1877 + - uid: 16156 components: - type: Transform pos: -8.5,-120.5 parent: 2 - - uid: 1878 + - uid: 16157 components: - type: Transform pos: -7.5,-120.5 parent: 2 - - uid: 1881 + - uid: 16158 components: - type: Transform pos: -8.5,-123.5 parent: 2 - - uid: 1882 + - uid: 16159 components: - type: Transform pos: -7.5,-123.5 parent: 2 - - uid: 1883 + - uid: 16160 components: - type: Transform pos: -6.5,-123.5 parent: 2 - - uid: 1884 + - uid: 16161 components: - type: Transform pos: -5.5,-123.5 parent: 2 - - uid: 1885 + - uid: 16162 components: - type: Transform pos: -5.5,-124.5 parent: 2 - - uid: 1887 + - uid: 16163 components: - type: Transform pos: -5.5,-118.5 parent: 2 - - uid: 2200 + - uid: 16164 components: - type: Transform pos: 2.5,-111.5 parent: 2 - - uid: 2201 + - uid: 16165 components: - type: Transform pos: 2.5,-110.5 parent: 2 - - uid: 2203 + - uid: 16166 components: - type: Transform pos: 2.5,-108.5 parent: 2 - - uid: 2353 + - uid: 16167 components: - type: Transform pos: 3.5,-150.5 parent: 2 - - uid: 2504 + - uid: 16168 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 2528 + - uid: 16169 components: - type: Transform pos: 2.5,-151.5 parent: 2 - - uid: 2531 + - uid: 16170 components: - type: Transform pos: 2.5,-147.5 parent: 2 - - uid: 2536 + - uid: 16171 components: - type: Transform pos: 1.5,-146.5 parent: 2 - - uid: 2540 + - uid: 16172 components: - type: Transform pos: 1.5,-142.5 parent: 2 - - uid: 2541 + - uid: 16173 components: - type: Transform pos: 1.5,-141.5 parent: 2 - - uid: 2542 + - uid: 16174 components: - type: Transform pos: 1.5,-140.5 parent: 2 - - uid: 2543 + - uid: 16175 components: - type: Transform pos: 2.5,-140.5 parent: 2 - - uid: 2544 + - uid: 16176 components: - type: Transform pos: 3.5,-140.5 parent: 2 - - uid: 2547 + - uid: 16177 components: - type: Transform pos: 5.5,-140.5 parent: 2 - - uid: 2548 + - uid: 16178 components: - type: Transform pos: 6.5,-140.5 parent: 2 - - uid: 2549 + - uid: 16179 components: - type: Transform pos: 7.5,-140.5 parent: 2 - - uid: 2552 + - uid: 16180 components: - type: Transform pos: 7.5,-141.5 parent: 2 - - uid: 2553 + - uid: 16181 components: - type: Transform pos: 7.5,-142.5 parent: 2 - - uid: 2554 + - uid: 16182 components: - type: Transform pos: 7.5,-143.5 parent: 2 - - uid: 2555 + - uid: 16183 components: - type: Transform pos: 7.5,-144.5 parent: 2 - - uid: 2591 + - uid: 16184 components: - type: Transform pos: -1.5,-152.5 parent: 2 - - uid: 2593 + - uid: 16185 components: - type: Transform pos: -1.5,-150.5 parent: 2 - - uid: 2606 + - uid: 16186 components: - type: Transform pos: -3.5,-137.5 parent: 2 - - uid: 2607 + - uid: 16187 components: - type: Transform pos: -2.5,-137.5 parent: 2 - - uid: 2608 + - uid: 16188 components: - type: Transform pos: -1.5,-137.5 parent: 2 - - uid: 2609 + - uid: 16189 components: - type: Transform pos: -1.5,-135.5 parent: 2 - - uid: 2610 + - uid: 16190 components: - type: Transform pos: -1.5,-136.5 parent: 2 - - uid: 2611 + - uid: 16191 components: - type: Transform pos: -1.5,-138.5 parent: 2 - - uid: 2612 + - uid: 16192 components: - type: Transform pos: -1.5,-142.5 parent: 2 - - uid: 2613 + - uid: 16193 components: - type: Transform pos: -1.5,-143.5 parent: 2 - - uid: 2616 + - uid: 16194 components: - type: Transform pos: -1.5,-144.5 parent: 2 - - uid: 2617 + - uid: 16195 components: - type: Transform pos: -1.5,-145.5 parent: 2 - - uid: 2618 + - uid: 16196 components: - type: Transform pos: -1.5,-146.5 parent: 2 - - uid: 2619 + - uid: 16197 components: - type: Transform pos: -1.5,-147.5 parent: 2 - - uid: 2620 + - uid: 16198 components: - type: Transform pos: -1.5,-148.5 parent: 2 - - uid: 2621 + - uid: 16199 components: - type: Transform pos: -1.5,-149.5 parent: 2 - - uid: 2622 + - uid: 16200 components: - type: Transform pos: -2.5,-149.5 parent: 2 - - uid: 2677 + - uid: 16201 components: - type: Transform pos: 1.5,-138.5 parent: 2 - - uid: 2679 + - uid: 16202 components: - type: Transform pos: 1.5,-139.5 parent: 2 - - uid: 2681 + - uid: 16203 components: - type: Transform pos: 4.5,-136.5 parent: 2 - - uid: 2682 + - uid: 16204 components: - type: Transform pos: 3.5,-136.5 parent: 2 - - uid: 2685 + - uid: 16205 components: - type: Transform pos: 7.5,-139.5 parent: 2 - - uid: 2700 + - uid: 16206 components: - type: Transform pos: 5.5,-136.5 parent: 2 - - uid: 2734 + - uid: 16207 components: - type: Transform pos: 4.5,-150.5 parent: 2 - - uid: 2735 + - uid: 16208 components: - type: Transform pos: 5.5,-150.5 parent: 2 - - uid: 2736 + - uid: 16209 components: - type: Transform pos: 6.5,-150.5 parent: 2 - - uid: 2737 + - uid: 16210 components: - type: Transform pos: 7.5,-150.5 parent: 2 - - uid: 2927 + - uid: 16211 components: - type: Transform pos: 2.5,-164.5 parent: 2 - - uid: 2948 + - uid: 16212 components: - type: Transform pos: 2.5,-169.5 parent: 2 - - uid: 3032 + - uid: 16213 components: - type: Transform pos: -0.5,-173.5 parent: 2 - - uid: 3035 + - uid: 16214 components: - type: Transform pos: -0.5,-176.5 parent: 2 - - uid: 3043 + - uid: 16215 components: - type: Transform pos: -5.5,-177.5 parent: 2 - - uid: 3046 + - uid: 16216 components: - type: Transform pos: -5.5,-175.5 parent: 2 - - uid: 3050 + - uid: 16217 components: - type: Transform pos: -5.5,-171.5 parent: 2 - - uid: 3056 + - uid: 16218 components: - type: Transform pos: 3.5,-170.5 parent: 2 - - uid: 3057 + - uid: 16219 components: - type: Transform pos: 2.5,-170.5 parent: 2 - - uid: 3059 + - uid: 16220 components: - type: Transform pos: 2.5,-165.5 parent: 2 - - uid: 3061 + - uid: 16221 components: - type: Transform pos: 3.5,-164.5 parent: 2 - - uid: 3062 + - uid: 16222 components: - type: Transform pos: 4.5,-164.5 parent: 2 - - uid: 3063 + - uid: 16223 components: - type: Transform pos: 5.5,-164.5 parent: 2 - - uid: 3066 + - uid: 16224 components: - type: Transform pos: 7.5,-170.5 parent: 2 - - uid: 3073 + - uid: 16225 components: - type: Transform pos: 2.5,-171.5 parent: 2 - - uid: 3170 + - uid: 16226 components: - type: Transform pos: -0.5,-177.5 parent: 2 - - uid: 3185 + - uid: 16227 components: - type: Transform pos: -1.5,-178.5 parent: 2 - - uid: 3221 + - uid: 16228 components: - type: Transform pos: -5.5,-178.5 parent: 2 - - uid: 3224 + - uid: 16229 components: - type: Transform pos: -2.5,-178.5 parent: 2 - - uid: 3507 + - uid: 16230 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-36.5 parent: 2 - - uid: 3676 + - uid: 16231 components: - type: Transform pos: 2.5,-172.5 parent: 2 - - uid: 3681 + - uid: 16232 components: - type: Transform pos: 2.5,-176.5 parent: 2 - - uid: 3723 + - uid: 16233 components: - type: Transform pos: 1.5,-191.5 parent: 2 - - uid: 3724 + - uid: 16234 components: - type: Transform pos: 2.5,-191.5 parent: 2 - - uid: 3725 + - uid: 16235 components: - type: Transform pos: 3.5,-191.5 parent: 2 - - uid: 3726 + - uid: 16236 components: - type: Transform pos: 4.5,-191.5 parent: 2 - - uid: 3730 + - uid: 16237 components: - type: Transform pos: 4.5,-195.5 parent: 2 - - uid: 3731 + - uid: 16238 components: - type: Transform pos: 3.5,-195.5 parent: 2 - - uid: 3732 + - uid: 16239 components: - type: Transform pos: 1.5,-195.5 parent: 2 - - uid: 3733 + - uid: 16240 components: - type: Transform pos: 0.5,-195.5 parent: 2 - - uid: 3737 + - uid: 16241 components: - type: Transform pos: -1.5,-193.5 parent: 2 - - uid: 3738 + - uid: 16242 components: - type: Transform pos: -1.5,-192.5 parent: 2 - - uid: 3740 + - uid: 16243 components: - type: Transform pos: -0.5,-191.5 parent: 2 - - uid: 3750 + - uid: 16244 components: - type: Transform pos: 4.5,-196.5 parent: 2 - - uid: 3751 + - uid: 16245 components: - type: Transform pos: 4.5,-199.5 parent: 2 - - uid: 3772 + - uid: 16246 components: - type: Transform pos: -1.5,-199.5 parent: 2 - - uid: 3773 + - uid: 16247 components: - type: Transform pos: -1.5,-200.5 parent: 2 - - uid: 4574 + - uid: 16248 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-246.5 parent: 2 - - uid: 5212 + - uid: 16249 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-259.5 parent: 2 - - uid: 5215 + - uid: 16250 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-259.5 parent: 2 - - uid: 5337 + - uid: 16251 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-258.5 parent: 2 - - uid: 6195 + - uid: 16252 components: - type: Transform pos: -0.5,-168.5 parent: 2 - - uid: 6819 + - uid: 16253 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-248.5 parent: 2 - - uid: 6896 + - uid: 16254 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-258.5 parent: 2 - - uid: 7420 + - uid: 16255 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-258.5 parent: 2 - - uid: 7724 + - uid: 16256 components: - type: Transform pos: -0.5,-164.5 parent: 2 - - uid: 7729 + - uid: 16257 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-257.5 parent: 2 - - uid: 7731 + - uid: 16258 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-258.5 parent: 2 - - uid: 7732 + - uid: 16259 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-245.5 parent: 2 - - uid: 7733 + - uid: 16260 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-248.5 parent: 2 - - uid: 7734 + - uid: 16261 components: - type: Transform pos: 1.5,-137.5 parent: 2 - - uid: 7782 + - uid: 16262 components: - type: Transform pos: 6.5,-179.5 parent: 2 - - uid: 7792 + - uid: 16263 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-245.5 parent: 2 - - uid: 7795 + - uid: 16264 components: - type: Transform pos: -1.5,-280.5 parent: 2 - - uid: 7802 + - uid: 16265 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-254.5 parent: 2 - - uid: 7812 + - uid: 16266 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-244.5 parent: 2 - - uid: 7827 + - uid: 16267 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-246.5 parent: 2 - - uid: 7873 + - uid: 16268 components: - type: Transform pos: 6.5,-177.5 parent: 2 - - uid: 7874 + - uid: 16269 components: - type: Transform pos: 6.5,-178.5 parent: 2 - - uid: 7878 + - uid: 16270 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-245.5 parent: 2 - - uid: 7883 + - uid: 16271 components: - type: Transform pos: 2.5,-177.5 parent: 2 - - uid: 7884 + - uid: 16272 components: - type: Transform pos: 3.5,-177.5 parent: 2 - - uid: 8025 + - uid: 16273 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-246.5 parent: 2 - - uid: 8026 + - uid: 16274 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-246.5 parent: 2 - - uid: 8028 + - uid: 16275 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-247.5 parent: 2 - - uid: 8033 + - uid: 16276 components: - type: Transform pos: 1.5,-252.5 parent: 2 - - uid: 8053 + - uid: 16277 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-251.5 parent: 2 - - uid: 8058 + - uid: 16278 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-250.5 parent: 2 - - uid: 8059 + - uid: 16279 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-249.5 parent: 2 - - uid: 8103 + - uid: 16280 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-249.5 parent: 2 - - uid: 8214 + - uid: 16281 components: - type: Transform pos: 6.5,-246.5 parent: 2 - - uid: 8391 + - uid: 16282 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-247.5 parent: 2 - - uid: 8478 + - uid: 16283 components: - type: Transform pos: -5.5,-168.5 parent: 2 - - uid: 8582 + - uid: 16284 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-270.5 parent: 2 - - uid: 8583 + - uid: 16285 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-272.5 parent: 2 - - uid: 8584 + - uid: 16286 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-272.5 parent: 2 - - uid: 8586 + - uid: 16287 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-275.5 parent: 2 - - uid: 8587 + - uid: 16288 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-276.5 parent: 2 - - uid: 8622 + - uid: 16289 components: - type: Transform pos: -4.5,-282.5 parent: 2 - - uid: 8623 + - uid: 16290 components: - type: Transform pos: -4.5,-283.5 parent: 2 - - uid: 8626 + - uid: 16291 components: - type: Transform pos: -1.5,-277.5 parent: 2 - - uid: 8648 + - uid: 16292 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-275.5 parent: 2 - - uid: 8649 + - uid: 16293 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-275.5 parent: 2 - - uid: 8650 + - uid: 16294 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-283.5 parent: 2 - - uid: 8653 + - uid: 16295 components: - type: Transform pos: -1.5,-286.5 parent: 2 - - uid: 8654 + - uid: 16296 components: - type: Transform pos: -1.5,-287.5 parent: 2 - - uid: 8656 + - uid: 16297 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-270.5 parent: 2 - - uid: 8666 + - uid: 16298 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-284.5 parent: 2 - - uid: 8671 + - uid: 16299 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-281.5 parent: 2 - - uid: 8682 + - uid: 16300 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-283.5 parent: 2 - - uid: 8692 + - uid: 16301 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-286.5 parent: 2 - - uid: 8699 + - uid: 16302 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-287.5 parent: 2 - - uid: 8765 + - uid: 16303 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-275.5 parent: 2 - - uid: 8766 + - uid: 16304 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-275.5 parent: 2 - - uid: 8931 + - uid: 16305 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-258.5 parent: 2 - - uid: 9852 + - uid: 16306 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-258.5 parent: 2 - - uid: 9865 + - uid: 16307 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-249.5 parent: 2 - - uid: 10064 + - uid: 16308 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-253.5 parent: 2 - - uid: 10075 + - uid: 16309 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-249.5 parent: 2 - - uid: 10329 + - uid: 16310 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-258.5 parent: 2 - - uid: 10675 + - uid: 16311 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 - - uid: 11903 + - uid: 16312 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-387.5 parent: 2 - - uid: 11904 + - uid: 16313 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-387.5 parent: 2 - - uid: 11905 + - uid: 16314 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-388.5 parent: 2 - - uid: 11908 + - uid: 16315 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-387.5 parent: 2 - - uid: 11911 + - uid: 16316 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-383.5 parent: 2 - - uid: 11941 + - uid: 16317 components: - type: Transform pos: -2.5,-385.5 parent: 2 - - uid: 11942 + - uid: 16318 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-384.5 parent: 2 - - uid: 11947 + - uid: 16319 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-387.5 parent: 2 - - uid: 11948 + - uid: 16320 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-382.5 parent: 2 - - uid: 11949 + - uid: 16321 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-383.5 parent: 2 - - uid: 11950 + - uid: 16322 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-387.5 parent: 2 - - uid: 11952 + - uid: 16323 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-387.5 parent: 2 - - uid: 11994 + - uid: 16324 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-385.5 parent: 2 - - uid: 11995 - components: - - type: Transform - pos: -2.5,-171.5 - parent: 2 - - uid: 11996 - components: - - type: Transform - pos: -3.5,-171.5 - parent: 2 - - uid: 12000 - components: - - type: Transform - pos: -1.5,-171.5 - parent: 2 - - uid: 12001 + - uid: 16328 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-385.5 parent: 2 - - uid: 12002 + - uid: 16329 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-386.5 parent: 2 - - uid: 12003 + - uid: 16330 components: - type: Transform pos: -0.5,-171.5 parent: 2 - - uid: 12005 + - uid: 16331 components: - type: Transform pos: -5.5,-169.5 parent: 2 - - uid: 12006 + - uid: 16332 components: - type: Transform pos: -0.5,-170.5 parent: 2 - - uid: 12009 + - uid: 16333 components: - type: Transform pos: -4.5,-167.5 parent: 2 - - uid: 12010 + - uid: 16334 components: - type: Transform pos: -1.5,-167.5 parent: 2 - - uid: 12011 - components: - - type: Transform - pos: -4.5,-171.5 - parent: 2 - - uid: 12084 + - uid: 16335 components: - type: Transform pos: -0.5,-167.5 parent: 2 - - uid: 12085 + - uid: 16336 components: - type: Transform pos: -2.5,-167.5 parent: 2 - - uid: 12086 + - uid: 16337 components: - type: Transform pos: -3.5,-167.5 parent: 2 - - uid: 12096 + - uid: 16338 components: - type: Transform pos: -2.5,-164.5 parent: 2 - - uid: 12097 + - uid: 16339 components: - type: Transform pos: -1.5,-164.5 parent: 2 - - uid: 12110 + - uid: 16340 components: - type: Transform pos: -0.5,-166.5 parent: 2 - - uid: 12116 + - uid: 16341 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-374.5 parent: 2 - - uid: 12130 + - uid: 16342 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-374.5 parent: 2 - - uid: 12131 + - uid: 16343 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-374.5 parent: 2 - - uid: 12176 + - uid: 16344 components: - type: Transform pos: -5.5,-167.5 parent: 2 - - uid: 12204 + - uid: 16345 components: - type: Transform pos: -5.5,-166.5 parent: 2 - - uid: 12209 + - uid: 16346 components: - type: Transform pos: -5.5,-164.5 parent: 2 - - uid: 12215 + - uid: 16347 components: - type: Transform pos: -5.5,-165.5 parent: 2 - - uid: 13450 + - uid: 16348 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 13469 + - uid: 16349 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-258.5 parent: 2 - - uid: 13471 + - uid: 16350 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-254.5 parent: 2 - - uid: 13990 + - uid: 16351 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-255.5 parent: 2 - - uid: 13996 + - uid: 16352 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-257.5 parent: 2 - - uid: 14001 + - uid: 16353 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-254.5 parent: 2 - - uid: 14021 + - uid: 16354 components: - type: Transform pos: -4.5,-164.5 parent: 2 - - uid: 14647 + - uid: 16355 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-246.5 parent: 2 - - uid: 14803 + - uid: 16356 components: - type: Transform pos: -2.5,-70.5 parent: 2 - proto: WallSolidDiagonal entities: - - uid: 1683 + - uid: 16357 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-93.5 parent: 2 - - uid: 1688 + - uid: 16358 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-83.5 parent: 2 - - uid: 2246 + - uid: 16359 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-108.5 parent: 2 - - uid: 2563 + - uid: 16360 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-147.5 parent: 2 - - uid: 2824 + - uid: 16361 components: - type: Transform pos: 2.5,-150.5 parent: 2 - - uid: 3225 + - uid: 16362 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-178.5 parent: 2 - - uid: 8850 + - uid: 16363 components: - type: Transform pos: -1.5,-191.5 parent: 2 - proto: WallSolidRust entities: - - uid: 459 + - uid: 16364 components: - type: Transform pos: -4.5,-33.5 parent: 2 - - uid: 460 + - uid: 16365 components: - type: Transform pos: -3.5,-33.5 parent: 2 - - uid: 759 + - uid: 16366 components: - type: Transform pos: -1.5,-35.5 parent: 2 - - uid: 963 + - uid: 16367 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 1024 + - uid: 16368 components: - type: Transform pos: 3.5,-66.5 parent: 2 - - uid: 1082 + - uid: 16369 components: - type: Transform pos: -5.5,-93.5 parent: 2 - - uid: 1105 + - uid: 16370 components: - type: Transform pos: 3.5,-65.5 parent: 2 - - uid: 1128 + - uid: 16371 components: - type: Transform pos: 4.5,-65.5 parent: 2 - - uid: 1230 + - uid: 16372 components: - type: Transform pos: 2.5,-71.5 parent: 2 - - uid: 1641 + - uid: 16373 components: - type: Transform pos: -2.5,-83.5 parent: 2 - - uid: 1646 + - uid: 16374 components: - type: Transform pos: -4.5,-85.5 parent: 2 - - uid: 1647 + - uid: 16375 components: - type: Transform pos: -2.5,-84.5 parent: 2 - - uid: 1665 + - uid: 16376 components: - type: Transform pos: -5.5,-94.5 parent: 2 - - uid: 1666 + - uid: 16377 components: - type: Transform pos: -4.5,-94.5 parent: 2 - - uid: 1828 + - uid: 16378 components: - type: Transform pos: -2.5,-108.5 parent: 2 - - uid: 1873 + - uid: 16379 components: - type: Transform pos: -8.5,-117.5 parent: 2 - - uid: 1874 + - uid: 16380 components: - type: Transform pos: -7.5,-117.5 parent: 2 - - uid: 1879 + - uid: 16381 components: - type: Transform pos: -6.5,-120.5 parent: 2 - - uid: 1880 + - uid: 16382 components: - type: Transform pos: -5.5,-120.5 parent: 2 - - uid: 1886 + - uid: 16383 components: - type: Transform pos: -5.5,-121.5 parent: 2 - - uid: 1990 + - uid: 16384 components: - type: Transform pos: -3.5,-108.5 parent: 2 - - uid: 2556 + - uid: 16385 components: - type: Transform pos: 7.5,-145.5 parent: 2 - - uid: 2557 + - uid: 16386 components: - type: Transform pos: 7.5,-146.5 parent: 2 - - uid: 2558 + - uid: 16387 components: - type: Transform pos: 7.5,-147.5 parent: 2 - - uid: 2559 + - uid: 16388 components: - type: Transform pos: 6.5,-147.5 parent: 2 - - uid: 2605 + - uid: 16389 components: - type: Transform pos: -5.5,-137.5 parent: 2 - - uid: 2624 + - uid: 16390 components: - type: Transform pos: -4.5,-149.5 parent: 2 - - uid: 2625 + - uid: 16391 components: - type: Transform pos: -5.5,-149.5 parent: 2 - - uid: 2683 + - uid: 16392 components: - type: Transform pos: 6.5,-137.5 parent: 2 - - uid: 2684 + - uid: 16393 components: - type: Transform pos: 7.5,-137.5 parent: 2 - - uid: 2689 + - uid: 16394 components: - type: Transform pos: 2.5,-137.5 parent: 2 - - uid: 2691 + - uid: 16395 components: - type: Transform pos: 2.5,-136.5 parent: 2 - - uid: 2701 + - uid: 16396 components: - type: Transform pos: 6.5,-136.5 parent: 2 - - uid: 3160 + - uid: 16397 components: - type: Transform pos: 2.5,-163.5 parent: 2 - - uid: 3167 + - uid: 16398 components: - type: Transform pos: -0.5,-172.5 parent: 2 - - uid: 3179 + - uid: 16399 components: - type: Transform pos: -5.5,-176.5 parent: 2 - - uid: 3180 + - uid: 16400 components: - type: Transform pos: -5.5,-174.5 parent: 2 - - uid: 3184 + - uid: 16401 components: - type: Transform pos: -5.5,-172.5 parent: 2 - - uid: 3222 + - uid: 16402 components: - type: Transform pos: -4.5,-178.5 parent: 2 - - uid: 3223 + - uid: 16403 components: - type: Transform pos: -3.5,-178.5 parent: 2 - - uid: 3734 + - uid: 16404 components: - type: Transform pos: -0.5,-195.5 parent: 2 - - uid: 3735 + - uid: 16405 components: - type: Transform pos: -1.5,-195.5 parent: 2 - - uid: 3736 + - uid: 16406 components: - type: Transform pos: -1.5,-194.5 parent: 2 - - uid: 3771 + - uid: 16407 components: - type: Transform pos: -1.5,-196.5 parent: 2 - proto: WardrobeBlackFilled entities: - - uid: 14352 + - uid: 16408 components: - type: Transform pos: 13.5,-71.5 parent: 2 - proto: WardrobeBlueFilled entities: - - uid: 14389 + - uid: 16409 components: - type: Transform pos: 17.5,-67.5 parent: 2 - proto: WardrobeCargoFilled entities: - - uid: 6684 + - uid: 16410 components: - type: Transform pos: 1.5,-276.5 parent: 2 - proto: WardrobeGreenFilled entities: - - uid: 14365 + - uid: 16411 components: - type: Transform pos: 14.5,-71.5 parent: 2 - proto: WardrobeGreyFilled entities: - - uid: 14378 + - uid: 16412 components: - type: Transform pos: 17.5,-71.5 parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 4710 + - uid: 16413 components: - type: Transform pos: 14.5,-67.5 parent: 2 - - uid: 14376 + - uid: 16414 components: - type: Transform pos: 16.5,-71.5 parent: 2 - - uid: 14382 + - uid: 16415 components: - type: Transform pos: 16.5,-75.5 parent: 2 - - uid: 14387 + - uid: 16416 components: - type: Transform pos: 16.5,-67.5 parent: 2 - proto: WardrobePinkFilled entities: - - uid: 14038 + - uid: 16417 components: - type: Transform pos: 13.5,-67.5 parent: 2 - - uid: 14385 + - uid: 16418 components: - type: Transform pos: 17.5,-75.5 parent: 2 - proto: WardrobePrisonFilled entities: - - uid: 11440 + - uid: 16419 components: - type: Transform pos: 6.5,-367.5 parent: 2 - - uid: 11441 + - uid: 16420 components: - type: Transform pos: 6.5,-364.5 parent: 2 - - uid: 11442 + - uid: 16421 components: - type: Transform pos: -5.5,-364.5 parent: 2 - - uid: 11443 + - uid: 16422 components: - type: Transform pos: -5.5,-367.5 parent: 2 - - uid: 11444 + - uid: 16423 components: - type: Transform pos: -5.5,-369.5 parent: 2 - - uid: 11445 + - uid: 16424 components: - type: Transform pos: 6.5,-369.5 parent: 2 - proto: WardrobeRoboticsFilled entities: - - uid: 9950 + - uid: 16425 components: - type: Transform pos: 3.5,-310.5 parent: 2 - proto: WardrobeSalvageFilled entities: - - uid: 8625 + - uid: 16426 components: - type: Transform pos: -6.5,-284.5 parent: 2 - proto: WardrobeScienceFilled entities: - - uid: 9828 + - uid: 16427 components: - type: Transform pos: -2.5,-311.5 parent: 2 - - uid: 10032 + - uid: 16428 components: - type: Transform pos: -2.5,-312.5 parent: 2 - proto: WardrobeVirologyFilled entities: - - uid: 3910 + - uid: 16429 components: - type: Transform pos: -5.5,-198.5 parent: 2 - proto: WardrobeWhiteFilled entities: - - uid: 14368 + - uid: 16430 components: - type: Transform pos: 14.5,-75.5 parent: 2 - proto: WardrobeYellowFilled entities: - - uid: 14367 + - uid: 16431 components: - type: Transform pos: 13.5,-75.5 parent: 2 - proto: WarningAir entities: - - uid: 8117 + - uid: 16432 components: - type: Transform rot: -1.5707963267948966 rad @@ -104661,7 +104094,7 @@ entities: parent: 2 - proto: WarningCO2 entities: - - uid: 12017 + - uid: 16433 components: - type: Transform rot: -1.5707963267948966 rad @@ -104669,21 +104102,21 @@ entities: parent: 2 - proto: WarningN2 entities: - - uid: 12222 + - uid: 16434 components: - type: Transform pos: -18.5,-258.5 parent: 2 - proto: WarningO2 entities: - - uid: 12569 + - uid: 16435 components: - type: Transform pos: -18.5,-256.5 parent: 2 - proto: WarningPlasma entities: - - uid: 6784 + - uid: 16436 components: - type: Transform rot: -1.5707963267948966 rad @@ -104691,7 +104124,7 @@ entities: parent: 2 - proto: WarpPoint entities: - - uid: 2875 + - uid: 16437 components: - type: Transform rot: 1.5707963267948966 rad @@ -104700,7 +104133,7 @@ entities: - type: WarpPoint location: 'Car 05: Chapel, Library' - type: BombingTarget - - uid: 2880 + - uid: 16438 components: - type: Transform rot: 1.5707963267948966 rad @@ -104709,7 +104142,7 @@ entities: - type: WarpPoint location: 'Car 01: Arrivals, Evacuation' - type: BombingTarget - - uid: 2881 + - uid: 16439 components: - type: Transform rot: 1.5707963267948966 rad @@ -104718,7 +104151,7 @@ entities: - type: WarpPoint location: 'Car 02: Bar' - type: BombingTarget - - uid: 2883 + - uid: 16440 components: - type: Transform rot: 1.5707963267948966 rad @@ -104727,7 +104160,7 @@ entities: - type: WarpPoint location: 'Car 03: Kitchen, Hydroponic' - type: BombingTarget - - uid: 2885 + - uid: 16441 components: - type: Transform rot: 1.5707963267948966 rad @@ -104736,7 +104169,7 @@ entities: - type: WarpPoint location: 'Car 04: HoP, Dormatories' - type: BombingTarget - - uid: 3150 + - uid: 16442 components: - type: Transform rot: 3.141592653589793 rad @@ -104745,7 +104178,7 @@ entities: - type: WarpPoint location: 'Car 06: Med' - type: BombingTarget - - uid: 4570 + - uid: 16443 components: - type: Transform rot: 3.141592653589793 rad @@ -104754,7 +104187,7 @@ entities: - type: WarpPoint location: 'Car 08: Solar panels' - type: BombingTarget - - uid: 8358 + - uid: 16444 components: - type: Transform pos: 0.5,-252.5 @@ -104762,7 +104195,7 @@ entities: - type: WarpPoint location: 'Car 09: Engneering' - type: BombingTarget - - uid: 8984 + - uid: 16445 components: - type: Transform rot: -1.5707963267948966 rad @@ -104771,7 +104204,7 @@ entities: - type: WarpPoint location: 'Car 10: Cargo' - type: BombingTarget - - uid: 10623 + - uid: 16446 components: - type: Transform pos: 0.5,-308.5 @@ -104779,7 +104212,7 @@ entities: - type: WarpPoint location: 'Car 11: RnD' - type: BombingTarget - - uid: 10805 + - uid: 16447 components: - type: Transform pos: 0.5,-338.5 @@ -104787,7 +104220,7 @@ entities: - type: WarpPoint location: 'Car 12: Brig' - type: BombingTarget - - uid: 11945 + - uid: 16448 components: - type: Transform rot: -1.5707963267948966 rad @@ -104798,129 +104231,129 @@ entities: - type: BombingTarget - proto: WaterCooler entities: - - uid: 204 + - uid: 16449 components: - type: Transform pos: 4.5,-12.5 parent: 2 - - uid: 2850 + - uid: 16450 components: - type: Transform pos: 2.5,-333.5 parent: 2 - - uid: 7572 + - uid: 16451 components: - type: Transform pos: 7.5,-199.5 parent: 2 - - uid: 13123 + - uid: 16452 components: - type: Transform pos: -0.5,-356.5 parent: 2 - proto: WaterTankFull entities: - - uid: 1733 + - uid: 16453 components: - type: Transform pos: -4.5,-53.5 parent: 2 - - uid: 2884 + - uid: 16454 components: - type: Transform pos: 4.5,-151.5 parent: 2 - - uid: 2897 + - uid: 16455 components: - type: Transform pos: -2.5,-150.5 parent: 2 - - uid: 9063 + - uid: 16456 components: - type: Transform pos: 0.5,-282.5 parent: 2 - - uid: 12119 + - uid: 16457 components: - type: Transform pos: -2.5,-374.5 parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 2322 + - uid: 16458 components: - type: Transform pos: -2.5,-82.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 10966 + - uid: 16459 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-338.5 parent: 2 - - uid: 12893 + - uid: 16460 components: - type: Transform pos: -0.5,-366.5 parent: 2 - proto: WeaponDisabler entities: - - uid: 21784 + - uid: 16461 components: - type: Transform pos: 0.10163805,-366.3702 parent: 2 - proto: WeaponDisablerPractice entities: - - uid: 11524 + - uid: 16462 components: - type: Transform pos: 5.5389,-350.683 parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 12363 + - uid: 16463 components: - type: Transform pos: 1.2513196,-368.03192 parent: 2 - proto: WeaponPistolMk58 entities: - - uid: 12774 + - uid: 5609 components: - type: Transform - parent: 12773 + parent: 5605 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - - uid: 15297 + - uid: 16464 components: - type: Transform pos: -4.3806252,-346.3184 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 9688 + - uid: 16465 components: - type: Transform pos: 30.5,-308.5 parent: 2 - - uid: 9690 + - uid: 16466 components: - type: Transform pos: 30.5,-306.5 parent: 2 - - uid: 9705 + - uid: 16467 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-311.5 parent: 2 - - uid: 9706 + - uid: 16468 components: - type: Transform rot: 3.141592653589793 rad @@ -104928,14 +104361,14 @@ entities: parent: 2 - proto: WeaponWaterBlaster entities: - - uid: 9942 + - uid: 16469 components: - type: Transform pos: 3.4013178,-313.2785 parent: 2 - proto: WeaponWaterPistol entities: - - uid: 11014 + - uid: 16470 components: - type: Transform rot: -1.5707963267948966 rad @@ -104943,52 +104376,52 @@ entities: parent: 2 - proto: WeedSpray entities: - - uid: 26464 + - uid: 16471 components: - type: Transform pos: 0.072262526,-370.32172 parent: 2 - proto: WelderIndustrial entities: - - uid: 16800 + - uid: 3961 components: - type: Transform - parent: 16798 + parent: 3958 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WelderIndustrialAdvanced entities: - - uid: 14342 + - uid: 16472 components: - type: Transform pos: 8.601893,-250.1304 parent: 2 - proto: WelderMini entities: - - uid: 11436 + - uid: 16473 components: - type: Transform pos: 4.523847,-358.3457 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1597 + - uid: 16474 components: - type: Transform pos: 7.5,-68.5 parent: 2 - - uid: 2334 + - uid: 16475 components: - type: Transform pos: -5.5,-41.5 parent: 2 - - uid: 2882 + - uid: 16476 components: - type: Transform pos: 3.5,-151.5 parent: 2 - - uid: 6678 + - uid: 16477 components: - type: Transform anchored: True @@ -104996,58 +104429,58 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 8472 + - uid: 16478 components: - type: Transform pos: -7.5,-173.5 parent: 2 - - uid: 8514 + - uid: 16479 components: - type: Transform pos: 15.5,-242.5 parent: 2 - - uid: 8561 + - uid: 16480 components: - type: Transform pos: 3.5,-311.5 parent: 2 - - uid: 9064 + - uid: 16481 components: - type: Transform pos: 1.5,-282.5 parent: 2 - - uid: 15216 + - uid: 16482 components: - type: Transform pos: 8.5,-251.5 parent: 2 - - uid: 15270 + - uid: 16483 components: - type: Transform pos: 6.5,-245.5 parent: 2 - - uid: 16881 + - uid: 16484 components: - type: Transform pos: 10.5,-298.5 parent: 2 - proto: WetFloorSign entities: - - uid: 12681 + - uid: 16485 components: - type: Transform pos: -3.1763532,-150.31618 parent: 2 - proto: WindoorBarLocked entities: - - uid: 15584 + - uid: 16486 components: - type: Transform pos: -0.5,-65.5 parent: 2 - proto: WindoorHydroponicsLocked entities: - - uid: 1650 + - uid: 16487 components: - type: Transform rot: -1.5707963267948966 rad @@ -105055,12 +104488,12 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 2248 + - uid: 16488 components: - type: Transform pos: -0.5,-122.5 parent: 2 - - uid: 14877 + - uid: 16489 components: - type: Transform rot: 1.5707963267948966 rad @@ -105068,11 +104501,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14880: + 16552: - DoorStatus: DoorBolt - 5738: + 16529: - DoorStatus: DoorBolt - - uid: 14980 + - uid: 16490 components: - type: Transform rot: 1.5707963267948966 rad @@ -105080,41 +104513,41 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14978: + 16555: - DoorStatus: DoorBolt - 14979: + 16556: - DoorStatus: DoorBolt - proto: WindoorSecureArmoryLocked entities: - - uid: 93 + - uid: 16491 components: - type: Transform pos: 5.5,-341.5 parent: 2 - - uid: 2471 + - uid: 16492 components: - type: Transform pos: 5.5,-339.5 parent: 2 - - uid: 3680 + - uid: 16493 components: - type: Transform pos: 7.5,-341.5 parent: 2 - - uid: 7738 + - uid: 16494 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-339.5 parent: 2 - - uid: 10085 + - uid: 16495 components: - type: Transform pos: 1.5,-366.5 parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 11002 + - uid: 16496 components: - type: Transform rot: 1.5707963267948966 rad @@ -105122,13 +104555,13 @@ entities: parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 8504 + - uid: 16497 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-271.5 parent: 2 - - uid: 8537 + - uid: 16498 components: - type: Transform rot: 1.5707963267948966 rad @@ -105136,13 +104569,13 @@ entities: parent: 2 - proto: WindoorSecureChapelLocked entities: - - uid: 2687 + - uid: 16499 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-139.5 parent: 2 - - uid: 2694 + - uid: 16500 components: - type: Transform rot: 1.5707963267948966 rad @@ -105150,31 +104583,31 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 2643 + - uid: 16501 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-170.5 parent: 2 - - uid: 3067 + - uid: 16502 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-170.5 parent: 2 - - uid: 3093 + - uid: 16503 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-168.5 parent: 2 - - uid: 3094 + - uid: 16504 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-167.5 parent: 2 - - uid: 3095 + - uid: 16505 components: - type: Transform rot: 1.5707963267948966 rad @@ -105182,13 +104615,13 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 8275 + - uid: 16506 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-251.5 parent: 2 - - uid: 8305 + - uid: 16507 components: - type: Transform rot: 1.5707963267948966 rad @@ -105196,26 +104629,19 @@ entities: parent: 2 - proto: WindoorSecureExternalLocked entities: - - uid: 164 + - uid: 16508 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-265.5 parent: 2 - - type: DeviceLinkSink - links: - - 15186 - - uid: 268 + - uid: 16509 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 640 - - 5092 - - uid: 278 + - uid: 16510 components: - type: Transform rot: -1.5707963267948966 rad @@ -105223,22 +104649,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 5 - links: - - 657 - - 656 - - 269 - - 20 - type: DeviceLinkSource linkedPorts: - 269: + 189: - DoorStatus: Close - 656: + 199: - DoorStatus: Close - 657: + 200: - DoorStatus: Close - 20: + 188: - DoorStatus: Close - - uid: 280 + - uid: 16511 components: - type: Transform rot: 1.5707963267948966 rad @@ -105246,22 +104667,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 662 - - 4694 - - 670 - - 667 - type: DeviceLinkSource linkedPorts: - 4694: + 212: - DoorStatus: Close - 670: + 205: - DoorStatus: Close - 667: + 204: - DoorStatus: Close - 662: + 202: - DoorStatus: Close - - uid: 282 + - uid: 16512 components: - type: Transform rot: 1.5707963267948966 rad @@ -105269,22 +104685,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8195 - - 9555 - - 991 - - 671 - type: DeviceLinkSource linkedPorts: - 671: + 206: - DoorStatus: Close - 8195: + 222: - DoorStatus: Close - 9555: + 231: - DoorStatus: Close - 991: + 207: - DoorStatus: Close - - uid: 284 + - uid: 16513 components: - type: Transform rot: -1.5707963267948966 rad @@ -105292,42 +104703,29 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8195 - - 9555 - - 991 - - 671 - type: DeviceLinkSource linkedPorts: - 991: + 207: - DoorStatus: Close - 9555: + 231: - DoorStatus: Close - 8195: + 222: - DoorStatus: Close - 671: + 206: - DoorStatus: Close - - uid: 333 + - uid: 16514 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 6286 - - 14796 - - uid: 605 + - uid: 16515 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - - 2244 - - uid: 708 + - uid: 16516 components: - type: Transform rot: 1.5707963267948966 rad @@ -105335,59 +104733,41 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5467 - - 9685 - - 10646 - - 10132 - type: DeviceLinkSource linkedPorts: - 5467: + 216: - DoorStatus: Close - 9685: + 235: - DoorStatus: Close - 10132: + 236: - DoorStatus: Close - 10646: + 237: - DoorStatus: Close - - uid: 1335 + - uid: 16517 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 2492 - - uid: 1791 + - uid: 16518 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-324.5 parent: 2 - - type: DeviceLinkSink - links: - - 10083 - - uid: 1812 + - uid: 16519 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-324.5 parent: 2 - - type: DeviceLinkSink - links: - - 10083 - - uid: 2646 + - uid: 16520 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 6286 - - 14796 - - uid: 3508 + - uid: 16521 components: - type: Transform rot: 1.5707963267948966 rad @@ -105395,10 +104775,7 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 1938 - - 16903 - - uid: 3544 + - uid: 16522 components: - type: Transform rot: -1.5707963267948966 rad @@ -105406,22 +104783,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9554 - - 8178 - - 12 - - 270 - type: DeviceLinkSource linkedPorts: - 270: + 190: - DoorStatus: Close - 8178: + 221: - DoorStatus: Close - 9554: + 230: - DoorStatus: Close - 12: + 187: - DoorStatus: Close - - uid: 3545 + - uid: 16523 components: - type: Transform rot: 1.5707963267948966 rad @@ -105429,22 +104801,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8169 - - 9552 - - 283 - - 281 - type: DeviceLinkSource linkedPorts: - 281: + 195: - DoorStatus: Close - 8169: + 220: - DoorStatus: Close - 9552: + 228: - DoorStatus: Close - 283: + 196: - DoorStatus: Close - - uid: 3546 + - uid: 16524 components: - type: Transform rot: -1.5707963267948966 rad @@ -105452,22 +104819,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 662 - - 4694 - - 670 - - 667 - type: DeviceLinkSource linkedPorts: - 670: + 205: - DoorStatus: Close - 4694: + 212: - DoorStatus: Close - 662: + 202: - DoorStatus: Close - 667: + 204: - DoorStatus: Close - - uid: 3547 + - uid: 16525 components: - type: Transform rot: -1.5707963267948966 rad @@ -105475,22 +104837,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4693 - - 4692 - - 276 - - 274 - type: DeviceLinkSource linkedPorts: - 274: + 191: - DoorStatus: Close - 4692: + 210: - DoorStatus: Close - 4693: + 211: - DoorStatus: Close - 276: + 192: - DoorStatus: Close - - uid: 5262 + - uid: 16526 components: - type: Transform rot: -1.5707963267948966 rad @@ -105498,22 +104855,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9558 - - 8678 - - 9375 - - 8674 - type: DeviceLinkSource linkedPorts: - 9558: + 234: - DoorStatus: Close - 8678: + 225: - DoorStatus: Close - 9375: + 226: - DoorStatus: Close - 8674: + 224: - DoorStatus: Close - - uid: 5463 + - uid: 16527 components: - type: Transform rot: 1.5707963267948966 rad @@ -105521,22 +104873,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9558 - - 8678 - - 9375 - - 8674 - type: DeviceLinkSource linkedPorts: - 9558: + 234: - DoorStatus: Close - 8678: + 225: - DoorStatus: Close - 9375: + 226: - DoorStatus: Close - 8674: + 224: - DoorStatus: Close - - uid: 5466 + - uid: 16528 components: - type: Transform rot: -1.5707963267948966 rad @@ -105544,32 +104891,23 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 6 - links: - - 5467 - - 9685 - - 10646 - - 10132 - type: DeviceLinkSource linkedPorts: - 5467: + 216: - DoorStatus: Close - 9685: + 235: - DoorStatus: Close - 10132: + 236: - DoorStatus: Close - 10646: + 237: - DoorStatus: Close - - uid: 5738 + - uid: 16529 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-130.5 parent: 2 - - type: DeviceLinkSink - links: - - 2690 - - 14877 - - uid: 8135 + - uid: 16530 components: - type: Transform rot: 1.5707963267948966 rad @@ -105577,22 +104915,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 658 - - 9553 - - 279 - - 277 - type: DeviceLinkSource linkedPorts: - 277: + 193: - DoorStatus: Close - 9553: + 229: - DoorStatus: Close - 658: + 201: - DoorStatus: Close - 279: + 194: - DoorStatus: Close - - uid: 8136 + - uid: 16531 components: - type: Transform rot: 1.5707963267948966 rad @@ -105600,22 +104933,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4695 - - 9551 - - 666 - - 625 - type: DeviceLinkSource linkedPorts: - 625: + 198: - DoorStatus: Close - 9551: + 227: - DoorStatus: Close - 4695: + 213: - DoorStatus: Close - 666: + 203: - DoorStatus: Close - - uid: 8137 + - uid: 16532 components: - type: Transform rot: 1.5707963267948966 rad @@ -105623,22 +104951,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5259 - - 9556 - - 1211 - - 1247 - type: DeviceLinkSource linkedPorts: - 1247: + 209: - DoorStatus: Close - 9556: + 232: - DoorStatus: Close - 5259: + 215: - DoorStatus: Close - 1211: + 208: - DoorStatus: Close - - uid: 9343 + - uid: 16533 components: - type: Transform rot: 1.5707963267948966 rad @@ -105646,22 +104969,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9554 - - 8178 - - 12 - - 270 - type: DeviceLinkSource linkedPorts: - 270: + 190: - DoorStatus: Close - 8178: + 221: - DoorStatus: Close - 9554: + 230: - DoorStatus: Close - 12: + 187: - DoorStatus: Close - - uid: 9346 + - uid: 16534 components: - type: Transform rot: 1.5707963267948966 rad @@ -105669,22 +104987,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 657 - - 656 - - 269 - - 20 - type: DeviceLinkSource linkedPorts: - 269: + 189: - DoorStatus: Close - 656: + 199: - DoorStatus: Close - 657: + 200: - DoorStatus: Close - 20: + 188: - DoorStatus: Close - - uid: 9347 + - uid: 16535 components: - type: Transform rot: 1.5707963267948966 rad @@ -105692,22 +105005,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4693 - - 4692 - - 276 - - 274 - type: DeviceLinkSource linkedPorts: - 274: + 191: - DoorStatus: Close - 4692: + 210: - DoorStatus: Close - 4693: + 211: - DoorStatus: Close - 276: + 192: - DoorStatus: Close - - uid: 9374 + - uid: 16536 components: - type: Transform rot: -1.5707963267948966 rad @@ -105715,22 +105023,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 658 - - 9553 - - 279 - - 277 - type: DeviceLinkSource linkedPorts: - 277: + 193: - DoorStatus: Close - 9553: + 229: - DoorStatus: Close - 658: + 201: - DoorStatus: Close - 279: + 194: - DoorStatus: Close - - uid: 9423 + - uid: 16537 components: - type: Transform rot: -1.5707963267948966 rad @@ -105738,22 +105041,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 8169 - - 9552 - - 283 - - 281 - type: DeviceLinkSource linkedPorts: - 281: + 195: - DoorStatus: Close - 9552: + 228: - DoorStatus: Close - 8169: + 220: - DoorStatus: Close - 283: + 196: - DoorStatus: Close - - uid: 9433 + - uid: 16538 components: - type: Transform rot: -1.5707963267948966 rad @@ -105761,22 +105059,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 4695 - - 9551 - - 666 - - 625 - type: DeviceLinkSource linkedPorts: - 625: + 198: - DoorStatus: Close - 9551: + 227: - DoorStatus: Close - 4695: + 213: - DoorStatus: Close - 666: + 203: - DoorStatus: Close - - uid: 9439 + - uid: 16539 components: - type: Transform rot: -1.5707963267948966 rad @@ -105784,22 +105077,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 5259 - - 9556 - - 1211 - - 1247 - type: DeviceLinkSource linkedPorts: - 1247: + 209: - DoorStatus: Close - 9556: + 232: - DoorStatus: Close - 5259: + 215: - DoorStatus: Close - 1211: + 208: - DoorStatus: Close - - uid: 9455 + - uid: 16540 components: - type: Transform rot: -1.5707963267948966 rad @@ -105807,22 +105095,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9557 - - 5216 - - 8639 - - 616 - type: DeviceLinkSource linkedPorts: - 9557: + 233: - DoorStatus: Close - 5216: + 214: - DoorStatus: Close - 616: + 197: - DoorStatus: Close - 8639: + 223: - DoorStatus: Close - - uid: 9459 + - uid: 16541 components: - type: Transform rot: 1.5707963267948966 rad @@ -105830,130 +105113,83 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 4 - links: - - 9557 - - 5216 - - 8639 - - 616 - type: DeviceLinkSource linkedPorts: - 9557: + 233: - DoorStatus: Close - 5216: + 214: - DoorStatus: Close - 8639: + 223: - DoorStatus: Close - 616: + 197: - DoorStatus: Close - - uid: 11820 + - uid: 16542 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-378.5 parent: 2 - - type: DeviceLinkSink - links: - - 11821 - - uid: 14751 + - uid: 16543 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - - 2244 - - uid: 14757 + - uid: 16544 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14753 - - 45 - - uid: 14760 + - uid: 16545 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14753 - - 45 - - uid: 14768 + - uid: 16546 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 2492 - - uid: 14783 + - uid: 16547 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-76.5 parent: 2 - - type: DeviceLinkSink - links: - - 640 - - 5092 - - uid: 14857 + - uid: 16548 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 397 - - 1068 - - uid: 14858 + - uid: 16549 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 622 - - 3782 - - uid: 14859 + - uid: 16550 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 622 - - 3782 - - uid: 14860 + - uid: 16551 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-103.5 parent: 2 - - type: DeviceLinkSink - links: - - 397 - - 1068 - - uid: 14880 + - uid: 16552 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-130.5 parent: 2 - - type: DeviceLinkSink - links: - - 2690 - - 14877 - - uid: 14890 + - uid: 16553 components: - type: Transform rot: 1.5707963267948966 rad @@ -105961,10 +105197,7 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 16818 - - 2100 - - uid: 14891 + - uid: 16554 components: - type: Transform rot: -1.5707963267948966 rad @@ -105972,32 +105205,19 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 16818 - - 2100 - - uid: 14978 + - uid: 16555 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-158.5 parent: 2 - - type: DeviceLinkSink - links: - - 14946 - - 811 - - 14980 - - uid: 14979 + - uid: 16556 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-158.5 parent: 2 - - type: DeviceLinkSink - links: - - 14946 - - 811 - - 14980 - - uid: 15040 + - uid: 16557 components: - type: Transform rot: -1.5707963267948966 rad @@ -106005,61 +105225,39 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 1938 - - 16903 - - uid: 15117 + - uid: 16558 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-157.5 parent: 2 - - type: DeviceLinkSink - links: - - 1933 - - 1937 - - uid: 15118 + - uid: 16559 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-157.5 parent: 2 - - type: DeviceLinkSink - links: - - 1933 - - 1937 - - uid: 15152 + - uid: 16560 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-265.5 parent: 2 - - type: DeviceLinkSink - links: - - 15186 - - uid: 15193 + - uid: 16561 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-292.5 parent: 2 - - type: DeviceLinkSink - links: - - 2414 - - 2413 - - uid: 15194 + - uid: 16562 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-292.5 parent: 2 - - type: DeviceLinkSink - links: - - 2414 - - 2413 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 2238 + - uid: 16563 components: - type: Transform rot: 3.141592653589793 rad @@ -106067,19 +105265,19 @@ entities: parent: 2 - proto: WindoorSecureKitchenLocked entities: - - uid: 5844 + - uid: 16564 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-89.5 parent: 2 - - uid: 5851 + - uid: 16565 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-88.5 parent: 2 - - uid: 5872 + - uid: 16566 components: - type: Transform rot: 1.5707963267948966 rad @@ -106087,19 +105285,19 @@ entities: parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 10042 + - uid: 16567 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-301.5 parent: 2 - - uid: 10106 + - uid: 16568 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-302.5 parent: 2 - - uid: 10107 + - uid: 16569 components: - type: Transform rot: 1.5707963267948966 rad @@ -106107,7 +105305,7 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 11204 + - uid: 16570 components: - type: Transform rot: -1.5707963267948966 rad @@ -106115,13 +105313,13 @@ entities: parent: 2 - proto: WindoorServiceLocked entities: - - uid: 1649 + - uid: 16571 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-87.5 parent: 2 - - uid: 2741 + - uid: 16572 components: - type: Transform rot: 3.141592653589793 rad @@ -106129,176 +105327,176 @@ entities: parent: 2 - proto: Window entities: - - uid: 203 + - uid: 16573 components: - type: Transform pos: 1.5,-143.5 parent: 2 - - uid: 205 + - uid: 16574 components: - type: Transform pos: 1.5,-144.5 parent: 2 - - uid: 831 + - uid: 16575 components: - type: Transform pos: 1.5,-145.5 parent: 2 - - uid: 1011 + - uid: 16576 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 1398 + - uid: 16577 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-285.5 parent: 2 - - uid: 1690 + - uid: 16578 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 2537 + - uid: 16579 components: - type: Transform pos: 1.5,-93.5 parent: 2 - - uid: 2538 + - uid: 16580 components: - type: Transform pos: 0.5,-93.5 parent: 2 - - uid: 2539 + - uid: 16581 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 2996 + - uid: 16582 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 3742 + - uid: 16583 components: - type: Transform pos: 4.5,-194.5 parent: 2 - - uid: 3743 + - uid: 16584 components: - type: Transform pos: 4.5,-193.5 parent: 2 - - uid: 3744 + - uid: 16585 components: - type: Transform pos: 4.5,-192.5 parent: 2 - - uid: 3769 + - uid: 16586 components: - type: Transform pos: -1.5,-197.5 parent: 2 - - uid: 5137 + - uid: 16587 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 2 - - uid: 7638 + - uid: 16588 components: - type: Transform pos: 14.5,-245.5 parent: 2 - - uid: 7758 + - uid: 16589 components: - type: Transform pos: 14.5,-246.5 parent: 2 - - uid: 8433 + - uid: 16590 components: - type: Transform pos: -4.5,-289.5 parent: 2 - - uid: 8490 + - uid: 16591 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-274.5 parent: 2 - - uid: 8521 + - uid: 16592 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-273.5 parent: 2 - - uid: 8538 + - uid: 16593 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-283.5 parent: 2 - - uid: 8585 + - uid: 16594 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-272.5 parent: 2 - - uid: 8627 + - uid: 16595 components: - type: Transform pos: -0.5,-275.5 parent: 2 - - uid: 8628 + - uid: 16596 components: - type: Transform pos: -1.5,-276.5 parent: 2 - - uid: 8652 + - uid: 16597 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-286.5 parent: 2 - - uid: 8658 + - uid: 16598 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-284.5 parent: 2 - - uid: 8676 + - uid: 16599 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-282.5 parent: 2 - - uid: 8815 + - uid: 16600 components: - type: Transform pos: 20.5,-245.5 parent: 2 - - uid: 8837 + - uid: 16601 components: - type: Transform pos: 20.5,-246.5 parent: 2 - - uid: 9000 + - uid: 16602 components: - type: Transform pos: 10.5,-279.5 parent: 2 - - uid: 9001 + - uid: 16603 components: - type: Transform pos: 9.5,-279.5 parent: 2 - - uid: 9003 + - uid: 16604 components: - type: Transform pos: 11.5,-279.5 parent: 2 - - uid: 10829 + - uid: 16605 components: - type: Transform rot: -1.5707963267948966 rad @@ -106306,47 +105504,47 @@ entities: parent: 2 - proto: WindowDiagonal entities: - - uid: 8503 + - uid: 16606 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-273.5 parent: 2 - - uid: 8518 + - uid: 16607 components: - type: Transform pos: -3.5,-272.5 parent: 2 - - uid: 8519 + - uid: 16608 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-274.5 parent: 2 - - uid: 8541 + - uid: 16609 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-283.5 parent: 2 - - uid: 8629 + - uid: 16610 components: - type: Transform pos: -1.5,-275.5 parent: 2 - - uid: 8635 + - uid: 16611 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-285.5 parent: 2 - - uid: 8636 + - uid: 16612 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-284.5 parent: 2 - - uid: 8644 + - uid: 16613 components: - type: Transform rot: 1.5707963267948966 rad @@ -106354,161 +105552,161 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 4161 + - uid: 16614 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-60.5 parent: 2 - - uid: 4162 + - uid: 16615 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-60.5 parent: 2 - - uid: 4164 + - uid: 16616 components: - type: Transform pos: -1.5,-65.5 parent: 2 - - uid: 4165 + - uid: 16617 components: - type: Transform pos: -2.5,-65.5 parent: 2 - - uid: 4166 + - uid: 16618 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-65.5 parent: 2 - - uid: 4167 + - uid: 16619 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-60.5 parent: 2 - - uid: 4168 + - uid: 16620 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-60.5 parent: 2 - - uid: 7898 + - uid: 16621 components: - type: Transform pos: 16.5,-58.5 parent: 2 - - uid: 11770 + - uid: 16622 components: - type: Transform pos: 14.5,-58.5 parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 2303 + - uid: 16623 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-85.5 parent: 2 - - uid: 2313 + - uid: 16624 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-86.5 parent: 2 - - uid: 2314 + - uid: 16625 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 - - uid: 2315 + - uid: 16626 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-90.5 parent: 2 - - uid: 6627 + - uid: 16627 components: - type: Transform pos: 10.5,-161.5 parent: 2 - - uid: 7235 + - uid: 16628 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-163.5 parent: 2 - - uid: 7285 + - uid: 16629 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-163.5 parent: 2 - - uid: 7288 + - uid: 16630 components: - type: Transform pos: 11.5,-161.5 parent: 2 - - uid: 7289 + - uid: 16631 components: - type: Transform pos: 9.5,-161.5 parent: 2 - - uid: 7354 + - uid: 16632 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-163.5 parent: 2 - - uid: 7355 + - uid: 16633 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-156.5 parent: 2 - - uid: 7356 + - uid: 16634 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-156.5 parent: 2 - - uid: 9464 + - uid: 16635 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-309.5 parent: 2 - - uid: 9465 + - uid: 16636 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-309.5 parent: 2 - - uid: 9467 + - uid: 16637 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-309.5 parent: 2 - - uid: 9470 + - uid: 16638 components: - type: Transform pos: 22.5,-305.5 parent: 2 - - uid: 9471 + - uid: 16639 components: - type: Transform pos: 23.5,-305.5 parent: 2 - - uid: 9472 + - uid: 16640 components: - type: Transform pos: 21.5,-305.5 parent: 2 - - uid: 11203 + - uid: 16641 components: - type: Transform rot: -1.5707963267948966 rad @@ -106516,1773 +105714,1773 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 195 + - uid: 16642 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-23.5 parent: 2 - - uid: 271 + - uid: 16643 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-23.5 parent: 2 - - uid: 312 + - uid: 16644 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-266.5 parent: 2 - - uid: 363 + - uid: 16645 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-261.5 parent: 2 - - uid: 529 + - uid: 16646 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-30.5 parent: 2 - - uid: 556 + - uid: 16647 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-159.5 parent: 2 - - uid: 557 + - uid: 16648 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-267.5 parent: 2 - - uid: 581 + - uid: 16649 components: - type: Transform pos: -6.5,-131.5 parent: 2 - - uid: 588 + - uid: 16650 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-157.5 parent: 2 - - uid: 590 + - uid: 16651 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-185.5 parent: 2 - - uid: 600 + - uid: 16652 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-264.5 parent: 2 - - uid: 607 + - uid: 16653 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-21.5 parent: 2 - - uid: 609 + - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-129.5 parent: 2 - - uid: 617 + - uid: 16655 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 - - uid: 644 + - uid: 16656 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-183.5 parent: 2 - - uid: 648 + - uid: 16657 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-30.5 parent: 2 - - uid: 649 + - uid: 16658 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 650 + - uid: 16659 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-30.5 parent: 2 - - uid: 654 + - uid: 16660 components: - type: Transform pos: -1.5,-29.5 parent: 2 - - uid: 655 + - uid: 16661 components: - type: Transform pos: -3.5,-29.5 parent: 2 - - uid: 668 + - uid: 16662 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-293.5 parent: 2 - - uid: 669 + - uid: 16663 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-291.5 parent: 2 - - uid: 702 + - uid: 16664 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 703 + - uid: 16665 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 704 + - uid: 16666 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 2 - - uid: 705 + - uid: 16667 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-30.5 parent: 2 - - uid: 822 + - uid: 16668 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-163.5 parent: 2 - - uid: 885 + - uid: 16669 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-159.5 parent: 2 - - uid: 1455 + - uid: 16670 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-77.5 parent: 2 - - uid: 1580 + - uid: 16671 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-102.5 parent: 2 - - uid: 1925 + - uid: 16672 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-159.5 parent: 2 - - uid: 1926 + - uid: 16673 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-158.5 parent: 2 - - uid: 1943 + - uid: 16674 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-322.5 parent: 2 - - uid: 2077 + - uid: 16675 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-124.5 parent: 2 - - uid: 2179 + - uid: 16676 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-323.5 parent: 2 - - uid: 2240 + - uid: 16677 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-124.5 parent: 2 - - uid: 2241 + - uid: 16678 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-124.5 parent: 2 - - uid: 2242 + - uid: 16679 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-124.5 parent: 2 - - uid: 2278 + - uid: 16680 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-325.5 parent: 2 - - uid: 2333 + - uid: 16681 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-266.5 parent: 2 - - uid: 2394 + - uid: 16682 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-264.5 parent: 2 - - uid: 2483 + - uid: 16683 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-323.5 parent: 2 - - uid: 2654 + - uid: 16684 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 - - uid: 2656 + - uid: 16685 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-322.5 parent: 2 - - uid: 2686 + - uid: 16686 components: - type: Transform pos: 3.5,-137.5 parent: 2 - - uid: 2792 + - uid: 16687 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-157.5 parent: 2 - - uid: 2861 + - uid: 16688 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-155.5 parent: 2 - - uid: 3163 + - uid: 16689 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-261.5 parent: 2 - - uid: 3216 + - uid: 16690 components: - type: Transform pos: -11.5,-242.5 parent: 2 - - uid: 3217 + - uid: 16691 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-244.5 parent: 2 - - uid: 3503 + - uid: 16692 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-77.5 parent: 2 - - uid: 3504 + - uid: 16693 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-132.5 parent: 2 - - uid: 3548 + - uid: 16694 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-210.5 parent: 2 - - uid: 3555 + - uid: 16695 components: - type: Transform pos: -8.5,-242.5 parent: 2 - - uid: 3601 + - uid: 16696 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-244.5 parent: 2 - - uid: 3645 + - uid: 16697 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-244.5 parent: 2 - - uid: 3739 + - uid: 16698 components: - type: Transform pos: -9.5,-242.5 parent: 2 - - uid: 3770 + - uid: 16699 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-237.5 parent: 2 - - uid: 3783 + - uid: 16700 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-185.5 parent: 2 - - uid: 3836 + - uid: 16701 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-183.5 parent: 2 - - uid: 3851 + - uid: 16702 components: - type: Transform pos: -7.5,-242.5 parent: 2 - - uid: 4040 + - uid: 16703 components: - type: Transform pos: -10.5,-242.5 parent: 2 - - uid: 4110 + - uid: 16704 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-244.5 parent: 2 - - uid: 4188 + - uid: 16705 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-249.5 parent: 2 - - uid: 4209 + - uid: 16706 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-249.5 parent: 2 - - uid: 4217 + - uid: 16707 components: - type: Transform pos: -11.5,-247.5 parent: 2 - - uid: 4218 + - uid: 16708 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-261.5 parent: 2 - - uid: 4219 + - uid: 16709 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-261.5 parent: 2 - - uid: 4297 + - uid: 16710 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-104.5 parent: 2 - - uid: 4298 + - uid: 16711 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-104.5 parent: 2 - - uid: 4312 + - uid: 16712 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-129.5 parent: 2 - - uid: 4314 + - uid: 16713 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-156.5 parent: 2 - - uid: 4355 + - uid: 16714 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-50.5 parent: 2 - - uid: 4419 + - uid: 16715 components: - type: Transform pos: -10.5,-247.5 parent: 2 - - uid: 4520 + - uid: 16716 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-48.5 parent: 2 - - uid: 4597 + - uid: 16717 components: - type: Transform pos: -8.5,-259.5 parent: 2 - - uid: 4630 + - uid: 16718 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 - - uid: 4685 + - uid: 16719 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-77.5 parent: 2 - - uid: 4690 + - uid: 16720 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 - - uid: 4691 + - uid: 16721 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-21.5 parent: 2 - - uid: 4735 + - uid: 16722 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-48.5 parent: 2 - - uid: 4750 + - uid: 16723 components: - type: Transform pos: -9.5,-259.5 parent: 2 - - uid: 5012 + - uid: 16724 components: - type: Transform pos: -5.5,-131.5 parent: 2 - - uid: 5464 + - uid: 16725 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-323.5 parent: 2 - - uid: 6188 + - uid: 16726 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-165.5 parent: 2 - - uid: 6304 + - uid: 16727 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-185.5 parent: 2 - - uid: 6518 + - uid: 16728 components: - type: Transform pos: -9.5,-166.5 parent: 2 - - uid: 6625 + - uid: 16729 components: - type: Transform pos: -9.5,-247.5 parent: 2 - - uid: 6650 + - uid: 16730 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-261.5 parent: 2 - - uid: 6667 + - uid: 16731 components: - type: Transform pos: -11.5,-259.5 parent: 2 - - uid: 6671 + - uid: 16732 components: - type: Transform pos: -10.5,-259.5 parent: 2 - - uid: 6745 + - uid: 16733 components: - type: Transform pos: -9.5,-161.5 parent: 2 - - uid: 7439 + - uid: 16734 components: - type: Transform pos: 12.5,-247.5 parent: 2 - - uid: 7440 + - uid: 16735 components: - type: Transform pos: 13.5,-247.5 parent: 2 - - uid: 7450 + - uid: 16736 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-151.5 parent: 2 - - uid: 7508 + - uid: 16737 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-325.5 parent: 2 - - uid: 7742 + - uid: 16738 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-244.5 parent: 2 - - uid: 7915 + - uid: 16739 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-244.5 parent: 2 - - uid: 7916 + - uid: 16740 components: - type: Transform pos: 9.5,-242.5 parent: 2 - - uid: 7917 + - uid: 16741 components: - type: Transform pos: 10.5,-242.5 parent: 2 - - uid: 7918 + - uid: 16742 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-257.5 parent: 2 - - uid: 7922 + - uid: 16743 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-257.5 parent: 2 - - uid: 7937 + - uid: 16744 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-164.5 parent: 2 - - uid: 8138 + - uid: 16745 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-264.5 parent: 2 - - uid: 8139 + - uid: 16746 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-239.5 parent: 2 - - uid: 8141 + - uid: 16747 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-212.5 parent: 2 - - uid: 8143 + - uid: 16748 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-131.5 parent: 2 - - uid: 8144 + - uid: 16749 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-158.5 parent: 2 - - uid: 8150 + - uid: 16750 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-48.5 parent: 2 - - uid: 8152 + - uid: 16751 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-77.5 parent: 2 - - uid: 8176 + - uid: 16752 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-261.5 parent: 2 - - uid: 8204 + - uid: 16753 components: - type: Transform pos: 10.5,-259.5 parent: 2 - - uid: 8220 + - uid: 16754 components: - type: Transform pos: 13.5,-242.5 parent: 2 - - uid: 8421 + - uid: 16755 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-361.5 parent: 2 - - uid: 8479 + - uid: 16756 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-249.5 parent: 2 - - uid: 8683 + - uid: 16757 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-293.5 parent: 2 - - uid: 8686 + - uid: 16758 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-323.5 parent: 2 - - uid: 8824 + - uid: 16759 components: - type: Transform pos: 13.5,-259.5 parent: 2 - - uid: 8945 + - uid: 16760 components: - type: Transform pos: 11.5,-259.5 parent: 2 - - uid: 8947 + - uid: 16761 components: - type: Transform pos: 12.5,-259.5 parent: 2 - - uid: 9393 + - uid: 16762 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-168.5 parent: 2 - - uid: 9454 + - uid: 16763 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-266.5 parent: 2 - - uid: 9462 + - uid: 16764 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-212.5 parent: 2 - - uid: 9500 + - uid: 16765 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-210.5 parent: 2 - - uid: 9501 + - uid: 16766 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-239.5 parent: 2 - - uid: 9503 + - uid: 16767 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-237.5 parent: 2 - - uid: 9504 + - uid: 16768 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-75.5 parent: 2 - - uid: 9536 + - uid: 16769 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-131.5 parent: 2 - - uid: 9539 + - uid: 16770 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-102.5 parent: 2 - - uid: 9541 + - uid: 16771 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-156.5 parent: 2 - - uid: 9547 + - uid: 16772 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-158.5 parent: 2 - - uid: 9548 + - uid: 16773 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-75.5 parent: 2 - - uid: 9549 + - uid: 16774 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-23.5 parent: 2 - - uid: 9550 + - uid: 16775 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-50.5 parent: 2 - - uid: 9684 + - uid: 16776 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-325.5 parent: 2 - - uid: 9686 + - uid: 16777 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-291.5 parent: 2 - - uid: 9854 + - uid: 16778 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-257.5 parent: 2 - - uid: 10096 + - uid: 16779 components: - type: Transform pos: 11.5,-242.5 parent: 2 - - uid: 10103 + - uid: 16780 components: - type: Transform pos: -1.5,-304.5 parent: 2 - - uid: 10104 + - uid: 16781 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-304.5 parent: 2 - - uid: 10105 + - uid: 16782 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-300.5 parent: 2 - - uid: 10108 + - uid: 16783 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-300.5 parent: 2 - - uid: 10134 + - uid: 16784 components: - type: Transform pos: 12.5,-242.5 parent: 2 - - uid: 10143 + - uid: 16785 components: - type: Transform pos: 11.5,-247.5 parent: 2 - - uid: 10159 + - uid: 16786 components: - type: Transform pos: 10.5,-247.5 parent: 2 - - uid: 10170 + - uid: 16787 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-244.5 parent: 2 - - uid: 10276 + - uid: 16788 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-244.5 parent: 2 - - uid: 10328 + - uid: 16789 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-244.5 parent: 2 - - uid: 10330 + - uid: 16790 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-261.5 parent: 2 - - uid: 10532 + - uid: 16791 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 - - uid: 11732 + - uid: 16792 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-379.5 parent: 2 - - uid: 11817 + - uid: 16793 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-379.5 parent: 2 - - uid: 11818 + - uid: 16794 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-377.5 parent: 2 - - uid: 12064 + - uid: 16795 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-183.5 parent: 2 - - uid: 12094 + - uid: 16796 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-261.5 parent: 2 - - uid: 12342 + - uid: 16797 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-325.5 parent: 2 - - uid: 12567 + - uid: 16798 components: - type: Transform pos: -8.5,-161.5 parent: 2 - - uid: 12880 + - uid: 16799 components: - type: Transform pos: 0.5,-366.5 parent: 2 - - uid: 12881 + - uid: 16800 components: - type: Transform pos: -0.5,-366.5 parent: 2 - - uid: 13350 + - uid: 16801 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-257.5 parent: 2 - - uid: 13379 + - uid: 16802 components: - type: Transform pos: 11.5,-80.5 parent: 2 - - uid: 13458 + - uid: 16803 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-136.5 parent: 2 - - uid: 14026 + - uid: 16804 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-129.5 parent: 2 - - uid: 14029 + - uid: 16805 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-142.5 parent: 2 - - uid: 14030 + - uid: 16806 components: - type: Transform pos: 10.5,-140.5 parent: 2 - - uid: 14037 + - uid: 16807 components: - type: Transform pos: 11.5,-140.5 parent: 2 - - uid: 14039 + - uid: 16808 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-142.5 parent: 2 - - uid: 14040 + - uid: 16809 components: - type: Transform pos: 10.5,-149.5 parent: 2 - - uid: 14041 + - uid: 16810 components: - type: Transform pos: 11.5,-149.5 parent: 2 - - uid: 14042 + - uid: 16811 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-151.5 parent: 2 - - uid: 14043 + - uid: 16812 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-308.5 parent: 2 - - uid: 14044 + - uid: 16813 components: - type: Transform pos: 14.5,-306.5 parent: 2 - - uid: 14045 + - uid: 16814 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-308.5 parent: 2 - - uid: 14046 + - uid: 16815 components: - type: Transform pos: 16.5,-306.5 parent: 2 - - uid: 14047 + - uid: 16816 components: - type: Transform pos: 15.5,-306.5 parent: 2 - - uid: 14048 + - uid: 16817 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-308.5 parent: 2 - - uid: 14085 + - uid: 16818 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-136.5 parent: 2 - - uid: 14086 + - uid: 16819 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-135.5 parent: 2 - - uid: 14087 + - uid: 16820 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-134.5 parent: 2 - - uid: 14088 + - uid: 16821 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-133.5 parent: 2 - - uid: 14092 + - uid: 16822 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-65.5 parent: 2 - - uid: 14261 + - uid: 16823 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-71.5 parent: 2 - - uid: 14262 + - uid: 16824 components: - type: Transform pos: 10.5,-80.5 parent: 2 - - uid: 14263 + - uid: 16825 components: - type: Transform pos: 9.5,-80.5 parent: 2 - - uid: 14264 + - uid: 16826 components: - type: Transform pos: 8.5,-80.5 parent: 2 - - uid: 14266 + - uid: 16827 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-82.5 parent: 2 - - uid: 14267 + - uid: 16828 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-82.5 parent: 2 - - uid: 14268 + - uid: 16829 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-82.5 parent: 2 - - uid: 14269 + - uid: 16830 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-82.5 parent: 2 - - uid: 14270 + - uid: 16831 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-71.5 parent: 2 - - uid: 14271 + - uid: 16832 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-71.5 parent: 2 - - uid: 14273 + - uid: 16833 components: - type: Transform pos: 9.5,-69.5 parent: 2 - - uid: 14274 + - uid: 16834 components: - type: Transform pos: 10.5,-69.5 parent: 2 - - uid: 14275 + - uid: 16835 components: - type: Transform pos: 11.5,-69.5 parent: 2 - - uid: 14283 + - uid: 16836 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-163.5 parent: 2 - - uid: 14332 + - uid: 16837 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-65.5 parent: 2 - - uid: 14604 + - uid: 16838 components: - type: Transform pos: -10.5,-131.5 parent: 2 - - uid: 14608 + - uid: 16839 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-244.5 parent: 2 - - uid: 14610 + - uid: 16840 components: - type: Transform pos: -9.5,-131.5 parent: 2 - - uid: 14611 + - uid: 16841 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-168.5 parent: 2 - - uid: 14733 + - uid: 16842 components: - type: Transform pos: -8.5,-131.5 parent: 2 - - uid: 14750 + - uid: 16843 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-23.5 parent: 2 - - uid: 14752 + - uid: 16844 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-21.5 parent: 2 - - uid: 14756 + - uid: 16845 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-23.5 parent: 2 - - uid: 14758 + - uid: 16846 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-21.5 parent: 2 - - uid: 14759 + - uid: 16847 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 2 - - uid: 14761 + - uid: 16848 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-23.5 parent: 2 - - uid: 14765 + - uid: 16849 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-50.5 parent: 2 - - uid: 14767 + - uid: 16850 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-48.5 parent: 2 - - uid: 14769 + - uid: 16851 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-50.5 parent: 2 - - uid: 14782 + - uid: 16852 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-75.5 parent: 2 - - uid: 14784 + - uid: 16853 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-77.5 parent: 2 - - uid: 14849 + - uid: 16854 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-104.5 parent: 2 - - uid: 14850 + - uid: 16855 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-102.5 parent: 2 - - uid: 14851 + - uid: 16856 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-104.5 parent: 2 - - uid: 14852 + - uid: 16857 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-102.5 parent: 2 - - uid: 14853 + - uid: 16858 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-104.5 parent: 2 - - uid: 14854 + - uid: 16859 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-102.5 parent: 2 - - uid: 14855 + - uid: 16860 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-102.5 parent: 2 - - uid: 14856 + - uid: 16861 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-104.5 parent: 2 - - uid: 14876 + - uid: 16862 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-131.5 parent: 2 - - uid: 14878 + - uid: 16863 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-132.5 parent: 2 - - uid: 14879 + - uid: 16864 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-131.5 parent: 2 - - uid: 14881 + - uid: 16865 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-129.5 parent: 2 - - uid: 14883 + - uid: 16866 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-131.5 parent: 2 - - uid: 14884 + - uid: 16867 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-129.5 parent: 2 - - uid: 14887 + - uid: 16868 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-131.5 parent: 2 - - uid: 14888 + - uid: 16869 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-129.5 parent: 2 - - uid: 14903 + - uid: 16870 components: - type: Transform pos: -7.5,-131.5 parent: 2 - - uid: 14908 + - uid: 16871 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-133.5 parent: 2 - - uid: 14909 + - uid: 16872 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-133.5 parent: 2 - - uid: 14910 + - uid: 16873 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-134.5 parent: 2 - - uid: 14918 + - uid: 16874 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-136.5 parent: 2 - - uid: 14931 + - uid: 16875 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-137.5 parent: 2 - - uid: 14932 + - uid: 16876 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-138.5 parent: 2 - - uid: 14933 + - uid: 16877 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-139.5 parent: 2 - - uid: 14934 + - uid: 16878 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-140.5 parent: 2 - - uid: 14935 + - uid: 16879 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-141.5 parent: 2 - - uid: 14936 + - uid: 16880 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-142.5 parent: 2 - - uid: 14937 + - uid: 16881 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-143.5 parent: 2 - - uid: 14938 + - uid: 16882 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-144.5 parent: 2 - - uid: 14939 + - uid: 16883 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-145.5 parent: 2 - - uid: 14940 + - uid: 16884 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-146.5 parent: 2 - - uid: 14941 + - uid: 16885 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-147.5 parent: 2 - - uid: 14942 + - uid: 16886 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-148.5 parent: 2 - - uid: 14943 + - uid: 16887 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-149.5 parent: 2 - - uid: 14944 + - uid: 16888 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-150.5 parent: 2 - - uid: 14945 + - uid: 16889 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-151.5 parent: 2 - - uid: 14977 + - uid: 16890 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-156.5 parent: 2 - - uid: 14981 + - uid: 16891 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-157.5 parent: 2 - - uid: 14982 + - uid: 16892 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-157.5 parent: 2 - - uid: 14983 + - uid: 16893 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-156.5 parent: 2 - - uid: 14984 + - uid: 16894 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-155.5 parent: 2 - - uid: 14985 + - uid: 16895 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-155.5 parent: 2 - - uid: 14986 + - uid: 16896 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-154.5 parent: 2 - - uid: 14987 + - uid: 16897 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-153.5 parent: 2 - - uid: 14988 + - uid: 16898 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-152.5 parent: 2 - - uid: 14989 + - uid: 16899 components: - type: Transform pos: -7.5,-153.5 parent: 2 - - uid: 14990 + - uid: 16900 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-153.5 parent: 2 - - uid: 15039 + - uid: 16901 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-185.5 parent: 2 - - uid: 15041 + - uid: 16902 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-183.5 parent: 2 - - uid: 15050 + - uid: 16903 components: - type: Transform pos: 8.5,-189.5 parent: 2 - - uid: 15051 + - uid: 16904 components: - type: Transform pos: 9.5,-189.5 parent: 2 - - uid: 15052 + - uid: 16905 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-190.5 parent: 2 - - uid: 15053 + - uid: 16906 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-191.5 parent: 2 - - uid: 15054 + - uid: 16907 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-192.5 parent: 2 - - uid: 15055 + - uid: 16908 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-193.5 parent: 2 - - uid: 15056 + - uid: 16909 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-194.5 parent: 2 - - uid: 15057 + - uid: 16910 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-195.5 parent: 2 - - uid: 15058 + - uid: 16911 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-196.5 parent: 2 - - uid: 15059 + - uid: 16912 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-197.5 parent: 2 - - uid: 15060 + - uid: 16913 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-198.5 parent: 2 - - uid: 15061 + - uid: 16914 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-199.5 parent: 2 - - uid: 15062 + - uid: 16915 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-200.5 parent: 2 - - uid: 15063 + - uid: 16916 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-201.5 parent: 2 - - uid: 15064 + - uid: 16917 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-202.5 parent: 2 - - uid: 15065 + - uid: 16918 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-203.5 parent: 2 - - uid: 15066 + - uid: 16919 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-204.5 parent: 2 - - uid: 15067 + - uid: 16920 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-205.5 parent: 2 - - uid: 15068 + - uid: 16921 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-206.5 parent: 2 - - uid: 15069 + - uid: 16922 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-206.5 parent: 2 - - uid: 15070 + - uid: 16923 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-202.5 parent: 2 - - uid: 15071 + - uid: 16924 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-201.5 parent: 2 - - uid: 15072 + - uid: 16925 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-204.5 parent: 2 - - uid: 15073 + - uid: 16926 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-203.5 parent: 2 - - uid: 15074 + - uid: 16927 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-202.5 parent: 2 - - uid: 15075 + - uid: 16928 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-193.5 parent: 2 - - uid: 15076 + - uid: 16929 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-192.5 parent: 2 - - uid: 15077 + - uid: 16930 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-191.5 parent: 2 - - uid: 15078 + - uid: 16931 components: - type: Transform pos: 11.5,-194.5 parent: 2 - - uid: 15079 + - uid: 16932 components: - type: Transform pos: 10.5,-193.5 parent: 2 - - uid: 15080 + - uid: 16933 components: - type: Transform pos: 8.5,-204.5 parent: 2 - - uid: 15081 + - uid: 16934 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-191.5 parent: 2 - - uid: 15113 + - uid: 16935 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-156.5 parent: 2 - - uid: 15114 + - uid: 16936 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-156.5 parent: 2 - - uid: 15115 + - uid: 16937 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-158.5 parent: 2 - - uid: 15116 + - uid: 16938 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-159.5 parent: 2 - - uid: 15149 + - uid: 16939 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-267.5 parent: 2 - - uid: 15150 + - uid: 16940 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-266.5 parent: 2 - - uid: 15151 + - uid: 16941 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-264.5 parent: 2 - - uid: 15189 + - uid: 16942 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-293.5 parent: 2 - - uid: 15190 + - uid: 16943 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-291.5 parent: 2 - - uid: 15191 + - uid: 16944 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-293.5 parent: 2 - - uid: 15192 + - uid: 16945 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-291.5 parent: 2 - - uid: 15786 + - uid: 16946 components: - type: Transform pos: -8.5,-166.5 parent: 2 - - uid: 16514 + - uid: 16947 components: - type: Transform rot: 3.141592653589793 rad @@ -108300,37 +107498,37 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-167.5 parent: 2 - - uid: 16951 + - uid: 16950 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-166.5 parent: 2 - - uid: 16952 + - uid: 16951 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-165.5 parent: 2 - - uid: 16953 + - uid: 16952 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-164.5 parent: 2 - - uid: 16954 + - uid: 16953 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-163.5 parent: 2 - - uid: 16955 + - uid: 16954 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-162.5 parent: 2 - - uid: 16956 + - uid: 16955 components: - type: Transform rot: 1.5707963267948966 rad @@ -108338,38 +107536,38 @@ entities: parent: 2 - proto: Wirecutter entities: - - uid: 9673 + - uid: 16956 components: - type: Transform pos: 22.367733,-317.24506 parent: 2 - proto: WoodenSupportBeam entities: - - uid: 2753 + - uid: 16957 components: - type: Transform pos: -4.5,-143.5 parent: 2 - - uid: 2754 + - uid: 16958 components: - type: Transform pos: -3.5,-145.5 parent: 2 - proto: WoodenSupportWallBroken entities: - - uid: 2755 + - uid: 16959 components: - type: Transform pos: -4.5,-147.5 parent: 2 - proto: Wrench entities: - - uid: 2294 + - uid: 16960 components: - type: Transform pos: -2.6635373,-80.719284 parent: 2 - - uid: 10023 + - uid: 16961 components: - type: Transform rot: -1.5707963267948966 rad diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 6b3afab6186..3985ea90c2a 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -252,6 +252,19 @@ - id: DoubleEmergencyOxygenTankFilled - id: DoubleEmergencyNitrogenTankFilled +- type: entity + parent: ClothingBackpackDuffelSyndicateBundle + id: ClothingBackpackDuffelSyndicateRaidBundle + name: syndicate raid suit bundle + description: "Contains the Syndicate's durable raid armor suit." + components: + - type: StorageFill + contents: + - id: ClothingOuterArmorRaid + - id: ClothingHeadHelmetRaid + - id: ClothingMaskGasSyndicate + - id: ClothingHandsGlovesCombat + - type: entity parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicateHardsuitBundle diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 1155fc387af..e849684e41d 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -1298,6 +1298,22 @@ categories: - UplinkWearables +- type: listing + id: UplinkClothingOuterArmorRaid + name: uplink-syndie-raid-name + description: uplink-syndie-raid-desc + icon: { sprite: /Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi, state: icon } + productEntity: ClothingBackpackDuffelSyndicateRaidBundle + cost: + Telecrystal: 8 + categories: + - UplinkWearables + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + - type: listing id: UplinkHardsuitSyndieElite name: uplink-hardsuit-syndieelite-name diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml index 4f602bb80bb..94bf9b46272 100644 --- a/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml +++ b/Resources/Prototypes/Corvax/Entities/Objects/Misc/books.yml @@ -20,29 +20,7 @@ layers: - state: book_expensive_crystal - type: Paper - content: Блюспейс кристаллы состоят из атомов, которые на Земле не встречались. Они определённо являются веществом, а не антивеществом. Элемент решено было назвать Космецием. - Чистые кристаллы космеция встречаются крайне-крайне-крайне редко и стоят целого состояния. Чаще всего встречается кристаллы сложного состава, а именно космеций с оксидом меди(II), космеций с оксидом кремния и железом. - Блюспейс кристаллы имеют сингонию, которая более нигде не встречается. Анизотропные. Имеют одно кристаллографическое направление, по которому происходит наиболее быстрая обработка, в частности раскол, слом и крошение. - Также известно. Что космеций обладает карбидообразующими свойствами. - - - В природе встречается и иная форма природных кристаллов космеция. А именно космеций с примесью оксида алюминия и хрома. - Данный тип кристаллов образовывается в зонах активности аномалий, после действия редспейс разломов, а также на астероидах и обломках, претерпевших контакт с редспейс-пространством. - Они так же анизотропны, и обладают такой же незнакомой земным материалам сингонией, но при этом имеют целых два направления удобного слома. - - - Истинный потенциал Блюспейс кристалла проявляется в его связанной работой с твёрдой плазмой. Плазма при распаде выделяет колоссальное количество энергии. - Которую способен поглотить и сохранить космеций. Далее он сможет постепенно отдавать эту энергию в специальные устройства. Но истинной уникальностью является то, что блюспейс кристалл способен стать основой для мощного квантового осциллятора, способного взаимодействовать напрямую с волнами вероятности де Бройля. - Этот эффект используется в модулях БС скачков для двигателей космических кораблей. - Отдельными свойствами выделяются кристаллы, измельчённые в мелкодисперсный порошок. - При взаимодействия такого порошка с углеродными материалами происходит образование карбида космеция. Данный материал приводит к невероятному квантово-механическому явлению. - Неопределённость Гейзенберга, указывающая на сильную неточность координат, начинает играть определяющую роль и невероятно усиливается, ибо предмет, созданный с использованием карбида космеция теряет чёткие внутренние границы, при относительной стабильности внешних. Таким образом можно создавать, скажем, рюкзаки или мензурки, чей внутренний объём сильно превышает объём внешний. - Качество данных уникальных свойств тем выше, чем ниже примесей в кристалле. При этом у космеция с примесью оксида меди самые худшие свойства, а у чистого космеция самые лучшие. - - - Космеций так же способен через неопределённость Гейзенберга влиять на волны вероятности де Бройля. Но в отличии от блюспейс кристаллов, редспейс не выборочно либо изменяют пространство, либо проводят колебания квантовых волн, а делают это одновременно. - Таким образом при накоплении в редспейс кристалле энергии, открывается возможность колебания волн вероятности для мгновенного перемещения некого объекта к кристаллу из более-менее конкретной выбранной точки. При этом данное действие способно разрушить кристалл, распылив его атомы в произвольной области пространства. - Из-за этой, по факту, телепортации редспейс кристаллы прозвали телепортационными кристаллами, или же телекристаллами. + content: book-expensive-crystal-contents - type: entity parent: BookLoreBase @@ -54,13 +32,7 @@ layers: - state: book_clones - type: Paper - content: По началу отношение к клонированию и к самим клонам было крайне отрицательным, немало людей страдали бионализмом (страх перед клонированными людьми). Они отказывались признавать клонов за не то что личностей, а за живых существ как таковой, некоторые принимали их за расходный материал, другие – за чудовищное надругательство над законами природы. В последствии это выливалось гонения на клонов, их убийствами и погромами их жилищ. Большими проблемами также стал вопрос о юридических правах клонов, их интеграция в общество, осмысления этичности самого процесса клонирования. - - - Апофеозом всего этого стал “Туртельский Кризис” []Данные удалены[] года, когда несколько десятков клонов начали забастовку на малой научной станции под названием “Туртель”, находившееся на орбите Марса и занимавшаяся секретными разработками компании NanoTrasen (именно поэтому на ней было довольно большое количество клонов-экипажа), работа станции была саботирована, а всему не клонированному персоналу было предложено эвакуироваться с неё. После того как все желающие эвакуировались, были и те, кто не являясь клонами решили все-таки остаться на станции тем самым выказав поддержку идеям клонов. Клоны и им сочувствующие смогли настроить аппаратуру станции на одну известную медиа-частоту и обратились по ней со своими требованиями, главным из которых было – предоставления всем клонам на территориях ОПЗ и объектах NanoTrasen равных с обычными гуманоидами прав. В результате долгих и не очень продуктивных переговоров, NanoTrasen не нашла ничего лучше, чем послать на станцию отряд зачистки, прибыв на место они устроили настоящую кровавую баню и когда уже подходили к мостику, были взорваны вместе со всей станцией одним из клонов-инженеров, который смог активировать ядерную боеголовку. Когда все произошедшие стало достоянием широкой публики репутации и активам NanoTrasen был нанесен огромный удар, а на многих планетах и станциях прошли митинги и забастовки в поддержку клонов. Массовые беспорядки нарастали, а СМИ лишь ещё больше подливали масло в огонь, так что ОПЗ приняла “Хартию Прав Клонов” и потребовала того же от NanoTrasen, что последние поспешили и сделать. - - - Примерно в те же времена был основан “Комитет по защите прав клонов” (КЗПК), который и по сей день занимается защитой прав клонов и предоставлением им юридических услуг. + content: book-clones-contents - type: entity parent: BookLoreBase @@ -72,16 +44,7 @@ layers: - state: book_DAM - type: Paper - content: Получение энергии из антиматерии – дело не хитрое, но опасное. Оно основано на эффекте взаимной аннигиляции материи и антиматерии при соприкосновении. При этом вся масса материи и антиматерии преобразуется в чистейшую световую энергию, то есть формирует мощнейшую фотонную вспышку. - - - Контейнеры с топливом представляют собой магнитные ловушки, где граммы антиматерии парят в полном вакууме, не соприкасаясь со стенками контейнера. - - - Двигатель Антиматерии состоят из ядер и стенок. Ядра являются реакционными камерами, где соприкасаются материя и антиматерия. Для простоты используют Гелий и Антигелий. В ядрах установлены мощнейшие преобразователи, способные улавливать как световую, так и тепловую энергию. Стенки ДАМ выполнены из взрывостойкой, сверхпрочной, плохо проводящей тепло композитов и покрытий с парамагнитными свойствами. - - - Важнейшей частью ДАМ является его контроллер. Это сложное устройство состоит из набора трубок и магнитных бесконтактных транспортёров, которые призваны безопасно и дозированно перенести антиматерию в ядро. Так же на контроллере присутствует консоль, показывающая количество остаток топлива по показанию сверхточных весов и система настройки впрыска. Двух условных единиц антиматерии хватает для полной работоспособности одного ядра ДАМ. При этом если превысить это значение, то преобразователи энергии начнут нагреваться и перегреваться. Со временим тепло может проникнуть в камеры с гелием. Увеличение давления выше критической точки спровоцирует нарушение целостности ДАМ, это выведет из строя магнитные системы, под действием гравитации или иных внешних сил антиматерия коснётся любого вещества в помещении и спровоцирует бесконтрольный уничтожающий взрыв. + content: book-dam-contents - type: entity parent: BookLoreBase @@ -93,18 +56,7 @@ layers: - state: book_faks - type: Paper - content: Схема работы Факса проста. Оператор пишет текст на бумаге нужного стандартного формата, ставит печать и отправляет в приёмное окно устройства. В области приёма располагается подвижная планка, перемещающаяся вдоль листа. На планке закреплён распределитель излучения, а над ним находится несколько источников фиолетового лазера низкой энергии. Фиолетовый лазер был выбран по причине наиболее благоприятного выполнения критерия Релея и повышения разрешающей способности. Распределитель превращает гауссовы пучки лазера в лазерную линию, которая проходит по всему листу. Помимо распределителя в нижней части планки располагаются датчики оптического излучения. Лучи света отражаются от бумаги и чернил и попадают в датчики. Датчики анализируют отражённые лучи и записывают в память факса показания, что и является сканированием текста. Особенность представляет место для печатей, ибо печати глав используют не стандартные чернила, чернила с определённым процентом примеси вполне конкретных металлических и жидко-органических добавок. А потому у факсов присутствует система Рентгеновской фотоэлектронной спектроскопии, для определения процентного атомного состава с поверхности печати. Все проценты так же заносятся в память. - - Все данные в памяти проходят процедуру шифрования, а затем разбиваются на два потока данных по особому алгоритму. После чего оба потока получают код протокола разбиение на потоки данных. проходят процедуру расчёта и присваивания кода исправления ошибок и скремблирования, так же каждому потоку данных прибавляется кодированный адрес станции и адрес конкретного факса на станции. Наконец эти потоки данных при помощи метода импульсного биполярного кодирования отправляются по системе дальней связи в пункт назначения. Все антенны дальней связи принимают сообщение с факса и считывает адрес станции. Сравнивают со своим адресом и отбраковывают пакеты данных, если он не подходит или принимают всю остальную посылку, если адрес совпадает. Далее специально выделенный ретранслятор отфильтровывает адрес станции и начинает рассылку на все факсы станции. Приёмное устройство факсов в свою очередь аналогичным образом производит сравнение адреса факса. - - - Целевой факс получает оба потока данных одновременно и извлекает их из частот методом анализа амплитуд. Затем дескремблирует оба потока данных, производит анализ кода исправления ошибок и исправляет ошибки. После система факса по полученному коду разбиения на потоки восстанавливает из двух потоков единый пакет данных, который затем декодируется и анализируется печатной системой факса. - - - Печатная система раздельно анализирует данные текста и данные снятые с области для печатей. На электрофотографический цилиндр при помощи коротрона наносится электрический заряд. Далее идёт облучение фиолетовым лазером участков, где должна остаться белая область (область без текста). Из-за действия света заряд в облучённых участках стекает. Далее ЭФЦ обсыпается заряженным цветным тонером, а потом к нему прижимается бумага, формируя таким образом отпечатанное изображение. После чего цилиндр очищается от воздействия заряда и от остатков печатного тоника. - - - Нечто аналогичное происходит и с печатью собственно печатей оригинала. Но факс использует обычные цветной тоник, но при этом использует пометку об соответствии пришедших закодированных данных состава оригинальной печати или несоответствия, по которым член командования может понять оригинальное ли ему пришло письмо или фальшивое. + content: book-faks-contents - type: entity parent: BookLoreBase @@ -116,61 +68,7 @@ layers: - state: book_famalis - type: Paper - content: Семья Дилли Джонсона - - Внутри государства джони выполняют роль полиции. Несмотря на суть государства, в нём сложили определённые законы, гарантом готовых выступает власть Дона. А джони занимаются патрулированием улиц городов, преследованием нарушителей, расследований противоправных преступлений и наказанием виновных. Само собой такая «полиция» не является для граждан бесплатной, а потому и существует термин «противоправное преступление». Граждане не заплатившие за услуги «полиции» могут так же быть подвергнуты атаке джони или не получают услуги расследования или охраны. Если же так получилось. Что джони защитили гражданине без оплаченной услуги. То тот обязуется выплатить пенни за оказанную услугу. В случае невыполнения этого обязательства его долг может быть продан другой Семье или же джони позаботятся о вечном покое неплатильщика. - - Во внешнем мире джони известны, как опасные налётчики. Они грабят торговые суда, совершают атаки на чиновников, банки, биржи, хранилища денег, драгоценностей, музеи. Они славятся своей вероломностью, быстрой расправой, а также молниеносными налётами «через парадный вход». При этом они же известны, как явные пижоны, любители моды и стиля. Их фирменной визитной карточной является длинное пальто, плащ или тренч, со знаком Семьи на спине – Устаревшей латинской буквой «D». лентой патронов вокруг и одной красной розой, продетой через букву. - - - Клан Сава - - Внутри государства савы занимаются охраной важных шишек, чиновников, управленцев, а также всех, кто наймёт их услуги. Это проффессиональные телохранители. Так же они ведают утилизацией и переработкой мусора. «Мусорная» мафия вызывает смех только у тех, кто ничего в этом не смыслит. Услуги вывоза мусора являются платными, самостоятельно утилизировать или перерабатывать не дадут крупные братки-савы, а при скоплении невыброшенного мусора гражданину будет попросту невозможно жить. А также его соседи вызовут джони, для урегулирования вопроса, которые церемониться не станут. Помимо мусора савы утилизируют самые разные вещи за сходную договорную цену. Так что все знают. Что если что-то или кто-то пропал бесследно, то вполне вероятно его останки находятся где-то у сав. Таким образом вся вторсырьевая продукция так же является продуктом работы заводов клана Сава. - - Во всей галактике савы – это пираты, налётчики. Грабители торговых судов. А также крупная мафия в области рэкета, похищений и запугиваний. Их услуги порой применяются для «протаскивания» нужных законов посредством «общения» с несогласными политиками, а также для уборки неугодных, лидеров оппозиций. Порой с помощью них даже подавляют мятежи. Но пока они не наняты, являются жуткой головной болью для логистов и охранно-сопровождающих ведомств. - - - Союз «Клевер» - - Клеверы чаще внутри стороны занимают сразу четыре ниши, а именно они владеют крупными юридическими бюро, они управляют планетарными и космическими тюрьмами, они владеют половиной планетарных дорог и третью космических торговых путей, а также они являются организацией государственной безопасности. Благодаря тому, что лучшие юристы работают на них или являются членами их Семьи, Союз «Кревер» часто может толковать законы в свою пользу, получая существенную выгоду. Владение частными тюрьмами позволяет взымать плату с планет и государств, чей преступник содержиться в тюрьме. В случае отказа или превышения срока оплаты, преступник выходит на волю и возвращается в родные края. Клеверы же не звери, готовы предоставить практически нищему билетик до родины, но увы… содержание обходится «так» дорого! При этом важно понимать, что перемещение по дорогам и космическим путям Клевера – дело платное, но оплата сугубо добровольная. Вы по доброй воле можете заплатить или отправиться другим путём. При этом пути клеверов самые защищённые и скоростные с отлично развитой инфраструктурой (тоже доход!) и прекрасным состоянием. Помимо этого, клеверы выступают, как контрразведка и занимаются расследованиями, связанными со шпионажем, саботажем, похищениями, убийствами и т.п. направленными от других государств. - - В остальной галактике клеверы – это лучшие независимые эксперты в области юриспруденции и политологии. За деньги они способны перевернуть практически любое дело с ног на голову и вывернуть своего юриста-оппонента наизнанку. Так же их знают, как отличных трассовладельцев в пространстве Братства и, местами, за его приделами. Для правоохранительных органов клеверы становятся прекрасным способом убрать особо опасных заключённых как можно дальше от себя и больше их не видеть, а вот разведывательные управления лютой ненавистью не любят эту Семью. - - - Организация «Ворбакс» - - Ворбаки или же ворбы выполняют роль тайной полиции государства. А также им принадлежат текстильные фабрики и плантации по всему сектору. Они шьют одежду и продают её. Вполне легальный бизнес. Также они владеют сетью гостинец и кафе. Как ни странно, но магазины ткани, одежды, пошивочные мастерские, гостиницы и кафе становятся для них отличными источниками информации, а также прекрасным способом перемещения и внедрения своих агентов. Они занимаются преследованием и устранением опасных для Собрания Семей, для Дона и для их Семьи членов общества, репортёров, беглых шпионов, оппозиционеров, бунтовщиков, революционеров. А также осуществляют шпионаж, разведку и саботажи на территории других государств. - - Контрразведывательные управления и организации гос.безопасности разных стран тратит достаточно много средств и усилий, борясь с ворбаками. При этом в тот же момент миллионы граждан по всей галактике знает компанию ткани и удобной одежды «Ворбакс Текст», небольшие кафе «Ворбачная» и сеть дешёвых, но уютных трёхзвёздочных гостинец «тенистый домик» - - - Семья Глазиуса Мора - - Внутри государства многие очень не любят членов семьи Глазиуса Мора. «Глаза», как их называют вызывают огромное количество трат. Глаза занимаются контролем качества, экологическим аудитом, налоговыми сборами, выявлением всяческих нарушений, а также трудовыми и всякими разными другими инспекциями. Само собой они прекрасные профессионалы и крайне быстро находят несоответствия. А так как именно они в своё время «протащили» ряд законов о стандартах производства, то имеют право сообщить о нарушениях джони или клеверам. Чтобы избежать неприятного общения с этими господами, владельцы предприятий платят глазам немалые суммы, а те взамен не только не докладывают правоохранителям, но ещё и за отдельную плату составляют подробные инструкции, как исправить недочёты. - - За пределами Братства глаза известны как опасные мошенники, воры, шпионы, кляузники, а ещё как успешные торговцы, игроки на бирже. Кроме того они оказывают услуги независимого аудита, консультации перед гос.проверками. Порой их нанимают даже в качестве кризис-менеджеров в некоторые филиалы компаний. - - - Семья Фенарио - - Семья Фенарио владеет казино, игорными домами, клубами эротического содержания, дорогими отелями, а также производством и продажей алкоголя. Все эти места приносят отличную прибыль, кроме того, позволяют собирать весомый компромат на различные грязные выходки очень разных людей с целью последующего шантажа. Помимо прочего на счётчике у Семьи стоят должники, которым приходится отрабатывать проценты самыми разными способами. Но при этом главы Семей Фенарио славятся своей щедростью! Порой они списывают долги своих должников, рождая тем самым кучу благодарных, а от того затем и преданных ему людей. Так же они вносят пожертвования на образование и благотворительность, так же устанавливая дружеские связи, создавая преданность или сажая некоторые заведения и организации на денежную иглу. Кроме того, благодаря огромным денежным запасам Семья спонсирует научные лаборатории, проводящие исследования вне рамок морали. - - В большом мире Семья Фенарио известна, как династия промышленников в области хорошего алкоголя. Дорогие вина, коньяк, портвейн, джин, ром, пиво и многое другое. Так же они почитаются за известных меценатов и щедрых благотворителях. Они имеют во владении несколько известных на всю галактику крупных отелей и пару легальных казино. Знакомство с ними охотно заводят представители политической элиты всех стран, кроме СССП. Впрочем, у органов государственной безопасности порой возникают подозрение, что ряд чиновников и политиков находится у Фенарио на долговом счету или на коротком поводке компромата. Но доказательства собрать пока не удаётся. - - - Фонд Мола Гола - - Граждане Межпланетарного братства могут, конечно, опасаться джони, сав или ворбаков, но членов Фонда они воистину боятся. Они похищают всех представителей разумных существ во всех уголках галактики, а затем делают из них рабов. Рабы продаются в самые разные безымянные места, где затем до самой смерти в нечеловеческих условиях вкалывают на полях, плантациях. Промышленных теплицах, шахтах, штольнях, рудниках, на заводах, фабриках и в цехах. Они теряют имена, имущество, родных, друзей, а всю личность им заменяет номер, отпечатанный на груди. Таким образом Фонд становится промышленным сердцем и одновременно рабовладельческим гигантом. - - - Семья Синий Камень - - Областью деятельности Семьи являются курительные смеси, кальянные заправки и наркотики. Самые разные, всех мастей. Массовые, авторские. В любом объёме. Регулярные запросы на наркотики от подсаженных на иглу обеспечивают стабильный доход, а распространения курева всех мастей позволяет легализовать точки сбыта в других системах. В галактике эта Семья известна под именем «Синекаменный табак». Мелкая компания, продающая табачные изделия. Она не попадает в поле зрения правоохранителей и умудряется тихонько распространять длинные сети дистрибуции наркотиков. - - - Союз Границ - - Название граничников говорит само за себя. Он взымает таможенную пошлину с ввозимых товаров. Проверяет на список запряжённых вещей. Так же управляют потоками контрабанды и занимаются защитой космического пространства и наёмным сопровождением в космосе. Сети контрабанды распространяются далеко за пределы сектора Арабеллы. Правоохранители всех стран стараются обрубать головы этой гидры, но Семья находит новые пути. При этом наёмные боевые корабли сопровождения граничников считаются элитными наёмными отрядами, которые пользуются популярностью у многих логистов всех корпораций и стран. + content: book-famalis-contents - type: entity parent: BookLoreBase @@ -182,13 +80,7 @@ layers: - state: book_grav - type: Paper - content: Генераторы гравитации отличаются лишь мощностью. Но в сути их работы лежат выдающиеся патенты НТ по работе с антиматерией и, в частности. С антиполем. В привычной механике мы привыкли, что объект с существенной массой создаёт в пространстве гравитационное искажение по законам Ньютона, из-за которого все объекты начинают к нему стремиться. - - - Генератор же гравитации представляет собой невероятное сочетание уникальной по своей природе плазмы с антиматерией. При облучении плазмы антигелием формируется не обычная фотонная вспышка, а вспышка гравитационного антиполя (оно же «поле искусственной гравитации»). Все тела, попадающие в действие антиполя начинают воспроизводить гравитационное искажение, не меняя свою стандартную массу, а формируя мнимую гравитационную массу. Таким образом у всего в поле действия генератора гравитации увеличивается ньютоновское притяжение друг к другу, не используя центробежное вращение, как в космических кораблях тысячелетней давности. - - - Незначительным побочным эффектом является формирование отрицательной мнимой массы у самого генератора, из-за чего его может переносить один человек, ибо генератор очень лёгкий. + content: book-grav-contents - type: entity parent: BookLoreBase @@ -200,72 +92,7 @@ layers: - state: book_halifat - type: Paper - content: Духовная состовляющая - - - Шахада - - Является первым и наиболее важным символом веры. «Свидетельствую, что нет божества достойного поклонения кроме Аллаха и ещё свидетельствую, что Мухаммад — посланник Аллаха». Является необходимой формулой для признания себя правоверным. Отдельно стоит отметить, что в понимании ражулитов нет принципиальной разницы между понятиями «Бог», «Создатель», «Вселенский перводвигатель», «Объект поклонения». Попытка разделить эти понятия может быть встречена абсолютно глухим непониманием. Шахада может быть использована религиозными деятелями или истинно правоверными, как дополнительный аргумент при свидетельствовании или доказательстве чего-либо другому лицу, если произносящий шахаду не лукавит, не пытается врать, утаить факты, а полностью уверен в том, что доказывает. - - - Намаз - - Является обязательным столпом для истинно правоверных и религиозных деятелей. Это ежедневный цикл молитв, который состоит двукратной утренней молитвы (фадж), четырёхкратной полуденной (зухр), четырёхкратной предвечерней (аср), трёхкратной вечерней (магриб) и четырёхкратной ночной (иша). Молитвы должны быть принесены с условием выполнения определённых правил. - - - Саум - - Необходимость совершать воздержание в течение священного месяца Рамодана, который отсчитывается по лунному (по Земле) исламскому календарю. Именно в этот месяц пророк Мухаммад получил с небес Коран. В ходе воздержания правоверным запрещается есть пищу от момента наступления утренней молитвы и до вечерней молитвы. Считается, что временем начала поста и утренней молитвы можно назвать тот момент, когда на улице при естественном свете получиться отличить белую нить от чёрной. В случае если пост был нарушен по уважительной причине, вроде тяжёлой болезни, ражулит должен восполнить пропущенный день одним днём поста или отдать нуждающимся пищу, эквивалентную по стоимости 3,3 кг муки. Позволяется отдавать муку, мясо, яйца, хлеб, овощи или фрукты. Если же причина была неуважительной, то есть воплощала недержание и слабость воли ражулита, то он будет обязан со следующего лунного месяца начать личный пост на 60 дней под присмотром священнослужителя или накормить досыта 60 бедняков. - - - Закят - - Выплата налогов Духовному собранию и в государственную казну всеми дееспособными, самостоятельными, взрослыми ражулитами. При этом пятая часть денег идущих к Духовному собранию идёт на развитие проектов и поддержку самого собрания, а остальные 80% идут на поддержку нуждающихся, коих достаточно особенно в пограничных регионах, где идут военные действия. Кроме нищих и обездоленных, деньги идут для выкупания должников или рабов мусульман у других государств или корпораций, так же на помощь в погашении долга тем ражулитам, что взяли в долг у мечети или Духовного собрания на организацию богоугодного дела. Среди прочего эти деньги идут в поддержку джихада и на развитие общей инфраструктуры государства для разного рода путников. - - - Хадж - - Священное паломничество. «Пророка Мухаммеда спросили - „Какое дело является наилучшим?“ Он ответил - „Вера в Аллаха и Его посланника“. Его спросили - „А после этого?“ Он ответил - „Борьба на пути Аллаха“. Его снова спросили - „А после этого?“ Он ответил - „Безупречный хадж“». Из-за веяний истории и времени до современных последователей Неоислама не дошли точные знания о том, как древние мусульмане совершали хадж. А потому Духовным Собранием было решено разделить хадж на три категории, а имено - - 1) Наиболее влиятельным и богатым предписывается, если их присутствие в данный момент не критично важно для страны, посетить пространство ОПЗ, прилететь на Землю, дабы вознести там свои молитвы на священной Мусульманской земле. Тоже предписывается и религиозным деятелям и истинно правоверным. - - 2) Правоверным среднего социального статуса и достатка предписывается совершить перелёт в систему София на планету Фараби и вознести молитву там, где первый Халиф решил основать Конгломерат. - - 3) Ражулитам малого достатка предписывается совершить хадж на своей планете до святыни, которую установил имам Духовного собрания при колонизации. - - - - Земная составляющая - - - Ограниченная монархия - - Халиф никогда не должен иметь полностью безраздельную власть. Его решения должны обсуждать и осуждаться, если они направлены на личную выгоду, а не на благо государства. А потому лидеры Министерств могут устроить голосование за наложения вета на приказ Халифа. При этом от Совета философии выступает два диалектических лидера. - - - Национализм - - Не должно быть различий, которые могут пошатнуть, устои страны. А потому гражданское и этническое должны быть отождествлены. Если кто-то хочет стать ражулитом, гражданином, то он должен отбросить свои культурные, расовые или кланово-национальные устои или привести их под образец устоев государства. - - - Народность - - Нужно максимально преодолевать все возможные классовые расслоения, приводя их лишь к необходимому минимуму. Это устанавливает равенство каждого ражулита перед законом, вне зависимости от его рода деятельности, достатка или положения. И нищий, и Халиф должны быть подсудны одинаково. - - - Лациизм - - Установление преимущественно светского характера государства. Недопускаяния религиозного права в государственную судебную систему. А также не полное подчинение образования религиозным канонам. - - - Этатизм - - Построение экономической системы, при которой государство будет играть лидирующую роль, что могло бы привести к национализации промышленных предприятий, банков, транспортных систем и прочего. Осуществление этого могло происходить как через реквизицию, так и через конфискацию. - - - Революционность - - Недопускание полумер. Если уж выкупать предприятие, то не долу владения, а целиком. Если уж отказываться от расовых устоев, то полностью. При этом с опорой на просвещение, прогресс и реформацию. + content: book-halifat-contents - type: entity @@ -278,16 +105,7 @@ layers: - state: book_redspace - type: Paper - content: Считается, что редспейс в общем случае невозможно полностью рационализировать и понять. Учёные и исследователи потратили многие годы и многие тысячи жизней на исследование этого пространства, а узнали практически ничего. Тем не менее в данный момент существует научная теория, являющаяся доминирующей в научном мире. Согласно данной теории Редспейс является категорически иным видом пространства. Когда учёные заходят в тупик при своих суждениях, они пытаются сделать шаг в другую сторону и найти вдохновение в другой сфере. В данном случае идеи существования других миров, множественных вселенных или даже астрал из оккультизма вкупе с вероятностным характером квантовой механики навели на мысль, что вполне может существовать иной вид пространства. Редспейс. - - - Итак, по большому счёту Редспейс – это тоже евклидово пространство, как и наше, но при этом, если единичный отрезок в нашем пространстве можно назначить один орт конкретной бесконечно малой длины (или варьируемой малой длины под конкретную задачу), то в пространстве Редспейс ортом выступает функция или же оператор, притом для каждого орта задаётся своя функция. Таким образом каждая точка пространства задаётся не просто координатами и сочетанием нескольких функций. Это было бы сложно, но возможно предсказать, если бы Редспейс, как и наше привычное пространство, имел всего три координатные оси, но различные эксперименты дают основания предположить, что у него куда больше осей, что позволяет внести его в класс предгильбертовых. - - - Учёные могут лишь предполагать количество осей и орты-операторы, которые по ним отложены. Тем не менее уже есть определённые идеи описания процессов данного пространства. Каждая точка является сочетанием операторов квантовой вероятности, импульса, координаты и понятия существования. Неотъемлемым элементом динамики подобных пространств является оператор эволюции. Он воплощает в себе вариант изменения пространства. - - - По вышеизложенным причинам любой объект находящийся в Редспейсе и живущий (существующий) по его законам способен мгновенно поменять свой импульс в определённых пределах с определённой вероятность, совершить мгновенное перемещение с определённой вероятностью, пропасть совсем с определённой вероятность или неожиданно восстановить себя во времени с определённой вероятностью. При этом используемый оператор вероятности оказывается чётным относительно времени, то есть при подстановки отрицательного времени в расчёт (то есть время идущее назад) оказывает, что вероятность всё ещё есть и вполне положительная из-за несходящейся системы и из-за практически повсеместно положительного определённого скалярного произведения векторов различных осей. Таким образом в Редспейсе может восстановиться нечто, существовавшее очень много лет и тысяч лет назад. И наоборот. + content: book-redspace-contents - type: entity parent: BookLoreBase @@ -299,88 +117,7 @@ layers: - state: book_ships - type: Paper - content: (S - Sigma) МКК – маленькие космические корабли. - - К гражданским МКК относятся корабли следующий назначений. - - 1) Шаттлы. Такие корабли зачастую не превышают нескольких десятков метров в длину и выполняют вполне тривиальные функции такие, как перевозка пассажиров и грузов. - - 2) Добывающие суда. Не превышают пары метров в длину и занимаются добычей, транспортировкой, а также в некоторых случаях переработкой полезных ископаемых. - - 3) Персональные МКК. Не превышают пары метров в длину и рассчитаны на перевозку от двух, до пятнадцати гражданских лиц. - - - К военным МКК относят корабли несущие на себе какое либо вооружение. Они имеют следующие назначения. - - 1) Истребитель – Разведчик (ИР). Такие МКК используют для разведки и сбора информации. Они очень маневренны и быстры, но практически не несут на себе какого либо вооружения и брони. - - 2) Истребитель – Перехватчик (ИП). ИП используются в массовых сражениях. Зачастую несут на себе слабое вооружение не способное нанести существенного вреда крупным кораблям. - - 3) Истребитель – Бомбардировщик (ИБ). ИБ – это более крупный собрат простого истребителя, он менее манёвренный, при этом он имеет улучшенное бронирование, а также несёт на себе пару мощных боеголовок, способных нанести серьёзный вред крупным судам. - - - - (T – Teta) СКК – средние космические корабли. - - К гражданским СКК относятся. - - 1) Космические лайнеры. Данные суда способны перевозить несколько тысяч разумных существ. Зачастую они используются для межсистемных перелётов. - - 2) Космические грузовые корабли, танкеры. Используются для перевозки огромного объёма грузов на очень дальние расстояния. - - - К военным ССК относятся. - - 1) Фрегаты. Данный тип кораблей слабо вооружён и не способен оказать достойное сопротивление кораблям своего класса. Зачастую он используется для сопровождения некрупных конвоев или в составе крупных боевых групп, в качестве корабля ПВО – ПРО. - - 2) Корветы. Данный тип кораблей несёт на себе среднее вооружение. Обычно входит в состав средних боевых групп. Также он способен выступать в роле основного боевого корабля в составе сверхмалых боевых групп. - - 3) Эсминец. Данный тип кораблей считается универсальным и несёт на себе оружие, которое считается самым сильным в своём классе кораблей. Зачастую появляться в составе средних боевых соединений и выполняет роль ударного корабля. - - - - (O – Omicron) СККК – Средне крупные космические корабли. - - 1)Лёгкий крейсер. Это более подвижная и более слабо вооружённая версия простых крейсеров. Предназначенная для сопровождения и охранения более крупных судов, либо же для патрулирования в составе небольшой боевой группы. - - 2) Авианесущий крейсер. Данный тип кораблей представляет собой небольшие авианосцы несущие на себе некрупные боевые группы. Предназначен для прикрытия более крупных судов. - - - - (G – Gamma) ККК – Крупный космический корабль. - - 1) Тяжёлый авианесущий крейсер. Данный тип представляет собой универсальные корабли предназначенные в основном для уничтожения авианосцев всех классов. Несут авиакрыло равное по численности авиакрылу лёгкого авианосца, и в дополнение к нему многоцелевые или противокорабельные ракеты. - - 2) Броненосный крейсер. Данный тип, это убийцы крейсеров. Основное назначение уничтожение кораблей класса выше. Данные корабли можно считать Недолинкорами. - - 3) Монитор артиллерийский. Данный тип кораблей является ещё более урезанным вариантом линкоров, по существу являющимся подвижным аналогам орбитальных артиллерийских платформ. Отличаются весьма низкой мобильностью, но компенсирующий это высокой огневой мощью. - - - - (B – Beta) ТКК – Тяжёлые космические корабли. - - 1) Линкор. Линкоры - это наиболее мощные артиллерийские корабли, хорошо бронированы, но не слишком подвижны. Предназначены для уничтожения кораблей всех классов, орбитальных сооружений и орбитальной бомбардировке поверхности планет. - - 2) Линейный крейсер. Это облегченная, за счёт бронирования версия линкора. Более подвижный линейный крейсер предназначен не только для линейного сражения, но и для рейдерских и разведывательных операции. Прикрытия флангов эскадры, сопровождения авианосцев. - - 3) Тяжелый (ударный) авианосец. Эти корабли являются крупными авианесущими единицами, предназначенными для уничтожения силами авиагруппы, космических целей всех типов, непосредственной поддержки войск, завоевания превосходства в пространстве, ударных операций, обеспечения ПВО\ПКО\ПРО баз, а также поддержке наземных соединений. - - 4) Десантный авианосец. Это разновидность тяжелых авианосцев, предназначенная для базирования и десантирования пехотных соединений. Обычно несколько превосходят по габаритам тяжёлые авианосцы. - - - - (A – Alpha) СТКК – Сверх тяжёлые боевые корабли. - - Единственным представителем кораблей данного класса является Дредноут. Дредноут или «суперлинкор». Дредноуты - это самые большие корабли, совмещающие в себе мощь линкора и способности тяжелого авианосца. Обычно в составе всего космического флота одной страны, находится не более двух таких кораблей, поскольку даже постройка одного такого корабля считается сверх затратной, а уж их содержание может обходится, не меньше чем затраты на содержание какой-нибудь около столичной планеты. - - - - ОКК – Особые космические корабли. - - 1) Исследовательские космические корабли, дальнего действия. Используются для изучения ещё неизученных секторов космоса. Запаса хода, как и полезной нагрузки им хватает на несколько лет. Также они оснащены полноценными лабораториями и иногда несут на себе мелкое вооружение. - - 2) Колониальные космические корабли, используются для заселения недавно терраформированных планет. Несут на себе несколько десятков тысяч живых существ, не находящихся в стазисе, а также пару сотен тысяч живых существ находящихся в состоянии гибернации. - + content: book-ships-contents - type: entity parent: BookLoreBase @@ -392,137 +129,7 @@ layers: - state: book_zp - type: Paper - content: Базовая криптовалюта начисляется за каждую минуту пребывания сотрудника на смене. Учитывается каждая полная минута, все секунды в зачёт не идут. Базовая сумма начисления умножается на коэффициент, который зависит от типа договора, должности сотрудника, назначении станции и цели станции. В случае применения санкции к отделу, коэффициент всех сотрудников отдела отдела признается равным единице. - - - Формула расчета заработной платы за 1 смену -- ЗП = БС х min х Кд х Кр х Кнс х Кцс х Кп х Кш Обнулением или отменой коэффициента признается приравнивание коэффициента к единице. Базовая ставка равна 10 единицам. - - - Коэффициенты по договорам -- Бессрочный– 1,5 Долгосрочный – 1,3 Среднесрочный - 1,1 Краткосрочный – 1,05 - - - Коэффициенты по рождению -- Родился на территории ОПЗ – 1,05 Родился на территории корпорации – 1,10 Родился на иных территориях - 1,0 - - - Коэффициенты по назначении станции -- Административная станция – 2,0 Бизнес станция – 1,6 Исследовательская станция – 1,7 Экспериментальная станция – 1,8 Коммерческая станция – 1,3 Медицинская станция – 1,2 Оборонная станция – 1,7 Транспортная станция – 1,0 - - - Коэффициенты по цели станции -- Отдел напрямую занимается целью станции – 1,5 Отдел косвенно связан с целью станции – 1,25 Отдел не занимается целью станции – 1,0 - - - Коэффициенты по профессиям - - Повар -- 1 - - Уборщик -- 1 - - Сервисный работник -- 1 - - Священник -- 1 - - Репортёр -- 1 - - Музыкант -- 1 - - Мим -- 1 - - Клоун -- 1 - - Зоотехник -- 1 - - Ботаник -- 1 - - Боксёр -- 1 - - Библиотекарь -- 1 - - Бармен -- 1 - - Грузчик -- 1 - - Технический ассистент -- 1 - - Кадет СБ -- 1 - - Научный ассистент -- 1 - - Интерн -- 1 - - - Офицер СБ -- 1.1 - - Врач -- 1.1 - - Инженер -- 1.1 - - Психолог -- 1.1 - - - Химик -- 1.2 - - Утилизатор -- 1.2 - - Атмосферный техник -- 1.2 - - - Парамедик -- 1.3 - - Детектив -- 1.3 - - Учёный -- 1.3 - - - Глава персонала -- 1.4 - - Квартирмейстер -- 1.4 - - - Смотритель -- 1.5 - - Ведущий врач -- 1.5 - - Ведущий инженер -- 1.5 - - Инструктор СБ -- 1.5 - - Ведущий учёный -- 1.5 - - - Старший инженер -- 1.8 - - Научный руководитель -- 1.8 - - Главный Врач -- 1.8 - - Глава Службы Безопасности -- 1.8 - - - Капитан -- 2.5 - - - Коэффициенты штрафов - - Нахождение в заключении – 0. Отчет о времени заключения составляет смотритель. Нахождение в медицинском отделе на лечении в обычном состоянии - 0,9. Отчет о времени лечения составляет лечащий врач. Нахождение в медицинском отделе в критическом состоянии – 0,8. Отчет о времени болезни составляет лечащий врач. Нарушение стандартных рабочих процедур - 0,8. Отчет о времени нарушения составляет глава отдела или АВД. Нахождение в нетрезвом состоянии на рабочем месте – 0,5. Отчёт о времени составляет руководитель отдела. Гибель вне станции – 0,1. Факт формируется после окончания смены. Гибель на станции или при исполнении должностных обязанностей – 0,2. Факт формируется после окончания смены. Отстранение от должности и нарушение СРП При отстранении от должности или нарушении СРП все коэффициенты замораживаются до отдельного разбирательства после окончания смены. По итогам разбирательства итоговая заработная плата рассчитывается отдельно. - - - Гибель - - В случае гибели сотрудника и невозможности клонирования его заработная плата выплачивается ближайшим родственникам. Если таковых нет, удерживается в пользу корпорации. В случае возможности клонирования, коэффициент гибели признается равным 0,5. Страхование жизни и здоровья Во время пребывания на станции каждый сотрудник и посетитель имеет право безвозмездного использования результатами труда других сотрудников станции и находящимися в раздатчиках ценностями (активами, продуктами, товарами). При получения инвалидности по итогу смены, компания назначает выплату на установку замены потерянной сотрудником конечности. По достижению старости компания выплачивает пенсионное вознаграждени - Ежемесячно 30% от среднемесячной заработной платы не работающим пенсионерам Ежемесячно 10% от среднемесячной заработной платы в дополнение к их заработной плате. Среднемесячная заработная плата рассчитывается, как сумма заработной платы за весь период работы, разделенная на количество полных месяцев работы на корпорацию. - - - Прибыль станции - - Из результата деятельности станции на конец смены (результат/прибыль работы отдела снабжения) станция удерживает 75%. Квартирмейстер получает 3% от прибыли станции вне зависимости от участия в доставке грузов. Остальная часть распределяется в виде премии между сотрудниками станции, сформировавшими доход. Например, Атмосферный техник создал газ, грузчик отнес его в отдел снабжения, оба делят доход между собой. Второй пример - Утилизаторы притащили на станцию двигатели с обломка, которые были проданы. Утилизаторы делят доход между собой. - - - Растраты - - Растратами признаются любое нецелевое использование средств, предоставленных корпорацией. Например, строительство космической техники в то время, когда цель – исследование артефактов. При таком использовании средств станции, виновный лишается всех коэффициентов выше единицы, а результат его деятельности признается собственностью корпорации. В любых нестандартных ситуациях специальная комиссия назначает дополнительные штрафные санкции. - - - Дополнительное премирование - - Награждение медалью добавляет 50% к итоговой заработной плате. Быстрое окончание смены добавляет 50% к заработной плате руководителей отделов. Центральное командование корпорации может по своему усмотрению назначить дополнительную премию по итогам смены. + content: book-zp-contents - type: entity parent: BookLoreBase @@ -530,153 +137,35 @@ name: Политическая система СССП description: Что там у них делается в этом их социализма... components: - - type: Sprite - layers: - - state: book_polit_USSP - - type: Paper - content: Первые среди равных - - Важнейшим управляющим законодательным органом СССП является Политическое бюро Социалистической Партии Союзных планет. В него входят граждане, достигшие наибольшего политического и партийного влияния в составе партии. Обычно в Политбюро входят не очень много членов. В разное время их число колебалось от 5-и до 16-ти. На данный момент в него входят 9 членов. Тартышников А.П. Морроу Д.В., Огнева А.В., Р.Р. Старшинов, Пламя Коллективизма, Вариван’Зен, Пульт Валливс, Ровкуд Красноусая, Укар’вар Дари. - - - Президиум и Советы - - Первые отцы революции боялись, что в будущем найдутся индивидуумы, которые, преисполнившись хитростью, будут делать вид, что верны идеалам коммунизма, а на деле проникнут в верха власти, узурпируют её и отбросят страну назад от идеалов коммунизма. Они не могли придумать, как не пустить таких «товарищей» во власть. Однако, было найдено решение, как их полномочия возможно ограничить. - - Был основан Президиум Совета СССП — верховный совет, который включал в себя трёх делегатов из каждой системы Союза. Отбор в делегаты происходил по достаточно длинной схеме. Сообщества крестьянства, рабочих и деятелей образования каждого города выдвигали своих кандидатов. Из делегатов создавался Совгор (Совет города). В Совгор, в зависимости от размеров поселения, входило от 9 до более чем сотни делегатов. Тройку лучших делегатов (крестьянин-рабочий-преподаватель) выдвигали на должность делегата планеты. Из них создавался Совплан (Совет планеты). В него входило по три делегата с каждого города. И трёх лучших выдвигали на должность делегата системы, из которых создавался Совсис (Совет системы), и уже оттуда трое лучших попадали в Президиум СССП. - - Президиум занимается обсуждением законопроектов, выдвигаемых Политбюро, созданием списка замечаний, просьб по уточнению. Кроме того, Президиум имеет право вето на ввод какого-либо распоряжения или закона Политбюро. В возможностях Президиума есть право на собственную разработку законов и постановлений, которые также могут быть запрещены или исправлены. - - - Народные секретариаты и Генеральный Секретарь - - Для создания дополнительной объединяющей граждан силы изначально формировался культ личности Генерального Секретаря, члена Политбюро, выбранного в качестве главы государства «первого среди равных» и одобренного Президиумом. Он должен был стать особой фигурой, сочетающей в себе лицо законодательной власти от Президиума, Политбюро и исполнительной власти Секретариатов. На данный момент роль генсека исполняет Р.Р. Старшинов. - - Исполнительная власть, коей управлял и контролировал генсек, была сосредоточена в двенадцати народных секретариатах, которыми руководят нарсеки (народные секретари). Секретариаты осуществляют свою власть через комитеты разного уровня - Сисисполкомы, Планисполкомы, Горисполкомы и Райисполкомы (Системные, планетарные, городские и районные исполнительные комитеты соответсвенно). Комитеты занимаются местным надзором за исполнением всех постановлений и законодательной базы государства в районах своего действия. Очень часто разные комитеты размещаются в одном здании, которое граждане чаще всего так и зовут — Исполкомом. Как правило, милиция, прокуратура и ВГБ базируются в отдельных зданиях. - - - Суды и главное управление красных комиссаров - - Судебная система СССП делится на две ветви - Суды гражданских дел и Главное Управление Красных Комиссаров (ГУКК). - - Суды гражданских дел так же классифицируются по величине области действия. Районные, городские, окружные, планетарные, системные, секторальные и верховный. Они разбирают дела разного уровня по всем видам преступлений или тяжб, которые могут пройти по отношению к гражданам, комитетам или иными собраниями. - Главное Управление Красных Комиссаров занимается разбором преступлений, совершенных сотрудниками милиции, Красной армии или (не часто, но порой случается) сотрудниками прокуратуры и ВГБ. Так как в Союзе считается, что гражданин в форме должен быть опорой и поддержкой для всего населения СССП, то в случае выявления совершенного ими преступления, их карают куда серьёзней, нежели гражданских лиц. Активно применяются телесные наказания, тяжелейшие исправительные работы и расстрелы. - - -- type: entity - parent: BookLoreBase - id: BookMirt - name: Культурный столп Империи Миртана - description: Может быть, если поняти их культуру, то можно и налажить связи? - components: - - type: Sprite - layers: - - state: book_cult_mirt - - type: Paper - content: В данный момент в народе доминирует одна единственная идея. - - «Все умрут. Гибель неминуема. Ничто это не остановит. Всё что мы можем – отсрочить конец галактики». Бесконечный рой ксеноморфов показал тщетность существования человечества. Но миртранийцы давно преодолели панику и свыклись с мыслью о своей смерти. Они всегда готовы умереть. Они верят, что являются щитом для Галактики. Не несокрушимым. Щитом с ограниченой толщиной, что истончается с каждым днём. - - Они осознают, что умрут сами. Что умрут их любимые родители. Что умрут их близкие, их друзья. Что, возможно, им придётся хоронить своих детей. Или то что от них осталось. А возможно их детей сожрут с концом и на могильном холмике окажется лишь небольшой памятный камень с фотографией того, от кого не осталось и мезинца. Эта идея живёт в каждом гражданине, но особенно она сильна у жителей планет-крепостей в Линии Надежда и Любовь. Каждый гражаднин Империи проходил базовую военную подготовку и умеет пользоваться оружием. Но жители Линий могут соревноваться в умении с солдатами некоторых ЧВК и стран. Они дисциплинированы, живут по практически военному расписанию, знают где находятся склад с оружием и по первому протяжному и рвущему душу сигналу тревоги готовы стиснуть зубы, сжать кулаки до крови, и, стараясь игнорировать подступающие слёзы, заранее хороня своих детей, друзей и близких, идти к ближайшему арсеналу и вооружаться, дабы отсрочить момент гибели человечества хотя бы на мгновение. - - Так умирали люди на планетах-крепостя Линии Вера. Так умирают люди на планетах Линии Надежда прямо сейчас. Так готовы умирать люди на планетах-крепостях Линии любовь. - - И они не уедут. Не улетят. Не потому, что тоталитарное государство их не выпустит. Нет. Просто… они понимают, что гибель неминуема в любом случае. Так лучше встретить с оружием в руках! Когда закончатся патроны – штыками! Когда сломаются штыки – ножами! А когда затупится нож, выгрызать ксеноморфам глотки ногтями и зубами. Ибо нужно отсрочить неминуемое… Хоть на одну наносекунду. Хоть на одного ксеноморфа. - - Легенды гласят о моментах, когда Империя была в шаге от падения. Тогда являлся Император Миртан и создавал Проявление! Оно помогало уничтожить угрозу, но и заставляло Императора угаснуть… А потому каждый гражданин понимает, что Император это не просто небожитель, а буквально равный им спаситель Человечества. Потому он всеми любимый и почитаемый. - - Согласно религиозным убеждениям души погибших от ксеноморфов не пропадают, а попадают в Цитадель Миртана! В небесный чертог вечных солдат. Там они готовятся к последнему Бою императора. Когда Три Линии падут, когда рой захлестнёт Империю, когда дойдёт до границ ОПЗ, Явится Император Миртан и его павшее воинство в последний раз. Они остановят рой на один год и один день, чтобы дать галактике подготовиться к бою. Затем они передадут флаг и бремя смерти ОПЗ и исчезнут в бесконечности космоса… - - Отдельное место в культуре получил нож. Нож, кинжал, кортик, скарамасакс и всё подобное есть буквально у каждого при себе. Это не только инструмент и средство выживания, это оружие последнего боя. Нож в Империи является символом конца, самоотверженности и, как ни странно, надежды. Многие гражданские Линий, что пережили бой с ксеноморфами делают себе татуировку в виде ножа. Чаще всего на видном месте. Некоторые прямо на лице. Многие декоративные элементы делаются в виде черепов и костей, а названия даются по староземным мотивам смерти. Потому можно нередко встретить корабли «Анубис», «Аид» или «Харон» или подразделения «Костяные войны», «Мёртвые головы», «Бегущие к гибели». - -- type: entity - parent: BookLoreBase - id: BookGior - name: ГИОР - description: Что такое Глобальная инициатива Объединённых Рас - components: - - type: Sprite - layers: - - state: book_gior - - type: Paper - content: ГИОР (Галактическая Инициатива Объединённых Рас) – это исполнительный комитет межрасового надгосударственного общения, сформированный ОПЗ, после обнаружения первых инопланетных рас (Унатхов, Дворфов и Ниан) , идейно ГИОР пришла на замену ООН, организации некогда созданной на земле. По сути, целью ГИОР является урегулирование разнообразных конфликтов в галактике, собрание её участниц на заседаниях, которые проводятся раз в 5 лет, выдвижение каких, либо резолюций а также, контроль за соблюдением принятых законов. - - - Сама ГИОР как-бы разделена ещё на 4 организации, которые отвечают за урегулирование конкретных ситуаций. - - Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ) - - Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ) - - Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ) - - Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР) - - - 1) Галактическая Инициатива Объединённых Рас и Межрасового Урегулирования (ГИОРиМУ), является достаточно старым формированием и именно она изначально и носила название ГИОР и только позже, после формирования других государств она была переименована в ГИОРиМУ. Целью данной организации является урегулирование вопросов касаемых межрасового общения, а также отслеживание за соблюдением ОПРС (Общие Права Разумных Существ), важным уточнением будет то, что при нарушении ОПРС каким либо государством или корпорацией, эту ситуацию будет рассматривать Всегалактический Суд Разумных Существ. - - - В состав данной организации входят все расы галактики, интересы которых представляют их представители. От каждой расы может выдвигаться несколько представителей, и их число зависит от численности самой расы (1 представитель на 10 миллиардов представителей этой расы). Из-за того, что точное число представителей какой-либо расы подчитать достаточно сложно, общим решением принято округлять число представителей в меньшую сторону. Также важным уточнением будет, что ГИОРиМУ является надгосударственным формированием, а значит, что представители рас могут являеться гражданами разных государств. - - - В состав ГИОРиМУ входят. - - Люди – порядка 71 представителей - - Унатхи – порядка 31 представителей - - Дворфы – порядка 35 представителя - - Слаймолюды – порядка 11 представителей - - Нианаы – порядка 34 представителя - - Воксы – 1 представитель (выступает в качестве наблюдателя) - - Арахниды – порядка 47 представителей - - Дионы – 1 представитель (выступает в качестве наблюдателя) - - Таяраны – порядка 46 представителей - - Вульпканины – порядка 60 представителей - - - 2) Галактическая Инициатива Объединённых Рас и Государственного Урегулирования (ГИОРиГУ), появилась после обнаружения ОПЗ Империи Миртана, а также после откола СССП и СНК от ОПЗ. Целью ГИОРиГУ является урегулирование всех межгосударственных вопросов, также ГИОРиГУ обладает контингентом оранжевых касок (OH – Orange Helmets), которые занимаются поддержанием галактического порядка, путём принудительных мер и действий. Также на заседаниях ГИОРиГУ, могут подписываться пакты, которые обязательны к исполнению всеми государствами, подписавшими оные. От каждого из государств в ГИОРиГУ выступает по одному представителю. - - - В состав ГИОРиГУ входят. - - ОПЗ (Объединённое Правительство Земли) - - Государства Сателлиты ОПЗ – Унатхи, Таяраны, Вульпканины - - Союз Советских Социалистических Планет - - Умпорская Федерация - - Великая Империя Нотда - - Ноократия Эранта - - СНК (Союз Независимых Колоний) - - Халифатский Божественный Конгломерат - - - В качестве наблюдателей в ГИОР находятся. - - Империя Миртана - - Корпорации Большой Пятёрки - - - 3) Галактическая Инициатива Объединённых Рас и Корпоративного Урегулирования (ГИОРиКУ), была создана относительно недавно в 2781 году, в ответ на разрешение, выданное правительством ОПЗ, корпорациям на освоение регионов фронтира. Занимается контролем за исполнением принятых резолюций и соглашений, а также подписанием новых. При этом ГИОРиКУ имеет огромную когорту своих представителей, которые постоянно находятся в разъездах по всей галактике и занимаются отслеживанием нарушений. - + - type: Sprite + layers: + - state: book_polit_USSP + - type: Paper + content: book-ussp-contents - 4) Совет Безопасности Галактической Инициативы Объединённых Рас (СовБезГИОР), самая «молодая» организация в составе ГИОР. Занимается тем, что отслеживает всевозможные угрозы галактике, а также старается их предотвратить. Самой первой и на данный момент единственной задачей является отслеживание ситуации с ксеноморфами, а также всевозможная поддержка государств, которые занимаются урегулированием данной проблемы. Постоянными членами СовБезГИОР) являются ОПЗ и Империя Миртана (не смотря на статус наблюдателя в заседаниях самой ГИОРиГУ, с недавних пор Империя Миртана обладает особым правовым статусов в СовБезГИОР из-за того, что именно она является щитом галактики от угрозы ксеноморфов). +- type: entity + parent: BookLoreBase + id: BookMirt + name: Культурный столп Империи Миртана + description: Может быть, если поняти их культуру, то можно и налажить связи? + components: + - type: Sprite + layers: + - state: book_cult_mirt + - type: Paper + content: book-mirt-contents - Также в состав СовБезГИОР входят все остальные государства и организации, которые входят в ГИОРиГУ +- type: entity + parent: BookLoreBase + id: BookGior + name: ГИОР + description: Что такое Глобальная инициатива Объединённых Рас + components: + - type: Sprite + layers: + - state: book_gior + - type: Paper + content: book-gior-contents - type: entity parent: BookLoreBase @@ -688,23 +177,7 @@ layers: - state: book_snk - type: Paper - content: С ОПЗ ведётся постоянная борьба за право на существование. СНК считает ОПЗ жадными до власти и денег тиранами, которые не уделяют должного внимания как народу, так и развитию своего рынка, черпая деньги с любых источников и невзирая на благосостояние своих граждан – именно так вела себя ОПЗ на момент формирования условий для революции СНК. Грызня между СНК и ОПЗ не прекратится до тех пор, пока ОПЗ будет иметь претензии как на территории СНК, так и на сам факт его существования. - - Немалая часть бюджета уходит на попытки упрочнить политические отношения с Умпорской Федерацией. В этом правительство СНК находит крайне благодатную почву, ибо Умпорская Федерация страдает от внутренних кризисов, постепенно становясь зависимой от поставок гуманитарной помощи и производственного сырья из СНК и СССП. - - К Ноократии Эранта СНК относится нейтрально. Ноократия в своё время также пошла против ОПЗ, что принималось одобрительно со стороны СНК, так как это могло значить появление ценного союзника в будущих конфликтах. К всеобщему удивлению, ОПЗ спокойно согласилось принять независимость при условии выполнения ряда требований, чему СНК могло лишь позавидовать. На данный момент в Ноократии есть филиалы компаний СНК, а сама Ноократия рассматривается скорее как поставщик ценного технологического оборудования и кладезь выдающихся ученых, что крайне интересуют как отделы разработок отдельных компаний СНК, так и всего государства в целом. - - Правительством СНК проводятся мероприятия по налаживанию безопасности торговых путей с Халифатским Божественным Конгломератом, постепенно налаживая активную торговлю и культурный обмен. Однако дальнейшему укреплению дружеских отношений препятствуют активные боевые действия с ОПЗ и неготовность Конгломерата принимать чью-либо сторону. Не менее важной проблемой является подрывная пиратская деятельность Межпланетарного Братства на торговых маршрутах. - - Отношения между СНК и СССП находятся в висячем положении. Политика СНК во многом отличается от ОПЗ, но государство целиком и полностью продолжает полагаться на частные компании, куда меньше ограничивая их в сравнении с компаниями ОПЗ. Они обрели непозволительное для СССП влияние и силу, а также создали огромный разрыв между финансами и влиянием жителей. С другой стороны — именно возгоревшийся очаг революции зарождающейся СНК дал возможность СССП отделиться от ОПЗ относительно бескровно, ровно как и тихий переворот СССП стал ключевым фактором для ОПЗ в прекращении полномасштабных боевых действий против СНК, давая последним время окрепнуть. - - С Миртанийской Империей, как и ожидало правительство СНК, наладить дружественные отношения не вышло из-за ксенофобной политики первых и высокой популяции ксеносов у вторых. Торговых отношений и спейслиза с Империей тоже не ведётся как из-за отсутствия общих границ, так и из-за политики закрытой торговли самой Империи, а также из-за того, что все доступные боевые силы и корабли нужны самой СНК позарез. - - Межпланетарное братство удостоилось особого внимания со стороны СНК, ведь именно Братство, по мнению СНК, может стать очередным столь востребованным союзником в борьбе против ОПЗ, благодаря которому можно значительно расширить информационную сеть. Правда, действия отдельных группировок братства на территориях СНК, порой, носят абсолютно не дружественный характер. Примером могут послужить многочисленные улики, что напрямую указывают на причастность семьи Дилли Джонса к террористическим актам на государственных заводах СНК. - - Конечно же и в ГИОР есть представители СНК. Если отношения с ОПЗ вновь достигнут войны, то именно возможность воззвать к жалости остальных членов ГИОР может помочь быстро пресечь военный конфликт. В других случаях, особых отношений с ГИОР нет. Можно сказать, что предоставляемая СНК помощь и степень выполнения требований ГИОР в основном зависит от настроения компаний СНК. - - С НТ правительство СНК связывает закупка некоторые патентов и научных статей, которые могли бы так или иначе помочь улучшить эффективность своих войск и получить преимущество над ОПЗ. Иные же технологии покупаются отдельными корпорациями, учреждениями и, в общей сложности, разношерстными бизнесменами. Также СНК неоднократно намекало НТ, что если та в будущем решит выйти из состава ОПЗ насильственным способом, то СНК готово предоставить ей место в своем реестре и военную помощь в обмен на финансирование правительства. Потеря НТ была бы крайне сильным ударом для ОПЗ и значительным дополнением казны СНК. + content: book-snk-contents - type: entity parent: BookLoreBase @@ -716,23 +189,7 @@ layers: - state: book_umpor - type: Paper - content: В своё время ОПЗ попросту отпустила Ноократию Эранта и Умпорскую Федерацию, когда они ещё были единым государством. Им было невыгодно содержать эти колонии, где было население, но не было богатых месторождений ресурсов. Сейчас под небольшим давлением ГИОР ОПЗ посылает в Федерацию гуманитарную помощь и торгует некоторыми товарами через Корпоративную Зону большой пятёрки. Но помощь эта весьма нерегулярна и порой, чтобы её получить, посольским делегациям Федерации приходится чуть ли не умолять и идти на крайне чувствительные политические уступки. - - Когда гуманитарный кризис стал особенно острым на помощь Федерации пришло СНК. Сейчас практически на безвозмездной основе они совершают регулярные поставки (с помощью корпорации «Космологистика») гуманитарной помощи, сырья и готовой продукции. А также присылают своих специалистов. Правительство Умпорцев понимает, что рано или поздно СНК потребует что-то взамен. Что-то очень существенное, но сейчас у них нет выбора, кроме как принимать поставки. - - С Великой Империей Нотда установился нейтралитет. Ведётся торговля, есть определённое политическое взаимодействие, но нет никаких тесных взаимоотношений. - - СССП считают, что основные ценности Федрации очень близки их социалистическому духу коллективизма труда и общего блага, а потому они договорились с Великой Империей Нотда организовать гуманитарный коридор для поставок материалов и гуманитарной помощи. Взамен Умпорцы предоставляют некоторые технические решения в области химии и биологии чрезвычайных ситуаций, а также приёмы быстрого строительства и перестройки. - - Ноократия Эратна является для Умпорской Федреации жутким и непримиримым врагом. Они находятся в постоянной оппозиции, а на границах всегда дежурят свежие боевые части и флоты. Обе стороны осознают. Что хоть вторая война за отделение минула, но впереди ещё будет третья. Между Империей Миртрана и Федерацией нет практически никаких отношений. Они полностью не интересуют друг друга. - - Халифатский Божественный Конгломерат видит в гуманитарном и нравственном кризисе Федерации возможность распространения своей религии и идеологии. На территории государство действую группы проповедников, речи которых находят активный отклик в самых разных слоях населения. - - Гуманитарный, образовательный и нравственный кризис спровоцировал рост преступности. Межпланетарное Братство воспользовалось этим для расширение своего влияния из-за чего появляются всё более организованные ОПГ. - - Для решения экономических проблем Федерация учредила ряд зон с упрощённым налогообложением, ослабленным законодательством и прочими льготами для привлечения внешних корпораций. Это позволило привлечь немало внешнего капитала. Кроме того, из-за особенности планеты Крения на ней были построены судоверфи Космологистики. Космологистика также помогает со снабжение гуманитарной помощью из других государств. Из-за активности пиратов Федераия и её компании часто нанимаю для защиты транспорта авиагруппы корпорации Витезтви. Корпорация Гефест (Глобальная Инициатива) активно продаёт Федерации сырьё и еду. - - У Федерации нет отношений с Накамура Инжениринг, а с НаноТрейзен некоторое время были натянутые отношения из-за их тесного взаимодействия с Ноократией Эранта. Но сейчас отношения выправляются, и Умпорцы интересуются последними научными достижениями в некоторых важных для них областях. + content: book-umpor-contents - type: entity parent: BookLoreBase @@ -744,17 +201,7 @@ layers: - state: book_nooc - type: Paper - content: Центральной идеей устройства общества является система классов. Всего существует 15 классов. Они делятся по три на низшие, низкие, средние, высокие и высшие классы. - - Разделение по классам происходит на основе сложной проверки интеллектуальных способностей, которая включает в себя целый ряд испытаний, которые каждый гражданин происходит в возрасте 20-ти лет. Испытания проверяют знания, скорость обучения, работу мозга, интуицию, склонность к психическим заболеваниям, способность применять знания, собирать, усваивать и использоваться предметы и информацию в условиях экстренных ситуаций. Весь этот комплекс мероприятий в народе назван Экзамен. Результат Экзамена зачисляет гражданина в конкретный класс. По ходу жизни гражданин имеет право пересдавать Экзамен каждые два года. Оценка Экзамена составляется по шкале баллов Эранта. В шкале 300 баллов, и она разделена на 15 равных промежутков, которые и соответствуют классам. - - Низший класс (15-13) может претендовать на самые низкие должности - шахтёры, уборщики, работники канализации, чернорабочие, батраки на фермах и подобное. Тупой и монотонный тяжёлый труд. Низкий класс (12-10) может рассчитывать на низкоквалифицированные должности в различных конторах и предприятиях - секретари, клерки, техники, грузчики, монтёры, медсёстры, санитары, водители, солдаты и тому подобное. Не слишком ответственное дело. Средний класс (9-7) могут занимать профессиональные должности, но не выше определённого уровня - инженер, врач, фельдшер, лаборант, бухгалтер, офицер младшего состава и тому подобное. Важное и полезное занятие, но без заделов на руководство. Высокий класс (6-4) могут быть руководителями отделов, заведующими отделения, лабораториями, офицерами среднего состава и так далее. Эти люди важные и уважаемые начальники и руководители. Высший класс (3-1) – это директора, акционеры, члены правительства, высшие чины государства и армии и все подобные сильны сего мира и государства. - - Важно понимать, что высший класс пользуются благами, как у королей. У них есть личные слуги из более низких классов. Их слова — это практически закон. Они по одному движению руки получают всё, что хотят. Их личных счетов хватит на покупку целых городов, а у Умнейших и планет. Напротив, низший класс влачит жалкое существование. Заработанных денег едва хватает на поддержание жизни - базовое питание, уплату налогов, транспортные расходы. - - Очень часто классовое расслоение выражается и в раздельном проживании. Гетто низших, трущёбы низких, кварталы средних, районы высоких и планеты высших. Это накладывает не просто сильный отпечаток на единстве общества, но приводит к практически полному регрессу института семьи. Желание жить как можно лучше закладывается в каждого гражданина с детства, и если у родителей появляется ребёнок, который после первого Экзамена оказывается более высокого класса, то он вполне может покинуть родителей и разорвать с ними связи. - - Культивирование личного таланта и интеллекта, а также возможностей, которые можно получить, применяя эти самые интеллект и талант становятся центральной идеей внутренней политики Ноократии. Но если в стремящейся к прибыли научной корпорации НаноТрейзен была организована полноценная и сложная система образования, которая требует на своё существование безумное количество сил и финансов, чтобы как можно большее количество образованных людей приносили как можно большее количество полезной работы и научно-технических достижений, то Ноократия на государственном уровне сформировала культ личности гения. Любого гения государства. При это гения природного. Очень часто редкие граждане, которые имеют врождённый талант крайне быстро поднимались по социальной лестнице классов и росли в карьере, тогда как трудолюбивые люди порой достигали границы, которую уже не в силах были преодолеть своим трудом. + content: book-nooc-contents - type: entity parent: BookLoreBase @@ -766,19 +213,7 @@ layers: - state: book_nakamura - type: Paper - content: Прибыль компании основана на продаже высокотехнологичной продукции. Массовая постройка производственных комплексов значительно удешевляет производство и вытесняет конкурентов с рынка. - - О колонизации На изведанную солнечную систему прилетает колонизационная группа состоящая из нескольких кораблей которые трраформируют планеты и строят звездную электростанцию, которая снабжает электричеством все звездные системы. Номенклатура экспедиции состоит из двух кораблей-флагманов, нескольких вспомогательных шаттлов, нужных для организации логистики, а также корабль-танкер, способный выдерживать температуру звёзд. Впоследствии один корабль-флагман становится космической станцией-хабом, а второй используется службой безопасности для защиты колонии от внешних и внутренних угроз. - - Подробнее о колонизации Звезда. На ее орбите строят космическую электростанцию, которая, с помощью солнечных панелей вырабатывает массу энергии. Полученное электричество используют для синтеза антиматерального топлива которое впоследствии развозят на танкере по всем колониям. Всю работу на станции выполняют борги, люди не переносят высокую жару. - - Планета для сельского хозяйства. Колонизационный отдел выбирает планету с наиболее подходящей почвой для выращивания растительных культур и разведения скота. Впоследствии эту планету начинают терраформировать - Устанавливают генератор гравитации и создают благоприятную атмосферу на планете. После чего на нее завозят почву пригодную для выращивания еды, а также возводят станцию по добычи воды из атмосферы. Когда на планете появляется достаточно воды происходит массовая высадка генно модифицированных деревьев и растений, которые способны к быстрому фотосинтезу и высокой урожайностью. Когда воздушно-водный цикл способен стабильно поддерживаться, на планете начинают разводить домашний скот. Скот используют для получения мяса и удобрений. Большую часть работе на планете выполняют борги. Люди контролируют стабильность цикла, химический состав почвы и допустимость токсичности растений. - - Планета для добычи. Для этих планет выполняется не полный алгоритм терраформирования - Устанавливается генератор гравитации и строится завод для переплавки ресурсов. Всю работу на планете выполняют борги. - - Планета для производства. Для этих планет выполняется полный алгоритм терраформирования, за исключением посадки плодоносящих растений и разведения крупного домашнего скота. На этих планетах строят различные заводы и станции техобслуживания боргов. Именно на этих планетах выпускается лицензионная продукция компании Nakamura engineering! На этих планетах основную работу выполняют борги, однако люди осуществляют контроль качества и управление заводами. - - Станция-хаб. Бывший колонизационный корабль-флагман. После доставки ресурсов для колонизация, данный корабль перестраивается в космическую станцию для управления колонией и связи с начальством секторов. + content: book-nakamura-contents - type: entity parent: BookLoreBase @@ -790,69 +225,7 @@ layers: - state: book_vitz - type: Paper - content: 1) Разведывательная авиапара - - Два лёгких космических судна сделанных на манер истребителей-Разведчиков ОПЗ (машина класса «Комар» по документам Vitezstvi), но с облегчённой бронёй, большей скоростью и более слабыми орудиями. Пара состоит из ведущего и ведомого. Предназначена для скрытной авиаразведки. Часто авиапары посылают на простые задания и ставят в них новичков, чтобы они освоились перед настоящими опасными делами. - - - 2) Истребительная авиапара - - Два лёгких космических судна сделанных на манер истребителей-перехватчиков ОПЗ (машина класса «Лилия» по документам Vitezstvi). Пара состоит из ведущего и ведомого. Предназначена для патрулирования и охраны. Часто в пару к опытному ведущему-ветерану ставят ведомого-юнца, чтобы быстрей обучить его. - - - 3) Истребительное звено - - Пять лёгких машин, аналогичных используемых в соответствующей авиапаре. Подразделение включает в себя командира звена и четырёх ведомых. Предназначена для охраны транспортных судов, для поддержки бомбардировочных соединений, а также для изматывающих налётов на сухопутные силы. В звеньях служат уже полноценные состоявшиеся лётчики-истребители. - - - 4) Разведывательное звено - - Четыре машины, аналогичные используемым в соответствующей паре. Чаще всего разведчики равны друг другу по званию и среди них не выделяют командира, а лишь ответственного за задание. Данное подразделение предназначено для проведения разведки в зоне боевых действий, где всегда можно попасть под обстрел и погибнуть, а потому в этих звеньях служат лишь опытные пилоты, чья выживаемость всегда на высоте. - - - 5) Легкобомбардировочное звено - - Шесть машин, аналогичных по строению истребителям-бомбардировщикам ОПЗ (машина класса «Чарли» по документам Vitezstvi). В звено входят командир звена, зам.командира звена и четыре ведомых. Подразделение предназначено для атаки на крупные суда, для штурмовки планетарных сил, для уничтожения планетарных объектов, для отвлечения внимания ПВО и истребителей. Сюда поступают уже набравшиеся опыта в авиапарах истребители. Они быстро проходят курс обучения на бомбардировщика, стремительно приноравливаются к новому делу и сразу готовы к бою. - - - 6) Тяжелобомбардировочное звено - - Три машины, созданные на базе истребителей-бомбардировщиков ОПЗ. У них укреплена броня, увеличен размер и количество перевозимого бомбового вооружения, а также увеличена огневая мощь (машина класса «Барон» по документам Vitezstvi). При этом сильно страдает скорость и манёвренность. Подразделение не имеет командира, только ответственного за задание. Используется для поражения крупных судов, разрешения линий планетарных обороны, а также объектов производства, инфраструктуры или военных объектов. В эти подразделения идут служить только самые смелые пилоты-бомбардировщики, ибо полёт в медленной машине во многом зависит от качества стрелков и поддержки. - - - 7) Истребительная эскадрилья - - Состоит из трёх истребительных звеньев (15 машин «Лилия»). Предназначена для защиты караванов, крупных судов, а также для перехвата бомбардировщиков и для достижения превосходства в воздухе. - - - 8) Разведывательная эскадрилья - - Состоит из трёх разведывательных авиапар и двух разведывательных звеньев (14 машин «Комар»). Предназначена для проведения полного комплекса разведывательных мероприятий в зоне боевых действий. - - - 9) Легкобомбардировочная эскадрилья - - Состоит из трёх легкобомбардировочных звеньев (18 машин «Чарли»). Предназначена для ковровых бомбардировок, для массивных авиаударов, для уничтожения боевого порядка крупных судов в космосе. - - - 10) Тяжелобомбардировочная эскадрилья - - Состоит из трёх тяжелобомбардировочных звеньев (9 машин «Барон»). Предназначены для крупномасштабной стратегической бомбардировки на крупные планетарные объекты, а также для уничтожения купных космических судов. - - - 11) Истребительный авиаполк - - Состоит из одной разведывательной эскадрильи, пяти истребительных, а также ещё одного отдельного разведывательного звена и одного отдельного истребительного звена (всего 98 машин, из которых 18 «Комаров» и 80 «Лилий»). Предназначены для подавления и уничтожения всего малого летательного в зоне действия полка. - - - 12) Бомбордировочный авиаполк - - Состоит из одной разведывательной эскадрильи, одной истребительной, трёх легкобомбардировочных и двух тяжелобомбардировочных (всего 101 машина, из которых 14 «Комаров», 15 «Лилий», 54 «Чарли» и 18 «Баронов»). Предназначены для уничтожения планетарных линий фронта, а также для поражения крупных флотов. - - - 13) Специальный авиаполк - - Такие авиаполки формируют под требования командира авиаполка. В них встречаются всевозможные вариации, которые становятся необходимостью при применении определённых тактик или при необходимости следовать определённому сценарию сражений. + content: book-vitz-contents - type: entity parent: BookLoreBase @@ -864,28 +237,7 @@ layers: - state: book_gefest - type: Paper - content: Гефест был основан в конце XXII века, как частное космическое агентство, которое занималось добычей полезных ископаемых на Луне и Марсе. В дальнейшем компания начала добывать ресурсы на огромном поясе астероидов между Марсом и Юпитером. Также, агентство приняло участие в колонизации Марса и постройкой одной из первых космических станций на его орбите. Именно Гефест снабжал колонистов Марса ресурсами. В дальнейшем, компания начала добывать ресурсы во всей солнечной системе. - - После открытия плазмы, корпорация начала искать способы обнаружения ее в космосе. Как оказалось, планеты, в атмосфере которых, находилось приличное количество плазмы можно было обнаружить путем наблюдения - из-за особых физических свойств плазмы, даже незначительного звездного света хватало, чтобы атмосфера светилась фиолетовым цветом. - - Несколько веков бизнес Гефеста развивался в соответствии со всем миром, однако плазмы, впрочем, как и нефти было недостаточно, относительно масштабов ОПЗ. И если нефтяные месторождения можно найти на планетах с жизнью, то с плазмой дела обстояли сложнее. Руководство корпорации стремилось решить проблему плазменного и нефтяного голода. - - С помощью запатентованного метода специального радиоэлектронного анализа, разработанного профессором Рулевым, удалось узнать, что на краю галактики плазмы оказалось на несколько порядков больше, чем в изученной галактике. - - Экономика ОПЗ требовала все больше и больше плазмы, и с течением времени идеи о колонизации фронтира не казались такими дорогими как это могло показаться на первый взгляд. Череда удачных событий привела Гефест на фронтир. Вслед за Гефестом проследовали и другие корпорации. - - Как оказалось, на фронтире есть не только плазма, но множество артефактов, оставленные некогда великой цивилизацией,, изучением которых занимаются другие корпорации. - - - По прибытии на фронтир Гефест начал разворачиваться, и активно начал строить маленькие колонии-поселения. Все дома были построены из специальных модульных блоков, части которых помещаются в стандартные грузовые контейнеры. Некоторые сооружения представляют из себя сломанные шаттлы, пострадавшие в результате работы. Все колонии выполняют строго определенную работу - добычу ресурсов, выращивание пищи, производство лекарств и удобрений. Такая система была введена для того, чтобы поселения изначально не были самодостаточными и зависели от других колоний и центрального управления. Однако, во всех колониях должен быть пункт охраны и хотя бы один врач и мэр. Количество колонистов на один населенный пункт не превышает сотни. - - С течением времени начали появляться новые жители-колонисты, которые были вынуждены работать на Гефест, у них просто не было выбора и средств на то чтобы выбраться с фронтира. Через несколько поколений среди молодежи стали появляться анти-корпоративные настроения основанные на желании выбраться из этого корпоративного рабства. - - Новые поколения не понимали, почему им приходится работать на корпорацию. Они не согласны с тем, что корпорации используют ресурсы их родной планеты во благо ОПЗ, а не во благо местного населения этой. Многие из них бежали из компании, часто с кражей дорогостоящего оборудования. Гефест, в свою очередь, решал данную проблему путем увеличения количества охраны. И если на момент начала колонизации в городах процент охраны составлял 5-10%, то после подобных событий их количество выросло до 20-30%. - - Ситуация изменилась, когда на фронтир прибыли и другие корпорации и у людей появился более обширный выбор работы. Многие не хотели вести преступную жизнь, а просто искали способ заработать денег и выбраться из этой дыры. Появилось множество независимых локальных компаний, основанными потомками беглецов. - - Гефест не вел преследования за людьми, которые ушли из компании, в розыске были только преступники особенно проявившие себя. + content: book-gefest-contents - type: entity parent: BookLoreBase @@ -897,77 +249,7 @@ layers: - state: book_conarex - type: Paper - content: 2706 год. Эмиль Хотакайнен, владелец крупной компании по производству и продаже изделий медицинско-интимно-постельного применения, чьи магазины действовали по всему ОПЗ, составил завещание, оставив всю свою компанию старшему 28-милетнему сыну Симо. - - 2709 год. Симо Хотакайнен, будучи весёлым и немного безбашенным, понимает, что не хочет управлять такой компанией. Не лежит душа, а потому он её продаёт за невиданно большие деньги. - - 2710 год. Эгиль Хотакайнен, брат Симо, обвиняет брата в том, что тот продал семейный бизнес, которым владели многие поколения. Всё сводится к требованию денег, и Симо, без лишних слов, переводит ему на счёт половину. - - 2711 год. Симо решает уехать в слаборазвитые сектора, чтобы там основать новую компанию. Выбор падает на маленький сектор Лаксимус. - - 2713 год. Симо основал компанию Conarex, которая занялась производством двигателей для шаттлов и космических кораблей. - - 2717 год. Симо знакомится с представителями организации Эранта. Он заинтересовывается их идеями, а они его бизнесом. - - 2718 год. Помимо производства двигателей, Conarex начинает совершать грузовые перевозки между секторами Лаксимус и Рацио. - - 2721 год. В сферу работы попадает и сектор Импор. - - 2726 год. Ноократия объявляет независимость, а прошляпивший этот момент в организации Симо оказывается в другом, по сути, государстве. Ноократия даёт ему новую регистрацию компании и предлагает выгодные контракты на грузовые перевозки и производство. - - 2728 год. Умирает основатель Ноократии. А Симо почему то думает, что это повлечёт за собой массовый спрос на шаттлы и начинает производство корпусов для них. - - 2730 год. Новая политика государства включает в себя активную колонизацию планет секторов Ноократии. Симо решает начать производство и систем навигации для шаттлов. - - 2740 год. К бездетному Симо Хотакайнену приезжает дочь его брата Эгиля, Лийса с сыном Онни. Симо узнаёт, что его брат тоже попытался основать компанию, но несколько раз дело прогорело, а сам Эгиль тяжело заболел и умер, обвиняя во всех несчастьях брата. - - 2743 год. Лийса видит безграничную доброту Симо, который воспринимает её не как племянницу, а как дочь. А её сына, как внука, и забывает все обиды отца. Она высказывает Симо своё мнение на жуткие порядки Ноократии. У Симо открываются глаза, и он начинает искать способ выведение своей компании из этого государства. - - 2744 год. Лийса выходит за муж за одного из молодых акционеров Космологистики. В течении года, она понимает, что весь брак был ради присоединения Conarex к Космологистике, а потому она расторгает брак и сохраняет свою фамилию. Хотя от второго мужа у неё остаётся сын Юхани. - - 2746 год. Симо переписывает компанию на племянницу, наказывает ей вывести Conarex из Ноократии и через несколько месяцев умирает. - - 2767 год. Лийса начинает общение с Умпором-Касой. Они вместе приходят к выводам о гнилом нутре Ноократии. - - 2772 год. Conarex начинает пассажирские перевозки. Многие обсуждения и сборища сепаратистов Умпор-Касы происходят на шаттлах Conarex. - - 2773 год. Прямо перед началом войны Лийса перевозит часть заводов в сектор Импор, а также начинает строительство ремонтных станций. - - 2779 год. Лийса погибает в бою с несколькими сподвижниками Умпора-Касы, оставляя компанию на сыновей Онни и Юхани. - - 2882 год. Conarex, которая осталась действовать и со стороны умпорцев, и со стороны ноократов помогает сепаратистам нанести удар по Мозговому центру Ноократии. Conarex объявляется вне закона в Ноократии. А её имущество национализируется. - - 2788 год. Conarex помогает посольским делегациям ОПЗ и ГИОР начать мирные переговоры между Умпорской Федерацией и Ноократией Эранта. ОПЗ востанавливает лицензию Conarex на производственную и транспортную деятельность в своих границах. - - 2790 год. Из-за разрухи и возрастания преступности Conarex создаёт департамент охраны. - - 2805 год. Conarex договаривает на получение лицензии в Великой империи Нотда. - - 2807 год. Умпорская Федерация просит полностью оснастить их торгово-транспортные маршруты. Conarex получает невиданное расширение влияния и финансов. - - 2813 год. Онни умирает, оставляя всё брату Юхани. - - 2814 год. Юхани чувствуя конец смерти оставляет компанию соракалетнему сыну Олафу Хотакайнену. - - 2836 год. Conarex распространилась по всей Великой Империи Нотда. А также пользуется старой лицензией в ОПЗ, чтобы распространить своё влияние на два их сектора. Conarex уж производит всё необходимое для шаттлов. - - 2841 год. Олаф передаёт компанию тридцатилетней дочери Анникки. - - 2845 год. Анники будучи очень пробивной, сильной и хитрой женщиной, умудряется подписать договор на временную лицензию с СССП! - - 2865 год. После 20-ти лет сотрудничества Анникки добивается постоянной лицензии у СССП и передаёт дело сыну Микелю Мадсену (Да. Матушка успела выйти замуж и сменить фамилию). - - 2877 год. Микель всё время занимался расширением производств, постройкой станций, наращиванием единиц торгово-пассажирского флота и улучшением качества обслуживания. Кроме того Conarex начинает работу на Фронтире. - - 2889 год. Уже сын Микеля, Элиас, обеспокоенный ростом преступности начинает усиление департамента охраны, закупая оружие, снаряжение и технику у Витезтви, взамен поставляя им компоненты для боевых кораблей. - - 2890 год. Новая война Ноократии Эранта и Умпорской Федерации начинает сильно вредить развитию Conarex. Космологистика выдавливает их из Фронтира. - - 2891 год. Conarex начинает активное военное снабжение флотов и планетарных сил умпорцев. Из-за прекрасного снабжения даже в условиях попыток блокад, умпорские планетарные силы уничтожают почти все десантные силы Ноократии. - - 2907 год. Conarex снова становится пособником ГИОР по началу мирных переговоров. - - 2916-3023 год. Conarex начинает помогать разным государства доставлять гуманитарную момощь Федерации, соперничая в этом плане с Космологистикой. Соперничество продолжается до сих пор. Со стороны Космологистики выступает СНК, а со стороны Conarex СССП. За это время Элиас Мадсен передавал компанию племяннице Хелене Свенсон,а она своему сыну Матиасу Свенсону, который и сейчас является единоличным директором компании. + content: book-conarex-contents - type: entity parent: BookLoreBase @@ -979,25 +261,7 @@ layers: - state: book_petr - type: Paper - content: Петрищевцы верят, что единственный и необходимый путь для галактики — переход к Коммунистическим ценностям. Но Галактика отказалась это сделать мирно, когда отцы-революционеры СССП предложили это. Революция в ОПЗ показала, что социалисты и коммунисты могут сражаться за свои идеалы. После при образовании Петрищевцев выработалась идея, что истинные коммунисты должны, просто обязаны бороться со всем миром. - - Идеология выработалась радикальная. И в какой-то момент движение к цели заменило саму цель. Идеологи и отцы-командиры вся ещё говорят, что целью всей организации является установление Коммунизма во всей галактике, но, по большому счёту сейчас их целью скорей является заявление своего протеста миру. Все эти терракты, налёты, нападения, по мнению. Специалистов разных стран, скорей являются выпуском большой обиды нежели реальным движением к галактической революции. Бунтари, освободители, революционеры превратились даже не в фанатиков, а в простых экстремистов. - - В качестве задач Петрищевцы занимаются подрывом крупных «оплотов капитализма», охотятся на высокопоставленных «буржуев и толстосумов», налётами на суда «продажных угнетателей». Кроме того, краснорукавники часто пытаются освобождать тех, кто их об этом не просил - налетают на объекты крупных корпораций, казнят безопасников и командование, остальных выгоняют и взрывают объект. Но есть и важный фактор. При желании каждый может попросить Петрищевцев о помощи, указав на угнетение капиталистами. И с большой долей вероятности они явятся и действительно накажут угнетателей, при этом не требуя за это никакой мзды. Впрочем, принимают добровольные пожертвования на дело Революции. - - Несмотря на то, что Петрищевцы большей частью являются сбродом, у них выработался значительный культурный пласт. Он пронизывает всё, что окружает революционеров и является важным для них. Основан на символизме. - - Командиры рассказывают новобранцам, что рукава выкрашены в тёмные красные цвета, дабы показать, как глубоко готовы Петрищевцы окунуться в кровь, чтобы добиться равенства для всех пролетариев всех народов. И куртки их будут чёрными, пока не возвысится над всеми странами красные флаги! - - Все боевики вне зависимости от ранга носят одинаковую форму. Это соответствует Петрищевским идеалам всеобщего равенства. Каждый, будь то новобранец, бывалый боевик, специалист, ветеран или командир, носят одинаковые штаны, куртки с багровыми рукавами, одинаковые пилотки и сапоги. - - Плащ ветеранов и командиров олицетворяет окрашенное кровью угнетённого пролетариата красное знамя. Такие плащи доверяют лишь бывалым воякам и сподвижникам идей революции. Это большая честь, это настоящее признание бойца уважаемым Петрищевцем. - - Абсолютным почтением пользуются исторические революционные личности. На каждой базе Петрищевцев можно найти портреты, исторические труды или иную литературу посвящённую отцам-революции СССП и самым разным революционерам Старой Земли. Эти материалы часто используют в политбеседах с революционерами. Многие перечитываются, как библия революции. - - Петрищевцы живут на базах в атмосфере постоянного братства. Это уже больше, чем товарищество, хоть и зовут друг друга товарищами. Боевики просыпаются вместе, едят вместе, тренируются и занимаются снаряжением вместе, вместе идут в бой. У них нет своей собственности, кроме предметов личной гигиены и мелких мелочей. Им не из-за чего толком ругаться. - - Каждый без промедления готов отдать жизнь ради своих братьев-товарищей. Петрищевцы осознают, как на самом деле они одиноки в широкой галактике. И они осознают это особенно явно, когда встаёт вопрос разрыва с СССП и изгнания. Лчень ярко это видно по шлемам скафандров, которые выглядят «плачущими, но опасными». Это ощущение одиночества, не исключительности, а именно одиночества усиливает то самое чувство братства! Петрищевцы всегда спасают своих товарищей. Пилоты десантных транспортов, никогда не покинут падающий шаттл, если на борту братья. + content: book-petr-contents - type: entity parent: BookLoreBase @@ -1009,37 +273,7 @@ layers: - state: book_saibasan - type: Paper - content: Заводы - - Не нужно много заводов, чтобы обеспечить всех электроникой. Тысячу лет назад несколько крупных предприятий хватало на обеспечение планеты. Сейчас после изменения технологии и многих веков модификаций методов изготовления и заводской техники несколько заводов уже способны обеспечить целый сектор. - - Заводы представляют собой крупные автоматические почти что конвейерные линии. Автоматически происходит всё - подготовка подложек, нанесение резистов, экспонирование, эпитаксия, металлизация и многое другое. Из-за этого все этапы производства находятся в чистых зонах, и им требуются сложные системы очистных сооружений. Таким образом большая часть заводского персонала – это инженеры тех.обеспечения коммуникаций, а также инженеры выходного контроля. - - - Дизайн центры - - Как правило это небольшие офисы, расположенные в самых разных местах. В них работают инженеры-проектировщики схемотехники. Они занимаются разработкой схем по заказам различных предприятий и государств. Проектировка происходит, как полностью сквозная, с созданием полностью своей уникальной микросхемы, так и использующая готовые технологические шаблоны одной из имеющихся сборочных линий. - - - Технологически лаборатории - - Данных лабораторий не много. В них учёные-материаловеды и инженеры-технологи проводят исследования и эксперименты над различными параметрами и показателями, варьируя их и добиваясь куда лучших результатов характеристик! (на самом деле они достигают главной истины любого технолога - «Не ТРОГАЙ, МАТЬ ТВОЮ, НАСТРОЙКИ, А ТО Я ТЕБЕ БОШКУ РАЗНЕСУ!» - - - Административное отделение - - В это отделение входят бухгалтерия, директорат корпорации. Тут же отдел приёма заказов, подразделение спикеров и, как ни странно, информационная безопасность, которая на самом деле напрямую связана с директоратом. - - - Взаимодействие с обществом - - Ни у кого не было уверенности, что дочерняя компания корпорации Cybersun Industries, сможет быть чем-то помимо вспомогательного подразделения, созданного для уменьшения расходов на электронику. Но в итоге это, хоть и дочерняя, но крупная компания-производитель электроники, известная по всей изведанной Галактике. Приборы с чипами Saibasan – это гарантия качества и надёжности. - - - Активы корпорации - По большому счёту Saibasan обеспечивает электроникой (по примерноым расчётам) 4 сектора Фронтира, 2 сектора ОПЗ, 2 сектора Умпорской Федерации и 1 Сектор СНК. Посему у корпорации 45 заводов, 121 дизайн-центр, 9 технологических лабораторий и 10 административных отделений, одно из которых главное. - - + content: book-saibasan-contents - type: entity parent: BookLoreBase @@ -1051,27 +285,7 @@ layers: - state: book_unath_1 - type: Paper - content: Мимика и Жесты - - В разговоре унатхи активно жестикулируют, задействуя свои руки и гибкий хвост. Менее экспрессивная чем у людей мимика компенсируется движением кожных складок и капюшонов. Сначала полагалось, что движение хвоста используется для трансляции конкретных эмоций, но на самом деле его значение сильно зависит от контекста и личности говорящего. Удары хвостом по земле могут означать восторг, нервозность, ярость, скуку, страх, или что-то совершенно иное – поэтому переводчик для унатхских жестов так и не был составлен. - - При менее формальном общении с семьей, друзьями и подчиненными, унатхи могут быть крайне тактильными. Для более хрупко сложенных рас, объятия, толчки и хлопки по телу могут быть чересчур сильными, и не каждому будет приятно ощущение когтей на коже. Ассимилируясь в общество, где мало сородичей, унатхи отучаются от подобных привычек, а вот навещая Моргха Унатх, путешественнику стоит приготовиться к такому отношению. - - - Одежда и Украшения - - Традиционная одежда унатхов обычно крайне открытая, с менее строгими стандартами пристойности, чем людская. Текстура материала играет меньшую роль, чем цвет, а в застёжках ценится прочность. Богатая одежда, в противоречие стандарту, очень тёплая и основана на большом количестве замысловато перекрывающих друг друга слоёв. В местах с прохладным климатом, тёплая одежда наслаждается значительно более утилитарным отношением и резко контрастирует с тропическими аналогами своей обыденностью. - - За годы контакта унатхи переняли человеческую одежду, слегка адаптировав её под свою анатомию. В сферах правления, бизнеса, науки и военного дела, человеческая форма одежды стала стандартной даже среди более традиционалистически настроенных родов. - - За пределами родного сектора одежда унатха больше определяется местной культурой, чем какими-то историческими предпочтениями, но некоторые всё равно будут выбирать более свободную одежду для труда, и более тёплую одежду для щегольства. - - Расположенные вдоль шеи и по бокам головы кожные складки и выступы часто украшаются пирсингом или тату. В рисунках преобладают абстрактные узоры с природными мотивами, которые не потеряют своего смысла или структуры при движении кожи. - - Многие унатхи берегут свои рога, хотя не у всех они встречаются, и их отсутствие не считается чем-то унизительным. Боязнь отколов и повреждений выливается в относительно низкую популярность каких-либо модификаций, но иногда можно встретить ящера с вырезанными на рогах узорами. Нарочное спиливание одного или обоих рогов, сверление и стачивание также имеют место быть, но редко. - - В попытках сгладить или наоборот — подчеркнуть естественные неровности черепа, унатхи обоих полов могут использовать краску и макияж. У мужчин встречаются искусственные костяные наросты, прикрепляющиеся на бровные дуги – подобное, как считается, придаёт образу внушительности и серьезности. - + content: book-unath-ptone-contents - type: entity parent: BookLoreBase @@ -1083,21 +297,7 @@ layers: - state: book_unath_2 - type: Paper - content: Искусство - - Подобное влияние не обязательно было однобоким. После контакта людям открылся мир унатхского искусства. Пройдя через абсолютно другую историю, стили и устои их творчества значительно отличались от привычных людям, но были и объединяющие факторы, но были и параллели. Например, в унатхской живописи существовали одиночные портреты, однако большой популярностью пользовались массивные родовые и семейные картины, также выполнявшие функцию генеалогического древа. С одним отличием — вместо древовидной структуры, унатхские рода сплетались из множества лиан и ростков, вились вместе, потом расплетались снова или меняли свою конфигурацию. От всей запутанности некоторых образцов у зрителей могла закружиться голова. В целом, во всех визуальных медиумах унатхов часто присутствует больше мелких деталей, чем в человеческих. - - Как и музыка любой другой разумной расы, музыка унатхов предстает в невероятном количестве форм, так что покрыть её в достаточной степени в этой статье не представляется возможным. За последние сотни лет в музыке появилось бесчисленное множество электронных, синтезированных звуков, но унатхи не забывают и свои традиционные инструменты. Унатхские песни пользуются умеренной популярностью — некоторые находят их излишне громкими, с большей ролью ударных инструментов и меньшим упором в мелодию. - - С распространением ТрансЛита, к доступной людям части унатхского наследия присоединились кино и литература. Среди рассказываемых унатхами историй выделяется много отличных от человеческих архетипов. Одним из них являются ссен'гха — мореплаватели времён Золотого Века Морей, исследователи, послы, шпионы. Рассказами об их приключениях изобилует как литература унатхской современности, так и популярная культура. Человеческому наблюдателю будет удобно думать о ссен'гха, как об унатхских аналогах рыцарей или ковбоев — в той роли, которую они играют в культурном сознании общества. - - - Война и Мир - - По окончании Последней Войны в обществе унатхов одно из лидирующих мест заняли антимилитаризм и пацифизм. Всем было ясно одно — подобное не должно повториться никогда. Многие участники Кшеса Д’тхун, федерации-предшественника Унатхской Автономии, начали уменьшать свои армии, полагаясь на сеть тесных торговых и дипломатических связей для урегулирования конфликтов. С раннего возраста унатхам объясняли ужасы войны, и обучали способам решать конфликты без насилия. Молодым унатхам и унати показывали, что сотни лет мира привели к совместному процветанию, и поэтому у каждого разумного существа есть моральная обязанность не допустить войны. Такая практика сохранилась с незначительными изменениями до наших дней, но полтысячи лет назад ее популярность пошатнулась. - - Война с воксами, возникновение ненавидящей всех не-людей Миртанийской Империи и военное присутствие ОПЗ пошатнули повальную веру в послевоенные идеалы. Часть унатхов начала рассматривать войну и армию как необходимые инструменты для обеспечения дальнейшего существования унатхской цивилизации, а пацифизм — как проявление слабости перед лицом неумолимого врага. Популярность унатхов в качестве солдат ОПЗ и наемников также повысила привлекательность милитаристских настроений. В наши дни военный сектор Моргха Унатх постепенно набирает во влиянии и богатстве, что выливается в растущее недовольство идеологической миролюбивостью. - + content: book-unath-ptwo-contents - type: entity parent: BookLoreBase @@ -1109,15 +309,7 @@ layers: - state: book_dione - type: Paper - content: Биология дион в своём роде уникальна хотя бы по той причине, что оно представляется собой сочетание биологии нескольких нимф и растенеобразного тела. - - Притом стоит отметить, что нимфы являются самобытным живым организмом, способным существовать без остальных нимф и древовидного тела. Посему у каждой нимфы есть собственные мозг, желудок, печень, почки, лёгкие, сердце и прочие органы. Но при этом в сочетании трёх нимф и древовидного тела некоторые органы начинали видоизменяться, своего рода, срастаясь с растениями тела. Для одной нимфы метаморфозы нескольких органов разом стали бы смертельны, потому нужно минимум три. У одной видоизменяется мозг, у второй – желудок, у третьей – лёгкие. - - По этим причинам примечателен процесс питания дион. При поглощении еды, диона посредством прочных побегов проталкивает пищу или жидкость в углубление в голове, где располагаются рты трёх нимф. Нимфы потребляют не равное количество еды. Нимфа с видоизменённым мозгом ввиду сравнительно малого (в сравнении с другими видоизменёнными органами вместе) энергопотребления есть всего седьмую часть всей еды, диона с видоизменёнными лёгкими – две седьмые, а нимфа с видоизменённым желудком получает в общей сложности четыре седьмые. Притом из полученной третьей нифой пищи лишь четверть разлагается полностью и передаёт всю энергию самой нимфе, остальное раскладывается на простые сахара, минеральные вещества, углеводороды и воду. Видоизменённый желудок дионы соединяется напрямую с корнями растений. Это позволяет передавать питательные вещества и воду в растеневидное тело. Притом проводящей питательные вещества жидкостью является вода, которая насычается получаемыми из еды минеральными веществами, витаминами и сахарами, становясь веществом напоминающим берёзовый сок. - - Дополнительным механизмом питания и жизнеобеспечения является химосинтез, который у дион отличается от фотосинтеза классических растений несколькими деталями и протекает в видоизменённых лёгких одной из них. Это всё ещё квантовохимическое взаимодействие, которое способно за счёт энергии разделять молекулы воды и углекислого газа, формируя молекулярный кислород и простые сахара для питания растеневидного тела (через похожую корневую систему, сплетённую с альвеолами видоизменённых лёгких одной из нимф). Притом энергия, необходимая для химосинтеза, в отличии от фотосинтеза, получается не от поглощения квантов света, а от энергии, получаемой из расщеплённой пищи в желудке нимфы. Получаемый избыток молекулярного кислорода, может быть, не только поглощён лёгкими производящей его нимфы, но и выйти наружу для дыхания двух других. Так дионы способны буквально дышать углекислым газом. - - Видоизменённый мозг одной из нимф является сравнительно небольшим потребителем энергии и к тому же соединён с мозгами других нимф, но является руководящим органом принятия решений. + content: book-dione-contents - type: entity parent: BookLoreBase @@ -1129,15 +321,7 @@ layers: - state: book_BSS - type: Paper - content: Тут описаны бесчисленные диаграммы, грпафики, картинки и сотни формул, что поднимают вопросы от квантовой механики атомного строения до орбитальной динамики... - - Если же описывать всё очень кратко, то необходимо вспомнить о неопределённостях Гейзенберга. И да, она не одна! Их две. Первая говорит о том, что нельзя одновременно понять где объект и куда с какой скоростью движется. Всегда будет погрешность. Вторая говорит, что одновременно нельзя определить изменение энергии объекта и время изменения. И эти неопределённости взаимосвязаны. - - Что эе это для нас значит? Что всегда есть вероятность, что мы не тут, не туда, не так быстро, не за это время и не с такой энергией. А в случае БСС самым важным становится вопрос... Где? Где шаттл. - - Так вот. Мы не видим шаттл, но нам сказали, что оно находится в неком месте. Но есть вероятность, что он находится в другом. И чем больше колебания энергии, тем больше погрешность этого самого места. То есть, если вложить ну ОЧЕНЬ много энергии, то появится вероятность нахождения шаттла ну ОЧЕНЬ далеко. - - Тут в дело вступают Блюспейс-кристаллы и Блюспейс-модуль двигателей. Кристаллы способны сохранить, а потом дать огромное количество энергии, а модуль способен принять всю эту энергию и запустить колебание вол вероятности такого масштаба, что шаттл просто... окажется в другом месте - квантово туннелирует через пространство. + content: book-bss-contents - type: entity parent: BookLoreBase @@ -1149,34 +333,7 @@ layers: - state: book_scaf - type: Paper - content: EVA скафандры - - Образовано от сочетания слов на старом языке землян Extra-Vehicular Activity, что обозначало внетранспортную деятельность, подразумевая, что это скафандр для выхода из космического шаттла в открытый космос. Скафандры серии EVA появились ещё до NT, по большому счёту эта серия была повторением успехов старых скафандров, но с использованием новых материалов. Их оболочка включала в себя три слоя - - 1) Внутренний слой. Является теплоизоляционным и герметизирующим. Предотвращает потерю тепла и выход газовой смеси из скафандра. Используется полимерный композитный материал на основе резины. - - 2) Защитный слой. Является армированным стали-полимерным нетканым материалом для погашения ударов мелких космических объектов, вроде пыли и крохотных частичек космического мусора с орбитальными скоростями. - - 3) Внешний слой. Он исполняет больше эстетическую функцию. Он скрывает внутренние неровности, трубки и крепления. Кроме того, именно на этот слой наносится краска, которая позволяет разделять EVA скафандры по типам - тюремный, аварийный и т.д. - - - Скафандры специалистов по работе в открытом космосе - - Следующие итерацией развития скафандров после достижения пределов серией EVA стала разработка принципиально новой серии скафандров. И первым в серии стал скафандр для работы в открытом космосе. Это было совершенно необходимо для строительство новых космических объектов прямо в космосе, для проведения диагностики внешних покровов космических объектов, а также для прочих работ. Скафандр конструировали таким образом, чтобы погасить большую часть вероятных рисков космоса. Из-за этого скафандр насчитывал четыре слоя - - 1) Дереакционное покрытие. Покрытие, сделанное из слабоактивных композитов, что предотвращает деградацию других слоёв, при попадании скафандра в условия действия кислотной атмосферы. - - 2) Бронированный слой. Второй внешний стальной пластинчатый слой, который должен был защитить внутренние слои и оператора от скоростной встречи даже со средним космическим мусором, а также мог спасти жизнь, если происходила авария, сопровождающаяся взрывом. - - 3) Антирадиационный экран. Сделан из листового свинца. Третий слой. Тяжёлый, но дешёвый и блокирует около половины всей космической радиации практически от любой звезды или иного источника. - - 4) Внутренний слой. Выполнен из достаточно армированного прорезиненного композита. Он препятствует переохлаждению. А также может защитить от ударов о небольшие предметы. - - Создатели вдохновлялись Земными латными доспехами эпохи позднего Средневековья. Пластинчатое покрытие позволяло быть защищённым от крупных ударов и при этом иметь определённую мобильность. Но при этом от удара, скажем, ножа или укуса кого-нибудь хищного защищал в результате только внутренний крепкий, но не непробиваемый слой. Впрочем... где в космосе можно попасть на нож или клык… Помимо этого, скафандр вышел банально слишком тяжёлым. В нём неудобно было заниматься строительством, даже в условиях невесомости. В целом разработка не была признана провальной, но требовала доработки. Да и вообще руководство НТ считало эти скафандры лучше серии EVA, а потому развернуло массовое производство, но дала команду конструкторам облегчить модель, добавив больше удобства. - - Облегчённый скафандр изобретали не долго. Сперва сильно сократили толщину свинцового слоя. Затем уменьшили количество стальных пластин. Убрали армирование и переработали структуру внутреннего слоя. Скафандр защищал не так сильно, но был всё ещё шагом вперёд в сравнении с серией EVA. Инженеры продолжили скептически относиться к данному новшеству, но специалисты по утилизации обломков приняли такие скафандры, как вторую кожу, потому ныне их и зовут скафандрами утилизаторов. - - + content: book-scaf-contents - type: entity parent: BookLoreBase @@ -1188,43 +345,7 @@ layers: - state: book_MBS1 - type: Paper - content: Модуль «Маяк-01» - - В первой своей итерации учёные начали решать проблему нестабильности посредством разработки расчётного модуля «Маяк-01», способного более точно настроить колебания вол вероятностей. Установка на шаттл и испытания в рамках прыжков в пределах солнечной системы показали отличные результаты. Но уже при испытании на межсистемном скачке случилась авария и связь с шаттлом была утеряна. Новые эксперименты были приостановлены и началась длительная серия моделирования. Результаты не дали объяснения, и инцидент бы признан случайной ошибкой, и была отдана санкция на его повторение. - - В результате повторного эксперимента новый шаттл снова пропал. Стало ясно, что это не ошибка и началась новая «эпоха» скрупулёзных тестов, которые не давали результатов. Но через год, к радости инженеров, второй потерянный шаттл вернулся. Записи «черного ящика» показали, что взаимодействие БС-модуля двигателей с волнами квантовой вероятности повлияли так же и на вероятностные процессы в электронике шаттла и особенно в модуле «Маяк-01», что привело не к точной настройке, а к большей нестабильности, что усугубило проблему. - - - Суперкомпьютер «Маяк-02» - - Выяснилось, что для таких задач никакого модуля не хватит. В любом случае размещение его на шаттле приводит к плачевным последствиям. Постепенно улучшая систему и наращивая расчётную мощность, увеличивая надёжность и добавляя системы, препятствующие искажению вероятностных волн, инженеры превратили модуль в целый суперкомпьютер «Маяк-02». - - Суперкомпьютер располагался на важных космических узлах. Например, на транспортных станция и космопортах. Результаты его использования вдохнули в идеи покорения дальнего космоса новую жизнь. Расчёты получались столь точны, что расхождение в координатах назначенных и полученных составляли всего несколько километров. При этом суперкомпьютер обладал и существенными недостатками - - 1. Время расчёта скачка порой составляло несколько суток. (И для каждого корабля группы отдельно) - - 2. Производство суперкомпьютера было сверхдорогим и очень долгим. - - 3. Использование суперкомпьютера было сопряжено с значительными энергозатратами, а именно требовалась небольшая электростанция. - - 4. Он мог отправить только в одну сторону, но не мог вернуть. - - Был совершён эксперимент, при котором суперкомпьютер отправлял шаттл с таким же суперкомпьютеров целевую систему, затем требовалось развернуть в целевой системе электростанцию, подстанцию, коммуникации и установить суперкомпьютер. Идея была чрез чур авантюрно с самого начала. Требовалось быстро возвести космическую станцию, способную обслуживать столь ценное и сложное оборудование. Любой незначительный негативный фактор мог всё испортить. - - Провал эксперимента подал идею создания отправляемого спутника-маяка. - - - Спутник «Маяк-03» - - На помощь пришли промышленные квантовые компьютеры. Они позволили упростить вычисления, производимые суперкомпьютером, хотя и делали их куда менее точными. При этом новый модуль требовал на много меньше энергии, был сложен в производстве, но, как ни странно, сравнительно дешёвым. - - Важнейшей особенностью нового прототипа была поразительная защита от воздействия БС-модуля. Квантовй компьютер «Маяка-03» был способен находить «битые» данные и расчёты после воздействия колебаний вероятностных вол, и сам их устранял при помощи крайне специфических автоматизированных способов исправления ошибок. - - Всё это позволило создать серию лёгких спутников, которые практически случайно рассылались в разные звёздные системы. После прибытия спутники начинали посылать сигнал отбоя, сообщающий, что всё в порядке, или посылающие сигналы ошибки, сообщающие, что со спутником что-то случилось. Так же часто случалось, что спутник переставал передавать сигналы, что могло служить признаком его уничтожения. - - Рассылка спутников способствовало колонизации и следованиям дальнего космоса. Но всё ещё оставалась значительная погрешность вычислений и ненадёжности систем даже в уже проложенных путях. Маршруты были налажены, но раз в Земной квартал несколько шаттлов уничтожались или пропадали без вести. - - + content: book-mbsone-contents - type: entity parent: BookLoreBase @@ -1236,30 +357,7 @@ layers: - state: book_MBS2 - type: Paper - content: Искажатели «Маяк-04» и «Маяк-05» - - Рывок произошёл, когда длительные фундаментальные исследования Блюспейса и плазмы позволили создавать искажения в волнах вероятности в определённом радиусе вокруг искажателя «Маяк-04». Суть искажения была в притягивании объектов, находящихся в Блюспейс пространстве, к себе. Проблема была лишь в том, что после притягивания, шаттл врезался в искажатель и уничтожал его, то есть система была одноразовой. - - Следующая итерация, «Маяк-05», получила сложный вычислительный модуль. Который был на самом деле переработанным модулем «Маяк-01», но с технологиями квантовой электроники. Новый модуль позволил «вытягивать» шаттлы из Блюспейс пространства на некотором небольшом расстоянии от себя (с погрешностью). - - - Установка «Маяк-06» - - Определённая кульминация серии маяков стала, когда было решено объединить суперкомпьютер «Маяк-02», который переработали, сделав дешевле, быстрей и энергоэффективней, спутник «Маяк-03» и искажатель «Маяк-05». В результате вышла крупная и дорогая установка «Маяк-06», которая давала возможность вычислять прыжки для нескольких шаттлов, а также принимать прилетающие шаттлы и делать всё так, чтобы многие потоки шаттлов между собой не врезались. Это наиболее современная система, устанавливаемая на космических объектах, станциях, верфях, портах. - - - Искажатель «Маяк-07» - - На данный момент это последняя разработанная итерация технологии. Это громадная и крайне мощная версия искажателя «Маяк-05», совмещённая с переработанным суперкомпьютером. Особенностью его является то, что она «вытягивает» объекты не в радиусе, а вытянутой полосе. Это позволило создать установку, способную реализовывать таможенный контроль на границе секторов, заставляя все шаттлы перемещаться к таможенно-пограничной станции. - - Особенностью выступает то, что на длину полосы «вытягивания» влияют самые разны параметры, а потому порой она сокращается или удлиняется. Это даёт некоторое пространство для реализации возможностей различных челноков, подпольных организаций, террористов, контрабандистов и товарищей с чёрного рынка. - - - Искажатель «Маяк-08» - - Искажать «Маяк-04» имел и иной путь развития, нежели выведение судов из БС пространства к самому маяку на некоторое расстояние. Новая модель была оснащена куда более скромным расчётным модулем, менее чувствительными сканерами, но большей мощностью. Кто-то с иронией считал, что такая модель только и способна, что вытягивать к себе линкоры. Остальным объектам просто не хватило бы энергии, чтобы быть точно замеченными. Но идея изобретателей была не в этом. Данный маяк был способен притягивать к себе высокоэнергетические объекты. То есть субстанции. Которые и без БС-модуля имели огромный отклик в пространстве энергий. Например, сбежавшие из-под контроля сингулярности. Таким образом «Маяк-08» стал серьёзным ответом всем тем обществам, которые ежегодно и ежемесячно твердили об отказе в использовании сингулярных двигателей по причине существования вероятности аварии с их побегом и дальнейшим прилётом непойми куда и созданием ещё большей аварии. Теперь сингулярности можно было ловить. - - + content: book-mbstwo-contents - type: entity parent: BookLoreBase @@ -1271,36 +369,4 @@ layers: - state: book_implant - type: Paper - content: Импланты NT - - Во время решения ряда проблем, связанного с секретностью, доступом и безопасностью руководство пришло к выводу, что в конкретных частных, но порой регулярно встречающихся ситуациях ни в коем случае нельзя полагаться ни на какое снаряжение. И причина этому весьма проста - снаряжение можно снять. То есть в спешке, по небрежности или под воздействием злого умысла сотрудник может утерять нечто важное. Чтобы преодолеть эту сложность руководство NT учредило грант на создание подкожных имплантов, способных хоть в малой степени заменить некоторые виды снаряжения. - - - Имплант трекера - - Данный имплант устанавливается в грудную клетку неподалёку от сердца. Сердце является мышцей, которая постоянно пребывает в движении. А от того постоянно генерирует поверхностное напряжение, которого хватает на поддержание работы импланта. Помимо системы зарядки от мышцы имплант имеет антенну-передатчик, которая при каждом движении сердечной мышцы генерирует сигнал. Сигнал достигает антенн системы внутренней связи объекта НТ, а затем АЛУ (Арифметическо-Логическое устройство) при помощи Фурье-преобразований устанавливает положение импланта и передаёт данные на сервер. Таким образом трекер – это система локального позиционирования, но под кожей. Было бы глупо, если бы при остановке сердца от, скажем, инфаркта или прочих неприятных ситуаций имплант вышел из строя. А потому в него встроек небольшой аккумулятор, продолжающий работу импланта после тревожного использования. - - - Имплант света - - Имплант света представляет собой небольшой, но достаточно мощный светодиодный фонарик на аккумуляторе, и устанавливается в руку.. Очевидной проблемой может стать подзарядка аккумулятора, но решение подсказали древние фонарики тысячелетней давности с рычажной подзарядкой. Но в случае импланта рычагом для подзарядки являются мышцы. Носитель может совершить несложные движения рукой и подзарядить батарею своего фонарика, что делает имплант крайне полезным и долговечным. - - - Имплант грустного тромбона - - Имплант устанавливается в район диафрагмы. Имеет в себе небольшой аккумулятор, сторожевой таймер, небольшой чип логики и динамик. При дыхании происходит периодическое расширение и сужение диафрагмы, что совершенно не влияет на имплант. Если же диафрагма перестаёт, то начинается отсчёт секунд на сторожевом таймере. Если время превышает среднее максимальное время задержки дыхания, то сторожевой таймер переполняется и активирует чип, заставляя динамик издать грустный тревожный звук. - - - Имплант водокодера - - Встраивается в горло. Имплант включает в себя матрицу подвижных наночастиц, которые способные перестаиваться, «нарастая» и изменяя параметры голосовых связок из-за чего они начинают звучать иначе. Для регулировки требуется итерационное взаимодействие с подкожными регуляторами частоты и тембра. А именно требуется повернуть регулятор и тут же что-то произнести, дабы проверить звучание. - - - Имплант хонк - - И кто-то же придумал идею, что ряду сотрудников понадобится, возможно, издать громкий предупреждающий звук в ситуации, когда, скажем, коридор заполнен стоящими сотрудниками, мещающими пройти. Для этого был разработан имплант он, работающий аналогично импланту света. Четырёх-шести сгибаний руки хватит, чтобы зарядить батарею импланта и издать громкий предупреждающий звук. - - - Mindshield (майндшилд или имплант защиты разума) – имплант защиты разработки корпорации NanoTrasen, позволяющий нивелировать гипнотическое или психологическое воздействие на носителя. - - Имплант представляет из себя вычислительный чип, микросканер ЭЭГ и сложную сеть искусственный нейронов, а также чип, создающий искусственное увеличение лояльности к корпорации НаноТрейзен. Имплант является сложным в производстве, поэтому даже не весь состав станции удостоен быть носителем данного импланта, впрочем со временем догих исследований и модификаций, учёным удалось добиться того, что устанавливать его стало сравнительно просто любому обученному врачу при помощи имплантера стандартного образца. Использование искусственных нейронов позволяет как сканировать активность лобной доли головного мозга, выявляя гипноз или психологическое воздействие, так и стимулировать лобную кору, чтобы вывести мозг в нормальное состояние и избавиться от гипноза или психологического воздействия. Данный имплант постоянно сканирует лобную долю носителя, точно соотносит отклонения от нормы, достигая точности нивелирования гипноза или психологического воздействия на 99%. Работает, если воздействие на носителя протекает малое количество времени, иначе действия гипноза входит в нормальное состояние мозга, перестраивая структура мозга, чьи нейронные сети постоянно видоизменяются, и вывести носителя в первоначальное состояние используя имплант невозможно. + content: book-implants-contents diff --git a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml index cb834ab35c3..bed463766c2 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml @@ -15,3 +15,4 @@ - CorvaxFrame - CorvaxPearl - Box + - Train diff --git a/Resources/Prototypes/Corvax/Maps/Pools/default.yml b/Resources/Prototypes/Corvax/Maps/Pools/default.yml index 77181ffa9b1..2088ff3cccc 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/default.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/default.yml @@ -28,3 +28,4 @@ - Saltern - Packed - Reach + - Train diff --git a/Resources/Prototypes/Corvax/Maps/avrite.yml b/Resources/Prototypes/Corvax/Maps/avrite.yml index 986b98acde2..0870093fe84 100644 --- a/Resources/Prototypes/Corvax/Maps/avrite.yml +++ b/Resources/Prototypes/Corvax/Maps/avrite.yml @@ -1,7 +1,7 @@ - type: gameMap id: CorvaxAvrite mapName: 'Avrite Station' - mapPath: /Maps/corvax_avrit.yml + mapPath: /Maps/corvax_avrite.yml maxRandomOffset: 0 randomRotation: false minPlayers: 40 @@ -15,7 +15,7 @@ !type:NanotrasenNameGenerator prefixCreator: 'SY' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_corvaxavrit.yml + emergencyShuttlePath: /Maps/Shuttles/emergency_corvaxavrite.yml - type: StationJobs availableJobs: # service diff --git a/Resources/Prototypes/Datasets/Names/first.yml b/Resources/Prototypes/Datasets/Names/first.yml index 7351b620ce6..e1d2de73bf9 100644 --- a/Resources/Prototypes/Datasets/Names/first.yml +++ b/Resources/Prototypes/Datasets/Names/first.yml @@ -2,29 +2,19 @@ id: names_first values: - Аарон - - Абрам - - Аваз - Августин - Авраам - - Агап - - Агапит - - Агат - - Агафон - Адам - Адриан - Азамат - Азат - Азиз - - Аид - Айдар - Айрат - Акакий - Аким - - Алан - Александр - Алексей - - Али - - Алик - Алим - Алихан - Алишер @@ -36,11 +26,9 @@ - Анастасий - Анатолий - Анвар - - Ангел - Андрей - Анзор - Антон - - Анфим - Арам - Аристарх - Аркадий @@ -58,10 +46,8 @@ - Асхан - Асхат - Ахмет - - Ашот - Бахрам - Бенджамин - - Блез - Богдан - Борис - Борислав @@ -76,9 +62,7 @@ - Вениамин - Виктор - Вильгельм - - Вит - Виталий - - Влад - Владимир - Владислав - Владлен @@ -102,7 +86,6 @@ - Давид - Давлат - Дамир - - Дана - Даниил - Данил - Данис @@ -118,13 +101,9 @@ - Джан - Джеймс - Джереми - - Иеремия - Джозеф - Джонатан - - Дик - - Дин - Динар - - Дино - Дмитрий - Добрыня - Доминик @@ -184,7 +163,6 @@ - Клим - Конрад - Константин - - Коре - Корнелий - Кристиан - Кузьма @@ -226,7 +204,6 @@ - Мирон - Мирослав - Михаил - - Моисей - Мстислав - Мурат - Муслим @@ -243,7 +220,6 @@ - Николай - Нильс - Огюст - - Олег - Оливер - Орест - Орландо @@ -260,7 +236,6 @@ - Перри - Пётр - Платон - - Потап - Прохор - Равиль - Радий @@ -299,7 +274,6 @@ - Руслан - Рустам - Рэй - - Савва - Савелий - Саид - Салават @@ -363,7 +337,6 @@ - Чингиз - Шамиль - Шарль - - Шерлок - Эдгар - Эдуард - Эльдар @@ -384,59 +357,14 @@ - Ян - Яромир - Ярослав - - Андрей - - Антон - - Олег - - Роман - - Александр - - Сергей - - Анатолий - - Юрий - - Богдан - - Вениамин - - Виталий - - Владимир - - Дмитрий - - Иван - - Константин - - Алексей - - Артур - - Слава - - Борис - - Богдан - - Славик - - Вадим - - Валера - - Веня - Георг - - Гоша - - Жора - - Марк - - Глеб - Алекс - - Денис - - Егор - Фима - - Илья - - Лева - - Леня - - Матвей - - Митя - - Никита - - Антон - Олег - Петро - - Ростик - - Руслан - Савва - - Семён - - Степан - - Тима - Артем - - Фёдор - - Яша - Терентий - - Ава - Августа - Августина - Авдотья @@ -447,7 +375,6 @@ - Аглая - Агния - Агунда - - Ада - Аделаида - Аделина - Адель @@ -482,7 +409,6 @@ - Альба - Альбина - Альфия - - Аля - Амалия - Амаль - Амина @@ -507,7 +433,6 @@ - Асель - Асия - Астрид - - Ася - Афина - Аэлита - Аяна @@ -576,9 +501,7 @@ - Диана - Дильназ - Дильнара - - Диля - Дилярам - - Дина - Динара - Долорес - Доминика @@ -592,7 +515,6 @@ - Елена - Елизавета - Есения - - Ея - Жаклин - Жанна - Жансая @@ -606,7 +528,6 @@ - Зара - Зарема - Зарина - - Земфира - Зинаида - Зита - Злата @@ -634,7 +555,6 @@ - Ирина - Ирма - Искра - - Ия - Камила - Камилла - Кара @@ -649,25 +569,20 @@ - Корнелия - Кристина - Ксения - - Лада - Лана - Лара - Лариса - Лаура - Лейла - Леона - - Лера - Леся - Лета - Лиана - Лидия - Лиза - - Лика - - Лили - Лилиана - Лилит - Лилия - - Лина - Линда - Лиора - Лира @@ -687,7 +602,6 @@ - Люция - Люче - Ляйсан - - Ляля - Мавиле - Мавлюда - Магда @@ -708,8 +622,6 @@ - Марфа - Мелания - Мелисса - - Мика - - Мила - Милада - Милана - Милен @@ -720,7 +632,6 @@ - Мирослава - Мирра - Мишель - - Мия - Моника - Муза - Надежда @@ -732,7 +643,6 @@ - Наталья - Нелли - Нея - - Ника - Николь - Нина - Нинель @@ -818,7 +728,6 @@ - Тамила - Тара - Татьяна - - Тая - Таяна - Теона - Тереза @@ -880,7 +789,6 @@ - Эльвира - Эльмира - Эльнара - - Эля - Эмили - Эмилия - Эмма @@ -894,7 +802,6 @@ - Этери - Юлианна - Юлия - - Юна - Юния - Юнона - Ядвига diff --git a/Resources/Prototypes/Datasets/Names/first_female.yml b/Resources/Prototypes/Datasets/Names/first_female.yml index 7c8b9eab402..cd228ad4c3d 100644 --- a/Resources/Prototypes/Datasets/Names/first_female.yml +++ b/Resources/Prototypes/Datasets/Names/first_female.yml @@ -1,7 +1,6 @@ -- type: dataset +- type: dataset id: names_first_female values: - - Ава - Августа - Августина - Авдотья @@ -12,7 +11,6 @@ - Аглая - Агния - Агунда - - Ада - Аделаида - Аделина - Адель @@ -47,7 +45,6 @@ - Альба - Альбина - Альфия - - Аля - Амалия - Амаль - Амина @@ -72,7 +69,6 @@ - Асель - Асия - Астрид - - Ася - Афина - Аэлита - Аяна @@ -126,7 +122,6 @@ - Гюзель - Далида - Дамира - - Дана - Даниэла - Дания - Дара @@ -141,9 +136,7 @@ - Диана - Дильназ - Дильнара - - Диля - Дилярам - - Дина - Динара - Долорес - Доминика @@ -157,7 +150,6 @@ - Елена - Елизавета - Есения - - Ея - Жаклин - Жанна - Жансая @@ -171,7 +163,6 @@ - Зара - Зарема - Зарина - - Земфира - Зинаида - Зита - Злата @@ -199,7 +190,6 @@ - Ирина - Ирма - Искра - - Ия - Камила - Камилла - Кара @@ -214,25 +204,20 @@ - Корнелия - Кристина - Ксения - - Лада - Лана - Лара - Лариса - Лаура - Лейла - Леона - - Лера - Леся - Лета - Лиана - Лидия - Лиза - - Лика - - Лили - Лилиана - Лилит - Лилия - - Лина - Линда - Лиора - Лира @@ -252,7 +237,6 @@ - Люция - Люче - Ляйсан - - Ляля - Мавиле - Мавлюда - Магда @@ -273,8 +257,6 @@ - Марфа - Мелания - Мелисса - - Мика - - Мила - Милада - Милана - Милен @@ -285,7 +267,6 @@ - Мирослава - Мирра - Мишель - - Мия - Моника - Муза - Надежда @@ -297,7 +278,6 @@ - Наталья - Нелли - Нея - - Ника - Николь - Нина - Нинель @@ -383,7 +363,6 @@ - Тамила - Тара - Татьяна - - Тая - Таяна - Теона - Тереза @@ -445,7 +424,6 @@ - Эльвира - Эльмира - Эльнара - - Эля - Эмили - Эмилия - Эмма @@ -459,7 +437,6 @@ - Этери - Юлианна - Юлия - - Юна - Юния - Юнона - Ядвига diff --git a/Resources/Prototypes/Datasets/Names/first_male.yml b/Resources/Prototypes/Datasets/Names/first_male.yml index 09601d414c9..3dc6aa1ae3f 100644 --- a/Resources/Prototypes/Datasets/Names/first_male.yml +++ b/Resources/Prototypes/Datasets/Names/first_male.yml @@ -2,29 +2,19 @@ id: names_first_male values: - Аарон - - Абрам - - Аваз - Августин - Авраам - - Агап - - Агапит - - Агат - - Агафон - Адам - Адриан - Азамат - Азат - Азиз - - Аид - Айдар - Айрат - Акакий - Аким - - Алан - Александр - Алексей - - Али - - Алик - Алим - Алихан - Алишер @@ -36,11 +26,9 @@ - Анастасий - Анатолий - Анвар - - Ангел - Андрей - Анзор - Антон - - Анфим - Арам - Аристарх - Аркадий @@ -58,10 +46,8 @@ - Асхан - Асхат - Ахмет - - Ашот - Бахрам - Бенджамин - - Блез - Богдан - Борис - Борислав @@ -76,9 +62,7 @@ - Вениамин - Виктор - Вильгельм - - Вит - Виталий - - Влад - Владимир - Владислав - Владлен @@ -102,7 +86,6 @@ - Давид - Давлат - Дамир - - Дана - Даниил - Данил - Данис @@ -118,13 +101,9 @@ - Джан - Джеймс - Джереми - - Иеремия - Джозеф - Джонатан - - Дик - - Дин - Динар - - Дино - Дмитрий - Добрыня - Доминик @@ -184,7 +163,6 @@ - Клим - Конрад - Константин - - Коре - Корнелий - Кристиан - Кузьма @@ -226,7 +204,6 @@ - Мирон - Мирослав - Михаил - - Моисей - Мстислав - Мурат - Муслим @@ -243,7 +220,6 @@ - Николай - Нильс - Огюст - - Олег - Оливер - Орест - Орландо @@ -260,7 +236,6 @@ - Перри - Пётр - Платон - - Потап - Прохор - Равиль - Радий @@ -299,7 +274,6 @@ - Руслан - Рустам - Рэй - - Савва - Савелий - Саид - Салават @@ -363,7 +337,6 @@ - Чингиз - Шамиль - Шарль - - Шерлок - Эдгар - Эдуард - Эльдар @@ -384,55 +357,11 @@ - Ян - Яромир - Ярослав - - Андрей - - Антон - - Олег - - Роман - - Александр - - Сергей - - Анатолий - - Юрий - - Богдан - - Вениамин - - Виталий - - Владимир - - Дмитрий - - Иван - - Константин - - Алексей - - Артур - - Слава - - Борис - - Богдан - - Славик - - Вадим - - Валера - - Веня - Георг - - Гоша - - Жора - - Марк - - Глеб - Алекс - - Денис - - Егор - Фима - - Илья - - Лева - - Леня - - Матвей - - Митя - - Никита - - Антон - Олег - Петро - - Ростик - - Руслан - Савва - - Семён - - Степан - - Тима - Артем - - Фёдор - - Яша - Терентий diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 748bb97153e..04ca68f3671 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -113,6 +113,8 @@ - state: equipped-head - state: equipped-head-unshaded shader: unshaded + - type: PointLight + radius: 6 - type: PressureProtection highPressureMultiplier: 0.72 lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index a01d6fae519..b44508d4a37 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -357,6 +357,24 @@ - type: Clothing sprite: Clothing/Head/Helmets/ert_janitor.rsi +- type: entity + parent: ClothingHeadHelmetBasic + id: ClothingHeadHelmetRaid + name: syndicate raid helmet + description: An armored helmet for use with the syndicate raid suit. Very stylish. + components: + - type: Sprite + sprite: Clothing/Head/Helmets/syndie-raid.rsi + - type: Clothing + sprite: Clothing/Head/Helmets/syndie-raid.rsi + - type: Armor + modifiers: #There's gotta be SOME reason to use this over other helmets. + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 0.85 + #Bone Helmet - type: entity parent: ClothingHeadHelmetBasic diff --git a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml index d7f04f49bc3..608f061dd89 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/base_clothingneck.yml @@ -39,3 +39,4 @@ tags: - Scarf - ClothMade + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml index ea7c9af24f0..743795a407c 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/specific.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity parent: ClothingNeckBase id: ClothingNeckChameleon name: striped red scarf @@ -12,7 +12,7 @@ - type: Clothing sprite: Clothing/Neck/Scarfs/red.rsi - type: ChameleonClothing - slot: [neck] + slot: [NECK] default: ClothingNeckScarfStripedRed - type: UserInterface interfaces: diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 5c4df0c2379..23f8456dd1d 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -99,6 +99,78 @@ reflects: - Energy +- type: entity + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing] + id: ClothingOuterArmorRaid + name: syndicate raid suit + description: A somewhat flexible and well-armored suit with a powerful shoulder mounted flashlight manufactured in the Gorlex Marauder's iconic blood-red color scheme, it does not protect it's wearer from space. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Armor/syndie-raid.rsi + layers: + - state: icon + - state: light-overlay + visible: false + shader: unshaded + - type: Clothing + sprite: Clothing/OuterClothing/Armor/syndie-raid.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.35 + Slash: 0.35 + Piercing: 0.35 + Heat: 0.35 + Caustic: 0.5 + - type: ExplosionResistance + damageCoefficient: 0.35 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + #Shoulder mounted flashlight + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + outerClothing: + - state: equipped-OUTERCLOTHING-light + shader: unshaded + - type: Appearance + - type: HandheldLight + addPrefix: false + blinkingBehaviourId: blinking + radiatingBehaviourId: radiating + - type: PointLight + enabled: false + color: "#80ff80" + radius: 5 + energy: 2 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + netsync: false + - type: LightBehaviour + behaviours: + - !type:FadeBehaviour + id: radiating + interpolate: Linear + maxDuration: 2.0 + startValue: 3.0 + endValue: 2.0 + isLooped: true + reverseWhenFinished: true + - !type:PulseBehaviour + id: blinking + interpolate: Nearest + maxDuration: 1.0 + minValue: 0.1 + maxValue: 2.0 + isLooped: true + - type: Battery + maxCharge: 600 + startingCharge: 600 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 2 + - type: entity parent: ClothingOuterBaseLarge id: ClothingOuterArmorCult diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 72e7705a09c..4ebb1bcb516 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -42,6 +42,8 @@ id: MobHumanSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink suffix: Human, NukeOps components: + - type: Loadout + prototypes: [SyndicateOperativeGearReinforcementNukeOps] - type: NukeOperative #Flesh Cultist diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 63e65939f0f..4a56b3ec420 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -72,5 +72,11 @@ components: - type: HumanoidAppearance species: Reptilian + hideLayersOnEquip: + - Snout + - HeadTop + - HeadSide + - type: Inventory + speciesId: reptilian #Weh diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index f5cb260e03b..b6488dbe8bf 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -432,6 +432,7 @@ whitelist: tags: - Cola + hideStackVisualsWhenClosed: false - type: StorageFill contents: - id: DrinkColaCan diff --git a/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml new file mode 100644 index 00000000000..a15e30fbc72 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml @@ -0,0 +1,139 @@ +- type: entity + name: lamp + parent: BaseItem + id: ArabianLamp + description: Why the heck won't this piece of junk open!? + components: + - type: Appearance + - type: AccessReader + access: [ [ "CentralCommand" ] ] + breakOnEmag: false + - type: Lock + lockOnClick: false + breakOnEmag: false + - type: EntityStorage + capacity: 1 # Its smol. + itemCanStoreMobs: false # just leaving this here explicitly since I know at some point someone will want to use this to hold a mob. This also prevents it from becoming His Grace. + # - type: StorageFill + # contents: + # - id: PuddleSparkle # Ha! Cute. Unfortunately it despawns before the container is likely to open. + - type: ContainerContainer + containers: + entity_storage: !type:Container + - type: Item + size: Normal + heldPrefix: lamp + sprite: Objects/Misc/arabianlamp.rsi + inhandVisuals: + left: + - state: inhand-left + right: + - state: inhand-right + - type: MeleeWeapon + wideAnimationRotation: 180 + damage: + types: + Blunt: 6 + - type: ItemToggleMeleeWeapon + activatedDamage: + types: + Blunt: 6 + Heat: 3 + activatedSoundOnHit: + path: /Audio/Weapons/Guns/Hits/energy_meat1.ogg + params: + variation: 0.250 + volume: -10 + activatedSoundOnHitNoDamage: + path: /Audio/Weapons/Guns/Hits/energy_meat1.ogg + params: + variation: 0.250 + volume: -12 + deactivatedSoundOnHitNoDamage: + collection: MetalThud + - type: ItemToggle + predictable: false + soundActivate: + collection: lighterOnSounds + soundDeactivate: + path: /Audio/Items/candle_blowing.ogg + params: + variation: 0.05 + volume: 10 + - type: ItemToggleHot + - type: Sprite + sprite: Objects/Misc/arabianlamp.rsi + layers: + - state: lamp + map: [ "enum.StorageVisualLayers.Base" ] + - state: lamptop + map: ["enum.StorageVisualLayers.Door"] + - state: flame + visible: false + shader: unshaded + map: ["enum.ToggleVisuals.Layer"] + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { visible: true } + False: { visible: false } + - type: EntityStorageVisuals + stateBaseClosed: lamp + stateDoorOpen: lamp + stateDoorClosed: lamptop + - type: ToggleableLightVisuals + spriteLayer: flame + inhandVisuals: + left: + - state: inhand-left-flame + shader: unshaded + right: + - state: inhand-right-flame + shader: unshaded + - type: SolutionContainerManager + solutions: + Welder: + reagents: + - ReagentId: WeldingFuel + Quantity: 25 + maxVol: 25 + - type: SolutionTransfer + transferAmount: 5 + canChangeTransferAmount: false + - type: Spillable + solution: Welder + - type: DrawableSolution + solution: Welder + - type: RefillableSolution + solution: Welder + - type: DrainableSolution + solution: Welder + - type: ExaminableSolution + solution: Welder + - type: SolutionRegeneration + solution: Welder + generated: + reagents: + - ReagentId: WeldingFuel + Quantity: 0.1 + duration: 5 + - type: EmitSoundOnLand + sound: + path: /Audio/Items/welder_drop.ogg + - type: Welder + fuelConsumption: 0.05 + fuelLitCost: 0.05 + tankSafe: true + - type: PointLight + enabled: false + netsync: false + radius: 5 + color: orange + - type: StaticPrice + price: 1500 + - type: Prayable + sentMessage: prayer-popup-notify-lamp-sent + notificationPrefix: prayer-chat-notify-lamp + verb: prayer-verbs-rub + verbImage: null \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 1566a84e52d..93b2e415721 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -505,8 +505,8 @@ - state: icon-syndicate - type: ItemBorgModule items: - - WeaponAdvancedLaser - - Machete + - WeaponPistolEchis + - EnergyDaggerLoud - type: entity id: BorgModuleOperative diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 36e629c21c1..fba506d1f95 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -401,20 +401,6 @@ components: - type: LimitedCharges charges: 0 - - type: RCD - availablePrototypes: - - WallSolid - - FloorSteel - - Plating - - Catwalk - - Grille - - Window - - WindowDirectional - - WindowReinforcedDirectional - - ReinforcedWindow - - Airlock - - AirlockGlass - - Firelock - type: entity id: RCDRecharging diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index ae309661fee..8f469f87a9b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -102,6 +102,41 @@ gun_magazine: !type:ContainerSlot gun_chamber: !type:ContainerSlot +- type: entity + name: echis + parent: BaseItem + id: WeaponPistolEchis + description: A viper for use by cyborgs. Creates .35 ammo on the fly from an internal ammo fabricator, which slowly self-charges. + components: + - type: Gun + fireRate: 5 + selectedMode: SemiAuto + availableModes: + - SemiAuto + - FullAuto + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/pistol.ogg + - type: Sprite + sprite: Objects/Weapons/Guns/Pistols/viper.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + - type: ProjectileBatteryAmmoProvider + proto: BulletPistol + fireCost: 100 + - type: Battery + maxCharge: 1000 + startingCharge: 1000 + - type: BatterySelfRecharger + autoRecharge: true + autoRechargeRate: 25 + - type: AmmoCounter + - type: entity name: cobra parent: BaseWeaponPistol diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index cca5356ba9a..dcab2e3eeed 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -99,28 +99,27 @@ jobRequired: - SalvageSpecialist # Corvax-HiddenDesc-End - + - type: entity - name: pen + name: energy dagger parent: EnergySword - id: EnergyDagger - suffix: E-Dagger - description: 'A dark ink pen.' + id: EnergyDaggerLoud + description: A not as loud and dangerous dagger with a beam made of pure, concentrated plasma. This one is completely undisguised. components: - type: ItemToggle soundActivate: path: /Audio/Weapons/ebladeon.ogg params: - volume: -6 + volume: -3 soundDeactivate: path: /Audio/Weapons/ebladeoff.ogg params: - volume: -6 + volume: -3 - type: ItemToggleMeleeWeapon activatedSoundOnSwing: path: /Audio/Weapons/eblademiss.ogg params: - volume: -6 + volume: -3 variation: 0.250 activatedDamage: types: @@ -131,14 +130,14 @@ activeSound: path: /Audio/Weapons/ebladehum.ogg params: - volume: -6 + volume: -3 - type: ComponentToggler components: - type: Sharp - type: DisarmMalus malus: 0.4 - type: Sprite - sprite: Objects/Weapons/Melee/e_dagger.rsi + sprite: Objects/Weapons/Melee/e_dagger_loud.rsi layers: - state: e_sword - state: e_sword_blade @@ -155,7 +154,7 @@ Blunt: 1 - type: Item size: Tiny - sprite: Objects/Weapons/Melee/e_dagger.rsi + sprite: Objects/Weapons/Melee/e_dagger_loud.rsi - type: UseDelay delay: 1.0 - type: PointLight @@ -174,11 +173,45 @@ right: - state: inhand-right-blade shader: unshaded + - type: DisarmMalus + malus: 0 + +- type: entity + name: pen + parent: EnergyDaggerLoud + id: EnergyDagger + suffix: E-Dagger + description: 'A dark ink pen.' + components: + - type: ItemToggle + soundActivate: + path: /Audio/Weapons/ebladeon.ogg + params: + volume: -6 + soundDeactivate: + path: /Audio/Weapons/ebladeoff.ogg + params: + volume: -6 + - type: ItemToggleActiveSound + activeSound: + path: /Audio/Weapons/ebladehum.ogg + params: + volume: -6 + - type: Sprite + sprite: Objects/Weapons/Melee/e_dagger.rsi + layers: + - state: e_sword + - state: e_sword_blade + color: "#FFFFFF" + visible: false + shader: unshaded + map: [ "blade" ] + - type: Item + size: Tiny + sprite: Objects/Weapons/Melee/e_dagger.rsi - type: Tag tags: - Write - - type: DisarmMalus - malus: 0 # Corvax-HiddenDesc-Start - type: HiddenDescription entries: @@ -194,7 +227,7 @@ - Scientist - Borg # Corvax-HiddenDesc-End - + - type: entity parent: BaseItem id: EnergyDaggerBox @@ -263,7 +296,7 @@ jobRequired: - SalvageSpecialist # Corvax-HiddenDesc-End - + - type: entity name: double-bladed energy sword parent: EnergySword diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index ea2e73ac151..608fb2544ae 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -5,7 +5,7 @@ description: Definition of a Classic. Keeping murder affordable since 200,000 BCE. components: - type: EmbeddableProjectile - offset: 0.15,0.15 + offset: -0.15,0.0 - type: ThrowingAngle angle: 225 - type: LandAtCursor diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index e92da80c4b2..0c280f339ac 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -1160,6 +1160,10 @@ suffix: External, Escape 3x4, Glass, Docking components: - type: GridFill + addComponents: + - type: IFF + flags: + - HideLabel #HighSecDoors - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml index 8281a6548bd..64ad3a30da0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml @@ -56,6 +56,7 @@ SheetSteel1: min: 1 max: 2 + - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 diff --git a/Resources/Prototypes/Entities/Structures/Machines/research.yml b/Resources/Prototypes/Entities/Structures/Machines/research.yml index 8b1d47acdec..f8da5ad0c8c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/research.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/research.yml @@ -49,6 +49,7 @@ min: 1 max: 2 - type: Appearance + - type: AmbientOnPowered - type: AmbientSound volume: -9 range: 5 diff --git a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml index 904bf46a0b7..24e7e478c9c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml @@ -22,6 +22,12 @@ snapCardinals: true layers: - state: server + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: entity parent: SurveillanceCameraRouterBase @@ -104,6 +110,7 @@ subnetFrequency: SurveillanceCameraGeneral - type: entity + abstract: true parent: [ BaseMachinePowered, ConstructibleMachine ] id: SurveillanceCameraWirelessRouterBase name: wireless camera router @@ -126,6 +133,12 @@ sprite: Structures/Machines/server.rsi layers: - state: server + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: entity parent: SurveillanceCameraWirelessRouterBase diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index 5bdefb8bfc5..4a1b5a3560a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -21,6 +21,12 @@ True: { visible: true } False: { visible: false } - type: Appearance + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 5 + sound: + path: /Audio/Ambience/Objects/server_fans.ogg - type: WiresVisuals - type: Physics bodyType: Static diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml index 4eec014f11b..eff831fa9ea 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml @@ -25,3 +25,32 @@ - type: Tag tags: - SpreaderIgnore + +- type: entity + id: AtmosDeviceFanDirectional + name: directional fan + description: A thin fan, stopping the movement of gases across it. + placement: + mode: SnapgridCenter + components: + - type: Transform + anchored: true + - type: Physics + bodyType: Static + - type: Sprite + sprite: Structures/Piping/Atmospherics/directionalfan.rsi + state: icon + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.48,-0.48,0.48,-0.40" + - type: Airtight + noAirWhenFullyAirBlocked: false + airBlockedDirection: + - South + - type: Clickable + - type: Tag + tags: + - SpreaderIgnore diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index a4bc4d519f3..fdb874567e7 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1156,6 +1156,11 @@ - type: IconSmooth key: walls base: mining + - type: RandomIconSmooth + randomStates: + - mining + - miningB + - type: Appearance - type: entity parent: WallShuttleDiagonal diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index d5cd6a3f978..3e4ea6d7b31 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -73,7 +73,7 @@ parent: BaseGameRule id: BaseNukeopsRule components: - - type: RandomMetadata #this generates the random operation name cuz it's cool. + - type: RandomMetadata #this generates the random operation name cuz it's cool. nameSegments: - operationPrefix - operationSuffix @@ -95,7 +95,7 @@ - type: GameRule minPlayers: 20 - type: LoadMapRule - gameMap: NukieOutpost + mapPath: /Maps/Nonstations/nukieplanet.yml - type: AntagSelection selectionTime: PrePlayerSpawn definitions: diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 5c6b0eee0d7..245ccce4b7b 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -15,4 +15,4 @@ - Saltern - Packed - Reach - #- Train + - Train diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index b28362a91a6..e0c2d707563 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -23,7 +23,7 @@ IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] + Botanist: [ 3, 3 ] Chef: [ 2, 2 ] Janitor: [ 3, 3 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml index 9ffc9ae5472..b67d7d2af6e 100644 --- a/Resources/Prototypes/Maps/oasis.yml +++ b/Resources/Prototypes/Maps/oasis.yml @@ -21,7 +21,7 @@ IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] + Botanist: [ 2, 3 ] Chef: [ 2, 2 ] Janitor: [ 3, 3 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index a473cc315c5..26de9237930 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -20,7 +20,7 @@ IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] + Botanist: [ 1, 2 ] Chef: [ 1, 1 ] Janitor: [ 1, 2 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index ad2ea2ffea2..26a30fcdb7b 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -22,7 +22,7 @@ Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] + Botanist: [ 1, 2 ] Chef: [ 1, 1 ] Janitor: [ 1, 1 ] Chaplain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/syndicate.yml b/Resources/Prototypes/Maps/syndicate.yml deleted file mode 100644 index abb63126d9e..00000000000 --- a/Resources/Prototypes/Maps/syndicate.yml +++ /dev/null @@ -1,11 +0,0 @@ -- type: gameMap - id: NukieOutpost - mapName: Nukie Outpost - mapPath: /Maps/Nonstations/nukieplanet.yml - minPlayers: 0 - stations: - SyndicateOutpost: - stationProto: StandardNukieOutpost - components: - - type: StationNameSetup - mapNameTemplate: "Nukie Outpost" diff --git a/Resources/Prototypes/NPCs/utility_queries.yml b/Resources/Prototypes/NPCs/utility_queries.yml index 3d5385ecbcd..06bc0a9a9eb 100644 --- a/Resources/Prototypes/NPCs/utility_queries.yml +++ b/Resources/Prototypes/NPCs/utility_queries.yml @@ -131,6 +131,7 @@ types: Blunt: 0 - type: Item + - !type:RemoveAnchoredFilter considerations: - !type:TargetMeleeCon curve: !type:QuadraticCurve diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index 1d678a86ce9..792a2c868fb 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -39,6 +39,13 @@ - PinpointerSyndicateNuclear - DeathAcidifierImplanter +# Syndicate Reinforcement NukeOps +- type: startingGear + id: SyndicateOperativeGearReinforcementNukeOps + parent: SyndicateOperativeGearExtremelyBasic + equipment: + id: SyndiPDA #Do not give a PDA to the normal Reinforcement - it will spawn with a 20TC uplink + #Syndicate Operative Outfit - Basic - type: startingGear id: SyndicateOperativeGearBasic diff --git a/Resources/Prototypes/_Backmen/Entities/Mobs/NPCs/blob.yml b/Resources/Prototypes/_Backmen/Entities/Mobs/NPCs/blob.yml index 7db90eaa730..5ceb4dee893 100644 --- a/Resources/Prototypes/_Backmen/Entities/Mobs/NPCs/blob.yml +++ b/Resources/Prototypes/_Backmen/Entities/Mobs/NPCs/blob.yml @@ -117,7 +117,7 @@ drawdepth: Mobs sprite: Backmen/Mobs/Aliens/blob.rsi state: blobpod - - type: GuideHelp + - type: GuideHelp guides: - Blob @@ -145,6 +145,7 @@ - type: GhostTakeoverAvailable - type: Blobbernaut - type: BlobSpeak + longRange: false - type: Physics - type: InputMover - type: MobMover @@ -212,7 +213,7 @@ isToggle: true color: "#808080" playSoundOn: false - - type: GuideHelp + - type: GuideHelp guides: - Blob @@ -262,7 +263,7 @@ layer: - BlobTileLayer density: 1000 - - type: GuideHelp + - type: GuideHelp guides: - Blob diff --git a/Resources/Prototypes/_Backmen/groups_radio_channels.yml b/Resources/Prototypes/_Backmen/groups_radio_channels.yml index 270fb42c6d0..631a43e1524 100644 --- a/Resources/Prototypes/_Backmen/groups_radio_channels.yml +++ b/Resources/Prototypes/_Backmen/groups_radio_channels.yml @@ -1,6 +1,6 @@ - type: radioChannel id: GROUPS_0 - name: Группа 0 + name: bkm-radio-group0 keycode: '0' frequency: 8100 color: "#10cae3" @@ -8,7 +8,7 @@ - type: radioChannel id: GROUPS_1 - name: Группа 1 + name: bkm-radio-group1 keycode: '1' frequency: 8101 color: "#10cae3" @@ -16,7 +16,7 @@ - type: radioChannel id: GROUPS_2 - name: Группа 2 + name: bkm-radio-group2 keycode: '2' frequency: 8102 color: "#10cae3" @@ -24,7 +24,7 @@ - type: radioChannel id: GROUPS_3 - name: Группа 3 + name: bkm-radio-group3 keycode: '3' frequency: 8103 color: "#10cae3" @@ -32,7 +32,7 @@ - type: radioChannel id: GROUPS_4 - name: Группа 4 + name: bkm-radio-group4 keycode: '4' frequency: 8104 color: "#10cae3" @@ -40,7 +40,7 @@ - type: radioChannel id: GROUPS_5 - name: Группа 5 + name: bkm-radio-group5 keycode: '5' frequency: 8105 color: "#10cae3" @@ -48,7 +48,7 @@ - type: radioChannel id: GROUPS_6 - name: Группа 6 + name: bkm-radio-group6 keycode: '6' frequency: 8106 color: "#10cae3" @@ -56,7 +56,7 @@ - type: radioChannel id: GROUPS_7 - name: Группа 7 + name: bkm-radio-group7 keycode: '7' frequency: 8107 color: "#10cae3" @@ -64,7 +64,7 @@ - type: radioChannel id: GROUPS_8 - name: Группа 8 + name: bkm-radio-group8 keycode: '8' frequency: 8108 color: "#10cae3" @@ -72,7 +72,7 @@ - type: radioChannel id: GROUPS_9 - name: Группа 9 + name: bkm-radio-group9 keycode: '9' frequency: 8109 color: "#10cae3" diff --git a/Resources/Prototypes/_Backmen/radio_channels.yml b/Resources/Prototypes/_Backmen/radio_channels.yml index 926b26c2d1d..700e60574ac 100644 --- a/Resources/Prototypes/_Backmen/radio_channels.yml +++ b/Resources/Prototypes/_Backmen/radio_channels.yml @@ -1,6 +1,6 @@ - type: radioChannel id: CSH - name: CSH + name: bkm-radio-csh keycode: 'в' frequency: 8118 color: "#8f09b0" @@ -8,7 +8,7 @@ - type: radioChannel id: Fleet - name: Флот + name: bkm-radio-fleet keycode: 'х' frequency: 8119 color: "#006400" @@ -16,7 +16,7 @@ - type: radioChannel id: Flesh - name: Культ Плоти + name: bkm-radio-flesh keycode: 'ы' frequency: 8120 color: "#cf1b48" @@ -24,7 +24,7 @@ - type: radioChannel id: UEG - name: ОПЗ + name: bkm-radio-UEG keycode: 'з' frequency: 8121 color: "#228B22" @@ -32,7 +32,7 @@ - type: radioChannel id: AID - name: ИИ Дроны + name: bkm-radio-AID keycode: 'ж' frequency: 1301 color: "#aae8f2" @@ -40,7 +40,7 @@ - type: radioChannel id: AIMALF - name: МАЛФ + name: bkm-radio-AIMALF keycode: 'б' frequency: 1300 color: "#c90000" @@ -48,7 +48,7 @@ - type: radioChannel id: CentComOBR - name: МТФ + name: bkm-radio-CentComOBR keycode: '=' frequency: 1345 color: "#3c87e8" @@ -56,7 +56,7 @@ - type: radioChannel id: CentComOBREPS11 - name: Эпсилон + name: bkm-radio-CentComOBREPS11 keycode: 'э' frequency: 1344 color: "#3c87e8" @@ -64,7 +64,7 @@ - type: radioChannel id: CentComOBRSR6 - name: Сиерра + name: bkm-radio-CentComOBRSR6 keycode: 'ъ' frequency: 1342 color: "#3c87e8" @@ -72,7 +72,7 @@ - type: radioChannel id: Rebels - name: Повстанцы + name: bkm-radio-Rebels keycode: 'ь' frequency: 1245 color: "#fbff2b" @@ -80,7 +80,7 @@ - type: radioChannel id: CentComDeath - name: Эскадрон + name: bkm-radio-CentComDeath keycode: '-' frequency: 1341 color: "#727273" @@ -88,7 +88,7 @@ - type: radioChannel id: Hivemind - name: Улей + name: bkm-radio-Hivemind keycode: 'у' frequency: 8888 color: "#800080" diff --git a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml index c99c59656b7..42b1f7b3f2e 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml @@ -68,7 +68,7 @@ - Отвод в космос - Массив скрубберов - Here is one layer of an example setup: (pipes can and do need to be layered under the scrubbers below to connect them!) + Here is one layer of an example setup: @@ -79,15 +79,15 @@ - - + + - - + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml b/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml index 14a7b860dfa..0147f72cf02 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/SlimePerson.xml @@ -15,18 +15,18 @@ но заставляет персонажа сбросить всю одежду, инвентарь и предметы в руках и карманах. Данная форма полезна если необходимо быстро сбежать. Герас достаточно маленький чтобы его можно было поднять, (двумя руками) или поместить в вещмешок. - Внутри оболочки слаймолюда есть внутреннее хранилище, объемом 2x2. Любой может видеть что находится внутри и забрать это без разрешения, так что будьте осторожнее. При превращении в гераса внутреннее хранилище остается. - - Slimepeople have an [bold]internal 2x3 storage inventory[/bold] inside of their slime membrane. Anyone can see what's inside and take it out of you without asking, - so be careful. They [bold]don't drop their internal storage when they morph into a geras, however![/bold] - - Slimepeople have slight accelerated regeneration compared to other humanoids. They're also capable of hardening their fists, and as such have stronger punches, - although they punch a little slower. - - Their slime "blood" can not be regenerated from Iron. Slime Blood is technically a source of - moderately filling food for other species, although drinking the blood of your coworkers is usually frowned upon. - They suffocate 80% slower, but take pressure damage 9% faster. This makes them by far the species most capable to survive in hard vacuum. For a while. - - They take [color=#1e90ff]80% less Cellular damage, 40% less Blunt damage and 20% less Poison damage[/color], but [color=#ffa500]50% more Cold damage, 20% more Slash damage and 20% more Piercing damage[/color]. + Внутри оболочки слаймолюда есть внутреннее хранилище, объемом 2x3. Любой может видеть что находится внутри и забрать это без разрешения, так что будьте осторожнее. При превращении в гераса внутреннее хранилище остается. + + ## Расовые особенности + - Получают [color=#ffa500]на 50% больше урона холодом, на 20% больше порезов и уколов[/color], но [color=#1e90ff]на 20% меньше урона от ядов, на 40% меньше ушибов и на 80% меньше клеточного урона[/color]. + - Скорость метаболизма - 0.13 единиц за тик. Это означает, что у них всё усваивается медленней, чем у других. + - Имеют всего два внутренних органа: легкие и ядро слайма. Ядро слайма переваривает еду, напитки, лекарства, яды, наркотики и алкоголь. Максимальная вместимость 50 единиц, а максимальное количество одновременно усваиваемых веществ - 6. + - При контакте с водой (огнетушители, спреи) наносится 12 термического урона. Инъекции, питьё воды, хождение по лужам, вдыхание водяного пара - не наносит урон. + - Повышенный урон от давления. + - Дышат азотом (N2) и выдыхают его оксид (N2O). + - Быстрее пьянеют. + - Можно разделать на крюке и получить 5 шаров слизи. + - Вместо крови - слизь зеленого цвета. Она замедляет персонажей на ней на 25%. + - Слаймолюды дышат реже человека в 5 раз, следовательно получают по [color=red]0.2[/color] урона удушьем без азота. Могут долго обходиться без азота. diff --git a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json index 88e3ebd509d..3b5d02aff6a 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/Color/yellow.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..c7ab17e261d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..d13b5d9acb2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png new file mode 100644 index 00000000000..7baca16fb42 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png new file mode 100644 index 00000000000..e8db961b770 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png new file mode 100644 index 00000000000..1580937e762 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json new file mode 100644 index 00000000000..2faf18830d9 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Helmets/syndie-raid.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by alzore_(Discord) for SS14 using the colors of the blood-red hardsuit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png new file mode 100644 index 00000000000..6833f250275 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png new file mode 100644 index 00000000000..58ba92e53fc Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-light.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..1ab6e6cfefe Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..e6a0733e3e7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png new file mode 100644 index 00000000000..54665d7a0e5 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png new file mode 100644 index 00000000000..64d25308ab6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png new file mode 100644 index 00000000000..fd3c44d4ad0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png new file mode 100644 index 00000000000..c98170b7e1d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/light-overlay.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json new file mode 100644 index 00000000000..ff590848daa --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by alzore_(Discord) for SS14 using the colors of the blood-red hardsuit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-light", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-light-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json index b0c4419ddae..9a670d15261 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/combatboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by @ninruB#7795, based off tgstation's jackboots at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. Vox state modified from jackboots.rsi by Flareguy", + "copyright": "Made by @ninruB#7795, based off tgstation's jackboots at commit https://github.com/tgstation/tgstation/commit/7e4e9d432d88981fb9bb463970c5b98ce85c0abe. Vox state modified from jackboots.rsi by Flareguy, reptilian made by kuro(388673708753027083)", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-FEET-vox", "directions": 4 }, + { + "name": "equipped-FEET-reptilian", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json index 6b1053d8ea2..20e3f4fe25b 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/magboots-science.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Drawn by Ubaser. Vox states made by Flareguy, modified from magboots.rsi", + "copyright": "Drawn by Ubaser. Vox states made by Flareguy, modified from magboots.rsi, resprited by fazan_saverg (842350861123452948) on discord.", "size": { "x": 32, "y": 32 @@ -11,10 +11,18 @@ "name": "equipped-FEET", "directions": 4 }, + { + "name": "equipped-FEET-reptilian", + "directions": 4 + }, { "name": "on-equipped-FEET", "directions": 4 }, + { + "name": "on-equipped-FEET-reptilian", + "directions": 4 + }, { "name": "equipped-FEET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json index 7c3599192c9..e8c4fe40cda 100644 --- a/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json +++ b/Resources/Textures/Clothing/Shoes/Boots/speedboots.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404. Vox states made by Flareguy, modified from magboots.rsi", + "copyright": "Created by EmoGarbage404. Vox states made by Flareguy, modified from magboots.rsi, fix digi sprites by DreamlyJack", "size": { "x": 32, "y": 32 @@ -23,6 +23,14 @@ "name": "on-equipped-FEET-vox", "directions": 4 }, + { + "name": "equipped-FEET-reptilian", + "directions": 4 + }, + { + "name": "on-equipped-FEET-reptilian", + "directions": 4 + }, { "name": "icon" }, diff --git a/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json b/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json index c7b7a099a75..cc25ddeee5f 100644 --- a/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json +++ b/Resources/Textures/Corvax/Objects/Misc/books.rsi/meta.json @@ -102,6 +102,9 @@ }, { "name": "book_implant" + }, + { + "name": "book_icon" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png new file mode 100644 index 00000000000..decabebccb6 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png new file mode 100644 index 00000000000..e512dcf2975 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left-flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png new file mode 100644 index 00000000000..680158cc918 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png new file mode 100644 index 00000000000..a1fc9ee7b69 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right-flame.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png new file mode 100644 index 00000000000..0f6b7bf2c9e Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png new file mode 100644 index 00000000000..616a46f4e53 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamp.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png new file mode 100644 index 00000000000..e3fe0fc3cb0 Binary files /dev/null and b/Resources/Textures/Objects/Misc/arabianlamp.rsi/lamptop.png differ diff --git a/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json b/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json new file mode 100644 index 00000000000..32199184601 --- /dev/null +++ b/Resources/Textures/Objects/Misc/arabianlamp.rsi/meta.json @@ -0,0 +1,117 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by IProduceWidgets, flame sprite by TheShuEd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "lamp", + "directions": 4 + }, + { + "name": "lamptop", + "directions": 4 + }, + { + "name": "flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left-flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-flame", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png new file mode 100644 index 00000000000..109a3230b98 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png new file mode 100644 index 00000000000..8b8c9f45a74 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/e_sword_blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png new file mode 100644 index 00000000000..4111eebaab4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png new file mode 100644 index 00000000000..03d50f98ef4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png new file mode 100644 index 00000000000..639da1c1843 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png new file mode 100644 index 00000000000..ae7c25221e3 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png new file mode 100644 index 00000000000..00d8e890aaa Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json new file mode 100644 index 00000000000..3b12fda33ee --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/e_dagger_loud.rsi/meta.json @@ -0,0 +1,78 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation and modified by alzore_(Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "e_sword" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "e_sword_blade", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png new file mode 100644 index 00000000000..577175edcd2 Binary files /dev/null and b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json new file mode 100644 index 00000000000..217a9f3d782 --- /dev/null +++ b/Resources/Textures/Structures/Piping/Atmospherics/directionalfan.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Made by SlamBamActionman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon", + "directions": 4, + "delays":[ + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ], + [ + 0.01,0.01,0.01,0.01 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png index 45134518715..a83b3f9e095 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp0.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png index 21f121314de..8902a538953 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp1.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png index 4002ea9fb60..f579920985f 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp2.png differ diff --git a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png index 63d8adc2c79..129f9388f7d 100644 Binary files a/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png and b/Resources/Textures/Structures/Power/Generation/PA/control_box.rsi/unlitp3.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index db2d5df273a..cc78e22a63b 100644 --- a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json @@ -5,1403 +5,490 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, except numerical signs which were created by discord: brainfood#7460, states: 'survival' and 'ntmining' from https://github.com/tgstation/tgstation/commit/f743754ec3ef446c8172388431effa73aeddb7ff#diff-b429dd7fccbca60d740d4887c1077a178abf1efffe57e7ae2a0b607c8a9e2202, 'janitor' edited by forgotmyotheraccount on github. 'court', 'janitor', 'law' & 'psychology' changed for corvax by netwy (discord, 583844759429316618) and updated by github:lapatison; 'security' sign edited and localised by github:lapatison, 'arcade', 'barbershop', 'direction_exam', 'direction_icu', 'laundromat', 'news', 'reception', and 'salvage' made by rosieposieeee (github), 'direction_exam', 'direction_icu' localised by github:lapatison", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github). 'court', 'janitor', 'law' & 'psychology' changed for corvax by netwy (discord, 583844759429316618) and updated by github:lapatison;", "states": [ { - "name": "ai", - "delays": [ - [ - 1 - ] - ] + "name": "ai" }, { - "name": "anomaly", - "delays": [ - [ - 1 - ] - ] + "name": "ai_upload" + }, + { + "name": "vault" + }, + { + "name": "xenoarch" }, { - "name": "anomaly2" + "name": "anomaly" }, { - "name": "arcade", - "delays": [ - [ - 1 - ] - ] + "name": "arcade" }, { - "name": "armory", - "delays": [ - [ - 1 - ] - ] + "name": "armory" }, { - "name": "barbershop", - "delays": [ - [ - 1 - ] - ] + "name": "barbershop" }, { - "name": "ass", - "delays": [ - [ - 1 - ] - ] + "name": "ass" }, { - "name": "atmos", - "delays": [ - [ - 1 - ] - ] + "name": "atmos" }, { - "name": "atmos_air", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_air" }, { - "name": "atmos_co2", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_co2" }, { - "name": "atmos_n2", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_n2" }, { - "name": "atmos_n2o", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_n2o" }, { - "name": "atmos_o2", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_o2" }, { - "name": "atmos_plasma", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_plasma" }, { - "name": "atmos_tritium", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_tritium" }, { - "name": "atmos_waste", - "delays": [ - [ - 1 - ] - ] + "name": "atmos_waste" }, { - "name": "atmosplaque", - "delays": [ - [ - 1 - ] - ] + "name": "atmosplaque" }, { - "name": "zumosplaque", - "delays": [ - [ - 1 - ] - ] + "name": "zumosplaque" }, { - "name": "bar", - "delays": [ - [ - 1 - ] - ] + "name": "bar" }, { - "name": "biblio", - "delays": [ - [ - 1 - ] - ] + "name": "biblio" }, { - "name": "bio", - "delays": [ - [ - 1 - ] - ] + "name": "bio" }, { - "name": "biohazard", - "delays": [ - [ - 1 - ] - ] + "name": "biohazard" }, { - "name": "bridge", - "delays": [ - [ - 1 - ] - ] + "name": "bridge" }, { - "name": "canisters", - "delays": [ - [ - 1 - ] - ] + "name": "canisters" }, { - "name": "cargo", - "delays": [ - [ - 1 - ] - ] + "name": "cargo" }, { - "name": "cargo_dock", - "delays": [ - [ - 1 - ] - ] + "name": "cargo_dock" }, { - "name": "chapel", - "delays": [ - [ - 1 - ] - ] + "name": "chapel" }, { - "name": "chem", - "delays": [ - [ - 1 - ] - ] + "name": "chem" }, { - "name": "commander", - "delays": [ - [ - 1 - ] - ] + "name": "commander" }, { - "name": "conference_room", - "delays": [ - [ - 1 - ] - ] + "name": "conference_room" }, { - "name": "corrosives", - "delays": [ - [ - 1 - ] - ] + "name": "corrosives" }, { - "name": "cryogenics", - "delays": [ - [ - 1 - ] - ] + "name": "cryogenics" }, { - "name": "danger", - "delays": [ - [ - 1 - ] - ] + "name": "danger" }, { - "name": "deathsposal", - "delays": [ - [ - 1 - ] - ] + "name": "deathsposal" }, { "name": "direction_bar", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_exam", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_icu", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_janitor", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_food", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_hop", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_library", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_chemistry", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_eng", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_evac", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_supply", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_bridge", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_med", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_sci", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_sec", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_brig", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_chapel", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_hydro", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_dorms", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_cryo", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_gravity", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_salvage", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_solar", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] + "directions": 4 }, { "name": "direction_wash", - "directions": 4, - "delays": [ - [ - 1 - ], - [ - 1 - ], - [ - 1 - ], - [ - 1 - ] - ] - }, - { - "name": "dock", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "doors", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "electrical", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "eng", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "engine", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "eva", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "examroom", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "explosives", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "fire", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "flammable", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "cloning", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "gravi", - "delays": [ - [ - 1 - ] - ] + "directions": 4 }, { - "name": "interrogation", - "delays": [ - [ - 1 - ] - ] + "name": "dock" }, { - "name": "janitor", - "delays": [ - [ - 1 - ] - ] + "name": "doors" }, { - "name": "laser", - "delays": [ - [ - 1 - ] - ] + "name": "mats" }, { - "name": "laundromat", - "delays": [ - [ - 1 - ] - ] + "name": "electrical" }, { - "name": "law", - "delays": [ - [ - 1 - ] - ] + "name": "eng" }, { - "name": "magnetics", - "delays": [ - [ - 1 - ] - ] + "name": "engine" }, { - "name": "mail", - "delays": [ - [ - 1 - ] - ] + "name": "eva" }, { - "name": "medbay", - "delays": [ - [ - 1 - ] - ] + "name": "examroom" }, { - "name": "memetic", - "delays": [ - [ - 1 - ] - ] + "name": "explosives" }, { - "name": "monkey_painting", - "delays": [ - [ - 1 - ] - ] + "name": "fire" }, { - "name": "morgue", - "delays": [ - [ - 1 - ] - ] + "name": "flammable" }, { - "name": "news", - "delays": [ - [ - 1 - ] - ] + "name": "cloning" }, { - "name": "nosmoking", - "delays": [ - [ - 1 - ] - ] + "name": "gravi" }, { - "name": "nosmoking2", - "delays": [ - [ - 1 - ] - ] + "name": "hydro" }, { - "name": "surgery", - "delays": [ - [ - 1 - ] - ] + "name": "interrogation" }, { - "name": "optical", - "delays": [ - [ - 1 - ] - ] + "name": "janitor" }, { - "name": "oxidants", - "delays": [ - [ - 1 - ] - ] + "name": "laser" }, { - "name": "pods", - "delays": [ - [ - 1 - ] - ] + "name": "laundromat" }, { - "name": "prison", - "delays": [ - [ - 1 - ] - ] + "name": "law" }, { - "name": "psychology", - "delays": [ - [ - 1 - ] - ] + "name": "magnetics" }, { - "name": "radiation", - "delays": [ - [ - 1 - ] - ] + "name": "mail" }, { - "name": "reception", - "delays": [ - [ - 1 - ] - ] + "name": "medbay" }, { - "name": "rnd", - "delays": [ - [ - 1 - ] - ] + "name": "memetic" }, { - "name": "robo", - "delays": [ - [ - 1 - ] - ] + "name": "monkey_painting" }, { - "name": "salvage", - "delays": [ - [ - 1 - ] - ] + "name": "morgue" }, { - "name": "sci", - "delays": [ - [ - 1 - ] - ] + "name": "news" }, { - "name": "secure", - "delays": [ - [ - 1 - ] - ] + "name": "kitchen" }, { - "name": "securearea", - "delays": [ - [ - 1 - ] - ] + "name": "drama1" }, { - "name": "shock", - "delays": [ - [ - 1 - ] - ] + "name": "drama2" }, { - "name": "something-old1", - "delays": [ - [ - 1 - ] - ] + "name": "drama3" }, { - "name": "something-old2", - "delays": [ - [ - 1 - ] - ] + "name": "restroom" }, { - "name": "space", - "delays": [ - [ - 1 - ] - ] + "name": "nosmoking" }, { - "name": "telecoms", - "delays": [ - [ - 1 - ] - ] + "name": "nosmoking2" }, { - "name": "toxins", - "delays": [ - [ - 1 - ] - ] + "name": "surgery" }, { - "name": "virology", - "delays": [ - [ - 1 - ] - ] + "name": "optical" }, { - "name": "xenobio", - "delays": [ - [ - 1 - ] - ] + "name": "oxidants" }, { - "name": "zomlab", - "delays": [ - [ - 1 - ] - ] + "name": "pods" }, { - "name": "small_secure_red", - "delays": [ - [ - 1 - ] - ] + "name": "prison" }, { - "name": "small_secure", - "delays": [ - [ - 1 - ] - ] + "name": "psychology" }, { - "name": "medium_secure_red", - "delays": [ - [ - 1 - ] - ] + "name": "radiation" }, { - "name": "medium_blank", - "delays": [ - [ - 1 - ] - ] + "name": "reception" }, { - "name": "medium_magnetics", - "delays": [ - [ - 1 - ] - ] + "name": "rnd" }, { - "name": "medium_danger", - "delays": [ - [ - 1 - ] - ] + "name": "robo" }, { - "name": "medium_explosives", - "delays": [ - [ - 1 - ] - ] + "name": "salvage" }, { - "name": "medium_cryogenics", - "delays": [ - [ - 1 - ] - ] + "name": "sci" }, { - "name": "medium_electrical", - "delays": [ - [ - 1 - ] - ] + "name": "secure" }, { - "name": "medium_biohazard", - "delays": [ - [ - 1 - ] - ] + "name": "securearea" }, { - "name": "medium_radiation", - "delays": [ - [ - 1 - ] - ] + "name": "cans" }, { - "name": "medium_flammable", - "delays": [ - [ - 1 - ] - ] + "name": "shock" }, { - "name": "medium_laser", - "delays": [ - [ - 1 - ] - ] + "name": "something-old1" }, { - "name": "medium_secure", - "delays": [ - [ - 1 - ] - ] + "name": "something-old2" }, { - "name": "goldenplaque", - "delays": [ - [ - 1 - ] - ] + "name": "space" }, { - "name": "kiddieplaque", - "delays": [ - [ - 1 - ] - ] + "name": "telecoms" }, { - "name": "security", - "delays": [ - [ - 1 - ] - ] + "name": "toxins" }, { - "name": "nanotrasen_sign1", - "delays": [ - [ - 1 - ] - ] + "name": "virology" }, { - "name": "nanotrasen_sign2", - "delays": [ - [ - 1 - ] - ] + "name": "xenobio" }, { - "name": "nanotrasen_sign3", - "delays": [ - [ - 1 - ] - ] + "name": "zomlab" }, { - "name": "nanotrasen_sign4", - "delays": [ - [ - 1 - ] - ] + "name": "small_secure_red" }, { - "name": "nanotrasen_sign5", - "delays": [ - [ - 1 - ] - ] + "name": "small_secure" }, { - "name": "one", - "delays": [ - [ - 1 - ] - ] + "name": "medium_secure_red" }, { - "name": "two", - "delays": [ - [ - 1 - ] - ] + "name": "medium_blank" }, { - "name": "three", - "delays": [ - [ - 1 - ] - ] + "name": "medium_magnetics" }, { - "name": "four", - "delays": [ - [ - 1 - ] - ] + "name": "medium_danger" }, { - "name": "five", - "delays": [ - [ - 1 - ] - ] + "name": "medium_explosives" }, { - "name": "six", - "delays": [ - [ - 1 - ] - ] + "name": "medium_cryogenics" }, { - "name": "seven", - "delays": [ - [ - 1 - ] - ] + "name": "medium_electrical" }, { - "name": "eight", - "delays": [ - [ - 1 - ] - ] + "name": "medium_biohazard" }, { - "name": "nine", - "delays": [ - [ - 1 - ] - ] + "name": "medium_radiation" }, { - "name": "zero", - "delays": [ - [ - 1 - ] - ] + "name": "medium_flammable" }, { - "name": "survival", - "delays": [ - [ - 1 - ] - ] + "name": "medium_laser" }, { - "name": "ntmining", - "delays": [ - [ - 1 - ] - ] + "name": "medium_secure" }, { - "name": "cans" + "name": "goldenplaque" }, { - "name": "xenoarch" + "name": "kiddieplaque" }, { - "name": "drama1" + "name": "security" + }, + { + "name": "data" }, { "name": "cryo" }, { - "name": "ai_upload" + "name": "nanotrasen_sign1" }, { - "name": "kitchen" + "name": "nanotrasen_sign2" }, { - "name": "vault" + "name": "nanotrasen_sign3" }, { - "name": "hydro" + "name": "nanotrasen_sign4" }, { - "name": "restroom" + "name": "nanotrasen_sign5" }, { - "name": "data" + "name": "one" }, { - "name": "mats" + "name": "two" + }, + { + "name": "three" + }, + { + "name": "four" + }, + { + "name": "five" + }, + { + "name": "six" + }, + { + "name": "seven" + }, + { + "name": "eight" + }, + { + "name": "nine" + }, + { + "name": "zero" + }, + { + "name": "survival" + }, + { + "name": "ntmining" } ] } diff --git a/Resources/Textures/Structures/Walls/mining.rsi/meta.json b/Resources/Textures/Structures/Walls/mining.rsi/meta.json index 4ce4691c516..77f43229984 100644 --- a/Resources/Textures/Structures/Walls/mining.rsi/meta.json +++ b/Resources/Textures/Structures/Walls/mining.rsi/meta.json @@ -7,40 +7,72 @@ "y": 32 }, "states": [ - { + { "name": "full" }, - { + { "name": "mining0", - "directions": 4 + "directions": 4 }, - { + { "name": "mining1", - "directions": 4 + "directions": 4 }, - { + { "name": "mining2", - "directions": 4 + "directions": 4 }, - { + { "name": "mining3", - "directions": 4 + "directions": 4 }, - { + { "name": "mining4", - "directions": 4 + "directions": 4 }, - { + { "name": "mining5", - "directions": 4 + "directions": 4 }, - { + { "name": "mining6", - "directions": 4 + "directions": 4 }, - { + { "name": "mining7", - "directions": 4 + "directions": 4 + }, + { + "name": "miningB0", + "directions": 4 + }, + { + "name": "miningB1", + "directions": 4 + }, + { + "name": "miningB2", + "directions": 4 + }, + { + "name": "miningB3", + "directions": 4 + }, + { + "name": "miningB4", + "directions": 4 + }, + { + "name": "miningB5", + "directions": 4 + }, + { + "name": "miningB6", + "directions": 4 + }, + { + "name": "miningB7", + "directions": 4 } ] } diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png new file mode 100644 index 00000000000..f65f066b65a Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB0.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png new file mode 100644 index 00000000000..24c81aa8779 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB1.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png new file mode 100644 index 00000000000..f65f066b65a Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB2.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png new file mode 100644 index 00000000000..24c81aa8779 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB3.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png new file mode 100644 index 00000000000..1412f002696 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB4.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png new file mode 100644 index 00000000000..8bbef8ca971 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB5.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png new file mode 100644 index 00000000000..1412f002696 Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB6.png differ diff --git a/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png b/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png new file mode 100644 index 00000000000..add9cddf83f Binary files /dev/null and b/Resources/Textures/Structures/Walls/mining.rsi/miningB7.png differ diff --git a/Resources/migration.yml b/Resources/migration.yml index a6208390485..67b277bf484 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -509,6 +509,7 @@ IntercomAssesmbly: IntercomAssembly #2024-07-13 Corvax HyperLinkBookCorporateLaw: BookSpaceLaw + # 2024-07-7 SignScience1: SignScience SignScience2: SignScience diff --git a/RobustToolbox b/RobustToolbox index fc1cca4f48f..2e4275a7f3b 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit fc1cca4f48f2f2d3fbf41aa42b80b4e43b1095a4 +Subproject commit 2e4275a7f3b2800e7fbe1da1e1909e8e349033bf diff --git a/Tools/publish_github_artifact.py b/Tools/publish_github_artifact.py old mode 100755 new mode 100644